@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{color:#3e4349;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}p{max-height:999999px}ins{background-color:#ff9;color:#3e4349;text-decoration:none}mark{background-color:#ff9;color:#3e4349;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 (共通スタイル)

****************************************/
:root{
	--color-black1: #544b4f;
	--color-black2: #544b4f;

	--color-main1:#f89ae6;
	--color-main2:#fdf3ff;
	--color-main3:#ffebfa;
	--color-main4:#e384d0;

	--table-system-color1:#f89ae6;
	--table-system-color2:#ffd5f7;
	--table-system-color3:#ffebfa;

    --font-title: "Bodoni Moda", serif;
}

body {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
	color: #3e4349;
	background: #f9f9f9;
	font-size: 14px;
	font-weight: 500;
	font-family: sans-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;
	}
}
@media screen and (min-width: 941px) {
	.nav_sp {
		display: none;
	}
}
@media screen and (max-width: 940px) {
	.nav_pc {
		display: none;
	}
}

.inner {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}
.inner1200{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
}
/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
a, a:hover{
	color: #3e4349;
}
main{
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
}
img{
	max-width: 100%;
  	height: auto;
}

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


/*********** 文字色 ***********/
.atten_01, .atten_01 a{color: #ff007e;}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #0000ff;}
.atten_04, .atten_04 a{color: #ff0000;}

/*********** 背景色 ***********/
.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_60{margin-bottom: 60px;}
.mb_80{margin-bottom: 80px;}
.mb_100{margin-bottom: 100px;}

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

/*********** フォントサイズ ***********/
.fs_ss{font-size: 0.75em;}
.fs_s{font-size: 0.85em;}
.fs_13em{font-size: 1.3em;}
.fs_15em{font-size: 1.5em;}

/*********** フォントウエイト ***********/
.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%;
}
.table_01 th,
.table_01 td{
	padding: 16px;
	vertical-align: middle;
	text-align: left;
    border-bottom: 1px solid rgb(95 82 82 / 20%);
	font-size: clamp(12px, 2vw, 14px);
}
.table_01 th{
	width: 35%;
	/* background: var(--table-system-color1); */
	/* color: #fff; */
	line-height: 1.4;
}

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


/*table02*/


.table_02{
	width: 100%;
}
.table_02 th,
.table_02 td{
	padding: 16px;
	vertical-align: middle;
	text-align: left;
	border: 1px solid var(--table-system-color2);
	font-size: clamp(12px, 2vw, 14px);
}
.table_02 th{
	width: 35%;
	background: var(--table-system-color1);
	color: #fff;
	line-height: 1.4;
}

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

/*table_form*/
.table_form{
	width: 100%;
}
.table_form th,
.table_form td{
	padding: 16px;
	vertical-align: middle;
	text-align: left;
    border-bottom: 1px solid rgb(95 82 82 / 20%);
	font-size: clamp(12px, 2vw, 14px);
}
.table_form th{
	width: 35%;
	/* background: var(--table-system-color1); */
	/* color: #fff; */
	line-height: 1.4;
}

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

.table_form input,
.table_form textarea,
.table_form select {
  box-sizing: border-box;
  width: 100%;
}

/* リンクバナー */
.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-right: 10px;
    margin-bottom: 10px;
	display: inline-block;
	font-size: 11px;
}

.list_link_box img {
    width: 100%;
	height: auto;
}


/*fotter 追尾*/
#bottom_nav{
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0px;
	width: 100%;
	z-index: 900;
	background: var(--color-main4);
}
#bottom_nav ul {
	display: flex;
    flex-wrap: nowrap;
	justify-content: center;
	align-content: center;
	width: 96%;
	margin: 4px auto;
}
#bottom_nav li {
	width: calc(100% / 2);
	position: relative;
}
#bottom_nav li:last-child {
	margin-right: 0;
}
#bottom_nav li a {
	width: 100%;
	height: 100%;
	
}
#bottom_nav li:after {
    display: block;
    content: '';
    position: absolute;
    top: 8px;
    right: 0px;
    background: #fff;
    width: 1px;
    height: 44px;
}
#bottom_nav li:last-child:after{
	display: none;
}
#bottom_nav li .b_n_outer {
    background-size: 40%;
}

#bottom_nav li .b_n_outer p {
	color: #fff;
	font-size: 0.7rem;
	letter-spacing: 1px;
	line-height: 0.8rem;
	text-align: center;
	padding: 10px 0 8px;;
}
#bottom_nav img {
	width: 20px;
	margin-bottom: 4px;
}




/*********** ボタン設定 ***********/
/* コンテナ：中央揃え＋上下余白 */

.btn-container {
  text-align: center;
  margin: 2em 0;
  font-family: var(--font-title);
}
@media screen and (max-width: 768px) {
    .btn-container {
        grid-template-columns: 1fr;
    }
}
/* 丸角ボタン＋矢印 */
.arrow-btn-rounded,
.arrow-btn-rounded-left{
	width: 100%;
	max-width: clamp(240px,36vw,360px);
	border-radius: 30px;
	text-align: center;
	--arrow-color: #544b4f;
	display: inline-block;
	border: 1px solid var(--arrow-color);
	color: var(--arrow-color);
	text-decoration: none;
	position: relative;
	transition: background-color 0.3s ease,
				border-color 0.3s ease,
				color 0.3s ease;
}
.arrow-btn-rounded{
	padding: 10px 50px 10px 30px;
}
.arrow-btn-rounded-left{
	padding: 10px 30px 10px 50px;
}

@media screen and (max-width: 768px) {
	.arrowbtn-rounded{padding: 10px 30px 10px 10px;}
	.arrow-btn-rounded-left{padding: 10px 10px 10px 30px;}
}
/* 右矢印 */
.arrow-btn-rounded::after,
.arrow-btn-rounded-left::after {
    width: 50px;
    height: 5px;
	border-bottom: 1px solid var(--arrow-color);
}
.arrow-btn-rounded::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%) skewX(45deg);
	border-right: 1px solid var(--arrow-color);
	transition: right 0.3s ease, border-color 0.3s ease;
}
.arrow-btn-rounded-left::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%) skewX(315deg);
	border-left: 1px solid var(--arrow-color);
	transition: left 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
	.arrow-btn-rounded::after{
		content: '';
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) skewX(45deg);
		border-right: 1px solid var(--arrow-color);
		transition: right 0.3s ease, border-color 0.3s ease;
	}
	.arrow-btn-rounded-left::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 20px;
		transform: translateY(-50%) skewX(315deg);
		border-left: 1px solid var(--arrow-color);
		transition: left 0.3s ease, border-color 0.3s ease;
	}
}
/* ホバー時 */
.arrow-btn-rounded:hover,
.arrow-btn-rounded-left:hover {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: var(--color-black1);
  color: var(--color-black1);
}
.arrow-btn-rounded:hover::after {
  right: 15px; /* ホバーで矢印が右に少し移動 */
  border-color: var(--color-black1); /* ホバーで矢印を白に */
}
.arrow-btn-rounded-left:hover::after {
  left: 15px; /* ホバーで矢印が右に少し移動 */
  border-color: var(--color-black1); /* ホバーで矢印を白に */
}

