@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(--white);
	background: var(--black);
	font-size: 14px;
	font-weight: 400;
	font-family: Cinzel, "游明朝" , "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}
}

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

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

/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
#wrapper {
    margin-top: 60px;
}
a, a:hover{
	color: var(--white);
}
main{
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
}
main.sub_page{
	margin: 60px auto 0;
}
img{
	max-width: 100%;
  	height: auto;
}

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

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

/*選択時の背景色*/
::selection {
    background: var(--gold);
}

/* フォーカスイン*/
.focusin{opacity: 0;}
.focusin.on {
	-webkit-animation: focus-in 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation: focus-in 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	opacity: 0;
}
@keyframes focus-in {
	0% {-webkit-filter: blur(12px);filter: blur(12px);opacity: 0;}
	100% {-webkit-filter: blur(0px);filter: blur(0px);opacity: 1;}
}
/*.focusin{
	opacity: 0;transform : translate(0, 100px);
	transition : all 1.5s;
}
.focusin.on {
	opacity : 1;
	transform : translate(0, 0);
}*/

/* 配色 共通 */
:root {
	--black: #080403;
	--white: #f8f8f8;
	--gray: #5b5b5b;
	--red: #560122;
	--gold: #d6c29b;
	--gray_border: 1px solid #5b5b5b;
}

