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

/*選択時の背景色*/
::selection {background: #CEB87480;}

/* 配色 共通 */
:root {
	--main_color: #CEB874;
	--sub_color: #F5E38C;
	--white: #E2E2E2;
	--gray: #8D8D8D;
	--dark_gray: #2B2B2B;
	--black: #111;
	--red:#e11639;

	--black_rgb: 17, 17, 17,;

	--grad_gold: linear-gradient(90deg,var(--main_color) 0%, var(--sub_color) 50%, var(--main_color) 100%);
}

.atten_01, .atten_01 a{color: var(--red);}
.atten_02, .atten_02 a{color: #5189b6;}
.color_gold{color: var(--main_color);}
.color_gray{color: var(--gray);}

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

 common (共通スタイル)

****************************************/
html, body {overflow-x: hidden;}
html {scroll-behavior: smooth;}
body {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
	color: var(--white);
	background: var(--black) url(../images/bg_black.webp) center no-repeat;
	background-size: cover;
	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;
	letter-spacing: 1px;
}
@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: 1121px) {
	.nav_sp{display: none !important;}
}
@media screen and (max-width: 1120px) {
	.nav_pc{display: none !important;}
}

.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner1200{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}
.inner1000{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 20px;
}
@media screen and (min-width: 768px) {
	.inner1200,.inner1000{padding: 80px 20px;}	
}

a{
	color: var(--main_color);
	transition: opacity 0.4s ease;
}
a:hover{opacity: 0.6;}
main{
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
}
img{
	max-width: 100%;
  	height: auto;
}

/*スクロールバー*/
::-webkit-scrollbar {width: 12px;}
body::-webkit-scrollbar-track {background-color: var(--dark_gray);}
::-webkit-scrollbar-track {background: none;}
::-webkit-scrollbar-thumb {
	background-color: var(--main_color);
	border-radius: 100px;
}

/*ページネーション*/
.pagination{
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
.pagination li{
	margin: 0 8px 8px;
}
.pagination li a {
	text-transform: uppercase;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    color: var(--main_color);
    background: var(--black);
    border: 1px solid var(--main_color);
}
.pagination li.active a {/*アクティブ*/
	color: var(--black);
	background: var(--main_color);
	border: 1px solid var(--main_color);
	pointer-events: none;
}
.pagination li.active a:hover{opacity: 1;}
ul.pagination.next_prev:has(li) {margin: 30px auto 0;}/*セラピスト一覧*/
.pagination.next_prev li a {width: 100px;}/*セラピスト一覧*/

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

/* ズーム */
.zoom{transition: 0.3s all;}
.zoom:hover {transform:scale(1.1,1.1);}

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

/*********** 文字寄せ ***********/
.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;}

/*リンクページのフリースペースと、新着情報の画像伸びないための*/
#contents_link .template_box img,
#section_topics article img,
#contents_topics article img,
footer aside img,
.free_link_box img{
	width: auto;
	max-width: 100%!important;
	height: auto!important;
}

/*********** table設定 ***********/
/*table_form*/
.table_form {
	width: 100%;
	border-spacing: 0;
	text-align: left;
}
.table_form tr{border-bottom: 10px solid var(--black);}
.table_form th, .table_form td {
	padding: 16px;
	color: var(--white);
}
.table_form th {
	width: 35%;
	background: var(--dark_gray);
	vertical-align: middle;
}
.table_form td {background: rgba(var(--black) 0.8);}
.table_form td#reserve #day,
.table_form td#reserve #reserve_hour,
.table_form td#enquete #month{margin-bottom: 10px;}
.table_form td a {color: var(--white);}
@media screen and (max-width: 768px) {
	.table_form th, .table_form td {
		display: block;
		width: 100%;
	}
}

/* table01 */
.table_01 {
	width: 100%;
	border: 1px solid var(--gray);
	border-spacing: 0;
	text-align: left;
}
.table_01 tr{border: 1px solid var(--gray);}
.table_01 th, .table_01 td {
	padding: 16px;
	color: var(--white);
}
.table_01 th {
	width: 35%;
	background: var(--dark_gray);
	vertical-align: middle;
}
.table_01 td {background: var(--black);}
.table_01 td a {color: var(--white);}
@media screen and (max-width: 768px) {
	.table_01 th, .table_01 td {
		display: block;
		width: 100%;
	}
}

/* table02 */
.table_02 {
	width: 100%;
	border-spacing: 0;
	text-align: left;
}
.table_02 tr:not(:last-child){border-bottom: 10px solid var(--black);}
.table_02 th, .table_02 td {
	padding: 16px;
	color: var(--white);
}
.table_02 th {
	width: 35%;
	background: var(--dark_gray);
	vertical-align: middle;
}
.table_02 td {background: var(--black);}
.table_02 td a {color: var(--white);}
@media screen and (max-width: 768px) {
	.table_02 th, .table_02 td {
		display: block;
		width: 100%;
	}
}

/*********** ボタン設定 ***********/
.btn_more{
	display: inline-block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	margin: 30px auto 0;
	background: var(--grad_gold);
	color: var(--black);
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	text-transform: uppercase;
}
.btn_more:hover{opacity: 0.6;}

/* 求人ページ応募方法のボタン */
.btn_recruit {
	display: flex;
	gap: 5px;
	flex-direction: column;
	flex-wrap: wrap;
}
.btn_recruit a {
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: var(--white);
    flex-direction: column;
}
.btn_recruit .btn_tel {background: linear-gradient(90deg, #C1272D 0%, #D85628 100%);}
.btn_recruit .btn_mail {background: linear-gradient(90deg, #B59841 0%, var(--main_color) 100%);}
.btn_recruit .btn_line {background: linear-gradient(90deg, #003834 0%, #004F4A 100%);}

/* フォームのボタン */
.btn_form {
	display: flex;
	gap: 5px;
	justify-content: center;
}
.btn_form input {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border: none;
	cursor: pointer;
	color: var(--white);
	background: var(--black);
	font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.btn_form .btn_send {
	background: var(--main_color);
	color: var(--black);
}
.btn_form .btn_reset {
	background: var(--dark_gray);
}






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

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 var(--gray);
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 16px;
	vertical-align: baseline;
	font-size: 16px;
}
form input[type="text"],
form input[type="email"],
form textarea {
	width: 100%;
	/*max-width: 350px;*/
}
form textarea {
	resize: vertical;
	height: 200px;
}
form .form_txt {margin-top: 5px;}
form input[type="text"].form_short {max-width: 100px;}
form input[type="text"].form_middle {max-width: 160px;}
form input[type="radio"],
form input[type="checkbox"] {
	margin: 0 4px;
	vertical-align: baseline;
	accent-color: var(--red);
}
form .form_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
form input::placeholder,
form textarea::placeholder {
	color: var(--gray);
	font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
form select{
	max-width: 280px;
	width: 100%;
	font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@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: 3px 4px 2px;
	line-height: 1;
	color: var(--white);
	background: var(--red);
}





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

セラピスト共通設定

******************************/
section:not(#section_covergirl) .cast_box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px min(5%, 30px);
}
.cast_box .cast_box_list{position: relative;}
.cast_box .cast_box_list a:hover {opacity: 1;}
.cast_box .cast_box_list a:hover .img_box .img_cast{ transform:scale(1.1,1.1); }
.cast_box .cast_box_list .img_box .img_cast {transition: 0.3s all;}
.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	position: relative;
    border: 2px solid var(--black);
    border-image: linear-gradient(135deg,var(--sub_color) 0%, #B59841 50%, var(--sub_color) 100%) 2;
    overflow: hidden;
}
#section_covergirl .cast_box .cast_box_list .img_box {border-image: linear-gradient(135deg,#D85628 0%, #C1272D 50%, #D85628 100%) 2;}
.cast_box .cast_box_list .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cast_box .cast_box_list .icon_new{
	width: 50px;
	position: absolute;
    top: -2px;
    left: -2px;
}
#section_covergirl .cast_box .cast_box_list .icon_new{width: 80px;}
@media screen and (min-width: 768px){
	.cast_box .cast_box_list .icon_new{width: 60px;}
}
/* アイコン */
.cast_box .cast_box_list .icon_box {
	position: absolute;
	bottom: 6px;
	right: 6px;
	display: flex;
	flex-wrap: wrap;
	flex-wrap: wrap-reverse;
	justify-content: flex-end;
	gap: 4px;
	width: calc(100% - 20px);
}
.cast_box .cast_box_list .therap_sns_icon {
	width: 30px;
	margin: 0 0 0 2px;
}
#section_covergirl .cast_box .cast_box_list .therap_sns_icon {
	width: 40px;
	margin: 0 0 0 4px;
}
.cast_box .cast_box_list .txt_box{
	background: var(--black);
	padding: 8px 10px 10px;
	color: var(--white);
	border-right: 1px solid var(--dark_gray);
	border-left: 1px solid var(--dark_gray);
	border-bottom: 1px solid var(--dark_gray);
}
.cast_box .cast_box_list .txt_box .name{font-size: 16px;}
.cast_box .cast_box_list .txt_box .size{
	margin-bottom: 10px;
	line-height: normal;
}
.cast_box .cast_box_list .txt_box .time{
	padding: 4px 4px 0;
	margin-top: 10px;
	border-top: 1px solid var(--dark_gray);
	color: var(--main_color);
}
.cast_box .cast_box_list .txt_box .time_free_text{color: var(--main_color);}
.icon_shop_wrap {margin-top: 6px;}
.cast_box .cast_box_list .txt_box .icon_shop{
    background: #6c96a5;
    color: #fff;
}
.cast_box .cast_box_list .txt_box .sch_info{
    background: var(--black);
    color: #fff;
    padding: 6px;
}
@media screen and (min-width: 520px){
	section:not(#section_covergirl) .cast_box {grid-template-columns: repeat(3, minmax(0, 1fr));}
}
@media screen and (min-width: 768px){
	section:not(#section_covergirl) .cast_box {grid-template-columns: repeat(4, minmax(0, 1fr));}
}

/*ランク・指名料金*/
.cast_box .cast_box_list .txt_box .icon{
	display:flex;
	gap: 0 6px;
    margin: 0 auto;
    justify-content: center;
}
.cast_box .cast_box_list .txt_box .icon .icon_check{
	width: calc(100% / 2);
}
.cast_box .cast_box_list .txt_box .icon img {
    width: 100%;
}

/*状態アイコン*/
.check_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 6px auto 0;
  gap: 6px;
}
.check_item .icon_check {
  width: calc((100%/2) - 3px );
  padding: 2px 5px 0;
  display: grid;
  place-items: center center;
  background: var(--dark_gray);
  color: var(--white);
  font-size: 10px;
}
.check_item:after,
.check_item .icon_check:after {
  display: none;
}
@media screen and (min-width: 768px){
	.check_item .icon_check {
	  font-size: 12px;
	}
}





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

headerヘッダー設定

****************************************/
header {
	width: 100%;
    height: 60px;
    background: rgba(var(--black_rgb) 0.8);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 0 0 20px;
}
header h1.logo img{
	height: auto;
	width: 110px;
}

/* 電話番号&営業時間 */
header .info_box {
    line-height: normal;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
}

/*グローバルナビ*/
header nav ul{
	gap: 8px;
    display: flex;
    width: 100%;
    padding-right: 16px;
}
header nav ul li{
	display: block;
	width: 100%;
	padding: 0 4px;
}
header nav ul li a{
	display: block;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    line-height: normal;
}

/*フッターグローバルナビ*/
@media screen and (min-width: 768px) {
	footer nav ul{
		display: grid;
	    grid-template-columns: repeat(6, minmax(0, 1fr));
	    gap: 30px min(2%, 30px);
	}
	footer nav ul li a{
	    display: block;
	    text-transform: uppercase;
	    font-size: 14px;
	    position: relative;
	    line-height: normal;
	}
}

/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
.menu_reserve{
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}
.btn_reserve{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.btn_reserve .icon_reserve{
	width: 15px;
	height: auto;
}
.btn_reserve a{
	width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.btn_reserve p{
	font-size: 0.6rem;
    line-height: 0.8rem;
    color: var(--main_color);
}

/*ハンバーガーメニューを作る*/
.btn_toggle {
	background: transparent;
    border: none;
    padding-bottom: 8px;
    width: 48px;
    height: 48px;
    display: block;
    z-index: 999;
}
.btn_toggle:hover{cursor: pointer;}
.btn_toggle span{
	display: inline-block;
	background: var(--sub_color);
	height: 1px;
	width: 25px;
	position: relative;
}
.btn_toggle span:before{
	content: "";
	display: inline-block;
	background: var(--sub_color);
	height: 1px;
	width: 25px;
	position: absolute;
	top: 8px;
	left: 0;
}
.btn_toggle span:after{
	content: "";
	display: inline-block;
	background: var(--sub_color);
	height: 1px;
	width: 25px;
	position: absolute;
	top: -8px;
	left: 0;
}
#btn_open.active span{background: transparent;}
#btn_open.active span:before{
	transform: rotate(45deg);
	top: 0;
}
#btn_open.active span:after{
	transform: rotate(-45deg);
	top: 0;
}

/*メニュー内設定*/
.nav_menu{
	height: 100vh;
	background: rgba(var(--black_rgb) 0.95);
	margin: 0;
	padding: 50px 10px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: none;
	text-align: left;
}
.nav_menu a{
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	text-transform: uppercase;
}
#sp_nav.open{display: block;}
.nav_menu .drawer_outer{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 90%;
}
.nav_menu .drawer_outer .logo{
	max-width: 240px;
    margin: 0 auto 10px;
}
.drawer ul {
    text-align: center;
    display: flex;
    gap: 8px 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.drawer ul li {
    display: block;
    width: calc((100% / 2) - 10px);
    line-height: normal;
    color: var(--main_color);
    border-bottom: 1px solid var(--dark_gray);
}
.nav_menu .info_box{margin-top: 20px;}
.nav_menu .info_box a{
	padding: 0;
	border-bottom:0;
	display: inline-block;
}

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

/* ヘッドライン */
#headline {
	font-size: 12px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	display: flex;
	justify-content: center;
	flex-direction: row;
	background: var(--black);
    border-top: 0.5px solid var(--black);
    border-bottom: 0.5px solid var(--black);
    border-image: var(--grad_gold) 0.5;
}
#headline .swiper{
	text-align: center;
	width: 100vw;
}
@media screen and (min-width: 768px) {
	#headline{font-size: 14px;}
}





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

footerフッター設定

****************************************/
footer {
	background: var(--black);
	color: var(--white);
}
footer aside{margin-bottom: 40px;}
footer .logo img{
	max-width: 270px;
	margin: 0 auto 40px;
}

/* テキストメニュー */
footer .nav{margin: 0 auto 40px;}
footer .nav li {display: inline-block;}
footer .nav li a:hover{opacity: 0.6;}

/* 電話番号&営業時間 ヘッダー＆フッター */
footer .info_box {
	font-size: 16px;
	margin: 0 auto 40px;
}
.info_box a{color: var(--white);}
.info_box span{
	color: var(--main_color);
	text-transform: uppercase;
}
.info_box span.reception{color: var(--white);}

/* アイコン */
footer .icon_box{
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
}
footer .icon_box img {
    width: 30px;
	margin: 0 4px;
}
.footer_link {
	text-align: center;
	color: var(--gray);
}
.footer_link a {
	color: var(--gray);
	text-decoration: underline;
	text-decoration-color: var(--gray);
}
.footer_txt{
	margin: 10px;
	color: var(--gray);
}

/* フリースペース */
.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: auto 0;
}
.list_link_box li{
	margin: 10px 10px 0;
	display: inline-block;
	font-size: 10px;
}
.list_link_box img {
    width: 100%;
	height: auto;
}

/*追尾ボタン*/
#bottom_nav {
	position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    display: block;
    z-index: 99;
    font-size: 14px;
}
#bottom_nav ul.nav{display: flex;}
#bottom_nav ul.nav li div{
	margin-top: 12px;
	color:var(--main_color);
}
#bottom_nav ul.nav li a {
	display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    height: 60px;
    line-height: normal;
    padding: 2px 0 0;
    text-transform: uppercase;
}
#bottom_nav ul.nav li:first-child a{background: linear-gradient(90deg,#C1272D 0%, #D85628 100%);}
#bottom_nav ul.nav li:last-child a{background: linear-gradient(90deg,#003834 0%, #004F4A 100%);}
#bottom_nav ul.nav li:nth-child(n){
	width: 44%;
	background: var(--dark_gray);
	line-height: normal;
}
#bottom_nav ul.nav li:first-child,#bottom_nav ul.nav li:last-child{width: 28%;}
#bottom_nav a img {
    width: auto;
    height: 14px;
}





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

mainvisualメインビジュアル

****************************************/
#mainvisual{
	width: 100%;
	/*height: 70vh;*/
	position: relative;
}
#mainvisual .swiper-wrapper{
	width: 100%;
	/*height: 70vh;*/
}
#mainvisual .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 100%;
}
#mainvisual a:hover{
	opacity: 1;
}
#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: 72%;
    max-width: 400px;
    margin: 0 auto;
}
#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;}
}
#mainvisual .flex-control-nav {bottom: 0;}
.flexslider{
	margin-bottom: 0;
	background: unset;
	border: none;
}
#mainvisual .flex-control-paging li a.flex-active  {background-color: var(--main_color);}