/* フォームのボタン */
.btn_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.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: var(--color-main1);
}
.btn_form .btn_send {
	background: var(--table-system-color1);
}
.btn_form .btn_reset {
	background: #999;
}

/* 言語選択プルダウン（日本語ページ） */
.select_lang_wrap {
	display: none;
	width: 74px;
	height: 30px;
    position: fixed;
    top: 100px;
    right: 20px;
	z-index: 999;
}
.select_lang_wrap::before {
	content: '';
	position: absolute;
	top: 25%;
	left: 8px;
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/icon_lang.png) center center / cover no-repeat;
}
.select_lang_wrap:after {
  content: '';
	position: absolute;
	right: 8px;
	top: 14px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #3e4349;
	border-left: 1px solid #3e4349;
	transform: translateY(-50%) rotate(-135deg);
}
.select_lang {
	-webkit-appearance: none;
	-moz-appearance: none;
			 appearance: none;
	margin: 0;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border: 1px solid #3e4349;
	padding: 8px 8px 8px 26px;
    background: #fff;
    color: #3e4349;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.select_lang_wrap {
        top: 25px;
        right: 65px;
	}
}

/* 言語選択プルダウン（英語ページ） */
.select_lang_wrap_en {
	display: block;
	width: 74px;
	height: 30px;
    position: fixed;
    top: 25px;
    right: 20px;
	z-index: 999;
}
.select_lang_wrap_en::before {
	content: '';
	position: absolute;
	top: 25%;
	left: 8px;
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/icon_lang.png) center center / cover no-repeat;
}
.select_lang_wrap_en:after {
  content: '';
	position: absolute;
	right: 8px;
	top: 14px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #3e4349;
	border-left: 1px solid #3e4349;
	transform: translateY(-50%) rotate(-135deg);
}
.select_lang_en {
	-webkit-appearance: none;
	-moz-appearance: none;
			 appearance: none;
	margin: 0;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border: 1px solid #3e4349;
	padding: 8px 8px 8px 26px;
    background: #fff;
    color: #3e4349;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 1;
}

/******************************
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%;
}
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: #ff007e;
}
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;
	}
}
.icon_required {
	display: inline-block;
	font-size: 0.75em;
	padding: 2px 4px;
	line-height: 1;
	color: #fff;
	background: var(--table-system-color1);
}

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

@media screen and (max-width: 768px) {
		section:not(#section_schedule_today,#section_newface,#section_top_ranking_01,#section_ranking_01,#section_ranking_02) .cast_box {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 15px min(2%, 30px);
	}
}
.cast_box .cast_box_list{
	position: relative;
}
.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	margin-bottom: 12px;
	position: relative;
}
.cast_box .cast_box_list .img_box .img_cast{
	position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: clamp(20px, 4vw, 40px);
}
.cast_box .cast_box_list .icon_new{
	width: clamp(60px, 40%, 80px);
	position: absolute;
    top: 0px;
    right: 0px;
}
/* アイコン */
.cast_box .cast_box_list .icon_box {
	position: absolute;
	bottom: 6px;
    left: 2px;
	display: flex;
    justify-content: center;
	margin-bottom: 6px;
}
.cast_box .cast_box_list .icon_box img{
	width: clamp(28px, 2vw, 32px);
    margin: 0 2px;
}
/* アイコン下 */
.cast_box .cast_box_list .icon_box.off {
	position: static;
	display: flex;
    justify-content: center;
	margin: 10px 0;
}
.cast_box .cast_box_list .icon_box.off img{
    width: 30px;
    margin: 0 4px;
}

