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

****************************************/
:root{
	--color-black1: #161616;

	--color-main1:#87dad5;
	--color-main2:#87dad5;
	--color-main3:#00fff0;
	--color-main4:#4f8480;
	--color-main5:#29cdc4;

	--table-system-color1:#60cdc8;
	--table-system-color2:#b7e5e2;
	--table-system-color3:#b7e5e2;


	--bg-gradation1: linear-gradient(90deg, #45bab4 0%, #5fcec8 50%, #45bab4 100%);
	--bg-gradation2: linear-gradient(90deg, #5fcec8 0%, #88dad5 50%, #5fcec8 100%);
	--bg-gradation3: linear-gradient(90deg, #29cdc4 0%, #77eee8 100%);

    --font-title: "Bodoni Moda", serif;
}

body {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
	color: #fff;
	background: #161616;
	font-weight: 500;
    font-family: "FOT-筑紫オールド明朝 Pro R", "TsukuOldMinPro-R", serif;
	font-size: clamp(14px, 2vw, 16px);
	line-height: 1.8;/* 変更 */
}
@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: 900px;
    margin: auto;
    padding: 0 20px;
}
.inner1200{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
}
/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
a, a:hover{
	color: #fff;
}
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: #ff0068;}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #0000ff;}
.atten_04, .atten_04 a{color: #ff0000;}

/*********** 背景色 ***********/
.bg_01{
	background:#ffff00;
	display: inline;
	padding: 3px 5px;
}
.bg_02{
	background:#00d8d1;
	display: inline;
	padding: 3px 5px;
}
.bg_03{
	background:#333333;
	color: #999;
	display: inline;
	padding: 3px 5px;
}

/*********** マージン ***********/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_60{margin-bottom: 60px;}
.mb_80{margin-bottom: 80px;}
.mb_100{margin-bottom: 100px;}

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

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

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

/*********** リンク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%;
	margin-bottom: 20px;
	border-left: 1px solid var(--table-system-color2);
	border-top: 1px solid var(--table-system-color2);
	border-spacing: 0;
	text-align: left;
}
.table_01 th, .table_01 td {
	padding: 5px 5px 5px 10px;
	border-color: var(--table-system-color2);
	border-style: solid;
	border-width: 1px;
	background: #fff;
}
.table_01 td a{
	color: var(--color-black1);
}
.table_01 th {
	width: 33%;
	background: var(--table-system-color1);
	color: #fff;
	vertical-align: middle;
}

/*table02*/
.table_02 {
	width: 100%;
	border-left: 1px solid var(--table-system-color2);
	border-top: 1px solid var(--table-system-color2);
	border-spacing: 0;
	text-align: left;
}
.table_02 th, .table_02 td {
	padding: 5px;
	border: 1px solid var(--table-system-color2);
}
.table_02 th {
	background: #999;
	color: #fff;
	vertical-align: top;
	font-size: 12px;
	text-align: center;
}
.table_02 td {
	text-align: center;
}

/*table_form*/
.table_form{
	width: 100%;
}
.table_form th,
.table_form td{
	padding: 5px;
	vertical-align: middle;
	text-align: left;
	border: 1px solid #eee;
}
.table_form th{
	width: 35%;
	background: #999;
	color: #fff;
	line-height: 1.4;
}

@media screen and (max-width: 768px) {
	.table_form th,
	.table_form td{
		width: 100%;
		display: block;
	}
}

/* リンクボックス */
.list_link_box li{
	margin: 10px;
	display: inline-block;
	font-size: 11px;
}
#contents_link .list_link_box li a{
	color: var(--color-black1);
}
/*********** ボタン設定 ***********/

/* コンテナ：中央揃え＋上下余白 */
.btn-container {
  text-align: center;
  margin: 2em 0;
}
/* 丸角ボタン＋矢印 */
.arrow-btn-rounded,
.arrow-btn-rounded-left{
	width: 100%;
	max-width: clamp(240px,36vw,360px);
	background: var(--bg-gradation3);
	border-radius: 30px;
	text-align: center;
	--arrow-color: #fff;
	display: inline-block;
	border: 1px solid var(--arrow-color);
	color: var(--arrow-color);
	text-decoration: none;
	position: relative;
	transition: background-color 0.3s ease,
				border-color 0.3s ease,
				color 0.3s ease;
}
.arrow-btn-rounded{
	padding: 10px 50px 10px 30px;
}
.arrow-btn-rounded-left{
	padding: 10px 30px 10px 50px;
}

@media screen and (max-width: 768px) {
	.arrowbtn-rounded{padding: 10px 30px 10px 10px;}
	.arrow-btn-rounded-left{padding: 10px 10px 10px 30px;}
}
/* 右矢印 */
.arrow-btn-rounded::after,
.arrow-btn-rounded-left::after {
    width: 50px;
    height: 5px;
	border-bottom: 1px solid var(--arrow-color);
}
.arrow-btn-rounded::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%) skewX(45deg);
	border-right: 1px solid var(--arrow-color);
	transition: right 0.3s ease, border-color 0.3s ease;
}
.arrow-btn-rounded-left::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%) skewX(315deg);
	border-left: 1px solid var(--arrow-color);
	transition: left 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
	.arrow-btn-rounded::after{
		content: '';
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) skewX(45deg);
		border-right: 1px solid var(--arrow-color);
		transition: right 0.3s ease, border-color 0.3s ease;
	}
	.arrow-btn-rounded-left::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 20px;
		transform: translateY(-50%) skewX(315deg);
		border-left: 1px solid var(--arrow-color);
		transition: left 0.3s ease, border-color 0.3s ease;
	}
}
/* ホバー時 */
.arrow-btn-rounded:hover,
.arrow-btn-rounded-left:hover {
  background-color: var(--color-black1);
  border-color: var(--color-black1);
  color: var(--color-black1);
}
.arrow-btn-rounded:hover::after {
  right: 15px; /* ホバーで矢印が右に少し移動 */
  border-color: var(--color-black1); /* ホバーで矢印を白に */
}
.arrow-btn-rounded-left:hover::after {
  left: 15px; /* ホバーで矢印が右に少し移動 */
  border-color: var(--color-black1); /* ホバーで矢印を白に */
}

