@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 (共通スタイル)

****************************************/
body {
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
	color: #3e4349;
	background: var(--color-white);
	/* 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;
	/* font-family: "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	line-height: 1.8;/* 変更 */
	overflow-x: hidden;
}
@keyframes fadeIn {
	0% { opacity: 0.01;}
	100% { opacity: 1;}
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0.01;}
	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;
	}
}

/* 変数 */
:root {
	--color-main1: #9EE5E4;
	--color-main2: #66D1CF;
	--color-main3: #2882AE;
	--color-gold1: #EEE2B6;
	--color-gold2: #F9F6EA;

	--color-black: #464B4B;
	--color-white: #FEFEFE;
	--color-gray: #E0E0E0;
	--color-red: #f56b8e;

	--color-txt1: #46C3C1;

	--bg-color1: #F2FAFB;

  --filter-main1: invert(93%) sepia(17%) saturate(635%) hue-rotate(121deg) brightness(91%) contrast(97%);
  --filter-main2: invert(67%) sepia(64%) saturate(288%) hue-rotate(130deg) brightness(99%) contrast(89%);
	--filter-white: invert(98%) sepia(8%) saturate(7%) hue-rotate(212deg) brightness(100%) contrast(103%);
  --filter-txt1: invert(67%) sepia(66%) saturate(366%) hue-rotate(130deg) brightness(88%) contrast(89%);

	--font-family1: "Cormorant Infant", Garamond , "Times New Roman", serif;
}

.inner {
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
}
.inner1200{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}
.inner640{
	width: 90%;
	max-width: 640px;
	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;
}
h1{
	font-size: 11px;
}
h2 {
	margin-bottom: 10px;
}
/*
h3{
	text-align: left;
	font-weight: 700;
	font-size: 16px;
	background: #fff;
	padding-left: 10px;
	border-left: 4px solid #999;
	margin-bottom: 10px;
}
*/

/* フォーカスイン*/
.focusin {
	opacity: 0;
	transform : translate(0, 80px);
	transition : all 1.2s;
}
.focusin.on {
	opacity : 1;
	transform : translate(0, 0);
}
/* 左から */
.fadein-left{
	opacity: 0;
	transform : translate(-80px, 0);
	transition : all 1.2s;
}
.fadein-left.on{
	opacity : 1;
	transform : translate(0, 0);
}
/* 右から */
.fadein-right{
	opacity: 0;
	transform : translate(80px, 0);
	transition : all 1.2s;
}
.fadein-right.on{
	opacity : 1;
	transform : translate(0, 0);
}

/*********** 文字色 ***********/
.atten_01, .atten_01 a{color: var(--color-red);}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #0086c7;}
.atten_04, .atten_04 a{color: var(--color-red);}

/*********** 背景色 ***********/
.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_64{margin-bottom: 64px;}
.mb_80{margin-bottom: 80px;}

.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_40{margin-top: 40px;}
.mt_64{margin-top: 64px;}
.mt_80{margin-top: 80px;}

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

/*********** スクリーンリーダー用 ***********/
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/*********** リンク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.7;
}

/*********** table設定 ***********/
/*table01*/
.table_01 {
	width: 100%;
	border-spacing: 0;
	text-align: left;
}
.table_01 th,
.table_01 td {
	/* padding: 0.5em;
	border: 1px solid var(--color-white); */
	padding: 16px 8px;
	border-bottom: 1px solid var(--color-gray);
	vertical-align: middle;
}
.table_01 th {
	width: 30%;
	/* background: var(--color-main2);
	color: var(--color-white); */
	color: var(--color-txt1);
	text-align: center;
}
.table_01 td {
}
@media screen and (max-width: 520px) {
	.table_01 th, .table_01 td {
		display: block;
		width: 100%;
		padding: 0 4px 8px;
	}
	.table_01 th {
		text-align: left;
		padding-top: 16px;
		border: none;
	}
}

