@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 {
  font-size: 10px; /* 1rem = 10px にする */
}
body {
	color: var(--color-brown1);
	background: #ffe2e8;
    font-size: 1.4rem;
	font-weight: 500;
	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;/* 変更 */
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}

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

.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner1200{
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 100%;
	max-width: 800px;
	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;
}

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

/*********** 文字色 ***********/
.atten_01, .atten_01 a{color: #ffff00;}
.atten_02, .atten_02 a{color: #5588d2;}
.atten_03, .atten_03 a{color: #d2556e;}
.atten_04, .atten_04 a{color: #ff87a2;}
.atten_05, .atten_05 a{color: #ea486e;}

:root {
	--color-white1: #fff;
	--color-beige1: #fff9f0;
	--color-pink1: #ff87a2;
	--color-pink2: #ffc5d1;
	--color-pink3: #ea486e;
	--color-bule1: #5fd2f0;
	--color-lightpink1: #fde7ea;
	--color-lightbule1: #daf4ff;
	--color-brown1: #645c56;
	--color-glay1:#878787;
	--color-glay2:#666464;

	--color-tel: #f0b561;
	--color-line: #86da8c;
	--color-reserve: #61d2f0;
}

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

.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}

/*********** 文字寄せ ***********/
.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_12em{font-size: 1.2em!important;}
.fs_14em{font-size: 1.4em!important;}
.fs_15em{font-size: 1.5em!important;}
.fs_16em{font-size: 1.6em!important;}

/*********** フォントウエイト ***********/
.fw_bold{font-weight: 900;}

/*********** リンクhoverアクション ***********/
.link_act_01{
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
.link_act_01:hover{
	opacity: 0.5;
}

/*********** table設定 ***********/
/*table01*/
.table_01 {
	width: 100%;
	border-top: 1px solid #827267;
	border-spacing: 0;
	text-align: left;
}
.table_01 th {
	width: 35%;
	padding: 20px;
	color: var(--color-white1);
	background: var(--color-pink1);
	vertical-align: middle;
	border-color: var(--color-pink2);
	border-style: solid;
	border-width: 1px;
	text-align: center;
}
.table_01 td {
	padding: 20px;
    background: var(--color-white1);
	border-color: #dfccd0;
	border-style: solid;
	border-width: 1px;
}
.table_01 td a {
	color: var(--color-brown1);
}
@media screen and (max-width: 768px) {
	.table_01 th {
		text-align: left;
	}
	.table_01 th, .table_01 td {
		display: block;
		width: 100%;
	}
}

/*table02*/
.table_02 {
	width: 100%;
	margin-bottom: 30px;
	border-spacing: 0;
	text-align: left;
}
.table_02 th {
	width: 40%;
	padding: 3% 2%;
	color: var(--color-pink3);
	background: var(--color-lightpink1);
	vertical-align: middle;
	border-color: var(--color-pink2);
	border-style: solid;
	border-width: 1px;
}
.table_02 td {
	width: 60%;
	padding: 3% 2%;
    background: var(--color-white1);
	border-color: #dfccd0;
	border-style: solid;
	border-width: 1px;
	vertical-align: middle;
}
.table_02 td a {
	color: var(--color-brown1);
}
@media screen and (max-width: 768px) {
	.table_02 th, .table_02 td {
		display: block;
		width: 100%;
	}
}

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

/*********** ボタン設定 ***********/
.btn_more{
	display: inline-block;
	width: 260px;
	height: 60px;
	line-height: 56px;
	margin: 40px auto 0;
	background: var(--color-pink1);
	color: var(--color-white1);
	border-radius: 50px;
	opacity: 1;
	text-align: center;
	text-decoration: none;
	position: relative;
	transition: opacity 0.4s ease;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	border: 2px solid var(--color-white1);
}
.btn_more::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%) rotate(45deg);
	width: 5px;
	height: 5px;
	border-top: 3px solid var(--color-white1);
	border-right: 3px solid var(--color-white1);
}
.btn_more:hover{
	opacity: 0.6;
	color: var(--color-white1);
}

.btn_back,
.btn_next {
	display: inline-block;
	width: 180px;
	height: 50px;
	line-height: 46px;
	margin: 40px auto 0;
	background: var(--color-pink1);
	color: var(--color-white1);
	border-radius: 50px;
	opacity: 1;
	text-align: center;
	text-decoration: none;
	position: relative;
	transition: opacity 0.4s ease;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	border: 2px solid var(--color-white1);
}
.btn_back::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%) rotate(45deg);
	width: 5px;
	height: 5px;
	border-top: 3px solid var(--color-white1);
	border-right: 3px solid var(--color-white1);
}
.btn_next::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translateY(-50%) rotate(-135deg);
	width: 5px;
	height: 5px;
	border-top: 3px solid var(--color-white1);
	border-right: 3px solid var(--color-white1);
}
.btn_back:hover,
.btn_next:hover {
	opacity: 0.6;
	color: var(--color-white1);
}

/* 求人ページ応募方法のボタン */
.btn_recruit {
	display: flex;
	gap: 5px;
	flex-direction: column;
	flex-wrap: wrap;
}
.btn_recruit a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	color: #fff;
	background: #000;
}
.btn_recruit a span {
	margin: 2px 5px 0 0;
}
.btn_recruit .btn_tel {
	background: #000;
}
.btn_recruit .btn_mail {
	background: #4a4a4a;
}
.btn_recruit .btn_line {
	background: #00c300;
}

/* フォームのボタン */
.btn_form {
	display: flex;
	gap: 5px;
	justify-content: center;
	/* ボタンを縦に並べる場合
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center; */
}
.btn_form input {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	color: #fff;
	background: #000;
}
.btn_form .btn_send {
	background: #000;
}
.btn_form .btn_reset {
	background: #999;
}

/*リセットボタン*/
input[type="submit"],
input[type="reset"],
input[type="button"].back_btn {
    display: block;
    margin: 0 auto;
    font-size: 14px;
    cursor: pointer;
    transition: ease-out 0.4s;
}
input[type="reset"] {
    padding: 0;
    background: none;
    margin: 12px auto 0;
    border: 0;
    border-bottom: 1px solid var(--color-brown1);
    color: var(--color-brown1);
    transition:all 0.4s;
	border-radius: 0;
}
input[type="reset"]:hover {
    opacity: .6;
}
/*戻るボタン*/
input[type="button"].back_btn {
	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;
	width: 60%;
    max-width: 140px;
    height: 40px;
    line-height: 38px;
    display: block;
	margin: 12px auto 0;
	background: var(--color-brown1);
	border-radius: 20px;
	color: var(--color-white1);
	border: 1px solid var(--color-white1);
	text-transform: uppercase;
	transition: .4s;
}

