@charset "utf-8";

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}body{width:100%;min-width:320px;min-height:800px;overflow-x:hidden;text-align:center;-webkit-text-size-adjust:100%;font-feature-settings:"palt"}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main{display:block}h1,h2,h3,h4,h5,h6,th{font-weight:400}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}p{max-height:999999px}ins{background-color:#ff9;text-decoration:none}mark{background-color:#ff9;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:bottom}input,select{vertical-align:middle}

/****************************************

 common (共通スタイル)

****************************************/
html {
  font-size: 10px;
}
body {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
	color: var(--color-brown1);
	background: var(--color-white2);
    font-size: 1.4rem;
	font-weight: 500;
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
	line-height: 1.8;/* 変更 */
}
@keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}

/*PC版769pxまでSP版786px〜*/
@media screen and (min-width: 769px) {
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none !important;
	}
}

.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner1200{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
a, a:hover{
	color: var(--color-brown1);
}
main{
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
}
img{
	max-width: 100%;
  	height: auto;
}
h1{
	font-size: 11px;
}

/* フォーカスイン*/
.focusin{
	opacity: 0;transform : translate(0, 100px);
	transition : all 1.5s;
}
.focusin.on {
	opacity : 1;
	transform : translate(0, 0);
}

/*********** 文字色 ***********/
:root {
	--black: #141414;
	--gray: #d9d9d9;
	--brown: #a4926c;
	--brown_light: #fff4c6;
	--bordeaux: #5f0e1d;
	--bordeaux_light: #82263a;
	--gradation_bordeaux: linear-gradient(90deg, var(--bordeaux) 0%, var(--bordeaux_light) 50%, var(--bordeaux) 100%);
	--gradation_brown: linear-gradient(90deg, var(--brown) 0%, var(--brown_light) 50%, var(--brown) 100%);
	--line_brown: linear-gradient(90deg, var(--brown) 0%, var(--brown_light) 50%, var(--brown) 100%)1;

	--color_white1: #fff8f6;
	--color_brown1: #493528;
	--color_lightbrown1: #928565;
	--color_pink1: #d2556e;
	--color_lightbeige1: #fff5e9;
	--color_purple1: #80679f;
	--gradation_gold1: linear-gradient(90deg, #c3b48f 0%, #fbf0c2 50%, #c3b48f 100%);

	/*********** toyou ***********/
	--color-brown1:#4c2610;
	--color-brown2:#705140;
	--color-brown3:#733918;
	--color-lightbrown1: #dbd4cf;
	--color-bold1: #7b2e2e;
	--color-green1: #3ba78c;
	--color-white1: #fff;
	--color-white2: #fffcfa;
	--color-beige1: #f2e9dd;
	--color-beige2: #fbf4ec;
	--color-gray1: #827d78;
}

.atten_01, .atten_01 a{color: #bc4646;}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #007bff;}
.atten_04, .atten_04 a{color: #ff6800;}

/*********** 背景色 ***********/
.bg_01{
	background:#ffff00;
	display: inline;
	padding: 3px 5px;
}
.bg_02{
	background:#00d8d1;
	display: inline;
	padding: 3px 5px;
}
.bg_03{
	background:#333333;
	color: #999;
	display: inline;
	padding: 3px 5px;
}

/*********** マージン ***********/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_50{margin-bottom: 50px;}
.mb_60{margin-bottom: 60px;}
.mb_80{margin-bottom: 80px;}

/*********** 文字寄せ ***********/
.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}

/*********** フォントサイズ ***********/
.fs_ss{font-size: 1.0rem;}
.fs_s{font-size: 1.2rem;}
.fs_13{font-size: 1.3rem;}
.fs_14{font-size: 1.4rem;}
.fs_15{font-size: 1.5rem;}
.fs_16{font-size: 1.6rem;}
.fs_18{font-size: 1.8rem;}
.fs_20{font-size: 2.0rem;}

/*********** フォントウエイト ***********/
.fw_bold{font-weight: 900;}

/*********** リンクhoverアクション ***********/
.link_act_01{
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
.link_act_01:hover{
	opacity: 0.5;
}

/*********** table設定 ***********/
/*table01*/
.table_01 {
	width: 100%;
	border-top: 1px solid var(--color-brown3);
	border-spacing: 0;
	text-align: left;
}
.table_01 th {
	width: 35%;
	padding: 20px;
	color: var(--color-white1);
	background: var(--color-brown1);
	vertical-align: middle;
	border-color: var(--color-brown3);
	border-style: solid;
	border-width: 1px;
}
.table_01 td {
	padding: 20px;
	color: var(--color-brown1);
    background: var(--color-beige2);
	border-color: var(--color-brown3);
	border-style: solid;
	border-width: 1px;
}
.table_01 td a {
	color: var(--color-brown1);
}

@media screen and (max-width: 768px) {
	.table_01 th, .table_01 td {
		display: block;
		width: 100%;
	}
}

/*table_form*/
.table_form {
	width: 100%;
	border-top: 1px solid var(--color-brown3);
	border-spacing: 0;
	text-align: left;
}
.table_form th {
	padding: 20px;
	color: var(--color-white1);
	border-color: var(--color-brown3);
	border-style: solid;
	border-width: 1px;
	width: 40%;
	background: var(--color-brown1);
	vertical-align: middle;
}
.table_form td {
	padding: 20px;
	color: var(--color-brown1);
    background: var(--color-beige2);
	border-color: var(--color-brown3);
	border-style: solid;
	border-width: 1px;
}
.table_form td a {
	color: var(--color-brown1);
}

/*必須アイコン*/
span.icon_required{
	display: inline-block;
    background:#bc4646;
    padding: 2px 6px 1px;
    font-size: 0.8rem;
    line-height: 18px;
    color: var(--color-white1);
}
@media screen and (min-width: 520px){
	span.icon_required {
	    font-size: 1.0rem;
	}
}
@media screen and (max-width: 768px) {
	.table_form th, .table_form td {
		display: block;
		width: 100%;
	}
}
/*formのデフォルトスタイルの削除・リセット*/
form input[type="text"],
form input[type="email"],
form button,
form textarea,
form select {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	font-size: 16px;
}
/*フォームのスタイルを設定*/
form input[type="radio"],
form input[type="checkbox"] {
    margin: 1px 4px 4px;
    accent-color: var(--bordeaux);
}
form .form_wide,
form input.form_wide{
	width: 80px!important;
}
#contents_enquete form select,
#contents_reserve form select {
    max-width: 180px;
}
.confirm .table_form td {
    min-height: 34px;
}
form input[type="text"],
form input[type="email"],
form textarea,
form select {
	border: 1px solid #c6beb6;
	background: #fff;
	color: #666;
	-webkit-transition: all .3s;
	transition: all .3s;
	padding: 5px 10px;
	height: 40px;
	width: 100%;
}
form td.radio_wide{
	display: flex;
    flex-wrap: wrap;
    place-content: flex-start;
}
form td.radio_wide label{
	width: 100%;
}
form textarea{
	width: 100%;
	height: 200px;
	resize: vertical;
}
input[type="submit"],
input[type="reset"],
input[type="button"].back_btn {
    border: none;
    -webkit-appearance: none;
    border-radius: 0;
}
/*フォームデザイン調整*/
form input[type="text"],
form input[type="email"],
#contents_enquete form select,
#contents_reserve form select{
	margin: 4px 0;
}
input[type="submit"],
input[type="reset"],
input[type="button"].back_btn {
    display: block;
    margin: 0 auto;
    font-size: 14px;
    cursor: pointer;
    transition: ease-out 0.4s;
}

/* リンクボックス */
.list_link_box li{
	margin: 10px;
	display: inline-block;
	font-size: 11px;
}

/*********** ボタン設定 ***********/
.btn_more {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 16px 20px;
	width: 240px;
	font-size: 1.6rem;
	color: var(--color-brown1);
	background: var(--color-white2);
	border: 1px solid var(--color-brown2);
	transition: 0.3s;
}
.btn_more::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	transform: translateY(-50%);
	width: 50px;
	height: 1px;
	background: var(--color-brown2);
	transition: 0.3s;
}
.btn_more:hover {
	color: var(--color-brown1);
	text-decoration: none;
	opacity: 0.6;
}
.btn_more:hover::after {
	transform: translateX(3px);
}

.btn_send, input[type="submit"] {
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
	display: inline-block;
    position: relative;
	text-align: center;
	height: 50px;
	line-height: 50px;
	max-width: 200px;
	width: 60%;
	margin: 30px auto 0;
	color: var(--color-brown1);

	background: url(../images/btn_frame_top.png), url(../images/btn_frame_bottom.png), var(--color-beige1);
	background-position: top left, bottom right, center;
	background-repeat: no-repeat;
	background-size: 30px, 30px, 100%;

	transition: box-shadow .4s ease-in-out;
	border-radius: 0;
	border: 1px solid var(--color-brown2);
}
.btn_send:hover {
	color: var(--color_brown1);
	box-shadow: 0 0 12px rgba(255, 214, 192, 0.8);
}
.btn_send:focus {
    outline: none;
}

/* フォームのボタン */
.btn_form {
	display: flex;
	gap: 5px;
	justify-content: center;
	/* ボタンを縦に並べる場合
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center; */
}
.btn_form input {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	color: #fff;
	background: #000;
}
.btn_form .btn_send {
	background: #000;
}
.btn_form .btn_reset {
	background: #999;
}

/*戻るボタン*/
input[type="button"].back_btn {
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
	width: 60%;
    max-width: 140px;
    height: 40px;
    line-height: 38px;
    display: block;
	margin: 16px auto 0;
	background-color: rgba(40, 40, 40, 0.8);
	color: #ccc;
	border: 1px solid #ccc;
	text-transform: uppercase;
	transition: .4s;
}

/*リセットボタン*/
input[type="reset"] {
	font-family: serif;
    padding: 0;
    background: none;
    margin: 16px auto 0;
    border: 0;
    border-bottom: 1px solid var(--color_brown1);
    color: var(--color_brown1);
    transition:all 0.4s;
}
input[type="reset"]:hover {
    opacity: .6;
}

@media screen and (max-width: 600px) {
	.btn_more {
		padding: 12px 20px;
		width: 200px;
		font-size: 1.6rem;
	}
	.btn_more::after {
		right: -20px;
		width: 40px;
	}
}

/******************************
form共通設定
******************************/
/*formのデフォルトスタイルの削除・リセット*/
form input[type="text"],
form input[type="email"],
form button,
form textarea,
form select {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
}
/*フォームのスタイルを設定*/
form input[type="text"],
form input[type="email"],
form textarea,
form select {
	border: 1px solid #eee;
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 8px;
	vertical-align: baseline;
}
form input[type="text"],
form input[type="email"],
form textarea {
	width: 100%;
	max-width: 350px;
}
form textarea {
	resize: vertical;
}
form .form_txt {
	margin-top: 5px;
}
form input[type="text"].form_short {
	max-width: 70px;
}
form input[type="text"].form_middle {
	max-width: 120px;
}
form input[type="radio"],
form input[type="checkbox"] {
	margin: 0 4px;
	vertical-align: baseline;
	accent-color: #bc4646;
}
form .form_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
form input::placeholder,
form textarea::placeholder {
	color: #ccc;
}
@media screen and (max-width: 768px) {
	form input[type="text"],
	form input[type="email"],
	form textarea {
		font-size: 16px;
	}
	form .form_list {
		grid-template-columns: 1fr;
	}
}

/******************************
セラピスト共通設定
******************************/
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#section_ranking_01,#section_ranking_02) .cast_box {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 50px min(5%, 40px);
	margin-bottom: 40px;
}
.cast_box {
	gap: 20px 5%;
}

