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

****************************************/
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(--txt_color);
	font-size: 14px;
	font-weight: 400;
	font-family: "Gilda Display", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	line-height: 1.8;
	letter-spacing: 0.1em;
    text-indent: 0.1em;
    background: var(--white);
}
@keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}
#wrapper {/*	 margin-top: 80px;*/}
#wrapper::before{
	content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg_01.webp);
    background-size: cover;
    z-index: -1;
    background-position: 90%;
}

@media screen and (min-width: 900px) {
	.sp{display: none !important;}
}
@media screen and (max-width: 901px) {
	.pc{display: none !important;}
}
@media screen and (min-width: 768px) {
	.sp_768{display: none !important;}
}
@media screen and (max-width: 769px) {
	.pc_768{display: none !important;}
}

.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner800{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.sub_page .inner,.sub_page .inner800 {padding: 40px 16px;}
@media screen and (min-width: 768px) {
	.sub_page .inner,.sub_page .inner800 {padding: 80px 16px;}
}

[id] {scroll-margin-top: 100px;}

a{color: var(--txt_color);}
main{margin: 0 auto;max-width: 1920px;width: 100%;}
/*main.sub_page{margin: auto 0;}*/
img{max-width: 100%;height: auto;}

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

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

/*カーソル選択時の背景色*/
::selection {background: var(--main_color_2);}

/* 配色 共通 */
:root {
	--txt_color: #626081;
	--main_color_1: #FF7AA7;
	--main_color_2: #FFF0F7;
	--white: #fff;
	--gray: #C6C6C6;

	--grad_purple: linear-gradient(45deg,var(--main_color_1) 0%, var(--main_color_2) 100%);
	--grad_pink: linear-gradient(0deg,var(--main_color_1) 0%, var(--main_color_2) 100%);
	--grad_pink_90: linear-gradient(90deg,var(--main_color_1) 0%, var(--main_color_2) 100%);
	--grad_pink_btn: linear-gradient(90deg,var(--main_color_1) 0%, var(--main_color_2) 50%, var(--main_color_1) 100%);
}

/*文字色*/
.atten_01, .atten_01 a{color: #5189b6;}
.atten_02, .atten_02 a{color: #b65151;}
.tc_pp{color: var(--main_color_1);}
.tc_pp.marker {
    background: var(--main_color_2);
    padding: 5px 4px 2px;
}
.tc_pk{color: var(--main_color_1);}

/*マージン*/
.mt_0 { margin-top: 0px !important; }
.mt_5 { margin-top: 5px !important; }
.mt_10 { margin-top: 10px !important; }
.mt_20 { margin-top: 20px !important; }
.mt_30 { margin-top: 30px !important; }
.mt_40 { margin-top: 40px !important; }
.mt_60 { margin-top: 60px !important; }
.mt_80 { margin-top: 80px !important; }

.mb_0 { margin-bottom: 0px !important; }
.mb_5 { margin-bottom: 5px !important; }
.mb_10 { margin-bottom: 10px !important; }
.mb_20 { margin-bottom: 20px !important; }
.mb_30 { margin-bottom: 30px !important; }
.mb_40 { margin-bottom: 40px !important; }
.mb_60 { margin-bottom: 60px !important; }
.mb_80 { margin-bottom: 80px !important; }
.mb_120 { margin-bottom: 120px !important; }

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

/*フォントサイズ*/
.fs_ss{font-size: 0.8em;}
.fs_s{font-size: 0.9em;}
.fs_12em{font-size: 1.2em;}
.fs_15em{font-size: 1.5em;}

h3.title {
    margin-bottom: 10px;
    font-size: 1.2em;
}

/*リンクhoverアクション　hoverでopacity*/
.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.6;}

/*リンクhoverアクション　hoverでpink*/
.link_act_02{
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.link_act_02:hover{color: var(--main_color_1);}


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

table設定

****************************************/
/*table_01*/
.table_01 {
	width: 100%;
    text-align: left;
}
#contents_system .table_01 {font-size: 1.4em;}
.table_01 tr:not(:last-child){padding-bottom: 1px;}
.table_01 th, .table_01 td {
	padding: min(4%, 20px) 10px;
	width: 100%;
	display: block;
	text-align: center;
	line-height: normal;
}
.table_01 th {
    text-align: center;
	vertical-align: middle;
}
@media screen and (min-width: 520px) {
	.table_01 th, .table_01 td {align-items: stretch;}
	.table_01 th {
		width: 35%;
		vertical-align: middle;
	    justify-content: center;
	    flex-direction: column;
	}
	.table_01 td {width: 65%;text-align: center;}
}
/*50%*/
.table_01.table_half th,.table_01.table_half td {width: 50%;}
.table_01.table_half tr{display: flex;}
.table_01.table_half tr:not(:last-child){border-bottom: 1px solid #ddd;}
@media screen and (min-width: 520px) {
	.table_01.table_half th,.table_01.table_half td {width: 50%;}
}
/*table_02*/
.table_02 {
	width: 100%;
	text-align: left;
}
.table_02 th, .table_02 td {
	padding: 10px;
	margin-bottom:1px;
    width: 100%;
	display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}
.table_02 tr{display: block;}
.table_02 th {
	background: rgba(255, 122, 167, 0.8);
	color: #fff;
	vertical-align: middle;
}
.table_02 td {
	background: rgba(255, 255, 255, 0.6);
	display: block;
}
@media screen and (min-width: 520px) {
	.table_02 tr {display: flex;}
	.table_02 th {width: 40%;}
	.table_02 td {width: 60%;}
}
/*table_form*/
table{width: 100%;}
::placeholder {color: var(--gray);}
.table_form tr{
	padding: 14px 0 20px;
  	display: block;
  	border-bottom: 1px solid #ddd;
}
.table_form tr:last-child{
	border-bottom: 0;
	padding: 14px 0 0;
}
.table_form th,
.table_form td{
	width: 100%;
	display: block;
	text-align: left;
}
.confirm .table_form td{
	padding: 16px 10px;
	background: var(--main_color_2);
	min-height:50px;
	word-wrap: break-word;
  	white-space: normal;
}
.confirm .table_form tr.form_wide td{max-width: 190px;}
.table_form th{margin-bottom: 4px;}
.table_form .form_wide td input {max-width: 190px;}
@media screen and (min-width: 768px) {
	.table_form th,.table_form td{vertical-align: top;}
}


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

ボックス共通

****************************************/
/*二重ボックス*/
.border_outer{
	border: 8px solid var(--white);
	padding: 10px;
}
.border_inner{
	border: 2px solid var(--white);
	background: rgba(255, 255, 255, 0.5);
	padding: 30px;
}
@media screen and (min-width: 768px){
	.border_inner{padding: 40px;}
	#section_covergirl .border_inner{padding: 60px;}
}

/*ピンク線ボックス*/
.box_normal_line{
	border: 2px solid var(--white);
	padding: 30px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px){
	.box_normal_line{padding: 40px 40px 30px;}
}

/*ピンクボックス*/
.box_normal{
	background: var(--main_color_2);
	padding: 30px;
	border-radius: 20px;
}
@media screen and (min-width: 768px){
	.box_normal{padding: 40px 40px 30px;}
}


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

見出し共通

****************************************/
/* title_01 */
.title_01 {
	display: block;
	color: var(--txt_color);
	font-size: 12px;
	line-height: 1.4;
	margin-bottom: clamp(36px,4vw,40px);
	position: relative;
}
.title_01 span {
	display: block;
	font-size: clamp(28px,4vw,30px);
}
.title_01::before {
    content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--txt_color);
	border-radius: 2px;
}
.title_02{
	color: var(--white);
    background: var(--main_color_1);
    border: 1px solid var(--white);
    border-radius: 40px;
    font-size: 1.2em;
}
.striking_txt{
	font-size: 1.2em;
	background: rgba(255, 122, 167, 0.9);
	outline: 1px solid var(--white);
    outline-offset: -8px;
    padding: 20px;
    color: var(--white);
    line-height: normal;
}
@media screen and (min-width: 768px){
	.striking_txt{
	font-size: 1.2em;}
}


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

ボタン設定

****************************************/
.btn_more{
	display: inline-block;
	width: 250px;
	height: 50px;
	line-height: 46px;
	margin: 20px auto 0;
	background: var(--main_color_1) url(../images/icon_arrow_white.svg) no-repeat right 20px center / 6px auto;
	color: var(--white);
	border-radius: 50px;
	opacity: 1;
	transition: all 0.2s ease-out;
	position: relative;
	border: 1px solid var(--main_color_1);
	font-family: serif;
	cursor: pointer;
}
.btn_more:hover{
	background: var(--white) url(../images/icon_arrow_pink.svg) no-repeat right 20px center / 6px auto;
	color: var(--main_color_1);
	border: 1px solid var(--main_color_1);
}
@media screen and (min-width: 768px) {
	.btn_more{
		margin: 30px auto 0;
	}
}
/* 求人ページ応募方法のボタン */
.contents_box_recruit{
	display: grid;
    gap: 10px;
    width: 100%;
}
.contents_box_recruit a{
	text-align: center;
    text-transform: none;
}
.contents_box_recruit a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	color: var(--white);
	background: var(--txt_color);
	border: 2px solid var(--white);
	transition: all 0.2s ease-out;
}
.contents_box_recruit a:hover{
	color: var(--txt_color);
	background: var(--white);
	border: 1px solid var(--txt_color);
}
.contents_box_recruit a span {
	margin: 2px 5px 0 0;
}
/* フォームのボタン */
.btn_form {
	display: flex;
	gap: 5px;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
}
.btn_form input.btn_reset {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	border-radius: 50px;
	border: none;
	color: var(--txt_color);
	border:2px solid #efefef;
	cursor: pointer;
	margin: 20px auto 0;
	font-family: serif;
}
@media screen and (min-width: 768px) {
	.btn_form input.btn_reset {margin: 30px auto 0;}
}


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

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 {
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 10px;
	vertical-align: baseline;
	width: 100%;
	border: 1px solid var(--gray);
	border-radius: 20px;
	
}
form input[type="text"],form input[type="email"],form textarea {font-size: 16px;}
form select{
	width: 100%;
    max-width: 240px;
    background: var(--white);
}
form textarea {
	resize: vertical;
	min-height: 200px;
}
form .form_txt {margin-top: 5px;}
form input[type="text"].form_short {max-width: 80px;}
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: var(--main_color_1);
	color: var(--white);
}
form .form_list {
	display: grid;
	grid-template-columns: 1fr;
}
form input::placeholder,form textarea::placeholder {color: var(--gray);}
@media screen and (min-width: 768px) {
	form .form_list {grid-template-columns: repeat(2, 1fr);}
}
.icon_required {
	display: inline-block;
	font-size: 0.75em;
	padding: 4px 8px 3px;
	line-height: 1;
	border-radius: 20px;
	color: var(--white);
	background: var(--main_color_1);
}
.icon_bottom{
	width: auto;
    height: 12px;
    margin-bottom: 8px;
    transform: rotate(90deg);
}


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

セラピスト共通設定

****************************************/
section:not(#section_schedule_today,#section_covergirl) .cast_box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px min(4%, 30px);
}
#contents_ranking .cast_box{gap: 30px min(4%, 30px)!important;}
.cast_box .cast_box_list{position: relative;}
.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	position: relative;
	overflow: hidden;
}
/*セラピ画像　ホバーアクション*/
.cast_box .cast_box_list a .img_box img.img_cast{transition: 0.3s all;}
.cast_box .cast_box_list a:hover .img_box img.img_cast{
	transform: scale(1.1, 1.1);
    background: var(--white);
}
.cast_box .cast_box_list .img_box .img_cast,
.profile_box_left .img_box{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/*新人アイコン*/
.cast_box .cast_box_list .icon_new,
#contents_profile .icon_new{
	width: 50px;
	position: absolute;
    top: 0;
    left: 0;
}
section#section_covergirl .cast_box .cast_box_list .icon_new,section#contents_profile .icon_new{width: 60px;}
/* アイコン */
.cast_box .cast_box_list .icon_box,
#contents_profile .icon_box{
	position: absolute;
	bottom: 6px;
	right: 2px;
	display: flex;
    justify-content: center;
}
.cast_box .cast_box_list .icon_box img{
    width: 30px;
    margin: 0 4px;
}
section#section_covergirl .cast_box .cast_box_list .icon_box img,section#contents_profile .profile_box_left .icon_box img{width: 40px;}
section#section_covergirl .cast_box .cast_box_list .txt_box{
	font-size: 18px;
	margin-top: 6px;
}
.cast_box .cast_box_list .txt_box .name,
.cast_box .cast_box_list .txt_box .size{
	text-align: left;
	line-height: normal;
}
.cast_box .cast_box_list .txt_box .time{
	color: var(--txt_color);
	padding: 8px;
	background: var(--main_color_2);
	border-radius: 40px;
	line-height: normal;
}
section#section_covergirl .cast_box .cast_box_list .txt_box .time{background: var(--white);}
.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 .sch_info{
    background: #000;
    color: #fff;
    padding: 4px;
}
@media screen and (min-width: 768px){
	section:not(#section_schedule_today,#section_covergirl) .cast_box {grid-template-columns: repeat(4, minmax(0, 1fr));}
	.cast_box .cast_box_list .txt_box{font-size: 18px;}
	section#section_covergirl .cast_box .cast_box_list .txt_box{margin-top: 6px;}
	/*新人アイコン*/
	.cast_box .cast_box_list .icon_new{width: 60px;}
	/* アイコン */
	.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: 40px;}
}


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