.btn_type02 {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	width: 100%;
	height: 70px;
	max-width: clamp(240px, 36vw, 360px);
	background: linear-gradient(90deg, #32adff 0%, #79caff 100%);
	border: solid 1px #fff;
	padding: 10px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.btn_type02::after {
	content: "";
	display: block;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: solid 1px #fff;
	position: absolute;
	top: 4px;
	left: 4px;
}


/* 求人ページ応募方法のボタン */
.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;
}

/* 言語選択プルダウン（日本語ページ） */
.select_lang_wrap {
	display: block;
	width: 74px;
	height: 30px;
    position: fixed;
    top: 100px;
    right: 20px;
	z-index: 999;
}
.select_lang_wrap::before {
	content: '';
	position: absolute;
	top: 25%;
	left: 8px;
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/icon_lang.png) center center / cover no-repeat;
}
.select_lang_wrap:after {
  content: '';
	position: absolute;
	right: 8px;
	top: 14px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #3e4349;
	border-left: 1px solid #3e4349;
	transform: translateY(-50%) rotate(-135deg);
}
.select_lang {
	-webkit-appearance: none;
	-moz-appearance: none;
			 appearance: none;
	margin: 0;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border: 1px solid #3e4349;
	padding: 8px 8px 8px 26px;
    background: #fff;
    color: #3e4349;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.select_lang_wrap {
        top: 25px;
        right: 65px;
	}
}

/* 言語選択プルダウン（英語ページ） */
.select_lang_wrap_en {
	display: block;
	width: 74px;
	height: 30px;
    position: fixed;
    top: 25px;
    right: 20px;
	z-index: 999;
}
.select_lang_wrap_en::before {
	content: '';
	position: absolute;
	top: 25%;
	left: 8px;
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/icon_lang.png) center center / cover no-repeat;
}
.select_lang_wrap_en:after {
  content: '';
	position: absolute;
	right: 8px;
	top: 14px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #3e4349;
	border-left: 1px solid #3e4349;
	transform: translateY(-50%) rotate(-135deg);
}
.select_lang_en {
	-webkit-appearance: none;
	-moz-appearance: none;
			 appearance: none;
	margin: 0;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border: 1px solid #3e4349;
	padding: 8px 8px 8px 26px;
    background: #fff;
    color: #3e4349;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 1;
}

/******************************
form共通設定
******************************/
/*formのデフォルトスタイルの削除・リセット*/
form input[type="text"],
form input[type="email"],
form button,
form textarea,
form select {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
}
/*フォームのスタイルを設定*/
form input[type="text"],
form input[type="email"],
form textarea,
form select {
	border: 1px solid #eee;
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 8px;
	vertical-align: baseline;
}
form input[type="text"],
form input[type="email"],
form textarea {
	width: 100%;
	max-width: 350px;
}
form textarea {
	resize: vertical;
}
form .form_txt {
	margin-top: 5px;
}
form input[type="text"].form_short {
	max-width: 70px;
}
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: #ff007e;
}
form .form_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
form input::placeholder,
form textarea::placeholder {
	color: #ccc;
}
@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.75em;
	padding: 2px 4px;
	line-height: 1;
	color: #fff;
	background: #ff007e;
}

/******************************
セラピスト共通設定
******************************/
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#section_ranking_01,#section_ranking_02) .cast_box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px min(2%, 30px);
}
section#section_top_ranking_01 .cast_box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px min(2%, 30px);
}
@media screen and (max-width: 768px) {
		section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#section_ranking_01,#section_ranking_02) .cast_box {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 15px min(2%, 30px);
	}
}
.cast_box .cast_box_list{
	position: relative;
}
.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	margin-bottom: 10px;
	position: relative;
}
.cast_box .cast_box_list .img_box .img_cast{
	position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 clamp(20px, 4vw, 40px) 0 clamp(20px, 4vw, 40px);
}
.cast_box .cast_box_list .icon_new{
	height: clamp(40px, 8vw, 84px);
	position: absolute;
    top: 0px;
    right: 0px;
}
/* アイコン */
.cast_box .cast_box_list .icon_box {
	position: absolute;
	bottom: 10px;
	left: 6px;
	display: flex;
    justify-content: center;
}
.cast_box .cast_box_list .icon_box img{
    width: 40px;
    margin: 0 4px;
}
/* アイコン下 */
.cast_box .cast_box_list .icon_box.off {
	position: static;
	display: flex;
    justify-content: center;
	margin: 10px 0;
}
.cast_box .cast_box_list .icon_box.off img{
    width: 30px;
    margin: 0 4px;
}

.cast_box .cast_box_list .frame{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
}
.cast_box .cast_box_list .frame img{
	width: 100%;
}
.cast_box .cast_box_list .txt_box .time{
	color: #ffff00;
}
.cast_box .cast_box_list .txt_box .icon{
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 0 auto 6px;
	gap: 4px;
}
.cast_box .cast_box_list .txt_box .icon span{
    background:var(--color-main5);
    color: #fff;
    border-radius: 40px;
    border: 1px solid #fff;
    line-height: 1.0;
    font-size: 0.9rem;
    padding: 4px 10px;
}
.cast_box .cast_box_list .txt_box .time{
    color: #fff;
    font-size: clamp(11px, 2vw, 14px);
    background: var(--color-main5);
    border-radius: 10px;
    padding: 5px;
    line-height: 1.4;
    margin-bottom: 5px;
}
.icon_shop_wrap {
	margin-bottom: 8px;
}
.cast_box .cast_box_list .txt_box .icon_shop{
    background: #6c96a5;
    color: #fff;
    margin-bottom: 2px;
}
.cast_box .cast_box_list .txt_box .sch_info{
    background: #000;
    color: #fff;
    padding: 4px;
}

.cast_box .cast_box_list .txt_box .name{
	font-size: clamp(16px, 3vw, 22px);
}
.cast_box .cast_box_list .txt_box .size{
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.4;
}
.cast_box .cast_box_list .txt_box .age span,
.cast_box .cast_box_list .txt_box .size span {
    font-size: clamp(10px, 2vw, 12px);
    margin-right: 3px;
}
@media screen and (max-width: 768px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.cast_box .cast_box_list .icon_x {
		width: 30px;
		top: 10px;
		left: 10px;
	}
	.cast_box .cast_box_list .icon_new{
		bottom: 10px;
		right: 10px;
	}
	/* アイコン */
	.cast_box .cast_box_list .icon_box {
		position: absolute;
		bottom: 10px;
		right: 8px;
		display: flex;
		justify-content: center;
	}
	.cast_box .cast_box_list .icon_box img{
		width: 30px;
		margin: 0 2px;
	}
}
@media screen and (max-width: 520px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}



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

