@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: var(--black);
	background: #fff;
	background-size: 400px;
	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: 0.1em;
    text-indent: 0.1em;
}
@keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}

#wrapper {
    margin-top: 60px;
}

/*PC版769pxまでSP版786px〜*/
@media screen and (min-width: 870px) {
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 871px) {
	.pc{
		display: none !important;
	}
}

.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner1200{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.sub_page .inner,
.sub_page .inner800 {
    padding: 60px 20px;
    z-index: 1;
    position: relative;
}
#contents_cast .inner,
#contents_schedule .inner,
#section_topics .inner800{
	min-height: 430px;
}
/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
a, a:hover{
/*	color: var(--black);*/
}
main{
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
}
main.sub_page{
	margin: 60px auto 0;
	background: url(../images/bg_white.jpg) repeat;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
	background-size: 400px;
}
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;
}*/

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

::selection {
    background: #f7d9e5;
}
::-moz-selection {
    background: #f7d9e5;
}

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

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


/* 配色 共通 */
:root {
	--black: #353535;
	--gray: #d4d4d4;
	--pink_deep: #dd1684;
	--pink: #f7d9e5;
	--brown: #c5b272;
}

/*文字色*/
.atten_01, .atten_01 a{color: #5799cf;}
.atten_02, .atten_02 a{color: var(--pink_deep);}

/*マージン*/
.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; }

.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; }

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

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

/*リンクhoverアクション*/
/*opacity*/
.link_act_01{
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	cursor: pointer;
}
.link_act_01:hover{
	opacity: 0.5;
}
/*動き*/
.btn_up{
	transition:all 0.4s;
}
.btn_up:hover{
	-webkit-transform: translate(0, -2px);
  	transform: translate(0, -2px);
}

/*テーブル（table_01）*/
.table_01 {
	width: 100%;
	border-spacing: 0;
	text-align: left;
	border: 1px solid var(--pink);
}
.table_01 tr {
    display: block;
}
.table_01 th, .table_01 td {
	padding: 10px 20px;
	vertical-align: middle;
	display: flex;
    flex-direction: column;
    align-items: stretch;
}
.table_01 th {
	width: 100%;
	background: var(--pink);
	border-bottom: 1px solid #fff;
	vertical-align: middle;
	justify-content: center;
    text-align: center;
}
.table_01 tr:last-child th,
.table_01 tr:last-child td{
	border-bottom: 0;
}
.table_01 td {
	background: #fff;
	border-bottom: 1px solid var(--pink);
}
@media screen and (min-width: 768px) {
	.table_01 tr {
        display: flex;
    }
	.table_01 th{
		width: 40%;
	}
	.table_01 td {
        width: 60%;
    }
}

/*テーブル（料金表）*/
.table_02 {
	width: 100%;
	border-spacing: 0;
	text-align: left;
	font-size: 1.6em;
}
.table_02 tr{
	border-bottom: 1px solid var(--gray);
}
.table_02 td {
	text-align: center;
	width: 50%;
    padding: 10px 6px;
    vertical-align: middle;
}
.table_02 td:last-child{
	color: var(--pink_deep);
}
@media screen and (min-width: 768px) {
	/*.table_02 {
		font-size: 1.6em;
	}*/
	.table_02 td {
	    padding: 10px;
	}
}

/*テーブル（ホテル）*/
.table_03 {
	width: 100%;
	border-spacing: 0;
	text-align: left;
}
.table_03 tr{
	border-bottom: 1px solid var(--gray);
}
.table_03 td {
	width: 33%;
    padding: 8px;
    vertical-align: middle;
    font-size: 13px;
}
.table_03 td a{
	color: var(--pink_deep);
}
@media screen and (min-width: 768px) {
	.table_03 td {
	    padding: 10px;
	    font-size: 14px;
	}
}