headerヘッダー設定

****************************************/
header {
	width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.3s ease-out;
    justify-content: space-between;
    align-items: center;
    background: rgb(255 255 255 / 90%);
}
header .header_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
}
header .header_inner .logo{z-index: 100;}
header h1.logo img{max-width: 160px;margin-bottom: 10px}
@media screen and (min-width: 768px){
	header h1.logo img{margin-bottom: 0;}
}

/*グローバルナビ*/
header.show {background: rgb(from var(--white) r g b / 0.8);}
header nav.pc ul,
footer nav.pc ul{
	display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2px;
}
header nav.pc ul li,
footer nav.pc ul li{
	display: inline-block;
    vertical-align: top;
}
header nav.pc ul li a,
footer nav.pc ul li a{
	display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    position: relative;
    line-height: normal;
}
/*ハンバーガーメニュー*/
.btn_container {
	display: block;
	height: 60px;
	width: 60px;
	cursor: pointer;
	z-index: 100;
	transition: opacity .25s ease;
	text-align: center;
	text-align: -webkit-center;
	background: var(--main_color_1);
	padding-top: 16px;
	position: relative;
	border-radius: 0 0 0 20px;
}
.btn_container span {
	display: block;
	background: var(--white);
	border: none;
	height: 1px;
    width: 25px;
	transition: all .35s ease;
	cursor: pointer;
	position: relative;
}
.btn_container span.middle {top: 6px;}
.btn_container span.bottom {top: 12px;}
.btn_container.active .top {
	-webkit-transform: translateY(9px) translateX(0) rotate(45deg);
	transform: translateY(9px) translateX(0) rotate(45deg);
}
.btn_container.active .middle {opacity: 0;}
.btn_container.active .bottom {
	-webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
	transform: translateY(-9px) translateX(0) rotate(-45deg);
	top:16px;
}
.btn_container p{
	font-size: 9px;
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--white);
}
/*drawer inner*/
html:has(.drawer.open){overflow: hidden;}
.drawer {
	display: block;
	position: fixed;
	background: rgb(255 255 255 / 90%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
	padding: 40px 0;
	backdrop-filter: blur(10px);
}
.drawer.open {
	opacity: 1;
	visibility: visible;
}
.drawer .drawer_inner{
	overflow-y: hidden;
	height: 100%;
}
/*読み込みアニメーション*/
.drawer ul li {
	position: relative;
	opacity: 0;
	left: 20%;
}
.drawer ul li.on {animation: fadeInRight 0.6s ease forwards;}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
/*メニュー内設定*/
.drawer .drawer_menu{
	overflow: hidden;
	width: 90%;
	display: grid;
	place-items: center;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.drawer ul {
	text-align: left;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0 16px;
    max-width: 400px;
    margin: 0 auto;
}
.drawer ul li {
	display: block;
	position: relative;
	opacity: 0;
	width: calc((100% / 2) - 8px);
    line-height: normal;
    border-bottom: 1px solid var(--gray);
}
.drawer ul li:last-child{
	width: 100%;
    border-bottom: 0;
    margin-top: 10px;
}
.drawer ul li a{
	display: inline-block;
	display: block;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
	padding: 14px 0 10px;
	position: relative;
}
.drawer ul li a::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 6px;
    height: 20px;
    transform: translateY(-50%);
    background: url(../images/icon_arrow_black.svg) no-repeat center / contain;
    transition: all 0.2s ease-out;
}
/*店舗情報*/
.drawer #info_box,footer #info_box{font-size: 16px;}
.drawer #info_box{text-align: center;}
.drawer #info_box span,footer #info_box span{text-transform: uppercase;}
.drawer #info_box .info_tel,
.drawer #info_box .info_open{
	width: 100%;
    display: inline-block;
    border-bottom: none;
    text-align: center;
    border: 0;
}
/* アイコン */
.drawer .icon_box{margin: 0 auto;}
.drawer .icon_box img,
footer .icon_box img {
    width: 30px;
}


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