headerヘッダー設定

****************************************/
header {
	width: 100%;
	/* height: 80px; */
	min-width: 320px;
    /* padding: 10px 0px; */
    position: fixed;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}
header .h1_wrapper{
	font-size: 10px;
    text-align: left;
    padding: 2px 20px;
}
header .header_wrapper {
    position: relative;
    width: 100%;
    z-index: 100;
}
header .header_wrap {
    display: grid;
    grid-template-columns: 200px 180px auto 80px;
    align-items: center;
    gap: 20px;
}
header h1.logo {
	text-align: left;
	padding-left: 20px;
}
header h1.logo img{
	max-width: 180px;
}
@media screen and (max-width: 1100px) {
    header .header_wrap {
		display: grid;
		grid-template-columns: 200px auto 80px;
		align-items: center;
		gap: 20px;
	}
}
@media screen and (max-width: 768px) {
	header .h1_wrapper{
		background: var(--color-black1);
		margin-bottom: 4px;
	}
    header .header_wrap {
		display: grid;
		grid-template-columns: auto 60px;
		align-items: center;
		gap: 20px;
	}
	header h1.logo {
		padding-left: 10px;
	}
	header h1.logo img{
		max-width: 140px;
	}
}


/* 電話番号&営業時間 */
header .info_box {
    letter-spacing: 1px;
    font-size: 1.0rem;
    text-align: left;
	margin-top: 4px;
}
header .info_box span{
    font-size: 0.8em;
    margin-right: 5px;
}
header .info_box li{
    line-height: 1.6;
}
/*グローバルナビ*/
header nav.nav_box{
	display: block;
	max-width: 720px;
    margin: 0 auto;
}
header nav ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 20px;
    font-size: 12px;
}
@media screen and (max-width: 1100px) {
		header nav.nav_box{
		display: none;
	}
}
header nav ul li{
	font-family: "Bodoni Moda", serif;
    font-weight: 300;
    letter-spacing: 1px;
}
header nav ul li:last-child{
	border-right: none;
}
header nav ul li a{
	display: block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
    padding: 10px 0px;
}
header nav ul li a span {
    display: block;
    line-height: 10px;
    font-size: 10px;
}
/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
/*ハンバーガーメニューを作る*/
.hamburger-grid {
  z-index: 1000;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-grid__dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
}

.hamburger-grid__dot {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-grid.active .hamburger-grid__dot {
  background-color: #fff;
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
  transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
  transform: translateY(8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
  transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
  transform: translateX(8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
  transform: scale(1.2);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
  transform: translateX(-8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
  transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
  transform: translateY(-8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
  transform: scale(0);
}

.nav-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1a1a;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-grid.active {
  visibility: visible;
  opacity: 1;
}

.nav-grid__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}

.nav-grid__sections {
	grid-column: span 12;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 0 20px;
}

.nav-grid__section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-grid.active .nav-grid__section {
  opacity: 1;
  transform: translateY(0);
}

.nav-grid.active .nav-grid__section:nth-child(1) {
  transition-delay: 0.2s;
}
.nav-grid.active .nav-grid__section:nth-child(2) {
  transition-delay: 0.3s;
}

.nav-grid__title {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-grid__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px min(2%, 30px);
}

.nav-grid__list li {
  margin-bottom: 15px;
  overflow: hidden;
}

.nav-grid__link {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s ease;
}

.nav-grid.active .nav-grid__link {
  transform: translateY(0);
}

.nav-grid__link:hover {
  color: #4a90e2;
}

@media (max-width: 768px) {
  .nav-grid__content {
    padding: 80px 20px;
  }

  .nav-grid__sections {
    grid-template-columns: 1fr;
  }

  .nav-grid__link {
    font-size: 20px;
  }
}




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

/* ヘッドライン */
.headline_wrap{
	padding: 20px;
    width: min(100%, 660px);
    margin: 0 auto;
}
.headline_wrap h2{
  position: relative;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  font-family: "Bodoni Moda", serif;
  color:  var(--color-main1);

}
.headline_wrap h2::after {
  content: '';
  position: absolute;
  top: 48%;
  left: 50px;
  right: 0;
  border-top: 1px solid var(--color-main1);
}
.headline_wrap h2 > span {
  position: relative;
  display: inline-block;
}
#headline {
	text-align: center;
	height: 60px;
	display: flex;
	justify-content: center;
	flex-direction: row;
	line-height: 60px;
	border-bottom: 1px solid var(--color-main1);
	margin-top: -14px;
}

#headline .swiper{
	text-align: center;
	width: 100vw;
	}

/*タブレットサイズ*/
@media screen and (max-width: 768px) {
	#headline{
		width: 100%;
		padding-left: unset;
	}
	#headline .swiper{
		width: 100vw;
		}
}

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

footerフッター設定

****************************************/
footer {
	font-size: 10px;
	padding: 80px 0 0;
}
footer .footer_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url(../images/contents_bg_01.jpg) center bottom / cover no-repeat;
	z-index: -1;
	pointer-events: none;
}
/* テキストメニュー */
footer .nav{
	margin: 0 auto 30px;
	padding: 10px 0;
	line-height: 20px;
}
footer .nav li {
	display: inline-block;
	line-height: 30px;
	font-family: "Bodoni Moda", serif;
    font-weight: 300;
    letter-spacing: 1px;
}
footer .nav li:last-child{
	border-right: none;
}
footer .nav li a{
	display: block;
	text-transform: uppercase;
	font-size: 12px;
    padding: 10px 20px;
}
footer .nav li a span {
    display: block;
    line-height: 10px;
    font-size: 10px;
}
footer .nav li a:hover{
	opacity: 0.5;
}
footer .nav li:last-child:after {
	display: none;
}

footer .logo {
	max-width: clamp(240px,28vw,280px);
	margin: 0 auto;
}
footer .logo img {
	width: 100%;
	height: auto;
}
/* 電話番号&営業時間 */
footer .tel,
footer .open {
	letter-spacing: 1px;
}
footer .tel {
	font-size: 1.4rem;
	margin: 30px auto 10px;
}
footer .open {
	font-size: clamp(14px, 4vw, 18px);
	margin: 0px auto 30px;
}
footer .tel a {
	display: block;
	color: #fff;
	width: 100%;
    max-width: clamp(320px, 36vw, 380px);
	background: var(--bg-gradation1);
	border-radius: 30px;
	padding: 2px;
	margin: 0 auto;
}
footer .tel span {
	font-family: "Inria Serif", serif;
	font-weight: 400;
	font-style: normal;
}
footer .tel span,
footer .open span,
footer .reception span {
	font-size: 0.8em;
	margin-right: 5px;
}


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