/* スクロール */
.scroll_box {
	position: absolute;
	bottom: -60px;
	left: 0;
	right: 0;
}
.scroll_down {
	position: relative;
	width: 100%;
	height: 100vh;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.scroll_down:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	right: 50%;
	width: 100%;
	height: 80%;
}
.scroll_down a {
    display: flex;
    justify-content: center;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 13px;
	padding: 10px 10px 12.0vh;
	color: var(--white);
	font-size: 0.8rem;
	line-height: 1;
	letter-spacing: 2px;
	text-decoration: none;
	transition: all 0.2s;
	margin: auto;
}
.scroll_down a:before {
	content: '';
	position: absolute;
	top: -90px;
	left: 50%;
	width: 1px;
	height: 80px;
	background: var(--white);
}
.scroll_down a:after {
	content: '';
	position: absolute;
	top: -90px;
	left: 50%;
	width: 1px;
	height: 80px;
	background: var(--gray);
}
.scroll_down a:hover {opacity: 0.5;}
#type01 a:after {animation: sdl01 2.0s cubic-bezier(1, 0, 0, 1) infinite;}
@keyframes sdl01 {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

/* パンくずリスト */
.breadcrumbs {
	text-align: center;
	height: 40px;
	line-height: 40px;
	background: var(--black);
    border-top: 0.5px solid var(--black);
    border-bottom: 0.5px solid var(--black);
    border-image: var(--grad_gold) 0.5;
}
.breadcrumbs ol li {
	font-size: 12px;
	display: inline-block;
	position: relative;
	padding: 0 10px;
	text-transform: uppercase;
	color: var(--white);
}
.breadcrumbs ol li:before {
	display: block;
    content: "";
    width: 5px;
    height: 10px;
    background: url(../images/icon_mini_right.svg) center / cover no-repeat;
    position: absolute;
    left: -4px;
    top: 15px;
}
.breadcrumbs ol li:first-child:before {background: none;}
@media screen and (min-width: 768px){
	.breadcrumbs ol li {font-size: 14px;}
}





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

トップページ

******************************/
/*ボックス黒*/
.box_black{
	padding: 20px;
	background: var(--black);
	border: 1px solid var(--dark_gray);
}
@media screen and (min-width: 768px){
	.box_black,.box_black.form{padding: 30px;}
}

/*トップページ共通*/
.title img{
	width: 270px;
	height: auto;
	margin-bottom: 30px;
}
.title.gold img{
	width: 210px;
	margin-bottom: 20px;
}
@media screen and (min-width: 768px){
	.title img{width: 310px;}
	.title.gold img{width: 250px;}
}
#section_covergirl,#section_topics,#section_schedule_today,#section_sns,aside#bnr{padding: 60px 20px;}

/* ピックアップ */
#section_covergirl{background: url(../images/bg_pickup_sp.webp) center center / cover no-repeat;}
#section_covergirl .swiper{
	width: 300px;
	margin: 0 auto;
	background: rgba(var(--black_rgb) 0.8);
}
#section_covergirl .cast_box .cast_box_list{padding:20px;}
@media screen and (min-width: 768px){
	#section_covergirl{background: url(../images/bg_pickup_pc.webp) bottom center / cover no-repeat;}
}