/*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: min(100%, 560px);
	margin-inline: auto;
	margin-bottom: 40px;
}
.table_form th,
.table_form td{
	display: block;
	width: 100%;
	padding: 0 4px 8px;
	text-align: left;
}
.table_form th {
	padding-top: 16px;
	border: none;
	color: var(--color-txt1);
	line-height: 1.2;
}

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

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

/*********** ボタン設定 ***********/
.btn_area {
	margin-top: 64px;
	margin-inline: auto;
}
.btn {
  display: block;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  padding: 0.75em;
  background: var(--color-main2);
  color: var(--color-white);
  text-align: center;
  transition: 0.4s ease-in-out;
}
.btn:hover {
	color: var(--color-white);
}
.btn.more {
	position: relative;
	top: -3px;
	left: -3px;
}
.btn.more::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	top: 6px;
	left: 6px;
	border: 1px solid var(--color-main2);
  transition: 0.4s ease-in-out;
}
.btn.more:hover {
	top: 0;
	left: 0;
}
.btn.more:hover::after {
	top: 0;
	left: 0;
}

/* 求人ページ応募方法のボタン */
.btn_recruit {
	display: flex;
	gap: 8px;
	flex-direction: column;
	flex-wrap: wrap;
	margin-top: 10px;
}
.btn_recruit a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 56px;
	padding: 10px;
	color: var(--color-white);
	background: var(--color-main2);
}
.btn_recruit img {
	width: auto;
	height: 16px;
	filter: var(--filter-white);
}
.btn_recruit .btn_tel {
}
.btn_recruit .btn_line {
	background: #00c300;
}
.btn_recruit .btn_entry {
	background: var(--color-main3);
}

/* フォームのボタン */
.btn_form {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}
input[type="submit"],
input[type="button"] {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 260px;
	height: 56px;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}
.btn_form .btn_send {
	background: var(--color-main2);
	color: var(--color-white);
}
.btn_form input[type="button"].btn_back {
	border: 1px solid;
	color: var(--color-txt1);
	background: var(--color-white);
}
.btn_form .btn_reset {
	padding: 0;
	background: none;
	border: none;
	border-bottom: 1px solid #aaa;
	color: #aaa;
	cursor: pointer;
	font-size: 0.85rem;
}

/*********** スライダー設定 ***********/
.swiper{
	padding-bottom: 40px;
}
/* ページネーション上書き */
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets{
  bottom: 0;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px;
}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 4px;
	background: var(--color-white);
  border: 1px solid var(--color-main2);
  border-radius: 0;
	rotate: 45deg;
	opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--color-main2);
}

/*********** ページネーション設定 ***********/
.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 64px;
}
.pagination li a {
  display: flex;
	justify-content: center;
	align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
	border: 1px solid var(--color-txt1);
	background: var(--white);
	color: var(--color-txt1);
}
.pagination li.active a {
  background: var(--color-main2);
	color: var(--color-white);
}
.pagination .btn {
	position: relative;
	width: 100px;
	padding: 0.5em;
	margin: 0;
}
.pagination .btn::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 12px;
	height: 10px;
	background: url(../images/icon_arrow.svg) center center / contain no-repeat;
	filter: var(--filter-white);
}
.pagination .btn.next::after {
	right: 10px;
}
.pagination .btn.prev::after {
	left: 10px;
	rotate: 180deg;
}

/*********** 言語選択プルダウン ***********/
/* 言語選択プルダウン（日本語ページ） */
.select_lang_wrap {
	display: block;
	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 {
	width: 100%;
	border: 1px solid var(--color-gray);
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 1em;
	vertical-align: baseline;
	font-size: 0.875rem;
}
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: 80px;
}
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(--color-main3);
}
form .form_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.select_wrap_flex,
.label_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
form :is(.time, .day) select {
	width: 100px;
	margin-right: 4px;
}
.select_wrap select {
	background: url('../images/icon_arrow_gray.svg') right 8px center no-repeat,
							#fff;
	background-size: 13px 8px;
}
form input::placeholder,
form textarea::placeholder {
	color: #bbb;
}
@media screen and (max-width: 640px) {
	form input[type="text"],
	form input[type="email"],
	form textarea,
	form select {
		font-size: 16px;
		padding: 0.75em;
	}
	form .form_list {
		grid-template-columns: 1fr;
	}
}
.icon_required {
	display: inline-block;
	margin-right: 5px;
	padding: 4px;
	font-size: 0.75em;
	line-height: 1;
	color: #fff;
	background: var(--color-red);
}

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

