@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-main1: #F0589A;
	--color-main2: #F1BED5;

	--black: #1D1D1D;
	--white: #FEFEFE;
	--gray: #DDD;

	--rgb-white : 254, 254, 254;

	--bg-color1: #ffecf4;

	--filter-main1: ;
  --filter-main2: ;
	--filter-white: invert(98%) sepia(8%) saturate(7%) hue-rotate(212deg) brightness(100%) contrast(103%);

	--box-shadow1: 0 0 20px rgba(0, 0, 0, 0.1);
	--font-family1: "Baskervville", serif;

}

body {
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
	color: var(--black);
	background: var(--white);
	font-size: 0.875rem;
	font-weight: 500;
	font-family: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	line-height: 1.75;/* 変更 */
}
@keyframes fadeIn {
	0% { opacity: 0.01;}
	100% { opacity: 1;}
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0.01;}
	100% { opacity: 1;}
}

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

.inner {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner1200{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}
.inner640{
	width: 90%;
	max-width: 640px;
	margin: 0 auto;
}
/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
a, a:hover{
	color: var(--black);
}
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: #e21616;}
.atten_02, .atten_02 a{color: var(--color-main1);}
.atten_03, .atten_03 a{color: #2b8ff6;}
.atten_04, .atten_04 a{color: #e21616;}

span[class*="marker"] {
	padding: 0 0.15em 0.05em;
}
.marker_y { background:linear-gradient(transparent 60%, rgb(253, 253, 140) 60%);}

/*********** 背景色 ***********/
.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_16{margin-bottom: 16px;}
.mb_20{margin-bottom: 20px;}
.mb_24{margin-bottom: 24px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_60{margin-bottom: 60px;}

/*********** 文字寄せ ***********/
.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;}

/*********** スクリーンリーダー用 ***********/
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

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

/*********** table設定 ***********/
/*table01*/
.table_01 {
	width: 100%;
	/* border-left: 1px solid var(--gray);
	border-top: 1px solid var(--gray); */
	border-spacing: 0;
	text-align: left;
}
.table_01 th, .table_01 td {
	padding: 16px;
	border: 1px solid var(--gray);
}
.table_01 th {
	width: 35%;
	background: var(--black);
	color: #fff;
	vertical-align: middle;
}
@media screen and (max-width: 640px) {
	.table_01 th, .table_01 td {
		display: block;
		width: 100%;
		padding: 8px;
		border: none;
	}
	.table_01 td { padding-block: 12px;}
	.table_01 tr:not(:last-of-type) td { border-bottom: none;}
}

/*table02*/
.table_02 {
	width: 100%;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	border-spacing: 0;
	text-align: left;
}
.table_02 th, .table_02 td {
	padding: 5px;
	border: 1px solid #eee;
}
.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%;
	margin-inline: auto;
	margin-bottom: 40px;
}
.table_form th,
.table_form td{
	display: block;
	width: 100%;
	padding: 0 4px 16px;
	text-align: left;
	border-bottom: 1px solid var(--gray);
}
.table_form th {
	padding-top: 16px;
	border: none;
	font-size: 1rem;
	color: var(--color-main1);
	line-height: 1.2;
}

/*********** リンクバナーエリア ***********/
/* フリースペース */
.free_link_box img {
	max-width: 100% !important;
	height: 100% !important;
	margin-right: 10px;
	margin-bottom: 10px;
}
.free_link_box img:has(+ *) {
	margin-bottom: 0;
}
/* リンクボックス */
.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: 10px;
	display: inline-block;
	font-size: 11px;
}
.list_link_box img {
	width: 100%;
	height: auto;
}


/*********** ボタン設定 ***********/
.btn_area {
	margin-top: 40px;
}
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--black);
	color: var(--white);
	width: fit-content;
	min-width: 240px;
	margin-inline: auto;
	padding: 12px 32px;
	border-radius: 99px;
	transition: all 0.4s ease-out;
}
.btn:hover { color: var(--white);}
.btn_more {
	position: relative;
	padding-inline: 56px;
	background: var(--black);
	color: var(--white);
}
.btn_more::before, .btn_more::after {
	content: '';
	position: absolute;
	right: 16px;
	transition: all 0.4s ease-out;
}
.btn_more::before {
	width: 16px;
	height: 1px;
	background: var(--white);
}
.btn_more::after {
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn_more:hover { color: #fff;}
.btn_more:hover::before, .btn_more:hover::after { right: 12px;}

/* Prev・Next */
.btn_page_list {
	display: flex;
	justify-content: center;
	gap: 16px;
}
.btn.prev, .btn.next {
	position: relative;
	margin: 0;
	padding: 8px 40px;
	background: var(--white);
	border: 1px solid;
	color: var(--color-main1);
	letter-spacing: 0.05em;
}
.btn.prev::before, .btn.next::before {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid var(--color-main1);
	border-right: 1px solid var(--color-main1);
}
.btn.prev::before {
	left: 16px;
	rotate: 135deg;
}
.btn.next::before {
	right: 16px;
	rotate: -45deg;
}

/* 求人ページ応募方法のボタン */
.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;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}
input[type="submit"],
input[type="button"] {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 260px;
	height: 48px;
	border-radius: 99px;
	border: none;
	font-size: 1rem;
	cursor: pointer;
}
.btn_form .btn_send {
	background: var(--color-main1);
	color: var(--white);
}
.btn_form input[type="button"].btn_back {
	border: 1px solid;
	color: var(--color-main1);
	background: var(--white);
}
.btn_form .btn_reset {
	padding: 0;
	background: none;
	border: none;
	border-bottom: 1px solid #aaa;
	color: #aaa;
	cursor: pointer;
	font-size: 0.85rem;
}

/*********** スライダー設定 ***********/
.swiper{
	padding-bottom: 40px;
}
/* ページネーション上書き */
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets{
  bottom: 0;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 4px;
	background: var(--gray);
	opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--color-main1);
}