/* 新着情報 */
#section_topics{background: url(../images/bg_topics_sp.webp) top center / cover no-repeat;}
#section_topics .topics_bg{
	padding: 10px;
	margin: 0 auto;
	background: #fff url(../images/bg_topics_inner.webp) bottom right no-repeat;
	background-size: 80%;
}
@media screen and (min-width: 768px){
	#section_topics .topics_bg{background-size: 60%;}
}
#section_topics .topics_frame{
	padding: 20px;
	border: 1px solid var(--gray);
	height: 500px;
	overflow-y: scroll;
	color: var(--black);
}
#section_topics #info_box tbody tr td{border: 1px solid var(--black);}
#section_topics #info_box article{
	text-align: left;
	font-size: 14px;
}
#section_topics #info_box article time{
	color: var(--gray);
	font-size: 12px;
}
#section_topics #info_box article h3{
	color: #B59841;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: normal;
}
#section_topics #info_box strong {font-weight: bold;}

/*ページネーションボタン　次へ　前へ*/
#section_topics .page {
	text-align: center;
	margin-top: 20px;
}
#section_topics .page a {
  	position: relative;
  	display: inline-block;
  	width: 80px;
  	background: #fff;
	border: 1px solid var(--black);
	color: var(--black);
	overflow: hidden;
	z-index: 0;
	transition: opacity 0.4s ease;
	text-transform: uppercase;
}
#section_topics .page a:hover {opacity: 0.6;}
@media screen and (min-width: 768px) {
    #section_topics{background: url(../images/bg_topics_pc.webp) center center / cover no-repeat;}
}

