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

****************************************/
:root {
	--color-black:	#111111;
	--color-white:	#e2e2e2;
	--color-silver: #8d8d8d;
	--color-gold:		#b39e70;
	--color-brown:	#292621;
	--color-red:		#d85454;
	--color-red2:		#751111;
	--color-gray:		#333333;

	--gra-silver:	linear-gradient(90deg, #444 0%, #666 100%);
	--gra-gold:		linear-gradient(90deg, #645639 0%, #817457 100%);
	--gra-red:		linear-gradient(90deg, #680202 0%, #751111 100%);

	--color-black-alpha: rgba(17, 17, 17, 0.9);
}

body {
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
	color: var(--color-white);
	background: var(--color-black) url(../images/bg_black.jpg) center top / 1500px 655px repeat;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 1px;
	overflow-wrap: break-word;
}
body, input[type="submit"], input[type="reset"], input[type="button"], button{
	font-family: "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
@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;
	}
}

::-moz-selection {
  background: var(--color-red);
  color: #fff;
}
::selection {
  background: var(--color-red);
  color: #fff;
}
ul::-webkit-scrollbar {
  display: none;
}

.inner {
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner600{
	width: 95%;
	max-width: 600px;
	margin: 0 auto;
}
.inner800{
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
}
/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
a, a:hover{
	color: var(--color-red);
}
/* 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: var(--color-red);}
.atten_02, .atten_02 a{color: var(--color-gold);}
.atten_03, .atten_03 a{color: #7692e5;}
.atten_04, .atten_04 a{color: var(--color-red);}

.tc_silver{ color: var(--color-silver); }
.tc_gold{ color: var(--color-gold); }
.tc_red{ color: var(--color-red); }

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

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

/*********** フォントサイズ ***********/
.fs_ss{font-size: 0.75em;}
.fs_s{font-size: 0.85em;}
.fs_12em{font-size: 1.2em;}
.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;
}
@media (any-hover: hover) {
	.link_act_01:hover{
		opacity: 0.7;
	}
}

.link_act_02{
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.link_act_02 img {
  display: block;
  width: 100%;
  height: auto;
}
.link_act_02::before {
	content: '';
	position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
	z-index: 2;
}
@media (any-hover: hover) {
	.link_act_02:hover::before{
		animation: shine .65s;
	}
}
@keyframes shine {
  100% { left: 125%; }
}

/*********** table設定 ***********/
/*table01*/
.table_01 {
	width: 100%;
	border-spacing: 0 1px;
	border-collapse: separate;
	text-align: left;
}
.table_01 th, .table_01 td {
	padding: 15px;
	line-height: 1.4;
	vertical-align: middle;
	border-bottom: solid 1px var(--color-silver);
}
.table_01 th {
	width: 35%;
	color: var(--color-white);
	vertical-align: middle;
}
@media screen and (max-width: 768px) {
	.table_01 {
		border-spacing: 0;
	}
	.table_01 th, .table_01 td {
		display: block;
		padding: 10px;
		width: 100% !important;
	}
	.table_01 th {
		padding: 15px 0 5px;
		background: none;
	}
	.table_01 td {
		border-bottom: none;
		padding: 10px 0;
	}
	.table_01 tr:last-child td {
		padding-bottom: 0;
	}
}

/*table02*/
.table_02 {
	width: 100%;
	border-spacing: 0 0;
	border-collapse: separate;
	text-align: left;
}
.table_02 th, .table_02 td {
	padding: 15px;
	line-height: 1.4;
	vertical-align: middle;
	border-bottom: solid 1px var(--color-silver);
}
.table_02 th {
	width: 35%;
	background: var(--color-black-alpha);
	color: var(--color-white);
	vertical-align: middle;
}
@media screen and (max-width: 768px) {
	.table_02 {
		border-spacing: 0;
	}
	.table_02 th, .table_02 td {
		display: block;
		padding: 10px;
		width: 100% !important;
	}
	.table_02 th {
		padding: 15px 0 5px;
		background: none;
	}
	.table_02 td {
		border-bottom: none;
		padding: 10px 0;
	}
	.table_02 tr:last-child td {
		padding-bottom: 0;
	}
}

/*table03*/
.table_03_wrap {
	overflow-x: auto;
}
.table_03 {
	width: 100%;
	white-space: nowrap;
}
.table_03 th, .table_03 td {
	padding: 10px;
	line-height: 1.4;
	border: solid 1px #444;
	background: var(--color-black-alpha);
	font-size: clamp(12px, 2vw, 14px);
	vertical-align: middle;
}
.table_03 th {
	background: var(--color-gray);
	color: var(--color-white);
}

/*********** ボタン設定 ***********/
.btn_more {
	display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
	height: 54px;
	margin: 60px auto 0;
	background: var(--gra-red);
  color: var(--color-white);
	font-size: 14px;
	/* position: relative;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease; */
}
@media (any-hover: hover) {
	.btn_more:hover{
		color: var(--color-white);
		/* opacity: 0.7; */
	}
}

/* 戻る */
.btn_back {
	display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
	height: 54px;
	margin: 30px auto 0;
	background: var(--gra-red);
  color: var(--color-white);
	font-size: 14px;
	position: relative;
	/* opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease; */
}
@media (any-hover: hover) {
	.btn_back:hover{
		color: var(--color-white);
		/* opacity: 0.7; */
	}
}

/* 認証ページ */
.btn_enter {
	display: flex;
  justify-content: center;
  align-items: center;
	height: 54px;
	background: var(--gra-red);
  color: var(--color-white);
	font-size: 16px;
	position: relative;
	/* opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease; */
}
.btn_exit {
	display: flex;
  justify-content: center;
  align-items: center;
	height: 54px;
	background: var(--gra-silver);
  color: var(--color-white);
	font-size: 16px;
	position: relative;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
	.btn_enter:hover, .btn_exit:hover{
		color: var(--color-white);
	}
	.btn_exit:hover{
		opacity: 0.7;
	}
}

/* 求人ページ応募方法のボタン */
.btn_recruit {
	display: flex;
	gap: 5px;
	flex-direction: column;
	flex-wrap: wrap;
}
.btn_recruit a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 300px;
	min-height: 50px;
	padding: 10px;
	color: var(--color-white);
	background: var(--gra-red);
}
.btn_recruit a span {
	margin: 2px 5px 0 0;
}
@media screen and (max-width: 768px) {
	.btn_recruit a {
		margin: 0 auto;
	}
}

/* フォームのボタン */
.btn_form {
	display: flex;
	gap: 10px;
	justify-content: center;
}
.btn_form input,
.btn_form button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border: none;
	border-radius: 0;
	cursor: pointer;
	color: var(--color-white);
	background: var(--gra-red);
	font-size: 14px;
}
.btn_form .btn_send {
	background: var(--gra-red);
}
.btn_form .btn_reset {
	background: var(--gra-silver);
}
@media screen and (max-width: 768px) {
	.btn_form {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: center;
	}
	.btn_form .btn_send {
		order: 1;
	}
	.btn_form .btn_reset {
		order: 2;
	}
}

/******************************
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 {
	width: 100%;
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 8px;
	vertical-align: baseline;
	font-size: 16px;
	color: var(--color-black);
}
form textarea {
	resize: vertical;
	height: 200px;
}
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: var(--color-red);
}
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: 3px 4px 2px;
	border-radius: 2px;
	line-height: 1;
	color: var(--color-white);
	background: var(--gra-red);
	vertical-align: text-bottom;
}

/******************************
セラピスト共通設定
******************************/
.cast_box {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px min(2%, 30px);
}
.cast_box .cast_box_list {
	position: relative;
}
.cast_box .cast_box_list a {
	color: var(--color-white);
}
.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	position: relative;
}
/* hoverアニメーション */
.cast_box .cast_box_list a .img_box::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, transparent 25%, #8d8d8d 50%, #826e40 75%, #751111 100%);
	background-size: 400% 400%;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: .5;
	transition: all .6s;
}
@media (any-hover: hover) {
	.cast_box .cast_box_list a:hover .img_box::before {
		background-position: 100% 100%;
	}
}
/**/
.cast_box .cast_box_list .img_box .img_cast {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cast_box .cast_box_list .img_box .icon_new {
	position: absolute;
	top: 0;
	left: 0;
	max-width: clamp(40px,8vw,60px);
	z-index: 1;
}
/* 画像下 */
.cast_box .cast_box_list .btm {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
/* アイコン */
.cast_box .cast_box_list .icon_box {
	display: flex;
	justify-content: center;
	justify-content: flex-start;
	margin: 0 0 8px 4px;
}
.cast_box .cast_box_list .icon_box img {
	width: 30px;
	margin: 0 4px;
}

.cast_box .cast_box_list .frame {
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.cast_box .cast_box_list .frame img {
	width: 100%;
}

.cast_box .cast_box_list .txt_box {
	padding: 10px 0 0;
}
.cast_box .cast_box_list .txt_box .name {
	font-size: clamp(14px, 2vw, 16px);
	line-height: 1.4;
	margin-bottom: 2px;
}
.cast_box .cast_box_list .txt_box .name span {
	font-size: clamp(11px, 2vw, 13px);
	margin-left: 2px;
}
.cast_box .cast_box_list .txt_box .size {
	font-size: clamp(10px, 2vw, 13px);
	line-height: 1.4;
	letter-spacing: 0;
}
.cast_box .cast_box_list .txt_box .size span {
	color: var(--color-silver);
}
.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 .time {
	color: var(--color-white);
	font-size: clamp(12px, 2vw, 14px);
	background: var(--gra-silver);
	margin-top: 8px;
	padding: 5px;
	line-height: 1.2;
}
.cast_box .cast_box_list .txt_box .free_txt {
	font-size: clamp(12px, 2vw, 14px);
	line-height: 1.2;
	margin-top: 5px;
}
.cast_box .cast_box_list .txt_box .short_comment {
	display: flex;
  overflow: hidden;
  white-space: nowrap;
	position: relative;
}
.cast_box .cast_box_list .txt_box .short_comment p {
	font-size: clamp(12px, 2vw, 14px);
	line-height: 1.2;
	display: inline-block;
  padding-right: 1em;
	margin-top: 5px;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media screen and (max-width: 768px){
	.cast_box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	/* アイコン */
	.cast_box .cast_box_list .icon_box {
		margin: 0 0 4px 0;
	}
	.cast_box .cast_box_list .txt_box {
		padding: 6px 0 0;
	}
}

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

headerヘッダー設定

****************************************/
header {
	width: 100%;
	height: 60px;
	background: var(--color-black);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 0 20px;
}
header h1.logo img{
	max-width: 80px;
}
@media screen and (max-width: 768px) {
	header {
		padding: 0 10px;
	}
}

/*グローバルナビ*/
header nav {
	display: flex;
	align-items: center;
	gap: 2vw;
}
header nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 1.5vw;
}
header nav ul li a {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	color: var(--color-white);
	text-transform: uppercase;
	transition: all 0.4s ease-in-out;
}
header nav ul li a span {
	display: block;
	font-size: 10px;
}
@media (any-hover: hover) {
	header nav ul li a:hover {
		color: var(--color-red);
	}
}
@media screen and (max-width: 980px){
	header nav {
		display: none;
	}
	header .btn_reserve {
		font-size: 12px;
	}
}

/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
/*ハンバーガーメニューを作る*/
.btn_toggle {
	background: transparent;
	border: none;
	padding: 0;
	position: fixed;
	top: 7px;
	right: 6px;
	width: 46px;
	height: 46px;
	display: block;
	z-index: 999;
}
@media (any-hover: hover) {
	.btn_toggle:hover{
		cursor: pointer;
	}
}
.btn_toggle span,
.btn_toggle span:before,
.btn_toggle span:after {
	transition: all 0.4s ease-in-out;
}
.btn_toggle span{
	display: inline-block;
	background: var(--color-white);
	height: 1px;
	width: 30px;
	position: relative;
	top: -4px;
}
.btn_toggle span:before{
	content: "";
	display: inline-block;
	background: var(--color-white);
	height: 1px;
	width: 30px;
	position: absolute;
	top: 9px;
	left: 0;
}
.btn_toggle span:after{
	content: "";
	display: inline-block;
	background: var(--color-white);
	height: 1px;
	width: 30px;
	position: absolute;
	top: -9px;
	left: 0;
}
#btn_open {
	display: none;
}
#btn_open.active span{
	background: transparent;
}
#btn_open.active span:before{
	transform: rotate(135deg);
	top: 0;
}
#btn_open.active span:after{
	transform: rotate(-135deg);
	top: 0;
}
@media screen and (max-width: 980px){
	#btn_open {
		display: block;
	}
}
#sp_nav.open {
	display: flex !important;
	justify-content: center;
	align-items: center;
}