/*********** ページネーション設定 ***********/
.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 64px;
}
.pagination li a {
  display: flex;
	justify-content: center;
	align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
	border: 1px solid;
	background: var(--white);
	color: var(--color-main1);
}
.pagination li.active a {
  background: var(--color-main1);
	color: var(--white);
}
.pagination .btn {
	position: relative;
	width: 100px;
	padding: 0.5em;
	margin: 0;
}
.pagination .btn::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 12px;
	height: 10px;
	background: url(../images/icon_arrow.svg) center center / contain no-repeat;
	filter: var(--filter-white);
}
.pagination .btn.next::after {
	right: 10px;
}
.pagination .btn.prev::after {
	left: 10px;
	rotate: 180deg;
}


/******************************
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%;
	border: 1px solid var(--gray);
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 0.75em;
	vertical-align: baseline;
	font-size: 0.875rem;
}
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: 80px;
}
form input[type="text"].form_middle {
	max-width: 160px;
}
form input[type="radio"],
form input[type="checkbox"] {
	margin: 0 4px;
	vertical-align: baseline;
	accent-color: var(--color-main1);
}
form .form_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 4px;
}
.select_wrap select {
	background: url('../images/icon_arrow_gray.svg') right 8px center no-repeat,
							#fff;
	background-size: 13px 8px;
}
form input::placeholder,
form textarea::placeholder {
	color: #bbb;
}
@media screen and (max-width: 768px) {
	form input[type="text"],
	form input[type="email"],
	form textarea {
		font-size: 1rem;
	}
	form .form_list {
		grid-template-columns: 1fr;
	}
}
.icon_required {
	display: inline-block;
	margin-left: 5px;
	padding: 4px;
	font-size: 0.75em;
	line-height: 1;
	color: #fff;
	background: var(--color-main1);
}

/*********** テキストボックス ***********/
.txt_box_01 {
	width: calc(100% - 16px);
	margin-inline: auto;
	padding: 4%;
	background: var(--white);
	border: 1px solid var(--color-main2);
	outline: solid 4px var(--color-main2);
	outline-offset: 4px;
}

