@charset "utf-8";
/* CSS Document */

@import url("reset.css");
@import url(https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);

:root {
    
    --vw: 1920;
    
	--font: "Zen Kaku Gothic New", sans-serif;
	--font-a: "Roboto", sans-serif;
	
	--pink: #ce4175;
	--red: #e71f1f;

}

/* Common */
/* ==================================================================================================================================== */
html {
    scroll-behavior: smooth;
}
body, select, input, textarea {
    --fs_vw: calc( 18 / var(--vw) * 100vw);
    --fs_rem: calc((20 / 16) * 1rem);
    
	font-family: var(--font);
	font-weight: 400;
	font-size: clamp( 16px, var(--fs_vw), var(--fs_rem) );
    word-break: break-word;
}
img:not(.haishin-header img) { 
	width: 100%;
}
p, dt, dd {
	line-height: 2;
}
a img {
	transition: .2s ease-in-out;
}
a img:hover {
	opacity: 0.6;
}
.ta_center {
	text-align: center;
	margin: auto;
}
.ta_right {
	text-align: right;
}
.ta_left {
	text-align: left;
}
.sp_only {
	display: none;
}
.btn {
	color: #B3B3B3;
	padding: calc( 10 / var(--vw) * 100vw) calc( 15 / var(--vw) * 100vw);
	text-align: center;
	transition: .2s ease-in-out;
}
.btn a {
	background: #ce4175;
	padding: calc( 10 / var(--vw) * 100vw) calc( 15 / var(--vw) * 100vw);
	margin: calc(( 10 / var(--vw) * 100vw) * -1) calc(( 15 / var(--vw) * 100vw) * -1);
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
}
.btn.btn_arrow {
	padding: 10px 25px 10px 15px;
}
.btn.btn_arrow a {
	padding: 10px 25px 10px 15px;
	margin: -10px -25px -10px -15px;
}
.btn.btn_arrow a:after {
	content: "";
	background: url("../../images/common/arrow_02.png") no-repeat;
	height: 14px;
	width: 9px;
	display: block;
	background-size: 9px 14px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 15px;
}
.btn a:hover {
	opacity: 0.8;
}
.btn.btn_white {
	color: #B3B3B3;
}
.btn.btn_white a {
	background: #FFFFFF;
	color: #ce4175;
}
.btn.btn_white.btn_arrow a:after {
	background: url("../../images/common/arrow_01.png") no-repeat;
	background-size: 9px 14px;
}
.btn_detail a {
	color: #ce4175;
	text-decoration: none;
	position: relative;
	display: inline-block;
	padding: 0 80px 5px 20px;
}
.btn_detail a:before {
	content: "";
	background: #ce4175;
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -5px;
}
.btn_detail a:after {
	content: "";
	background: url("../../images/common/arrow_01.png") no-repeat;
	height: 14px;
	width: 9px;
	display: block;
	background-size: 9px 14px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 15px;
}
.btn.btn_arrow.btn_faq,
.btn.btn_arrow.btn_guide {
    padding-left: 90px;
    display: flex;
    margin: auto 30px;
}
.btn.btn_arrow.btn_faq a,
.btn.btn_arrow.btn_guide a {
    padding-left: 90px;
    margin-left: -90px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}
.btn_faq a {
    background: #c99336;
    text-align: left;
    width: 440px;
}
.btn_faq a:before {
    content: "";
    background:url("../../images/common/icon_faq.png") no-repeat;
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    height: 48px;
    width: 48px;
    background-size: 48px 48px;
}
.btn_guide a {
    background: #8b3bb9;
    text-align: left;
    width: 440px;
}
.btn_guide a:before {
    content: "";
    background:url("../../images/common/icon_guide.png") no-repeat;
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    height: 48px;
    width: 48px;
    background-size: 48px 48px;
}
.btn_close {
	background: #4f4b4c;
	max-width: 300px;
	margin: 0 auto;
	padding: 15px 20px;
	text-align: center;
}
.btn_close a {
	padding: 15px 20px;
	margin: -15px -20px;
	color:#FFFFFF;
	text-decoration: none;
	display: block;
	position: relative;
}

.btn_close a:before {
	content: "";
	background: url("../../images/common/icon_close.png");
	background-size: 16px 16px;
	width: 16px;
	height: 16px;
	position: absolute;
	inset: 0 auto 0 20px;
	margin: auto;
}
.btn_area {
	margin: 40px auto;
}
.btn.btn_s {
	width: 300px;
}
.btn.btn_m {
	width: 460px;
}