.swiper:has(.cast_box){
	padding-bottom: 48px;
}
.cast_box .cast_box_list,
.cast_box .cast_box_lis > a{
	position: relative;
}
.cast_box .cast_box_list > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 5px;
	background: var(--color-white);
}
/* ホバー効果 */
.cast_box .cast_box_list::before,
.cast_box .cast_box_list::after,
.cast_box .cast_box_list > a::before,
.cast_box .cast_box_list > a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: var(--color-main1);
	transition: all 0.4s ease;
}
.cast_box .cast_box_list > a::before,
.cast_box .cast_box_list > a::after {
	top: auto;
	left: auto;
	bottom: 0;
	right: 0;
}
.cast_box .cast_box_list::before,
.cast_box .cast_box_list > a::before {
	width: 1px;
	height: 0;
	/* height: 100%; */
}
.cast_box .cast_box_list::after,
.cast_box .cast_box_list > a::after {
	width: 0;
	/* width: 100%; */
	height: 1px;
}
.cast_box .cast_box_list:hover::before,
.cast_box .cast_box_list:hover > a::before {
	height: 100%;
}
.cast_box .cast_box_list:hover::after,
.cast_box .cast_box_list:hover > a::after {
	width: 100%;
}
/* ホバー効果ここまで */

.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	position: relative;
}
.cast_box .cast_box_list .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cast_box .cast_box_list .icon_new {
	width: 56px;
	position: absolute;
	top: 0;
	left: 0;
}
.cast_box .cast_box_list .txt_box {
	font-size: clamp(0.9rem, 2vw, 1rem);
	padding: 5%;
	line-height: 1.5;
}
.cast_box .cast_box_list .size span {
	color: var(--color-txt1);
}
/* アイコン */
.cast_box .cast_box_list .icon_box {
	position: absolute;
	bottom: 5px;
	right: 5px;
	display: flex;
	justify-content: center;
	gap: 4%;
}
.cast_box .cast_box_list .icon_box img{
	width: clamp(30px, 4vw, 36px);
}

.cast_box .cast_box_list .txt_box .time {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--color-gold1);
}
.cast_box .cast_box_list .txt_box .sch_info{
	background: #000;
	color: #fff;
	padding: 4px;
}

@media screen and (max-width: 640px){
	section:not(#section_schedule_today, #section_covergirl, #section_newface) .cast_box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.cast_box .cast_box_list .icon_new{
		width: 50px;
	}
}


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

headerヘッダー設定

****************************************/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px min(3%, 20px);
	background:rgba(255, 255, 255, 0.6);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
header h1.logo img {
	max-width: 120px;
}

/*グローバルナビ*/
header nav.pc ul {
	display: flex;
	gap: 1.5em;
	font-size: clamp(14px, 1.6vw, 16px);
}
header nav.pc ul li a {
	display: block;
	font-family: var(--font-family1);
	letter-spacing: 0.05em;
	transition: all 0.6s ease;
}
header nav.pc ul li a:hover {
	color: var(--color-txt1);
}