/*文字色*/
.atten_01, .atten_01 a{color: #5189b6;}
.atten_02, .atten_02 a{color: #b65151;}
.color_gold{color: var(--gold);}

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

.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_ss{font-size: 0.8em;}
.fs_s{font-size: 0.9em;}
.fs_12em{font-size: 1.2em;}
.fs_15em{font-size: 1.5em;}

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

/*ボックス*/
.black_box{
	padding: clamp(20px, 6vw, 40px);
    background: rgba(8, 4, 3, .8);
    border: var(--gray_border);
}

/*table設定*/
/*table01*/
.table_01 {
	width: 100%;
	border-spacing: 0;
	text-align: left;
}
.table_01 tr{
	border-bottom: 1px solid #282828;
}
.table_01 tr:last-child{
	border-bottom: 0;
}
.table_01 th, .table_01 td {
	padding: min(4%, 20px) 10px;
}
.table_01 th {
	width: 40%;
	vertical-align: middle;
	line-height: normal;
	color: var(--gold);
}
.table_01 td {
	width: 60%;
}

/*table02*/
.table_02{
	padding: clamp(20px, 6vw, 40px);
    background: rgba(8, 4, 3, .8);
    border: var(--gray_border);
}
#contents_recruit .table_02{
	padding: 0;
	background: none;
	border: 0;
	text-align: left;
}
.table_02>div{
	border-bottom: 1px solid #282828;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.table_02>div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
	margin-bottom: 0;
}


/*table_form*/
table{
	width: 100%;
}
::placeholder {
    color: var(--gray);
}
.table_form{
	display: block;
	padding: clamp(20px, 6vw, 40px);
    background: rgba(8, 4, 3, .8);
    border: var(--gray_border);
}
.table_form tr{
	border-bottom: 0.5px solid #282828;
	padding: 14px 0 20px;
    display: block;
}
.table_form tr:last-child{
	border-bottom: 0;
	padding: 14px 0 0;
}
.table_form th,
.table_form td{
	width: 100%;
	display: block;
	text-align: left;
}
.confirm .table_form td{
	padding: 0 10px;
}
.confirm .table_form tr.form_wide td{
	max-width: 190px;
}
.table_form th{
	margin-bottom: 4px;
	color: var(--gold);
}
.table_form td p{
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.table_form .form_wide td input {
    max-width: 190px;
}
#contents_contact form select{
	width: 100%;
    max-width: 300px;
}
form select {
	width: 100%;
    max-width: 300px;
}
.font_family{font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;}
@media screen and (min-width: 767px) {
	.table_form th,
	.table_form td{
		vertical-align: top;
	}
}


/*********** ボタン設定 ***********/
/*矢印付きボタン*/
.btn_more {
    position: relative;
	border: 1px solid var(--gray);
	border-radius: 5px;
	background: rgba(8, 4, 3, .8);
	text-align: center;
	max-width: 200px;
	margin: 0 auto;
	transition: all .4s linear;
	z-index: 0;
}
.btn_more::before {
	transition: all .4s linear;
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: var(--gray) 1px solid;
	border-right: var(--gray) 1px solid;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position:absolute;
    right: 20px;
    top: 46%;
	/*	bottom: 15%;*/
	margin: auto;
}
.btn_more a {
	color: var(--white);
	display: block;
	width: 100%;
	height: 40px;
	line-height: 20px;
	padding: 10px;
	box-sizing: border-box;
	transition: all .4s linear;
}
.btn_more.uppercase {
	text-transform: uppercase;
}
.btn_more:hover::before{
  right: 10px;
}

/* フォームのボタン */
.btn_wrapper {
  display: inline-block;
  position: relative;
  width: 200px;
}
.btn_wrapper input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.btn_form {
    display: inline-block;
    width: 100%;
    height: 40px; 
    line-height: 40px;
    border-radius: 6px;
    background: rgba(8, 4, 3, .8);
    border: var(--gray_border);
    position: relative;
    transition: .4s;
    cursor: pointer;
}
.btn_form::before {
  	transition: all .4s linear;
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: var(--gray) 1px solid;
	border-right: var(--gray) 1px solid;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position:absolute;
	right: 20px;
	top: 4px;
	bottom: 15%;
	margin: auto;
}
.btn_form:hover::before{
  right: 10px;
}
/*リセットボタン*/
input[type="reset"],
.btn_negative {
	font-family: serif;
    padding: 0;
    background: none;
    margin: 10px auto 0;
    border: 0;
    border-bottom: 1px solid var(--gray);
    color: var(--gray);
    display: block;
    transition:all 0.4s;
    border-radius: 0;
    cursor: pointer;
}
input[type="reset"]:hover,
.btn_negative:hover {
    opacity: .6;
}


/******************************
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;
	font-size: 16px;
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
/*フォームのスタイルを設定*/
form input[type="text"],
form input[type="email"],
form textarea,
form select {
	border: 1px solid #eee;
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 8px;
	vertical-align: baseline;
}
form select{
	color: var(--black);
	max-width: 200px;
}
form textarea {
    width: 100%;
    resize: vertical;
}
form input[type="text"],
form input[type="email"],
form textarea {
	width: 100%;
}
form textarea {
    height: 200px;
    resize: vertical;
}
form .form_txt {
	margin-top: 5px;
}
form input[type="text"].form_short {
	max-width: 80px;
}
form input[type="text"].form_middle {
	max-width: 120px;
}
form input[type="radio"],
form input[type="checkbox"] {
	margin: 0 4px;
	vertical-align: baseline;
	accent-color: var(--red);
}
form .form_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
form input::placeholder,
form textarea::placeholder {
	color: #ccc;
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (max-width: 768px) {
	form input[type="text"],
	form input[type="email"],
	form textarea {
		font-size: 16px;
	}
	form .form_list {
		grid-template-columns: 1fr;
	}
}
.icon_required {
	display: inline-block;
	font-size: 0.7em;
	padding: 5px 4px 2px;
	line-height: 1;
	color: var(--white);
	background: var(--red);
}


/******************************
セラピスト共通設定
******************************/
section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .cast_box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px min(2%, 30px);
}
.cast_box .cast_box_list{
	border: var(--gray_border);
	background: rgba(8, 4, 3, .8);
}
#section_top_ranking_01 .cast_box .cast_box_list{
	border: 0;
	background: initial;
}
.cast_box .cast_box_list{
	position: relative;
}
.cast_box .cast_box_list .img_box,
.profile_box_left .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	position: relative;
	overflow: hidden;
}
.cast_box .cast_box_list .img_box .img_cast,
.profile_box_left .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/*詳細を見る文字*/
.cast_box li a {
  display: block;
  overflow: hidden;
}
.cast_box li a .img_box {
  position: relative;
}
.cast_box li a .img_box > img.img_cast {
  width: 100%;
  display: block;
  transition: 0.4s all;
}
.cast_box li a:hover .img_box > img.img_cast {
  transform: scale(1.1);
  filter: blur(5px);
}
.cast_box li a .img_box .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
  width: max-content;
}
.cast_box li a:hover .img_box .caption {
  opacity: 1;
}
.cast_box li a .img_box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(8, 4, 3, .5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.cast_box li a:hover .img_box::before {
  opacity: 1;
}
/*新人&体験入店アイコン*/
.icon_new_exp{
	position: absolute;
	bottom: 10px;
	left: 10px;
	display:flex;
  	flex-flow: column;
  	gap: 4px;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_new_exp{
	bottom: 4px;
	left: 4px;
}
.cast_box .cast_box_list .icon_new,
.cast_box .cast_box_list .icon_exp{
	width: 30px;
}
.profile_box_left .icon_new,
.profile_box_left .icon_exp{
	width: 50px;
}
@media screen and (min-width: 768px){
	.icon_new_exp{
	  	gap: 8px;
	}
	.cast_box .cast_box_list .icon_new,
	.cast_box .cast_box_list .icon_exp{
		width: 50px;
	}
}
/*ランクアイコン*/
.img_rank{
	position: absolute;
	top: 0;
	right: 10px;
	width: 45px;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .img_rank{
	position: absolute;
	top: 0;
	right: 5px;
	width: 25px;
}
@media screen and (min-width: 768px){
	.img_rank{
		right: 10px;
		width: 60px;
	}
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .img_rank{
		right: 10px;
		width: 60px;
	}
}
/* Xアイコン */
.icon_x {
    width: 16px;
    margin-bottom: 1px;
}
@media screen and (min-width: 768px){
	.icon_x {
	    width: 20px;
	}
}
.txt_box{
	font-size: 14px;
	letter-spacing: 0.1em;
	padding: 10px;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .txt_box{
	font-size: 12px;
	letter-spacing: 0;
	padding: 6px 4px 4px;
}
@media screen and (min-width: 768px){
	.txt_box{
		font-size: 14px;
		letter-spacing: 0.1em;
		padding: 10px;
	}
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .txt_box{
		font-size: 14px;
		letter-spacing: 0.1em;
		padding: 10px;
	}
}
.txt_box .name,
#contents_profile .name {
	line-height: normal;
	display: flex;
    justify-content: center;
}
.txt_box .size,
#contents_profile .size {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    line-height: normal;
}
.txt_box .time{
	border-top: var(--gray_border);
	color: var(--gold);
	line-height: normal;
	margin-top: 4px;
	padding-top: 4px;
}
/*状態アイコン*/
.icon_status {
    display: grid;
	align-items: baseline;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
	padding-top: 4px;
}
.icon_status span {
	display: block;
    height: 20px;
    line-height: 22px;
    background: #303030;
	color: var(--white);
	font-size: 0.6rem;
	letter-spacing: 0;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span {
	height: 16px;
    line-height: 18px;
	font-size: 0.5rem;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_06,
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_10,
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_11,
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_14,
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_17 {
	font-size: 0.4rem;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_10{
	font-size: 0.45rem;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_07,
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_15,
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .icon_status span.icon_check_16 {
	font-size: 0.5rem;
}
#section_covergirl .icon_status span {
    background: #6d1124;
}
@media screen and (min-width: 768px) {
	#contents_profile .icon_status{gap: 10px;}
	.icon_status span {
		letter-spacing: 0.1em;
	}
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span {
		height: 20px;
	    line-height: 22px;
		font-size: 0.7rem;
	}
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_06,
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_07,
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_10,
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_11,
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_14,
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_15,
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_16,
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .icon_status span.icon_check_17 {
		font-size: 0.7rem;
	}
}
/*状態アイコン スタンダード、プレミアム、ダイヤモンドのみ色を変える（不要になりましたが残します）*/
/*#section_covergirl .icon_status span:not(span.icon_check_00,span.icon_check_01,span.icon_check_02) {
    background: #6d1124;
}*/
/*スタンダード*/
/*.icon_status span.icon_check_00 {
  position: relative;
  display: inline-block;
  border: 1px solid;
  border-image: linear-gradient(0deg, blue, #FFB700, blue) 1;
  background: linear-gradient(to right, gold, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #blue, #FFB700, #blue);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.icon_status span.icon_check_00::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000, #333333, #000000);
  z-index: -1;
}*/

/*プレミアム*/
/*.icon_status span.icon_check_01 {
  position: relative;
  display: inline-block;
  border: 1px solid;
  border-image: linear-gradient(0deg, red, #FFB700, red) 1;
  background: linear-gradient(to right, gold, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #red, #FFB700, #red);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.icon_status span.icon_check_01::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000, #333333, #000000);
  z-index: -1;
}*/

/*ダイヤモンド*/
/*.icon_status span.icon_check_02 {
  position: relative;
  display: inline-block;
  border: 1px solid;
  border-image: linear-gradient(90deg, #FFD700, #FFB700, #FFD700) 1;
  background: linear-gradient(to right, gold, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #FFD700, #FFB700, #FFD700);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.icon_status span.icon_check_02::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000, #1a1a1a, #333333);
  z-index: -1;
}*/
.cast_box .cast_box_list .frame,
.profile_box_left .frame{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
}
.cast_box .cast_box_list .frame img,
.profile_box_left .frame img{
	width: 100%;
	display: block;
}
.cast_box .cast_box_list .txt_box .icon{
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 0 auto 6px;
}
.cast_box .cast_box_list .txt_box .icon img {
    width: 100%;
    padding: 2px;
}
.cast_box .cast_box_list .txt_box .sch_info{
    background: #000;
    color: var(--white);
    padding: 4px;
}


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

headerヘッダー設定

****************************************/
header {
	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;
    background: var(--red);
    padding: 0 20px;
    border-bottom: var(--gray_border);
}
header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}
header h1.logo img{
	max-width: 140px;
}


/*アクセスと料金ボタン*/
.btn_nav {
    position: fixed;
    top: 11px;
    right: 54px;
    z-index: 99;
}
.btn_nav ul {
    display: flex;
    gap: 2px;
}
.btn_nav a {
	width: 48px;
	height: 48px;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
}
.btn_nav a:hover{
	opacity: 0.7;
	transition: 0.3s ease-in-out;
}
.btn_nav a p {
	font-size: 0.6rem;
	line-height: 0.8rem;
	color: #fff;
}
.btn_nav a img {
    width: auto;
    height: 16px;
    margin-bottom: 4px;
}


/*グローバルナビ*/
header nav ul{
	display: flex;
    justify-content: flex-end;
    gap: 20px;
}
nav ul li{
	display: inline-block;
    vertical-align: top;
}
header nav ul li a{
	display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--white);
    position: relative;
    line-height: 1.4;
}
nav li a span {
    font-size: 11px;
    display: block;
    opacity: 0.6;
}


/*追尾ボタン*/
#bottom_nav{
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: block;
    z-index: 2;
    font-size: 11px;
}
#bottom_nav .nav{
	display: flex;
    gap: 10px;
}
#bottom_nav .nav a {
	z-index: 999;
    display: block;
    background: rgba(86, 1, 34, 0.9);
    border: var(--gray_border);
    padding: 12px 0;
    text-align: center;
    width: 60px;
    height: 60px;
    letter-spacing: 0;
}
#bottom_nav .nav a img{
	width: auto;
    height: 16px;
}