/******************************
セラピスト共通設定
******************************/
section:not(#section_newface) .cast_box {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.cast_box .cast_box_list{
	position: relative;
	background: var(--white);
}

.cast_box .cast_box_list .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	position: relative;
}
.cast_box .cast_box_list .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cast_box .cast_box_list .icon_new{
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
}
/* アイコン */
.cast_box .cast_box_list .icon_box {
	position: absolute;
	bottom: 5px;
	right: 5px;
	display: flex;
	flex-wrap: wrap;
	flex-wrap: wrap-reverse;
	justify-content: flex-end;
	gap: 4px;
	width: calc(100% - 20px);
}
.cast_box .cast_box_list .icon_box img{
	width: 30px;
}
/* アイコン下 */
.cast_box .cast_box_list .icon_box.off {
	position: static;
	display: flex;
	justify-content: center;
	gap: 4px;
	margin: 10px 0;
}
.cast_box .cast_box_list .icon_box.off img{
	width: 30px;
}

.cast_box .cast_box_list .txt_box {
	padding: 10px 5px 5px;
	line-height: 1.5;
}
.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{
	margin-top: 5px;
	padding-block: 4px;
	background: var(--color-main1);
	color: var(--white);
}
.cast_box .cast_box_list .txt_box .time_info {
	padding-top: 0.5em;
	color: var(--color-main1);
}
.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;
}

@media screen and (max-width: 640px){
	section:not(#section_newface) .cast_box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.cast_box .cast_box_list .icon_x {
		width: 30px;
		top: 10px;
		left: 10px;
	}
}

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

headerヘッダー設定

****************************************/
header {
	width: 100%;
	height: 110px;
	background: var(--white);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
}
.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	max-width: 1200px;
	height: 100%;
	margin-inline: auto;
	padding: 8px 16px 16px;
}
header .logo img{
	max-width: 160px;
}

header .header_right_box {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.5rem;
}
/* 電話番号&営業時間 */
header .header_right_box .shop_info_box {
	display: flex;
	gap: 1em;
	color: var(--color-main1);
	font-size: 1.125rem;
}
header .header_right_box .shop_info_box a {
	color: var(--color-main1);
}
/* グローバルナビ */
header nav ul{
	display: grid;
	grid-template-columns: repeat(8, 1fr);
}
header nav ul li {
	box-sizing: border-box;
	border-left: 1px solid var(--gray);
}
header nav ul li:last-of-type {
	border-right: 1px solid var(--gray);
}
header nav ul li a {
	display: block;
	padding-inline: 1em;
	font-size: clamp(0.75rem, 1.4vw, 1rem);
	letter-spacing: 0.05em;
	font-family: var(--font-family1);
	transition: all 0.4s ease;
}
header nav ul li a:hover {
	color: var(--color-main1);
}
header nav ul span {
	display: block;
	font-size: 0.625rem;
}


/* ↓↓↓↓↓↓↓↓ SP用メニュー設定 ↓↓↓↓↓↓↓↓ */
/*ハンバーガーメニューを作る*/
.btn_toggle {
	display: none;
	background: var(--color-main1);
	border: none;
	padding: 0;
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	z-index: 999;
}
.btn_toggle:hover{
	cursor: pointer;
}
.btn_toggle span{
	display: inline-block;
	position: absolute;
	left: 14px;
	top: 22px;
	height: 1px;
	width: 32px;
	background: var(--white);
	/* transition: opacity .25s .25s;
  opacity: 1; */
}
.btn_toggle span:before,
.btn_toggle span:after{
	content: "";
	display: inline-block;
	background: var(--white);
	height: 1px;
	width: 32px;
	position: absolute;
	left: 0;
}
.btn_toggle span:before {	
	top: 10px;
	animation: btn-bar01 .75s forwards;
}
.btn_toggle span:after {
	top: -10px;
	animation: btn-bar03 .75s forwards;
}
@keyframes btn-bar01 {
  0% { transform: translateY(-10px) rotate(45deg);}
  50% { transform: translateY(-10px) rotate(0);}
  100% { transform: translateY(0) rotate(0);}
}
@keyframes btn-bar03 {
  0% { transform: translateY(10px) rotate(-45deg);}
  50% { transform: translateY(10px) rotate(0);}
  100% { transform: translateY(0) rotate(0);}
}