/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
/*ハンバーガーメニュー ボタン*/
.btn_toggle {
	background: transparent;
	border: none;
	padding: 0;
	position: fixed;
	top: 12px;
	right: 10px;
	display: block;
	width: 40px;
	height: 40px;
	z-index: 999;
}
.btn_toggle:hover{
	cursor: pointer;
}
.btn_toggle:before,
.btn_toggle:after{
	content: "";
	position: absolute;
	left: 4px;
	width: 32px;
	height: 1px;
	background: var(--color-main2);
	transition: all 0.4s ease;
}
.btn_toggle:before{
	top: 4px;
}
.btn_toggle:after{
	top: 16px;
}
.btn_toggle span {
	position: absolute;
	bottom: 2px;
	left: 0;
	right: 0;
	font-family: var(--font-family1);
	color: var(--color-black);
}
#btn_open.active:before{
	transform: rotate(30deg);
	top: 10px;
}
#btn_open.active:after{
	transform: rotate(-30deg);
	top: 10px;
}

/*メニュー内設定*/
#sp_nav{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 100px 6% 20px;
	background: var(--color-white);
	transform: translateX(100%);
	transition: transform 0.6s ease-in-out;
	pointer-events: none;
}
#sp_nav.open{
	transform: translateX(0);
	pointer-events: auto;
}
#sp_nav .inner {
	width: min(100%, 360px);
	margin-inline: auto;
	opacity: 0;
	transition: opacity 1s ease;
}
#sp_nav.open .inner{
	opacity: 1;
	transition-delay: 0.3s;
}
.nav_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	--gap: 16px;
	gap: var(--gap);
}
.nav_menu li {
	width: calc((100% - var(--gap)*2) / 3);
}
.nav_menu a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 8px;
	font-size: 20px;
	font-family: var(--font-family1);
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.nav_menu a span {
	font-size: 0.5em;
}

/* 電話番号&営業時間 */
.shop_info_box a.btn_nav_tel {
	display: inline-block;
	padding: 0.5em 2em;
	background: var(--color-main2);
	font-size: 1.2rem;
	color: #fff;
}
.shop_info_box .shop_open span:not(.reception){
	color: var(--color-txt1);
}

/* アイコン */
.shop_icon_box{
	display: flex;
	justify-content: center;
}
.shop_icon_box img {
	width: 40px;
}

/* ヘッドライン */
#headline {
	position: relative;
	margin: 64px 0;
}
#headline .swiper{
	padding: 1em 0;
	text-align: center;
	border-top: 1px solid var(--color-main1);
	border-bottom: 1px solid var(--color-main1);
	font-size: clamp(0.75rem, 1.4vw, 0.85rem);
}
#headline:before {
	content: '';
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: 200px;
	height: 36px;
	background: url(../images/deco_headline.svg) center / cover no-repeat;
	filter: var(--filter-main1);
}

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

footerフッター設定

****************************************/
footer {
	display: flex;
	flex-direction: column;
	gap: 40px;
	background: var(--color-white);
	padding-top: 64px;
	border-top: 1px solid var(--color-main1);
}
footer .logo {
	width: 240px;
	margin-inline: auto;
}
/* テキストメニュー */
footer .nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	--gap: 1.5rem;
	gap: var(--gap);
	margin-inline: auto;
}
footer .nav li a {
	font-family: var(--font-family1);
	letter-spacing: 0.05em;
	transition: all 0.6s ease;
}
footer .nav li a:hover{
	color: var(--color-txt1);
}

/* コピーライト＆Panda */
.copyright {
	font-size: 0.8rem;
}
.footer_link {
	padding: 5px 0;
	background: var(--color-main2);
	text-align: center;
	font-size: 0.8rem;
	color: #fff;
}
.footer_link a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #fff;
}