.sub_title{
	font-size: 22px;
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 10px;
	line-height: normal;
    position: relative;
}
.sub_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    text-align: center;
    background-image: -webkit-linear-gradient(left, transparent, var(--black) 25%, var(--black) 75%, transparent);
    background-image: linear-gradient(to right, transparent, var(--black) 25%, var(--black) 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (min-width: 768px){
	.sub_title{
		font-size: 28px;
	}
}
.sub_title span{
	display: block;
	font-size: 0.5em;
}

/*********** ボタン設定 ***********/
.btn_more,
.btn_more_w,
.btn_enter {
    box-sizing: border-box;
    text-transform: uppercase;
    width: 100%;
    padding: 6px 10px;
    background: var(--brown);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 100px;
    display: block;
    margin: 20px auto 0;
    cursor: pointer;
    transition:all 0.4s;
    position: relative;
    max-width: 200px;
    transition:all 0.4s;
}
.btn_more_w{
    background: #fff;
    color: var(--pink_deep);
    border: 2px solid #fff;
}
.btn_enter{
    background: var(--pink_deep);
    color: #fff;
    border: 2px solid var(--pink_deep);
}
.btn_more::before,
.btn_more_w::before,
.btn_enter::before{
  	content: "▶︎";
    margin: auto;
    font-size: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
}
@media screen and (min-width: 767px) {
	.btn_more,
	.btn_more_w,
	.btn_enter {
    	max-width: 300px;
	}
}
.btn_more:hover,
.btn_more_w:hover,
.btn_enter:hover{
	-webkit-transform: translate(0, -4px);
  	transform: translate(0, -4px);
}

/*グレーボタン*/
.btn_gray{
	width: 120px;
    padding: 6px 16px;
    background: #ccc;
    color: #fff;
    border-radius: 999px;
    border: 0;
    display: block;
    margin: 10px auto 0;
    cursor: pointer;
    transition:all 0.4s;
    text-transform: uppercase;
}
.btn_gray:hover{
	opacity: .5;
}



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

セラピスト共通設定

******************************/
section:not(#section_covergirl,#section_newface) .cast_box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px min(2%, 30px);
}
.cast_box li{
	background: #fff;
	position: relative;
}
.cast_box li .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	position: relative;
	overflow: hidden;
}
.cast_box li .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cast_box li .img_box > img.img_cast {
	transition: 0.3s all;
}
.cast_box li a:hover .img_box > img.img_cast {
    transform: scale(1.1, 1.1);
    opacity: 0.4;
}
.cast_box li .icon_new,
#contents_profile .icon_new{
	width: 50px;
	position: absolute;
    bottom: 12px;
    left: 14px;
}
#section_schedule_today .cast_box li .icon_new,
#contents_cast .cast_box li .icon_new,
#contents_schedule .cast_box li .icon_new{
	width: 40px;
}
#section_newface .cast_box li .icon_new,
#section_covergirl .cast_box li .icon_new,
#contents_profile .icon_new{
    bottom: 16px;
    left: 18px;
}
.cast_box li .frame{
	position: absolute;
	top:0;
	left: 0;
	display: flex;
}
.cast_box li .frame img{
	width: 100%;
}
.cast_box li .txt_box{
	padding: 10px 10px 12px;
	font-size: 16px;
}
.cast_box li .txt_box .name{
	color: var(--pink_deep);
	font-weight: bold;
}
.cast_box li .txt_box .size{
	margin-bottom: 8px;
}
#section_covergirl .cast_box li .txt_box .size{
	margin-bottom: 0;
}
.cast_box li .txt_box .name,
.cast_box li .txt_box .size{
	line-height: normal;
}
.cast_box li .txt_box .time{
	color: #a58a36;
	padding: 5px 4px 4px;
	background: #f3efe3;
	position: relative;
	height: 20px;
	line-height: 10px;

	letter-spacing:0;
}
.cast_box li .txt_box .sch_info{
    background: #000;
    color: #fff;
    padding: 4px;
}
.cast_box li .txt_box .time:before,
.cast_box li .txt_box .time:after{
	position: absolute;
    top: 3px;
    left: 4px;
    content: "";
    background: url(../images/icon_diamonds_01.png) no-repeat;
    background-size: 100% auto;
    width: 16px;
    height: 16px;
}
.cast_box li .txt_box .time:after{
    right: 4px;
    left: auto;
}
#section_newface .cast_box li .txt_box .time{
	color: #815aa1;
	background: #f6eeff;
}
#section_newface .cast_box li .txt_box .time:before,
#section_newface .cast_box li .txt_box .time:after{
	position: absolute;
    top: 3px;
    left: 4px;
    content: "";
    background: url(../images/icon_diamonds_02.png) no-repeat;
    background-size: 100% auto;
    width: 16px;
    height: 16px;
}
#section_newface .cast_box li .txt_box .time:after{
    right: 4px;
    left: auto;
}
@media screen and (min-width: 500px){
	section:not(#section_newface,#section_covergirl) .cast_box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media screen and (min-width: 768px){
	#section_schedule_today .cast_box li .icon_new,
	#contents_cast .cast_box li .icon_new,
	#contents_schedule .cast_box li .icon_new{
		width: 50px;
	}
	section:not(#section_newface,#section_covergirl) .cast_box {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}



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

header

****************************************/
header {
	background: url(../images/bg_01.jpg) repeat;
    background-size: 1000px;
	width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.3s ease-out;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px 0 20px;
}
header div:after{
	content: none;
}
header h1.logo img {
	width: 140px;
}

/*グローバルナビ*/
header .header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}
header nav ul {
	display: flex;
    justify-content: flex-end;
    gap: 20px;
}
header nav ul li {
	display: inline-block;
    vertical-align: top;
}
header nav ul li a {
	display: block;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.4;
    color: var(--pink_deep);
}
/*header nav ul li a:hover {
	color: var(--pink_deep);
}*/

/*ハンバーガーメニューを作る*/
.btn_toggle {
    background: url(../images/icon_cat_p.svg) no-repeat center center / contain;
    border: none;
    padding: 0;
    position: fixed;
    top: 0;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    width: 40px;
    height: 60px;
    background-color: transparent;
}
.btn_toggle span {
    display: block;
    position: relative;
    width: 25px;
    height: 1px;
    background: #fff;
    margin-top: 4px;
}
.btn_toggle span::before,
.btn_toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 1px;
    background: #fff;
}
.btn_toggle span::before {
    top: -6px;
}
.btn_toggle span::after {
    top: 6px;
}
#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: var(--pink_deep);
	margin: 0;
	padding: 50px 20px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: none;
	text-align: left;
}
.nav_menu li{
	position: relative;
}
.nav_menu li:after{
	content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: #fff 1px solid;
    border-right: #fff 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: 4px;
    bottom: 15%;
    margin: auto;
}
.nav_menu a{
	display: block;
	padding: 10px;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
	color: #fff;
}
#sp_nav.open{
	display: block;
}