/******************************
アニメーション
******************************/
/*要素をじわっと出現*/
.blurTrigger {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.blur {
  animation: blurAnime 1s ease-out forwards;
}
@keyframes blurAnime {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
/*要素を下からふわっと出現*/
.fadeUpTrigger {
    opacity: 0;
}
.fadeUp {
	animation: fadeUp 0.8s ease-out forwards;
}
@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(100px);
	}
	100% {
		opacity: 1;
		transform: translateY(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 {
	/* border: 1px solid #eee; */
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 15px 10px;
	width: 80%;
	border-radius: 4px;
	border: var(--color-beige1) 2px solid;
	color: var(--color-brown1);
	background: #fff;
	font-size: 1.4rem;
}
form input[type="text"].form_short {
	max-width: 80px;
}
form textarea{
	width: 100%;
	resize: vertical;
	min-height: 200px;
}
form input[type="radio"], form input[type="checkbox"] {
	accent-color: var(--color-pink3);
}
form input[type="radio" i] {
    margin: 0 3px 2px 5px;
}
#reserve,
#recruit {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
#reserve select[id^="reserve"] {
	width: 30%;
}
.icon_required {
	background: var(--color-pink3);
	padding: 4px 8px;
	display: inline-block;
	color: var(--color-white1);
	margin-left: 5px;
	font-size: 1.0rem;
	border-radius: 20px;
}
::placeholder {
	color: #bbbbbb;
}
/*table_form*/
.form_box{
	width: 100%;
	border: 2px solid var(--color-pink1);
	background: var(--color-beige1);
	border-radius: 20px;
	padding: min(5%,50px) min(3%,20px);
}
.table_form{
	width: 100%;
	margin-bottom: 30px;
}
.table_form th,
.table_form td{
	padding: 5px;
	vertical-align: middle;
	text-align: left;
}
.table_form th{
	width: 35%;
	background: var(--color-lightpink1);
	color: var(--color-pink3);
	text-align: center;
	padding: 20px 10px;
	border: 5px solid var(--color-beige1);
}

@media screen and (max-width: 768px){
	#reserve,
	#recruit {
		/* justify-content: center; */
	}
	.table_form th,
	.table_form td{
		width: 100%;
		display: block;
		text-align: left;
	}
	.table_form td{
		margin-bottom: 20px;
		text-align: left;
	}
	form input[type="text"],
	form input[type="email"],
	form textarea,
	form select {
		width: 100%;
		font-size: 1.6rem;
	}
	.table_form{
		margin-bottom: 0;
	}
}

/******************************
セラピスト共通設定
******************************/
section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .cast_box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px min(3%, 30px);
}
.cast_box li{
	position: relative;
	padding: 16px;
	background: var(--color-beige1);
	border-radius: 20px;
}
.cast_box li .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	position: relative;
}
.cast_box li .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.icon_new{
	width: 40px;
	position: absolute;
    top: 0;
    left: 0;
}
#section_top_ranking_01 .icon_new {
	width: 40px;
	position: absolute;
    top: 0;
    left: 0;
}
#section_top_ranking_01 .icon_new,
#contents_profile .icon_new{
	width: 60px;
}
@media screen and (min-width: 767px) {
	.cast_box li{
		padding: 16px;
	}
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .cast_box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.icon_new{
		width: 60px;
	}
}
/* アイコン */
.cast_box li .icon_box,
#contents_profile .profile_box_left .img_box .icon_box {
	position: absolute;
	bottom: 8px;
	right: 0;
	display: flex;
    justify-content: center;
}
.cast_box li .icon_box img,
#contents_profile .profile_box_left .img_box .icon_box img{
    width: 40px;
    margin: 0 8px 0 4px;
}
.cast_box li .txt_box{
	margin-top: 12px;
	line-height: normal;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: var(--color-brown1);
}
.cast_box li .txt_box .icon{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}
.cast_box li .txt_box .icon img {
    width: calc((100% / 2) - 2px);
}
.cast_box li .txt_box .name{
	font-size: 1.6rem;
}
.cast_box li .txt_box .age{
	font-size: 1.4rem;
}
.cast_box li .txt_box .size{
	font-size: 14px;
}
.cast_box li .txt_box .time{
	letter-spacing: 0;
	padding: 8px 4px;
	line-height: 14px;
	color: var(--color-brown1);
	background: var(--color-lightbule1);
	display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 12px;
	border-radius: 20px;
	font-size: 1.5rem;
}
.cast_box li .txt_box .time_free_txt{
	padding: 0px 4px 4px;
	line-height: 14px;
	color: var(--brown_light);
	background: var(--gradation_bordeaux);
}
.cast_box li .txt_box .time i{
	font-size: .9em;
}
@media screen and (min-width: 767px){
	.cast_box li .txt_box .icon{
	    gap: 8px;
	}
	.cast_box li .txt_box .icon img {
	    width: calc((100% / 2) - 4px);
	}
}
.cast_box li .txt_box .size{
	font-size: 1.5rem;
}
/* 一言コメント */
.cast_box li .short_comment {
	display: flex;
	margin: 10px 0;
	margin-inline: auto;
	color: var(--color_pink1);
	overflow: hidden;
}
#contents_profile .profile_box_right .short_comment {
	display: flex;
	margin-inline: auto;
	color: var(--color_pink1);
	overflow: hidden;
}
.cast_box li .short_comment p,
#contents_profile .profile_box_right .short_comment p {
	padding: 0 1em;
	white-space: nowrap;
}
.cast_box li .short_comment p:nth-child(odd),
#contents_profile .profile_box_right .short_comment p:nth-child(odd) {
	animation: marquee 12s -6s linear infinite;
}
.cast_box li .short_comment p:nth-child(even),
#contents_profile .profile_box_right .short_comment p:nth-child(even) {
	animation: marquee2 12s linear infinite;
}
@keyframes marquee{
	0% { transform: translateX(100%)}
	100% { transform: translateX(-100%)}
	}
@keyframes marquee2{
	0% { transform: translateX(0)}
	100% { transform: translateX(-200%)}
	}

#contents_profile .profile_box_right .bnr_snsx img {
	max-width: 480px;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 520px){
	.cast_box li {
		padding: 10px;
		border-radius: 10px;
	}
	.cast_box li .icon_box img, #contents_profile .profile_box_left .img_box .icon_box img {
		width: 28px;
		margin: 0 8px 0 4px;
	}
	.cast_box li .txt_box .size{
		font-size: 1.4rem;
	}
	.cast_box li .txt_box .time {
		line-height: 10px;
		font-size: 1.4rem;
	}
	.cast_box li .short_comment {
		margin: 6px 0;
	}
}

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

headerヘッダー設定

