/*---------------------------------------------
  service カスタム
---------------------------------------------*/

#service .container {
	max-width: 1200px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	transform: rotate(0.03deg);
}

#service .logo {
	display: block;
	width: 100%;
	max-width: 316px;
	margin: 0 auto 35px;
}

#service .lead {
	font-size: 32px;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 120px;
}

#service .service-contents {
	display: block;
	width: 100%;
	height: 100%;
	margin-bottom: 84px;
}

#service .service-contents .service-ttl {
	width: 100%;
	background: var(--main);
	padding: 16px 0;
	text-align: center;
	font-weight: 800;
	color: #fff;
	font-size: 46px;
	margin-bottom: 50px;
}

/* 会員サービス */
.service-inner * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.service-inner {
  max-width: 665px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.service-inner .sub-ttl {
	font-size: 32px;
	position: relative;
	font-weight: 800;
	text-align: center;
	color: var(--default);
	margin-bottom: 40px;
	padding-bottom: 8px;
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.service-inner .sub-ttl:after {
	content: "";
	display: block;
	width: 100%;
	max-width: 300px;
	height: 2px;
	background: var(--default);
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.service-inner ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  justify-content: space-between;
}

.service-inner ul li {
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-inner ul li img {
  width: auto;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-inner ul li span {
  font-size: 14px;
  font-weight: bold;
  color: var(--default);
  line-height: 1.4;
  word-break: break-all;
}

/* サービス一覧 */
.table-container {
	width: 100%;
	overflow-x: auto;
	/*-webkit-overflow-scrolling: touch;*/
	margin-bottom: 40px;
}

.membership-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	letter-spacing: 0.05em;
	min-width: 345px;
	max-width: 935px;
	margin: 0 auto;
}

.membership-table th {
	background-color: #E5CFD1;
	color: var(--default);
	font-weight: 800;
	padding: 12px 16px;
	text-align: left;
	border: 1px solid #fff;
}

.membership-table th.tier-header {
	width: 25%;
	text-align: center;
}

.membership-table tr.section-title th {
	background-color: #E5CFD1;
	padding: 10px 16px;
	font-size: 16px;
}

.membership-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #fff;
	background-color: #FFF8F8;
	transition: background-color 0.2s;
}

.membership-table td.service-name {
	font-weight: normal;
	text-align: left;
}

.membership-table td.status {
	text-align: center;
	font-size: 16px;
}

.icon-circle {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	color: var(--default);
}

/* 注意書き */

.table-container .service-atten {
	max-width: 935px;
	margin: 26px auto 0;
	font-size: 12px;
}

/* サービス一覧 プラン部分 */

.service-plan {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.service-plan_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 360px;
  height: 260px;
  padding: 30px 20px;
  border-width: 4px;
  border-style: solid;
  border-radius: 24px;
  background-color: #fff;
  box-sizing: border-box;
}

.service-plan_header {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.service-plan_price {
  font-size: 26px;
  font-weight: 800;
  color: var(--default);
}

.service-plan_tax {
  font-weight: 800;
  margin-left: 2px;
}

.service-plan_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 45px;
  border-radius: 25px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
  position: relative;
  overflow: hidden;
}

.service-plan_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.service-plan_link:hover::before {
  left: 125%;
  transition: left 0.6s ease;
}

.service-plan_link:hover {
  opacity: 1;
}

/* 通常会員用 */

.is-regular {
  border-color: var(--main);
}
.is-regular .service-plan_header {
  color: var(--main);
}
.is-regular .service-plan_link {
  background-color: #A97D80;
}


/* 特別会員用 */

.is-special {
  border-color: var(--accent);
}
.is-special .service-plan_header {
  color: var(--accent);
}
.is-special .service-plan_link {
  background-color: var(--accent);
}

#service .container > span {
	margin: 0 auto;
	max-width: 740px;
	display: block;
	width: 100%;
}

/* faq */

#service #faq {
	width: 100%;
	height: auto;
	padding: 20px;
	background: var(--main);
	border-radius: 16px;
}