追尾ボタン

****************************************/
#bottom_nav {
	position: fixed;
    right: 0;
    left: 0;
    bottom: 8px;
    width: 96%;
    margin: 0 auto;
    display: block;
    z-index: 99;
    font-size: 14px;
    border-radius: 50px;
    background: var(--white);
}
#bottom_nav div{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 12px 0 10px;
}
#bottom_nav a {
	display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main_color_1);
    line-height: 22px;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0;
}
#bottom_nav a:not(:last-child){border-right: 1px solid var(--main_color_1);}
#bottom_nav a img {
    width: auto;
    height: 14px;
}


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

フッター

****************************************/
footer {
	position: relative;
  	z-index: 0;
	padding: 50px 35px 100px;
	background: var(--txt_color);
	color: var(--white);
	border-radius: 0 60px 0 0;
}
/*footer #info_box{
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--white);
}*/
footer.mask-top {padding: 120px 20px 120px;}
footer a{color: var(--white);}
footer a;hover{color: var(--main_color_1);}
footer .logo{margin-bottom: 40px;}
footer .logo img{max-width: 200px;}
footer aside{
	text-align: center;
	margin-bottom: 40px;
}

/* テキストメニュー */
footer nav{margin: 40px auto;}
footer nav ul li a{
	text-transform: uppercase;
	color: var(--white);
    line-height: normal;
    display: block;
    position: relative;
    transition: all .4s;
}
footer nav ul{
	display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px min(2%, 30px);
}
nav li span{font-size: 9px;}
@media screen and (min-width: 768px){
	footer {border-radius: 0 80px 0 0;}
	footer.mask-top {padding: 140px 20px 80px;}
	footer nav ul{grid-template-columns: repeat(5, minmax(0, 1fr));}
	nav li span{font-size: 10px;}
	footer .logo img{max-width: 280px;}
}
.footer_link {
	font-size: 12px;
	color: var(--white);
}
.footer_link a {
	color: var(--white);
	text-decoration: underline;
	text-decoration-color: var(--txt_color);
}
/* フリースペース */
.free_link_box{text-align: left;}