.footer_link {
	padding: 5px 0;
	background: #9fa2a9;
	text-align: center;
	font-size: 12px;
	font-family: sans-serif;
	color: #fff;
}
.footer_link a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #d0d0d0;
}
.footer_txt{
	margin: 10px;
	color: #fff;
}

/* フリースペース */
.free_link_box 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;
}


/****************************************
mainvisualメインビジュアル
****************************************/
#section_main {
    position: relative;
    padding-top: clamp(300px, 48vw, 360px);

	
}
@media screen and (min-width: 768px){
	#section_main {
		padding-bottom: 80px;
	}
}
#section_main .bg-image-fixed {
	width: 100vw;
	height: 100vh;
	background: url(../images/mainvisual_bg.jpg) center top / cover no-repeat;
	z-index: -1;
	pointer-events: none;
}

#mainvisual {
	position: absolute;
    top: clamp(0px, 0vw, 0px);
    right: clamp(40px, 6vw, 50px);
    /* z-index: 0; */
	width: 64%;
    height: clamp(930px, 90vw, 900px);
}
#mainvisual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: -30px top;
	mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
@media screen and (max-width: 768px) {
	#mainvisual {
		position: absolute;
		top: clamp(0px, 0vw, 0px);
		right: clamp(20px, 4vw, 20px);
		width: 60%;
		height: clamp(620px, 90vw, 900px);
	}
	#mainvisual img {
		object-position: top;
	}
}

.mv_txt_wrap {
    position: relative;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 20;
    font-family: var(--font-title);
	text-align: left;
	padding: 0 20px 40px;
	max-width: 1280px;
    width: min(100%, 1280px);
}
.mv_txt_wrap .mv_txt1 {
    font-size: 3.2rem;
    letter-spacing: 2px;
    padding-left: 20px;
	margin-bottom: 20px;
    line-height: 1.4;
	font-style: italic;
}
.mv_txt_wrap .mv_txt1 span{
	font-size: 1.2em;
}
.mv_txt_wrap .mv_txt2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    padding-left: 20px;
    line-height: 1.4;
	font-style: italic;
}
.mv_txt_wrap .mv_txt2 span{
	background: var(--bg-gradation2);
    border-radius: 50px;
    padding: 0px 14px;
    margin-bottom: 10px;
    margin-right: 10px;
    color: var(--color-black1);
    display: inline-block;
}
@media screen and (max-width: 768px) {
	.mv_txt_wrap .mv_txt1 {
        font-size: 1.4rem;
        letter-spacing: 2px;
        padding-left: 0px;
        margin-bottom: 10px;
        line-height: 1.4;
	}
	.mv_txt_wrap .mv_txt2 {
        font-size: 1.0rem;
        letter-spacing: 1px;
        padding-left: 0px;
        line-height: 1.4;
	}
	.mv_txt_wrap .mv_txt2 span{
        background: var(--bg-gradation1);
        border-radius: 50px;
        padding: 0px 8px;
        margin-bottom: 10px;
        margin-right: 4px;
        color: var(--color-black1);
        display: inline-block;
	}
}

.top_nav{
  display: block;
  background: var(--color-black1);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.5) 90%, rgba(0, 0, 0, 0.2) 0%, 100%);
}
#section_main .top_nav ul{
  display: table;
  width: 1200px;
  margin: 0 auto;
  table-layout: fixed;
  padding: 10px 0;
}
#section_main .top_nav ul li{
  display: table-cell;
}
#section_main .top_nav ul li a{
  font-size: 18px;
  font-weight: normal;
  line-height: 40px;
  display: block;
  height: 40px;
  transition: .3s ease-in-out;
  letter-spacing: 3px;
   color: var(--color-txtmain)
}
#section_main .top_nav ul li:not(:last-of-type){
  border-right:1px solid var(--color-main2);
}
#section_main .top_nav ul li a:hover{
  opacity: .5;
}
#section_main .top_nav ul li:first-child a{
  border-left: none;
}
#section_main .top_nav ul li:last-child a{
  border-right: none;
}
#section_main .top_nav ul li.active a{
  background: var(--color-main2);
}

/* パンくずリスト */
.breadcrumbs {
	text-align: center;
	margin-bottom: 100px;
	letter-spacing: 1px;
}
.breadcrumbs ol li {
	font-size: 10px;
    display: inline-block;
}
.breadcrumbs ol li:before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
  font-weight: 900;
	display: inline;
	margin: 0 8px 0;
}
.breadcrumbs ol li:first-child:before {
	margin: 0;
	content: "\f015";
}
.breadcrumbs ol li a {
	color: #fff;
}




/******************************
認証ページ
******************************/

#entry_body {
  background-color: var(--color-main3);
}
#entry_body .bg-image-fixed {
	background: url('../images/contents_bg_03.jpg') center top / cover no-repeat;
}
#entry_body header{
	background: none;
	box-shadow: none;
	position: unset;
	height: auto;
}
#entry_body #contents{
	padding-top: 80px;
}
#entry_body #contents .logo{
	margin-bottom: 50px;
}
#entry_body #contents .logo img{
	filter: drop-shadow(2px 2px 2px rgba(0, 156, 154, 0.8));
}
#entry_body #contents .info_box,
#entry_body #contents .info_box a {
	width: 100%;
	font-size: 18px;
	filter: drop-shadow(2px 2px 2px rgba(0, 156, 154, 0.8));
}
#entry_body #contents .info_box span{
	font-size: 1.5em;
}
.btn_enter,
.btn_exit {
	font-family: "Bodoni Moda", serif;
    font-optical-sizing: auto;
	width: 300px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	border-radius: 50px;
	background: var(--color-main5);
	color: #fff;
	font-size: 16px;
	margin: 0 auto 30px;
	text-transform: uppercase;
}
#entry_body h2{
	font-size: 18px;
	font-weight: 700;
}
#entry_body .list_link_box img,
#contents_link .list_link_box img {
    width: auto;
    max-width: 100%;
    height: auto;
}

/******************************
トップページ
******************************/
/*トップページ共通*/