/*追尾ボタン*/
#bottom_nav{
    position: fixed;
    right: 0;
    left: 0;
    bottom: 10px;
    width: 90%;
    margin: 0 auto;
    display: block;
    z-index: 90;
}
#bottom_nav div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
#bottom_nav a {
	font-size: 12px;
    display: block;
    color: #fff;
    border-radius: 100px;
    padding: 0 4px 1px;
    text-transform: uppercase;
    background: var(--pink_deep);
}
#bottom_nav a.nav_system{
	background: #3ec7e1;
}
#bottom_nav a.nav_therapist{
	background: #b631dc;
}
#bottom_nav a img{
	width: auto;
    height: 16px;
}

/* ヘッドライン */
.mv_outer{
	position: relative;
}
#headline {
	height: 32px;
	line-height: 32px;
	background: #fff;
	width: 90%;
	max-width: 800px;
    overflow: hidden;
    position: absolute;
	bottom: 20px;
	left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
#headline ul{
	display: inline-block;
	padding-left: 100%;
	white-space: nowrap;
	animation: scrollHeadline 30s linear infinite;
}
#headline ul li {
    display: inline-block;
	margin-right: 200px;
}
@keyframes scrollHeadline{
	0%{ transform: translateX(0); }
	100%{ transform: translateX(-100%); }
}



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

footer

****************************************/
footer {
	background: url(../images/bg_01.jpg) repeat;
    background-size: 1000px;
	padding: 40px 20px 70px;
}
@media screen and (min-width: 767px) {
	footer {
		padding: 40px 20px;
	}
}
footer .logo img{
	max-width: 240px;
}
/*フッターnav*/
footer nav{
	margin: 0 auto 40px;
}
footer nav ul li a{
	display: block;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.4;
    color: var(--pink_deep);
/*    transition: all 0.4s ease-out;*/
}
footer nav ul li a:hover{
	color: var(--pink_deep);
	opacity: 0.5;
}

footer nav ul{
	display: flex;
    justify-content: center;
    gap: 20px;
}
footer nav li span{
	font-size: 9px;
}
@media screen and (min-width: 768px){
	footer{
		padding: 40px 20px;
	}
	footer nav li span{
		font-size: 11px;
	}
}
/*グローバルナビ（ヘッダー　&　フッター）*/