.inner {
	max-width: 1400px;
	margin: 0 auto;
}
.inner_s {
	max-width: 1000px;
	margin: 0 auto;
}
.inner_l {
	padding: 0 30px;
}
.wrap {
	padding: 100px 0;
}
h2.title {
	font-size: 36px;
	text-align: center;
	margin: 100px auto;
	text-align: center;
	position: relative;
	line-height: 1.6;
}
h2.title:after {
	content: "";
	height: 2px;
	width: 100%;
	background: #e8afc3;
	position: absolute;
	display: block;
	bottom: -40px;
	left: 0;
}
h2.title:before {
	content: "";
	height: 2px;
	width: 140px;
	background: #d4316d;
	position: absolute;
	display: block;
	bottom: -40px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
}
h3.title {
    font-size: 25px;
    font-weight: normal;
    border-bottom: 1px solid #e7cfd8;
    padding-bottom: 20px;
    margin-bottom: 15px;
    margin-top: 50px;
}
.inner h2.title:first-of-type {
	margin-top: 0;
}
.highlight {
    background: linear-gradient(transparent 60%, #fff046 60%);
}
.flex {
	display: flex;
}
.fc_pink {
	color: var(--pink);
}
.fc_red {
	color: var(--red);
}
.fs_14 {
	font-size: 14px;
}
.fs_16 {
	font-size: 16px;
}
.fs_20 {
	font-size: 20px;
}
.fs_25 {
	font-size: 25px;
}
.fs_36 {
	font-size: clamp(28px, 2.5vw, 36px);
}
.fs_40 {
	font-size: clamp(35px, 2.85vw, 40px);
	line-height: 1.8;
}
.mb_20 {
	margin-bottom: 20px;
}

table:not(.table-search) {
	border-collapse: collapse;
	width: 100%;
	border: #989898 solid 1px;
	margin-top: 30px;
}
table th:not(.table-search) {
	font-weight: bold;
	text-align: center;
	vertical-align: top;
	border: #989898 solid 1px;
	background: #f9f8f8;
	padding: 15px 20px;
}
table td:not(.table-search) {
	vertical-align: top;
	text-align: center;
	border: #989898 solid 1px;
	background: #ffffff;
	padding: 15px 20px;
}
table th, table td {
	line-height: 1.6;
}
table th.category {
	background: #eef5fb;
}
table th.lightplan {
	background: #f9cce0;
}
table td.lightplan {
	background: #fff4f8;
}
table th.standardplan {
	background: #f0cff8;
}
table td.standardplan {
	background: #faf0fc;
}
table .na {
    background: #f5f5f5;
}
table .lightplan.na {
    background: #faeff3;
}
table .standardplan.na {
    background: #f5ebf7;
}
.align_middle {
	vertical-align: middle;
}
.list_ol li {
    list-style: decimal;
    margin: 10px 0 0 30px;
}
.list_disc li {
    list-style: disc;
    margin: 10px 0 0 30px;
}
.list_term {
    margin: 30px 0;
}
.list_term > li {
    list-style: none;
    margin-top: 30px;
    margin-left: 16px;
    line-height: 1.6;
}
.list_term > li:before {
    content: "◆";
    margin-left: -13px;
}
.js-fade {
  opacity: 0;
}
.js-visible {
  animation: fadeInBottom 1.4s ease 0s 1 normal;
  opacity: 1;
}
.js-invisible {
  opacity: 0;
}
/* fadeInBottom */
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 813px) {
  @keyframes fadeInBottom {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}/*# sourceMappingURL=style.css.map */

@media screen and (max-width: 1400px) {
	.inner {
		padding-left: 3.12vw;
		padding-right: 3.12vw;
	}
}
@media screen and (max-width: 749px) {
	body, select, input, textarea {
		font-size: 14px;
	}
	.pc_only {
		display: none;
	}
    .sp_only {
        display: block;
    }
	.btn {
		padding: 15px 20px;
	}
	.btn a {
		padding: 15px 20px;
		margin: -15px -20px;
	}
	.btn.btn_arrow {
		padding: 10px 25px;
	}
	.btn.btn_arrow a {
		padding: 10px 25px;
		margin: -10px -25px;
	}
    .btn.btn_m {
        width: 100%;
    }
	.inner {
		padding-left: 5.33vw;
		padding-right: 5.33vw;
	}
	.wrap {
		padding: 40px 0;
	}
	
	h2.title {
		font-size: 20px;
		margin: 60px auto;
	}
	h2.title:after {
		content: "";
		height: 1px;
		bottom: -30px;
	}
	h2.title:before {
		content: "";
		height: 1px;
		width: 70px;
		bottom: -30px;
	}
    h3.title {
        font-size: 20px;
        font-weight: normal;
        border-bottom: 1px solid #e7cfd8;
        padding-bottom:15px;
        margin-bottom: 10px;
        margin-top: 30px;
    }
	.fs_14 {
		font-size: 12px !important;
	}
	.fs_16 {
		font-size: 14px !important;
	}
	.fs_25 {
		font-size: 16px !important;
	}
	.fs_36 {
	font-size: 18px !important;
	}
	.fs_40 {
		font-size: 22px !important;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
    table th {
        padding: 10px;
    }
    table td {
        padding: 10px;
    }
	.scroll {
		overflow: auto;
        height: 100vh;
	}
	/*.scroll th,
	.scroll td {
		word-break: keep-all;
	}*/
    .list_ol li, .list_disc li {
        margin: 10px 0 0 20px;
    }
    .scroll .fixed {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0;
        border-top: none;
        border-bottom: none;
    }
    .scroll .fixed:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top: 1px solid #989898;
        border-bottom: 1px solid #989898;
        background: #989898;
        z-index: 1;
    }
    .icon_scroll {
        position: relative;
    }
    .icon_scroll:before {
        content: "";
        background: url("../../images/common/scroll.png") no-repeat;
        width: 21px;
        height: 30px;
        background-size: 21px 30px;
        position: absolute;
        left: -27px;
        top: -7px;
    }
}

/* Header */
/* ==================================================================================================================================== */

header.scheduler-header {
	border-top: 1px solid #ead9df;
	border-bottom: 1px solid #ead9df;
	background-color:rgba(255,240,245,0.9);
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
}
header.scheduler-header .inner_l {
	padding: 15px 30px;
	display: flex;
}
header.scheduler-header h1 {
	font-size: 19px;
}
header.scheduler-header h1 a {
	text-decoration: none;
}
header.scheduler-header nav,
header.scheduler-header nav ul {
	display: flex;
	margin-left: auto;
	font-size: 14px;
	align-items: center;
}
header.scheduler-header nav .nav_help {
	background: #f5cedc;
	padding: 5px 10px;
	border-radius: 4px;
}
header.scheduler-header nav .nav_help:hover {
    opacity: 0.7;
}
header.scheduler-header nav a {
	text-decoration: none;
}
header.scheduler-header nav .nav_help a {
	padding: 5px 10px;
	margin: -5px -10px;
	display: block;
}
header.scheduler-header nav li {
	position: relative;
	margin-left: 20px;
	padding-right: 20px;
}
header.scheduler-header nav li:after {
	content: "";
	position: absolute;
	right: 0;
  	top: 0;
	width: 1px;
	height: 17px;
	display: block;
	background: #d1d1d1;
}
header.scheduler-header nav li:last-child:after {
	content: none
}
@media screen and (max-width: 749px) {
	header.scheduler-header .inner_l {
		display: block;
		padding: 15px;
	}
	header.scheduler-header nav li {
		font-size: 12px;
		white-space: nowrap;
		margin: 12px 0 0 10px;
  		padding-right: 10px;
	}
}

/* FOOTER */
/* ==================================================================================================================================== */
.pagetop {
	width: 70px;
	height: 70px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	z-index: 1000;
}

footer {
	color: #FFFFFF;
}

footer .nav_footer {
	background: #200811;
	padding: 20px 0;
	text-align: center;
}
footer .copyright {
	background: #5d1831;
	font-size: 12px;
	color: #c9a9b6;
	text-align: center;
	padding: 30px 0 1000px 0;
}
@media screen and (max-width: 749px) {
	.pagetop {
		width: 45px;
		height: 45px;
		position: fixed;
		bottom: 10px;
		right: 10px;
	}
	footer .copyright {
		padding: 25px 0 500px 0;
	}
}

/* top */
/* ==================================================================================================================================== */

.top {
	background: url("../../images/top/bg_header.jpg") no-repeat top center #f9e4eb;
	background-size: 100% auto;
}
.top .inner {
	display: flex;
	padding-top: 45px;
}
.top .right {
	width: 37.54vw;
	align-items: flex-end;
	display: flex;
}
.top .left {
	width: 62.46vw;
	text-align: center;
	margin-top: 35px;
}
.top .left .top_logo1 img,
.top .left .top_logo2 img {
	width: 498px;
}
.top .left .top_logo2 img {
	margin-top: 50px;
}
.top .unit_install {
	margin: 50px auto;
	max-width: 622px;
	display: flex;
	background: rgba(244,203,217,0.8);
	padding: 20px;
	justify-content: space-between;
}
.top .unit_install p:first-of-type {
	margin-right: 1.56vw;
}
.top .btn_area {
    margin: 50px 0 80px;
}
.top .btn_area .btn {
    --fs: calc(20 / var(--vw) * 100vw);
    
	width: 420px;
	margin: 0 auto;
    font-size: max(var(--fs), 20px);
}

@media screen and (max-width: 1400px) {
	.top .inner {
		padding-top: 4vw;
	}
	.top .left {
		margin: 50px 5vw 0 0;
	}
	.top .left .top_logo1 img,
	.top .left .top_logo2 img {
		max-width: 35vw;
	}
	.top .unit_install,
	.top .left .top_logo2 img {
		margin-top: 4vw;
	}
	.top .btn_area {
		margin: 4vw 0;
	}
    .top .btn_area {
        margin-top: 2vw;
    }
}
@media screen and (max-width: 1200px) {
    .top .left {
        margin-top: 1vw;
    }
    .top .unit_install,
    .top .left .top_logo2 img {
        margin: 2vw 0 0 0;
    }
    .top .btn_area {
        margin-bottom: 2vw;
    }
}
@media screen and (max-width: 749px) {
	.top {
		background: url("../../images/sp/top/bg_header.jpg") no-repeat top center #f9e4eb;
		background-size: 100% auto;
	}
	.top .inner {
		flex-direction: column;
		padding: 40px 12.66vw 0 12.66vw;
	}
	.top .right,
	.top .left {
		width: 100%;
		margin: auto;
	}
	.top .right {
		margin-top: 25px;
	}
	.top .right img {
		padding: 0 1.06vw;
	}
	.top .left {
		margin-top: 0;
	}
	.top .left .top_logo1 img {
		max-width: 70vw;
		width: auto;
	}
	.top .left .top_logo2 img {
		max-width: 100%;
		width: auto;
	}
	.top .unit_install {
		margin: 30px auto 0 auto;
		background: none;
		padding: 0;
	}
	.top .btn_area {
		margin-top: 25px;
		margin-bottom: 0;
	}
	.top .btn_area .btn {
		font-size: 14px;
		width: 100%;
	}
}

/* NEWS */
/* ==================================================================================================================================== */
.news .inner {
	max-width: 1000px;
}
.news .title {
	margin-bottom: 20px;
}
.news .list_news {
	font-size: 16px;
	padding: 20px 0;
}
.news .list_news dt {
	font-family: var(--font-a);
	color: #ae2d5c;
	font-style: italic;
	font-weight: normal;
	width: 126px;
	display: inline-block;
	float: left;
}
.news .list_news dd {
	overflow: hidden;
}
.news a .list_news {
	transition: .2s ease-in-out;
}
.news a .list_news:hover {
	background: #fdf5f8;
}
.news .btn_area {
    margin-bottom: 0;
}
.news .btn_area ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.news .btn_area li {
    display: flex;
}
@media screen and (max-width: 749px) {
	.fs_40 {
		font-size: 30px;
	}
	.news .title {
		margin-bottom: 0;
	}
	.news .list_news {
		display: flex;
		flex-direction: column;
		padding: 10px 0;
	}
    .news .btn_area {
        margin: 0 auto;
    }
    .news .btn_area ul {
        flex-direction: column;
    }
    .news .btn_area li {
        margin-top: 15px;
    }
    .btn.btn_arrow.btn_faq, 
    .btn.btn_arrow.btn_guide {
        margin: 0 auto;
        padding-left: 70px;
    }
    .btn.btn_arrow.btn_faq a,
    .btn.btn_arrow.btn_guide a {
        padding-left: 70px;
        margin-left: -70px;
    }
    .btn_faq a:before,
    .btn_guide a:before {
        background-size: 40px 40px;
        height: 40px;
        width: 40px;
    }


}

/* ABOUT */
/* ==================================================================================================================================== */
.about {
	background: url("../../images/top/bg_about.png"),linear-gradient(90deg,rgba(255, 209, 226, 1) 0%, rgba(249, 232, 238, 1) 50%, rgba(255, 209, 226, 1) 100%);
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.about .flex {
    justify-content: center;
}
.about .left {
    --w: calc(430 / var(--vw) * 100vw);
    --mr: calc(50 / var(--vw) * 100vw);
    
	width: var(--w);
	margin-right: var(--mr);
}
.about .right {
    --w: calc(920 / var(--vw) * 100vw);
    
	max-width: var(--w);
	margin-top: 40px;
}
@media screen and (max-width: 1000px) {
	.about .flex {
		flex-direction: column;
	}
	.about .left {
		width: 50vw;
		margin: 30px auto 0 auto;
	}
	.about .right {
		max-width: 730px;
		text-align: center;
		margin: 40px auto 0 auto;
	}
}
@media screen and (max-width: 749px) {
	.about {
		background: url("../../images/sp/top/bg_about.png"),linear-gradient(90deg,rgba(255, 209, 226, 1) 0%, rgba(249, 232, 238, 1) 50%, rgba(255, 209, 226, 1) 100%);
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.about .left {
		width: auto;
	}
	.about .flex {
		flex-direction: column;
	}
}


/* PAID */
/* ==================================================================================================================================== */
.paid {
	background: #ce4175;
	color: #FFFFFF;
}
.paid .flex {
    justify-content: center;
}
.paid .left {
	--w: calc(680 / var(--vw) * 100vw);
    --mr: calc(100 / var(--vw) * 100vw);
    
    width: var(--w);
	margin-right: var(--mr);
}
.paid .right {
    --w: calc(620 / var(--vw) * 100vw);
    
    width: var(--w);
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.paid .btn_area {
	margin-top: 40px;
}
.paid .btn_area .btn,
.recommend .btn_area .btn
.btn.btn_short {
	width: 300px;
}
.btn.btn_middle {
    width: 500px
}

@media screen and (max-width: 1400px) {
	.paid .left {
		width: 40vw;
	}
	.paid .right {
		margin-top: 0;
	}
}
@media screen and (max-width: 749px) {
	.paid .left {
		width: auto;
		margin: 0 0 20px 0;
	}
    .paid .right {
        width: 100%;
    }
	.paid .flex {
		flex-direction: column;
	}
	.paid .btn_area {
		margin-top: 20px;
	}
	.paid .btn_area .btn {
		width: 100%;
	}
    .btn.btn_middle {
        width: 100%;
    }
}

/* RECOMMEND */
/* ==================================================================================================================================== */
.recommend,
.guide,
.plan,
.feature {
	background: url("../../images/common/bg_01.jpg") repeat;
}

.recommend .flex {
	justify-content: space-between;
}
.recommend .items {
	width: calc(33.33%);
	margin-right: 80px;
	position: relative;
}
.recommend .items:last-of-type {
	margin-right: 0;
}
.recommend .items:after {
	content: "";
	background: #dddddd;
	width: 1px;
	height: calc(100% + 40px);
	position: absolute;
	top: 0;
	left: -40px;
}
.recommend .items:first-of-type:after {
	content: none;
}
.recommend .item_detail {
	margin-top: 25px;
}
.recommend .item_detail .btn_detail {
	margin-top: 25px;
    padding-bottom: 6px;
}
.recommend .btn_area {
	text-align: center;
	margin-top: 100px;
}
.recommend .btn_area .btn {
	width: 430px;
}
.recommend.scene .items:after {
    background: none;
}
.recommend.scene .items {
    margin-bottom: 50px;
    margin-right: 50px;
}
.recommend.scene .items:last-of-type {
    margin-right: 0;
}
@media screen and (max-width: 749px) {
	.recommend .flex {
		flex-direction: column;
	}
	.recommend .items {
		width: 100%;
		margin-bottom: 40px;
	}
	.recommend .btn_area {
		margin-top: 0;
	}
	.recommend .item_detail {
		margin-top: 15px;
	}
	.recommend .btn_area .btn {
		width: 100%;
	}
	.recommend .item_detail .btn_detail {
		margin-top: 15px;
	}
    .recommend.scene .items {
        margin-bottom: 30px;
    }
}

/* DOPWNLOAD */
/* ==================================================================================================================================== */
.download {
	background: #efbbcf;
}
.download .logo {
	width: 34.79vw;
	margin: 0 auto;
}
.download .unit_install {
	margin: 60px auto 0 auto;
	max-width: 800px;
	display: flex;
	background: rgba(250,211,225,1);
	padding: 30px;
	justify-content: space-between;
}
.download .unit_install p:first-of-type {
	margin-right: 1.56vw;
}
.list_download {
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 40px;
}
.list_download dl {
	display: flex;
	margin-top: 30px;
	border-bottom: 1px solid #d58ba8;
	padding-bottom: 30px;
}
.list_download dt {
	color: #ae2d5c;
	width: 150px;
}
.list_download dd {
	width: 100%;
}

@media screen and (max-width: 1400px) {
	.download .logo {
		width: 48vw;
	}
}
@media screen and (max-width: 749px) {
	.download .logo {
		width: 70vw;
	}
	.download .unit_install {
		margin: 25px auto;
		padding: 10px;
	}
	.list_download {
		margin-top: 0;
	}
	.list_download dl {
		flex-direction: column;
		margin-top: 20px;
		padding-bottom: 20px;
	}
}


/* GUIDE */
/* ==================================================================================================================================== */

.guide .list_guide {
	background: #e2bef7;
	margin: 40px auto;
	padding: 10px 20px 20px 20px;
}
.guide .list_guide dt {
	color: #681f92;
	font-size: 30px;
	font-weight: normal;
	padding-bottom: 10px;
}
.guide .list_guide dd {
	background: #FFFFFF;
	margin-top: 30px;
	padding: 10px 50px 20px 20px;
}
.guide .list_guide dd:first-of-type {
	margin-top: 0;
}
.guide .list_guide dd a {
	text-decoration: none;
	padding: 10px 20px 20px 20px;
	margin: -10px -20px -20px -20px;
	display: block;
	position: relative;
}
.guide .list_guide dd a:before {
	content: "";
	position: absolute;
	background: url("../../images/common/icon_play.png") no-repeat;
	background-size: 32px 32px;
	width: 32px;
	height: 32px;
	inset: 0 0 0 auto;
	margin: auto;
}
.guide .list_guide .title_guide {
	position: relative;
	font-size: 22px;
	color: #8b3bb9;
	font-weight: bold;
	padding-left: 36px;
}
.guide .list_guide .title_guide:before {
	content: "";
	position: absolute;
	background: url("../../images/common/icon_movie.png") no-repeat;
	background-size: 28px 28px;
	width: 28px;
	height: 28px;
	inset: 0 auto 0 0;
	margin: auto;
}

@media screen and (max-width: 749px) {
	.guide .list_guide {
		margin: 20px auto;
		padding: 5px 15px 15px 15px;
	}
	.guide .list_guide dt {
		font-size: 18px;
		font-weight: normal;
		padding-bottom: 5px;
	}
	.guide .list_guide dd {
		background: #FFFFFF;
		margin-top: 10px;
		padding: 5px 25px 10px 15px;
	}
	.guide .list_guide dd a {
		padding: 5px 25px 10px 15px;
		margin: -5px -25px -10px -15px;
	}
	.guide .list_guide dd a:before {
		inset: 0 8px 0 auto;
		background-size: 15px 15px;
		width: 15px;
		height: 15px;
	}
	.guide .list_guide .title_guide {
		font-size: 16px;
		padding-left: 28px;
	}
	.guide .list_guide .title_guide:before {
		background-size: 20px 20px;
		width: 20px;
		height: 20px;
	}
}

/* PLAN */
/* ==================================================================================================================================== */

.plan .warning,
.paidplan .warning {
	background: #f4d9e3;
	padding: 25px;
	max-width: 720px;
	margin: 40px auto;
}


/* PAID */
/* ==================================================================================================================================== */
.paidplan {
	background: url("../../images/common/bg_02.jpg") repeat;
}
.feature .flex.flex_wrap {
	flex-wrap: wrap;
}
.feature .unit_feature {
	width: calc((100% / 2) - 30px);
	background: #fbedf3;
	padding: 25px 30px;
	margin-top: 50px;
	position: relative;
}
.feature .flex .unit_feature:nth-of-type(odd) {
	margin-right: 60px;
}
.feature .left {
	width: 10.3vw;
	margin-right: 40px;
	min-width: 100px;
}
.feature .right {
	width: 100%;
}
.feature .unit_feature h3.title {
	color: #d4316d;
	font-size: clamp(25px, 2.14vw, 30px);
	font-weight: bold;
	border-bottom: 1px dashed #d4316d;
	padding: 0 30px 25px 30px;
	margin-bottom: 25px;
    margin-top: 0;
	text-align: center;
	position: relative;
	line-height: 1.4;
}
.feature .unit_feature h3.title:before {
	content: "";
	background: url("../../images/paid/icon_shine.png") no-repeat;
	background-size: auto;
	background-size: 23px 23px;
	height: 23px;
	width: 23px;
	position: absolute;
	left: 0;
	top: -20px;
	bottom: 0;
	margin: auto;
}
.feature .unit_feature h3.title:after {
	content: "";
	background: url("../../images/paid/icon_shine.png") no-repeat;
	background-size: auto;
	background-size: 23px 23px;
	height: 23px;
	width: 23px;
	position: absolute;
	right: 0;
	top: -20px;
	bottom: 0;
	margin: auto;
}
.feature h4.title {
	color: #58132c;
	font-size: clamp(20px, 1.57vw, 22px);
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.5;
}

.icon_feature {
	position: absolute;
	right: 30px;
	bottom: 30px;
}
.icon_common02 {
	width: 98px !important;
	height: 72px;
}
.icon_common03 {
	width: 178px !important;
	height: 66px;
}
.icon_common05 {
	width: 136px !important;
	height: 78px;
}
.icon_common06 {
	width: 87px !important;
	height: 76px;
}
.icon_standard02 {
	width: 128px !important;
	height: 74px;
}
.icon_standard03 {
	width: 108px !important;
	height: 94px;
}
@media screen and (max-width: 1800px) {
	.icon_pb {
		padding-bottom: 120px !important;
	}
}
@media screen and (max-width: 1000px) {
	.unit_feature .flex {
		flex-direction: column;
		align-items: center;
	}
	.unit_feature .flex .left {
		margin-right: 0;
		margin-bottom: 25px;
	}
	.icon_feature {
		position: absolute;
		right: -10px !important;
		top: -10px;
	}
	.icon_feature {
		position: absolute;
		right: 10px;
		bottom: 10px;
	}
	.icon_common02 {
		width: 48px !important;
		height: 36px;
	}
	.icon_common03 {
		width: 89px !important;
		height: 33px;
	}
	.icon_common05 {
		width: 69px !important;
		height: 39px;
	}
	.icon_common06 {
		width: 44px !important;
		height: 38px;
	}
	.icon_standard02 {
		width: 64px !important;
		height: 37px;
	}
	.icon_standard03 {
		width: 53px !important;
		height: 47px;
	}
}
@media screen and (max-width: 749px) {
	.feature .flex.flex_wrap {
		flex-direction: column;
	}
	.unit_feature .flex {
		flex-direction: row;
		align-items:flex-start;
	}
	.feature .unit_feature {
		width: 100%;
		padding: 15px;
		margin-top: 20px;
		
	}
	.feature .left {
		width: 9vw;
		min-width: 80px;
		margin-right: 4vw !important;
	}
	.feature .unit_feature h3.title {
		color: #d4316d;
		font-size: 18px;
        padding-bottom: 18px;
	}
	.feature h4.title {
		font-size: 16px;
	}
	.icon_pb {
		padding-bottom: 46px !important;
	}
	.icon_feature {
		position: absolute;
		right: 10px !important;
		bottom: 10px !important;
		top: auto;
	} 
	.icon_common02 {
		width: 48px;
		height: 36px;
	}
	.icon_common03 {
		width: 89px;
		height: 33px;
	}
	.icon_common05 {
		width: 69px;
		height: 39px;
	}
	.icon_common06 {
		width: 44px;
		height: 38px;
	}
	.icon_standard02 {
		width: 64px;
		height: 37px;
	}
	.icon_standard03 {
		width: 53px;
		height: 47px;
	}
}


/* FAQ */
/* ==================================================================================================================================== */
.faq {
	background: url("../../images/common/bg_03.jpg") repeat;
}
.faq .highlight {
    background: #FFFF00;
}
.faq h2.title:after {
	background: #e0cba6;
}
.faq h2.title:before {
	background: #d59a34;
}
.faq h3.title {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 33px;
    border-bottom: 1px solid #d5cfc1;
}
.faq h3.title:first-of-type {
    margin-top: 0;
}
.faq h4.title {
	font-size: 20px;
	font-weight: bold;
	margin: 25px 0;
	color: #ad7c27;
}
.faq .unit_search {
	background: #fbfaf7;
	border: 1px solid #d0cec9;
	padding: 20px 30px;
	margin-top: 40px;
}
.faq .btn_category {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.faq .btn_category li {
	background: #a87826;
	padding: 8px 15px;
	border-radius: 10px;
	margin: 10px 20px 0 0;
	color: #ffffff;
	cursor: pointer;
}
.faq .btn_category li.clear {
    background: #adadad;
}
.faq .btn_category li.selected {
    background: #db467d;
}
.faq .area_search {
	margin-top: 20px;
}

input[type="text"] {
	font-family: var(--font);
	border: 1px solid #b7b7b7;
	padding: 13px 10px;
	line-height: 1;
	margin-top: 5px;
}
input[type="button"] {
	font-family: var(--font);
	display: inline-block;
	background: url("../../images/common/icon_search.png") no-repeat center #3e403f;
	background-size: 26px 26px;
	margin-top: 5px;
	background-color: #bfbfbf;
	padding: 12px;
	cursor: pointer;
	width: 58px;
  	height: 54px;
}
.unit_input {
	display: inline-block;
	position: relative;
}
input[type="reset"] {
	font-family: var(--font);
	display: inline-block;
	background: #bfbfbf;
	color: #ffffff;
	border-radius: 50%;
	cursor: pointer;
	width: 26px;
  	height: 26px;
	top: 6px;
	bottom: 0;
	right: 5px;
	position: absolute;
	margin: auto;
	font-weight: bold;
}
.faq .unit {
    padding: 40px 30px;
	margin-top: 50px
}
.faq .unit.unit_frequently {
	background: #f8ecd3;
}
.faq .unit.unit_category,
.faq .unit.unit_contact {
	background: #f1ece2;
}
.faq .list_questions {
	line-height: 2;
}
.faq .ttl_01,
.faq .ttl_contact{
	font-size: 35px;
	margin: 80px 0 30px 0;
	font-weight: bold;
}
.faq .sttl_01 {
	font-size: 30px;
	color: #ad7c27;
	margin: 40px 0;
	font-weight: bold;
	position: relative;
	padding-left: 20px;
}
.faq .sttl02 {
	font-size: 20px;
	font-weight: bold;
	background: #f8f2e5;
	padding: 10px 20px;
	margin: 40px 0 20px 0;
}
.faq .sttl_01:before {
	content: "";
	width: 3px;
	height: 42px;
	background: #ad7c27;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.faq .list_faq {
	background: #f0e9d8;
	border-radius: 20px;
	padding: 20px 30px;
	margin-top: 20px;
}
.faq .list_faq > dt {
	color: #96691b;
	font-size: 20px;
	border-bottom: 1px dashed #b7a786;
	padding-bottom: 20px;
	padding-left: 55px;
	margin-bottom: 20px;
	position: relative;
}
.faq .list_faq > dd {
	position: relative;
	padding-left: 55px;
}
.faq .list_faq > dt:before {
	content: "";
	background: url("../../images/faq/icon_q.png") no-repeat;
	width: 35px;
	height: 35px;
	background-size: 35px 35px;
	position: absolute;
	left: 0;
	top: 3px;
}
.faq .list_faq > dd:before {
	content: "";
	background: url("../../images/faq/icon_a.png") no-repeat;
	width: 35px;
	height: 35px;
	background-size: 35px 35px;
	position: absolute;
	left: 0;
	top: 3px;
}
.faq .list_step {
	display: flex;
	margin: 20px auto 30px auto;
    border-bottom: 1px dashed #b2ada1;
    padding-bottom: 30px;
}
.faq .list_step dt {
	width: calc(60% - 30px);
    margin-right: 30px;
    font-weight: normal;
}
.faq .list_step dd {
	width: 40%;
    max-width: 430px;
    margin-left: auto;
}
.faq .step {
    font-size: 25px;
    font-weight: bold;
    color: #96691b;
}
.faq .contact_info {
    background: #f2efea;
    border: 1px solid #d8d0ba;
    padding: 35px 40px;
    margin-top: 100px;
}
.faq .btn_faq {
    margin: 0 !important;
}
.faq .btn_faq a {
    padding: 25px 15px 25px 78px;
}
@media screen and (max-width: 749px) {
	.faq .btn_category {
		flex-direction: column;
	}
	.faq .area_search input[type="text"] {
		width: 50vw;
	}
	.faq .area_search input[type="button"] {
		width: 50px;
		height: 48px;
	}
	.faq h3.title {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.faq h4.title {
		font-size: 16px;
		margin: 15px 0;
	}
	.faq .unit_search {
		padding: 15px;
		margin-top: 20px;
	}
	.faq .unit {
		padding: 15px;
		margin-top: 20px;
	}
    .faq .list_faq {
        padding: 15px;
    }
    .faq .ttl_01,
    .faq .ttl_contact {
        font-size: 20px;
        margin: 40px 0 20px 0;
    }
    .faq .sttl_01 {
        font-size: 18px;
        margin: 20px 0;
        padding-left: 12px;
    }
    .faq .sttl02 {
        font-size: 16px;
        background: #f8f2e5;
        line-height: 1.6;
        padding: 10px 20px;
        margin: 40px 0 20px 0;
    }
    .faq .sttl_01:before {
        width: 3px;
        height: 22px;
    }
    .faq .btn_category li {
        margin-right: 0;
    }
    .faq .list_faq > dt {
        font-size: 16px;
        padding-bottom: 15px;
        padding-left: 32px;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    .faq .list_faq > dd {
        position: relative;
        padding-left: 32px;
    }
    .faq .list_faq > dt:before {
        width: 25px;
        height: 25px;
        background-size: 25px 25px;
    }
    .faq .list_faq > dd:before {
        width: 25px;
        height: 25px;
        background-size: 25px 25px;
    }
    .faq .list_step {
        flex-direction: column;
        border-bottom: 1px dotted #b2ada1;
        padding-bottom: 20px;
        margin-bottom: 15px;
    }
    .faq .list_step dt,
    .faq .list_step dd {
        width: 100%;
        margin-right: 0;
    }
    .faq .list_step dd {
        margin-top: 10px;
    }
    .faq .step {
        font-size: 18px;
    }
    .faq .contact_info {
        padding: 10px 15px;
        margin-top: 40px;
    }
}



.privacy {
	background: url("../../images/common/bg_01.jpg") repeat;
}