/*セラピとテキスト横並び*/
.cast_box a{
	display: flex;
	align-items: center;
}
.cast_box a .img_box {
	width: 60%!important;
}
.cast_box a .txt_box{
	width: 40%!important;
}
.cast_box a .txt_box{
	padding-left: 10px;
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
	font-weight: 500;
}

.cast_box li {
	position: relative;
}
.cast_box li .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
}
.cast_box li .img_box .img_cast {
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: top;
}

/* アイコン */
.cast_box li .icon_box {
	position: absolute;
	bottom: 10px;
	right: 6px;
	display: flex;
    justify-content: center;
}
.cast_box li .icon_box img{
    width: 30px;
    margin: 0 4px;
}
/* アイコン下 */
.cast_box li .icon_box.off {
	position: static;
	display: flex;
    justify-content: center;
	margin: 10px 0;
}
.cast_box li .icon_box.off img{
    width: 30px;
    margin: 0 4px;
}

/* Twitterアイコン */
.cast_box li .icon_x {
	width: 28px;
	margin: 4px auto 0;
}

/* Newアイコン */
.cast_box li .icon_new {
	width: 50px;
	position: absolute;
	top: -2px;
	left: -14px;
}

.cast_box li .txt_box {
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
}
.cast_box li .txt_box .name {
	font-size: 1.8rem;
	line-height: 1.8rem;
}
.cast_box li .txt_box .size {
	font-size: 1.6rem;
}
.cast_box li .txt_box .time {
	margin-top: 4px;
	padding: 0 2px;
	background: var(--color-white2);
	color: var(--color-bold1);
	border: 1px solid var(--color-bold1);
}
.cast_box li .txt_box .time_txt {
	margin-top: 8px;
	padding: 2px;
	border: 1px solid #7d7d7d;
	color: #fff;
	max-height: 110px;
    overflow-y: scroll;
    line-height: 20px;
}
/*ボックス内のスクロールバーの装飾*/
.cast_box li .txt_box .time_txt::-webkit-scrollbar {
  width: 8px;
}
.cast_box li .txt_box .time_txt::-webkit-scrollbar-track {
  background-color: inherit;
}
.cast_box li .txt_box .time_txt::-webkit-scrollbar-thumb {
  background-color: rgba(83, 39, 37, .6);
  border-radius: 8px;
}
.icon_shop_wrap {
	margin-top: 8px;
	color: #282828;
	background-color: #c6be98;
}
.cast_box li .txt_box .icon:empty,
.icon_shop_wrap:empty {
	display: none;
}
.cast_box li .txt_box .icon_shop {
    background: #6c96a5;
    color: #fff;
    margin-bottom: 2px;
}