/* リンクバナー */
.list_link_box {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: min(100%, 840px);
    margin: 0 auto;
    text-align: center;
    font-size: 11px;
    gap: 10px;
}
.list_link_box img {
  	width: 100%;
	height: auto;
}
footer .icon_box{
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--white);
}
@media screen and (min-width: 768px){
	footer {padding: 60px 20px;}
	.list_link_box img {width: auto;}
}


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

メインビジュアル

****************************************/
.mv_outer{
	display: flex;
	background: var(--white);
	padding-top: 80px;
}
.mv_outer .scroll_txt{
	width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv_outer .scroll_txt img{width: 14px;}
#mainvisual{
	position: relative;
	width: 90%;
}
#mainvisual .swiper-wrapper{width: 100%;}
#mainvisual .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 100%;
}
#mainvisual img.mv {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#mainvisual .logo {
	position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 70%;
    z-index: 10;
}
#mainvisual .logo img{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
/* ↓flexslider.cssを上書き */
#mainvisual .flex-control-nav {
	bottom: 0;
}
.flexslider{
	margin-bottom: 0;
	background: unset;
	border: none;
}


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

ヘッドライン

****************************************/
#headline {
	text-align: center;
	height: 80px;
	line-height: 80px;
	display: flex;
	justify-content: center;
	flex-direction: row;
	background: var(--white);
}
#headline .swiper{
	text-align: center;
	width: 100vw;
}


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