/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
/*ハンバーガーメニュー*/
.btn_toggle {
	background: transparent;
	border: none;
	padding: 0;
	position: fixed;
	top: 20px;
	right: 20px;
	display: block;
	z-index: 999;
}
.btn_toggle:hover{
	cursor: pointer;
}
.btn_toggle span{
	display: inline-block;
	background: var(--white);
	height: 1px;
	width: 25px;
	position: relative;
}
.btn_toggle span:before{
	content: "";
	display: inline-block;
	background: var(--white);
	height: 1px;
	width: 25px;
	position: absolute;
	top: 8px;
	left: 0;
}
.btn_toggle span:after{
	content: "";
	display: inline-block;
	background: var(--white);
	height: 1px;
	width: 25px;
	position: absolute;
	top: -8px;
	left: 0;
}
#btn_open.active span{
	background: transparent;
}
#btn_open.active span:before{
	transform: rotate(45deg);
	top: 0;
}
#btn_open.active span:after{
	transform: rotate(-45deg);
	top: 0;
}
/*メニュー内設定*/
.nav_menu{
	height: 100vh;
    background: rgba(23, 30, 36, 0.95);
    margin: 0;
    padding: 50px 10px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    text-align: center;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.nav_menu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 16px;
    margin-bottom: 20px;
}
.nav_menu ul li {
    width: calc((100% - 16px) / 2);
    border-bottom: 1px solid var(--gray);
}
.nav_menu ul li a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
}
.nav_menu ul li a span {
	display: block;
	line-height: 1.4;
}
.nav_menu ul li a span.nav_en {
	font-size: 0.6rem;
	opacity: 0.6;
}
#sp_nav.open{
	display: block;
}
.sp_nav_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90%, 600px);
    transform: translateY(-50%) translateX(-50%);
}
/*店舗情報*/
.nav_menu #info_box{
	text-align: center;
}
.nav_menu #info_box,
.nav_menu #info_box a{
	color: var(--white);
}
.nav_menu #info_box .info_tel,
.nav_menu #info_box .info_open{
	width: 100%;
    display: inline-block;
    padding: 8px 10px;
    border-bottom: none;
    text-align: center;
    border: 0;
}


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