@media screen and (min-width: 600px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 60px min(5%, 40px);
	}
	.cast_box li {
		padding: 0;
		background: none;
	}
}
@media screen and (min-width: 1000px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 80px min(5%, 40px);
	}
}
@media screen and (max-width: 999px){
	.cast_box li .icon_new {
		top: -2px;
		left: -6px;
	}
}
@media screen and (max-width: 700px){
	.cast_box li .icon_new {
		width: 45px;
		top: -4px;
		left: -8px;
	}
}
@media screen and (max-width: 599px){
	.cast_box li .icon_new {
		top: 0;
		left: 8px;
	}
	.cast_box a .img_box {
		width: 55%!important;
	}
	.cast_box a .txt_box{
		width: 45%!important;
	}
	.cast_box a .txt_box{
		padding-left: 20px;
	}
}
@media screen and (max-width: 480px){
	.cast_box li .icon_new {
		top: 0;
		left: -10px;
	}
}



/****************************************

headerヘッダー設定

****************************************/
@media screen and (min-width: 960px) {
	.nav-items {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);

	}
}

/* ドロワーメニュー */
.drawer_btn {
	position: fixed;
	top: 2vh;
	right: 2vw;
	height: 28px;
	width: 32px;
	cursor: pointer;
	z-index: 99999;
	transition: opacity 0.25s ease;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	cursor:pointer;
}
.drawer_btn:hover {
	opacity: 0.7;
}
.drawer_btn.active .top {
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: #a38372;
}
.drawer_btn.active .middle {
	opacity: 0;
	background: #a38372;
}
.drawer_btn.active .bottom {
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: #a38372;
}
.drawer_btn span {
	background: #a38372;
	border: none;
	height: 2px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.35s ease;
	cursor: pointer;
}
.drawer_btn span:nth-of-type(2) {
	top: 11px;
}
.drawer_btn span:nth-of-type(3) {
	top: 22px;
}
.overlay {
	position: fixed;
	background: var(--color-beige2);
	top: 0;
	right: 0;
	width: 30%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s, height 0.35s;
	overflow: hidden;
	z-index: 9999;
	transform: translate3d(0, 0, 0);
}
.overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
	transform: translate3d(0, 0, 0);
}
.overlay.open li {
	animation: fadeInRight 0.5s ease forwards;
	animation-delay: 0.35s;
	transform: translate3d(0, 0, 0);
}
.overlay.open li:nth-of-type(2) {
	animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
	animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
	animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
	animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
	animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
	animation-delay: 0.65s;
}
.overlay nav {
    width: 80%;
	font-size: 2.4rem;
	font-weight: 400;
	text-align: center;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 960px) {
	.overlay {
		position: fixed;
		background: var(--color-white2);
		top: 0;
		right: 0;
		width: 100%;
		height: 0%;
		opacity: 0;
		padding: 60px 0 80px;
		visibility: hidden;
		transition: opacity 0.35s, visibility 0.35s, height 0.35s;
		overflow: hidden;
		overflow-y: auto;
		z-index: 90;
		transform: translate3d(0, 0, 0);
	}
	.overlay nav {
		top: 0;
		transform: translateY(0) translateX(-50%);
	}
}
.overlay .logo {
	width: 200px;
	margin-bottom: 20px;
}
.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
}
.overlay ul li {
	display: block;
	height: 25%;
	height: calc(100% / 4);
	min-height: 20px;
	position: relative;
	opacity: 0;
}
.overlay ul li a {
	display: block;
	position: relative;
	color: var(--color-brown1);
	text-decoration: none;
	overflow: hidden;
	font-size: 2.0rem;
	font-family: 'Cormorant Garamond' , serif;
	line-height: 1.0;
	letter-spacing: 0.06rem;
	padding-bottom: 16px;
}
.overlay .info_box p,
a {
	font-size: 1.4rem;
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
}
.overlay .info_box {
	display: flex;
	flex-direction: column;
	color: #fff;
	background: initial;
}
.overlay .info_box p{
	color: var(--color_brown1);
	line-height: 20px;
	font-size: 20px;
}
.overlay .info_box p span{
	font-size: 14px;
}
.overlay .info_box .btn_nav_tel {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 100%;
	height: 50px;
	margin: 10px auto;
	background: var(--color_brown1);
	border: 1px solid var(--color_brown1);
	color: #fff;
	font-size: 1.8rem;
	letter-spacing: 0.06em;
	transition: .4s;
}
.overlay .info_box .btn_nav_tel:hover{
	background: none;
    color: var(--color_brown1);
    border: 1px solid var(--color_brown1);
}
/* アイコン */
.overlay .icon_box{
    display: flex;
    justify-content: center;
	margin: 20px auto 20px;
}
.overlay .icon_box a{
	padding: 0;
	border-bottom: 0px solid #eee;
}
.overlay .icon_box img {
    width: 36px;
	margin: 0 4px;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
	width: 100%;
}

@media screen and (min-width :600px) {
	.overlay ul li a {
		font-size: 2.6rem;
	}
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}

/* アイコン */
.nav_menu .icon_box{
    display: flex;
    justify-content: center;
	margin: 20px auto 20px;
}
.nav_menu .icon_box a{
	padding: 0;
	border-bottom: 0px solid #eee;
}
.nav_menu .icon_box img {
    width: 30px;
	margin: 0 4px;
}

/* ヘッドライン */
#headline {
	text-align: center;
	padding: 14px 0 16px;
	background: var(--color-white2);
}
#headline .headline_title {
	color: var(--color-bold1);
	font-family: 'Cormorant Garamond' , serif;
	font-weight: 300;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	line-height: 2.4rem;
	position: relative;
}
#headline .headline_title::before,
#headline .headline_title::after {
	display: inline-block;
	content: "";
	width: 32px;
	height: 10px;
	background: url(../images/deco_news.png) center / cover no-repeat;
}
#headline .headline_title::before {
	margin-right: 12px;
}
#headline .headline_title::after {
	margin-left: 12px;
	transform: scale(-1, 1);
}
#headline .swiper {
	padding-bottom: 0 ;
}
#headline .swiper-wrapper{
	margin-bottom: 0;
}