nav ul li{
    display: inline-block;
    vertical-align: top;
}
nav li a span {
    font-size: 11px;
    display: block;
}
footer img.bnr_info{
	width: 100%;
	max-width: 400px;
	margin-bottom: 40px;
	cursor: pointer;
}
/* 電話番号&営業時間 */
footer .info_box {
	margin: 0 auto 20px;
}
.footer_link {
	padding: 5px 0;
	background: #9fa2a9;
	text-align: center;
	font-size: 12px;
	font-family: sans-serif;
	color: #fff;
}
.footer_link a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #d0d0d0;
}
.footer_txt{
	margin: 10px;
	color: #fff;
}
/* フリースペース */
.free_link_box {
	text-align: left;
	margin-top: 40px;
}
/* リンクバナー */
.list_link_box {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 8px;
    align-items: flex-start;
    margin-top: 40px;
    line-height: normal;
}
.list_link_box li a{
	color: var(--pink_deep);
	font-size: 10px;
	line-height: normal;
}
.list_link_box img {
    width: 100%;
	height: auto;
}
.footer_copy{
	font-size: 12px;
	margin-top: 20px;
	color: var(--pink_deep);
}



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

メインビジュアル

****************************************/
#mainvisual{
	width: 100%;
	height: auto;
	position: relative;
}
#mainvisual ul{
	width: 100%;
	height: auto;
}
#mainvisual ul li{
	width: 100%;
	height: 100%;
}
#mainvisual img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainvisual .logo {
	position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    z-index: 10;
}
#mainvisual .logo img{
    width: 80%;
    max-width: 490px;
    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 (min-width: 768px){
	#mainvisual .logo{
		top: 50%;
        left: auto;
        right: 20%;
        transform: translateY(-50%);
        width: auto;
	}
}

#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(--pink_deep);
}



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

店舗情報 ヘッダー&フッター

****************************************/
#info_box{
	background: var(--pink_deep);
	padding: 20px 0 14px;
	font-size: 16px;
	letter-spacing: initial;
}
footer #info_box,
#sp_nav #info_box{
	background: none;
	padding: 20px 0 0;
}
#info_box .info_tel{
	margin-bottom: 4px;
}
#info_box .info_tel a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
    max-width: 240px;
    height: 35px;
    background: #fff;
    border-radius: 100px;
    font-size: 16px;
    margin: 0 auto 10px;
    color: var(--pink_deep);
    border-bottom: 0;
        /*-webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;*/
    position: relative;
}
#info_box .info_tel a::before,
#info_box .info_tel a::after{
	position: absolute;
    content: "";
    background: url(../images/img_deco_tel_01.svg) no-repeat;
    background-size: 100% auto;
    width: 30px;
    height: 50px;
}
#info_box .info_tel a::before{
	top: -5px;
    left: 0px;
}
#info_box .info_tel a::after{
	top: -5px;
    right: 0px;
    background: url(../images/img_deco_tel_02.svg) no-repeat;
    width: 30px;
    height: 50px;
}
/*#info_box .info_tel a:hover{
	opacity: .6;
}*/
footer #info_box .info_tel a{
	background: var(--pink_deep);
	color: #fff;
}
#info_box .info_tel a img{
	width: auto;
	height: 20px;
}
#info_box .info_open{
	color: #fff;
	text-align: center;
	line-height: normal;
}
footer #info_box .info_open{
	color: var(--pink_deep);
}

/* パンくずリスト */
.breadcrumbs {
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	background: var(--pink_deep);
}
.breadcrumbs ol li {
	font-size: 12px;
    display: inline-block;
}
.breadcrumbs ol li:before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
  	font-weight: 900;
	display: inline;
	margin: 0 8px 0;
}
.breadcrumbs ol li:first-child:before {
	margin: 0;
	content: "";
}
.breadcrumbs ol li a {
	color: #fff;
}



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

共通使用

****************************************/
/*ボックス*/
.box_outer{
	border: 2px solid var(--black);
	padding: 10px;
	background: #fff;
}
.box_inner{
	border: 1px solid var(--black);
	padding: 30px 20px;
}
.box_pink{
	background: rgb(247 217 229 / 80%);
	padding: 20px;
	outline: 1px solid #fff;
    outline-offset: -8px;
}
.box_pink_deep{
	background: rgb(221 22 132 / 80%);
	padding: 20px;
	outline: 1px solid #fff;
    outline-offset: -8px;
    color: #fff;
}

