a {
	color: #AA9775;
}

a:hover {
	color: #AA9775;
}
/*---------------------------------------------
  service
---------------------------------------------*/
.fanclub {
	line-height: 1;
}

.fanclub .name {
	font-size: 20px;
	margin-bottom: 16px;;
}

.fanclub-logo {
	max-width: 315px;
	margin: 0 auto 64px;
}

.fanclub-logo img {
	width: 100%;
}

.service-intro {
	font-size: 32px;
	margin-bottom: 64px;
	line-height: 1.2;
}

.fanclub h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #AA9775;
	color: #fff;
	padding: 12px;
	margin-bottom: 48px;
	font-size: 48px;
	font-weight: bold;
	height: 97px;
}

.fanclub h3 span {
	display: inline-block;
}

.fanclub h3 img {
	display: inline-block;
	margin-right: 14px;
	width: 73px;
}

.service-head {
	font-size: 32px;
	padding-bottom: 2px;
	border-bottom: 1px solid #2E2A27;
	margin: 0 auto 24px;
	width: max-content;
}

.contents-box {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 800px;
	padding: 30px;
	border: 4px solid #AA9775;
	border-radius: 8px;
	margin: 0 auto 32px;
}

.fanclub .content {
	margin: 0 8px;
	width: 20%;
}

.content-icon {
	width: 86px;
	margin: 0 auto 16px;
}

.content-icon img {
	display: block;
	width: 100%;
	height: 90px;
}

.table-area-wrap {
	max-width: 800px;
	margin: 0 auto 56px;
}

.service-table {
	margin-bottom: 48px;
}

.table-area-wrap table {
	border-right: 1px solid #2E2A27;
	border-left: 1px solid #2E2A27;
	width: 100%;
	font-size: 16px;
}

.table-area-wrap tr {
	border-top: 1px solid #2E2A27;
	border-bottom: 1px solid #2E2A27;
}

.table-area-wrap tr > :first-child {
	width: 50%;
	border-right: 1px solid #2E2A27;
	font-weight: bold;
}

.table-area-wrap tr > :nth-child(2),
.table-area-wrap tr > :nth-child(3) {
	width: 25%;
	font-weight: bold;
}

.table-area-wrap tr > :nth-child(2) {
	border-right: 1px solid #2E2A27;
}

.table-area-wrap th,
.table-area-wrap td {
	padding: 10px
}

.table-area-wrap th {
	font-weight: 900;
}

.table-area-wrap th.table-head {
	background-color: #AA9775;
	color: #fff;
}

.table-area-wrap td {
	text-align: center;
}

.table-area-wrap .note {
	margin-bottom: 48px;
}

.table-area-wrap .note p {
	font-size: 14px;
	line-height: 1.7;
}

.member-detail-wrap {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 48px;
}

.member-detail {
	padding: 0 30px 40px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	width: 390px;
}

.member-name {
	display: block;
	font-size: 28px;
	font-weight: bold;
	max-width: 220px;
	color: #fff;
	background-color: #AA9775;
	padding: 7px 50px;
	margin: 0 auto;
	border-radius: 8px;
	transform: translateY(-20px);
	text-align: center;
}

.detail-premium .member-name {
	background-color: #BF8F39;
}

.member-text {
	font-size: 20px;
	font-weight: bold;
	color: #6C6C6C;
	margin-bottom: 36px;
	line-height: 1.3;
}

.member-detail .price {
	font-size: 36px;
	font-weight: bold;
	color: #6C6C6C;
	margin-top: 16px;
	margin-bottom: 36px;
	text-align: center;
}

.member-detail .price span {
	font-size: 24px;
}

.member-detail .join-btn {
	display: block;
	font-size: 24px;
	font-family: "M PLUS 1", sans-serif;
	color: #fff;
	background-color: #AA9775;
	padding: 16px 0;
	margin: 0 auto;
	border-radius: 8px;
	max-width: 190px;
	text-align: center;
}

.member-detail.detail-premium .join-btn {
	background-color: #BF8F39;
}

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

.faq-section-wrap {
	background-color: #AA9775;
	border-radius: 8px;
	padding: 20px;
}

.faq-section h3 {
    padding-bottom: 36px;
}

.faq-section .faq_box dl {
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    padding: 18px 16px;
    margin-bottom: 8px;
    cursor: pointer;
}

.faq-section .faq_box dl dt {
    font-size: 14px;
    color:  #2E2A27;
    font-weight: bold;
	margin-right: 10px;
	line-height: 1.5;
}

.faq-section .faq_box dl dd {
    display: none;
    font-size: 13px;
    color: #2E2A27;
	margin-top: 16px;
}

.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: 27px;
    margin-top: -5px;
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease-out;
    transition-delay: .1s;
}


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


@media screen and (max-width: 991px) {
	.fanclub-logo {
		max-width: 200px;
		margin-bottom: 32px;
	}

	.service-intro {
		font-size: 12px;
		padding: 0 15px;
	}

	.fanclub h3 {
		display: flex;
        justify-content: center;
        align-items: center;
		font-size: 20px;
		height: 65px;
		padding: 8px 15px;
	}

	.fanclub h3 img {
		width: 49px;
	}

	.service-head {
		font-size: 16px;
	}

	.contents-box-wrap {
		margin: 0 15px;
	}
	
	.contents-box {
		margin: 0 auto 32px;
		justify-content: space-between;
	}

	.fanclub .content {
		width: 19%;
	}

	.table-area-wrap {
		margin: 0 auto 48px;
	}

	.table-area-wrap .note p {
		font-size: 14px;
	}

	.service-table,
	.table-area-wrap .note,
	.member-detail-wrap {
		margin: 0 15px 48px;
	}

	.member-detail {
		width: 100%;
		margin-bottom: 48px;
	}

	.member-name {
		font-size: 24px;
	}

	.member-detail .price {
		font-size: 28px;
	}

	.member-detail .price span {
		font-size: 20px;
	}

	.table-area-wrap table {
		font-size: 13px;
	}

	.table-area-wrap th.table-head {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
	.contents-box {
		justify-content: space-around;
	}

	.fanclub .content {
		margin: 0;
		width: 45%;
	}

	.faq-section {
		margin: 0 15px;
	}

	.member-detail-wrap {
		display: block;
	}

	.member-detail {
        max-width: 400px;
        margin: 0 auto 48px;
	}
}


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

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


/***** 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: #e79a8e;
	border-bottom: solid 2px #e79a8e;
}


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


/***** 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 #CBCBCB;
	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 #E0E0E0;
	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 #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: #007bff;
	border-bottom: solid 2px #007bff;
}



/***** 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;
	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);
	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 #E0E0E0;
}




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

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

}








/*---------------------------------------------
 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 {
display: flex;
flex-wrap: wrap;
	border-bottom: solid 1px #E0E0E0;
	font-weight: normal;
	margin-bottom: 32px;
	padding-bottom: 8px;
}

#message_mail .member .sample dt .title {
flex-basis:80%;
}

#message_mail .member .sample dt .time {
	flex-basis: 20%;
	text-align: right;
}
#message_mail .member .sample dt .from {
flex-basis: 100%;
}

#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 {
	display: flex;
	list-style: none;
	padding-left: 0;
	margin: 0 -1.5%;
}

#message_mail .member .member_list li {
	flex-basis: 22%;
	margin: 0 1.5% 32px;
}

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

#message_mail .member .member_list li {
	flex-basis: 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);
	transition:opacity .3s ease;
}

#message_mail .member .member_list dt img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 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;
}