@media screen and (max-width :600px) {
	.drawer_btn {
		right: 4vw;
	}
	#headline {
		padding: 10px 0 12px;
	}
	#headline .headline_title {
		font-size: 1.6rem;
		line-height: 2.0rem;
	}
	#headline .headline_title::before,
	#headline .headline_title::after {
		width: 28px;
	}
}

/****************************************

footerフッター設定

****************************************/
footer {
    background: url(../images/bg_footer.jpg) 50% 50% no-repeat;
    background-size: cover;
	padding: 60px 20px 100px;
}
/* グローバルメニュー(pcのみ表示) */
footer .nav{
	margin: 0 auto 40px;
	text-transform: uppercase;
	display: flex;
	gap: 20px;
	justify-content: center;
}
footer .nav li {
	display: inline-block;
	line-height: normal;
}
footer .nav li a:hover{
	opacity: 0.5;
}
footer .nav li a span{
	color: #fff;
}
/*ロゴ*/
footer .logo{
	margin-bottom: 40px;
}
footer .logo img{
	width: 240px;
}
/* 電話番号&営業時間 */
footer .info_box {
    margin: 0 auto 40px;
	font-size: 2.0rem;
    line-height: 30px;
    letter-spacing: 0.08em;
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
}
footer .info_box li.info_tel a{
	font-size: 2.0rem;
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
}
/* アイコン */
footer .icon_box{
    display: flex;
    justify-content: center;
	margin: 0 auto 20px;
}
footer .icon_box img {
    width: 36px;
	margin: 0 4px;
}
/* フリースペース */
.free_link_box img {
	height: 100% !important;
    max-width: 100% !important;
}
/* リンクバナー */
.list_link_box {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: min(100%, 840px);
    margin: 10px auto 20px;
}
.list_link_box li {
    margin: 4px 10px;
	display: inline-block;
	font-size: 11px;
}
.list_link_box img {
    width: 100%;
	height: auto;
}
/*コピーライト*/
.copylight{
	font-size: 1.2rem;
}
/*Powered by Panda*/
.footer_link {
	text-align: center;
	font-size: 1.2rem;
}
.footer_link a {
	text-decoration: underline;
	text-decoration-color: var(--color-brown1);
}
@media screen and (min-width: 767px) {
	footer {
		padding: 60px 20px;
	}
	footer .logo img {
		width: 320px;
	}
}

/*SP版追従ボタン*/
#bottom_nav {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 10px;
	width: 95%;
	margin: 0 auto;
	z-index: 98;
}
#bottom_nav div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
#bottom_nav .btn_footer {
	font-family: 'Cormorant Garamond' , serif;
    position: relative;
	text-align: center;
	height: 50px;
	line-height: 50px;
	color: var(--color_brown1);
	background: url(../images/btn_frame_top.png), url(../images/btn_frame_bottom.png), var(--color-beige1);
	background-position: top left, bottom right, center;
	background-repeat: no-repeat;
	background-size: 25px, 25px, 100%;
	transition: box-shadow .4s ease-in-out;
	border-radius: 0;
	border: none;
	margin: 0;
	max-width: initial;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	font-size: 1.8rem;
	border: 1px solid var(--color-brown3);
}
#bottom_nav .btn_footer:hover {
	color: var(--color_brown1);
	box-shadow: 0 0 12px rgba(255, 192, 203, 0.8);
}
#bottom_nav .btn_footer:focus {
    outline: none;
}
#bottom_nav .btn_footer img.tel {
	width: 17px;
	height: auto;
}
#bottom_nav .btn_footer img.line {
	width: 20px;
	height: auto;
}

/****************************************

パンくずリスト

****************************************/
.breadcrumbs {
	background: var(--color-brown1);
	text-transform: uppercase;
	min-height: 2px;
}
.breadcrumbs ol li {
	font-size: 1.1rem;
    display: inline-block;
	color: var(--color-white1);
}
.breadcrumbs ol li:before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
  	font-weight: 900;
	display: inline;
	margin: 0 8px 0;
}
.breadcrumbs ol li:first-child:before {
	margin: 0 4px 0 0;
	content: "\f015";
}
.breadcrumbs ol li a {
	color: var(--color-white1);
	font-size: 1.1rem;
}

/****************************************

mainvisualメインビジュアル

****************************************/
/* メインビジュアル */
.mainvisual_outer {
	width: 100%;
	height: 100vh;
	position: relative;
}
#mainvisual .main_bg {
	position: inherit;
	width: 100%;
	height: 100%;
	background-image: url(../images/bg_mainvisual_sp.jpg);
	background-size: cover;
	background-position: center;
	animation: anime 4s linear 0s forwards;
	z-index: -1;
}

/* PC表示 */
@media screen and (min-width :960px) {
	#mainvisual .main_bg {
		background-image: url(../images/bg_mainvisual_pc.jpg);
		background-size: cover;
	}
}
@keyframes anime {
	0% {
		filter: blur(5px) grayscale(80%);
		transform: scale(1);
	}
	50% {
		filter: blur(3px) grayscale(40%);
	}
	100% {
		filter: blur(0px) grayscale(0%);
	}
}

#mainvisual .flex-control-nav {bottom: 0;}
#mainvisual .flex-control-paging li a.flex-active {
	/*control-navのActiveな●の色を変えたい時はここを変更*/
	background-color: #fff000;
}
#mainvisual .logo {
	width: clamp(280px, 60%, 520px);
	position: absolute;
	top: 45%;
	left: 52%;
	transform: translateY(-50%) translateX(-50%);
}

/* .mainvisual_txt {
	position: absolute;
	top: 16vh;
	left: 5vw;
	writing-mode: vertical-rl;
	font-size: clamp(1.5rem, 3vw, 1.8rem);
	letter-spacing: 0.05em;
	color: #fff;
	filter: drop-shadow(0px 0px 3px rgba(21, 30, 33, 1));
} */
.mainvisual_txt1 {
	position: absolute;
	top: 16vh;
	left: 20px;
	writing-mode: vertical-rl;
	font-size: clamp(1.6rem, 3vw, 1.8rem);
	letter-spacing: 0.06em;
	color: var(--color-bold1);
	filter: drop-shadow(0px 0px 4px rgba(255, 248, 244, 1));
	line-height: 24px;
}
.mainvisual_txt1 p:first-child{
	text-align: start;
	font-feature-settings: initial;
}
.mainvisual_txt1 p:last-child{
	padding-top: 10vh;
    font-feature-settings: initial;
}