パンくずリスト

****************************************/
.breadcrumbs {
	color: var(--txt_color);
	background: var(--white);
	border-radius: 40px;
	padding: 4px 5px 3px;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.breadcrumbs ol li {
	font-size: 12px;
	display: inline-block;
	position: relative;
	padding: 0 10px;
}
.breadcrumbs ol li:before {
	display: block;
	content: "";
	width: 5px;
	height: 10px;
	background: url(../images/icon_arrow_black.svg) center / cover no-repeat;
	position: absolute;
	left: -4px;
	top: 5px;
}
.breadcrumbs ol li:first-child:before {background: none;}
.breadcrumbs ol li a {color: var(--color-gold1);}


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

トップページ

****************************************/
/*共通*/
section h2{
	color: var(--txt_color);
	font-size: 2.5em;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 20px;
}
section h2 span{
	font-size: 12px;
	display: block;
	line-height: 1.8;
}
#section_schedule_today,#section_covergirl{padding: 50px 16px;}
#section_topics{padding: 50px 16px 0;}
#section_event{padding: 0 16px 40px;}
#section_schedule_today{padding: 50px 0 50px 16px;}
@media screen and (min-width: 768px){
	#section_schedule_today,#section_covergirl{padding: 80px 16px;}
	#section_topics{padding: 80px 16px 0;}
	#section_event{padding: 0 16px 50px;}
	#section_schedule_today{padding: 80px 0;}
}

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

/* スライダー */
.swiper-button-next.next,.swiper-button-prev.prev{
	display: none;
}
.swiper-pagination{line-height: 1;}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 6px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	background: var(--main_color_1);
	opacity: .4;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {opacity: 1;}

/* イベントバナー */
#section_event{background: var(--white);}
#section_event img{
	width: 100%;
	max-width: 800px;
}