/* SP用追従ボタン */
.footer_bottom_btn ul {
	position: fixed;
	bottom: 0;
	z-index: 10;
	display: flex;
	width: 100%;
	border-top: 1px solid var(--color-main1);
	background: var(--color-white);
}
.footer_bottom_btn ul li {
	width: calc(100% / 3);
	border-right: 1px solid var(--color-main1);
}
.footer_bottom_btn ul li:last-of-type {
	border: none;
}
.footer_bottom_btn li a {
	display: grid;
	justify-items: center;
	gap: 4px;
	padding: 12px 0 8px;
	color: var(--color-txt1);
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.footer_bottom_btn li img {
	width: auto;
	height: 20px;
	filter: var(--filter-main2);
}

@media screen and (max-width: 640px) {
	footer {
		padding-bottom: 66px;
	}
	footer .nav{
		--gap: 1rem;
		width: 80%;
	}
	footer .nav li {
		width: calc((100% - var(--gap)*2) / 3);
	}
}
@media screen and (min-width: 640px) {
	.footer_bottom_btn {
		display: none !important;
	}
}

/* フリースペース */
.free_link_box img {
	margin-right: 10px;
	margin-bottom: 10px;
	height: 100% !important;
	max-width: 100% !important;
}
/* リンクバナー */
.link_box_wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.list_link_box {
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	width: min(100%, 800px);
	margin-inline: auto;
}
.list_link_box img {
	width: 100%;
	height: auto;
}


/****************************************
mainvisualメインビジュアル
****************************************/
#mainvisual{
	width: 100%;
	height: calc(100svh - 60px);
	position: relative;
	padding-top: 60px;
}
#mainvisual .swiper{
	position: absolute;
	right: 0;
	width: calc(100vw - 100px);
	height: calc(100vh - 140px);
	width: 92%;
	height: 85%;
	padding-bottom: 0;
}
#mainvisual:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 90%;
	height: 85%;
	background: var(--color-main1);
}
#mainvisual .swiper-wrapper .swiper-slide {
	position: relative;
}
#mainvisual .mv_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainvisual .mv_logo {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	/* translate: 0 -50%; */
	width: min(60%, 320px);
	z-index: 10;
}
#mainvisual .mv_02 {
	object-position: 85% top;
}
#mainvisual .mv_txt02 {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: auto;
	height: 35svh;
	z-index: 10;
}
@media screen and (max-width: 1024px){
	#mainvisual .swiper {
		width: 90%;
	}
	#mainvisual .mv_txt02 {
		top: 15%;
		left: 22%;
		translate: 0 0;
	}	
}


/* パンくずリスト */
.breadcrumbs {
	padding-top: 1rem;
	text-align: left;
}
.breadcrumbs ol li {
	font-size: 12px;
	display: inline-block;
}
.breadcrumbs ol li:before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 8px;
	background: url(../images/icon_arrow.svg) center center / contain no-repeat;
	filter: var(--filter-txt1);
	margin: 0 4px 1px;
}
.breadcrumbs ol li:first-child:before {
	display: none;
}
.breadcrumbs ol li a {
	color: var(--color-black);
}


/******************************
認証ページ
******************************/
#entry_body{
	background: transparent;
	background: url(../images/bg_entry_box.png) 0 0 no-repeat #EDECE7;
	background-size: 100%;
}
#entry_body header{
	background: none;
	box-shadow: none;
	position: unset;
	height: auto;
}
#entry_body #contents{
	padding-top: 80px;
}
#entry_body #contents .logo{
	margin-bottom: 50px;
}
#entry_body #contents .info_box,
#entry_body #contents .info_box a {
	width: 100%;
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 800;
}
#entry_body #contents .info_box span{
	font-size: 1.5em;
	color: #6b7387;
}
.btn_enter,
.btn_exit {
	width: 300px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	border-radius: 50px;
	background: #3b3c40;
	color: #fff;
	font-size: 16px;
	margin: 0 auto 30px;
	text-transform: uppercase;
}
#entry_body h2{
	font-size: 18px;
	font-weight: 700;
}
#entry_body .list_link_box img,
#contents_link .list_link_box img {
    width: auto;
    max-width: 100%;
    height: auto;
}

/******************************
トップページ
******************************/
/*トップページ共通*/
section h2{
	margin-bottom: 64px;
	font-family: var(--font-family1);
	font-size: 2rem;
	letter-spacing: 0.05em;
	line-height: 1;
}
section h2 span{
	font-size: 16px;
	color: #aaa;
	display: block;
	line-height: 1.8;
}
#section_covergirl,
#section_movie,
#section_blog,
#section_topics,
#section_concept,
#section_event,
#section_schedule_today,
#section_top_ranking_01,
#section_newface{
	padding: 80px 0;
}
@media screen and (max-width: 640px){
	section h2{
		margin-bottom: 40px;
	}
}