/* ヘッドライン */
#headline {
	text-align: center;
	height: 40px;
	display: flex;
	justify-content: center;
	flex-direction: row;
	background: var(--red);
	line-height: 45px;
	position: relative;
	overflow: hidden;
	font-size: 13px;
}
#headline::before,
#headline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--black);
}
#headline::before {
  top: 4px;
}
#headline::after {
  bottom: 4px;
}
@media screen and (min-width: 768px) {
	#headline {
		font-size: 14px;
	}
}


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

footerフッター設定

****************************************/
footer {
	background: url(../images/bg_footer.jpg) no-repeat center bottom;
    background-size: cover;
    padding: 40px 20px 80px;
}
footer .logo{
	margin: 40px 0 20px;
}
footer .logo img{
	max-width: 240px;
}
footer aside{
	text-align: left;
}
/* テキストメニュー */
footer nav{
	margin: 40px auto;
}
footer nav ul li a{
	text-transform: uppercase;
	color: #fff;
    line-height: 1.4;
    display: block;
}
footer nav ul{
	display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px min(2%, 30px);
}
nav li span{
	font-size: 9px;
}
@media screen and (min-width: 768px){
	nav li span{
		font-size: 11px;
	}
}
.footer_link {
	font-size: 12px;
	font-family: sans-serif;
	color: var(--white);
}
.footer_link a {
	color: var(--white);
	text-decoration: underline;
	text-decoration-color: var(--white);
}
.footer_txt{
	margin: 10px;
	color: var(--white);
}


