@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: #1c1c1c;
	--color-beige1: #ab9469;
	--color-beige2: #ab9469;
	--color-red1:#890000;
	--color-gray1: #959494;
	--color-gray2: #444444;
	--bg-gradation1: linear-gradient(90deg, rgb(172 149 106) 0%, rgb(216 205 161) 25%, rgb(246 241 194) 50%, rgb(217 206 161) 75%, rgb(171 148 105) 100%);
    --bg-gradation2: linear-gradient(90deg, rgb(27 27 27) 0%, rgb(42 42 42) 25%, rgb(59 58 58) 50%, rgb(42 42 42) 75%, rgb(27 27 26) 100%);
}
body {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
	color: #fff;
	background: #0f0f0f;
	font-size: 14px;
	font-weight: 500;
	font-family: Garamond , "Times New Roman", "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , 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: 1001px) {
	.nav_sp {
		display: none;
	}
}
@media screen and (max-width: 1000px) {
	.nav_pc {
		display: none;
	}
}

.inner {
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner1200{
	width: 95%;
	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: #fff;
}
main{
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
    background: url(../images/bg_pattern.png);
    background-position: 50% 0%;
    background-size: 400px;
    background-color: #242424;
}
img{
	max-width: 100%;
  	height: auto;
}
h1{
	font-size: 11px;
}
h2 {
	margin-bottom: 10px;
}
h3{
    max-width: 1000px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.15em;
    margin: 0 auto 8px;
    padding: 6px;
    color: var(--color-blue1);
	border-bottom: 1px solid #ffffff;
    margin-bottom: 30px;
    border-image: linear-gradient(90deg, #242424 0%, #7f7f7f 30%, #ffffff 50%, #7f7f7f 70%, #242424 100%);
    border-image-slice: 1;
}
h4{
	position: relative;
    display: inline-block;
    padding-left: 40px;
	font-size: 1.4rem;
}
h4::before{
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #fff;
    left: 0;
}
.access_area span::before {
    font-size: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
    margin-right: 8px;
    content: '●';
    color: var(--main_color);
}
/* フォーカスイン*/
.focusin{opacity: 0;}
.focusin.on {
	-webkit-animation: focus-in 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation: focus-in 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	opacity: 0;
}
@keyframes focus-in {
	0% {-webkit-filter: blur(12px);filter: blur(12px);opacity: 0;}
	100% {-webkit-filter: blur(0px);filter: blur(0px);opacity: 1;}
}


/*********** 文字色 ***********/
.atten_01, .atten_01 a{color: #b10000;}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #0086ff;}
.atten_04, .atten_04 a{color: #890000;}

/*********** 背景色 ***********/
.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;}

/*********** 文字寄せ ***********/
.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%;
    text-align: center;
    table-layout: fixed;
	    text-align: left;
}
.table_01 th, .table_01 td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #242424;
}
.table_01 th {
    padding: 20px 10px;
    color: #fff;
    background: var(--color-gray2);
    vertical-align: middle;
}
.table_01 td {
    color: var(--color-black1);
	background: #fff;
}
.table_01 td a{color: var(--color-black1);}
/*table02*/
.table_02 {
	width: 100%;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	border-spacing: 0;
	text-align: left;
}
.table_02 th, .table_02 td {
	padding: 5px;
	border: 1px solid #eee;
}
.table_02 th {
	background: #999;
	color: #fff;
	vertical-align: top;
	font-size: 12px;
	text-align: center;
}
.table_02 td {
	text-align: center;
}

/*table_form*/
.table_form{
	width: 100%;
}
.table_form th,
.table_form td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #242424;
    background: #fff;
	color: var(--color-black1);;
}
.table_form th{
    padding: 20px 10px;
    color: #fff;
    background: var(--color-gray2);
    vertical-align: middle;
}
.table_form #half{
	width: 30%;
	
}
@media screen and (max-width: 768px) {
	.table_form th,
	.table_form td{
		width: 100%;
		display: block;
	}
}
.table_form td label{
	display: flex;
}
.table_form a {color: var(--color-black1);;}
.table_form a img {
	width: 18px;
	margin-right: 4px;
}
/* リンクボックス */
.list_link_box li{
	margin: 10px;
	display: inline-block;
	font-size: 11px;
}