/* PC表示 */
@media screen and (min-width :480px) {
	.mainvisual_txt1 {
		left: 30px;
	}
}
@media screen and (min-width :600px) {
	.mainvisual_txt1 {
		left: 40px;
	}
}
@media screen and (min-width :960px) {
	.mainvisual_txt1 {
		font-size: 2.6rem;
		position: absolute;
		top: 20vh;
		left: 12vw;
		line-height: 48px;
	}
	.mainvisual_txt1 p:last-child {
		padding-top: 12vh;
	}
}

/* スクロールアニメーション */
.scroll_down{
  position:absolute;
  bottom: 8%;
  left: 50%;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brown1);
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:120px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 120px;
  background: var(--color-brown1);
}

.scroll_txt {
	position: absolute;
	bottom: 4%;
	left: 0;
	right: 0;
	margin: 0 auto;
	overflow: hidden;
	color: var(--color-brown1);
}
.scroll_txt p {
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	letter-spacing: 0.06em;
	font-family: 'Cormorant Garamond' , serif;
}

/* ↓flexslider.cssを上書き */
#mainvisual .flex-control-nav {
	bottom: 0;
}
/* flexslider.cssを上書き */
.flexslider{
	margin-bottom: 0;
	background: unset;
	border: none;
}
#mainvisual .flex-control-paging li a.flex-active  {
	/*control-navのActiveな●の色を変えたい時はここを変更*/
	background-color: #fff000;
}
/* ↑flexslider.cssを上書き */

@media screen and (max-width :599px) {
	.scroll_down:after {
		height: 100px;
	}
	@keyframes circlemove{
	0%{bottom:100px;}
	100%{bottom:0px;}
	}
}

/****************************************

トップページ

****************************************/
/*トップページ共通*/
section .section_title1 {
    font-size: clamp(2.4rem, 3vw, 4.0rem);
	color: var(--color-bold1);
	line-height: 1;
	letter-spacing: 0.16em;
	margin-bottom: 30px;
	font-family: 'Cormorant Garamond' , serif;
	font-weight: 400;
	font-style: normal;
}
section .section_title1 .title_en {
	display: inline-block;
}
section .section_title1 .title_ja {
	display: block;
	font-size: 1.4rem;
	color: var(--color-bold1);
	line-height: 1.6;
	letter-spacing: 0.16em;
	font-family: serif;
}
section .section_title2 {
    font-size: clamp(2.4rem, 3vw, 4.0rem);
	color: var(--color-white1);
	line-height: 1;
	letter-spacing: 0.16em;
	margin-bottom: 30px;
	font-family: 'Cormorant Garamond' , serif;
	font-weight: 400;
	font-style: normal;
}
section .section_title2 .title_en {
	display: inline-block;
}
section .section_title2 .title_ja {
	display: block;
	font-size: 1.4rem;
	color: var(--color-white1);
	line-height: 1.6;
	letter-spacing: 0.16em;
	font-family: serif;
}
.icon_crown img {
    width: 40px!important;
    height: auto;
    margin-bottom: 10px;
}


#section_event,
#section_schedule_today,
#section_topics {
	padding: 80px 20px;
}
#section_headspa {
	padding: 0 20px 80px;
}

/*トップページ　2カラム*/
.column{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background: #fff;
}
.column section{
	width: 50%;
	max-width: 600px;
	}

.column .cast_box .cast_box_list .frame img{
	width: 280px;
}

@media screen and (max-width: 768px){
	.column section{
		width: 100%;
	}
	.column .cast_box .cast_box_list .frame img{
		width: 200px;
	}
}

/* 矢印 */
.accordion-title {
	position: relative;
}
.accordion-title::after {
	border-right: solid 2px #fff;
	border-top: solid 2px #fff;
	content: "";
	display: block;
	height: 8px;
	position: absolute;
	right: 25px;
	top: 38%;
	transform: rotate(135deg);
	transition: transform .3s ease-in-out, top .3s ease-in-out;
	width: 8px;
}
.accordion-title.open::after {
	top: 45%;
	transform: rotate(-45deg);
}

/* 矢印非表示 */
.swiper-button-next.next,.swiper-button-prev.prev{
	display: none;
}

#contents_cast .cast_box .cast_box_list:nth-of-type(4n),
#contents_schedule .cast_box .cast_box_list:nth-of-type(4n) {
	margin-right: 0;
}
/****************************************
コンセプト
****************************************/
#section_concept {
	padding: 80px 0;
    background: url(../images/bg_cross.jpg) center top repeat;
    background-size: 260px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
#section_concept .txt_box {
	width: 50%;
	order: 2;
}
#section_concept .txt_box h2 {
	color: var(--color-bold1);
	font-size: clamp(2.0rem, 2vw, 2.4rem);
	line-height: 1.4;
	letter-spacing: 2px;
	margin-bottom: 30px;
}
#section_concept .txt_box p {
	font-size: clamp(1.4rem, 2vw, 1.6rem);
	line-height: 1.8;
}
#section_concept .txt_box p.annotation {
	font-size: 1.2rem;
}
#section_concept .img_box {
	width: 50%;
	height: 530px;
	position: relative;
	overflow: hidden;
	order: 1;
}
#section_concept .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 768px){
	#section_concept {
		flex-wrap: wrap;
	}
	#section_concept .txt_box {
		width: 100%;
	}
	#section_concept .txt_box h2 {
		margin-top: 50px;
	}
	#section_concept .img_box {
		width: 90%;
		height: auto;
		margin-right: auto;
	}
}

/****************************************
ヘッドスパの効果
****************************************/
#section_headspa {
    background: url(../images/bg_cross.jpg) center top repeat;
    background-size: 260px;
}
#section_headspa h3 {
    color: var(--color-brown1);
    font-size: clamp(2.0rem, 2vw, 2.4rem);
    line-height: 1.4;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