/*メニュー内設定*/
#sp_nav {
	height: 100vh;
	color: var(--color-white);
	background: var(--color-black);
	margin: 0;
	padding: 50px 20px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: none;
	text-align: left;
}

#sp_nav .logo {
	max-width: clamp(160px, 32vw, 200px);
	margin: 0 auto 20px;
}

#sp_nav .nav_menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 4%;
	max-width: 450px;
	margin: 0 auto;
}
#sp_nav .nav_menu a { 
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
	border-bottom: 1px solid var(--color-silver);
	color: var(--color-white);
	position: relative;
}
#sp_nav .nav_menu a span { 
	display: block;
	font-size: 10px;
}
#sp_nav .nav_menu a::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	-ms-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	position: absolute;
	left: 8px;
	top: 50%;
	margin: auto;
}

#sp_nav .sp_nav_box {
	width: 100%;
}

/* 電話番号&営業時間 */
#sp_nav .info_box {
	margin: 20px auto;
	font-size: 18px;
	text-align: center;
}
#sp_nav .info_box li span {
	font-size: 0.8em;
}
#sp_nav .info_box li a {
	color: var(--color-white);
}
#sp_nav .info_box .reception {
	font-size: 0.85em;
	margin-top: -5px;
}

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

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

footerフッター設定