/*********** ボタン設定 ***********/
.btn_more{
    max-width: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    padding: 10px 0;
    text-align: center;
    outline: none;
    transition: ease 0.2s;
	border: 1px solid #8a805f;
    border-image: linear-gradient(to right, #8a805f 0%, #ab9469 50%, #8a805f 100%);
    border-image-slice: 1;
	
}
.btn_more span {
    color: var(--color-beige2);
}
.btn_more:hover span {
	color: var(--color-black1);
	position: relative;
    z-index: 3;
    transition: ease 0.2s;
}
/* 背景流れる（左） */
.bg_left:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: linear-gradient(to right, #8a805f 0, #d5cfb3 40%, #d5cfb3 60%, #8a805f 100%);
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}
.bg_left:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
/* 求人ページ応募方法のボタン */
.btn_recruit {
	display: flex;
	gap: 5px;
	flex-direction: column;
	flex-wrap: wrap;
}
.btn_recruit a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	color: #fff;
	background: var(--color-black1);;
}
.btn_recruit a span {
	margin: 2px 5px 0 0;
}
.btn_recruit .btn_tel {
	background: var(--color-black1);;
}
.btn_recruit .btn_mail {
	background: #4a4a4a;
}
.btn_recruit .btn_line {
	background: #00c300;
}

/* フォームのボタン */
.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: var(--color-black1);;
}
.btn_form .btn_send {
	background: var(--color-black1);;
}
.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;
}



.bg_pattern1{
    padding: 100px 0 100px;
    background: url(../images/bg_pattern.png);
    background-position: 50% 0%;
    background-size: 400px;
    background-color: #242424;
}
.bg_pattern2{
	background: url(../images/bg_pattern2.jpg);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
}
@media screen and (max-width: 768px){
	.bg_pattern1{
		background: url(../images/bg_pattern.png);
		background-position: 50% 0%;
		background-size: 400px;
		background-color: #242424;
	}
	.bg_pattern2{
	background: url(../images/bg_pattern2.jpg);
    background-repeat: no-repeat;
    background-position: 20%% 100%;
    background-size: cover;
}
}



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

/******************************
セラピスト共通設定
******************************/
section:not(#section_covergirl,#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: 15px min(2%, 30px);
}
section#section_top_ranking_01 .cast_box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px min(2%, 30px);
}

.cast_box .cast_box_list{
	position: relative;
	background-color: #0f0f0f;
}
.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	margin-bottom: 10px;
	position: relative;
}
/*.cast_box .cast_box_list .img_box:before{
	content: "";
	display: block;
	padding-top: 150%;
}*/
.cast_box .cast_box_list .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*position: absolute;
	top: 0;
	left: 0;*/
}
.cast_box .cast_box_list .icon_new{
    width: 70px;
    position: absolute;
    top: 0px;
    right: 0px;
}
/* アイコン */
.cast_box .cast_box_list .icon_box {
	position: absolute;
    bottom: 4px;
    left: 0px;
	display: flex;
    justify-content: center;
}
.cast_box .cast_box_list .icon_box img{
    width: 30px;
    margin: 0 4px;
}
/* アイコン下 */
.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{
	padding: 0px 8px 8px;
	font-size: 1.0rem;
}
.cast_box .cast_box_list .txt_box .icon{
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 0 auto 6px;
}
.cast_box .cast_box_list .txt_box .icon img {
    width: 100%;
    padding: 2px;
}
.cast_box .cast_box_list .txt_box .time{
	font-size: 0.8rem;
    color: var(--color-black1);
    background: var(--bg-gradation1);
    padding: 2px;
    margin: 8px 0 0px;
}
.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: var(--color-black1);;
    color: #fff;
    padding: 4px;
}
.cast_box .cast_box_list .txt_box .name span{
	font-size: 0.8rem;
}