/* 本日の出勤情報　*/
#section_schedule_today{background: url(../images/bg_white.webp) top center / cover no-repeat;}
#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;
}

/* 共通バナーリスト */
.bnr_list {
	display: inline-block;
	/*display: flex;
	gap: 20px;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;*/
}
.bnr_list li{
	/*width: 100%;
	display: inline-block;
	text-align: center;
	vertical-align: middle;*/
}
@media screen and (min-width: 768px){
	.bnr_list {
		/*flex-direction: row;
		justify-content: center;*/
	}
	.bnr_list li{width: 400px;}
}

/* トップバナーリスト */
#bnr .bnr_list {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}
#bnr .bnr_list li{
	width: 100%;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}
@media screen and (min-width: 768px){
	#bnr .bnr_list {
		flex-direction: row;
		justify-content: center;
	}
	#bnr .bnr_list li{width: 400px;}
}

/* 店舗公式SNS */
#section_sns{background: url(../images/bg_black.webp) top center / cover no-repeat;}

/* 誘導バナー */
aside#bnr{background: url(../images/bg_black.webp) top center / cover no-repeat;}





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

下層ページ

****************************************/
/*下層ページ共通設定*/
.subvisual{
	width: 100%;
	height: 25vh;
	margin-top: 60px;
	background: url(../images/bg_subvisual.webp) center / cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

/****************************************
新着情報
****************************************/
#contents_topics .topics_bg{
	padding: 10px;
	margin: 0 auto 40px;
	background: #fff;
}
#contents_topics .topics_frame{
	padding: 20px;
	border: 1px solid var(--gray);
	color: var(--black);
}
#contents_topics #info_box tbody tr td{border: 1px solid var(--black);}
#contents_topics #info_box article{text-align: left;}
#contents_topics #info_box article time{
	color: var(--gray);
	font-size: 12px;
}
#contents_topics #info_box article h3{
	color: #B59841;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