#service #faq .faq_box {
	margin-bottom: 0;
}

#faq .faq_box dl {
	background: #fff;
	border-radius: 8px;
	font-size: 16px;
}

#service #faq .faq_box dt {
	border: none;
	color: var(--default);
	font-weight: 800;
}

#service #faq .faq_box dd {
	border: none;
	color: var(--default);
}

#service #faq .faq_box dt:after {
	border-top: 4px solid var(--default);
	border-right: 4px solid var(--default);
}

@media (min-width: 768px) {
  .service-plan {
    flex-direction: row;
    gap: 32px;
  }
  
  .service-plan_card {
    width: 360px; 
  }
}


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

	#service .logo {
    max-width: 200px;
	}

	#service .lead {
    font-size: 12px;
    padding: 0 15px;
    margin-bottom: 46px;
	}

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

	#service .service-contents .service-ttl {
		font-size: 20px;
		margin-bottom: 32px;
	}

	/* 会員サービス */
	.service-inner {
    margin-bottom: 40px;
  }

  .service-inner .sub-ttl {
    font-size: 18px;
    margin-bottom: 25px;
    border-bottom-width: 2px;
  }

  .service-inner .sub-ttl:after {
  	max-width: 160px;
  }

  .service-inner ul li {
    width: 46%;
  }

  .service-inner ul li img {
    height: 60px;
    margin-bottom: 10px;
  }

  .service-inner ul li span {
    font-size: 12px;
  }

  /* サービス一覧 */
  .membership-table {
  	font-size: 13px;
  }

  .membership-table th {
  	padding: 10px 12px;
  }

  .membership-table td {
  	padding: 10px 0px 10px 12px;
  }

  .membership-table td.status {
  	font-size: 13px;
  }

  .membership-table th.tier-header {
  	width: 30%;
  }

  /* faq */
  #faq .faq_box dl {
		font-size: 14px;
	}
}

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

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

#service.service_single .plan {
	width:100%;
	max-width:800px;
	margin:0 auto 64px;
	border-radius: 3px;
	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 #E0E0E0;
	text-align:center;
	display:block;
}

/*登録開始前*/
#service.service_single .plan .registration.preparation {
	padding:16px;
	border-top:solid 1px #E0E0E0;
	text-align:center;
	display:block;
	color:#ff0000;
}

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

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

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

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


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

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

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

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

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

#service.service_multiple .plan li {
	padding: 32px 0 0;
	box-sizing: border-box;
	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 #E0E0E0;
	display:block;
}


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

#service.service_multiple .plan ul {
	clear:both;
}

#service.service_multiple .plan li {
	display:inline-block;
	margin: 0px 1.5%;
}

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

#service.service_multiple .plan.plan-3 li {
	width:30%;
	float: left;
	display: block;
}
	
}


@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%;
}

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

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

#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.no_service {
	color:#E0E0E0;
}

#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 th {
	padding-bottom:8px;
	line-height:1.4;
}

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

}





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

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


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

#payment .tab_menu {
	margin-bottom: 64px;
	border-bottom: solid 1px #CBCBCB;
	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: #ac8e90;
	border-bottom: solid 2px #ac8e90;
}


