/*---------------------------------------------
  service
---------------------------------------------*/

#service h3 {
	width:55%;
	margin:0 auto 64px;
}

.mainvisual-section {
	position: relative;
	margin-top: 55px;
}

.mainvisual-section img {
	width: 100%;
}

.service-section {
	background-color: #000;
	padding: 40px 0 80px;
}

.service-section .container {
	max-width: 670px;
	margin: 0 auto;
}

.service-section h2.font-accent {
	font-size: 48px;
	margin-bottom: 48px;
	letter-spacing: 20%;
	text-align: center;
}

.service-contents {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.service-content {
	width: 31%;
	padding: 16px 16px 6px;
	border: 2px solid #222222;
	border-radius: 8px;
	background-color: #090909;
}

.service-icon {
	width: 26px;
	margin: 0 auto 7px;
}

.service-icon img {
	width: 100%;
}

.service-content p {
	font-size: 9px;
	color: #888;
	margin-bottom: 8px;
	text-align: center;
}

.service-content p.content-name {
	font-size: 10px;
}

.service-section .note {
	font-size: 10px;
	color: #888;
	max-width: 500px;
    margin: 0 auto;
}

.plan-section {
	padding: 100px 0 210px;
	background: #100F10;
	background: linear-gradient(180deg,rgba(16, 15, 16, 1) 0%, rgba(40, 40, 40, 1) 50%, rgba(16, 15, 16, 0.7) 100%);
}

.plan-section .container {
	max-width: 940px;
}

.plansection-title {
	max-width: 360px;
	margin: 0 auto 64px;
}

.plansection-title img {
	width: 100%;
}

.plans {
	display: flex;
	gap: 3px;
}

.plan {
	padding: 42px 29px;
	border: 1px solid rgba(184,184,188,0.5);
	width: 33%;
}

.plan.recommend {
	position: relative;
	border: 1px solid #D4AF37;
}

.free-plan.plan.recommend,
.annual-plan.recommend {
	content: none;
}

.plan-month.recommend::before {
	content: "RECOMMEND";
	top: -13px;
	left: 50%;
	transform: translate(-50%, 0);
	position: absolute;
	display: inline-block;
	padding: 8px 18px;
	font-size: 8px;
	background-color: #D4AF37;
	color: #000000;
	line-height: 1;
    width: 100px;
    font-weight: 500;
	text-align: center;
}

.plan p {
	color: rgba(255,255,255,0.6);
	line-height: 1;
}

.plan.recommend p {
	color: #fff;
}

.plan-name-en {
	font-size: 16px;
	font-family: "Bebas Neue", sans-serif;
	margin-bottom: 16px;
}

.plan-price {
	font-size: 60px;
	font-family: "Bebas Neue", sans-serif;
	margin-bottom: 16px;
}

.plan-name-jp {
	font-size: 14px;
	margin-bottom: 16px;
}

.plan-contents {
	margin-bottom: 39px;
	min-height: 208px;
}

.plan-content {
	font-size: 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(184,184,188, 0.02);
	margin-bottom: 8px;
}

.plan-content img {
	display: inline-block;
	width: 9px;
	margin-right: 8px;
}

.plan-btn {
	display: block;
	font-size: 14px;
	font-family: "Bebas Neue", sans-serif;
	color: #8E8E92;
	padding: 20px 0;
	border: 1px solid #8E8E92;
	border-radius: 4px;
	text-align: center;
}

.plan-btn:hover {
	color: #8E8E92;
}

.plan.recommend .plan-btn {
	color: #0A0A0A;
	background-color: #D4AF37;
	border: 1px solid #D4AF37;
}

.plan.recommend .plan-btn:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
	opacity: 1;
}

.select-plans {
	display: none;
	justify-content: center;
	gap: 6px;
	max-width: 310px;
	margin: 0 auto 24px;
}

.select-plan {
	padding: 18px 16px;
	border: 1px solid rgba(184,184,184,0.07);
	background-color: rgba(184,184,184,0.07);
	cursor: pointer;
}