/* パンくずリスト */
.breadcrumbs ol li {
	font-size: 12px;
	display: inline-block;
	position: relative;
	padding: 0 10px;
}
.breadcrumbs ol li:before {
	display: block;
    content: "";
    width: 5px;
    height: 10px;
    background: url(../images/icon_right.svg) center / cover no-repeat;
    position: absolute;
    left: -4px;
    top: 5px;
}
.breadcrumbs ol li:first-child:before {
	background: none;
}


/* フリースペース */
.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: 40px auto 20px;
    text-align: center;
    font-size: 11px;
}
.list_link_box li {
    margin-right: 10px;
    margin-bottom: 8px;
}
.list_link_box img {
    width: 100%;
	height: auto;
}
@media screen and (min-width: 768px){
	footer {
	    padding: 40px 20px;
	}
}


/****************************************
mainvisualメインビジュアル
****************************************/
#mainvisual{
	width: 100%;
	height: 85vh;
	position: relative;
}
#mainvisual .swiper-wrapper{
	width: 100%;
	height: 85vh;
}
#mainvisual .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 100%;
}
#mainvisual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainvisual .mv_txt {
	position: absolute;
	top: 40%;
    left: 10%;
    right: auto;
    transform: translateY(-40%);
    z-index: 10;
    text-align: left;
    writing-mode: vertical-rl;
  	text-orientation: upright;
  	font-size: 18px;
  	height: max-content;
}
#mainvisual .mv_txt .txt_color{
	color: var(--gold);
}
#mainvisual .mv_txt .dq01,
#mainvisual .mv_txt .dq02 {
  display: inline-block;
  transform: rotate(180deg);
  font-size: 0.9em;
  line-height: 1;
}
#mainvisual .mv_txt .dq01 {
  margin-right: -0.2em;
  transform: translateY(-0.3em) translateX(0.3em) rotate(180deg);
}
#mainvisual .mv_txt .dq02 {
  margin-left: -0.2em;
  transform: translateY(0em) translateX(-0.3em) rotate(180deg);
}


/*店舗情報*/
#mainvisual #info_box .info_tel,
#mainvisual #info_box .info_open{
	background: linear-gradient(90deg, #fee0a4 0%, #fbfbb7 30%, #f3f3f3 50%, #fbfbb7 70%, #fee0a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
    margin: 0 auto;
}
#mainvisual #info_box .info_open{
	line-height: normal;
}
#mainvisual #info_box .area{
    margin-top: 6px;
    padding-top: 6px;
    border-top: var(--gray_border);
    line-height: normal;
}
@media screen and (min-width: 768px){
	#mainvisual #info_box .gold_liner{
		padding: 10px 20px;
	}
	#mainvisual #info_box .area{
	 line-height: 1.8;
	}
}

/* 内側のグラデーション枠 */
#mainvisual #info_box{
    width: 84%;
    max-width: 500px;
    overflow: hidden;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.gold_liner_box{
	background: rgba(8, 4, 3, 0.5);
	padding: 6px;
}
.gold_liner{
	border: 1px solid var(--gold);
    border-image: var(--gold);
    padding: 10px;
}


/*飾り*/
.deco{
	position: relative;
}
.deco:before {
    position: absolute;
    top: -4px;
    left: -4px;
    content: "";
    background: url(../images/img_deco_corner.png) left top no-repeat;
    background-size: 100% auto;
    width: 60px;
    height: 60px;
    z-index: 2;
}
.deco:after {
    position: absolute;
    bottom: -4px;
    right: -4px;
    content: "";
    background: url(../images/img_deco_corner.png) left top no-repeat;
    background-size: 100% auto;
	width: 60px;
    height: 60px;
    transform: rotate(180deg);
}
#mainvisual .deco:before{
	top: 0;
	left: 0;
	width: 40px;
    height: 40px;
}
#mainvisual .deco:after{
	bottom: 0;
	right: 0;
	width: 40px;
    height: 40px;
}
@media screen and (min-width: 768px){
	#mainvisual .deco:before,#mainvisual .deco:after{
		width: 60px;
    	height: 60px;
	}
	#mainvisual .mv_txt {
    	left: 30%;
    	font-size: 24px;
    }
}