/* トップページコンテンツごとのブロック */
.section-wrapper { position: relative;}
.section-body {
    position: relative;
    padding-top: 80px;
    width: 100%;
    text-align: center;
}
.bg-image-clip {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  clip-path: inset(0); /* 切り抜き */
  z-index: 0;
}
.bg-image-fixed {
  position: fixed; /* 背景を固定 */
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
#section_wrap{
	background-color: var(--color-black1);
    padding-bottom: 200px;
}
#section_wrap .bg-image-fixed {
	background: url('../images/contents_bg_02.jpg') center top / cover no-repeat;
}


section h2{
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: auto;
    line-height: 1;
    margin-bottom: 10px;
    font-size: clamp(2.4rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
	color: var(--color-main1);
}
section h2 span{
	font-size: 16px;
	line-height: 2.4;
	display: block;
}
@media screen and (max-width: 768px){
	section h2{
        letter-spacing: 4px;
	}
	section h2 span{
        font-size: 12px;
        line-height: 4.4;
	}
}
h2.subtitle {
	position: relative;
	color: var(--color-main1);
	margin-bottom: clamp(30px, 4vw, 40px);
	padding-top: 80px;
}
h2.subtitle::before {
	display: block;
	content: "";
    width: 68px;
    height: 54px;
	background: url(../images/subtitle_deco.svg) center / cover no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#section_top_ranking_01 h2.subtitle {
	position: relative;
	color: var(--color-black1);
	margin-bottom: clamp(30px, 4vw, 40px);
	padding-top: 80px;
}
#section_top_ranking_01 h2.subtitle::before {
	display: block;
	content: "";
    width: 68px;
    height: 54px;
	background: url(../images/subtitle_deco_black.svg) center / cover no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

/*トップページ　2カラム*/
.column{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.column section{
	width: 50%;
	max-width: 600px;
	}

.column .cast_box .cast_box_list .frame img{
	width: 280px;
}

@media screen and (max-width: 768px){
	.column section{
		width: 100%;
	}
	.column .cast_box .cast_box_list .frame img{
		width: 200px;
	}
}


/* イベント */
#section_event {
	width: 100%;
	overflow: hidden;
    border-bottom: 5px dotted var(--color-main1);
    border-image: var(--bg-gradation1) 1;
	padding-bottom: 100px;
}
#section_event .section--wrapper {
	padding: 0px 0 40px;
	margin-inline: auto;
}
#section_event a { display: block; }
@media screen and (max-width: 768px){
	#section_event:before {
		top: -22px;
		font-size: 6.0rem;
	}
}
.splide__event img {
	height: auto;
	width: 100%;
	transition: 0.3s all;
}
.event__page {
	background-color: var(--color-main4);
	height: 14px;
	width: 14px;
	border-radius: 40px;
	border: none;
	transition: 0.5s all;
	cursor: pointer;
}
.event__page.is-active {
	background: var(--color-main3);
	opacity: 1;
}
.event__pagination {
	bottom: 1.5em;
	padding-top: 20px;
}
.event__pagination li {
	margin-left: 5px;
	margin-right: 5px;
}

#section_event .event__bnr_box {
	padding-top: 40px;
	width: min(100%, 640px);
	margin-inline: auto;
}
@media screen and (max-width: 768px){
	#section_event .event__bnr_box { padding: 40px 1.0em 0;}
}


/* コンセプト */
#section_concept {
	background: rgba(0, 0, 0, 0.6); 
    position: relative;
	margin: 100px auto;
}
#section_concept:before,
#section_concept:after {
  position: absolute;
  content: "";
  display: inline-block;
	left: 0;
    right: 0;
    margin: auto;
}
#section_concept:before {
  top: -40px;
  width: 160px;
  height: 38px;
  background: url(../images/img_frame_decoration1.svg) no-repeat;
  background-size: contain;
}
#section_concept:after {
  bottom: -40px;
  width: 160px;
  height: 38px;
  background: url(../images/img_frame_decoration1.svg) no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.section_concept_inner{
	padding: 80px 20px;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.section_concept_inner:before {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    content: "CONCEPT";
	font-weight: 300;
	line-height: 1;
    font-family: var(--font-title);
    font-size: 18rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(40, 39, 40, 0.8);
    white-space: nowrap;
}
@media screen and (max-width: 599px){
	#section_concept:before {
		top: -30px;
		width: 120px;
		height: 30px;
	}
	#section_concept:after {
		bottom: -30px;
		width: 120px;
		height: 30px;
	}
	.section_concept_inner:before {
		position: absolute;
		top: -8px;
		left: 0;
		right: 0;
		content: "CONCEPT";
		font-family: var(--font-title);
		font-size: 5rem;
		font-weight: 300;
		line-height: 1;
		color: rgba(40, 39, 40, 0.8);
		white-space: nowrap;
	}
}
#section_concept .inner{
    z-index: 1;
    position: relative;
}
#section_concept .inner p{
	font-style: italic;
	letter-spacing: 2px;
	line-height: 2.2;
}
#section_concept .inner p span{
	color: var(--color-main3);
}
#section_concept .inner p span {
	font-size: 1.4em;
    line-height: 1.4;
}



/* 新人情報 */
#section_newface .swiper{
	width: 300px;
	margin: 0 auto;
}
#section_newface .cast_box .cast_box_list{
	padding:0  10px;
}
@media screen and (max-width: 768px){
	#section_newface .swiper{
		width: 220px;
		margin: 0 auto;
	}
}

/* 新人情報 ver02　*/
#section_newface02 {
	width: 250px;
	float: left;
}
#section_newface02 ul{
	overflow-y: auto;
	height: 310px;
}
#section_newface02 ul li{
  padding: 10px 5px;
  overflow-y: auto;
  border-bottom: 1px dotted #fff;
}
#section_newface02 ul li:last-child{
  border-bottom: none;
}
#section_newface02 ul li div{
  margin: 0 auto;
  display: inline-block;
  vertical-align: top;
}
#section_newface02 ul li div:last-child {
  width: 120px;
  overflow: hidden;
}
#section_newface02 ul li div:last-child img {
	width: 40px;
  vertical-align: middle;
}
#section_newface02 ul li div p {
  font-size: 10px;
  text-align: left;
}
#section_newface02 ul li div p.textCut {
  height: 70px;
  overflow: hidden;
  word-wrap: break-word;
}
#section_newface02 ul li div p.time {
  font-size: 12px;
  color: #e8d773;
  border-bottom: 1px dotted #e8d773;
}
#section_newface02 ul li div:first-child{
  position: relative;
}
#section_newface02 ul li div:first-child span.frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* 新着情報 */
#section_topics {
	margin-bottom: 100px;
}
#section_topics .info_box_inner{
    padding: 4%;
    border: 5px solid #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}