****************************************/
footer {
	color: var(--color-white);
	background: var(--color-black) url(../images/bg_footer_pc.jpg) top center / cover no-repeat;
	padding: 60px 20px 30px;
}
@media screen and (max-width: 768px) {
	footer {
		background-image: url(../images/bg_footer_sp.jpg);
		padding-bottom: 100px;
	}
}

/* テキストメニュー */
footer .nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 4%;
	margin: 0 auto 40px;
}
footer .nav li {
	font-size: 12px;
}
footer .nav li a {
	color: var(--color-white);
	font-size: 14px;
	line-height: 1.2;
	color: var(--color-white);
	text-transform: uppercase;
	transition: all 0.4s ease-in-out;
}
footer .nav li a span {
	display: block;
	font-size: 10px;
}
@media (any-hover: hover) {
	footer .nav li a:hover {
		color: var(--color-red);
	}
}
footer .nav li a::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 2px;
	margin: auto;
}
@media screen and (max-width: 768px) {
	footer .nav {
		display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 4%;
		max-width: 450px;
		margin: 0 auto 40px;
	}
	footer .nav li a {
		display: block;
		padding: 10px 20px 10px 35px;
		border-bottom: 1px solid var(--color-silver);
	}
	footer .nav li a::before {
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		-ms-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
		left: 15px;
		top: 50%;
	}
}