/*トップページ　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_event {
	/* overflow-x: hidden; */
}
#section_event,
#section_event .inner{
	position: relative;
}
#section_event:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 70%;
	background: url(../images/bg_texture01.jpg) center / cover no-repeat;
	clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
#section_event h2 {
	position: absolute;
	top: 0;
	left: 0;
	translate: -2% -82%;
	color: var(--color-gold2);
	font-size: 10em;
}
#section_event .swiper {
	max-width: 640px;
	margin-inline: auto;
}
#section_event img{
	width: 100%;
	max-width: 640px;
}
@media screen and (max-width: 640px){
	#section_event h2 {
		/* top: -34.5%;
		left: -0.2em; */
		transform: translateX(-7%);
		font-size: 30vw;
	}
}
@media screen and (min-width: 641px){
	#section_event {
		padding-top: 120px;
	}
}

/* 新着情報 */
#section_topics{
	background: var(--bg-color1);
}
#section_topics #info_box {
	width: min(100%, 640px);
	margin-inline: auto;
}
#section_topics #info_box tbody tr td{
	border: 1px solid var(--color-gray);
}
#section_topics #info_box {
	text-align: left;
}
#section_topics #info_box h3{
}
#section_topics #info_box p img{
	max-width: 100%;
}
#section_topics #info_box strong {
	font-weight: bold;
}

/* 新着情報 */
.toggle_title {
	position: relative;
	padding: 8px;
	padding-right: 40px;
	border-bottom: 1px solid var(--color-gray);
	cursor: pointer;
	text-align: left;
	line-height: 1.4;
}
.toggle_btn {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}
.article_list .selected .toggle_btn:after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: var(--color-main1) 2px solid;
	border-right: var(--color-main1) 2px solid;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position:absolute;
	top: 8px;
	margin: auto;
}
.article_list .toggle_btn:after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: var(--color-main1) 2px solid;
	border-right: var(--color-main1) 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_title time{
	font-size: 0.85rem;
	color: var(--color-txt1);
}
.article_list dd {
	display: none;
	padding: 16px;
	font-size: 0.9rem;
}
.article_list dd:first-of-type {
	display: block;
}
.article_list dd img {
	max-width: 100% !important;
	height: auto !important;
}
.article_list dd a {
	color: var(--color-txt1);
	text-decoration: underline;
}

/* 新人情報 */
#section_newface {
	position: relative;
	padding: 140px 0 40px;
}
#section_newface:before {
	content: '';
	position: absolute;
	top: 80px;
	left: 0;
	width: 65%;
	height: 55%;
	aspect-ratio: 4 / 3;
	background: url(../images/bg_texture02.jpg) center / cover no-repeat;
	mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
	z-index: -1;
}
#section_newface h2 {
	text-align: left;
}
@media screen and (max-width: 640px){
	#section_newface {
		padding: 120px 0 20px;
	}
	#section_newface:before {
		width: 80%;
	}
}
@media screen and (min-width: 641px){
	#section_newface .swiper{
		width: 85%;
		margin-left: 0;
	}
}

/* カバーガール */
#section_covergirl {
	position: relative;
	overflow-x: hidden;
	padding-top: 120px;
}
#section_covergirl:before {
	content: '';
	position: absolute;
	top: 60px;
	right: 0;
	width: 65%;
	height: 55%;
	aspect-ratio: 4 / 3;
	background: url(../images/bg_texture03.jpg) center / cover no-repeat;
	mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
	z-index: -1;
}
#section_covergirl h2 {
	text-align: right;
}
@media screen and (max-width: 640px){
	#section_covergirl {
		padding-top: 100px;
	}
	#section_covergirl:before {
		width: 80%;
	}
}
@media screen and (min-width: 641px){
	#section_covergirl .swiper{
		width: 85%;
		margin-right: 0;
	}
}