#btn_open.active span{ background: transparent;}
#btn_open.active span:before{ animation: active-btn-bar01 .75s forwards;}
#btn_open.active span:after{animation: active-btn-bar03 .75s forwards;}
@keyframes active-btn-bar01 {
  0% {transform: translateY(0) rotate(0);}
  50% {transform: translateY(-10px) rotate(0);}
  100% {transform: translateY(-10px) rotate(45deg);}
}
@keyframes active-btn-bar03 {
  0% {transform: translateY(0) rotate(0);}
  50% {transform: translateY(10px) rotate(0);}
  100% {transform: translateY(10px) rotate(-45deg);}
}
.btn_toggle p {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	color: var(--white);
	font-size: 11px;
	text-transform: uppercase;
}

/*メニュー内設定*/
#sp_nav{
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--white);
	margin: 0;
	padding: 60px 16px;
	text-align: left;
	font-size: 1rem;
}
#sp_nav.open{
	display: block;
}
.nav_menu a{
	display: block;
	width: min(100%, 640px);
	margin-inline: auto;
	padding: 8px 16px;
	border-bottom: 1px solid var(--gray);
	letter-spacing: 0.05em;
}
.nav_menu span:before { 
	content: '/';
	padding: 0.5em;
}

/* 電話番号＆営業時間 */
#sp_nav .shop_info_box {
	width: min(100%, 320px);
	margin: 24px auto;
	text-align: center;
}
#sp_nav .shop_info_box a.btn.tel {
	width: 100%;
	margin-bottom: 0.5em;
	background: var(--color-main1);
	font-size: 1.25rem;
}

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

@media screen and (max-width: 879px) {
	header { height: 60px;}
	.header_inner { padding: 0 8px;}
	header .logo img{ max-width: 120px;}
	header .header_right_box { display: none;}

	.btn_toggle { display: block;}
}


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

footerフッター設定

****************************************/
footer {
	background: var(--black);
	padding-top: 40px;
	color: var(--white);
}
footer .logo img{
	width: 220px;
}
/* テキストメニュー */
footer .nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	width: 100%;
	margin-inline: auto;
}
footer .nav li {
	box-sizing: border-box;
	letter-spacing: 0.05em;
	font-family: var(--font-family1);
	font-size: 1rem;
}
footer .nav a { color: var(--white);}
footer .nav a span {
	display: block;
	font-size: 0.625rem;
}
/* 電話番号&営業時間 */
footer .shop_info_box { 
	font-size: 1.125rem;
}
footer .shop_info_box a{
	color: var(--white);
}
/* アイコン */
footer .icon_box{
	display: flex;
	justify-content: center;
	margin-inline: auto;
}
footer .icon_box img {
	width: 30px;
	margin: 0 4px;
}

/* コピーライト＆フッターリンク */
.footer_link {
	margin-top: 40px;
	padding: 5px 0;
	background: var(--color-main1);
	text-align: center;
	font-size: 12px;
	color: var(--white);
}
.footer_link a {
	color: var(--white);
	text-decoration: underline;
}

/* リンクバナーエリア */
footer :is(.free_link_box, .list_link_box) a { color: var(--white);}

/* SP用追従ボタン */
.footer_bottom_btn { display: none;}
.footer_bottom_btn ul {
	position: fixed;
	bottom: 10px;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	width: calc(100% - 20px);
	margin-inline: auto;
	padding-block: 10px;
	background: var(--white);
	box-shadow: var(--box-shadow1);
}
.footer_bottom_btn ul li {
	width: calc(100% / 3);
	box-sizing: border-box;
	border-right: 1px solid var(--color-main1);
}
.footer_bottom_btn ul li:last-of-type {
	border: none;
}
.footer_bottom_btn a {
	display: block;
	padding-block: 4px;
	color: var(--color-main1);
	font-size: 1.125rem;
}