@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_new{
		bottom: 0px;
		right: 0px;
	}
	/* アイコン */
	.cast_box .cast_box_list .icon_box {
		position: absolute;
		bottom: 10px;
		right: 8px;
		display: flex;
		justify-content: center;
	}
	.cast_box .cast_box_list .icon_box img{
		width: 30px;
		margin: 0 2px;
	}
}
@media screen and (max-width: 520px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}



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

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: 100px;
}

/* スクロールふわっと表示 */
header {
	height: 60px;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
.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.9);
}
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: 15px 25px 15px 0;
}
#nav_top ul li {
   margin-right: 4px;
   display: inline-block;
   text-align: center;
   width: 120px;
}
#nav_top ul li:first-child {
   width: 70px;
}
#nav_top ul li:last-child {
   margin-right: 0;
}
#nav_top ul li a {
   display: block;
   font-size: 14px;
   color: #fff;
   -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: #9e8454;
}
#nav_top ul li a:hover {
   color: #c5bbb0;
   -webkit-transition: 0.6s;
   -moz-transition: 0.6s;
   -o-transition: 0.6s;
   -ms-transition: 0.6s;
   transition: 0.6s;
}
nav li a span.en {
	font-family: "Didot";
	letter-spacing: 1px;
	display: inline;
	text-transform: uppercase;
	font-family: "Cinzel", serif;
}



/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
/*ハンバーガーメニューを作る*/
.btn_nav {
    position: fixed;
    top: 6px;
    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-beige1);
    width: 48px;
    height: 48px;
	color: var(--color-beige1);
	vertical-align: middle;
	display: block;
}
.btn_nav a:hover{
	opacity: 0.7;
	transition: 0.3s ease-in-out;
}
.btn_nav a p {
	font-size: 0.7rem;
	line-height: 0.8rem;
	color: var(--color-beige1);
}
.btn_nav a p i {
    font-size: 1.4rem;
	padding: 4px 0;
}
/* ハンバーガー */
#nav-toggle {
	position: fixed;
	top: 4px;
	right: 0;
	width: 48px;
	height: 60px;
	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-beige1);
	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: #fff;
	-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: #fff;
	-webkit-transform: rotate(-45deg);
			transform: rotate(-45deg);
}

/*メニュー内設定*/
#nav-d-bg {
	position: fixed;
	background: rgba(0, 0, 0, 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 {
	color: #fff;
	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;
	background: var(--color-black1);
	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-black3);
}
#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;
}
/****************************************

footerフッター設定

****************************************/
footer {
    background: #0c0d0f;
    font-size: 10px;
    padding: 0px 0 0;
}
@media screen and (max-width: 768px) {
    footer {
        padding: 0px 0 66px;
    }
}
footer .logo img{
	max-width: 160px;
}
/* テキストメニュー */
footer .nav{
	margin: 0 auto 30px;
	padding: 10px 0;
	line-height: 20px;
}
footer .nav li {
	display: inline-block;
	line-height: 30px;
    text-transform: uppercase;
}
footer .nav li a:hover{
	opacity: 0.5;
}
footer .nav li:after {
	content: "　|　";
	display: inline;
	margin: 0 3px;
	color: #eee;
}
footer .nav li:last-child:after {
	display: none;
}
/* 電話番号&営業時間 */
footer .info_box {
    margin: 40px auto 10px;
    font-size: 1.2rem;
	    letter-spacing: 1px;
}
footer .info_box span{
    margin: 40px auto 10px;
    font-size: 0.8rem;
}
/* アイコン */
footer .icon_box{
    display: flex;
    justify-content: center;
	    margin: 0 auto 40px;
}
footer .icon_box img {
    width: 24px;
    margin: 0 10px;
}

.footer_link {
	padding: 4px 0;
	text-align: center;
	font-size: 12px;
	color: #fff;
}
.footer_link a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #d0d0d0;
}
.footer_txt{
	margin: 10px;
	color: #fff;
}

/* フリースペース */
.free_link_box img {
    margin-right: 10px;
    margin-bottom: 10px;
	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-right: 10px;
    margin-bottom: 10px;
}
.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: rgba(0, 0, 0, 0.8);
}
#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;
}