.active.select-plan {
	border: 1px solid rgba(212,175,55,0.6);
	background-color: rgba(212,175,55,0.12);
}

.select-plan p {
	color: #58585C;
	font-size: 9px;
	line-height: 1;
	text-align: center;
}

.select-head {
	font-family: "Bebas Neue", sans-serif;
	color: #8E8E92;
	font-size: 11px;
	margin-bottom: 7px;
}

.active.select-plan .select-head {
	color: #D4AF37;
}

.select-head.select-head-price {
	font-size: 18px;
}

.faq-section {
	background-color: #000;
	padding: 80px 0;
}

.faq-section .container {
	max-width: 670px;
	margin: 0 auto;
}

.faq-section h2 {
	font-size: 36px;
	color: #fff;
	margin-bottom: 56px;
	text-align: center;
}

.faq-section dl {
	background-color: rgba(255,255,255,0.7);
	margin: 0 26px 16px;
	border-radius: 4px;
}

.faq-section dt {
	position: relative;
	color: #000;
	padding: 18px 30px 18px 0;
	margin: 0 26px;
	cursor: pointer;
}

.faq-section dt::after {
	content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #000000;
    border-right: 3px solid #000000;
    transform: rotate(135deg);
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -5px;
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease-out;
    transition-delay: .1s;
}

.faq-section dt.select:after {
	transform: rotate(-45deg);
}

.faq-section dd {
	display: none;
	color: #000;
	overflow: hidden;
	padding: 0 26px 16px;
}

@media screen and (max-width: 991px) {
	.select-plans {
		display: flex;
	}

	.plan-section .container {
		padding: 0 24px;
	}

	.plan {
		display: none;
		width: 100%;
	}

	.plan.active {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	
	#service h3 {
		width:75%;
	}

	.container {
		padding: 0 24px;
	}

	.service-section .container {
		padding: 0 24px;
	}

	.service-content {
		width: 47%;
	}

	.note {
		padding: 0 24px;
	}

	.faq-section .container {
		padding: 0 24px;
	}

}

/*------------------
  単一プラン
------------------*/

/***** plan *****/

#service.service_single .plan {
	width:100%;
	max-width:800px;
	margin:0 auto 64px;
	border-radius: 3px;
	background:#424242;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

#service.service_single .plan .description {
	padding:32px 16px 0;
}

#service.service_single .plan .price {
	padding:16px;
	text-align:center;
}

#service.service_single .plan .registration a {
	padding:16px;
	border-top:solid 1px #616161;
	text-align:center;
	display:block;
}


/***** service *****/

#service.service_single .service .service_list {
	padding-bottom:16px;
}

#service.service_single .service .service_list dl {
	border-bottom:solid 1px #424242;
	padding-bottom:16px;
	margin-bottom:16px;
}

#service.service_single .service .service_list dt {
	font-size:16px;
	font-weight:normal;
	margin-bottom:0.5em;
}

#service .faq-section dl dd > a {
	color: #0E39DB;
}


/*------------------
  複数プラン
------------------*/

#service.service_multiple .lead {
	font-size: 14px;
	margin-bottom: 64px;
}

/***** plan *****/

#service.service_multiple .plan {
margin-bottom: 64px;
}

#service.service_multiple .plan ul {
	text-align:center;
	padding: 10px 0;
}

#service.service_multiple .plan li {
	padding: 32px 0 0;
	box-sizing: border-box;
	background:#424242;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	border-radius: 3px;
}

#service.service_multiple .plan li dl  {
	margin:0 16px 32px;
}

#service.service_multiple .plan li dt  {
	margin-bottom:16px;
	font-weight: normal;
}

#service.service_multiple .plan li dt .plan_name {
	font-size:20px;
}

#service.service_multiple .plan li dd {
	text-align:left;
}

#service.service_multiple .plan li .registrations a {
	padding:16px 0;
	border-top:solid 1px #616161;
	display:block;
}


@media screen and (min-width: 768px) {

#service.service_multiple .plan ul {
display: flex;
flex-wrap: nowrap;
justify-content:center;
}