@media screen and (max-width: 640px) {
	footer .nav { width: 80%;}
	footer .nav li { width: calc((100% - 1.5rem) / 2);}
	.footer_link { padding-bottom: 74px;}
	.footer_bottom_btn { display: block;}
}

/****************************************
mainvisualメインビジュアル
****************************************/
#mainvisual{
	width: 100%;
	height: calc(100vh - var(--header_margin));
	position: relative;

	margin-top: var(--header_margin);
}
#mainvisual .swiper { padding-bottom: 0;}
#mainvisual .swiper-wrapper{
	width: 100%;
	height: calc(100vh - var(--header_margin));
}
#mainvisual .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 100%;
}
#mainvisual .swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
#mainvisual .mv_txt_box {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	translate: -50% -50%;
	padding:  32px;
	width: min(80%, 640px);
	background: rgba(var(--rgb-white), 0.8);
	outline: solid 4px rgba(var(--rgb-white), 0.8);
  outline-offset: 4px;
	box-shadow: var(--box-shadow1);
	font-size: clamp(0.6875rem, 2vw, 0.875rem);
}
#mainvisual .mv_txt_box .logo {
	width: min(85%, 280px);
	margin: 0 auto 32px;
}
#mainvisual .mv_txt_box p span{
	color: var(--color-main1);
}
/* ↓flexslider.cssを上書き */
#mainvisual .flex-control-nav {
	bottom: 0;
}

/* ヘッドライン */
#headline {
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: row;
	padding-block: 0.5em;
	background: var(--black);
	color: var(--white);
}
#headline .swiper{
	text-align: center;
	width: 100vw;
	padding-bottom: 0;
	}

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

/* パンくずリスト */
.breadcrumbs {
	padding: 4px;
	text-align: left;
}
.breadcrumbs .inner, .breadcrumbs ol li {
	display: flex;
	align-items: center;
}
.breadcrumbs ol li {
	font-size: 0.6875rem;
	letter-spacing: 0.05em;
}
.breadcrumbs ol li:before {
	content: '/';
	display: inline-block;
	margin: 0 4px;
	font-size: 1.5em;
}
.breadcrumbs ol li:first-child:before {
	display: none;
}

/******************************
トップページ
******************************/
/*トップページ共通*/
.title_section{
	margin-bottom: 24px;
	text-align: center;
	font-size: 2rem;
	line-height: 1.5;
	font-family: var(--font-family1);
	letter-spacing: 0.05em;
}
.title_section .ja {
	position: relative;
	display: block;
	width: fit-content;
  margin-inline: auto;
	padding-inline: 2em;
	font-size: 0.75rem;
}
.title_section .ja::before, .title_section .ja::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 1.5em;
	border-top: 1px solid var(--color-main1);
}
.title_section .ja::before { left: 0;}
.title_section .ja::after { right: 0;}

#section_info,
#section_covergirl,
#section_movie,
#section_blog,
#section_topics,
#section_concept,
#section_schedule_today,
#section_top_ranking_01,
#section_newface{
	padding: 60px 0;
}

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

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

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

/* インフォメーション */
#section_info .swiper {
	width: 100%;
	max-width: 640px;
}
#section_info img{
	width: 100%;
}
#section_info .bnr_list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 40px;
}
#section_info .bnr_list img {
	width: 100%;
	max-width: 640px;
}

/* 本日の出勤情報　*/
#section_schedule_today{ 
	background: url(../images/bg_today.webp) center center / cover no-repeat;
}