****************************************/
header {
	width: 100%;
	height: 60px;
	background: var(--color-pink1);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
}
header h1.logo {
	float: left;
	padding: 4px 16px 0;
	position: relative;
}
header h1.logo span {
	position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
header h1.logo img{
	width: 100%;
	max-width: 78px;
}
header h1 img:hover {
	opacity: 0.8;
	transition: 0.3s ease-in-out;
}
header nav.pc ul {
    list-style: none;
    position: absolute;
    right: 40px;
    bottom: 30%;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 40px;
}
header nav.pc ul li {
	display: inline-block;
	text-align: center;
}
header nav.pc ul li a {
	display: inline-block;
    font-size: 1.5rem;
	color: var(--color-white1);
	letter-spacing: 0.1em;
    line-height: 1.1;
	transition: .3s;
	-webkit-transform: scale(1);
	transform: scale(1);
}
header nav.pc ul li a:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/******************************
SP用メニュー設定
******************************/
/* ナビ内ボタン */
.btn_nav {
	position: fixed;
	top: 5px;
	right: 60px;
	z-index: 70000;
}
.btn_nav ul {
	display: flex;
}
.btn_nav ul li {
	margin-right: 8px;
}
.btn_nav ul li:last-child {
	margin-right: 0;
}
.btn_nav a {
	border-radius: 8px;
	width: 48px;
	height: 48px;
	color: var(--color-pink1);
	background: var(--color-white1);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.btn_nav a:hover{
	opacity: 0.7;
	transition: 0.3s ease-in-out;
}
.btn_nav_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.btn_nav_inner img {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
}
.btn_nav_inner p {
    font-size: 1.0rem;
	font-weight: bold;
    line-height: 1.2rem;
	color: var(--color-pink1);
	margin: 0;
}
/* ドロワー */
.btn_menu{
	position: fixed;
	height: 40px;
	width: 60px;
	top: 0;
	right: 0;
	z-index: 9999999999;
	padding-top: 18px;
}
.btn_menu p{
	font-size: 10px;
	line-height: 1em;
	letter-spacing: 1px;
	color: var(--color-white1);
}
/* バツボタン */
.btn-trigger {
	position: relative;
	width: 32px;
	height: 22px;
	cursor: pointer;
}
.btn-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--color-white1);
	border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
	display: inline-block;
	transition: all .5s;
}
.btn-trigger span:nth-of-type(1) {top: 0px;}
.btn-trigger span:nth-of-type(2) {top: 10px;}
.btn-trigger span:nth-of-type(3) {bottom: 0px;}

#btn_icon span:nth-of-type(1) {
	-webkit-animation: btnicon-bar01 .75s forwards;
	animation: btnicon-bar01 .75s forwards;
}
@keyframes btnicon-bar01 {
	0% {transform: translateY(9px) rotate(45deg);}
	50% {transform: translateY(9px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
}

#btn_icon span:nth-of-type(2) {
	transition: all .25s .25s;
	opacity: 1;
}

#btn_icon span:nth-of-type(3) {
	-webkit-animation: btnicon-bar03 .75s forwards;
	animation: btnicon-bar03 .75s forwards;
}
@keyframes btnicon-bar03 {
	0% {transform: translateY(-9px) rotate(-45deg);}
	50% {transform: translateY(-9px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
}

#btn_icon.active span:nth-of-type(1) {
	-webkit-animation: active-btnicon-bar01 .75s forwards;
	animation: active-btnicon-bar01 .75s forwards;
	background-color: var(--color-white1);
}
@keyframes active-btnicon-bar01 {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(9px) rotate(0);}
	100% {transform: translateY(9px) rotate(45deg);}
}

#btn_icon.active span:nth-of-type(2) {
	opacity: 0;
}

#btn_icon.active span:nth-of-type(3) {
	-webkit-animation: active-btnicon-bar03 .75s forwards;
	animation: active-btnicon-bar03 .75s forwards;
	background-color: var(--color-white1);
}
@keyframes active-btnicon-bar03 {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(-9px) rotate(0);}
	100% {transform: translateY(-9px) rotate(-45deg);}
}

/* ドロワーの中 */
#nav_d_bg {
	position: fixed;
    background: rgba(255,135,162,0.9);
	width: 100%;
	height: 100%;
	right: -120%;
	top: 0;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
	transition-delay: 0.2s;
	z-index: 80001;
}
.open #nav_d_bg {
	/* -webkit-transform: matrix(2.7, 0, 0, 2.7, 0, 0); */
	/* transform: matrix(2.7, 0, 0, 2.7, 0, 0); */
	transition-delay: 0s;
	transform: translateX(-120%);
}
#nav_drawer {
	display: none;
	position: fixed;
	top: 0px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: 100%;
	max-width: 480px;
	height: 100%;
	overflow-y: auto;
	z-index: 80002;
}
#nav_drawer .nav_drawer_outer {
	padding: 20px 40px 80px;
}
#nav_drawer .menu_t {
    margin: 0 auto;
    font-size: 2.8rem;
    line-height: 2.0;
	color: var(--color-white1);
    font-weight: 600;
    letter-spacing: 0.2em;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
}
#nav_drawer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	/* overflow: scroll; */
	padding-bottom: 20px;
	margin: 0 auto;
	color: var(--color-white1);
}
#nav_drawer ul li {
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	line-height: 1.1em;
	width: 100%;
	text-align: left;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
}
#nav_drawer li:after{
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 5px;
	top: calc(50% - 7px);
	color: var(--color-white1);
}
#nav_drawer li.dw_info_box {
	padding-top: 20px;
}
#nav_drawer li.dw_info_box:after{
	content: none;
}
#nav_drawer .dw_info_box {
	font-size: 0.8rem;
}
#nav_drawer .dw_info_box .shop_name{
	font-size: 1.2rem;
	margin-bottom: 10px;
    font-weight: bold;
}
#nav_drawer .dw_info_box .area_name{
	margin-bottom: 6px;
}
#nav_drawer .dw_info_box .info_tel{
	color: var(--color-pink1);
	background: var(--color-white1);
	border-radius: 32px;
    padding: 4px;
	text-align: center;
	margin-bottom: 10px;
}
#nav_drawer .dw_info_box .info_tel a {
	color: var(--color-pink1);
	font-size: 1.6rem;
	font-weight: bold;
    letter-spacing: 0.06em;
}
#nav_drawer .dw_info_box .info_tel i {
	margin-right: 4px;
}
#nav_drawer .dw_info_box .info_open {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.06em;
}
#nav_drawer ul a {
	color: #fff;
	width: 100%;
	display: block;
	padding: 18px 0 10px;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
}
#nav_drawer a:hover{
	color: #fdfd96;
}
#nav_drawer li a.active {
	color: #fdfd96;
}
.open #nav_drawer{
	display: block;
	-webkit-animation:fade-in-drawer 0.5s ease-in .3s both;animation:fade-in-drawer 0.5s ease-in .3s both;
	color: var(--color-pink1);
}
@-webkit-keyframes fade-in-drawer{0%{opacity:0}100%{opacity:1}}@keyframes fade-in-drawer{0%{opacity:0}100%{opacity:1}}

/*ドロワー・TELボタン*/
#nav_drawer li.infobox{
	width: 100%;
	text-align: center;
}
#nav_drawer li.infobox a {
	color: #fff;
}

@media screen and (min-width: 1001px) {
	.del_1000 {
		display: none;
	}
}
@media screen and (max-width: 1000px) {
	header nav.pc ul {
		display: none;
	}
	header h1.logo {
		float: left;
		padding: 6px 10px 0;
	}
}


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

footerフッター設定