/*コンテンツタイトル*/
/*h2&h3*/
h2.title,
h3.title{
	font-size: 1.7em;
	line-height: 1;
	margin-bottom: 30px;
	font-style: oblique 40deg;
	letter-spacing: 0.2em;
	background: url(../images/img_deco_title.png) no-repeat center 0px;
	background-size: 60px auto;
	padding-top: 35px;
}
.firefox h2.title,
.firefox h3.title{
	font-style: oblique 20deg;
}
h2.title span,
h3.title span{
	text-transform: uppercase;
	font-size: 15px;
	display: inline-block;
	background: linear-gradient(to bottom, transparent 50%, var(--red) 50%);
	letter-spacing: 0.6em;
	padding-left: 4px;
}
/*ランキングのh2*/
#section_top_ranking_01 h2.title span{
	background: linear-gradient(to bottom, transparent 50%, var(--black) 50%);
}
/*h3*/
h3.title{margin-bottom: 30px; font-size: 1.5em;}
h3.title span{
	font-size: 14px;
	background: linear-gradient(to bottom, transparent 50%, #8c7954 50%);
}
#contents_profile h3.title{margin-bottom: 20px;}
/*h4*/
h4.title{
	color: var(--gold);
	font-size: 1.2em;
}
@media screen and (min-width: 768px){
	h2.title,
	h3.title{
		font-size: 1.8em;
	}
	h2.title span,
	h3.title span{
		font-size: 16px;
	}
}


/******************************
トップページ
******************************/
#section_topics,
#section_concept,
#section_concept_bottom,
#section_schedule_today,
#section_top_ranking_01,
#section_covergirl{
	padding: 60px 20px;
}
#section_event,
#section_newface,
#section_topics,
#section_top_bnr{
	padding: 0 20px 60px;
}
@media screen and (min-width: 768px){
	#section_topics,
	#section_concept,
	#section_concept_bottom,
	#section_schedule_today,
	#section_top_ranking_01,
	#section_covergirl,
	#section_newface{
		padding: 80px 20px;
	}
	#section_event,
	#section_topics,
	#section_top_bnr{
		padding: 0 20px 80px;
	}
}


/*トップページ　2カラム*/
.column{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}
.column section{
	width: 100%;
	max-width: 500px;
    margin: auto;
}


/* コンセプト&下部のコンセプト&ローディング画面 */
#section_concept {
    background: url(../images/bg_concept.jpg) center / cover no-repeat;
}
#section_concept_end {
	height: 90vh;
    background: url(../images/bg_end.jpg) center / cover no-repeat;
}
#section_concept .concept_title,
#section_concept_end .concept_title,
#loader-wrapper .concept_title{
	font-size: 2em;
	letter-spacing: 0.2em;
	font-style: oblique 40deg;
}
.firefox #section_concept .concept_title,
.firefox #section_concept_end .concept_title,
.firefox #loader-wrapper .concept_title{
	font-style: oblique 20deg;
}
#loader-wrapper .concept_title{
	margin: 0 auto;
	font-size: 1.4em;
}
@media screen and (min-width: 768px){
	#loader-wrapper .concept_title{
		font-size: 2em;
	}
}
#section_concept .concept_title span,
#section_concept_end .concept_title span,
#loader-wrapper .concept_title span{
	background: linear-gradient(0deg, var(--gold) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#section_concept_end{
	position: relative;
}
#section_concept_end .end_txt{
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translateY(-50%) translateX(-50%);
  	-webkit- transform: translateY(-50%) translateX(-50%);
  	width: 100%;
}


/*ローディング画面*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* イベント */
#section_event{
	border-bottom: 1px solid var(--red);
}
#section_event img{
	width: 100%;
	max-width: 400px;
	display: block;
	margin: 0 auto;
}
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#contents_profile) .swiper-wrapper{
	margin-bottom: 50px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 6px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	background: initial;
	border: 1px solid var(--white);
	opacity: .6;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--white);
	opacity: .6;
}


/* ピックアップ&新人情報 */
#section_covergirl ul.cast_box li a, #section_newface ul.cast_box li a {
    display: flex;
    align-items: center;
}
#section_covergirl .cast_box li .img_box,
#section_covergirl .cast_box li .txt_box,
#section_newface .cast_box li .img_box,
#section_newface .cast_box li .txt_box{
	width: calc(100% / 2);
}


/* ピックアップ */
#section_covergirl .swiper{
	margin: 0 auto;
}
#section_covergirl .cast_box .cast_box_list{
	background: rgba(86, 1, 34, .8);
}


/* 新人情報 */
#section_newface .swiper{
	margin: 0 auto;
}