@media screen and (max-width: 768px){
	#section_topics .info_box_inner{
		padding: 20px;
		border: 5px solid #fff;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
		position: relative;
	}
}
#section_topics  .bg_animation {
    background: url(../images/contents_bg_04.jpg) top center no-repeat;
    background-size: cover;
}

.bg_animation {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.bg_animation:after {
	width: 100%;
	height: 100%;
	background: #fff;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transition: 1.4s ease-in-out;
	transition: 1.4s ease-in-out;
}
.bg_animation.on:after {
	width: 0%;
}

#section_topics #info_box {
	height: 460px;
	overflow-y: auto;
}
#section_topics #info_box {
    width: 100%;
    padding: 4% 0;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    outline: solid 2px rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
	color: var(--color-black1);
}
#section_topics #info_box tbody tr td{
	border: 1px solid #3e4349;
}
#section_topics #info_box article{
	/* margin-bottom: 30px; */
	text-align: left;
}
#section_topics #info_box article .heading{
	background: rgba(255, 255, 255, 0.6);
	text-align: left;
	padding: 10px 4%;
}
#section_topics #info_box article .heading time{
    font-weight: normal;
    font-size: 0.8rem;
	color: var(--color-main4);
}
#section_topics #info_box article .txt_box{
	text-align: left;
	padding: 30px 4%;
}
#section_topics #info_box article p img{
    max-width: 100%;
    height: auto !important;
}
#section_topics #info_box strong {
	font-weight: bold;
}


.btn_unit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
	margin-top: 30px;
}
.btn_unit a {
	position: relative;
	display: block;
	padding: 8px;
	border: 1px solid #b4b4b4;
	color: #fff;
	width: 100%;
	max-width: 160px;
	letter-spacing: 2px;
	font-weight: 400;
}
.btn_unit a:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	margin: auto;
}
.btn_unit a.btn__prev:before {
	border-bottom: solid 2px #fff;
	border-left: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 2px;
	left: 10px;
}
.btn_unit a.btn__next:before {
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 2px;
	right: 10px;
}


/* 新人情報 */
#section_newface .newface_flower {
	position: relative;
	max-width: 280px;
	width: 100%;
	margin-inline: auto;
}
#section_newface .newface_frame {
	width: 100%;
	position: relative;
	display: inline-block;
	padding: 29px 16px;
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    outline: solid 2px rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
    color: var(--color-black1);
}
#section_newface .cast_box .cast_box_list { justify-content: flex-start; }
#section_newface .newface_frame .txt_box p{
	color: var(--color-black1);
}
#section_newface .newface_frame .txt_box p.time{
	color: #fff;
}

#section_newface .newface__page {
	background-color: var(--color-main1);
	height: 12px;
	width: 8px;
	border-radius: 40px;
	border: none;
	transition: 0.5s all;
	cursor: pointer;
}
#section_newface .newface__page.is-active {
	background: var(--color-main3);
	opacity: 1;
}
#section_newface .newface__pagination {
	bottom: 1.5em;
	padding: 24px 24px 0;
}
@media screen and (max-width: 768px){
	#section_newface .newface__pagination { padding: 24px 0 0; }
}
#section_newface .newface__pagination li { margin: 6px; }

/** 縦書き装飾 ***********/
.txt_vertical{
    padding-top: 80px;
    color: var(--color-main3);
    font-size: 2.4em;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    position: absolute;
    top: 0;
    left: -60px;
}
.txt_vertical::before{
	content: "";
    display: block;
    width: 1px;
    height: 70px;
    position: absolute;
    top: 0%;
    left: 50%;
	transform: none;
	background: var(--color-main3);
}
.txt_vertical::after{
	content: "";
	display: block;
	width: 1px;
	height: 35px;
	position: absolute;
	top: 0;
	left: 50%;
	background: #634430;
	z-index: 20;
}


/* ランキング */
#section_top_ranking_01 {
  background-color: var(--color-main3);
}
#section_top_ranking_01 .bg-image-fixed {
	background: url('../images/contents_bg_03.jpg') center top / cover no-repeat;
}
#section_top_ranking_01 {
  padding: 160px 0 100px;
  margin-top: -100px;
  background: url(../images/bg_pattern2.jpg);
  background-repeat: no-repeat;
  background-position: 90% 0%;
  background-size: cover;
  clip-path: polygon(100% 100%, 0 calc(100% - 60px), 0 0px, 100% 60px);
  position: relative;
}
#section_top_ranking_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main5); /* 2つ目の背景色 */
  clip-path: polygon(0 60px, 100% 0%, 100% 0px, 0 0%); /* 2つ目の斜め線 */
}

#section_top_ranking_01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main5); /* 2つ目の背景色 */
  clip-path: polygon(0 60px, 100% 0%, 100% 0px, 0 0%); /* 2つ目の斜め線 */
}


/* バナー */
#section_bnr{ padding: 80px 0 0; }

#section_bnr a {
	width: 100%;
	display: block;
}
#section_bnr a img {
	max-width: 400px;
	width: 100%;
	height: auto;
}
#section_bnr ul {
	display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px min(2%, 30px);
}
#section_bnr ul li {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}
@media screen and (max-width: 768px){
	#section_bnr ul {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 20px min(2%, 30px);
	}
}

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

下層ページ

****************************************/
/*下層ページ共通設定*/
#contents_system,
#contents_cast,
#contents_schedule,
#contents_recruit,
#contents_entry,
#contents_impressions,
#contents_contact,
#contents_enquete,
#contents_reserve{
	padding: 0 0 100px;
}
.subvisual{
    padding: 150px 0 10px;
}
.subvisual h2{
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: auto;
    letter-spacing: 2px;
    position: relative;
    color: var(--color-main1);
    margin-bottom: clamp(0px, 4vw, 20px);
    padding-top: 80px;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
}