#section_headspa .service_worries .sec_head {
    margin-bottom: 40px;
}
#section_headspa .service_worries .sec_head:last-of-type {
	margin-bottom: 0;
}
#section_headspa .service_worries .sec_head img.img_headspa {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
	margin-bottom: 20px;
}
#section_headspa .service_worries .sec_head h4 {
	margin-bottom: 16px;
	color: var(--color-bold1);
	font-size: clamp(2.0rem, 3vw, 2.0rem);
	text-align: center;
    line-height: 3.2rem;
}
#section_headspa .service_worries .sec_head .img_wrap {
    position: relative;
    display: inline-block;
}
#section_headspa .service_worries .sec_head .img_wrap img.img_number {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 100px;
    height: auto;
}
#section_headspa .service_worries .sec_head .text {
	text-align: left;
}
@media (max-width: 479px) {
	#section_headspa .service_worries .sec_head img.img_headspa {
		width: 70%;
		margin: 0 auto 20px;
	}
	#section_headspa .service_worries .sec_head .img_wrap img.img_number {
		top: -10px;
		left: 35px;
		width: 80px;
	}
	#section_headspa .service_worries .sec_head h4 {
		margin-bottom: 10px;
	}
}
@media (min-width: 480px) {
  #section_headspa .service_worries {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 48px) / 2), 1fr));
    gap: 0 min(2%, 24px);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  #section_headspa .service_worries {
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    align-items: baseline;
    justify-content: space-around;
  }
  #section_headspa .service_worries .sec_head {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
	#section_headspa .service_worries .sec_head .img_wrap img.img_number {
		width: 80px;
	}
}
@media (min-width: 768px) {
  #section_headspa .service_worries {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ← 横3固定 */
	gap: 0 40px;
  }
  #section_headspa .service_worries .sec_head {
    margin-bottom: 0;
  }
  #section_headspa .service_worries .sec_head .text {
    margin-bottom: 0;
  }
}

/****************************************
イベント
****************************************/
#section_event {
    background: url(../images/bg_event.jpg) no-repeat center / cover;
    width: 100%;
}
/* swiper ページネーション上書き */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 4px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 6px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	background: #b1a89d;
	opacity: 1;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-white2);
	opacity: 1;
}
/*swiper その他上書き*/
.swiper-wrapper{
	margin-bottom: 40px;
}
.profile_box_schedule .swiper-wrapper{
	margin-bottom: 0;
}
@media screen and (min-width: 767px) {
	#section_top_ranking_01 .swiper-wrapper{
		margin-bottom: 0;
	}
}

/****************************************
本日の出勤スケジュール
****************************************/
#section_schedule_today {
    background: url(../images/bg_cross.jpg) center top repeat;
    background-size: 260px;
}

/****************************************
新着情報
****************************************/
#section_topics {
    background: url(../images/bg_topics.jpg) no-repeat center / cover;
    width: 100%;
}
#section_topics .topics_box {
	background: var(--color-white2);
    padding: 4% 2% 5% 3%;
	margin-bottom: 40px;
}
#section_topics .topics_box_inner {
	overflow-y: auto;
	color: var(--color-brown1);
    min-height: 400px;
    max-height: 400px;
}
#section_topics .topics_box_inner::-webkit-scrollbar{
	width: 10px;
}
#section_topics .topics_box_inner::-webkit-scrollbar-track{
	background-color: var(--color-lightbrown1);
}
#section_topics .topics_box_inner::-webkit-scrollbar-thumb{
	background-color: var(--color-brown2);
}
#section_topics .topics_box article{
	text-align: left;
	padding-right: 20px;
	padding: 0 10%;
	overflow-y: auto;
}
#section_topics .topics_box article time {
	color: var(--color-white1);
	background: var(--color-bold1);
	padding: 4px 16px;
	font-size: 1.4rem;
	text-align: left;
}
#section_topics .topics_box article .article_title {
    padding-bottom: 4px;
	border-bottom: 1px solid var(--color-brown2);
}
#section_topics .topics_box article .article_title h3 {
	text-align: left;
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	margin-bottom: 0;
}
#section_topics .topics_box article .article_box {
	padding-top: 20px;
}
#section_topics .topics_box article .article_box img {
	max-width: 100% !important;
	height: auto !important;
}

@media screen and (max-width: 1220px){
	#section_topics .topics_box_inner {
		max-height: 480px;
	}
}
@media screen and (max-width: 768px) {
	#section_topics .topics_box {
		padding: 8% 2% 10% 2%;
	}
	#section_topics .topics_box article {
		padding: 0 4%;
	}
	#section_topics .topics_box article .article_title h3 {
		font-size: 1.6rem;
	}
}

/****************************************

下層ページ

****************************************/
/*下層ページ共通設定*/
#contents_topics,
#contents_cast,
#contents_schedule,
#contents_profile,
#contents_access,
#contents_entry,
#contents_err {
	padding: 80px 20px;
    background: url(../images/bg_cross.jpg) center top repeat;
    background-size: 260px;
}
#contents_recruit {
	padding: 80px 20px 40px;
	background: url(../images/bg_cross.jpg) center top repeat;
    background-size: 260px;
}
#contents_entry {
	padding: 40px 20px 80px;
    background: url(../images/bg_contents.jpg) no-repeat center / cover;
    width: 100%;
}
.subvisual{
	width: 100%;
	height: 35vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../images/subvisual.jpg) 0 0 no-repeat;
	background-size: cover;
}
.subvisual h2 {
	padding: 10px;
	color: #fff;
	letter-spacing: 1px;
	line-height: 1.35;
}
.subvisual .h2_main {
    font-size: clamp(2.8rem, 3vw, 4.8rem);
	font-family: 'Cormorant Garamond' , serif;
	letter-spacing: 0.16em;
}
.subvisual .h2_main,
.subvisual .h2_sub {
	text-shadow: 0 0 10px #000;
}
.subvisual .h2_sub {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
	letter-spacing: 0.16em;
}

h3.contents_title {
    margin: 0 auto 30px;
	font-size: clamp(2.0rem, 3vw, 2.4rem);
	color: var(--color-brown1);
	border-bottom: 1px solid var(--color-brown1);
	width: fit-content;
	letter-spacing: 0.1em;
}

.contents_box_01 {
    width: 100%;
    padding: 40px 30px;
    margin: 0 auto;
	background: var(--color-beige2);
    outline: 1px solid var(--color-brown3);
    outline-offset: -10px;
}
.contents_box_02 .rules_list {
    list-style: none;
	text-align: left;
}
.contents_box_02 .rules_list li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.8;
}
.contents_box_02 .rules_list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.0em;
}

.contents_bg1 {
	padding: 80px 20px 40px;
	background: url(../images/bg_cross.jpg) center top repeat;
    background-size: 260px;
}
.contents_bg2 {
	padding: 40px 20px 80px;
    background: url(../images/bg_contents.jpg) no-repeat center / cover;
    width: 100%;
}

@media screen and (max-width: 600px) {
	#contents_topics,
	#contents_cast,
	#contents_schedule,
	#contents_access,
	#contents_entry,
	#contents_err {
		padding: 60px 20px;
	}
	.contents_bg1 {
		padding: 60px 20px 40px;
	}
	.contents_bg2 {
		padding: 40px 20px 60px;
	}
	#contents_recruit {
		padding: 60px 20px 40px;
	}
	#contents_entry {
		padding: 40px 20px 60px;
	}
}