.cast_box .cast_box_list .frame{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
}
.cast_box .cast_box_list .frame img{
	width: 100%;
}
.cast_box .cast_box_list .txt_box .icon{
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 0 auto 6px;
	gap: 4px;
}
@media screen and (max-width: 768px){
	.cast_box .cast_box_list .txt_box .icon{
	gap: 2px;
}
}
.cast_box .cast_box_list .txt_box .icon span{
    background:var(--color-main2);
    color: #fff;
    border-radius: 40px;
    border: 1px solid #fff;
    line-height: 1.0;
    font-size: clamp(10px, 2vw, 14px);
    padding: 4px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cast_box .cast_box_list .txt_box .time{
    color: #fff;
    font-size: clamp(11px, 2vw, 14px);
    background: var(--color-main1);
    border-radius: 20px;
    padding: 5px;
    line-height: 1.4;
}
.cast_box .cast_box_list .txt_box .time2{
    color: var(--color-main1);
    font-size: clamp(8px, 2vw, 12px);
	background: #fff;
    border-radius: 20px;
    padding: 5px;
    line-height: 1.4;
    margin-top: 6px;
}
.icon_shop_wrap {
	margin-bottom: 8px;
}
.cast_box .cast_box_list .txt_box .icon_shop{
    background: #6c96a5;
    color: #fff;
    margin-bottom: 2px;
}
.cast_box .cast_box_list .txt_box .sch_info{
    background: #000;
    color: #fff;
    padding: 4px;
}
.cast_box .cast_box_list .txt_box .kana{
	font-size: clamp(10px, 3vw, 12px);
    line-height: 1;
    margin-top: 14px;
}
.cast_box .cast_box_list .txt_box .name{
	font-size: clamp(16px, 3vw, 18px);
}
.cast_box .cast_box_list .txt_box .size{
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.4;
	margin-bottom: 8px;
}
.cast_box .cast_box_list .txt_box .age span,
.cast_box .cast_box_list .txt_box .size span {
    font-size: clamp(10px, 2vw, 12px);
    margin-right: 3px;
}
@media screen and (max-width: 768px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.cast_box .cast_box_list .icon_x {
		width: 30px;
		top: 10px;
		left: 10px;
	}
	/* アイコン */
	.cast_box .cast_box_list .icon_box {
		position: absolute;
		bottom: 2px;
		left: 2px;
		display: flex;
		justify-content: center;
	}
}
@media screen and (max-width: 520px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.cast_box .cast_box_list .icon_box{
	position: static;
	display: flex;
    justify-content: left;
}
.bottom_box {
    position: absolute;
    bottom: -4px;
    left: 2px;
    width: 100%;
}
.marquee{
	background-color: #fff;
	border-radius: 20px;
	margin: 0px 4px 0;
	/* border: 1px solid var(--color-main2); */
	color: var(--color-main1);
	overflow: hidden;
}
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% { transform: translate(0); }
  100% { transform: translate(-100%); }
}
/****************************************

headerヘッダー設定

****************************************/
header {
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	z-index:10000;
	position:fixed;
}
header h1.logo {
	position: absolute;
	top: 7px;
	left: 10px;
}
header h1.logo img {
     max-width: 126px;
}

/* スクロールふわっと表示 */
header {
	height: 70px;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

header.active {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
}
.header_logo img {
	display: none;
	width: 180px;
	margin: 4px 0 0 10px;
}
.header_logo {
	float: left;
	height: 0;
	display: none;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
/* ----------------- */
/* fixed */
header.fixed {
	background: rgba(15, 15, 15, 0.6);
}
header.fixed:after {
	width: 100%;
}
.header_logo.fixed {
	display: block;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

#nav_top ul {
	text-align: right;
	padding: 10px 22px 10px 0;
}
#nav_top ul li {
   display: inline-block;
   text-align: center;
}
#nav_top ul li:last-child {
   margin-right: 0;
}
#nav_top ul li a {
   display: block;
   font-size: 14px;
   color: var(--color-black1);
   padding: 12px 16px;
   -webkit-transition: 0.6s;
   -moz-transition: 0.6s;
   -o-transition: 0.6s;
   -ms-transition: 0.6s;
   transition: 0.6s;
}
#nav_top ul li a.active {
   color: var(--color-black1);
}
#nav_top ul li a:hover {
   color: var(--color-black1);
   -webkit-transition: 0.6s;
   -moz-transition: 0.6s;
   -o-transition: 0.6s;
   -ms-transition: 0.6s;
   transition: 0.6s;
}
nav li a span.en {
	letter-spacing: 1px;
	display: inline;
	text-transform: uppercase;
}

/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
/*ハンバーガーメニューを作る*/
.btn_nav {
    position: fixed;
    top: 12px;
    right: 62px;
}
.btn_nav ul {
    display: flex;
}
.btn_nav ul li {
	margin-right: 8px;
}
.btn_nav ul li:last-child {
	margin-right: 0;
}
.btn_nav a {
	border: 1px solid var(--color-black1);
    width: 46px;
    height: 46px;
	color: var(--color-black1);
	display: block;
	border-radius: 6px;
}
.btn_nav a:hover{
	opacity: 0.7;
	transition: 0.3s ease-in-out;
}
.btn_nav a p {
	font-size: 0.55rem;
	line-height: 0.8rem;
	color: var(--color-black1);
}
.btn_nav a p img{
    padding: 4px 0 0;
    width: 26px;
}
/* ハンバーガー */
#nav-toggle {
    position: fixed;
    top: 10px;
    right: 0;
    width: 48px;
    height: 50px;
    padding: 14px 14px 0 0;
    z-index: 100;
}
#nav-toggle > div {
	position: relative;
}
#nav-toggle span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: var(--color-black1);
	position: absolute;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 10px;
}
#nav-toggle span:nth-child(3) {
	top: 20px;
}
.open #nav-toggle span:nth-child(1) {
	top: 7px;
	background-color: var(--color-black1);
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 7px;
	background-color: var(--color-black1);
	-webkit-transform: rotate(-45deg);
			transform: rotate(-45deg);
}

/*メニュー内設定*/
#nav-d-bg {
	position: fixed;
	background: rgba(255, 255, 255, 0.9);
	width: 500px;
	height: 1200px;
	right: -500px;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
	transition-delay: 0.65s;/*閉じる時のbgの速度*/
}
.open #nav-d-bg {
	-webkit-transform: matrix(2.7, 0, 0, 2.7, 0, 0);
			transform: matrix(2.7, 0, 0, 2.7, 0, 0);
	transition-delay: 0s;
}
#nav_drawer {
	position: fixed;
	top:40px;
	font-size: 16px;
	max-width: 400px;
	width: 100%;
	right: -400px;
	display: flex;
	align-items: center;
}
#nav_drawer > ul {width: 100%;}
#nav_drawer li {
	margin: 5px auto;
	max-width: 340px;
	width: 100%;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
}
#nav_drawer li a span.en{
	letter-spacing: 3px;
}
#nav_drawer li:nth-child(1),
#nav_drawer li:nth-child(10) {
	transition-delay: 0s;
}
#nav_drawer li:nth-child(2),
#nav_drawer li:nth-child(9) {
	transition-delay: .1s;
}
#nav_drawer li:nth-child(3),
#nav_drawer li:nth-child(8) {
	transition-delay: .2s;
}
#nav_drawer li:nth-child(4), 
#nav_drawer li:nth-child(7) {
	transition-delay: .3s;
}
#nav_drawer li:nth-child(5) {
	transition-delay: .4s;
}
#nav_drawer li:nth-child(6) {
	transition-delay: .5s;
}
#nav_drawer a {
	width: 100%;
	display: block;
	text-decoration: none;
	padding: 5px 0;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-o-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;
}
#nav_drawer a:after {
	content: "";
	display: block;
	color: var(--color-gray2);
	width: 0;
	height: 1px;
	transition: width 1s ease;
}
#nav_drawer a:hover {
	color: var(--color-white1);
	background: rgba(0,0,0,0.2);
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-o-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;
}
#nav_drawer li.nav_recruit a{
	color: var(--color-white1);
}
#nav_drawer li.nav_recruit a:hover{
	color: var(--color-white1);
	background: var(--color-pink2);
}
#nav_drawer a:hover:after {
	width: 100%;
}
#nav_drawer li.nav_recruit{
	background: rgba(40, 35, 35, 0.65);
}
#nav_drawer li.nav_tel_open p,
#nav_drawer li.nav_icon a{
	color: var(--color-gray1);
	display: inline-block;
}
#nav_drawer li.nav_icon a{
	width: auto;
}
#nav_drawer li.nav_tel_open a:hover,
#nav_drawer li.nav_icon a:hover{
	background: none;
}
#nav_drawer li.nav_icon a:after{
	display: none;
}
.open #nav_drawer li {
	-webkit-transform: translateX(-400px);
			transform: translateX(-400px);
}
.open #nav_drawer li:nth-child(1),
.open #nav_drawer li:nth-child(10){
	transition-delay: .6s;
}
.open #nav_drawer li:nth-child(2),
.open #nav_drawer li:nth-child(9){
	transition-delay: .5s;
}
.open #nav_drawer li:nth-child(3),
.open #nav_drawer li:nth-child(8) {
	transition-delay: .4s;
}
.open #nav_drawer li:nth-child(4),
.open #nav_drawer li:nth-child(7) {
	transition-delay: .3s;
}
.open #nav_drawer li:nth-child(5) {
	transition-delay: .2s;
}
.open #nav_drawer li:nth-child(6) {
	transition-delay: .1s;
}