#contents_topics #info_box strong {font-weight: bold;}

/****************************************
システムページ
****************************************/
#contents_system .table_system{ 
	margin: 0 auto;
	width: 100%;
}
#contents_system .table_system tr {border-bottom: solid 1px var(--dark_gray);}
#contents_system .table_system tr th{
	background: var(--dark_gray);
	padding: 20px 10px;
}
#contents_system .table_system tr td {
	width: 50%;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
	font-size: clamp(20px,3vw,22px);
}
#contents_system .table_system tr td span{font-size: 0.7em;}
#contents_system .table_system tr td p {line-height: 1;}

/****************************************
セラピストページ & スケジュールページ
****************************************/
.schedule_nav {
    margin: 40px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 8px;
}
.schedule_nav li {width: calc((100% - 8px) / 2);}
.schedule_nav li:first-child{width: 100%;}
.schedule_nav li a {
	padding: 10px;
	display: block;
	font-size: 12px;
	background: var(--dark_gray);
	border: 1px solid var(--dark_gray);
	color: #fff;
	-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(--main_color);}
.schedule_nav li.active a:hover{opacity: 1;}

/* ナビゲーションボタン 上書き*/
.sch_nav_btn.swiper-button-prev, 
.sch_nav_btn.swiper-button-next {
	margin-top: 0;
	width: auto;
	height: 32px;
	background: var(--white);
	color: var(--dark_gray);
	transition: ease 0.3s;
}
.sch_nav_btn.swiper-button-prev:after, .sch_nav_btn.swiper-button-next:after {display: none;}
.sch_nav_btn.swiper-button-prev {
	top: 0;
	left: 0;
	padding: 0 16px 0 8px;
}
.sch_nav_btn.swiper-button-next {
	top: 0;
	right: 0;
	padding: 0 8px 0 16px;
}
.sch_nav_btn.swiper-button-prev.swiper-button-disabled,.sch_nav_btn.swiper-button-next.swiper-button-disabled {
 opacity: 0;
}
@media screen and (min-width: 768px) {
	.schedule_nav li,.schedule_nav li:first-child {width: calc((100% - 48px)/ 7 );}
}