/* ロゴ */
footer .logo img{
	max-width: 180px;
	margin-bottom: 20px;
}

/* 電話番号&営業時間 */
footer .info_box {
	margin: 0 auto 10px;
	font-size: clamp(16px, 2vw, 18px);
}
footer .info_box li a {
	color: var(--color-white);
	transition: all 0.4s ease-in-out;
}
footer .info_box .reception {
	font-size: 0.85em;
	margin-top: -5px;
}
@media (any-hover: hover) {
	footer .info_box li a:hover {
		color: var(--color-red);
	}
}

footer .bnr_box {
	max-width: 360px;
	margin: 0 auto 40px;
}
footer .bnr_box li {
	margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
	footer .bnr_box {
		max-width: 280px;
	}
}

.footer_copy {
	font-size: 10px;
}
.footer_link {
	text-align: center;
	font-size: 10px;
}
.footer_copy a, .footer_link a {
	color: var(--color-white);
}

/* フリースペース */
.free_link_box img {
	margin: 0 5px 10px;
	height: 100% !important;
	max-width: calc(100% - 10px) !important;
}
/* リンクバナー */
.list_link_box {
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	width: min(100%, 840px);
	margin: 0 auto 30px;
}
.list_link_box li {
	display: inline-block;
	font-size: 11px;
	margin: 0 5px 10px;
}
.list_link_box img {
	width: 100%;
	height: auto;
}
.list_link_box a {
	color: var(--color-white);
}

/* パンくずリスト */
.breadcrumbs {
	color: var(--color-white);
	border-bottom: solid 1px var(--color-brown);
	padding: 0 10px 5px;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.breadcrumbs ol li {
	font-size: 11px;
	display: inline-block;
	position: relative;
	padding-left: 8px;
}
.breadcrumbs ol li::after {
	display: inline-block;
	content: '';
	position: relative;
	top: -1px;
	right: -2px;
	width: 5px;
	height: 5px;
	margin: auto;
	border: 0;
	border-top: solid 1px var(--color-silver);
	border-right: solid 1px var(--color-silver);
	transform: rotate(45deg);
}
.breadcrumbs ol li:last-child::after {
	display: none;
}
.breadcrumbs ol li a {
	color: var(--color-white);
}

/* 追従メニュー */
.bottom_nav {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 54px;
	background: var(--gra-red);
	z-index: 99;
}
.bottom_nav ul {
	display: flex;
}
.bottom_nav ul li {
	width: calc(100% / 4);
	padding: 5px 0;
}
.bottom_nav ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 44px;
	color: var(--color-white);
	border-right: solid 1px #964141;
	font-size: 14px;
	position: relative;
}
.bottom_nav ul li:last-child a {
	border-right: 0;
}
.bottom_nav ul li a span {
	width: 100%;
	font-size: 10px;
	margin-top: -10px;
}

/****************************************
mainvisual
****************************************/
.mainvisual_box {
	position: relative;
}

/* メインビジュアル */
#mainvisual{
	width: 100%;
	height: calc(100vh - 60px);
	margin-top: 60px;
	position: relative;
}
#mainvisual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
#mainvisual .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 100%;
	z-index: 10;
}
#mainvisual .logo img {
	width: 60%;
	max-width: 410px;
	margin: 0 auto;
}

/******************************
認証ページ
******************************/
#entry_body {
	padding: 80px 0;
	background: var(--color-black) url(../images/mv_pc_01.jpg) center top / cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}
#entry_body .logo img {
	width: 60%;
	max-width: 410px;
	margin: 0 auto;
}
#entry_body .msg_box {
	background: var(--color-black-alpha);
	padding: clamp(30px, 4vw, 40px) clamp(20px, 4vw, 40px);
	outline: solid 1px var(--color-gray);
	outline-offset: -8px;
}
#entry_body .msg_box p:first-child {
	color: var(--color-gold);
	font-size: clamp(18px, 2vw, 20px);
	line-height: 1.4;
}
#entry_body .info_box {
	font-size: clamp(16px, 2vw, 18px);
}
#entry_body .info_box a {
	color: var(--color-white);
	transition: all 0.4s ease-in-out;
}
@media (any-hover: hover) {
	#entry_body .info_box a:hover {
		color: var(--color-red);
	}
}
#entry_body .info_box .reception {
	font-size: 0.85em;
	margin-top: -5px;
}
#entry_body .btn_box {
	display: flex;
	justify-content: center;
	gap: 2vw;
	max-width: 600px;
	margin: 0 auto 30px;
}
#entry_body .btn_box li {
	width: 100%;
}
@media screen and (max-width: 768px){
	#entry_body {
		background: url(../images/mv_sp_01.jpg) center top / cover no-repeat;
	}
}