/* ムービー */
#section_movie {
	overflow-x: hidden;
}
#section_movie .inner800 { position: relative;}
#section_movie h2 {
	position: absolute;
	top: 0;
	right: 0;
	translate: 4% -82%;
	color: var(--color-gold2);
	font-size: 10em;
	z-index: -1;
}
@media screen and (max-width: 640px){
	#section_movie h2 {
		/* top: -45%;
		right: -0.25em; */
		transform: translateX(5%);
		font-size: 30vw;
	}
}
@media screen and (min-width: 641px){
	#section_movie {
		padding-top: 120px;
	}
}

/* 最下部画像 */
.top_footer_img {
	height: 280px;
	background: url(../images/bg_top_bottom.jpg) center / cover no-repeat;
}
@media screen and (max-width: 640px){
	.top_footer_img {
		height: 160px;
	}
}


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

英語ページ(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_topics,
#contents_system,
#contents_cast,
#contents_schedule,
#contents_profile,
#contents_access,
#contents_recruit,
#contents_entry,
#contents_impressions,
#contents_contact,
#contents_enquete,
#contents_reserve,
#contents_link,
#contents_err{
	padding: 64px 0 80px;
}
.subvisual{
	position: relative;
	width: 100%;
	height: 35vh;
	max-height: 280px;
	margin-top: 60px;
}
.subvisual > div{
	width: 80%;
	height: 70%;
}
.subvisual .sub_bg {
	margin-left: auto;
	margin-right: 0;
	background: url(../images/subvisual.jpg) right 20% center / cover no-repeat;
}
.subvisual .sub_title {
	position: absolute;
	bottom: 0;
	left: 0;
	display: grid;
	align-items: center;
	padding-left: 7%;
	background: var(--color-main1);
	text-align: left;
}
.subvisual h2 {
	font-size: 3.4rem;
	font-family: var(--font-family1);
	letter-spacing: 0.05em;
	color: var(--color-white);
	line-height: 1;
}
.subvisual h2 span{
	font-size: 12px;
}

/* 下層見出し */
.sub_h3 {
	margin-bottom: 0.8em;
	font-size: 1.8rem;
	font-family: var(--font-family1);
	color: var(--color-txt1);
	line-height: 1.2;
}
.sub_h3.deco {
	position: relative;
	padding-top: 32px;
}
.sub_h3.deco:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: 60px;
	height: 24px;
	background: url(../images/deco_h3.svg);
	filter: var(--filter-main1);
}


/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 1000px;
	margin: 0 auto 40px;
}
.schedule_nav li {
	width: calc((100% - 8px) / 2);
}
.schedule_nav li a {
	display: block;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid var(--color-txt1);
	background: var(--color-white);
	font-size: 0.85rem;
	color: var(--color-txt1);
	transition: 0.4s ease;
}
.schedule_nav li a:hover {
	opacity: 0.6;
}
.schedule_nav li.active a {
	background: var(--color-main2);
	color: var(--color-white);
}
.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: #fff;
    border: 1px solid #d8d8d8;
	color: #3c3c3c;
	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 .sub_h3 {
	letter-spacing: 0.05em;
}
#contents_profile .profile_box {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
#contents_profile .profile_box_right,
#contents_profile .profile_box_left {
	width: 40%;
}
#contents_profile .profile_box_left .img_box{
	width: 300px;
	aspect-ratio: 2 / 3;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#contents_profile .img_box .thum {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_profile .img_box .icon_new {
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
}
/* SNSアイコン */
.profile_box_left .icon_box {
	position: absolute;
	bottom: 5px;
	right: 5px;
	display: flex;
	justify-content: center;
	gap: 4%;
}
.profile_box_left .icon_box img{
	width: 48px;
}