/* 本日の出勤　*/
#section_schedule_today{
	background-image: url(../images/bg_01.webp);
    background-size: cover;
    background-position: top center;
}
#contents_cast .cast_box .cast_box_list:nth-of-type(4n),
#contents_schedule .cast_box .cast_box_list:nth-of-type(4n) {margin-right: 0;}
#section_schedule_today .swiper-wrapper.no-swiper {/* no-swiper が付いたときは通常のカード一覧表示にする */
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 16px !important;
}
#section_schedule_today .swiper-wrapper.no-swiper .cast_box_list {/* 1列にされている cast_box_list を強制的に多段表示へ */
    width: calc((100% - 16px * 1) / 2) !important; /* 4列 */
    flex: 0 0 calc((100% - 16px * 1) / 2) !important; 
    box-sizing: border-box !important;
}
#section_schedule_today .swiper-wrapper.no-swiper .swiper-slide {/* swiper-slide の transform 残り対策 */
    transform: none !important;
    margin: 0 !important;
}
@media screen and (min-width: 768px){
	#section_schedule_today .inner{width: 90%; max-width: none;margin: 0 0 0 auto;}
	#section_schedule_today .swiper-wrapper.no-swiper .cast_box_list {
	    width: calc((100% - 16px * 3) / 4) !important; /* 4列 */
	    flex: 0 0 calc((100% - 16px * 3) / 4) !important; 
	}
}