.subvisual h2::before {
	display: block;
	content: "";
    width: 68px;
    height: 54px;
	background: url(../images/subtitle_deco.svg) center / cover no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.subvisual h2 span{
	font-size: 16px;
    display: block;
    line-height: 2.4;
}


/*フレーム*/
.box_frame_tiffanyblue{
	background: rgba(255, 255, 255, 1);
    padding: clamp(15px, 3vw, 30px);
    border: solid 2px;
    border-image: var(--bg-gradation1);
    border-image-slice: 1;
    outline: solid 4px #fff;
    text-align: left;
	color: var(--color-black1);
}
.box_frame_black{
    padding: 32px;
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    outline: solid 2px rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
    color: var(--color-black1);
}
.box_frame_line{
	width: 100%;
    padding: 15px;
    background: #fff;
    border: 10px solid #e1f2f1;
    text-align: left;
    table-layout: fixed;
	color: var(--color-black1);
}
.box_frame_vanilla{
    padding: 4%;
    border: 5px solid #fff;
    background: url(../images/contents_bg_04.jpg) top center no-repeat;
    background-size: cover;
}
.box_frame_vanilla .box_frame_black{
    background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px){
	.box_frame_black{
		padding: 20px;
		outline: solid 1px rgba(255, 255, 255, 0.85);
	    outline-offset: 1px;
	}
	.box_frame_vanilla{
		border: 3px solid #fff;
	}
}

/* タイトル */
.title_grd01 {
    color: #fff;
    padding: 3px 0;
    margin-bottom: 20px;
    background: var(--bg-gradation2);
    font-size: clamp(16px, 3vw, 22px);
    text-align: center;
    position: relative;
}
.title_grd01::before {
	content: '';
	position: absolute;
	top: -3px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--bg-gradation2);
}
.title_grd01::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--bg-gradation2);
}

.title_cborderside{
	padding: 6px 12px;
    margin-bottom: 8px;
	text-align: left;
	background: #ebfdfc;
}
.title_cborderside span {
    border-left: 4px solid var(--color-main3);
    padding-left: 8px;
    line-height: 1;
}


/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
    margin: 40px 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;
	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:hover {
	opacity: 0.6;
}
.schedule_nav li.active a {
	background: #000;
	color: #fff;
}
.schedule_nav li.active a:hover{
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.schedule_nav li:first-child{
		width: 100%;
	}
}




/* ナビゲーションボタン 上書き*/
.sch_nav_btn.swiper-button-prev, 
.sch_nav_btn.swiper-button-next {
	margin-top: 0;
	width: auto;
	height: 32px;
	background: #fff;
    border: 1px solid #d8d8d8;
	color: #3c3c3c;
	transition: ease 0.3s;
}
.sch_nav_btn.swiper-button-prev:after, 
.sch_nav_btn.swiper-button-next:after {
	display: none;
}
.sch_nav_btn.swiper-button-prev {
	top: 0;
	left: 0;
	padding: 0 16px 0 8px;
}
.sch_nav_btn.swiper-button-next {
	top: 0;
	right: 0;
	padding: 0 8px 0 16px;
}
.sch_nav_btn.swiper-button-prev.swiper-button-disabled,
.sch_nav_btn.swiper-button-next.swiper-button-disabled {
 opacity: 0;
}

@media screen and (min-width: 768px) {
	.schedule_nav li,
	.schedule_nav li:first-child {
		width: calc((100% - 48px)/ 7 );
	}
}


/****************************************
週間スケジュールページ
****************************************/
#contents_schedule .schedule_box{
	text-align: left;
}
#contents_schedule .schedule_box li{
	padding: 10px;
	background: #e0e0e0;
	grid-template-columns: 10% auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: -ms-grid;
	display: grid;
	margin-bottom: 20px;
}
#contents_schedule .schedule_box .name{
	width: 100%;
	font-size: 15px;
}
#contents_schedule .schedule_box table{
	width: 100%;
	height: 80px;
	font-size: 10px;
	text-align: center;
}
/*以下のサイズはサイトに合わせてください*/
#contents_schedule .schedule_box .img_box{
	width: 100%;
    padding-right: 20px;
}
/*以下のサイズはサイトに合わせてください*/
#contents_schedule .schedule_box .img_box img{
	max-width: 100%;
}
@media screen and (max-width: 768px) {
	#contents_schedule .schedule_box li{
		grid-template-columns: auto;
	}
	#contents_schedule .schedule_box .img_box{
        width: 50%;
        padding-right: 0px;
        margin: 0 auto 10px;
	}
}
/****************************************
ランキングページ
****************************************/
#section_ranking_01 .cast_box li {
	margin: 0 30px 30px 0;
	float: left;
	width: 300px;
}
#section_ranking_01 .cast_box li p.name {
    line-height: 1.4;
    padding-bottom: 4px;
}
#section_ranking_01 .cast_box li:nth-of-type(3n) {
	margin-right: 0;
}
/*以下のサイズはサイトに合わせてください*/
#section_ranking_01 .cast_box li .img_box {
	width: 300px;
	height: 450px;
	margin-bottom: 10px;
}
/*以下のサイズはサイトに合わせてください*/
#section_ranking_01 .cast_box li .img_box img{
	max-width: 300px;
	max-height: 450px;
}
#section_ranking_02 .cast_box li {
	margin: 0 30px 30px 0;
	float: left;
}
#section_ranking_02 .cast_box li:nth-of-type(3n) {
	margin-right: 0;
}
#section_ranking_01 .cast_box li .icon_ranking {
	position: absolute;
	top:350px;
	left: 200px;
}
#section_ranking_02 .cast_box li .icon_ranking {
	position: absolute;
	top:231px;
	right: 0;
}
#section_ranking_01 .cast_box li .icon_new{
	width: 50px;
	position: static;
}

/****************************************
プロフィールページ
****************************************/
#contents_profile .profile_box_right,
#contents_profile .profile_box_left {
	width: 100%;
	max-width: 480px;
	display: inline-block;
	vertical-align: top;
	word-break: break-word;
}
#contents_profile .profile_box_left .img_box{
	width: 300px;
	height: 450px;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.profile_box_right .name img{
	width: 50px;
	vertical-align: sub;
}
.profile_box_right .icon img{
	width: 49%;
	max-width: 50px;
}
.profile_box_right video{
	width:100%;
}
/*以下のサイズはサイトに合わせてください*/
#contents_profile .img_box > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_profile .profile_box_left .img_box .frame{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.profile_box_schedule{
	clear: both;
}
#contents_profile .profile_option_box p{
	width: 33.33%;
	padding: 5px;
	box-sizing: border-box;
	float: left;
	text-align: center;
	font-size: 10px;
	font-weight: 700;
}
#contents_profile .profile_option_box .can{
	background: #ffff00;
}
#contents_profile .profile_option_box .normal{
	background: #00d8d1;
}
#contents_profile .profile_option_box .cant{
	background: #333333;
	color: #999;
}
#contents_profile .profile_option_box::after{
  content: "";
  display: block;
  clear: both;
}
/* アイコン */
.profile_box_right .icon_box {
    display: flex;
    justify-content: center;
	margin-bottom: 30px;
}
.profile_box_right .icon_box img{
    width: 30px;
    margin: 0 4px;
}