/******************************
トップページ
******************************/
/*トップページ共通*/
section .title {
	position: relative;
	font-size: clamp(26px, 4vw, 34px);
	margin-bottom: 30px;
	padding-top: 22px;
	line-height: 1.4;
	text-transform: uppercase;
}
section .title.black {
	color: var(--color-black);
}
section .title.gold {
	color: var(--color-gold);
}
@media screen and (max-width: 768px){
	section .title {
		padding-top: 16px;
	}
}

section .title::before {
	display: block;
	content: "";
	width: 60px;
	height: 20px;
	background: url(../images/title_deco_white.png) center / cover no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
section .title.black::before {
	background-image: url(../images/title_deco_black.png);
}
section .title.gold::before {
	background-image: url(../images/title_deco_gold.png);
}
@media screen and (max-width: 768px){
	section .title::before {
		width: 45px;
		height: 15px;
	}
}

section .title span {
	font-size: clamp(12px, 2vw, 14px);
	display: block;
}
section .title.black span {
	color: var(--color-black);
}
section .title.gold span {
	color: var(--color-gold);
}

#section_topics,
#section_newface,
#section_schedule_today,
#section_new_therapist,
#section_covergirl {
	padding: 80px 0;
}
@media screen and (max-width: 768px){
	#section_topics,
	#section_newface,
	#section_schedule_today,
	#section_new_therapist,
	#section_covergirl {
		padding: 60px 0;
	}
}

/* 新着情報 */
#section_topics {
	background: var(--color-black) url(../images/bg_topics_pc.jpg) top center / cover no-repeat;
}
@media screen and (max-width: 768px) {
	#section_topics {
		background-image: url(../images/bg_topics_sp.jpg);
	}
}

#info_box {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
}
#info_box time {
	color: var(--color-silver);
	font-size: 12px;
}
#info_box article {
	text-align: left;
}
#info_box article h3 {
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.4;
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: solid 1px var(--color-silver);
}
#info_box article img {
	max-width: 100% !important;
	height: auto !important;
}
/* #info_box .pager {
	border-top: solid 1px var(--color-gray);
	padding-top: 10px;
	margin-top: 20px;
}
#info_box .pager a.next {
	margin-right: 0;
}
#info_box .pager a.prev {
	margin-left: 0;
} */

/* 新人情報　*/
#section_newface {
	background: var(--color-white) url(../images/bg_white.jpg) center top / 1500px 655px repeat;
	position: relative;
}
#section_newface::before {
	display: block;
	content: "";
	background: url(../images/bg_new_therapist_pc.jpg) center top / cover no-repeat;
	width: 100%;
	height: clamp(250px,38vw,400px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
#section_newface .cast_box .cast_box_list a {
	color: var(--color-black);
}
@media screen and (max-width: 768px) {
	#section_newface::before {
		background-image: url(../images/bg_new_therapist_sp.jpg);
	}
}

/* イベント */
#section_event {
	background: var(--color-white) url(../images/bg_white.jpg) center top / 1500px 655px repeat;
	padding: 0 20px 60px;
}
#section_event > div {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
#section_event > div > div {
	width: calc(100% / 2 - 10px);
}
@media screen and (max-width: 768px){
	#section_event {
		padding: 0 10px 40px;
	}
	#section_event > div > div {
		width: 100%;
		max-width: 600px;
	}
}

/* 本日の出勤情報　*/
#section_schedule_today {
	position: relative;
	background: var(--color-black) url(../images/bg_today_pc.jpg) top center / cover no-repeat;
}
#section_schedule_today .cast_box .cast_box_list .txt_box .time {
	background: var(--gra-gold);
}
#section_schedule_today .cast_box .cast_box_list .txt_box .size span {
	color: var(--color-gold);
}
@media screen and (max-width: 768px) {
	#section_schedule_today {
		background-image: url(../images/bg_today_sp.jpg);
	}
}

/* カバーガール */
#section_covergirl {
	background: var(--color-black) url(../images/bg_pickup_pc.jpg) top center / cover no-repeat;
}
@media screen and (max-width: 768px) {
	#section_covergirl {
		background-image: url(../images/bg_pickup_sp.jpg);
	}
}

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

下層ページ