/****************************************
mainvisualメインビジュアル
****************************************/
#mainvisual{
	width: 100%;
	height: 100vh;
	position: relative;
}
#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: 400px;
    margin: 0 auto;
}
@media screen and (max-width: 480px) {
   #mainvisual .logo img {
        max-width: 220px;
    }
}
#mainvisual .mv_inner {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
#mainvisual .mv_inner img{
	width: 100%;
	max-width: 220px;
}
#mainvisual .mv_inner p{
	font-size: 2.4rem;
	line-height: 1.4em;
	font-weight: bold;
	margin: 0 20px;
}
#mainvisual .mv_inner p span{
	font-weight: normal;
}
@media screen and (max-width: 768px){
	#mainvisual .mv_inner p{
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 520px){
	#mainvisual .mv_inner p{
		font-size: 1.2rem;
	}
}
/* ↓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を上書き */


/* ヘッドライン */
#headline {
    border-top: 1px dotted #d5cfb3;
    border-bottom: 1px dotted #d5cfb3;
    border-image: linear-gradient(to right, #8a805f 0%, #d5cfb3 50%, #8a805f 100%) 1;
	line-height: 60px;
	height: 60px;
}

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



/******************************
トップページ
******************************/
/*トップページ共通*/
section h2{
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
	line-height: 1;
	margin-bottom: 30px;
	overflow: hidden;
}

.title{
	position: relative;
	height: 100px;
	display: flex;
	align-items: center;
}
.title::before{
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    position: absolute;
    top: 0%;
    left: 50%;
    background: var(--bg-gradation1);
    transform: skew(135deg);
    z-index: 20;
}
.title .txt{
    font-size: 3rem;
    letter-spacing: 2px;
    line-height: 1;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
	background: var(--bg-gradation1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title .bg_txt{
    font-size: 7rem;
	letter-spacing: 2px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	background: var(--bg-gradation2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	
}
#section_schedule_today .title{ height: 100px;}

#section_event,
#section_covergirl,

#section_topics,
#section_concept,

#section_schedule_today,
#section_top_ranking_01,
#section_newface{
	padding: 80px 10px;
}

/*トップページ　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;
	}
}



/* カバーガール */
#section_covergirl .swiper{
	width: 300px;
	margin: 0 auto;
}
#section_covergirl .cast_box .cast_box_list{
	padding:0  0px;
}
@media screen and (max-width: 768px){
	#section_covergirl .swiper{
		width: 220px;
		margin: 0 auto;
	}
}



/* 新着情報 */
#section_topics #info_box{
	border: 1px solid #ab9469;
	background: var(--color-black1);
	padding: 30px;
}
#section_topics #info_box tbody tr td{
	border: 1px solid #3e4349;
}
#section_topics #info_box article{
	text-align: left;
}
#section_topics #info_box article h3{
	background: var(--color-black1);
	text-align: left;
}
#section_topics #info_box article p img{
	max-width: 100%;
}
#section_topics #info_box strong {
	font-weight: bold;
}

.accordion{
	margin-bottom: 20px;
}
.toggle_contents {
    border-bottom: 1px solid #242424;
    padding: 16px 0;
}
.toggle_title {
    position: relative;
    padding: 16px 10px 16px 20px;
	cursor: pointer;
	text-align: left;
	line-height: 1.4;
	background: transparent;
    border-left: solid 5px var(--color-red1);
    font-size: 1.2rem;
}
.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%;
}
.toggle_contents .selected .toggle_btn:after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #dfdfdf 2px solid;
	border-right: #dfdfdf 2px solid;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position:absolute;
    right: 8px;
    top: 4px;
	bottom: 0;
	margin: auto;
}
.toggle_contents .toggle_btn:after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #dfdfdf 2px solid;
	border-right: #dfdfdf 2px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
    right: 8px;
    top: 4px;
	bottom: 15%;
	margin: auto;
}
.toggle_btn:before {
	width: 2px;
	height: 10px;
}
.toggle_title.selected .toggle_btn:before {
	content: normal;
}