/*料金ページ・ご利用方法ページの注意書き*/
.box_pink.atten{
	padding: 30px;
}
@media screen and (min-width: 768px) {
	.box_pink.atten{
		padding: 40px;
	}
}

/*レース背景*/
.section_bg {
    position: relative;
}
.section_bg::before,
.section_bg::after {
   	content: "";
    display: inline-block;
    width: 100%;
    height: 107px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../images/img_lace_b_sp.png);
    background-position: bottom left;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
}
.section_bg.lace_white::before,
.section_bg.lace_white::after{
	background-image: url(../images/img_lace_w_sp.png);
}
.section_bg::before {
    top: 0;
    left: 0;
    transform: rotate(180deg);
    background-position: right top;
}
.section_bg::after {
    bottom: 0;
    left: 0;
    background-position: left top;
}
@media screen and (min-width: 768px) {
    .section_bg::before,
    .section_bg::after {
        height: 200px;
        background-image: url(../images/img_lace_b_pc.png);
    }
    .section_bg.lace_white::before,
	.section_bg.lace_white::after{
		background-image: url(../images/img_lace_w_pc.png);
	}
}



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

認証ページ

******************************/
#entry_body{
	background: url(../images/bg_white.jpg) repeat;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
	background-size: 400px;
}
#entry_body #contents{
	background: transparent;
	background: url(../images/mainvisual_01_sp.jpg) 0 0 no-repeat;
	background-size: cover;
	background-position: 60% 50%;
    height: 80vh;
    position: relative
}
#entry_body #contents .main_txt{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 80%;
	text-align: center;
}
#entry_body #contents .info_box,
#entry_body #contents .info_box a {
	width: 100%;
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 800;
}
#entry_body h2{
	font-size: 18px;
	font-weight: 700;
}
#entry_body .box_inner{
	padding: 10px 20px 8px;
}
@media screen and (min-width: 768px) {
	#entry_body #contents{
		background: url(../images/mainvisual_01_pc.jpg) 0 0 no-repeat;
		background-position:center;
		width: 100%;
    	height: 100vh;
	}
	#entry_body #contents .main_txt{
	    top: 50%;
        left: auto;
        right: 10%;
        transform: translateY(-50%);
        width: auto;
	}
}


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

トップページ

****************************************/
section .title {
	margin: 0 auto 20px;
}
.title{
	margin: 0 auto 10px;
}
.title img{
	width: auto;
    max-height: 50px;
}
.subvisual img{
	filter: drop-shadow(0px 0px 10px rgb(221, 22, 132));

	max-height: 60px;
}
@media screen and (min-width: 767px) {
	.title{
		margin: 0 auto;
		text-align: center;
	}
	.title img{
    max-height: 60px;
	}
	.subvisual img{
		max-height: 70px;
	}
}
#entry_body section,
#section_covergirl,
#section_topics,
#section_event,
#section_schedule_today,
#section_newface{
	padding: 50px 20px;
}

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

/* イベント情報 */
#section_event{
	background: url(../images/bg_beige.jpg) repeat;
	background-size: 500px;
	overflow: hidden;
}
#section_event .inner {
    position: relative;
    z-index: 1;
}
section#section_event .title {
	position: relative;
    z-index: 1;
}
#section_event img{
	width: 100%;
	max-width: 800px;
	margin-bottom: 10px;
}
#section_event .swiper ul {
    margin-bottom: 40px;
}
#section_event .swiper ul li{
	padding:0  10px;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: url('../images/icon_heart.svg') no-repeat center center / contain;
    border-radius: 0;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
@media screen and (min-width: 768px){
	
}

/* 本日の出勤情報　*/
#section_schedule_today{
	background: url(../images/bg_pink.jpg) repeat;
	background-size: 400px;
}
#contents_cast .cast_box li:nth-of-type(4n),
#contents_schedule .cast_box li:nth-of-type(4n) {
	margin-right: 0;
}