/*出勤タイムライン設定*/
ul.timeline-head,
ul.timeline {
	display:table;
	table-layout:fixed;
	width:100%;
	font-size: 0.5em;
}
ul.timeline-head li,
ul.timeline li {
	display:table-cell;
	text-align:center;
}
ul.timeline-head li:first-child {
	border-left:none;
}
ul.timeline li {
	text-indent:-600px;
	overflow:hidden;
	border-top:1px solid #CCC;
}
ul.timeline li:first-child {
	border-left:none;
}
ul.timeline li.ui-selected {
	background:#000b84;
}


/* ↓↓ レスポンシブ用スケジュール
*  ブラウザで確認するときはmainタグのwidth:960pxを消して確認してください。
*/
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: flex;
	box-sizing: border-box;
	border: 1px solid #eee;
	margin: 40px 0;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	flex-grow: 1;
}
.profile_box_schedule .profile_sch_box div:nth-of-type(1).profile_sch_variable .profile_sch_date,
.profile_box_schedule .profile_sch_box div:nth-of-type(1).profile_sch_variable .profile_sch_check{
      border-left: none;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	padding: 5px;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
	background: #999;
	color: #fff;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	padding: 5px;
	border-left: 1px solid #eee;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .icon_shop_chart {
    padding: 5px 20px;
}
@media (max-width: 767px) {
	.profile_box_schedule .profile_sch_box {
		display: block;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable {
		flex-grow: unset;
		display: flex;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
		flex-basis: 50%;
		border-left: none;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
		flex-basis: 50%;
		border-bottom: 1px solid #eee;
	}
}
/* ↑↑ ここまで レスポンシブ用スケジュール */




/*
プロフィールページ 感想
*/
.impressions_box ul.impressions_inner{
	display: flex;
	flex-flow: wrap;
}
.impressions_box ul.impressions_inner li.impressions_list{
	flex-basis: 50%;
	border: 3px solid #eee;
	box-sizing:border-box;
	background: #fff;
}
.impressions_box ul.impressions_inner li.impressions_list:nth-child(2n){
	margin-right: 0;
}
.impressions_box ul.record{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	background: #888;
	padding: 5px 10px;
	margin: auto;
}
.impressions_box ul.record li{
	width: 50%;
	display: inline-block;
	color: #fff;
	line-height: 30px;
	text-align: left;
	margin: auto;
}
.impressions_box ul.evaluation{
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.impressions_box ul.evaluation li{
	width: 24%;
	display: inline-block;
	color: #3e4349;
}
.impressions_box div.txt{
	height: 150px;
	padding: 10px;
	text-align: left;
	word-wrap:break-word;
	overflow-y: auto;
	box-sizing: border-box;
}
.impressions_box div.txt .fa-lg{
	line-height: auto;
}
.impressions_box div.txt span{
	display: block;
	font-weight: bold;
	color: #d31563;
	text-align: center;
}
@media (max-width: 767px){
	.impressions_box ul.impressions_inner li.impressions_list{
		flex-basis: 100%;
	}
}


/****************************************
システムページ
****************************************/

.table_system {
    width: 100%;
    text-align: center;
    table-layout: fixed;
}
.table_system input{
    border: 1px solid #e0e0e0;
}
.table_system tr {
    margin-bottom: 10px;
}
.table_system .headline th{
	background: var(--table-system-color1);
	font-size: 1.2rem;
}
.table_system tr.check_list input{width: auto;}
.table_system th,
.table_system td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid var(--table-system-color2);
    /*    text-shadow: 0 0 10px #fff;*/
}
.table_system th {
    font-size: 1.4rem;
    padding: 20px 10px;
    color: #fff;
    background: var(--color-main1);
    vertical-align: middle;
}
.table_system td {
    font-size: 1.2rem;
    color: var(--color-black1);
	background: #fff;
}
.table_system th span,
.table_system td span{
    font-size: 1.0rem;
}
.table_system th span.atten_01{
    font-size: 1.0rem;
	    color: #e3ff00;
}
.table_system td a{
    color: var(--color-black1);;
}
.table_system .requier {
    border-radius: 2px;
    background: #bd0101;
    color: #fff;
    font-size: 0.6em;
    letter-spacing: 1px;
    padding: 4px 12px;
}
@media screen and (max-width: 768px) {
	.table_system .headline th{
		font-size: 1.0rem;
	}
	.table_system th {
		padding: 10px 0px;
		font-size: 1.0rem;
	}
	.table_system td {
		padding: 10px 0px;
		font-size: 1.0rem;
	}
	.table_system th span,
	.table_system td span{
		font-size: 0.6rem;
	}
}


/****************************************
Q&Aページ
****************************************/
#contents_qa .list_box li{
	height: 210px;
}


/****************************************
ご利用方法ページ
****************************************/
#contents_info .list_box li{
	height: 210px;
}




/****************************************
求人情報ページ
****************************************/



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



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



/****************************************
アンケートページ
****************************************/



/****************************************
アクセスページ
****************************************/
#contents_access .access_ol li{
	width: 100%;
	max-width: 450px;
	display: inline-block;
	padding: 10px;
	margin: 10px auto;
}


/****************************************
ホテルページ
****************************************/
#contents_hotel #list_tab_01,
#contents_hotel #list_tab_02 {
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
}
#contents_hotel #list_tab_01 li,
#contents_hotel #list_tab_02 li {
	margin: 3px;
	display: inline-block;
	max-width: 100px;
}
#contents_hotel .title_room {
	font-size: 1.5em;
}
#contents_hotel .title_room span {
	font-size: 0.75em;
}
/****************************************
体験漫画ページ
****************************************/



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


/****************************************
404ページ
****************************************/
#contents_err h3{
	font-size: clamp(14px, 4vw, 20px);
    margin-bottom: 20px;
}