/****************************************
スケジュールページ
****************************************/
#contents_schedule .schedule_box{text-align: left;}
#contents_schedule .schedule_box li{
	padding: 10px;
	background: #e0e0e0;
	grid-template-columns: 10% auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: -ms-grid;
	display: grid;
	margin-bottom: 20px;
}
#contents_schedule .schedule_box .name{
	width: 100%;
	font-size: 15px;
}
#contents_schedule .schedule_box table{
	width: 100%;
	height: 80px;
	font-size: 10px;
	text-align: center;
}
#contents_schedule .schedule_box .img_box{
	width: 100%;
    padding-right: 20px;
}
#contents_schedule .schedule_box .img_box img{max-width: 100%;}
@media screen and (max-width: 768px) {
	#contents_schedule .schedule_box li{grid-template-columns: auto;}
	#contents_schedule .schedule_box .img_box{
        width: 50%;
        padding-right: 0px;
        margin: 0 auto 10px;
	}
}

/****************************************
プロフィールページ
****************************************/
#contents_profile .profile_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;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
	overflow: hidden;
	border: 2px solid var(--black);
    border-image: linear-gradient(135deg, var(--sub_color) 0%, #B59841 50%, var(--sub_color) 100%) 2;
}
#contents_profile .profile_box_left .cast_thumb {
    display: flex;
    max-width: 200px;
    width: 60px;
    height: 90px;
    object-fit: cover;
    justify-content: center;
    margin: 0 auto;
}
#contents_profile .profile_box_left .cast_thumb a {margin-right: 4px;}
#contents_profile .profile_box_left .img_box .icon_box{
    position: absolute;
    bottom: 6px;
    right: 6px;
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
    gap: 4px;
    width: calc(100% - 20px);
}
#contents_profile .profile_box_left .img_box .icon_box img{
	width: 40px;
    margin: 0 0 0 4px;
}
#contents_profile .profile_box_left .img_box .icon_new {
    width: 80px;
    position: absolute;
    top: -2px;
    left: -2px;
}
.profile_box_right .name {
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.4;
}
/*ランク・指名料金*/
.profile_box_right .icon{
	max-width: 320px;
	display:flex;
	gap: 0 6px;
    margin: 0 auto;
    justify-content: center;
}
.profile_box_right .icon .icon_check{
	width: calc(100% / 2);
}
.profile_box_right .icon img {
    width: 100%;
}