****************************************/
/*下層ページ共通設定*/
#contents_cast,
#contents_system,
#contents_schedule,
#contents_profile,
#contents_recruit,
#contents_contact,
#contents_access,
#contents_topics,
#contents_link,
#contents_blog,
#contents_ranking,
#contents_bbs,
#contents_err {
	padding: 80px 0;
}
#contents_entry,
.profile_box_schedule {
	padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
	#contents_cast,
	#contents_system,
	#contents_schedule,
	#contents_profile,
	#contents_recruit,
	#contents_contact,
	#contents_access,
	#contents_topics,
	#contents_link,
	#contents_blog,
	#contents_ranking,
	#contents_bbs,
	#contents_err {
		padding: 60px 0;
	}
	#contents_entry,
	.profile_box_schedule {
		padding: 0 0 60px;
	}
}

.subvisual {
	width: 100%;
	height: clamp(18vh, 25vw, 25vh);
	background-image: url(../images/bg_subvisual.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}
.subvisual .title {
	position: relative;
	font-size: clamp(26px, 4vw, 34px);
	padding-top: 22px;
	line-height: 1.4;
	text-transform: uppercase;
}
@media screen and (max-width: 768px){
	.subvisual .title {
		padding-top: 16px;
	}
}
.subvisual .title::before {
	display: block;
	content: "";
	width: 60px;
	height: 20px;
	background: url(../images/title_deco_white.png) center / cover no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 768px){
	.subvisual .title::before {
		width: 45px;
		height: 15px;
	}
}
.subvisual .title span {
	font-size: clamp(12px, 2vw, 14px);
	display: block;
}

/* リストマーク */
ul.list li {
	text-align: left;
	margin-left: 5px;
	padding-left: 12px;
	position: relative;
}
ul.list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: -1px;
}

/* ページャー */
.pager {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.pager a.next {
	margin-left: auto;
	margin-right: 5px;
}
.pager a.prev {
	margin-right: auto;
	margin-left: 5px;
}
.pager a {
	display: block;
	width: 100px;
	color: var(--color-white);
	border: solid 1px var(--color-silver);
	border-radius: 40px;
	padding: 5px;
}

/****************************************
新着情報ページ
****************************************/
#contents_topics article:not(:last-child) {
	margin-bottom: 60px;
}

#contents_topics .pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}
#contents_topics .pagination li a {
	padding: 10px;
	display: inline-block;
	font-size: 14px;
	color: var(--color-white);
	background: var(--color-black-alpha);
	line-height: 1.4;
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}
@media (any-hover: hover) {
	#contents_topics .pagination li a:hover {
		opacity: 0.7;
	}
}
#contents_topics .pagination li.active a {
	color: var(--color-white);
	background: var(--color-red2);
}

/****************************************
料金ページ
****************************************/
#contents_system .title_system {
	color: var(--color-gold);
	font-size: clamp(18px, 2vw, 20px);
	line-height: 1.4;
	margin-bottom: 50px;
	position: relative;
	text-shadow: 0 0 10px var(--color-black), 0 0 10px var(--color-black);
}
#contents_system .title_system::after {
	display: block;
	content: "";
	width: 130px;
	height: 75px;
	background: url(../images/logo.png) center / cover no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	filter: brightness(0) saturate(100%) invert(19%) sepia(14%) saturate(295%) hue-rotate(343deg) brightness(98%) contrast(84%);
}

#contents_system .msg_box {
	margin-bottom: 60px;
}
#contents_system .msg_box li {
	background: var(--color-black-alpha);
	padding: clamp(30px, 4vw, 40px) clamp(20px, 4vw, 40px);
	outline: solid 1px var(--color-gray);
	outline-offset: -8px;
	margin-bottom: 10px;
}
#contents_system .msg_box li:last-child {
	margin-bottom: 0;
}
#contents_system .msg_box .msg_title{
	font-size: clamp(18px, 2vw, 20px);
	line-height: 1.4;
}
#contents_system .msg_box .marker {
	font-size: clamp(21px, 2vw, 24px);
	line-height: 1.4;
	color: var(--color-white);
	display: inline-block;
	padding: 0 10px;
	position: relative;
	z-index: 0;
}
#contents_system .msg_box .marker::after {
	content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: var(--color-red2);
  transform: skewX(-25deg);
  transform-origin: left;
  z-index: -1; 
}

#contents_system .table_system {
	width: 100%;
	text-align: center;
	margin-bottom: 60px;
}
#contents_system .table_system th, #contents_system .table_system td {
	padding: 15px;
	line-height: 1.4;
	vertical-align: middle;
}
#contents_system .table_system tr:first-child {
	background: var(--gra-gold);
}
#contents_system .table_system th {
	width: 35%;
	color: var(--color-white);
	vertical-align: middle;
	font-size: clamp(14px, 2vw, 16px);
}
#contents_system .table_system td {
	border-bottom: solid 1px var(--color-silver);
	font-size: clamp(20px, 2vw, 24px);
}
#contents_system .table_system.opt td.txt_only {
	font-size: clamp(16px, 2vw, 18px);
}
#contents_system .table_system td span {
	font-size: clamp(14px, 2vw, 16px);
}