****************************************/
footer {
	background: var(--color-pink2);
	font-size: 10px;
	padding: 20px 20px 0;
}
footer .inner {
	text-align: center;
}
/* パンくずリスト */
.breadcrumbs {
    width: 100%;
    background: var(--color-white1);
    border-radius: 16px;
    text-align: center;
    padding: 4px 0;
}
.breadcrumbs ol li {
    font-size: 1.2rem;
    display: inline-block;
    color: var(--color-pink1);
}
.breadcrumbs ol li:before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: inline;
	margin: 0 8px 0;
}
.breadcrumbs ol li:first-child:before {
	margin: 0;
	content: "\f015";
}
.breadcrumbs ol li a {
    color: var(--color-pink1);
}
/* テキストメニュー */
footer .nav{
	margin: 0 auto;
	padding: 10px 0;
	line-height: 20px;
	font-size: 1.2rem;
}
footer .nav li {
	display: inline-block;
	line-height: 30px;
}
footer .nav li a {
	color: var(--color-pink3);
	letter-spacing: 0.06em;
}
footer .nav li a:hover{
	opacity: 0.5;
}
footer .nav li:after {
	content: "　|　";
	display: inline;
	margin: 0 3px;
	color: var(--color-pink1);
}
footer .nav li:last-child:after {
	display: none;
}
/* ロゴ */
footer .inner .logo {
	margin: 30px 0;
}
footer .inner .logo img {
    max-width: 240px;
}
/* 電話番号&営業時間 */
footer .ft_info_box {
	margin: 0 auto;
	display: flex;
	justify-content: center;
    flex-direction: column;
	font-weight: bold;
}
footer .ft_info_box li {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
    line-height: 2.8rem;
	color: var(--color-pink3);
}
footer .ft_info_box li span {
	font-size: 2.4rem;
}
footer .ft_info_box li.reception {
	font-size: 1.4rem;
	font-weight: bold;
}
footer .ft_info_box li.reception span {
	font-size: 2.0rem;
}
footer .ft_info_box a {
	color: var(--color-pink3);
}
footer .ft_info_box a:hover {
	opacity: 0.5;
}
footer .ft_info_box li.info_tel {
    display: block;
    font-size: 1.3em;
}
/* コピーライト等 */
footer .footer_credit {
	color: var(--color-pink3);
}
footer .footer_link {
	padding: 5px 0;
	text-align: center;
	font-size: 12px;
	font-family: sans-serif;
	color: var(--color-pink3);
}
footer .footer_link a {
	color: var(--color-pink3);
	text-decoration: underline;
	text-decoration-color: var(--color-pink3);
}

/* アイコン */
footer .icon_box{
    display: flex;
    justify-content: center;
	margin: 20px auto;
}
footer .icon_box img {
    width: 30px;
	margin: 0 4px;
}
.footer_txt{
	margin: 10px;
	color: #fff;
}

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

/* 追従バナー */
#footer_menu {
	position:fixed;
	bottom: 5px;
	z-index: 999;
	margin: 0 auto;
	width: 100%;
}
#footer_menu p {
	text-indent:inherit;
	display:inline-block;
	margin-bottom: 0px;
	display: grid;
	place-content: center;
	letter-spacing: 0.08em;
}
#footer_menu p a{
	color: var(--color-white1);
	line-height: 1.2;
	padding: 5px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#footer_menu p a span{
	font-size: 12px;
}
#footer_menu p a img {
    width: 20px;
	margin-bottom: 4px;
}
.footer_menu_box {
	display: flex;
	position: relative;
    padding: 0 10px 5px;
	z-index: 999;
}
.footer_menu_box p {
	padding: 4px;
	background: var(--color-reserve);
	color: var(--color-white1);
	margin: 5px;
	font-size: 15px;
	width: 33%;
	border-radius: 10px;
}
.footer_menu_box p:first-child {
	background: var(--color-tel);
}
.footer_menu_box p.line{
	background: var(--color-line);
}

@media screen and (max-width: 768px){
	footer .inner .logo img {
		max-width: 200px;
	}
	footer {
		padding: 20px 20px 80px;
	}
}

/****************************************
mainvisualメインビジュアル
****************************************/
#mainvisual{
	width: 100%;
	height: auto;
	margin-top: 60px;
}
#mainvisual ul{
	width: 100%;
	height: auto;
}
#mainvisual ul li{
	width: 100%;
	height: 100%;
}
#mainvisual img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainvisual .logo{
	width: 100%;
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#mainvisual .logo img{
	width: 80%;
	max-width: 400px;
}
/* ↓flexslider.cssを上書き */
#mainvisual .flex-control-nav {
	bottom: 0;
}
/* flexslider.cssを上書き */
.flexslider{
	margin-bottom: 0;
	background: unset;
	border: none;
}
#mainvisual .swiper-wrapper {
    margin-bottom: 0;
}
#mainvisual .flex-control-paging li a.flex-active  {
	/*control-navのActiveな●の色を変えたい時はここを変更*/
	background-color: #fff000;
}
/* ↑flexslider.cssを上書き */

/****************************************
ヘッドライン
****************************************/
#headline {
	height: 36px;
	line-height: 36px;
	background: var(--color-lightpink1);
	width: 100%;
    text-align: center;
    overflow-x: hidden;
}
#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%); }
}

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

トップページ

****************************************/
/*トップページ共通*/
section .section_title {
	font-size: 6.4rem;
	color: var(--color-pink1);
	line-height: 1;
	letter-spacing: 0.06em;
	margin: 0 0 30px 0;
	font-family: "Damion", cursive;
	font-weight: 400;
	font-style: normal;
}
section .section_title .title_en {
	margin-right: 20px;
	display: inline-block;
}
section .section_title .title_ja {
	color: var(--white_color1);
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.8;
	font-family: sans-serif;
}
.icon_ribbon img {
    width: 160px!important;
    height: auto;
    margin-bottom: 4px;
}

#section_concept,
#section_schedule_today,
#section_topics,
#section_newface,
#section_covergirl{
	padding: 80px 20px;
}
#section_concept {
	padding: 60px 20px;
}
#section_event{
	padding: 80px 10px;
}
#section_area {
	padding: 0 20px 80px;
}

/*トップページ　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 .section_title {
		font-size: 4.2rem;
	}
	section .section_title .title_en {
    	margin-right: 0;
	}
	section .section_title .title_ja {
		font-size: 1.4rem;
		line-height: 2.0;
	}
}

/****************************************
コンセプト
****************************************/
#section_concept{
	background: url(../images/bg_top_concept.jpg) center / cover no-repeat;
	position: relative;
}
#section_concept h2 {
	display: none;
}
#section_concept .concept_txt_box {
	margin: auto;
	background: var(--color-beige1);
    border-radius: 20px;
}
#section_concept .txt_box_inner {
	position: relative;
	padding: 50px 150px;
	text-align: center;
}
#section_concept .txt_box_inner:before,
#section_concept .txt_box_inner:after {
	content: '';
	position: absolute;
    width: 120px;
    height: 120px;
	background: url(../images/frame_deco.png) top center / cover no-repeat;
}
#section_concept .txt_box_inner:before {
	top: 0;
	left: 0;
}
#section_concept .txt_box_inner:after {
	bottom: 0;
	right: 0;
	rotate: 180deg;
}
#section_concept .concept_txt_box p.note_txt {
	color: var(--color-pink1);
	font-size: 2.0rem;
	line-height: 2.0;
}
#section_concept .concept_txt_box p.note_txt span {
	display: inline-block;
    margin: 0 0.1em;
    background: linear-gradient(180deg, transparent 60%, #fdfd96 60%, #fdfd96 85%, transparent 85%, transparent 100%);
}
@media screen and (max-width: 768px){
	#section_concept .txt_box_inner {
		padding: 60px;
	}
}
@media screen and (max-width: 520px){
	#section_concept .txt_box_inner:before,
	#section_concept .txt_box_inner:after {
	    width: 100px;
	    height: 100px;
	}
	#section_concept .txt_box_inner {
		padding: 60px 30px;
	}
	#section_concept .concept_txt_box p.note_txt {
		font-size: 1.6rem;
		line-height: 1.6;
	}
}