.toggle_contents dd {
	display: none;
}
.toggle_contents dd {
	display: block;
	padding: 20px;
}
.toggle_contents dd time{
    color: #dac7a3;
	text-align: left;
	display: block;
	margin-bottom: 12px;
}
@media screen and (max-width: 768px){
	.toggle_title {
        position: relative;
        padding: 10px 10px 10px 20px;
        cursor: pointer;
        text-align: left;
        line-height: 1.4;
        background: transparent;
        border-left: solid 4px var(--color-red1);
        font-size: 1.0rem;
	}
	.toggle_btn {
		position: absolute;
		top: 50%;
		right: 0px;
		transform: translateY(-50%);
		display: block;
		width: 24px;
		height: 24px;
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		border-radius: 50%;
	}
	.toggle_contents dd {
		display: block;
		padding: 20px 0px;
	}
}
/* 新着情報 - 記事内画像サイズ調整 */
#section_topics #info_box img{
	max-width: 100%;
    width: auto!important;
    height: auto!important;
}


/* 矢印 */
.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 img{
	width: 100%;
	max-width: 690px;
}
#section_event .swiper-wrapper .swiper-slide{ padding:0  10px;}

/* ページネーション */
.swiper{
	padding-bottom: 40px;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 10px !important;
	background-color: var(--color-black1)!important;
	opacity: 1;
}
.my-active-bullet {
	background-color:var(--color-red1)!important;
	opacity: 1;
}
.swiper-pagination {
	height: 30px;
	bottom: 0 !important;
	bottom: 0px !important;
}


/* ランキング共通 */
#section_top_ranking_01 .cast_box .cast_box_list:nth-child(3n),
#section_top_ranking_02 .cast_box .cast_box_list:nth-child(3n) {
	margin-right: 0;
}

/* ランキング1 */
#section_top_ranking_01 {
	max-width: 690px;
	margin: 0 auto;
}
#section_top_ranking_01 .cast_box .cast_box_list {
	position: relative;
}
#section_top_ranking_01 .cast_box .cast_box_list .icon_ranking {
	position: absolute;
	bottom: 0;
	right: 0;
}
#section_top_ranking_01 .cast_box .cast_box_list .icon_ranking img {
	max-width: 100px;
}
#section_top_ranking_01 .cast_box .cast_box_list p.name {
    line-height: 1.4;
    padding-bottom: 4px;
}
/* ランキング2 */
#section_top_ranking_02 {
	width: 960px;
	float: right;
}
#section_top_ranking_02 .cast_box .cast_box_list {
	width: 300px;
	position: relative;
	margin: 0 30px 30px 0;
	float: left;
}
#section_top_ranking_02 .cast_box .cast_box_list .icon_ranking{
	position: absolute;
	top: 350px;
	right: 0;
}
#section_top_ranking_02 .cast_box .cast_box_list .icon_ranking img {
	max-width: 100px;
}
#section_top_ranking_01 .cast_box .cast_box_list .icon_new{
	width: 50px;
	position: static;
}

/* 本日の出勤情報　*/
#section_schedule_today{
	background: #282728;
}
#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;
}

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

英語ページ(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: var(--color-black1);;
	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_info,
#contents_cast,
#contents_schedule,
#contents_profile,
#contents_access,
#contents_recruit,
#contents_entry,
#contents_contact,
#contents_reserve,
#topics_system,
#contents_link,
#contents_err{
	padding: 80px 0 100px;
}
.subvisual{
	width: 100%;
	height: 35vh;
	padding: 140px 0 100px;
	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;
	border-bottom: 1px dotted #d5cfb3;
    border-image: linear-gradient(to right, #8a805f 0%, #d5cfb3 50%, #8a805f 100%) 1;
	overflow: hidden;
}
.subvisual h2{
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 10px;
    line-height: 1;
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    white-space: nowrap;
}





/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    gap: 8px;
}
.schedule_nav li {
    width: calc((100% - 8px) / 2);
}
.en .schedule_nav li {
	padding: 10px;
	display: block;
	font-size: 12px;
	background: #999;
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}