.info_tel{margin-bottom: 6px;}
.btn_tel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 240px;
    height: 45px;
    color: #fff;
    background: var(--color-main1);
    border: solid 1px var(--color-main1);
    border-radius: 45px;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 40px auto 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

footerフッター設定

****************************************/
footer {
	font-size: 10px;
	padding: 80px 0 0;
	background: #fdf3ff;
}
@media screen and (max-width: 768px) {
    footer {
        padding: 80px 0 60px;
    }
}
footer .footer_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url(../images/contents_bg_01.jpg) center bottom / cover no-repeat;
	z-index: -1;
	pointer-events: none;
}
/* テキストメニュー */
footer .nav{
	margin: 0 auto 30px;
	padding: 10px 0;
	line-height: 20px;
}
footer .nav li {
	display: inline-block;
	line-height: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}
footer .nav li:last-child{
	border-right: none;
}
footer .nav li a{
	display: block;
	text-transform: uppercase;
	font-size: 12px;
    padding: 10px 14px;
}
footer .nav li a span {
    display: block;
    line-height: 10px;
    font-size: 9px;
}
footer .nav li a:hover{
	opacity: 0.5;
}
footer .nav li:last-child:after {
	display: none;
}

footer .logo {
	max-width: clamp(240px,28vw,280px);
	margin: 0 auto;
}
footer .logo img {
	width: 100%;
	height: auto;
}
/* 電話番号&営業時間 */
footer .tel,
footer .open {
	letter-spacing: 1px;
}
footer .tel {
	font-size: 1.4rem;
	margin: 30px auto 10px;
}
footer .open {
	font-size: clamp(14px, 4vw, 18px);
	margin: 0px auto 30px;
}
footer .tel a {
	display: block;
	color: #fff;
	width: 100%;
    max-width: clamp(320px, 36vw, 380px);
	background: var(--color-main4);
	border-radius: 30px;
	padding: 2px;
	margin: 0 auto;

	font-weight: 400;
}
footer .tel span {
	font-style: normal;
}
footer .tel span,
footer .open span,
footer .reception span {
	font-size: 0.8em;
	margin-right: 5px;
}


/* アイコン */
footer .icon_box{
    display: flex;
    justify-content: center;
	    margin: 0 auto 20px;
}
footer .icon_box img {
    width: 30px;
	margin: 0 4px;
}

.footer_link {
	padding: 10px 0;
	background: #ffe0f4;
	text-align: center;
	font-size: 10px;
	font-family: sans-serif;
	color: #717171;
}
.footer_link p{
	color: #342a32;
	font-size: 10px;
}
.footer_link a {
	color: #717171;
	text-decoration: underline;
	text-decoration-color: #d0d0d0;
}
.footer_txt{
	margin: 10px;
	color: #717171;
}

/* フリースペース */
.free_link_box ul{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: min(100%, 840px);
    margin: 40px auto 0;
}
.free_link_box li {
    margin-right: 10px;
    margin-bottom: 10px;
	display: inline-block;
	font-size: 11px;
}

.free_link_box img {
    width: 100%;
	height: auto;
}


/* リンクバナー */
.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-right: 10px;
    margin-bottom: 10px;
}
.list_link_box img {
    width: 100%;
	height: auto;
}



/****************************************
mainvisualメインビジュアル
****************************************/
#mainvisual{
	width: 100%;
	height: 92vh;
	position: relative;
	    overflow: hidden;
}
#mainvisual .swiper-wrapper{
	width: 100%;
	height: 100vh;
}
#mainvisual .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 100%;
}
#mainvisual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainvisual .logo {
	position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    z-index: 10;
}
#mainvisual .logo img{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
#mainvisual .mainvisual_txt{
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    overflow: hidden;
    font-size: 10rem;
    font-weight: 300;
    line-height: 1;
    color: rgb(255 255 255 / 60%);
    white-space: nowrap;
	font-family: var(--font-title);
}
@media screen and (max-width: 599px){
	#mainvisual .mainvisual_txt{
	    font-size: 4rem;
		bottom: -10px;
}
}
/* ↓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を上書き */


/* パンくずリスト */
.breadcrumbs {
	background: var(--color-main4);
	text-align: center;
    height: 30px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    line-height: 30px;
    margin: 0px 0 0px;
    font-size: 12px;
    text-transform: uppercase;
}
.breadcrumbs ol li {
    font-size: 10px;
    display: inline-block;
    text-transform: uppercase;
	color: #fff;
}
.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;
	content: "\f015";
}
.breadcrumbs ol li a {
	color: #fff;
}





/******************************
トップページ
******************************/
/*トップページ共通*/
section .subtitle{
    position: relative;
    padding-bottom: 50px;
	margin-bottom: 40px;
}
section .subtitle .en{
    font-size: clamp(46px, 5vw, 60px);
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 10px;
	font-family: var(--font-title);
	color: var(--color-black1);
	letter-spacing: 4px;
}
section .subtitle span.jp{
	font-size: clamp(12px, 2vw, 14px);
    display: block;
    line-height: 1.8;
    letter-spacing: 3px;
}
section .subtitle::after {
    display: block;
    content: "";
    width: 30px;
    height: 20px;
    background: url(../images/deco_title.png) center / cover no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
#section_covergirl,
#section_movie,
#section_blog,
#section_topics,
#section_concept,
#section_event,
#section_schedule_today,
#section_top_ranking_01,
#section_newface{
	padding: 100px 0px;
}