/****************************************
イベントバナー
****************************************/
#section_event {
    background: var(--color-white1);
}
#section_event .section_bg {
    position: relative;
}
#section_event .section_bg:before {
    content: "";
    display: inline-block;
    background: url(../images/bg_sub_event_top.png) repeat-x;
    background-position: left top;
    width: 100%;
    height: 20px;
    position: absolute;
    top: -70px;
    right: 0;
}
#section_event .section_bg:after {
    content: "";
    display: inline-block;
    background: url(../images/bg_sub_event_bottom.png) repeat-x;
    background-position: left top;
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: -70px;
    right: 0;
}
#section_event img{
	width: 100%;
	max-width: 660px;
}
#section_event .swiper ul li{
	padding: 0 10px;
}
/* swiper ページネーション上書き */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 4px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	background: #c4c4c4;
	opacity: 1;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-pink1);
	opacity: 1;
}
/*swiper その他上書き*/
.swiper-wrapper{
	margin-bottom: 40px;
}
.profile_box_schedule .swiper-wrapper{
	margin-bottom: 0;
}
@media screen and (min-width: 768px) {
	#section_top_ranking_01 .swiper-wrapper{
		margin-bottom: 0;
	}
	#section_event .section_bg:before,
	#section_event .section_bg:after {
        background-size: contain;
    }
}
@media screen and (max-width: 767px) {
	#section_event .section_bg:before,
	#section_event .section_bg:after {
		background-size: auto 16px;
		height: 16px;
	}
}

/****************************************
本日の出勤情報
****************************************/
#section_schedule_today {
    background: url(../images/bg_crossheart.jpg) center top repeat;
    background-size: 260px;
}

/****************************************
新着情報
****************************************/
#section_topics {
	background: var(--color-beige1);
}
#section_topics .contents_title {
	margin-bottom: 10px;
}
#section_topics .topics_bg_box {
	padding: 20px;
}
#section_topics .topics_bg_box {
	margin: 0 auto;
	background: url(../images/bg_topics.jpg) no-repeat 50% 50%/cover;
    border-radius: 20px;
}
#section_topics .topics_box {
	background: var(--color-white1);
	padding: 30px 10px 30px 20px;
	border-radius: 20px;
}
#section_topics .topics_box_inner {
	overflow-y: auto;
	color: var(--color-navy1);
    min-height: 400px;
    max-height: 400px;
}
#section_topics .topics_box_inner::-webkit-scrollbar{
	width: 10px;
}
#section_topics .topics_box_inner::-webkit-scrollbar-track{
	background-color: var(--color-lightpink1);
}
#section_topics .topics_box_inner::-webkit-scrollbar-thumb{
	background-color: var(--color-pink1);
}
#section_topics .topics_box article{
	text-align: left;
	padding-right: 20px;
	padding: 0 10%;
	overflow-y: auto;
	margin-bottom: 30px;
}
#section_topics .topics_box article .article_title {
    padding-bottom: 4px;
	border-bottom: 3px dotted #ffc5d0;
}
#section_topics .topics_box article time {
	display: block;
    width: 140px;
	color: var(--color-white1);
    background: var(--color-bule1);
	font-size: 1.4rem;
    padding: 2px 20px;
	border-radius: 20px;
	text-align: center;
	margin: 0 auto 10px;
}
#section_topics .topics_box article .article_title h3 {
	text-align: center;
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	margin-bottom: 0;
}
#section_topics .topics_box article .article_box {
	padding-top: 20px;
}
#section_topics .topics_box article .article_box img {
	max-width: 100% !important;
	height: auto !important;
}
#section_topics .topics_box strong {
	font-weight: bold;
}
#section_topics .topics_box .btn_box {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding-top: 20px;
}
#section_topics .topics_box .btn_box a.btn_more {
	width: calc((100% - 8px)/2);
	max-width: 140px;
	margin: 0;
}

@media screen and (min-width: 1221px){
	#section_topics .topics_box .btn_box {
		display: none;
	}
}
@media screen and (max-width: 1220px){
	#section_topics .topics_box_inner {
		max-height: 600px;
	}
	#section_topics .topics_box .btn_box {
		padding: 20px 10px 0 0;
	}
}
@media screen and (max-width: 768px){
	#section_topics .topics_bg_box {
		padding: 12px;
	}
	#section_topics .topics_box article {
		padding: 0 16px 0 0;
	}
	#section_topics .topics_box article time {
		width: 120px;
	}
	#section_topics .topics_box article .article_title h3 {
		font-size: 1.6rem;
	}
	.btn_back,
	.btn_next {
		width: 140px;
		height: 40px;
		line-height: 36px;
		font-size: 1.4rem;
	}
}