/* 新着情報 */
#section_topics #info_box {
	background: rgba(8, 4, 3, .8);
	border: var(--gray_border);
}
#section_topics #info_box div.scroll_txt{
	overflow-y: auto;
	/*	↓高さを制限したい時は下記を使用*/
	/*	height: 460px;*/
}
#section_topics #info_box article{
	text-align: left;
	padding: 30px 20px;
}
#section_topics #info_box article h3,
#section_topics #info_box article time{
	text-align: center;
	display: block;
}
#section_topics #info_box article h3{
	color: var(--gold);
	font-size: 1.2em;
	margin-bottom: 20px;
}
#section_topics #info_box article time{
	color: #b1b1b1;
	font-size: 0.9em;
}
#section_topics #info_box strong {
	font-weight: bold;
}
#section_topics .page {
	text-align: center;
	padding-bottom: 30px;
}
#section_topics .page a {
	display: inline-block;
	width: 90px;
	border-radius: 4px;
	padding: 3px 10px 0;
	background: rgba(8, 4, 3, .8);
	border: var(--gray_border);
}


/*誘導バナー*/
#section_top_bnr ul {
	display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px min(2%, 30px);
}
#section_top_bnr ul li {
	border: var(--gray_border);
}
#section_top_bnr ul li img{
	display: block;
}
@media screen and (min-width: 768px){
	#section_top_bnr ul {
	    grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}


/* ランキング */
#section_top_ranking_01 {
    background: url(../images/bg_ranking.jpg) center / cover no-repeat;
}
#section_top_ranking_01 .ranking_inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: inline-block;
}
#section_top_ranking_01 .cast_box .img_box {
    width: 60%;
    max-width: 330px;
    margin-right: auto;
    border: var(--gray_border);
}
#section_top_ranking_01 .cast_box .right_box {
    position: absolute;
    bottom: -30px;
    right: 0px;
    width: 50%;
}
#section_top_ranking_01 .cast_box .right_box .icon_ranking {
	width: 100%;
	max-width: 90%;
	margin: 0 auto 20px;
	padding-left: 40px;
	transition: all .5s;
}
#section_top_ranking_01 .cast_box .right_box .icon_ranking img{
	width: 100%;
	max-width: 110px;
	margin-bottom: 20px;
}
#section_top_ranking_01 .txt_box{
	border: var(--gray_border);
	background: rgba(8, 4, 3, .8);
	padding: 20px 10px;
}
#section_top_ranking_01 .icon_status span{
	font-size: 0.6rem;
}
#section_top_ranking_01 .txt_box .name{
	font-size: 18px;
}
#section_top_ranking_01 .swiper-wrapper {
	margin-bottom:80px;
}
#section_top_ranking_01 .comment,
#contents_profile .comment{
	background: var(--red);
	height: 20px;
    line-height: 22px;
    font-size: 0.7rem;
    overflow: hidden;
    color: var(--gold);
    margin-top: 4px;
}
#section_top_ranking_01 .comment p,
#contents_profile .comment p {
    display: inline-block;
	white-space: nowrap;
    padding-left: 100%;
	animation: scrollRanking_short_comment 10s linear infinite;
}
@keyframes scrollRanking_short_comment{
	0%{ transform: translateX(0); }
	100%{ transform: translateX(-100%); }
}
@media screen and (min-width: 768px){
	#section_top_ranking_01 .cast_box .right_box .icon_ranking img{
		max-width: 160px;
	}
	#section_top_ranking_01 .txt_box{
		padding: 40px 20px;
	}
	#section_top_ranking_01 .icon_status span{
		font-size: 0.7rem;
	}
}


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

下層ページ

****************************************/
/*下層ページ共通設定*/
.subvisual{
	width: 100%;
	height: 35vh;
	padding: 70px 0;
	background-image: url(../images/title_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
}
@media screen and (min-width: 768px){
	.subvisual{
		padding: 100px 0;
	}
}


/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
    margin: 0 auto;
    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: #999;
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}
.schedule_nav li a {
	padding: 10px 0;
	display: block;
	font-size: 12px;
	background: var(--black);
	border: var(--gray_border);
	-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(--red);
	border: 1px solid var(--red);
}
.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: var(--white);
    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 );
	}
}