#contents_system .bnr_credit {
	max-width: 500px;
	margin: 0 auto 60px;
}

#contents_system .caution {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
}
#contents_system .title_caution {
	font-size: clamp(16px, 2vw, 18px);
	border-bottom: solid 1px var(--color-silver);
	padding-bottom: 10px;
	margin-bottom: 30px;
}
#contents_system .caution .txt {
	text-align: left;
}

/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* テキストメニュー */
.schedule_nav {
	margin: 0 auto 40px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: calc(100% - 2px);
	gap: 8px;
}
.schedule_nav li {
	width: calc((100% - 8px) / 2);
}
.schedule_nav li a {
	padding: 10px;
	margin-top: 1px;
	display: block;
	font-size: 14px;
	color: var(--color-white);
	background: var(--color-gray);
	line-height: 1.4;
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}
@media (any-hover: hover) {
	.schedule_nav li a:hover {
		opacity: 0.7;
	}
}
.schedule_nav li.active a {
	color: var(--color-white);
	background: var(--color-red2);
}
.schedule_nav li.active span {
	color: var(--color-white);
}
@media (any-hover: hover) {
	.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(--color-white);
	color: var(--color-black);
	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 .cast_box .cast_box_list .txt_box .time {
	background: var(--gra-gold);
}
#contents_schedule .cast_box .cast_box_list .txt_box .size span {
	color: var(--color-gold);
}

/****************************************
週間スケジュールページ
****************************************/
#contents_schedule .schedule_box{
	text-align: left;
}
#contents_schedule .schedule_box li{
	padding: 10px;
	background: var(--color-black);
	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_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 .icon img {
	width: 49%;
	max-width: 50px;
}

/* txt */
.profile_box_right .name {
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.4;
}
.profile_box_right .name span {
	font-size: clamp(14px, 2vw, 16px);
	margin-left: 5px;
}
.profile_box_right .size span {
	color: var(--color-silver);
}
.profile_box_right .txt_box {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
}
.profile_box_right .short_comment {
	color: var(--color-gold);
	font-size: 16px;
	line-height: 1.4;
	margin-top: 20px;
}
.profile_box_right .bnr_sns {
	margin-top: 40px;
}
.profile_box_right .bnr_sns img {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
.profile_box_right .bnr_sns a:not(:last-child) img {
	margin-bottom: 10px;
}
.profile_box_right .subtitle {
	position: relative;
	font-size: clamp(18px, 2vw, 20px);
	margin-bottom: 20px;
	padding-top: 22px;
	line-height: 1.4;
	text-align: center;
}
.profile_box_right .subtitle::before {
	display: block;
	content: "";
	width: 60px;
	height: 20px;
	background: url(../images/title_deco_white.png) center / cover no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.profile_box_right .msg .subtitle {
	text-align: center;
	border-bottom: solid 1px var(--color-silver);
	margin: 20px 0;
	padding-bottom: 15px;
}
.profile_box_right .bnr_question {
	margin: 30px auto 10px;
}

/* img */
#contents_profile .img_box .thum {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_profile .img_box .frame {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
#contents_profile .img_box .icon_new {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: auto;
	z-index: 0;
}

/* 出勤スケジュール */
.profile_box_schedule table .sch_info {
	display: inline-block;
	color: var(--color-white);
	background: var(--color-black-alpha);
	padding: 2px 5px 1px;
	margin-top: 3px;
}
.profile_box_schedule {
	clear: both;
}

/* ページリンク */
#contents_entry {
	margin-top: -80px;
	padding-top: 80px;
}

/****************************************
システムページ
****************************************/
#contents_system #section_point::before {
	display: none;
}
#contents_system #section_point .inner {
	padding: 0 20px 80px;
}
@media screen and (max-width: 768px) {
	#contents_system #section_point .inner {
			padding: 0 0 60px;
	}
}

#section_term .inner {
	max-width: 720px;
}
#section_term li {
	margin-left: 5px;
	padding-left: 12px;
	position: relative;
}
#section_term li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: -1px;
}
#section_term .term_title {
	color: var(--color-white);
	font-size: clamp(20px, 2vw, 24px);
	margin: 20px 0 10px;
}

/****************************************
アクセスページ
****************************************/
#contents_access .access_box {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
}

#contents_access li {
	margin-bottom: 40px;
}
#contents_access .title_access {
	color: var(--color-white);
	background: var(--gra-silver);
	padding: 5px;
	font-size: 14px;
	margin-bottom: 30px;
}
#contents_access .info_box {
	font-size: 16px;
}
#contents_access .info_box .reception {
	font-size: 0.85em;
	margin-top: -5px;
}
#contents_access .info_box a {
	color: var(--color-white);
	transition: all 0.4s ease-in-out;
}
#contents_access .info_box a:hover {
	color: var(--color-red);
}

/****************************************
求人情報ページ
****************************************/
#contents_recruit {
	position: relative;
	overflow: hidden;
}
#contents_recruit .inner {
	max-width: calc(720px - 12px);
}
#contents_recruit .recruit_box {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
}