/* コンセプトバナー */
#section_concept{
	padding: 80px 0 100px;
    background: url(../images/bg_pattern1.jpg);
    background-repeat: no-repeat;
    background-position: 0% 70%;
    background-size: cover;
}
#section_concept .inner{
	width: 95%;
    max-width: 600px;
}
#section_concept img{
	width: 100%;
	max-width: 690px;
}
#section_concept p{
    color: var(--color-black1);
	font-family: var(--font-title);
	border-radius: 10px;
    padding: 10px;
}
#section_concept p.txt1,
#section_concept p.txt2{
    background: #fff;
    border-radius: 10px;
    padding: 6px 30px;
    display: table;
    box-shadow: 5px 5px 0px #e6b1da;
    color: #e485ca;
	font-size: clamp(20px, 3vw, 32px);
    letter-spacing: 2px;
}
#section_concept p.txt1{
    margin: 0 auto 20px 0;
}
#section_concept p.txt2{
    margin: 0 0 0px auto;
}
#section_concept p.txt3{
    font-size: clamp(30px, 3vw, 36px);
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-style: italic;
    color: #fff;
    text-shadow: 0px 0px 20px #e485ca;
    font-weight: bold;
    padding: 30px 0 0;
}
#section_concept p.txt3 span{
    font-size: clamp(40px, 4vw, 80px);
}


/* ヘッドライン */
#headline{
    background: #fdf3ff;
	padding: 20px 0;
}
#headline h2 {
    display: inline-block;
    letter-spacing: 3px;
    background: #fff;
    padding: 0 32px;
    color: #f667ee;
	border-radius: 20px;
	margin-bottom: 6px;
	font-family: var(--font-title);
}


/* 本日の出勤情報 */
#section_schedule_today{
	padding: 100px 20px;
	background: var(--color-main2);
}
.schedule__page {
	background-color: var(--color-main2);
	height: 14px;
	width: 14px;
	border-radius: 40px;
	border: none;
	transition: 0.5s all;
	cursor: pointer;
}
.schedule__page.is-active {
	background:var(--color-main1);
	opacity: 1;
}
.schedule__pagination {
	bottom: 1.5em;
	padding-top: 20px;
}
.schedule__pagination li {
	margin-left: 5px;
	margin-right: 5px;
}


/* 新人情報 */
#section_newface{
    padding: 80px 0 100px;
    background: url(../images/bg_pattern2.jpg);
    background-repeat: no-repeat;
    background-position: 0% 70%;
    background-size: cover;	
}
.splide__newface{padding: 0 20px;}
.newface__page {
	background-color: #fff;
	height: 14px;
	width: 14px;
	border-radius: 40px;
	border: none;
	transition: 0.5s all;
	cursor: pointer;
}
.newface__page.is-active {
	background:var(--color-main1);
	opacity: 1;
}
.newface__pagination {
	bottom: 1.5em;
	padding-top: 20px;
}
.newface__pagination li {
	margin-left: 5px;
	margin-right: 5px;
}


/* BLOG-RSS */
#section_blog{
	/* width: 100%; */
	max-width: 600px;
	margin-bottom: 20px;
    padding-top: 80px;
}
#section_blog li{
	margin-bottom: 20px;
	height: auto !important;
}
#section_blog .blog_box{
	height: 460px;
	overflow: hidden;
	background: #fff;
}
#section_blog p.info_title{
	font-size: 1.2rem;
	background: #4a4a4a;
	color: #fff;
	padding: 0 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}
#section_blog p.comment{
	font-size: 1rem;
	text-align: left;
}
#section_blog p.time{
	color: #b1b1b1;
	font-size: 0.8rem;
	margin-top: 10px;
	text-align: left;
}
#section_blog p.img{
	margin: 10px 0;
	background: #fff;
	color: #3e4349;
	line-height: 6rem;
}
#section_blog .info_txt{
    grid-template-columns: 20% auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -ms-grid;
    display: grid;
}
#section_blog .info_txt p.img{
    max-width: 100px;
    margin-right: 10px;
}
@media screen and (max-width: 768px){
	#section_blog .info_txt{
		grid-template-columns: 30% auto;
	}
}



/* 新着情報 */
#section_topics {
	margin-inline: auto;
    width: 100%;
	background: var(--color-main3);
}
#section_topics .inner{
	max-width: 1000px;
	padding: 0 0.8rem;
}
#section_topics .info_box_inner{
    padding: 30px;
    border: 5px solid #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}
@media screen and (max-width: 768px){
	#section_topics .info_box_inner{
		padding: 20px;
		border: 5px solid #fff;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
		position: relative;
	}
}
#section_topics  .info_box_inner {
    background: url(../images/bg_pattern3.jpg) top center no-repeat;
    background-size: cover;
}



#section_topics #info_box {
	height: 566px;
	overflow-y: auto;
}
#section_topics #info_box {
    width: 100%;
    padding: 4%;
    background: rgba(255, 255, 255, 1);
    outline: solid 1px rgba(255, 255, 255, 1);
    outline-offset: 1px;
	color: var(--color-black1);
}
#section_topics #info_box tbody tr td{
	border: 1px solid #3e4349;
}
#section_topics #info_box article{
	/* margin-bottom: 30px; */
	text-align: left;
}
#section_topics #info_box article .heading{
	text-align: left;
	padding: 0 0 10px;
	border-bottom: 1px solid var(--color-main1);
}
#section_topics #info_box article .heading h3{
	font-size: 18px;
}
#section_topics #info_box article .heading time{
    font-weight: normal;
    font-size: 10px;
	color: var(--color-main1);
}
#section_topics #info_box article .txt_box{
	text-align: left;
	padding: 30px 0;
}
#section_topics #info_box article p img{
    max-width: 100%;
    height: auto !important;
}
#section_topics #info_box strong {
	font-weight: bold;
}