/* 新着情報 */
#section_topics .inner640 { width: 85%;}
#section_topics .info_box {
	padding: 4%;
	/* overflow-y: auto; */
	background: var(--white);
	border: 1px solid var(--color-main2);
	outline: solid 4px var(--color-main2);
  outline-offset: 4px;
}
#section_topics .info_box tbody tr td{
	border: 1px solid var(--gray);
}
#section_topics .info_box article{
	text-align: left;
}
#section_topics .info_box article time {
	color: var(--color-main1);
	font-size: 0.75rem;
}
#section_topics .info_box article h3{
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--gray);
	font-size: 1rem;
	line-height: 1.5;
}
#section_topics .info_box article img{
	max-width: 100%;
	height: auto !important;
}
#section_topics .info_box article a {
	color: var(--color-main1);
	text-decoration: underline;
}
#section_topics .info_box strong {
	font-weight: bold;
}

/* 新人情報 */
#section_newface {
	background: url(../images/bg_new.webp) center center / cover no-repeat;
}
.outer_box {
	margin-inline: auto;
	background: rgba(var(--rgb-white), 0.8);
	outline: solid 4px rgba(var(--rgb-white), 0.8);
  outline-offset: 4px;
	box-shadow: var(--box-shadow1);
	padding: 4%;
}

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

下層ページ

****************************************/
/*下層ページ共通設定*/
#contents_topics,
#contents_system,
#contents_schedule,
#contents_cast,
#contents_profile,
#contents_ranking,
#contents_access,
#contents_recruit,
#contents_entry,
#contents_link,
#contents_err{
	padding: 60px 0;
}
.subvisual{
	display: grid;
	place-items: center;
	width: 100%;
	height: 20vh;
	margin-top: var(--header_margin);
	background: url(../images/bg_subvisual.webp) center / cover no-repeat;
}
.subvisual .title_section { margin-bottom: 0;}

.subtitle {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	color: var(--black);
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	/* font-family: var(--font-family1); */
}
.subtitle::before, .subtitle::after {
	content: "";
	flex-grow: 1;
	display: block;
	height: 1px;
	background: var(--color-main1);
}


/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* 週間スケジュール */
.schedule_nav {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1000px;
	gap: 8px;
}
.schedule_nav li {
	width: calc((100% - 8px) / 2);
}
.en .schedule_nav li {
	padding: 10px;
	display: block;
	font-size: 12px;
	background: var(--white);
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}

.schedule_nav li a {
	display: block;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid;
	background: var(--white);
	color: var(--color-main1);
	-webkit-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	transition: 0.4s ease;
}
.schedule_nav li a:hover {
	opacity: 0.6;
}
.schedule_nav li.active a {
	background: var(--color-main1);
	color: var(--white);
}
.schedule_nav li.active a:hover{
	opacity: 1;
}
.schedule_nav li.active a [class^="atten"] {
	color: var(--white);
}
@media screen and (max-width: 768px) {
	.schedule_nav li:first-child{
		width: 100%;
	}
}

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

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


/****************************************
週間スケジュールページ
****************************************/
#contents_schedule .schedule_box{
	text-align: left;
}
#contents_schedule .schedule_box li{
	padding: 10px;
	background: #e0e0e0;
	grid-template-columns: 10% auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: -ms-grid;
	display: grid;
	margin-bottom: 20px;
}
#contents_schedule .schedule_box .name{
	width: 100%;
	font-size: 15px;
}
#contents_schedule .schedule_box table{
	width: 100%;
	height: 80px;
	font-size: 10px;
	text-align: center;
}
/*以下のサイズはサイトに合わせてください*/
#contents_schedule .schedule_box .img_box{
	width: 100%;
    padding-right: 20px;
}
/*以下のサイズはサイトに合わせてください*/
#contents_schedule .schedule_box .img_box img{
	max-width: 100%;
}
@media screen and (max-width: 768px) {
	#contents_schedule .schedule_box li{
		grid-template-columns: auto;
	}
	#contents_schedule .schedule_box .img_box{
		width: 50%;
		padding-right: 0px;
		margin: 0 auto 10px;
	}
}