/*流れるイメージ*/
.bg_image::before {
	content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg_02.webp);
    background-size: cover;
    z-index: -1;
    background-position: top center;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(0deg, #fcf7fe4d, #fffbfd);
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {animation: infinity-scroll-left 80s infinite linear 0.5s both;}
.scroll-infinity__item {width: 700vw;}
.scroll-infinity__item>img {width: 100%;}
@keyframes infinity-scroll-left {
	from {
	  transform: translateX(0);
	}
	  to {
	  transform: translateX(-100%);
	}
}
@media (min-width: 768px){
	.scroll-infinity__item {width: 300vw;}
	.scroll-infinity__list--left {animation: infinity-scroll-left 140s infinite linear 0.5s both;}
}


/* 新着情報 */
.toggle_title {
    position: relative;
    padding: 16px 20px;
	cursor: pointer;
	text-align: left;
	line-height: 1.4;
	
}
.toggle_contents{
	background: var(--white);
	border-radius: 10px;
}
.toggle_contents:not(:last-child){margin-bottom: 15px;}
.toggle_title{position: relative;}
.toggle_title::after {
  	content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 6px;
    height: 16px;
    background: url(../images/icon_arrow_black.svg) no-repeat center / contain;
    transform: rotate(90deg);
    transform-origin: center;
    translate: 0 -50%;
    transition: 0.4s;
}
.toggle_title.selected::after{
	transform: rotate(-90deg);
}
.toggle_title time,
#contents_topics time{
	color: var(--main_color_1);
}
.toggle_title h3{
	margin-top: 4px;
}
.toggle_contents dd {
	display: none;
	padding: 20px 30px;
	text-align: left;
}
/*一件目を開いた状態にする my.jsもコメントアウトを外す*/
/*.toggle_contents:first-of-type dd {
	display: block;
	padding: 20px;
}*/
@media screen and (min-width: 768px){
	.toggle_contents:not(:last-child){margin-bottom: 20px;}
	.toggle_title::after {right: 40px;}
}


/*ピックアップ*/
#section_covergirl h2 {text-align: center;}




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

下層ページ