.schedule_nav li a {
	padding: 10px;
	display: block;
	font-size: 12px;
	background: #0f0f0f;
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}
.schedule_nav li a:hover {
	opacity: 0.6;
}
.schedule_nav li.active a {
	background: var(--bg-gradation1);
	color: var(--color-black1);
}
.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-gray2);
    border: 1px solid #242424;
	color: #fff;
	transition: ease 0.3s;
	text-transform: uppercase;
}
.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_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_right h3 span{
	font-size: 0.8rem;
	display: block;
}
#contents_profile .profile_box_left .img_box{
	width: 300px;
	height: 450px;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.profile_box_right .name img{
	width: 50px;
	vertical-align: sub;
}
.profile_box_right .icon img{
	width: 49%;
	max-width: 50px;
}
.profile_box_right video{
	width:100%;
}
/*以下のサイズはサイトに合わせてください*/
#contents_profile .img_box > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_profile .profile_box_left .img_box .frame{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
#contents_profile .profile_box_left .img_box .icon_new {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0px;
    right: 0px;
}
.profile_box_schedule{
	clear: both;
}
.profile_box_schedule .table_02 {
	/* margin-bottom: 20px; */
}
#contents_profile .profile_option_box p{
	width: 33.33%;
	padding: 5px;
	box-sizing: border-box;
	float: left;
	text-align: center;
	font-size: 10px;
	font-weight: 700;
}
#contents_profile .profile_option_box .can{
	background: #ffff00;
}
#contents_profile .profile_option_box .normal{
	background: #00d8d1;
}
#contents_profile .profile_option_box .cant{
	background: #333333;
	color: #999;
}
#contents_profile .profile_option_box::after{
  content: "";
  display: block;
  clear: both;
}
/* アイコン */
.profile_box_right .icon_box {
    display: flex;
    justify-content: center;
	margin-bottom: 30px;
}
.profile_box_right .icon_box img{
    width: 30px;
    margin: 0 4px;
}
/*出勤タイムライン設定*/
ul.timeline-head,
ul.timeline {
	display:table;
	table-layout:fixed;
	width:100%;
	font-size: 0.5em;
}
ul.timeline-head li,
ul.timeline li {
	display:table-cell;
	text-align:center;
}
ul.timeline-head li:first-child {
	border-left:none;
}
ul.timeline li {
	text-indent:-600px;
	overflow:hidden;
	border-top:1px solid #CCC;
}
ul.timeline li:first-child {
	border-left:none;
}
ul.timeline li.ui-selected {
	background:var(--color-black1);b84;
}


/* ↓↓ レスポンシブ用スケジュール
*  ブラウザで確認するときはmainタグのwidth:960pxを消して確認してください。
*/
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: flex;
	box-sizing: border-box;
    border: 1px solid #242424;
	margin: 40px 0;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	flex-grow: 1;
	background: #fff;
	border-left: 1px solid #242424;
}
.profile_box_schedule .profile_sch_box div:nth-of-type(1).profile_sch_variable .profile_sch_date,
.profile_box_schedule .profile_sch_box div:nth-of-type(1).profile_sch_variable .profile_sch_check{
      border-left: none;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	padding: 5px;
	border-left: 1px solid #242424;
	border-bottom: 1px solid #242424;
    background: #0f0f0f;
	color: #fff;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	padding: 5px;
	color: var(--color-black1);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check span{
	width: 100%;
    background: #242424;
	color: #fff;
    display: block;
}
.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;
	}
	.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 #242424;
	}
}
/* ↑↑ ここまで レスポンシブ用スケジュール */