#service.service_multiple .plan li {
	margin: 0px 1.5%;
}

#service.service_multiple .plan.plan-2 li {
flex-basis: 40%;
}

#service.service_multiple .plan.plan-3 li {
flex-basis: 30%;
}

}


@media screen and (max-width: 767px) {

#service.service_multiple .plan li {
	margin-bottom:32px;
}

}


/***** service *****/

#service.service_multiple .service h5 {
	font-size:16px;
	text-align:center;
	margin-bottom:32px;
}

#service.service_multiple .service table {
	width:100%;
	border-collapse:separate;
	border-spacing: 8px 0;
}

#service.service_multiple .service th {
	text-align:center;
	border-collapse:separate;
	border-bottom:solid 1px #616161;
	padding-bottom:16px;
	font-weight:normal;
}

#service.service_multiple .service td {
	border-bottom:solid 1px #616161;
	padding:16px 0px;
}

#service.service_multiple .service th:first-child {
	position: relative;
	left: -8px;
}
#service.service_multiple .service th:last-child {
	position: relative;
	right: -8px;
}

#service.service_multiple .service tr td:nth-child(n+2) {
	text-align:center;
	/*border-left:solid 16px rgba(255,255,255,0);*/
}

#service.service_multiple .service tr td:first-child {
	position: relative;
	left: -8px;
}

#service.service_multiple .service tr td:last-child {
	position: relative;
	right: -8px;
}

#service.service_multiple .service tr td.no_service {
	color:#616161;
}

#service.service_multiple .service tr td .sub_txt {
	font-size:12px;
	margin-top:8px;
}




@media screen and (min-width: 768px) {

#service.service_multiple .service tr td:first-child {
	padding:16px;
}

	
}


@media screen and (max-width: 767px) {

#service.service_multiple .service table {
	border-spacing: 4px 0;
}

#service.service_multiple .service th {
	padding-bottom:8px;
	line-height:1.4;
}

#service.service_multiple .service th:first-child {
	left: -4px;
}
#service.service_multiple .service th:last-child {
	right: -4px;
}


#service.service_multiple .service tr td:nth-child(n+2) {
	text-align:center;
	/*border-left:solid 8px #fff;*/
	width:20%;
}

#service.service_multiple .service tr td:first-child {
	left: -4px;
}

#service.service_multiple .service tr td:last-child {
	right: -4px;
}

}





/*---------------------------------------------
  payment
---------------------------------------------*/

#payment .lead {
	font-size: 14px;
	margin-bottom: 64px;
}


/***** tab_menu *****/

#payment .tab_menu {
	margin-bottom: 64px;
	border-bottom: solid 1px #616161;
	height: 36px;
	overflow-y: hidden;
}

#payment .tab_scroll {
	overflow-x: scroll;
}

#payment .tab_menu ul {
	display: table;
	padding-bottom: 24px;
}

#payment .tab_menu li {
	display: table-cell;
}

#payment .tab_menu li label{
	cursor: pointer;
	margin-bottom: 0;
	padding: 0 16px 8px;
	position: relative;
	white-space: nowrap;
}

#payment .tab_menu li input:checked+label {
	color: #E8C547;
	border-bottom: solid 2px #E8C547;
}


/***** sub_menu *****/

#payment .sub_menu {
	margin-bottom: 64px;
}

#payment .sub_menu li {
	display: inline-block;
	margin-right: 1em;
}

#payment .sub_menu li label{
	cursor: pointer;
}
#payment .sub_menu li input:checked+label {
	color: #E8C547;
}


/***** payment *****/

#payment .payment .payment_list h3 {
	margin-bottom: 64px;
	font-size: 20px;
}

#payment .payment .payment_list .payment_box {
	margin-bottom: 64px;
}

#payment .payment .payment_list .payment_box h4 {
	font-size: 16px;
	margin-bottom: 32px;
}