/* 新着情報 */
section#section_topics .title{
	margin: 0 auto 20px;
}
#section_topics .inner800 {
    position: relative;
    z-index: 1;
}
/* 動画 */
#section_topics .movie_box {
	width: 300px;
	margin-inline: auto;
	margin-bottom: 50px;
}
#section_topics .movie_box video{
	width: 100%;
	height: auto;
}
/* 新着情報 */
#section_topics #topics_info_box,
#contents_topics #topics_info_box {
	background: #fff;
}
#contents_topics #topics_info_box .topics_btn{
	margin-top: 20px;
}
#contents_topics #topics_info_box .topics_btn img{
	width: 80px;
	height: auto;
}
#section_topics #topics_info_box article,
#contents_topics #topics_info_box article{
	text-align: left;
}
#section_topics #topics_info_box article time,
#contents_topics #topics_info_box article time{
	background: var(--pink_deep);
	color: #fff;
	border-radius: 100px;
	text-align: center;
    margin: 0 auto 4px;
    display: block;
    max-width: 200px;
    line-height: normal;
    padding: 2px 0;
}
#section_topics #topics_info_box article h3,
#contents_topics #topics_info_box article h3{
	text-align: center;
	color: var(--pink_deep);
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--gray);
}
#section_topics #topics_info_box article p img,
#contents_topics #topics_info_box article p img{
	max-width: 100%;
}
#section_topics #topics_info_box strong,
#contents_topics #topics_info_box strong {
	font-weight: bold;
}

/* 新人情報 */
#section_newface{
	background: url(../images/bg_purple.jpg) no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
#section_newface::after {
    position: absolute;
    top: -30px;
    right: -30px;
    content: "";
    background: url(../images/img_deco_circle_01.svg) no-repeat;
    background-size: 100% auto;
    width: 240px;
    height: 190px;
}
#section_newface::before {
    position: absolute;
    bottom: -30px;
    left: -30px;
    content: "";
    background: url(../images/img_deco_circle_02.svg) no-repeat;
    background-size: 100% auto;
    width: 240px;
    height: 190px;
}
#section_newface .swiper{
	width: 300px;
	margin: 0 auto;
}
#section_newface ul li .txt_box .icon_new{
	width: 50px;
	position: static;
}
#section_newface ul li p.name {
    line-height: 1.4;
    padding-bottom: 4px;
}
@media screen and (max-width: 768px){
	#section_newface .swiper{
		width: 220px;
	}
}

/* ピックアップ */
#section_covergirl{
	background: url(../images/bg_blue.jpg) repeat;
	background-size: 480px;
	position: relative;
	overflow: hidden;
}
#section_covergirl::after {
    position: absolute;
    top: -60px;
    right: -30px;
    content: "";
    background: url(../images/img_deco_square_01.svg) no-repeat;
    background-size: 100% auto;
    width: 240px;
    height: 190px;
}
#section_covergirl::before {
    position: absolute;
    bottom: 0px;
    left: -30px;
    content: "";
    background: url(../images/img_deco_square_02.svg) no-repeat;
    background-size: 100% auto;
    width: 240px;
    height: 190px;
}
#section_covergirl .swiper{
	width: 300px;
	margin: 0 auto;
}
#section_covergirl ul li{
/*	padding:0  10px;*/
}
@media screen and (max-width: 768px){
	#section_covergirl .swiper{
		width: 220px;
		margin: 0 auto;
	}
}








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

下層ページ

****************************************/
/*下層ページ共通設定*/
.subvisual{
	width: 100%;
	height: 20vh;
	padding: 100px 0;
	background-image: url(../images/bg_subvisual.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 70% 30%;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: 1px solid #fff;
    outline-offset: -4px;
}
.subvisual h2{
	font-size: 2.5em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	padding-top: 80px;
	line-height: 1;
}
.subvisual h2 span{
	font-size: 12px;
}


/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
.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);
}
.en .schedule_nav li {
	padding: 10px;
	display: block;
	font-size: 12px;
	background: var(--pink);
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}
.schedule_nav li a {
	padding: 10px;
	display: block;
	font-size: 12px;
	background: var(--pink);
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
	outline: 1px solid #fff;
    outline-offset: -4px;
}
.schedule_nav li a:hover {
	opacity: 0.6;
}
.schedule_nav li.active a {
	background:var(--pink_deep);
	color: #fff!important;
}
.schedule_nav li.active a span.atten_01,
.schedule_nav li.active a span.atten_02{
	color: #fff;
}
.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 .profile_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
}
#contents_profile .profile_box_left {
    width: 100%;
    margin-bottom: 40px;
}
#contents_profile .profile_box_left .img_box {
    position: relative;
    width: 300px;
    height: 450px;
    margin: 0 auto 20px;
    text-align: center;
}
#contents_profile .profile_box_left .cast_thumb {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
#contents_profile .profile_box_left .cast_thumb a {
    margin-right: 4px;
}
#contents_profile .profile_box_left .cast_thumb img{
	max-width: 200px;
    width: 60px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 0;
}
#contents_profile .profile_box_right {
    width: 100%;
}
#contents_profile .profile_box_right .name{
	font-size: 20px;
	color: var(--pink_deep);
	font-weight: bold;
}
#contents_profile .profile_box_right .short_comment{
	background: var(--gradation_black);
	color: var(--brown_light);
    padding: 10px 20px 8px;
    line-height: 1.4;
}
.profile_box_right video{
	width:100%;
}
#contents_profile .profile_bnr {
    width: 100%;
    max-width: 300px;
    height: auto;
}
@media screen and (min-width: 768px) {
	#contents_profile .profile_box_left {
	    margin-bottom: 0;
	}
    #contents_profile .profile_wrap {
        gap: 20px;
        justify-content: space-between;
        flex-wrap: nowrap;
        margin-bottom: 40px;
    }
    #contents_profile .profile_box_left {
        width: 40%;
    }
    #contents_profile .profile_box_right {
        width: calc(60% - 40px);
    }
}
#contents_profile .img_box > img.main-photo{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*スケジュール表*/
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: block;
	box-sizing: border-box;
	border: 1px solid var(--pink);
    border-spacing: 0;
	/*2週間表示にする場合は必要*/
	/*margin-top: 40px;*/
}
/* ↓2週間表示にする場合は削除 */
.profile_box_schedule .profile_sch_wrap{
	pointer-events: none;
}
/* ↑2週間表示にする場合は削除 */