/*
プロフィールページ 感想
*/
.impressions_box ul.impressions_inner{
	display: flex;
	flex-flow: wrap;
}
.impressions_box ul.impressions_inner li.impressions_list{
	flex-basis: 50%;
	border: 3px solid #eee;
	box-sizing:border-box;
	background: #fff;
}
.impressions_box ul.impressions_inner li.impressions_list:nth-child(2n){
	margin-right: 0;
}
.impressions_box ul.record{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	background: #888;
	padding: 5px 10px;
	margin: auto;
}
.impressions_box ul.record li{
	width: 50%;
	display: inline-block;
	color: #fff;
	line-height: 30px;
	text-align: left;
	margin: auto;
}
.impressions_box ul.evaluation{
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.impressions_box ul.evaluation li{
	width: 24%;
	display: inline-block;
	color: #3e4349;
}
.impressions_box div.txt{
	height: 150px;
	padding: 10px;
	text-align: left;
	word-wrap:break-word;
	overflow-y: auto;
	box-sizing: border-box;
}
.impressions_box div.txt .fa-lg{
	line-height: auto;
}
.impressions_box div.txt span{
	display: block;
	font-weight: bold;
	color: #d31563;
	text-align: center;
}
@media (max-width: 767px){
	.impressions_box ul.impressions_inner li.impressions_list{
		flex-basis: 100%;
	}
}


/****************************************
システムページ
****************************************/
.table_system {
    width: 100%;
    text-align: center;
    table-layout: fixed;
    font-family: "Cinzel", Garamond, "Times New Roman", 游明朝, "Yu Mincho", 游明朝体, YuMincho, "ヒラギノ明朝 Pro W3", "Noto Serif JP", "Hiragino Mincho Pro", HiraMinProN-W3, HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.table_system input{
    border: 1px solid #e0e0e0;
}
.table_system tr {
    margin-bottom: 10px;
}
.table_system .headline th{
	background: #323232;
	font-size: 1.2rem;
}
.table_system tr.check_list input{width: auto;}
.table_system th,
.table_system td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #242424;
    /*    text-shadow: 0 0 10px #fff;*/
}
.table_system th {
    font-size: 1.4rem;
    padding: 20px 10px;
    color: #fff;
    background: var(--color-gray2);
    vertical-align: middle;
}
.table_system td {
    font-size: 1.2rem;
    color: var(--color-black1);
	background: #fff;
}
.table_system th span,
.table_system td span{
    font-size: 1.0rem;
}
.table_system td a{
    color: var(--color-black1);;
}
.table_system .requier {
    border-radius: 2px;
    background: #bd0101;
    color: #fff;
    font-size: 0.6em;
    letter-spacing: 1px;
    padding: 4px 12px;
}

.template_box{
    max-width: 1024px;
    margin: 0 auto 0px;
    display: flex;
    text-align: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    align-items: center;
}

.template_box > div:first-child{
    margin-right: 10px;
}
.template_box div.content_borderbox:first-child{
    margin-right: 0;
}
.template_box div.content_colorbox:first-child{
    margin-right: 0;
}
.template_box > div.col_1:first-child,
.template_box > div.col_3:first-child,
.template_box > div.col_4:first-child,
.template_box > div.col_5:first-child{
    margin-right: 0
}
.template_box:last-child table.table_collum_03{
    margin: 0 auto 0;
}
.content_colorbox{
    width: 100%;
    padding: 30px;
    margin: 0 auto 40px;
	background: rgba(46, 46, 46, 0.8);
    outline: 1px solid #424040;
    outline-offset: -4px;
}

#contents_system .event_swiper_pc img {
    width: 100%;
    max-width: 640px;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px){
	#contents_system .event_swiper_pc {
		display: block;
	}
	#contents_system .event_swiper_pc img{
		width: 95%;
	    margin: 0 auto;
	}
}
#contents_system .bnr_credit {
max-width: 550px;
width: 100%;
margin:0 auto;
margin-bottom: 40px;
}



/****************************************
ご利用方法ページ
****************************************/
#contents_info .list_box li{
	height: 210px;
}


/****************************************
お問合せページ
****************************************/
.btn_contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	color: #fff;
	background: var(--color-black1);;
}
.btn_contact .btn_line {
	background: #00c300;
}



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


/****************************************
新着情報一覧ページ
****************************************/
#topics_system img{
	max-width: 100%;
    width: auto!important;
    height: auto!important;
}
#topics_system time{
	color: #dac7a3;
    text-align: left;
    display: block;
    margin-bottom: 12px;
}

.pagination {
	padding: 0 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 10px;
}
.pagination li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	border-radius: 10px;
	background: var(--color-gray2);
   	color: var(--color-green2);
}
.pagination li.active {
    background: var(--color-black1);
    color: #fff;
}
/****************************************
404ページ
****************************************/