#payment .payment .payment_list .payment_box dl {
	display: flex;
	flex-direction: column;
	border-bottom: solid 1px #616161;
	margin-bottom: 16px;
	padding-bottom: 16px;
}

@media screen and (min-width: 768px) {
#payment .payment .payment_list .payment_box dl {
flex-direction: row;
}

#payment .payment .payment_list .payment_box dt {
flex-basis:16%;
	font-weight: normal;
}

#payment .payment .payment_list .payment_box dd {
	flex-basis: 84%;
	margin-bottom: 0;
}
}


@media screen and (max-width: 767px) {

#payment .payment .payment_list .payment_box dt {
	font-weight: normal;
	margin-bottom: 8px;
}

#payment .payment .payment_list .payment_box dd {
	margin-bottom: 0;
}
}



/*---------------------------------------------
  INFO
---------------------------------------------*/

#info dl {
	margin-bottom:64px;
}

#info dt {
	font-size:24px;
	margin-bottom:16px;
}

#info dd ul, #faq dd ul {
	margin-bottom:0;
	list-style: none;
}

@media screen and (max-width:767px){
	
	#info dt {
		font-size:20px;
		line-height:1.2;
	}

}


/*------------------
  law
------------------*/

#law .law_box {
	margin-bottom:64px;
}

#law .law_box h3 {
	font-size:24px;
	line-height: 1.8;
	margin-bottom: 16px;
}

#law .law_box h4 {
	font-size:20px;
	margin-bottom: 16px;
}

#law .law_box h4 .info{
	font-size:16px;
}


#law .law_box dl {
display: flex;
flex-direction:column;
	padding:16px 0;
	border-bottom:solid 1px #424242;
	margin-bottom:0;
}

#law .law_box dd {
margin-bottom: 0;
}


@media screen and (min-width:768px){
#law .law_box dl {
flex-direction: row;
}

#law .law_box dt {
flex-basis: 30%;
}

#law .law_box dd {
flex-basis: 70%;
}

}


@media screen and (max-width:767px){

#law .law_box h4 {
	font-size:18px;
	line-height:1.2;
}

#law .law_box h3 {
	font-size:20px;
	line-height:1.2;
}

#law .law_box dt {
	margin-bottom:16px;
	font-size:16px;
}


}



/*------------------
  FAQ
------------------*/

/***** tab_menu *****/

#faq .tab_menu {
	margin-bottom: 64px;
	border-bottom: solid 1px #616161;
	height: 36px;
	overflow-y: hidden;
}

#faq .tab_scroll {
	overflow-x: scroll;
}

#faq .tab_menu ul {
	display: table;
	padding-bottom: 24px;
}

#faq .tab_menu li {
	display: table-cell;
}

#faq .tab_menu li label{
	cursor: pointer;
	margin-bottom: 0;
	padding: 0 16px 8px;
	position: relative;
	white-space: nowrap;
}
#faq .tab_menu li input:checked+label {
	color: #E8C547;
	border-bottom: solid 2px #E8C547;
}



/***** FAQ *****/

#faq .faq_box {
	margin-bottom:64px;
}

#faq .faq_box h3 {
	font-size:24px;
	margin-bottom:16px;
	line-height:1.8;
}

#faq .faq_box h3 i {
	margin-right:0.5em;
}

#faq .faq_box dl {
	margin-bottom:8px;
}

#faq .faq_box dt {
	padding:16px 32px 16px 16px;
	position:relative;
	cursor:pointer;
	border:solid 1px #424242;
	transition: 0.3s;
}

#faq .faq_box dt:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 4px solid #616161;
	border-right: 4px solid #616161;
	transform: rotate(135deg);
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -5px;
	transition-property: all;
	transition-duration: .3s;
	transition-timing-function: ease-out;
	transition-delay: .1s;
}

#faq .faq_box dt.select:after {
	transform: rotate(-45deg);
}

#faq .faq_box dd {
	padding:16px;
	display:none;
	border:solid 1px #424242;
}




@media screen and (max-width:767px){

	#faq .faq_box h3 {
		font-size:20px;
		line-height:1.2;
	}

}