/****************************************
スケジュールページ
****************************************/
/*↓2週間表示の際は下記を削除*/
.profile_sch_wrap{
	pointer-events: none;
}
/*↑2週間表示の際は下記を削除*/
#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%;
}
#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 30px;
}
#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;
}
#contents_profile .profile_box_right .short_comment{
	background: var(--gradation_black);
	color: var(--brown_light);
    padding: 10px 20px 8px;
    line-height: 1.4;
}
#contents_profile .profile_box_right video{
	width:100%;
}
#contents_profile .profile_bnr {
    width: 100%;
    max-width: 300px;
    height: auto;
}
#contents_profile .rank_system{
	background: rgba(86, 1, 34, 0.6);
    padding: 20px;
}
#contents_profile .rank_system li{
	display: flex;
	align-items: center;
}
@media screen and (min-width: 768px) {
    #contents_profile .profile_wrap {
        gap: 20px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #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;
	/*2週間表示にする場合は必要*/
	/*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;
    border-bottom: 1px solid #282828;
    padding: 10px;
}
.profile_box_schedule .profile_sch_box div.profile_sch_variable:last-child .profile_sch_date,
.profile_box_schedule .profile_sch_box div.profile_sch_variable:last-child .profile_sch_check{
    border-bottom: 0;
    padding: 10px 10px 0; 
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	flex-basis: 50%;
	background: var(--black);
	color: var(--gold);
}
.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 {
	min-height: 70px;
	flex-basis: 50%;
}
.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_system #section_event{
	padding: 0;
	border-bottom: 0;
	margin-bottom: 60px;
}
#contents_system .table_system .arrow_double{
	max-width: 14px;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
#contents_system .table_wrapper {
	padding: clamp(20px, 6vw, 40px);
	background: rgba(8, 4, 3, .8);
	border: var(--gray_border);
}
#contents_system .table_system {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
	width: 100%;
}
#contents_system .table_system tr {
	border-bottom: 1px solid  #282828;
}
#contents_system .table_system tr:last-child{
	border-bottom: 0;
}
#contents_system .table_system tr span{
	font-size: 0.7em;
}
#contents_system .table_system tr td {
	padding: min(4%,20px) 10px;
	text-align: center;
	vertical-align: middle;
	font-size: clamp(18px,3vw,20px);
}
#contents_system .table_system tr:last-child td{
	padding: min(4%,20px) 10px 0;
}
#contents_system .table_system td:nth-child(1),
#contents_system .table_system td:nth-child(3) {
    width: 42%;
}
#contents_system .table_system tr:first-child td {
	padding-top: 0;
}
#contents_system .table_system tr td p {
	line-height: 1;
}
/*ランク説明*/
.rank_explanation{
	margin-bottom: 60px;
}
.rank_explanation ul{
	display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px min(2%, 30px);
}
.rank_explanation ul li{
	background: rgba(8, 4, 3, .8);
    border: var(--gray_border);
    padding: 30px 20px;
}
.rank_explanation ul li .rank_explanation_des{
	display: flex;
	gap: 20px;
	text-align: left;
	align-items: center;
}
.rank_explanation ul li .rank_explanation_des img{
	width: 30%;
}
.rank_explanation ul li .rank_explanation_des>div{
	width: 60%;
}
@media (min-width: 768px) {
	#contents_system .table_system .arrow_double{
		max-width: 20px;
	}
	#contents_system .table_system td:nth-child(1),
	#contents_system .table_system td:nth-child(3) {
	    width: 46%;
	}
	.rank_explanation ul{
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/****************************************
求人ページ
****************************************/
#contents_recruit .application_box .btn_line,
#contents_recruit .application_box .btn_mail{
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#contents_recruit .application_box span{
	font-family: Cinzel, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#contents_recruit ul.application_box{
	display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px min(2%, 30px);
}
#contents_recruit .application_box .btn_more{
	max-width: none;
}
#contents_recruit .application_box .btn_more a{
	padding: min(4%, 20px) 10px;
	height: auto;
    line-height: initial;
}
@media screen and (min-width: 768px) {
	#contents_recruit ul.application_box{
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
/*アピールバナー*/
#contents_recruit .recruit_bnr_box img {
  width: 100%;
  max-width: 500px;
}


/****************************************
web予約ページ
****************************************/
#contents_reserve form select#reserve_hour, #contents_reserve form select#reserve_min {
    margin: 8px 0 0;
}


/****************************************
アンケートページ
****************************************/
#contents_enquete form .select select:last-child {
    margin: 8px 0 0;
}
@media screen and (min-width: 768px) {
	#contents_enquete form .select select:last-child {
	    margin: 0;
	}
}


/****************************************
アクセスページ
****************************************/
#contents_access ul.parking_box{
	display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px min(2%, 30px);
}
#contents_access .parking_box .btn_more{
	max-width: none;
}
#contents_access .parking_box .btn_more a{
	padding: min(4%, 20px) 10px;
	height: auto;
    line-height: initial;
}
#contents_access .parking_box .btn_more a img{
	width: auto;
    height: 16px;
    margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
	#contents_access ul.parking_box{
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/****************************************
リンクページ
****************************************/
#contents_link .table_01{
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#contents_link aside{
	text-align: left;
}