#contents_profile .profile_box_right {
	width: calc(60% - 40px);
	word-break: break-word;
}
.profile_box_right .name {
	font-size: 1.5em;
}
.profile_box_right .name span{
	font-size: 1rem;
}
.profile_box_right .size span {
	color: var(--color-txt1);
}
.profile_box_right .short_comment {
	margin-top: 1rem;
	padding: 0.25em 0;
	border-top: 1px solid var(--color-gold1);
	border-bottom: 1px solid var(--color-gold1);
}
.profile_box_right video{
	width: 100%;
}

#contents_profile .sns_item_wrap {
	display: flex;
	justify-content: center;
	gap: 16px;
}

@media (max-width: 768px) {
	#contents_profile .profile_box {
		flex-direction: column;
	}
	#contents_profile .profile_box_left,
	#contents_profile .profile_box_right {
		width: 100%;
	}
	#contents_profile .sns_item_wrap {
		flex-direction: column;
		align-items: center;
	}
	
}
@media (max-width: 520px) {
	#contents_profile .profile_box_left .img_box {
		width: 100%;
	}
}

/* ↓↓ レスポンシブ用スケジュール
*  ブラウザで確認するときはmainタグのwidth:960pxを消して確認してください。
*/
.profile_box_schedule .profile_sch_wrap {
	padding-bottom: 0;
}
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: flex;
	box-sizing: border-box;
	border: 1px solid var(--color-main1);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	flex-grow: 1;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	border-left: 1px solid var(--color-main1);
	border-bottom: 1px solid var(--color-main1);
	background: var(--bg-color1);
	color: var(--color-txt1);
	line-height: 1.2;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	padding: 5px;
	border-left: 1px solid var(--color-main1);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .icon_shop_chart {
	padding: 5px 20px;
}
@media (min-width: 768px) {
	.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;
	}
}
@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 var(--color-main1);
	}
	.profile_box_schedule .profile_sch_box div:last-of-type.profile_sch_variable .profile_sch_date,
	.profile_box_schedule .profile_sch_box div:last-of-type.profile_sch_variable .profile_sch_check{
		border-bottom: none;
	}
}
/* ↑↑ ここまで レスポンシブ用スケジュール */


/****************************************
料金システムページ
****************************************/
#contents_system .table_system {
	width: min(100%, 640px);
	margin-inline: auto;
	font-size: 1.4rem;
}
#contents_system .table_system tr {
	border-bottom: 1px solid var(--color-gray);
}
#contents_system .table_system td {
	padding: 16px 0;
	text-align: center;
}
#contents_system .table_system.col_2 :is(th, td) {
	width: 50%;
}

#contents_system .note ul li {
	position: relative;
	padding-left: 1em;
	margin-bottom: 0.5em;
}
#contents_system .note ul li::before {
	content: '・';
	position: absolute;
	left: 0;
}

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


/****************************************
新着情報ページ
****************************************/
#contents_topics .inner {
	max-width: 640px;
}
#contents_topics article {
	text-align: left;
}
#contents_topics article:not(:last-of-type) {
	margin-bottom: 24px;
}
#contents_topics article .topics_title {
	padding: 8px;
	border-bottom: 1px solid var(--color-gray);
	line-height: 1.4;
}
#contents_topics article time {
	font-size: 0.85rem;
	color: var(--color-txt1);
}
#contents_topics article .topics_body {
	padding: 16px;
	font-size: 0.9rem;
}
#contents_topics article img {
	max-width: 100% !important;
	height: auto !important;
}
#contents_topics article a {
	color: var(--color-txt1);
	text-decoration: underline;
}


/****************************************
求人情報ページ
****************************************/
#contents_recruit + #contents_entry {
	padding-top: 0;
	scroll-margin-top: 80px;
}
#contents_entry a {
	color: var(--color-txt1);
}


/****************************************
お問合せページ
****************************************/


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


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


/****************************************
404ページ
****************************************/
#contents_err .sub_h3 {
	font-size: clamp(2.4rem, 6vw, 3rem);
}
#contents_err .sub_h3 span {
	font-size: 0.85rem;
}