.btn_unit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
	margin-top: 30px;
}
.btn_unit a {
	position: relative;
	display: block;
	padding: 8px;
	border-radius: 30px;
	border: 1px solid var(--color-main1);
	color: var(--color-main1);
	width: 100%;
	max-width: 160px;
	letter-spacing: 2px;
	font-weight: 400;
}
.btn_unit a:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	margin: auto;
}
.btn_unit a.btn__prev:before {
	border-bottom: solid 2px var(--color-main1);
	border-left: solid 2px var(--color-main1);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 2px;
	left: 10px;
}
.btn_unit a.btn__next:before {
	border-top: solid 2px var(--color-main1);
	border-right: solid 2px var(--color-main1);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 2px;
	right: 10px;
}



  /* 矢印 */
  .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;
}


/* イベント */
#section_event {
	width: 100%;
	overflow: hidden;
	padding-bottom: 0px;
	background: var(--color-main2);
}
#section_event .section--wrapper {
	padding: 0px 0 40px;
	margin-inline: auto;
}
#section_event a { display: block; }
@media screen and (max-width: 768px){
	#section_event:before {
		top: -22px;
		font-size: 6.0rem;
	}
}
.splide__event img {
	height: auto;
	width: 100%;
	transition: 0.3s all;
}
.event__page {
	background-color: #fff;
	height: 14px;
	width: 14px;
	border-radius: 40px;
	border: none;
	transition: 0.5s all;
	cursor: pointer;
}
.event__page.is-active {
	background:var(--color-main1);
	opacity: 1;
}
.event__pagination {
	bottom: 1.5em;
	padding-top: 20px;
}
.event__pagination li {
	margin-left: 5px;
	margin-right: 5px;
}

#section_event .event__bnr_box {
	padding-top: 40px;
	width: min(100%, 640px);
	margin-inline: auto;
}
@media screen and (max-width: 768px){
	#section_event .event__bnr_box { padding: 40px 1.0em 0;}
}


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

英語ページ(en.html)

****************************************/
/*共通部分*/
#contents_multiLanguage #section_concept,
#contents_multiLanguage #section_schedule_today,
#contents_multiLanguage #contents_system,
#contents_multiLanguage #contents_access,
#contents_multiLanguage #contents_attention{
	padding: 50px 10px;
}
#contents_multiLanguage #section_schedule_today,
#contents_multiLanguage #contents_access{
	background: #fff;
}
.wrap_box {
	max-width: min(100%, 800px);
  	margin: 0 auto 40px;
  	padding: 40px 40px;
	background: #eee;
}
.wrap_box:last-child {
  	margin: 0 auto;
}
/* コンセプト */
#contents_multiLanguage #section_concept {
	text-align: left;
}
#contents_multiLanguage #section_concept h2 {
	line-height: 1.5;
	letter-spacing: 0.1em;
}
#contents_multiLanguage #section_concept p {
	margin-bottom: 1rem;
}
/*本日の出勤情報 タブ*/
#contents_multiLanguage #section_schedule_today{
	min-height: 500px;
}
#contents_multiLanguage .schedule_select .schedule_tab_list li {
	cursor: pointer;
	padding: 10px;
	display: block;
	font-size: 12px;
	background: #999;
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}
#contents_multiLanguage .schedule_select .schedule_tab_list li:hover {
	opacity: 0.6;
}
#contents_multiLanguage .schedule_day_wrap .schedule_day_box {
	display: none;
}
#contents_multiLanguage .schedule_day_wrap .schedule_day_box.active {
	display: block;
	animation: fadeIn 1s ease-out forwards;
}
#contents_multiLanguage .schedule_nav li.active {
	background: #000;
	color: #fff;
}
#contents_multiLanguage .schedule_nav li.active:hover{
	opacity: 1;
}
/*本日の出勤情報 セラピ*/
#contents_multiLanguage .cast_box {
  grid-template-columns: repeat(3, minmax(0, 1fr))!important;
}
#contents_multiLanguage .cast_box .cast_box_list .img_box {
  aspect-ratio: 1 / 1;
}
#contents_multiLanguage .cast_box .cast_box_list .img_box:before { 
  display: none;
}
#contents_multiLanguage .img_box .img_cast{
	aspect-ratio: 2 / 3;
	position: absolute;
}
#contents_multiLanguage .img_box .img_cast:nth-child(1){
	width: 66.6%;
	height: auto;
	top: 0;
	left: 0;
	bottom: auto;
	right: auto;
}
#contents_multiLanguage .img_box .img_cast:nth-child(2){
	width: 33.3%;
	height: auto;
	top: 0;
	left: auto;
	bottom: auto;
	right: 0;
	padding: 0 0 2.5px 5px;
}
#contents_multiLanguage .img_box .img_cast:nth-child(3){
	width: 33.3%;
	height: auto;
	top: auto;
	left: auto;
	bottom: 0;
	right: 0;
	padding: 2.5px 0 0 5px;
}
#contents_multiLanguage .img_box .img_box_frame{
	width: 66.6%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: auto;
	right: auto;
}
#contents_multiLanguage .img_box .icon_new{
	position: absolute;		
	right: 36%;
	bottom: 5px;
}
/*料金*/
#contents_multiLanguage #contents_system .system_text_caution li {
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
}
/*料金*/
#contents_multiLanguage #contents_access .access_ol {
    display: flex;
    flex-wrap: wrap;
}
/*海外のお客様向け注意文*/
#contents_multiLanguage #contents_attention {
	position: relative;
	padding: 60px 20px;
}
#contents_multiLanguage #contents_attention .wrap_box div {
	text-align: justify;
}
#contents_multiLanguage #contents_attention .wrap_box ul li {
	padding-left: 0.5em;
  text-indent: -0.5em;
}
@media screen and (max-width: 768px){
	#contents_multiLanguage #section_concept {
		font-size: 12px;
	}
	#contents_multiLanguage .cast_box {
	    grid-template-columns: repeat(2, minmax(0, 1fr))!important;
	}
}
@media screen and (max-width: 520px){
	.wrap_box {
	    margin-bottom: 20px;
	    padding: 20px 20px;
	}
	#contents_multiLanguage .cast_box {
	    grid-template-columns: repeat(1, minmax(0, 1fr))!important;
	}
}
/****************************************

下層ページ

****************************************/
/*下層ページ共通設定*/
#contents_system,
#contents_schedule,
#contents_cast,
#contents_profile,
#contents_recruit,
#contents_access,
#contents_entry,
#contents_contact,
#contents_err,
#contents_link{
	padding: 100px 0 100px;
	background: var(--color-main2);
}
.subvisual{
	width: 100%;
	height: 35vh;
	padding: 100px 0;
	background-image: url(../images/subvisual_contents.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 70% 30%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.subvisual h2{
	font-size: 2.5em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	padding-top: 20px;
    font-optical-sizing: auto;
	line-height: 1;
	position: relative;
}
.subvisual h2 span{
	font-size: 12px;
}
.subvisual .en{
    font-size:clamp(36px, 5vw, 50px);
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 10px;
	font-family: var(--font-title);
	color: var(--color-black1);
}
.subvisual span.jp{
	font-size: 14px;
	display: block;
	line-height: 1.8;
	color: var(--color-black1);
	font-weight: 400;
}
.subvisual h2::after {
    display: block;
    content: "";
    width: 30px;
    height: 20px;
    background: url(../images/deco_title.png) center / cover no-repeat;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}


/*フレーム*/
.box_frame_tiffanyblue{
	background: rgba(255, 255, 255, 1);
    padding: clamp(15px, 3vw, 30px);
    border: solid 2px;
    border-image: var(--bg-gradation1);
    border-image-slice: 1;
    outline: solid 4px #fff;
    text-align: left;
	color: var(--color-black1);
}
.box_frame_black{
    padding: 32px;
    background: rgb(255, 255, 255);
    outline: solid 1px rgba(255, 255, 255, 0.85);
    outline-offset: 1px;
    color: var(--color-black1);
}
.box_frame_line{
	width: 100%;
    padding: 15px;
    background: #fff;
    border: 10px solid #e1f2f1;
    text-align: left;
    table-layout: fixed;
	color: var(--color-black1);
}

.box_frame_vanilla .box_frame_black{
    background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px){
	.box_frame_black{
		padding: 20px;
		outline: solid 1px rgba(255, 255, 255, 0.85);
	    outline-offset: 1px;
	}
	.box_frame_vanilla{
		border: 3px solid #fff;
	}
}

/* タイトル */
.title_grd01 {
    color: #fff;
    padding: 10px 0;
    margin-bottom: 20px;
    background: var(--color-main4);
    font-size: clamp(16px, 3vw, 22px);
    text-align: center;
    line-height: 1.4;
    position: relative;
}
.title_grd01::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--color-main4);
}
.title_grd01::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--color-main4);
}