****************************************/
/*共通*/
.subvisual{
	width: 100%;
    height: 20vh;
    /*background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
    background-image: url(../images/bg_subtitle.webp);*/
    background: var(--txt_color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}
.subvisual h2{
	font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 0.7;
}
.subvisual h2 span{font-size: 12px;}
@media screen and (min-width: 768px) {
	.subvisual{height: 15vh;}
}

/*ページネーション　新着情報*/
.pagination{
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin: 30px auto 0;
}
.pagination li{
	border-radius: 4px;
	margin: 0 8px 8px;
}
.pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    border: 1px solid var(--main_color_1);
    color: var(--main_color_1);
    transition: all 0.2s ease-out;
    position: relative;
    border-radius: 50px;
    background: var(--white);
}
.pagination li a:hover {
  	background: var(--main_color_1);
	color: var(--white);
	border: 1px solid var(--white);
}
.pagination li.active a {
	background: var(--main_color_1);
	color: var(--white);
	pointer-events: none;
	border: 1px solid var(--white);
}
.pagination li.active a:hover{
	opacity: 1;
	border: 1px solid var(--main_color_1);
}
/*ページネーション　セラピスト一覧*/
.pagination.next_prev li a {
	width: 100px;
	background: var(--main_color_1);
    color: var(--white);
}
.pagination.next_prev li a.prev::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 6px;
  height: 20px;
  transform: translateY(-50%) rotate(180deg);
  background: url(../images/icon_arrow_white.svg) no-repeat center / contain;
  transition: all 0.2s ease-out;
}
.pagination.next_prev li a.prev:hover::before{
	background: url(../images/icon_arrow_pink.svg) no-repeat center / contain;
	color: var(--main_color_1);
}
.pagination.next_prev li a.next::before{
	content: "";
  	position: absolute;
  	right: 20px;
  	top: 50%;
  	width: 6px;
  	height: 20px;
  	transform: translateY(-50%);
  	background: url(../images/icon_arrow_white.svg) no-repeat center / contain;
  	transition: all 0.2s ease-out;
}
.pagination.next_prev li a.next:hover::before{
	background: url(../images/icon_arrow_pink.svg) no-repeat center / contain;
	color: var(--main_color_1);
}
.pagination.next_prev li a:hover {
    background: var(--white);
    color: var(--main_color_1);
    border: 1px solid var(--main_color_1);
}


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

セラピスト一覧ページ & スケジュールページ

****************************************/
.schedule_nav {
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    gap: 8px;
}
.schedule_nav li {
    width: calc((100% - 8px) / 2);
    border-radius: 20px;
}
.schedule_nav li a {
	padding: 10px;
	display: block;
	font-size: 12px;
	border: 1px solid var(--main_color_1);
	background: var(--white);
	color: var(--main_color_1);
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
	border-radius: 50px;
}
.schedule_nav li a:hover {
	border: 1px solid var(--white);
	background: var(--main_color_1);
	color: var(--white);
}
.schedule_nav li.active a {
	background: var(--main_color_1);
	color: var(--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_ranking .icon_ranking {margin-bottom: 10px;}
#contents_ranking .icon_ranking img {width: 100%;}
@media screen and (min-width: 768px) {
	#contents_ranking .icon_ranking {margin-bottom: 20px;}
}


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

プロフィールページ

****************************************/
#contents_profile .profile_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}
#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;
}
.profile_box_right .name,.profile_box_right .size{font-size: 1.4em;}
#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;}
.profile_box_right .icon img{
	width: 49%;
	max-width: 50px;
}
#contents_profile .profile_box_left .img_box {
    width: 300px;
    height: 450px;
    margin: 0 auto 20px;
    position: relative;
    text-align: center;
}
.cast_box .cast_box_list .img_box .img_cast, .profile_box_left .img_box .img_cast {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: flex;
	box-sizing: border-box;
}
.profile_box_schedule .profile_sch_wrap{pointer-events: none;}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	flex-grow: 1;
	background: rgba(255, 255, 255, 0.6);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable:not(:last-child){margin-right: 1px;}
.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,
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	padding: 5px;
	background: rgb(98 96 129 / 80%);
	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 {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:not(:last-child) {
	    margin-right: 0;
	    margin-bottom: 1px;
	}
	.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%;
		margin-bottom: 1px;
	}
}


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

新着情報ページ

****************************************/
#contents_topics article{text-align: left;}
#contents_topics article:not(:last-child){margin-bottom: 20px;}
#contents_topics article .topics_title{
	line-height: 1.4;
	margin-bottom: 10px;
}
#contents_topics h3{font-size: 1.6em;}
@media screen and (min-width: 768px) {
	#contents_topics article:not(:last-child){margin-bottom: 40px;}
}


/****************************************
料金ページ
****************************************/


/****************************************
求人ページ
****************************************/


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


/****************************************
リンクページ
****************************************/


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