/****************************************
ランキングページ
****************************************/
#contents_ranking .title_ranking {
	color: var(--color-gold);
	font-size: clamp(18px, 2vw, 20px);
	line-height: 1.4;
	margin-bottom: 50px;
	position: relative;
	text-shadow: 0 0 10px var(--color-black), 0 0 10px var(--color-black);
}
#contents_ranking .title_ranking::after {
	display: block;
	content: "";
	width: 130px;
	height: 75px;
	background: url(../images/logo.png) center / cover no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	filter: brightness(0) saturate(100%) invert(19%) sepia(14%) saturate(295%) hue-rotate(343deg) brightness(98%) contrast(84%);
}

#contents_ranking .icon_ranking {
	margin-bottom: 10px;
}
#contents_ranking .icon_ranking img {
	max-width: clamp(100px, 12vw, 120px);
}
#contents_ranking .comment {
	color: var(--color-gold);
	border-bottom: solid 1px var(--color-gold);
	font-size: clamp(12px, 2vw, 14px);
	line-height: 1.2;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

#contents_ranking .cast_box .cast_box_list .txt_box .time {
	background: var(--gra-gold);
}
#contents_ranking .cast_box .cast_box_list .txt_box .size span {
	color: var(--color-gold);
}

/* swiper用にリセット */
#contents_ranking .cast_box {
	display: flex;
	gap: 0;
}
/* swiper */
#contents_ranking .swiper {
	padding-bottom: clamp(100px, 12vw, 120px);
}
#contents_ranking .swiper:last-of-type {
  padding-bottom: clamp(50px, 6vw, 60px);
}
#contents_ranking .swiper .swiper-pagination {
	bottom: clamp(60px, 7vw, 70px);
}
#contents_ranking .swiper:last-of-type .swiper-pagination {
	bottom: 0;
}
#contents_ranking .swiper .swiper-pagination-bullet {
	background: var(--color-gray);
	opacity: 1;
}
#contents_ranking .swiper .swiper-pagination-bullet-active {
	background: var(--color-red2);
}

/****************************************
ブログページ
****************************************/
#contents_blog .blog_box {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px min(2%, 20px);
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
	text-align: left;
}
#contents_blog .blog_box .img_box {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin-bottom: 5px;
}
#contents_blog .blog_box .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease-out;
}
#contents_blog .blog_box .txt_box {
	line-height: 1.4;
}
#contents_blog .blog_box .txt_box time {
	color: var(--color-silver);
	font-size: 12px;
}
#contents_blog .blog_box .txt_box h3 {
	font-size: clamp(16px, 2vw, 18px);
	border-bottom: solid 1px var(--color-silver);
	padding-bottom: 5px;
	margin-bottom: 5px;
}
#contents_blog .blog_box .txt_box .txt {
	font-size: 12px;
}
#contents_blog .blog_box a {
	color: var(--color-white);
}
@media (any-hover: hover) {
	#contents_blog .blog_box a:hover .img_box img {
		transform: scale(1.05, 1.05)
	}
}
@media screen and (max-width: 768px) {
	#contents_blog .blog_box {
		grid-template-columns: 1fr;
	}
}

/* 詳細ページ */
#contents_blog .blog_area {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
	text-align: left;
}
#contents_blog .blog_area time {
	color: var(--color-silver);
	font-size: 12px;
}
#contents_blog .blog_area h3 {
	font-size: clamp(16px, 2vw, 18px);
	border-bottom: solid 1px var(--color-silver);
	padding-bottom: 10px;
	margin-bottom: 30px;
}
#contents_blog .blog_area .txt img {
	max-width: 100% !important;
	height: auto !important;
}
@media screen and (max-width: 768px) {
	#contents_blog .blog_area h3 {
		margin-bottom: 20px;
	}
}

/****************************************
掲示板ページ
****************************************/
#contents_bbs .bbs_box {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
}
#contents_bbs .bbs_box iframe {
	height: 800px;
}
@media screen and (max-width: 768px) {
	#contents_bbs .bbs_box iframe {
		height: 600px;
	}
}

/****************************************
リンクページ
****************************************/
#contents_link .list_link_box a {
	color: var(--color-white);
}

/****************************************
404ページ
****************************************/
.err_box {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
	outline: solid 1px var(--color-gray);
	outline-offset: -8px;
}
.err_box a {
	font-size: 16px;
}

/* 送信完了ページ */
.title_finish {
	font-size: clamp(18px, 2vw, 20px);
	line-height: 1.4;
	margin-bottom: 50px;
	position: relative;
}
.title_finish::after {
	display: block;
	content: "";
	width: 130px;
	height: 75px;
	background: url(../images/logo.png) center / cover no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: 0.22;
}
.finish_box {
	background: var(--color-black-alpha);
	padding: clamp(20px, 4vw, 40px);
	outline: solid 1px var(--color-gray);
	outline-offset: -8px;
}