.title_cborderside{
	padding: 6px 12px;
    margin-bottom: 8px;
	text-align: left;
	background: var(--color-main2);
}
.title_cborderside span {
    border-left: 4px solid var(--color-main4);
    padding-left: 8px;
    line-height: 1;
}
.title_subtitle{
    font-optical-sizing: auto;
    letter-spacing: 2px;
    position: relative;
    color: var(--color-black1);
    margin-bottom: clamp(0px, 4vw, 20px);
    padding-top: 80px;
	font-size: clamp(2rem, 3vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
}
.title_subtitle span {
	font-size: 14px;
    display: block;
    line-height: 1.8;
    
    font-weight: 400;
}
/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
    margin: 40px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1280px;
    gap: 8px;
}
.schedule_nav li { width: calc((100% - 8px) / 2); }
.en .schedule_nav li {
	padding: 10px;
	display: block;
	font-size: 12px;
	background: var(--gray_color1);
	transition: 0.4s ease;
}
.schedule_nav li a {
    padding: 8px 0;
    display: block;
    font-size: clamp(12px, 1.5vw, 14px);
    transition: 0.4s ease;
    border: 1px solid var(--table-system-color2);
    background: #fff;
    border-radius: 16px;
}
.schedule_nav li a:hover { opacity: 0.6; }
.schedule_nav li.active a {
	background: var(--table-system-color1);
	color: #fff;
}
.schedule_nav li.active a:hover{ opacity: 1; }
@media screen and (max-width: 768px) {
	.schedule_nav li:first-child{ width: 100%; }
	.schedule_nav li a { font-size: 0.9rem; }
}
@media screen and (min-width: 768px) {
	.schedule_nav li,
	.schedule_nav li:first-child {
		width: calc((100% - 48px)/ 7 );
	}
}


/* ナビゲーションボタン 上書き*/
.sch_nav_btn:is(.swiper-button-prev, .swiper-button-next) {
	margin-top: 0;
	width: 72px;
	height: 32px;
	background: #fff;
    border: 1px solid var(--color-main1);
	color: var(--color-main1);
	transition: ease 0.3s;
	font-size: clamp(12px, 3vw, 14px);
	border-radius: 10px;
}
.sch_nav_btn:is(.swiper-button-prev, .swiper-button-next):after { display: none; }
.sch_nav_btn.swiper-button-prev {
	top: 0;
	left: 0;
	padding: 0 8px 0 16px;
}
.sch_nav_btn.swiper-button-next {
	top: 0;
	right: 0;
	padding: 0 16px 0 8px;
}
.sch_nav_btn:is(.swiper-button-prev, .swiper-button-next).swiper-button-disabled  { opacity: 0.01; }
.sch_nav_btn.swiper-button-prev:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	margin: auto;
	border-bottom: solid 2px var(--color-main1);
	border-left: solid 2px var(--color-main1);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
}
.sch_nav_btn.swiper-button-next:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	margin: auto;
	border-top: solid 2px var(--color-main1);
	border-right: solid 2px var(--color-main1);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
}


/****************************************
週間スケジュールページ
****************************************/
#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;
	}
}



/****************************************
ランキングページ
****************************************/
#section_ranking_01 .cast_box li {
	margin: 0 30px 30px 0;
	float: left;
	width: 300px;
}
#section_ranking_01 .cast_box li p.name {
    line-height: 1.4;
    padding-bottom: 4px;
}
#section_ranking_01 .cast_box li:nth-of-type(3n) {
	margin-right: 0;
}
/*以下のサイズはサイトに合わせてください*/
#section_ranking_01 .cast_box li .img_box {
	width: 300px;
	height: 450px;
	margin-bottom: 10px;
}
/*以下のサイズはサイトに合わせてください*/
#section_ranking_01 .cast_box li .img_box img{
	max-width: 300px;
	max-height: 450px;
}
#section_ranking_02 .cast_box li {
	margin: 0 30px 30px 0;
	float: left;
}
#section_ranking_02 .cast_box li:nth-of-type(3n) {
	margin-right: 0;
}
#section_ranking_01 .cast_box li .icon_ranking {
	position: absolute;
	top:350px;
	left: 200px;
}
#section_ranking_02 .cast_box li .icon_ranking {
	position: absolute;
	top:231px;
	right: 0;
}
#section_ranking_01 .cast_box li .icon_new{
	width: 50px;
	position: static;
}