/****************************************
出張エリア
****************************************/
#section_area {
	background: var(--color-beige1);
}
#section_area,
#contents_area{
	width: 100%;
	position: relative;
}
#section_area .info_box_bg,
#contents_area .info_box_bg {
	background: url(../images/bg_onsite.jpg) no-repeat 50% 50% / cover;
    border-radius: 20px;
	padding: 20px;
}
#section_area .info_box,
#contents_area .info_box {
	background: var(--color-white1);
	border-radius: 20px;
	padding: 2%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
	z-index: 2;
	gap: 16px;
}
#section_area .info_box .img_box_area,
#contents_area .info_box .img_box_area{
	width: min(550px , 50%);
	position: relative;
}
#section_area .info_box .text_box_area,
#contents_area .info_box .text_box_area{
	width: min(550px , 50%);
	text-align: left;
	font-size: 1.2em;
	line-height: 1.5em;
}
#section_area .info_box div img,
#contents_area .info_box div img{
	width: 100%;
	margin: 0 auto;
	max-width: 450px;
}
#section_area .info_box .text_box_area .area_1000,
#section_area .info_box .text_box_area .area_2000,
#section_area .info_box .text_box_area .area_3000,
#contents_area .info_box .text_box_area .area_1000,
#contents_area .info_box .text_box_area .area_2000,
#contents_area .info_box .text_box_area .area_3000{
	width: 100%;
	padding: 10px;
	margin: 20px 0 10px;
	text-align: center;
	background: var(--color-white1);
	border-radius: 20px;
}
#section_area .info_box .text_box_area .area_1000,
#contents_area .info_box .text_box_area .area_1000,
#section_area .info_box .text_box_area .area_2000,
#contents_area .info_box .text_box_area .area_2000,
#section_area .info_box .text_box_area .area_3000,
#contents_area .info_box .text_box_area .area_3000{
	border-radius: 20px;
	display: inline-block;
}
#section_area .info_box .text_box_area .area_1000,
#contents_area .info_box .text_box_area .area_1000{
	border: 2px solid #ff87a2;
	color: #ff87a2;
}
#section_area .info_box .text_box_area .area_2000,
#contents_area .info_box .text_box_area .area_2000{
	border: 2px solid #5fd2f0;
	color: #5fd2f0;
}
#section_area .info_box .text_box_area .area_3000,
#contents_area .info_box .text_box_area .area_3000{
	border: 2px solid #66dc61;
	color: #66dc61;
}
#section_area .info_box .text_box_area .area_1000 .area_price,
#contents_area .info_box .text_box_area .area_1000 .area_price,
#section_area .info_box .text_box_area .area_2000 .area_price,
#contents_area .info_box .text_box_area .area_2000 .area_price,
#section_area .info_box .text_box_area .area_3000 .area_price,
#contents_area .info_box .text_box_area .area_3000 .area_price{
	font-size: 2.0rem;
	font-weight: bold;
	display: block;
	margin-bottom: 4px;
}
#section_area .info_box .text_box_area .area_1000 .area_dotline,
#contents_area .info_box .text_box_area .area_1000 .area_dotline,
#section_area .info_box .text_box_area .area_2000 .area_dotline,
#contents_area .info_box .text_box_area .area_2000 .area_dotline,
#section_area .info_box .text_box_area .area_3000 .area_dotline,
#contents_area .info_box .text_box_area .area_3000 .area_dotline {
	display: block;
	width: 95%;
	height: 1px;
	margin: 4px auto;
}
#section_area .info_box .text_box_area .area_1000 .area_dotline,
#contents_area .info_box .text_box_area .area_1000 .area_dotline {
	border-bottom: 2px dotted #ff87a2;
}
#section_area .info_box .text_box_area .area_2000 .area_dotline,
#contents_area .info_box .text_box_area .area_2000 .area_dotline {
	border-bottom: 2px dotted #5fd2f0;
}
#section_area .info_box .text_box_area .area_3000 .area_dotline,
#contents_area .info_box .text_box_area .area_3000 .area_dotline {
	border-bottom: 2px dotted #66dc61;
}
#section_area .info_box .text_box_area .area_1000 .area_time,
#contents_area .info_box .text_box_area .area_1000 .area_time,
#section_area .info_box .text_box_area .area_2000 .area_time,
#contents_area .info_box .text_box_area .area_2000 .area_time,
#section_area .info_box .text_box_area .area_3000 .area_time,
#contents_area .info_box .text_box_area .area_3000 .area_time{
	font-size: 1.6rem;
	display: block;
}
#section_area .info_box .text_box_area .area_name,
#contents_area .info_box .text_box_area .area_name{
	font-size: 1.4rem;
}
#section_area .info_box .text_box_area .area_notes,
#contents_area .info_box .text_box_area .area_notes{
	font-size: 1.2rem;
	margin: 20px 0;
	line-height: 1.8rem;
}

@media screen and (max-width: 768px){
	#section_area .info_box_bg,
	#contents_area .info_box_bg {
		padding: 12px;
	}
	#section_area .info_box,
	#contents_area .info_box {
		flex-wrap: wrap;
		padding: 30px 20px 30px;
		gap: 0;
	}
	#section_area .info_box div img,
	#contents_area .info_box div img {
		max-width: 100%;
	}
	#section_area .info_box .img_box_area,
	#section_area .info_box .text_box_area,
	#contents_area .info_box .img_box_area,
	#contents_area .info_box .text_box_area{
		width: 100%;
		margin-bottom: 0;
	}
	#section_area .info_box .text_box_area .area_notes,
	#contents_area .info_box .text_box_area .area_notes {
		margin: 20px 0 0;
	}
}
@media screen and (max-width: 480px){
    #section_area .info_box .img_box_area,
	#section_area .info_box .text_box_area,
	#contents_area .info_box .img_box_area,
	#contents_area .info_box .text_box_area {
        width: 100%;
        margin-bottom: 0;
    }
	#section_area .info_box .text_box_area .area_1000 .area_time,
	#contents_area .info_box .text_box_area .area_1000 .area_time,
	#section_area .info_box .text_box_area .area_2000 .area_time,
	#contents_area .info_box .text_box_area .area_2000 .area_time,
	#section_area .info_box .text_box_area .area_3000 .area_time,
	#contents_area .info_box .text_box_area .area_3000 .area_time {
		font-size: 1.4rem;
	}
}

/****************************************
ピックアップ
****************************************/
#section_covergirl {
	background: url(../images/bg_top_pickup.jpg) center / cover no-repeat;
    position: relative;
}
#section_covergirl .inner {
	position: relative;
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 20px 0;
	border-radius: 20px;
	background: var(--color-beige1);
}
#section_covergirl .inner::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -50px;
	width: 120px;
    height: 100px;
	background: url(../images/img_heart_01.png) no-repeat center center / contain;
	z-index: 2;
}
#section_covergirl .inner::after {
	content: "";
	position: absolute;
	bottom: -20px;
	right: -60px;
	width: 120px;
    height: 80px;
	background: url(../images/img_heart_02.png) no-repeat center center / contain;
	z-index: 2;
}
#section_covergirl .system_img_wrap img {
	width: min(100%, 690px);
}
#section_covergirl .cast_box li .icon_new{
    width: 100%;
    max-width: 80px;
	position: absolute;
	top: 0;
    left: 20px;
}
@media screen and (max-width: 768px){
	#section_covergirl .inner {
		max-width: 320px;
        padding: 40px 10px 0;
	}
	#section_covergirl .swiper{
		width: 220px;
		margin: 0 auto;
	}
	#section_covergirl .cast_box li .icon_new{
		max-width: 40px;
		top: 10px;
		left: 10px;
	}
	#section_covergirl .cast_box li .icon_box img {
		width: 36px;
		margin: 0 8px 0 4px;
	}
	#section_covergirl .inner::before {
		top: -20px;
		left: -50px;
		width: 120px;
		height: 100px;
	}
	#section_covergirl .inner::after {
		bottom: -20px;
		right: -20px;
		width: 100px;
		height: 70px;
	}
}
@media screen and (max-width: 480px){
	#section_covergirl .inner {
		width: 90%;
		max-width: 400px;
	}
}

/****************************************
誘導バナー
****************************************/
.bg_bnr {
  background: #fff9f0 url(../images/bg_top_bnr.png) bottom center / 100% auto no-repeat;
  position: relative;
  padding: 100px 20px;
}
#contents_bnr{
	padding: 0 0 40px;
}
#contents_bnr ul {
	margin: 0 auto;
}
#contents_bnr ul li {
	width: 385px;
	display: inline-block;
	margin: 0 5px 10px;
	text-align: center;
	vertical-align: middle;
}
#contents_bnr ul li img,
#contents_bnr a img{
    width: auto;
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 480px){
	#contents_bnr ul li {
		width: 100%;
		display: block;
		margin: 0 0 10px 0;
	}
}