/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.schedule_nav li {
    width: calc((100% - 8px) / 2);
}
.schedule_nav li a {
	padding: 10px;
	display: block;
	font-size: 1.4rem;
	background: var(--color-white2);
	border: 1px solid var(--color-brown3);
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
	font-family: "Times New Roman", 'Cormorant Garamond', 'Zen Old Mincho', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "FontAwesome", serif;
}
.schedule_nav li a:hover {
	opacity: 0.6;
}
.schedule_nav li.active a {
	background: var(--color-beige1);
	border: 1px solid var(--color-brown3);
}
.schedule_nav li.active a:hover{
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.schedule_nav li:first-child{
		width: 100%;
	}
}

/* ナビゲーションボタン 上書き*/
.sch_nav_btn.swiper-button-prev, 
.sch_nav_btn.swiper-button-next {
	margin-top: 0;
	width: auto;
	height: 32px;
	background: var(--color-bold1);
	color: var(--color-white1);
	transition: ease 0.3s;
}
.sch_nav_btn.swiper-button-prev:after, 
.sch_nav_btn.swiper-button-next:after {
	display: none;
}
.sch_nav_btn.swiper-button-prev {
	top: 0;
	left: 0;
	padding: 0 16px 0 8px;
}
.sch_nav_btn.swiper-button-next {
	top: 0;
	right: 0;
	padding: 0 8px 0 16px;
}
.sch_nav_btn.swiper-button-prev.swiper-button-disabled,
.sch_nav_btn.swiper-button-next.swiper-button-disabled {
 opacity: 0;
}

@media screen and (min-width: 768px) {
	.schedule_nav li,
	.schedule_nav li:first-child {
		width: calc((100% - 48px)/ 7 );
	}
}


/****************************************
週間スケジュールページ
****************************************/
#contents_schedule .schedule_box{
	text-align: left;
}
#contents_schedule .schedule_box li{
	padding: 10px;
	background: #e0e0e0;
	grid-template-columns: 10% auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: -ms-grid;
	display: grid;
	margin-bottom: 20px;
}
#contents_schedule .schedule_box .name{
	width: 100%;
	font-size: 15px;
}
#contents_schedule .schedule_box table{
	width: 100%;
	height: 80px;
	font-size: 10px;
	text-align: center;
}
/*以下のサイズはサイトに合わせてください*/
#contents_schedule .schedule_box .img_box{
	width: 100%;
    padding-right: 20px;
}
/*以下のサイズはサイトに合わせてください*/
#contents_schedule .schedule_box .img_box img{
	max-width: 100%;
}
@media screen and (max-width: 768px) {
	#contents_schedule .schedule_box li{
		grid-template-columns: auto;
	}
	#contents_schedule .schedule_box .img_box{
        width: 50%;
        padding-right: 0px;
        margin: 0 auto 10px;
	}
}

/****************************************
プロフィールページ
****************************************/
#contents_profile .profile_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
#contents_profile .profile_box_left {
    width: 100%;
}
#contents_profile .profile_box_left .img_box {
    position: relative;
	width: min(100%, 300px);
	height: auto;
	aspect-ratio: 2 / 3;
    margin: 0 auto 20px;
    text-align: center;
}
#contents_profile .profile_box_left .img_box .icon_new {
	width: 72px;
	position: absolute;
	top: -10px;
	left: -20px;
}
#contents_profile .profile_box_left .cast_thumb {
    /* isplay: flex; */
    max-width: 200px;
    width: 60px;
    height: 90px;
    object-fit: cover;
    justify-content: center;
    margin: 0 auto;
}
#contents_profile .profile_box_left .cast_thumb a {
    margin-right: 4px;
}
#contents_profile .profile_box_right {
    width: 100%;
}
#contents_profile .profile_box_right .icon{
	display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
#contents_profile .profile_box_right .icon img{
	width: 100%;
}
#contents_profile .profile_box_right .name .icon_x {
    width: 30px;
    margin-bottom: 2px;
}
#contents_profile .img_box > img.main-photo{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_profile .profile_box_right .short_comment {
	color: var(--color_purple1);
}
#contents_profile .profile_box_right .long_comment {
	word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    overflow: hidden;
}
#contents_profile .youtube_video{
	width: 100%;
}
#contents_profile .profile_box_right .img_box .icon_box {
	position: absolute;
	bottom: 8px;
	right: 0;
	display: flex;
    justify-content: center;
}
#contents_profile .profile_box_right .img_box .icon_box img{
    width: 40px;
    margin: 0 8px 0 4px;
}
#contents_profile .contents_box_01 .name {
    font-size: 2.4rem;
    line-height: 3.4rem;
}
#contents_profile .contents_box_01 .size {
    font-size: 1.8rem;
    line-height: 1.8rem;
}
#contents_profile .profile_box_right .contents_box_01 .icon_box img{
    width: 40px;
    margin: 20px 8px 0 4px;
}
#contents_profile .profile_box_right .contents_box_01 {
	margin: 0 auto 20px;
}
@media screen and (min-width: 767px) {
	#contents_profile .profile_wrap {
	    gap: 20px;
	    justify-content: space-between;
	}
	#contents_profile .profile_box_left {
	    width: 40%;
	}
	#contents_profile .profile_box_right {
	    width: calc(60% - 40px);
	}
	#contents_profile .profile_box_right .pink_wrap{
		padding: 20px 40px 30px;
	}
	#contents_profile .profile_box_right .icon{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	#contents_profile .profile_box_right .contents_box_01 {
		margin: 0 auto;
	}
}
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: block;
	box-sizing: border-box;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	display: flex;
}
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_date,
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_check{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	padding: 10px;
	flex-basis: 50%;
	border-bottom: 1px solid var(--color-brown3);
	background: var(--color-brown1);
	color: var(--color-white1);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable:last-child .profile_sch_date{
	border-bottom: 1px solid var(--color-brown3);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	padding: 10px;
	background: var(--color-white1);
	color: initial;
	min-height: 70px;
	flex-basis: 50%;
	border-bottom: 1px solid var(--gray);
}


/****************************************
システムページ
****************************************/
#contents_system .system_box {
  margin: 0 auto;
}
#contents_system .contents_box{
  margin-bottom: 40px;
}
#contents_system table:last-child{
  margin-bottom: 0;
}
#contents_system table tbody{
  border:solid 1px var(--color-brown3);
  letter-spacing: 0.06em;
}
#contents_system table.system_01 {
	margin-bottom: 30px;
}
#contents_system table.system_01 tr:first-child th{
  color: var(--color-white1);
  background-color: var(--color-brown1);
  border:none;
  font-size: 1.6rem;
}
#contents_system table.system_01 tr:first-child th,
#contents_system table.system_01 tr:first-child td {
  width: 10%;
}