/*状態アイコン*/
.profile_box_right .check_item{
	max-width: 320px;
	margin-bottom: 40px;
}
/*サムネ*/
#contents_profile .img_box > img.thum{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profile_box_schedule{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;
}

/*サブタイトル*/
#contents_profile .subtitle {
	position: relative;
	font-size: clamp(18px, 2vw, 20px);
	margin-bottom: 10px;
	padding-bottom: 10px;
	padding-top: 26px;
	line-height: 1.4;
	text-align: center;
	color: var(--main_color);
	border-bottom: 1px solid var(--dark_gray);
}
#contents_profile .subtitle::before {
	display: block;
	content: "";
	width: 60px;
	height: 20px;
	background: url(../images/title_deco_gold.svg) center / cover no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

/* プロフィールページ　スケジュール */
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: flex;
	box-sizing: border-box;
	border: 1px solid var(--gray);
	margin: 40px 0 0;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	flex-grow: 1;
	background: var(--black);
}
.profile_box_schedule .profile_sch_box div:not(:first-child).profile_sch_variable {border-left: 1px solid var(--gray);}
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_date,
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_check{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 10px 12px;
}
.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;
	background: var(--dark_gray);
	color: var(--white);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {padding: 5px;}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .icon_shop_chart {width: 100%;}
@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 div:not(:first-child).profile_sch_variable {border-left: 0;}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
		flex-basis: 40%;
		border-left: none;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
		flex-basis: 60%;
		border-left: 0;
	}
	.profile_box_schedule .profile_sch_box div:not(:last-child).profile_sch_variable .profile_sch_date,
	.profile_box_schedule .profile_sch_box div:not(:last-child).profile_sch_variable .profile_sch_check{
		border-bottom: 1px solid var(--gray);
	}
}

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

/****************************************
リクルートページ
****************************************/

/****************************************
コンタクトページ
****************************************/

/****************************************
WEB予約ページ
****************************************/

/****************************************
アンケートページ
****************************************/

/****************************************
アクセスページ
****************************************/

/****************************************
エラーページ
****************************************/