#contents_affiliated ul {
	margin: 0 auto;
}
#contents_affiliated ul li {
	width: 240px;
	display: inline-block;
	margin: 0 5px 10px;
	text-align: center;
	vertical-align: middle;
}
#contents_affiliated ul li img,
#contents_affiliated a img{
    width: auto;
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 768px){
	#contents_affiliated ul li {
		width: 180px;
	}
}
@media screen and (max-width: 580px){
	#contents_affiliated ul li {
		width: 148px;
		margin: 0 4px 10px;
	}
}



  /* 矢印 */
  .accordion-title {
	position: relative;
  }
  .accordion-title::after {
	border-right: solid 2px #fff;
	border-top: solid 2px #fff;
	content: "";
	display: block;
	height: 8px;
	position: absolute;
	right: 25px;
	top: 38%;
	transform: rotate(135deg);
	transition: transform .3s ease-in-out, top .3s ease-in-out;
	width: 8px;
  }
  .accordion-title.open::after {
	top: 45%;
	transform: rotate(-45deg);
  }



/* 矢印非表示 */
.swiper-button-next.next,.swiper-button-prev.prev{
	display: none;
}

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

下層ページ

****************************************/
/*下層ページ共通設定*/
#contents_system,
#contents_cast,
#contents_schedule,
#contents_profile,
#contents_area,
#contents_contact,
#contents_enquete,
#contents_reserve,
#contents_entry,
#contents_link,
#contents_err {
	padding: 80px 20px;
	background: url(../images/bg_crossheart.jpg) center top repeat;
    background-size: 260px;
}
#contents_recruit {
	padding: 80px 20px 0;
	background: url(../images/bg_crossheart.jpg) center top repeat;
    background-size: 260px;
}
.subvisual{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 32vh;
	padding: 100px 0;
	background: url(../images/subvisual.jpg) center center / cover no-repeat;
	color: var(--color-pink1);
	margin-top: 60px;
}
.subvisual h2{
	font-size: 4.0rem;
	font-family: "Damion", cursive;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	line-height: 0.8;
	text-shadow:
		-2px -2px 0 #fff,
		-1px -2px 0 #fff,
		0px -2px 0 #fff,
		1px -2px 0 #fff,
		2px -2px 0 #fff,
		-2px -1px 0 #fff,
		2px -1px 0 #fff,
		-2px  0px 0 #fff,
		2px  0px 0 #fff,
		-2px  1px 0 #fff,
		2px  1px 0 #fff,
		-2px  2px 0 #fff,
		-1px  2px 0 #fff,
		0px  2px 0 #fff,
		1px  2px 0 #fff,
		2px  2px 0 #fff;
}
.subvisual h2 span{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-transform: none;
	font-size: 1.6rem;
	text-shadow:
		-2px -2px 0 #fff,
		-1px -2px 0 #fff,
		0px -2px 0 #fff,
		1px -2px 0 #fff,
		2px -2px 0 #fff,
		-2px -1px 0 #fff,
		2px -1px 0 #fff,
		-2px  0px 0 #fff,
		2px  0px 0 #fff,
		-2px  1px 0 #fff,
		2px  1px 0 #fff,
		-2px  2px 0 #fff,
		-1px  2px 0 #fff,
		0px  2px 0 #fff,
		1px  2px 0 #fff,
		2px  2px 0 #fff;
}

/*ボックス*/
.contents_box_01 {
    background: var(--color-beige1);
    border: solid 2px var(--color-pink1);
    padding: 40px 20px;
	border-radius: 20px;
}
@media screen and (min-width: 520px) {
	.contents_box_01{
	    padding: 40px 30px;
	}
}

@media screen and (max-width: 768px) {
	.subvisual{
		height: 28vh;
	}
}

/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
    display: grid;
    gap: 10px;
    margin: 40px auto;
}
.schedule_nav li:first-child {
    grid-column: 1 / 3;
}
.schedule_nav li a {
	font-size: 13px;
	padding: 10px 2px;
    display: block;
    background: var(--color-beige1);
	border-radius: 20px;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}
.schedule_nav li a:hover {
	opacity: 0.6;
}
.schedule_nav li.active a {
	background: var(--color-pink2);
	color: var(--color-pink3);
}
.schedule_nav li.active a:hover{
	opacity: 1;
}
.schedule_week_box .swiper-wrapper{
	margin-bottom: 0;
}
@media screen and (min-width: 767px) {
	.schedule_nav {
        grid-template-columns: repeat(7, 1fr);
    }
    .schedule_nav li:first-child {
        grid-column: 1 / 1;
    }
}
/* ナビゲーションボタン 上書き*/
.sch_nav_btn.swiper-button-prev,
.sch_nav_btn.swiper-button-next {
	margin-top: 0;
	width: auto;
	height: 32px;
	color: var(--color-white1);
	background: var(--color-bule1);
	transition: ease 0.3s;
	border-radius: 20px;
}
.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;
}

/****************************************
スケジュールページ
****************************************/
#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;
}
#contents_profile .profile_box_left {
    width: 100%;
}
#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 {
    /* isplay: flex; */
    max-width: 200px;
    width: 60px;
    height: 90px;
    object-fit: cover;
    justify-content: center;
    margin: 0 auto;
}
#contents_profile .profile_box_left .cast_thumb a {
    margin-right: 4px;
}
#contents_profile .profile_box_right {
    width: 100%;
}
#contents_profile .profile_box_right .icon{
	display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