.profile_box_schedule .profile_sch_box .profile_sch_variable {
	display: flex;
}
.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;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	padding: 10px;
	flex-basis: 50%;
	border-bottom: 1px solid #fff;
	background: var(--pink);
	color: var(--black);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable:last-child .profile_sch_date{
	border-bottom: 0;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	padding: 10px;
	background: #fff;
	color: initial;
	min-height: 70px;
	flex-basis: 50%;
	border-bottom: 1px solid var(--pink);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable:last-child .profile_sch_check{
	border-bottom: 0;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check span{
	width: 90%;
}
@media screen and (min-width: 767px) {
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check span{
		width: 80%;
	}
}
#contents_profile .profile_box_left .img_box .frame{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}



/****************************************
料金ページ
****************************************/
.img_maid{
	margin-top: 30px;
}
.img_maid ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.img_maid ul li{
	width: calc((100% / 2) - 10px );
}
.atten ul{
	background: #fff;
	padding: 20px;
}
@media screen and (min-width:768px){
	.img_maid ul{
		gap: 30px;
	}
	.img_maid ul li{
		width: calc((100% / 3) - 20px );
	}
	.atten ul{
		padding: 20px 30px;
	}	
}

/****************************************
利用方法ページ
****************************************/
#contents_info ul li{
	width:100%;
	margin-bottom: 30px;
	display: inline-block;
    vertical-align: top;
    background: #ffedf4;
    border: 1px solid var(--pink_deep);
    padding: 20px;
}
#contents_info h3.info{
    font-weight: normal;
    background: var(--pink_deep);
    color: #fff;
    padding: 8px 10px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
}
#contents_info .info_item_img{
	flex-shrink: 0;
	margin-bottom: 10px;
}
#contents_info .info_item_img img {
	width: 100%;
}
#contents_info .info_item_txt{
	text-align: left;
}
#contents_info .info_key{
	font-weight: bold;
	color: var(--pink_deep);
}
#contents_info span.border_01 {
    background: linear-gradient(transparent 55%, var(--pink) 55%);
 
}
@media screen and (min-width:580px){
	#contents_info ul{
	    display: flex;
	    flex-wrap: wrap;
	    align-content: space-around;
	    align-items: stretch;
	    justify-content: space-around;
	    gap: 40px 30px;
	}
	#contents_info ul li{
		width: calc((100% / 2) - 20px);
		margin-bottom: 0;
	}
}


/****************************************
求人情報ページ
****************************************/
#contents_recruit .bnr_recruit{
	width: 100%;
	max-width: 500px;
	height: auto;
}
#contents_recruit .btn_tel{
	background-color: var(--pink_deep);
	width: 100%;
	display: inline-block;
	padding: 12px;
	line-height: 20px;
	transition: 0.4s;
	border-radius: 100px;
	margin-bottom: 8px;
	color: #fff;
    text-align: center;
}


/****************************************
ホテルページ
****************************************/



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