/***** 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: #ac8e90;
}


/***** 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 {
	overflow: hidden;
	clear: both;
	border-bottom: solid 1px #CBCBCB;
	margin-bottom: 16px;
	padding-bottom: 16px;
}



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

#payment .payment .payment_list .payment_box dt {
	width: 16%;
	float: left;
	font-weight: normal;
}

#payment .payment .payment_list .payment_box dd {
	width: 84%;
	float: right;
	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 {
	overflow:hidden;
	clear:both;
	padding:16px 0;
	border-bottom:solid 1px #E0E0E0;
	margin-bottom:0;
}


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

#law .law_box dt {
	width:30%;
	float:left;
}

#law .law_box dd {
	width:70%;
	float:right;
	margin-bottom:0;
}

}


@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 #CBCBCB;
	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: #ac8e90;
	border-bottom: solid 2px #ac8e90;
}



/***** 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 #E0E0E0;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}

#faq .faq_box dt:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 4px solid #BDBDBD;
	border-right: 4px solid #BDBDBD;
	transform: rotate(135deg);
	-webkit-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);
	-webkit-transform: rotate(-45deg);
}

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




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

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

}


/*------------------
  Agreement
------------------*/

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

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

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

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

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

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







/*---------------------------------------------
 MESSAGE MAIL
---------------------------------------------*/

/*--------------------
 message_mail
--------------------*/

#message_mail .message_mail {
	width: 100%;
	margin: 0 auto 64px;
	border-radius: .25rem;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

#message_mail .message_mail .description {
	padding:32px 16px 0;
}

#message_mail .message_mail .description .attention {
color: #FF0004;
}

#message_mail .message_mail .price {
	padding:32px 0;
	text-align:center;
}

#message_mail .message_mail .registration {
	border-top:solid 1px #E0E0E0;
}

#message_mail .message_mail .registration a {
	text-align:center;
	display:block;
	padding:16px;
}


/*--------------------
 member
--------------------*/

#message_mail .member {
	margin-top: 128px;
}

#message_mail .member h3 {
	margin-bottom: 32px;
	font-size: 24px;
}

#message_mail .member h4 {
	margin-bottom: 32px;
	font-size: 20px;
}

/***** sample *****/

#message_mail .member .sample {
	width: 100%;
	margin: 0 auto 64px;
	padding:32px 16px;
	border-radius: .25rem;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

#message_mail .member .sample dt {
	overflow: hidden;
	clear: both;
	border-bottom: solid 1px #E0E0E0;
	font-weight: normal;
	margin-bottom: 32px;
	padding-bottom: 8px;
}

#message_mail .member .sample dt .title {
	width: 80%;
	float: left;
}

#message_mail .member .sample dt .time {
	width: 20%;
	float: right;
	text-align: right;
}

#message_mail .member .sample dt .time, #message_mail .member .sample dt .from .name {
	color: #9E9E9E;
}

#message_mail .member .sample dd img {
width: auto;
max-width: 100%;
}


/***** member_list *****/

#message_mail .member .member_list ul {
	list-style: none;
	padding-left: 0;
	margin: 0 -1.5%;
	overflow: hidden;
	clear: both;
}

#message_mail .member .member_list li {
	width: 22%;
	margin: 0 1.5% 32px;
	float: left;
}

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

#message_mail .member .member_list li {
	width: 30.3%;
}

}


#message_mail .member .member_list dl {
	margin-bottom: 0;
}

#message_mail .member .member_list dt {
	width: 100%;
	padding-top: 100%;
	margin-bottom: 16px;
	border-radius: 50% !important;
	height: 0;
	overflow: hidden;
	position: relative;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	-webkit-transition:.3s ease;
	transition:.3s ease;
}

#message_mail .member .member_list dt img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: top;
	max-width: none;
	max-height: none;
	min-width: 100%;
	min-height: 100%;
}

#message_mail .member .member_list dt:hover {
	opacity: 0.8;
}

#message_mail .member .member_list dd {
	text-align: center;
}



/*---------------------------------------------
 MESSAGE MAIL GUIDE
---------------------------------------------*/

#messagemail_guide .guide .re_box {
	margin-bottom: 64px;
}

#messagemail_guide .guide .re_box h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

#messagemail_guide .guide .re_box dl {
	margin-bottom: 32px;
}

#messagemail_guide .guide .re_box dt {
	font-size: 16px;
	margin-bottom: 8px;
	font-weight: bold;
}