/****************************************
プロフィールページ
****************************************/
#contents_profile {
	padding: 100px 0 0px;
}
#contents_profile .profile_wrap{
	display: grid;
    grid-template-columns: 320px auto;
    gap: 40px;
    max-width: 960px;
    width: 100%;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
	#contents_profile .profile_wrap{
		display: grid;
		grid-template-columns: auto;
		gap: 40px;
		max-width: 960px;
		width: 100%;
		margin-inline: auto;
	}
}
#contents_profile .profile_box_right,
#contents_profile .profile_box_left {
	width: 100%;
	max-width: 480px;
	display: inline-block;
	vertical-align: top;
	word-break: break-word;
}
#contents_profile .profile_box_left .img_box{
	width: 300px;
	height: 450px;
	position: relative;
    text-align: center;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    margin-bottom: 16px;
    margin-inline: auto;
    border-radius: clamp(40px, 4vw, 60px) clamp(40px, 4vw, 60px) clamp(40px, 4vw, 60px) clamp(40px, 4vw, 60px);
}
.profile_box_right .title_grd01{
	font-size: clamp(16px, 3vw, 18px);
}
.profile_box_right .kana {
	font-size: clamp(10px, 3vw, 12px);
	line-height: 1;
    padding-top: 6px;
}
.profile_box_right .name {
    font-size: clamp(22px, 3vw, 24px);
    margin-bottom: 10px;
}
.profile_box_right .icon img{
	width: 49%;
	max-width: 50px;
}
.profile_box_right video{
	width:100%;
}
.profile_box_right .size span{
    font-size: clamp(10px, 2vw, 12px);
    margin-right: 3px;
}
.profile_box_right .icon{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.profile_box_right .icon span {
    background: var(--color-main5);
    color: #fff;
    border-radius: 40px;
    border: 1px solid var(--color-main6);
    line-height: 1.0;
    font-size: clamp(10px, 2vw, 14px);
    padding: 6px 14px;
    margin: 2px;
}

#contents_profile .profile_box_left .img_box .icon_new {
    max-width: 90px;
    width: 30%;
	height: auto;
    position: absolute;
    top: 0;
    right: 0;
}
/* アイコン */
.profile_box_right .icon_box {
    display: flex;
    justify-content: center;
	margin-bottom: 30px;
}
.profile_box_right .icon_box img{
    width: 30px;
    margin: 0 4px;
}

/* ↓↓ レスポンシブ用スケジュール
*  ブラウザで確認するときはmainタグのwidth:960pxを消して確認してください。
*/



.profile_box_schedule{
	padding: 0px 0 100px;
    background: var(--color-main2);
}
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	box-sizing: border-box;
	border: 1px solid var(--table-system-color3);
	margin: 40px 0 0;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	flex-grow: 1;
	height: 100%;
	border-left: 1px solid var(--table-system-color3);
	font-size: clamp(12px, 3vw, 14px);
}
.profile_box_schedule .profile_sch_box div:nth-of-type(1).profile_sch_variable :is(.profile_sch_date, .profile_sch_check) {
	border-left: none;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable :is(.profile_sch_date, .profile_sch_check) span{
	padding: 0.25em 0;
	background: var(--table-system-color3);
	line-height: 1.3;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	padding: 5px;
	border-left: 1px solid var(--table-system-color3);
	border-bottom: 1px solid var(--table-system-color3);
	background: var(--color-main3);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 5px;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .sch__entry__check {
	color: var(--main_color1);
	line-height: 1.6;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .sch__info__txt { color: var(--pink_color1); }
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .sch__full__txt {
	color: var(--color-main1);
	border-radius: 40px;
	border: 1px solid var(--color-main1);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .icon_shop_chart { padding: 5px 20px; }

@media (max-width: 767px) {
	.profile_box_schedule .profile_sch_box { display: block; }
	.profile_box_schedule .profile_sch_box .profile_sch_variable {
		flex-grow: unset;
		display: flex;
		border-left: none;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
		flex-basis: 50%;
		border-left: none;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
		flex-basis: 50%;
		border-bottom: 1px solid var(--table-system-color2);
		height: initial;
	}
}
/* ↑↑ ここまで レスポンシブ用スケジュール */



/****************************************
システムページ
****************************************/
#contents_system .table_system{
	margin: 0 auto 30px;
    font-size: 1.8rem;
	width: 100%;
}
#contents_system .table_system tr{
	border-bottom: 1px solid rgb(95 82 82 / 20%);
}
#contents_system .table_system td {
    padding: 2% 0;
    text-align: center;
	font-size: 2.4rem;
}
#contents_system .table_system td:nth-child(1) {
    width: 38%;
}
#contents_system .table_system td:nth-child(3) {
    font-weight: 600;
    padding-right: 0px;
    padding-left: 20px;
}
#contents_system .table_system span {
    font-size: .8em;
	font-size: 1.4rem;
}
#contents_system .table_system td.op_txt {padding: 1% 0 2%;}
#contents_system .table_system td.op_txt span {font-size: 1.6rem;}
@media screen and (max-width: 768px) {
	#contents_system .system li {
		padding: 20px;
	}
	#contents_system .table_system td {
		padding: 4% 0;
		text-align: center;
		font-size: 2.0rem;
	}
}



/****************************************
セラピスト求人
****************************************/
#contents_recruit{ padding: 100px 0 0px;}


/****************************************
アクセスページ
****************************************/
#contents_access .access_ol li{
	width: 100%;
	max-width: 450px;
	display: inline-block;
	padding: 10px;
	margin: 10px auto;
}


/****************************************
ホテルページ
****************************************/
#contents_hotel #list_tab_01,
#contents_hotel #list_tab_02 {
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
}
#contents_hotel #list_tab_01 li,
#contents_hotel #list_tab_02 li {
	margin: 3px;
	display: inline-block;
	max-width: 100px;
}
#contents_hotel .title_room {
	font-size: 1.5em;
	font-weight: bold;
}
#contents_hotel .title_room span {
	font-size: 0.75em;
}



/****************************************
リンクページ
****************************************/
#contents_link .free_link_box img {
    width: auto!important;
    max-width: 100%!important;
    height: auto!important;
}



/****************************************
404ページ
****************************************/