/****************************************
プロフィールページ
****************************************/
#contents_profile .profile_box {
	display: flex;
	column-gap: 5%;
	margin-bottom: 60px;
}
#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;
}
#contents_profile .img_box .thum {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_profile .profile_box_left .icon_new {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: auto;
}
/*----- 右ボックス -----*/
.profile_box_right { width: 100%;}
.profile_box_right .name { line-height: 1.5;}

/* SNSアイコン */
.profile_box_right .sns_icon_box {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
}
.profile_box_right .sns_icon_box img{
	width: 30px;
}

.profile_box_right img{
	max-width: 100%;
}
.profile_box_right .content_wrap { margin-top: 40px;}

@media screen and (max-width: 767px) {
	#contents_profile .profile_box {
		flex-direction: column;
		row-gap: 40px;
	}
}

/*----- スケジュール -----*/
.profile_box_schedule .swiper { padding-bottom: 0;}
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: block;
	box-sizing: border-box;
	border: 1px solid var(--gray);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	display: flex;
}
.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 {
	flex-basis: 50%;
	display: grid;
	place-items: center;
	padding: 8px;
	border-bottom: 1px solid var(--gray);
	background: var(--black);
	color: var(--white);
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	flex-basis: 50%;
	padding: 8px;
	border-left: 1px solid var(--gray);
	border-bottom: 1px solid var(--gray);
	line-height: 1.5;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable:last-of-type div {
	border-bottom: none;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check .icon_shop_chart {
	padding: 5px 20px;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check span {
	color: var(--color-main1);
}


/****************************************
ランキングページ
****************************************/
#contents_ranking .cast_box .comment{
	color: var(--color-main1);
	font-weight: 600;
}


/****************************************
新着情報ページ
****************************************/
.contents_topics .info_box:not(:last-of-type) { margin-bottom: 40px;}


/****************************************
システムページ
****************************************/
#contents_system .table_system{
	width: 100%;
	font-size: clamp(1.25rem, 4vw, 1.5rem);
	text-align: center;
}
#contents_system .table_system th,
#contents_system .table_system td {
	padding-block: 8px;
	vertical-align: middle;
}
#contents_system .table_system td { width: 40%;}
#contents_system .table_system td.dot {
	position: relative;
	width: 20%;
}
#contents_system .table_system td.dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: 80%;
	height: 4px;
	background-image: radial-gradient(circle, var(--color-main2) 0 2px, transparent 2px);
	background-position: left center;
	background-repeat: repeat-x;
	background-size: 12px 4px;
}
#contents_system .table_system span.vip {
	color: var(--color-main1);
	margin-left: 0.25em;
}
#contents_system .table_system span.rec { 
	display: block;
	max-width: 120px;
	margin-inline: auto;
	border: 1px solid;
	background: var(--bg-color1);
	color: var(--color-main1);
	font-size: 0.75rem;
}

/* 割引 */
#contents_system .price_disc .ribbon {
  position: relative;
  box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  background: var(--color-main1);
  text-align: center;
  color: var(--white);
  font-size: 1.25rem;
}
#contents_system .price_disc .ribbon:before,
#contents_system .price_disc .ribbon:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
#contents_system .price_disc .ribbon:before {
  top: 0;
  left: 0;
  border-width: 20px 0px 20px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
#contents_system .price_disc .ribbon:after {
  top: 0;
  right: 0;
  border-width: 20px 15px 20px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
#contents_system .price_disc .disc_txt {
	padding: 2%;
	border: 1px solid;
	color: var(--color-main1);
	font-size: 1.5rem;
}


/****************************************
アクセスページ
****************************************/
#contents_access p span{ color: var(--color-main1);}


/****************************************
求人情報ページ
****************************************/
#contents_recruit .table_01 th,
#contents_recruit .table_01 td {
	border-color: var(--color-main2);
}
#contents_recruit .table_01 th { background: var(--color-main1);}

#contents_entry { padding-top: 0;}


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

/****************************************
404ページ
****************************************/
.err_title {
	font-size: 2rem;
	color: var(--color-main1);
	line-height: 1.2;
}
.err_title span { font-size: 0.5em;}