#contents_system table.system_01 tr:first-child td{
  color: var(--color-bold1);
  background: var(--color-white2);
  font-size: 2.0rem;
}
#contents_system table.system_01 tr:first-child td span.menu_price {
    color: var(--color-gray1);
    margin-top: 10px;
    display: block;
	line-height: 12px;
}
#contents_system table.system_01 tr:first-child td span {
	font-size: 1.4rem;
}

#contents_system table.system_02{
	width: 100%;
}
#contents_system table.system_02 tr:first-child th{
	color: var(--color-white1);
	background-color: var(--color-brown1);
	border:none;
	font-size: 1.6rem;
}
#contents_system table.system_02 tr:first-child th,
#contents_system table.system_02 tr:first-child td {
	width: 50%;
	padding: 10px;
}

#contents_system table.system_02 tr:first-child td{
	color: var(--color-bold1);
	background: var(--color-white2);
	font-size: 2.0rem;
}
#contents_system table.system_02 tr:first-child td span.menu_price {
    color: var(--color-gray1);
    margin-top: 10px;
    display: block;
	line-height: 12px;
}
#contents_system table.system_02 tr:first-child td span {
	font-size: 1.4rem;
}

#contents_system table tr th{
  color: #868686;
  vertical-align: middle;
  border-right: 1px solid #ccc;
}
#contents_system table tr td {
  	position: relative;
}
#contents_system table tr td.desc {
	padding: 10px;
	border-top: 1px solid var(--color-brown1);
	border-bottom: 1px solid var(--color-brown1);
	font-size: 1.4rem;
	background: var(--color-beige1);
}

#contents_system .system_03 {
    width: 100%;
    text-align: center;
    table-layout: fixed;
}
#contents_system .system_03 tr {
    margin-bottom: 10px;
}
#contents_system .system_03 th,
#contents_system .system_03 td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid var(--color-brown3);
    /* text-shadow: 0 0 10px #fff; */
}
#contents_system .system_03 th {
    font-size: 1.6rem;
    padding: 20px 10px;
    color: var(--color-white1);
    background: var(--color-brown1);
    vertical-align: middle;
}
#contents_system .system_03 td {
    font-size: 2.0rem;
    color: var(--color-brown1);
	background: var(--color-white2);
}
#contents_system .system_03 th span,
#contents_system .system_03 td span {
    font-size: 1.4rem;
}

#contents_system .treatment_block{
  line-height: 1.6;
  font-size: 1.4rem;
}
#contents_system .treatment {
	color: var(--color-bold1);
	font-family: 'Cormorant Garamond' , serif;
	font-weight: 300;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	line-height: 2.4rem;
	position: relative;
	margin-top: 8px;
	margin-bottom: 8px;
}
#contents_system .treatment::before,
#contents_system .treatment::after {
	display: inline-block;
	content: "";
	width: 32px;
	height: 10px;
	background: url(../images/deco_news.png) center / cover no-repeat;
}
#contents_system .treatment::before {
	margin-right: 12px;
}
#contents_system .treatment::after {
	margin-left: 12px;
	transform: scale(-1, 1);
}



#contents_system p.credit_bnr span .display_inlineblock {
	display: inline-block;
}
@media screen and (max-width: 480px) {
    #contents_system table.system tr:first-child td span {
		font-size: 12px;
	}
	#contents_system table tr td.cont {
		font-size: 12px;
	}
}


/****************************************
求人情報ページ
****************************************/
#contents_recruit .img_recruit {
	width: min(640px, 100%);
	height: auto;
	margin: 0 auto 40px;
}
.txtbox01 {
	padding: 20px;
	margin: 0 auto 30px;
	background: url(../images/bg_txtbox.jpg) no-repeat 50% 50%/cover;
}
.txtbox01_txt {
	padding: 30px;
	background: rgba(255, 252, 250, 0.9);
}
.txtbox01_txt ul {
	padding: 20px;
	list-style: none;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.txtbox01_txt ul li {
    font-size: 1.4rem;
	line-height: 1.6;
}
.txtbox01_txt p.rec_txt1 {
	font-size: 1.8rem;
	margin-bottom: 16px;
	line-height: 3.2rem;
	color: var(--color-bold1);
	text-align: center;
}

.rec_txt4 {
	font-size: 1.6rem;
	color: var(--color-bold1);
	font-weight: bold;
}
.divider {
  height: 1px;
  background: var(--color-brown2);
  margin: 10px 0;
}

@media screen and (max-width: 600px) {
	.txtbox01_txt p.rec_txt1 {
		font-size: 1.6rem;
		line-height: 2.8rem;
	}
	.txtbox01 {
		padding: 24px 16px;
		margin-inline: calc(50% - 50vw);
		background: url(../images/bg_txtbox.jpg) no-repeat 50% 50%/cover;
	}
	.txtbox01_txt {
		padding: 20px 16px;
	}
	.txtbox01_txt ul {
		padding: 16px;
	}
}


/****************************************
新着情報一覧ページ
****************************************/
#contents_topics .toggle_contents:first-child {
	margin-top: clamp(-10px,6vw,-20px);
}

#contents_topics .pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: clamp(20px,4vw,30px);
}
#contents_topics .pagination li a {
	display: block;
	color: var(--color-blue);
	background: var(--alpha-white-bg);
	padding: 6px 10px;
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
}
#contents_topics .pagination li.active a {
	color: var(--color-gold1);
	background: var(--color-navy);
}
#contents_topics .pagination li a:hover {
	opacity: 0.7;
}

#contents_topics .toggle_title {
	position: relative;
    padding: 15px 40px 10px 10px;
	cursor: pointer;
	text-align: left;
	line-height: 1.4;
	border-bottom: solid 1px #a59287;
}
#contents_topics .toggle_btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}
#contents_topics .toggle_contents .selected .toggle_btn:after {
	content:"";
	display:block;
	width: 12px;
	height: 6px;
	background: url(../images/icon_arrow.svg) center / cover no-repeat;
	transform: scale(1, -1);
	position:absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#contents_topics .toggle_contents .toggle_btn:after {
	content:"";
	display:block;
	width: 12px;
	height: 6px;
	background: url(../images/icon_arrow.svg) center / cover no-repeat;
	position:absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#contents_topics .toggle_title h3 {
	text-align: left;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.06em;
    margin-top: 8px;
}
#contents_topics .toggle_title time {
	color: var(--color-white1);
	background: var(--color-bold1);
	padding: 4px 16px;
	font-size: 1.4rem;
	text-align: left;
}
#contents_topics .toggle_contents dd {
	display: none;
	padding: 20px 10px;
	text-align: left;
}
#contents_topics .toggle_contents:first-of-type dd {
	display: block;
}

/****************************************
404ページ
****************************************/
#contents_err .err_title {
	font-size: 4.0rem;
	text-align: center;
	line-height: 3.2rem;
}