#contents_profile .profile_box_right .icon img{
	width: 100%;
}
#contents_profile .profile_box_right .name .icon_x {
    width: 30px;
    margin-bottom: 2px;
}
#contents_profile .img_box > img.main-photo{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_profile .profile_box_right .short_comment {
	color: var(--color_purple1);
}
#contents_profile .profile_box_right .long_comment {
	word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    overflow: hidden;
}
#contents_profile .youtube_video{
	width: 100%;
}
@media screen and (min-width: 767px) {
	#contents_profile .profile_wrap {
	    gap: 20px;
	    justify-content: space-between;
	}
	#contents_profile .profile_box_left {
	    width: 40%;
	}
	#contents_profile .profile_box_right {
	    width: calc(60% - 40px);
	}
	#contents_profile .profile_box_right .pink_wrap{
		padding: 20px 40px 30px;
	}
	#contents_profile .profile_box_right .icon{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: block;
	box-sizing: border-box;
	/* margin-top: 40px; */
}
.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 var(--color-pink2);
	background: var(--color-pink1);
	color: var(--color-white1);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable:last-child .profile_sch_date{
	border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.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 #dfccd0;
}
#contents_profile .contents_title {
	font-size: 2.4rem;
	color: var(--color-pink1);
	line-height: 1;
	letter-spacing: 0.06em;
	margin: 0 0 8px 0;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
}
#contents_profile .icon_heart img {
    width: 60px!important;
    height: auto;
    margin-bottom: 20px;
}
#contents_profile .profile_box_right video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/****************************************
システムページ
****************************************/
/* メッセージ */
#contents_system .txtbox01 {
	padding: 20px;
	margin: 0 auto 30px;
	background: url(../images/bg_topics.jpg) no-repeat 50% 50%/cover;
	border-radius: 20px;
}
#contents_system .txtbox01_txt {
	padding: 30px;
	background: var(--color-white1);
	position: relative;
	border-radius: 20px;
}
#contents_system .txtbox01_txt p {
	font-size: 1.5rem;
}
#contents_system .txtbox01_txt p span {
	color: var(--color-pink1);
}
#contents_system .table_system{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
#contents_system .table_system tr {
	border-bottom: 3px dotted #ffc5d0;
}
#contents_system .table_system td {
	width: 50%;
	padding: 16px 0;
	text-align: center;
	vertical-align: middle;
	font-size: clamp(20px, 4vw, 36px);
	line-height: 1.2;
}
#contents_system .table_system .price_normal {
  font-size: clamp(14px, 1.5vw, 18px);
  margin: 0;
  line-height: 1.2;
}
#contents_system .table_system .price_first {
  font-size: clamp(20px, 4vw, 36px);
  font-weight: bold;
  color: var(--color-pink1);
  margin: 0;
  line-height: 1.2;
}
#contents_system .table_system td span {
	font-size: 2.0rem;
}
#contents_system .table_system td span.free {
	font-size: 2.4rem;
}
#contents_system .table_system td p {
	font-size: clamp(12px,2vw,14px);
}
#contents_system .menu_txt {
	margin: 8px 0;
}
#contents_system a.credit_lnk{
	width: min(100%, 385px);
	display: block;
	margin: 40px auto 0px;
}
/* 料金ボックス */
.section_box .section_txt {
	background: var(--color-beige1);
	border-radius: 20px;
	border: solid 2px var(--color-pink2);
}
.section_box:not(:last-of-type) {
	margin-bottom: clamp(20px, 8vw, 40px);
}
.section_box .contents_title {
	font-size: 3.6rem;
	color: var(--color-pink1);
	line-height: 1;
	letter-spacing: 0.06em;
	margin: 0 0 8px 0;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.section_box .icon_heart img {
    width: 80px!important;
    height: auto;
    margin-bottom: 20px;
}
.section_box .section_txt {
	padding: clamp(20px, 3vw, 30px) clamp(16px, 5vw, 50px) clamp(30px, 5vw, 50px);
}
/* おすすめ */
.recommend {
	font-size: 12px;
	color: var(--color-white1);
	background: var(--color-pink1);
	border-radius: 20px;
	padding: 2px;
	width: 100px;
	margin: 0 auto;
}

/* 注意事項・禁止事項 */
.contents_title2 {
	font-size: 2.4rem;
	letter-spacing: 0.06em;
    margin-bottom: 20px;
	color: var(--color-pink1);
	font-weight: bold;
}
.contents_box_02 .rules_list {
    list-style: none;
	text-align: left;
}
.contents_box_02 .rules_list li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.5;
}
.contents_box_02 .rules_list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.0em;
}

@media screen and (max-width: 768px) {
	#contents_system .txtbox01 {
		padding: 12px;
		margin: 0 auto 30px;
	}
	#contents_system .txtbox01_txt {
		padding: 30px 16px;
		/*text-align: left;*/
	}
	.section_box .contents_title {
		font-size: 3.2rem;
	}
	.section_box .icon_heart img {
		width: 72px !important;
	}
	#contents_system .menu_txt {
		line-height: 2.0rem;
	}
	#contents_system .table_system td span {
		font-size: 1.6rem;
	}
	.contents_title2 {
		font-size: 1.8rem;
	}
}

/****************************************
求人情報ページ
****************************************/
#contents_recruit .txtbox01 {
    padding: 40px;
    margin: 0 auto 40px;
    background: url(../images/bg_txtbox.jpg) no-repeat top center / cover;
	border-radius: 20px;
}
#contents_recruit .txtbox01_txt {
	padding: 30px;
	background: rgba(255, 255, 255, 0.9);
	outline: 1px solid #fff;
	outline-offset: 20px;
	position: relative;
	border-radius: 20px;
}
#contents_recruit .txtbox01_txt h3 {
	font-size: 20px;
	margin-bottom: 16px;
	color: var(--color_pink1);
	text-align: center;
}
#contents_recruit .txtbox01_txt ul {
	padding: 20px;
	list-style: none;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
#contents_recruit .txtbox01_txt ul li {
    font-size: 14px;
	line-height: 1.6;
}
#contents_recruit .txtbox01_txt ul li:nth-child(even){
	color: var(--color_purple1);
}
#contents_recruit .txtbox01_txt ul li:nth-child(even){
	color: var(--color_purple1);
}
#contents_recruit .txtbox01_txt p{
	font-size: 1.6rem;
}
#contents_recruit .txtbox01_txt p span{
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--color-pink1);
}
#contents_recruit .txt_message {
	text-align: center;
	margin-top: 20px;
	font-size: 16px;
}

#contents_entry .contents_title {
	font-size: 3.6rem;
	color: var(--color-pink1);
	line-height: 1;
	letter-spacing: 0.06em;
	margin: 0 0 8px 0;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
}
#contents_entry .icon_heart img {
    width: 80px!important;
    height: auto;
    margin-bottom: 20px;
}
/* 応募ボタン */
#contents_recruit .btn_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 10px;
}
#contents_recruit .btn_list li a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 12px 0;
	border-radius: 99px;
	background: var(--color-pink1);
	color: var(--color-white1);
}
#contents_recruit .btn_list li:nth-child(1) a {
	background: var(--color-tel);
}
#contents_recruit .btn_list li:nth-child(2) a {
	background: var(--color-line);
}
#contents_recruit .btn_list li:nth-child(3) a {
	background: var(--color-reserve);
}
#contents_recruit .btn_list li a img {
	width: auto;
	height: 18px;
}

@media screen and (max-width: 768px) {
	#contents_recruit .txtbox01_txt {
		padding: 30px 10px;
	}
	#contents_recruit .txtbox01_txt h3 {
		font-size: 18px;
	}
	#contents_recruit .txtbox01_txt ul {
		text-align: left;
	}
	#contents_recruit .txt_message {
		font-size: 14px;
	}
	#contents_entry .contents_title {
		font-size: 3.2rem;
	}
	#contents_entry .icon_heart img {
		width: 72px !important;
	}
	#contents_recruit .btn_list {
		grid-template-columns: 1fr;
	}
	#contents_recruit .txtbox01 {
		padding: 20px;
	}
	#contents_recruit .txtbox01_txt {
		padding: 30px 16px;
		outline-offset: 10px;
	}
	#contents_recruit .txtbox01_txt p{
		font-size: 1.4rem;
	}
	#contents_recruit .txtbox01_txt p span{
		font-size: 1.6rem;
	}
}

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

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


/****************************************
リンクページ
****************************************/
#contents_link .free_link_box img {
    width: auto!important;
    max-width: 100%!important;
    height: auto!important;
}
.free_link_box{
	text-align: initial;
}
#contents_link .contents_title {
	font-size: 3.6rem;
	color: var(--color-pink1);
	line-height: 1;
	letter-spacing: 0.06em;
	margin: 0 0 8px 0;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
}
#contents_link .icon_heart img {
    width: 80px!important;
    height: auto;
    margin-bottom: 20px;
}

/****************************************
404ページ
****************************************/
#contents_err #err_title {
	color: var(--color-pink3);
}


