@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;
}
/*paddingによる幅を無くします*/
*{
	-webkit-box-sizing:border-box;
	-mos-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
:root {
  --electric-border-color: #dd8448;
  --electric-light-color: oklch(from var(--electric-border-color) l c h);
  --gradient-color: oklch(
    from var(--electric-border-color) 0.3 calc(c / 2) h / 0.4
  );
  --color-neutral-900: oklch(0.185 0 0);
}
/*横幅をはみ出た部分は見えなくする*/
html{ overflow-x: hidden; }
body {
	width: 100%;
	min-width: 320px;
	min-height: 800px;
	background: #fff;
	color: #333333;
	font-size: 12px;/* 変更 */
	font-family: 'Roboto', Futura std, 'ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN', "Helvetica Neue" , Helvetica , Arial , "Droid Sans", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight: bold;
	font-display: swap;
	line-height: 1.8;/* 変更 */
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
	text-align: center;
	font-feature-settings: "palt";
}
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section,main {
	display: block;
}
h1, h2, h3, h4, h5, h6, strong, th{
	font-weight: normal;
}
ol,ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}
a{
	margin: 0;
	padding: 0;
	font-size: 100%; vertical-align: baseline; background: transparent; text-decoration: none;
}
/*android版クローム　フォントサイズが大きくなる不具合対策*/
p { max-height: 999999px; }
ins {
	background-color: #ff9;/* 変更 */
	color: #000;/* 変更 */
	text-decoration: none;
}
mark {
	background-color: #ff9;/* 変更 */
	color: #000;/* 変更 */
	font-style: italic;
	font-weight: bold;
}
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 #cccccc;
	margin: 1em 0;
	padding: 0;
}
img { vertical-align: bottom; }

/* form */
input, select {
	vertical-align: middle;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	/*-webkit-appearance: none;*/
	/*-moz-appearance: none;*/
	/*appearance: none;*/
}
/* float解除 */
header:after,footer:after,section:after,article:after,aside:after,main:after,div:after,dl:after,ul:after,ol:after,li:after {
	display: block;
	clear: both;
	height: 0;
	content: "";
}
/****************************************
common (共通スタイル)
****************************************/
/*ページ全体ふわっと表示*/
body { animation: fadeIn 3s ease 0s 1 normal; }
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

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

main {
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
}
.inner {
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
}
a, a:hover{ color: #484848; }

/********* 文字色 *********/
.atten_01, .atten_01 a{ color: #88600e; }
.atten_02, .atten_02 a{ color: #ffff00; }
.atten_03, .atten_03 a{ color: #0552aa; }
.atten_04, .atten_04 a{ color: #f2476c; }

/********* フォントサイズ *********/
.fs_05em{ font-size: 0.5em; }
.fs_08em{ font-size: 0.8em; }
.fs_13em{ font-size: 1.3em; }
.fs_15em{ font-size: 1.5em; }
.fs_18em{ font-size: 1.8em; }

 /********* アンダーライン *********/
.border_01 {
	background: linear-gradient(transparent 55%, #ff1979 55%);
}
 /* マージン */
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_50{margin-bottom: 50px;}
.mb_80{margin-bottom: 80px;}

/*テキストの設定*/
.center{ text-align: center; }
.left{ text-align: left; }

/* リンクアクション */
.link_act_01{
	opacity: 1;
	transition: opacity 0.5s ease;
}
.link_act_01:hover{
	opacity: 0.5;
	transition: opacity 0.5s ease;
}
 /* テーブル 1(プロフィールページのセラピスト質問で使用) */
.table_01{
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}
.table_01 tr{
	border-bottom: solid 2px white;
}
.table_01 tr:last-child{
	border-bottom: none;
}
.table_01 th{
	position: relative;
	text-align: center;
	width: 35%;
	background-color: #f2476c;
	color: white;
	padding: 10px 0;
	font-size: 11px;
	font-weight: bold;
	vertical-align: middle;
}
.table_01 th:after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 5px);
	right:-5px;
	border-left: 5px solid #f2476c;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.table_01 td{
	text-align: left;
	width: 65%;
	background-color: #f9f9f9;
	padding: 10px 0 10px 20px;
	font-weight: bold;
}
.table_01 td{
	text-align: left;
	width: 65%;
	background-color: #f9f9f9;
	padding: 10px 0 10px 20px;
	font-weight: bold;
}
label {
    display: inline-block;
    background: #e6e6e6;
    padding: 0 10px;
    margin-right: 10px;
	margin-bottom: 10px;
}
label.open_button,
.sort_name label{
    background: initial;
}
label:last-child{ margin-right: 0; }
@media screen and (max-width: 768px) {
	label {
		width: 100%;
		margin-bottom: 10px;
	}
}

 /* テーブル 2 */
.table_02 {
	width: 100%;
	border-left: 1px solid #999;
	border-top: 1px solid #999;
	border-spacing: 0;
	text-align: left;
}
.table_02 th, .table_02 td {
	padding: 5px 5px 5px 10px;
	border-color: #bbb #999 #999 #bbb;
	border-style: solid;
	border-width: 1px;
}
.table_02 th {
	background: linear-gradient(#ffffff, #aaaaaa);
	background: -webkit-linear-gradient(#ffffff, #aaaaaa);
	background: -moz-linear-gradient(#ffffff, #aaaaaa);
	vertical-align: top;
	font-size: 12px;
}
.table_02 td {
	background: linear-gradient(#333, #222222);
	background: -webkit-linear-gradient(#333, #222222);
	background: -moz-linear-gradient(#333, #222222);
	color: #fff;
	text-align: center;
}
/* テキストボックス 1 */
.txt_box_01{
	margin-bottom: 20px;
	color: #fff;
	text-align: left;
}
.txt_box_01 h2{
	margin-bottom: 10px;
	border-bottom: 1px dotted #eee;
	color: #85020d;
	font-size: 16px;
}
/* テキストボックス 2 */
.txt_box_02{
	padding: 10px;
	text-align: left;
	color: #fff;
}
/* テキストボックス 3 */
.txt_box_03{
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid #fff;
	margin-bottom: 10px;
	color: #000000;
	text-align: left;
}

div.vid_contents {
    width: 100%;
    max-width: 540px;
	text-align: center;
	margin: 0 auto 40px;
	padding: 0px;
	background: #d7d7d7;
}
video.vid_main {
	width: 100%;
    max-width: 540px;
	display: block;
}

/******************************
共通アニメーション設定
******************************/
/* フェードイン */
.fadein {
	transition: opacity 0.8s;
	transition: transform 0.8s;
}
/* 上からフェードイン */
.top_fadein {
	transition: opacity 0.6s;
	transition: transform 0.6s;
}
/* 右からフェードイン */
.right_fadein {
	transition: opacity 1.5s;
	transition: transform 1.5s;
}
/* 右からフェードイン */
.left_fadein {
	transition: opacity 1.5s;
	transition: transform 1.5s;
}
/*順番に現れる(トップページbnr_bottomで使用)*/
.animate {

}
.animate-elm {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.animate-elm.type02 { animation-delay: .2s; }
.animate-elm.type03 { animation-delay: .4s; }
.animate-elm.type04 { animation-delay: .6s; }
.animate-elm.fadein {
	animation-name: fadeInLeft;
	animation-duration: 500ms;
	animation-fill-mode: both;
}
@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		transform: translateY(-100px);
	}
	to {
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		transform: translateY(0);
	}
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		transform: translateY(-100px);
	}
	to {
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		transform: translateY(0);
	}
}
/******************************

セラピストボックス設定

******************************/
/*
ランキング使用
*/
.cast_box01{
	margin: 0 auto;
	position: relative;
}
.cast_box01 li{
	width: 100%;
	position: relative;
}
.cast_box01 .img_box{
	width: 330px;
	height: 495px;
	position: relative;
	display: inline-block;
	float: left;
	margin-bottom: 50px;
}
.cast_box01 .img_box img.staff_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	position: relative;
	z-index: 2
}
.cast_box01 .img_box .img_icon{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	text-align: left;
	width: 60%;
}
.cast_box01 .img_box .img_icon img{
	display: inline-block;
	max-width: 100px;
	width: 46%;
	height: auto;
}
.cast_box01 .right_box{
	width: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
}
.cast_box01 .right_box .icon_ranking{
	width: 100%;
	max-width: 130px;
	margin: 0 auto 20px;
}
.cast_box01 .right_box .icon_ranking img{
	width: 100%;
	height: auto;
}
.cast_box01 .right_box .txt_box{
	background: rgba(255, 193, 193, 0.9);
	padding: 5px;
}
.cast_box01 .right_box .txt_box .frame{
	border: 1px solid #fff;
	padding: 10% 5%;
}
.cast_box01 .right_box .txt_box .frame table{
	margin: 0 auto;
	color: #37404a;
}
.cast_box01 .right_box .txt_box .frame table th{
	width: 20%;
	text-align: left;
}
.cast_box01 .right_box .txt_box .frame table td{
	width: 50%;
	text-align: left;
	font-size: 16px;
}
.cast_box01 .right_box .txt_box .frame table img{
	max-width: 30px;
	width: 100%;
	height: auto;
}

/*セラピストのshadow設定*/
.cast_box01 li .img_box:before{
	position: absolute;
	top: 10px;
	left: 10px;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	background: url(../images/bg_shadow_02.jpg) repeat right bottom;
	background-size: 6px;
	z-index: -1;
}
@media screen and (max-width: 768px) {
	.cast_box01 .right_box .txt_box  .frame table th{
		font-size: 10px;
	}
	.cast_box01 .right_box .txt_box  .frame table td{
		font-size: 12px;
	}
	.cast_box01 .right_box .txt_box .frame table img{
		max-width: 20px;
		vertical-align: top;
	}
}
@media screen and (max-width: 425px) {
	.cast_box01 li .img_box{
		width: 70%;
		height: auto;
	}
}

/*
 本日の出勤・セラピスト一覧・スケジュールページ使用
 */
 .cast_box02{
 	display: flex;
 	flex-wrap: wrap;
 	justify-content: center;
 }
 .cast_box02 li{
 	width: 22%;
 	margin: 10px;
 	position: relative;
 	align-self: stretch;
 	background: #fff;
 }
 .cast_box02 li .img_box {
 	width: 100%;
 	padding-top: 150%;
 	overflow: hidden;
 	position: relative;
 	transition: 0.3s ease-in-out;
 	vertical-align: top;
 }
 .cast_box02 li .img_box > img.staff_img{
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	position: absolute;
 	left: 0;
 	top: 0;
 }
 .cast_box02 .img_box .img_icon{
 	position: absolute;
 	bottom: 0;
 	left: 0;
 	z-index: 2;
 	width: 60%;
 	text-align: left;
 }
.cast_box02 .img_box .img_icon img.icon_class{
	display: inline-block;
	max-width: 100px;
	width: 46%;
	height: auto;
}
 .cast_box02 li .txt_box{
 	margin: 2px;
 	font-size: 16px;
 }
 /*newアイコンサイズ設定*/
 .cast_box02 li .txt_box .img_new{
 	max-width: 15px;
	width: 100%;
	height: auto;
 	vertical-align: top;
 }
 .cast_box02 li .txt_box .sch_time{
 	color: #fff;
 	margin: 0 auto 5px;
 	background: #ceb67bf7;
 	padding: 2px 0;
 }
 .cast_box02 li .txt_box .icon img{
 	width: 45%;
	height: auto;
 	margin: 3px;
 }
 /*セラピストのshadow設定*/
 .cast_box02 li:before{
 	position: absolute;
 	top: 4px;
 	left: 4px;
 	width: 100%;
 	height: 100%;
 	content: '';
 	display: block;
 	background: url(../images/bg_shadow_01.jpg) repeat right bottom;
 	background-size: 6px;
 	z-index: -1;
 }

/*
新人情報
*/
.cast_box03 li{
	width: 22%;
	margin: 10px 0;
	position: relative;
	align-self: stretch;
	background: #fff;
}
.cast_box03 li .img_box {
	width: 100%;
	padding-top: 150%;
	overflow: hidden;
	position: relative;
	transition: 0.3s ease-in-out;
	vertical-align: top;
}
.cast_box03 li .img_box > img.staff_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}
.cast_box03 .img_box .img_icon{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 60%;
	text-align: left;
}
.cast_box03 .img_box .img_icon img.icon_class{
	display: inline-block;
	max-width: 100px;
	width: 46%;
	height: auto;
}
.cast_box03 li .txt_box{
	width: 100%;
	padding: 10px;
	background: #fff
}
/*newアイコンサイズ設定*/
.cast_box03 li .txt_box .img_new{
	width: 15px;
	height: auto;
	vertical-align: top;
}
.cast_box03 li .txt_box .sch_time{
	color: #fff;
	margin: 0 auto 5px;
	background: #f788a4;
	padding: 2px 0;
}
.cast_box03 li .txt_box .icon img{
	width: 45%;
	margin: 3px;
}
/*エックスアイコン*/
.icon_x_area{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.icon_x{
	width: 40px;
	height: auto;
}
#section_ranking object img{
	margin-bottom: 4px;
}
#contents_profile .icon_x_area{
	bottom: 4px;
	right: 4px;
}
@media screen and (max-width: 425px) {
	.icon_x{
		width: 30px;
	}
	#contents_profile .icon_x{
		width: 40px;
	}
}
/*新人入店日吹き出し設定*/
.cast_box03 li .shop_time{
	position: relative;
	padding: 5px;
	background: #ffc1c1;
	border-radius: 30px;
	margin-bottom: 10px;
	color: #37404a;
}
.cast_box03 li .shop_time:after{
	position: absolute;
	content: '';
	top: 100%;
	left: 45%;
	border: 8px solid transparent;
	border-top: 8px solid #ffc1c1;
	width: 0;
	height: 0;
}
/*セラピストのshadow設定*/
.cast_box03 li:before{
	position: absolute;
	top: 50px;
	left: 4px;
	width: 100%;
	height: 90%;
	content: '';
	display: block;
	background: url(../images/bg_shadow_01.jpg) repeat right bottom;
	background-size: 6px;
	z-index: -1;
}
@media screen and (max-width: 600px) {
	.cast_box03 li:before{
		height: 87%;
	}
}
@media screen and (max-width: 425px) {
	.cast_box03 li:before{
		height: 84%;
	}
}
@media screen and (max-width: 320px) {
	.cast_box03 li:before{
		height: 82%;
	}
}

/*セラピスト画像hover時の共通設定*/
.staff .img_box{
	background: #000;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.staff .img_box .staff_img{
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}
.staff .img_box .hover{
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
	opacity: 0;
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(150%);
	transform: translateY(150%);
}
.staff .img_box:hover .staff_img{
	opacity: 0.5;
	-webkit-filter: grayscale(20%);
	filter: grayscale(20%);
}
.staff .img_box:hover .hover{
	opacity: 1;
	color: #fff;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
/****************************************
ボタン設定
****************************************/
/*btn_more*/
.btn_more {
	width: 250px;
	margin: 30px auto;
	position: relative;
	border: solid 5px #ceb67bf7;
	height: 60px;
	background: #fff;
}
.btn_more:hover .hoverBtn:before,
.btn_more:hover .hoverBtn:after {
	opacity: 1;
	-webkit-animation: open 0.4s;
	/* Chrome, Safari, Opera */
	animation: open 0.4s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-direction: normal;
}
.btn_more:hover .hoverBtn-bottom:before,
.btn_more:hover .hoverBtn-bottom:after {
	opacity: 1;
	-webkit-animation: openB 0.4s;
	animation: openB 0.4s;
	animation-delay: 0.4s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-direction: normal;
}
.btn_more p {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	color: #484848;
	font-size: 14px;
	line-height: 50px;
}
.hoverBtn {
	width: 100%;
	height: 60px;
	position: absolute;
	top: -5px;
}
.hoverBtn:before {
	position: absolute;
	content: '';
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	border-top: solid 5px #f788a4;
	border-left: solid 5px #f788a4;
	right: 120px;
}
.hoverBtn:after {
	position: absolute;
	content: '';
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	border-top: solid 5px #f788a4;
	border-right: solid 5px #f788a4;
	left: 120px;
}
.hoverBtn-bottom {
	width: 100%;
	height: 60px;
	position: absolute;
}
.hoverBtn-bottom:before {
	position: absolute;
	content: '';
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	height: 50px;
	border-bottom: solid 5px #f788a4;
	right: 0;
}
.hoverBtn-bottom:after {
	position: absolute;
	content: '';
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	height: 50px;
	border-bottom: solid 5px #f788a4;
	left: 0;
}

@keyframes open {
	0% {
		width: 0;
		height: 0;
	}
	50% {
		width: 120px;
		height: 0;
	}
	100% {
		width: 120px;
		height: 55px;
	}
}
@keyframes openB {
	0% {
		width: 0px;
	}
	100% {
		width: 120px;
	}
}

/*TEL,MAIL,LINEボタン共通*/
.btn{
	width: 250px;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 16px;
}
.btn:before{
	width: 40px;
	height: 40px;
	margin-right: 10px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	display: inline-block;
	font-family: FontAwesome, sans-serif;
}
.btn:hover{
	background-position: left bottom;
	color: white;
}
/*TELボタン*/
.btn_tel{
	border: 1px solid #e66465;
	color: #e66465;
	background: linear-gradient(to right, #e66465 50%, #fff 50%);
	background-size: 200% 100.5%;
	background-position: right bottom;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.08);
	transition: all 0.5s ease-out;
}
.btn_tel:before{
	background: #e66465;
	content: '\f095';
}
/*mailボタン*/
.btn_mail{
	border: 1px solid #648ce6;
	color: #648ce6;
	background: linear-gradient(to right, #648ce6 50%, #fff 50%);
	background-size: 200% 100.5%;
	background-position: right bottom;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.08);
	transition: all 0.5s ease-out;
}
.btn_mail:before{
	background: #648ce6;
	content: '\f11c';
}
/*lineボタン*/
.btn_line{
	border: 1px solid #2bbb38;
	color: #2bbb38;
	background: linear-gradient(to right, #2bbb38 50%, #fff 50%);
	background-size: 200% 100.5%;
	background-position: right bottom;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.08);
	transition: all 0.5s ease-out;
}
.btn_line:before{
	background: #2bbb38;
	content: '\f10b';
}
/****************************************
headerヘッダー設定
****************************************/
header {
	width: 100%;
	height: 65px;
	background: #ceb67bf7;
	z-index: 99999;
	position: fixed;
	top: 0;
	left: 0;
}
header .logo{
	width: 80px;
	position: absolute;
	top: -1px;
	left: 15px;
}
header .logo img{
	width: 100%;
	height: auto;
}

/*PC版グローバルメニュー*/
header .nav{ padding-top: 20px; }
header .nav li{
	display: inline-block;
	vertical-align: top;
}
header .nav li a{
    padding: 0 10px;
	letter-spacing: 1px;
	line-height: 1.4;
	display: inline-block;
	font-size: 18px;
	color: #fff;
	text-align: center;
	transition:0.8s ease;
}
header .nav li a:hover{ color: #5a310d; }
header .nav li a.active{ color: #5a310d; }
header .nav li a span.en{ display: inline; }
header .nav li a:hover span.en{ display: none; }
header .nav li a span.jp{ display: none; }
header .nav li a:hover span.jp {
	display: inline;
	font-size: 16px;
}

/* transition */
.nav li a{ transition: all 0.5s ease; }

/*=========================
SP時のドロワーメニュー
=========================*/
/*ドロワー横の料金・アクセスアイコン*/
.header_icon{
	position: absolute;
	right: 70px;
	top: 5px;
}
.header_icon .icon{
	width: 55px;
	height: 55px;
	border: 1px solid #fff;
	padding: 5px;
	display: inline-block;
}
.header_icon .icon a{
	color: #fff;
}
.header_icon .icon a i{
	font-size: 30px;
	margin: 0 auto;
	padding-top: 2px;
}
.header_icon .icon a p{
	font-size: 10px;
	text-align: center;
	line-height: 1;
}
/*PCでは非表示*/
.btn_menu{
	display: none;
}
/*spでは表示*/
@media screen and (max-width: 769px) {
	.btn_menu{
		display: block !important;
	}
}
.btn_menu{
	position: fixed;
	top: 5px;
	right: 10px;
	width: 55px;
	height: 60px;
	z-index: 9999999999;
}
.btn-trigger {
	position: relative;
	width: 55px;
	height: 60px;
	cursor: pointer;
}
.btn-trigger img{
	width: 35px;
	height: auto;
	margin: 0 auto;
}
/*MENUとCLOSEの切り替え*/
#btn18 text close,
#btn18 text open{
	position: absolute;
	bottom: 0;
	text-align: center;
	font-size: 11px;
	overflow: hidden;
	transform: translateY(50px);
	transition: width .25s .35s, color .45s .35s;
}
#btn18 text close {
	color: rgba(0, 0, 0, 0);
	right: 2px;
	width: 0;
	top: -11px;
}
#btn18 text open {
	color: #fff;
	width: 100%;
	position: absolute;
	top: -11px;
	right: 2px;
}
#btn18.active text close{
	color: #fff;
	width: 100%;
}
#btn18.active text open {
	color: rgba(0, 0, 0, 0);
	width: 0;
}
/*クリック時の波紋*/
#btn18::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 30px;
	height: 30px;
	margin: -16px 0 0 -16px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.3);
	transition: all .1s;
	opacity: 0;
}
#btn18.active::after {
	-webkit-animation: circle .5s;
	animation: circle .5s;
}
@-webkit-keyframes circle {
	0% {
		-webkit-transform: scale(.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(3.5);
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		transform: scale(.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: scale(3.5);
		opacity: 0;
	}
}
/*ドロワーの中*/
#nav-d-bg {
	position: fixed;
	background: #ceb67bf7;
	width: 500px;
	height: 1200px;
	right: -500px;
	top: 0;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
	transition-delay: 0.2s;/*閉じる時のbgの速度*/
	z-index: 80001;
}
.open #nav-d-bg {
	-webkit-transform: matrix(2.7, 0, 0, 2.7, 0, 0);
	transform: matrix(2.7, 0, 0, 2.7, 0, 0);
	transition-delay: 0s;
}
#nav_drawer {
	position: fixed;
	top:30px;
	font-size: 14px;
	max-width: 400px;
	width: 100%;
	right: -400px;
	display: flex;
	align-items: center;
	z-index: 80002;
}
#nav_drawer > ul {
	width: 100%;
}
#nav_drawer li {
	margin: 5px auto;
	border-bottom: 1px solid #fff;
	max-width: 200px;
	width: 100%;
	text-align: left;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
}
#nav_drawer li:after{
	content: "\f105";
	font-family: FontAwesome, sans-serif;
	position: absolute;
	right: 0;
	top: 8px;
	color: #fff;
}
#nav_drawer a {
	color: #fff;
	width: 100%;
	display: block;
	padding: 5px 0;
}
#nav_drawer li a span.jp{
	font-size: 10px;
}
#nav_drawer li a.active {
	color: #ffc1c1;
}
#nav_drawer li.btn_entry a.active,
#nav_drawer li.btn_reserve a.active {
	color: #52c2d0;
}
.open #nav_drawer li {
	-webkit-transform: translateX(-400px);
	transform: translateX(-400px);
	transition-delay: .1s;
}
/*求人ボタン*/
#nav_drawer .btn_entry{
	width: 100%;
	max-width: 220px;
	margin: 20px auto;
	display: block;
	background: rgba( 255, 255, 255, 0.9);
	border-bottom: none;
	text-align: center;
	border-radius: 30px;
}
#nav_drawer .btn_entry:after{
	content: "\f105";
	font-family: FontAwesome, sans-serif;
	position: absolute;
	right: 10px;
	top: 7px;
	color: rgb(132 102 39);
}
#nav_drawer .btn_entry a{
	color: rgb(132 102 39);
	padding-top: 8px; 
}
/*web予約ボタン*/
#nav_drawer .btn_reserve{
	width: 100%;
	max-width: 220px;
	margin: 20px auto;
	display: block;
	background: rgba( 255, 255, 255, 0.9);
	border-bottom: none;
	text-align: center;
	border-radius: 30px;
}
#nav_drawer .btn_reserve:after{
	content: "\f105";
	font-family: FontAwesome, sans-serif;
	position: absolute;
	right: 10px;
	top: 12px;
	color: rgb(132 102 39);
}
#nav_drawer .btn_reserve a{
	color: rgb(132 102 39);
	padding-top: 8px; 
}
/*TELボタン*/
#nav_drawer .btn_nav_tel{
	width: 100%;
	max-width: 200px;
	margin: 10px auto;
	display: block;
	border: 1px solid #fff;
	text-align: center;
}
#nav_drawer .btn_nav_tel:after{
	content: none;
}
#nav_drawer .btn_nav_tel a{
	padding-top: 8px;
	color: #fff;
}
/*営業時間・受付時間*/
#nav_drawer .info_open{
	color: #fff;
	font-size: 14px;
	border-bottom: none;
}
#nav_drawer .info_open:after{
	content: none;
}

#drawer.active{
	display: none;
}

/******************************
mainvisual メインビジュアル設定
******************************/
h1{
	width: 100%;
	background: #ceb67bf7;
	color: #fff;
	font-size: 10px;
	text-align: center;
	font-feature-settings: "palt";
}
#section_top{
	padding: 0;
	margin: 0;
	height: 98vh;
	border-right: 5px solid #ceb67b;
	border-left: 5px solid #ceb67b;
	position: relative;
}

#section_top .frame p{
	width: 27%;
	max-width: 160px;
	position: absolute;
	z-index: 2;
}
#section_top .frame p.left{
	bottom: 0;
	left: 0;
}
#section_top .frame p.right{
	bottom: 0;
	right: 0;
}
#section_top .frame p img{
	width: 100%;
	height: auto;
}

/*flexsliderの画像設定*/
.flexslider {
	border: none;
}
.flexslider .slides img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	/*object-position: top;*/
	display: block;
}
@media screen and (max-width: 768px){
	.flexslider .slides img {
		max-width: 1180px;
	}
}


/*電話番号・営業時間*/
#mainvisual .top_info{
	width: 100%;
	padding: 10px 0 14px;
	background: #ceb67bf7;
	position: absolute;
	bottom: 0;
	z-index: 10;
}
#mainvisual .top_info ul{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}
#mainvisual .top_info ul li{
	width: 45%;
	font-size: 18px;
	text-align: center;
	line-height: 20px;
	letter-spacing: 1.5px;
	color: #fff;
	font-feature-settings: "palt";
}
#mainvisual .top_info ul li:last-child{
	border-right: none;
}
#mainvisual .top_info ul li a{
	display: block;
	color: #fff;
}

@media screen and (max-width: 425px) {
	#mainvisual .top_info ul li {
		letter-spacing: 0;
		font-size: 16px;
	}
}

/******************************
footer フッター
******************************/
footer {
	background:rgb(132 102 39);
	padding-top: 50px;
}
footer .inner { color: #ffffff; }

/* パンくずリスト */
.breadcrumbs {
	width: 95%;
	margin: 0 auto 20px;
	padding: 8px;
	font-size: 10px;
}
.breadcrumbs ul li {
	font-size: 10px;
	display: inline-block;
}
.breadcrumbs ul li:before {
	content: "\f105";
	font-family: FontAwesome, sans-serif;
	display: inline;
	margin: 0 8px 0;
}
.breadcrumbs ul li:first-child:before {
	margin: 0;
	content: "\f015";
}
.breadcrumbs ul li a { color: #fff; }

/* テキストメニュー */
footer .inner .nav{
	margin: 0 auto;
	/* padding: 10px 0; */
	padding: 10px 0 40px;
}
footer .inner .nav li {
	display: inline-block;
	color: #ffffff;
}
footer .inner .nav li a { color: #ffffff; }
footer .inner .nav li:after {
	content: "　|　";
	display: inline;
	/* margin: 0 3px; */
}
footer .inner .nav li:last-child:after {
	display: none;
}

/* フッターロゴ */
footer .logo img {
	width: 160px;
	height: auto;
}

/* 電話番号&営業時間 */
footer .info_box li{
	display: inline-block;
	width: 50%;
	max-width: 150px;
	text-align: center;
}
footer .info_box li,
footer .info_box li a{
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
.footer_link {
	padding: 5px 0;
	background: #000;
	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_link {
	padding: 5px 0;
	background: #f2476c;
	text-align: center;
	font-size: 12px;
	font-family: sans-serif;
	color: #fff;
}
.footer_link a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #d0d0d0;
}
ul.link_bnr {
    display: flex;
    width: 100%;
	/* justify-content: space-between; */
	justify-content: center;
    margin: auto;
	flex-wrap: wrap;
}
ul.link_bnr li { margin: 10px; }

.recruit_link_bnr {
    display: flex;
    width: 100%;
	justify-content: center;
    margin: 30px auto 0;
	flex-wrap: wrap;
}
.recruit_link_bnr li {
	margin: 10px;
	max-width: 300px;
}
.recruit_link_bnr li img{
	width: 100%;
	height: auto;
}

/******************************
認証ページ(index.html)
******************************/
#index_body{
	width: 100%;
	height: 100vh;
	position: relative;
	background: url(../images/index_bg.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#index_body .index_top{
	position: absolute;
	top: 8%;
	right: 0;
	left: 0;
	margin:0 auto;
	width: 100%;
}
#index_body .index_top img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px){
	#index_body .index_top{
		top: 3%;
	}
}
.index_logo{
	padding-right: 35px;
	margin: 0 auto 10px;
	min-width: 340px;
	max-width: 35%;
	display: block;
}
.btn_index{
	display: inline-block;
	margin: 5px 10px;
	max-width: 300px;
}
.btn_index img{
	width: 100%;
	height: auto;
}
#index_body .index_top .inner{
	background: rgba(255,255,255,0.8);
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	padding: 10px;
	max-width: 650px;
}
#index_body .index_top .inner .frame{
	width: 100%;
	padding: 20px;
	border: 2px solid #f2476c;
	font-size: 18px;
	line-height: 1.6em;
	letter-spacing: 1px;
}
@media screen and (max-width: 768px){
	#index_body .index_top .inner .frame{
		font-size: 14px;
		text-align: left;
	}
}

/******************************
トップページ(top.html)
******************************/
/*トップページセクションの上下のpadding設定*/
section{
	width: 100%;
	padding: 5% 0;
}
/*セクションごとの左右のライン*/
#section_ranking,
#section_new{
	border-right: 5px solid #ffc1c1;
	border-left: 5px solid #f2476c;
}
#section_concept,
#section_today,
#section_recruit{
	border-left: 5px solid #ffee9f;
	border-right: 5px solid #ceb67b;
}
/*トップページh2共通設定*/
.top_title{
	margin: 2% auto;
	text-align: center;
}
.h2_title{
	display: inline-block;
	position: relative;
	font-size: 40px;
	line-height: 1.3;
	color: #fff;
	-webkit-text-stroke: 1px #2b3641;
	text-stroke: 1px #2b3641;
	text-shadow: 4px 4px 0px #9b7827;
}
.h2_title:after{
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	top: -5px;
	left: -35px;
	background: url(../images/h2_before.png) 0 0 no-repeat;
	background-size: cover;
}
.h2_sub span{
	background: linear-gradient(transparent 70%, #ffee9f 70%);
	color: #37404a;
	font-weight: 900;
}
/*イベントh2の下線色変更*/
#section_event .h2_sub span{
	background: linear-gradient(transparent 70%, #fffb91 70%);
	font-weight: 900;
}
/*新人h2のフォント色変更*/
#section_new .h2_title{
	color: #37404a;
	-webkit-text-stroke: unset;
	text-stroke: unset;
}

/*1位獲得バナー*/
.top_bnr_area{
	padding: 60px 10px 40px;
}
.top_bnr_area img{
	max-width: 900px;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.top_bnr_area img:last-of-type{
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.top_bnr_area{
		padding:40px 10px 10px;
	}
}

/*gifバナー*/
.bnr_gif{ padding: 10px; }
.bnr_gif img{
	max-width: 100%;
	height: auto;
}
#contents_system .bnr_gif{
	padding:0;
	margin-bottom: 20px;
}

/*ヘッドラインニュース*/
.headline{
	width: 100%;
	max-width: 980px;
	position: relative;
	margin: 30px auto;
}
.headline p {
	width: 100px;
	background: #f2476c;
	color: #fff;
	border-radius: 5px 5px 0 0;
	padding: 5px 10px 3px 15px;
	font-size: 0.5em;
	letter-spacing: 4px;
}
.headline .frame{
	border-top: solid 2px #f2476c;
	border-bottom: solid 2px #f2476c;
	background: #fffcf1;
	line-height: 1.4;
	padding: 10px 15px;
	width: 100%;
	overflow: hidden;
}
.headline .frame ul li{
	width: 100%;
	text-align: left;
	overflow: hidden;
	color: #2b3641;
}

/*コンセプト*/
#section_concept {
    background: url(../images/bg_vis_staff_l.webp) -8% 68% no-repeat, url(../images/bg_vis_concept.png) 24% 26% no-repeat, url(../images/bg_vis_02.png) 0% 10% no-repeat, url(../images/bg_vis_staff_r.png) 102% 68% no-repeat, url(../images/bg_vis_02.png) right bottom no-repeat, url(../images/bg_vis.webp) 100% repeat;
    background-size: 34%, 20%, 30%, 26%, 40%, 100%;
    background-attachment: fixed;
}
#section_concept .concept_inner{
	width: 95%;
	max-width: 700px;
	position: relative;
}
#section_concept .txt_box {
	background: rgba(  255, 255, 255, 0.8);
	padding: 5%;
	position: relative;
    z-index: -1;
}
#section_concept .txt_box .concept_cap {
    margin-bottom: 40px;
    font-size: 18px;
    background: #ffee9f;
    padding: 5px;
	position: relative;
}
#section_concept .txt_box .concept_cap:before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: url(../images/bg_shadow_02.jpg) repeat right bottom;
    background-size: 6px;
    z-index: -1;
}
#section_concept .txt_box .concept_cap .frame {
	border: 1px solid #fff;
	padding: 5%;
}
#section_concept .txt_box p span {
	color: #f2476c;
	background: linear-gradient(transparent 70%, #fffb91 70%);
}
@media screen and (max-width: 768px) {
	#section_concept {
		background: url(../images/bg_vis_staff_l.png) -8% 68% no-repeat, url(../images/bg_vis_concept.png) 24% 26% no-repeat, url(../images/bg_vis_02.png) 0% 10% no-repeat, url(../images/bg_vis_staff_r.png) 102% 68% no-repeat, url(../images/bg_vis_02.png) right bottom no-repeat, url(../images/bg_vis.jpg) 100% repeat;
		background-size: 34%, 20%, 30%, 26%, 40%, 100%;
		background-attachment: fixed;
	}
	#section_concept .txt_box .concept_cap {
		font-size: 14px;
	}
	#section_concept .txt_box .pc {
		display: block !important;
	}
}
@media screen and (max-width: 480px) {
	#section_concept .txt_box .pc {
		display: none !important;
	}
}


/*イベント*/
#section_event{
	background: linear-gradient(45deg,#f2476c 0%,#f2476c 50%,#ffc1c1 50%,#ffc1c1 100%);
	position: relative;
}
#section_event:before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: url(../images/bg_event_staff_l.webp) no-repeat left top;
    background-size: contain;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 0;
}
#section_event::after {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 90%;
    background: url(../images/bg_event_staff_r.webp) no-repeat right bottom;
    background-size: contain;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 0;
}
@media screen and (max-width: 800px) {
	#section_event:before {
		background: none;
	}
	#section_event::after {
		background: none;
	}
}

#section_event ul li img{
	width: 95%;
	max-width: 500px;
	height: auto;
	margin: 0 auto 10px;
}
.flex-viewport{z-index: 10;}
.flex-direction-nav .flex-prev{z-index: 100;}
.flex-direction-nav .flex-next{z-index: 100;}
/*ランキング*/
#section_ranking{
	background: url(../images/bg_vis_ranking.png) 11% 30% no-repeat, url(../images/bg_vis_02.png) left top no-repeat, url(../images/bg_vis_02.png) right bottom no-repeat, url(../images/bg_vis.jpg)100% repeat;
	background-size: 20%, 30%, 40%, 100%;
	background-attachment: fixed;
}
#section_ranking .ranking_inner{
	width: 95%;
	max-width: 600px;
	position: relative;
}

/*口コミ*/
.kutikomi_inner {
	max-width: 600px;
	width: 95%;
	margin: 0 auto;
}
.kutikomi iframe{
	width: 100%;
	height: 500px;
}
/*本日の出勤*/
#section_today{
	background: url(../images/bg_vis_top.png) top no-repeat, url(../images/bg_vis_bottom.png) bottom no-repeat;
	background-size: 100%;
}

/*新人情報*/
#section_new{
	position: relative;
	background: url(../images/bg_vis_new.png) 11% 30% no-repeat, url(../images/bg_vis_02.png) left top no-repeat, url(../images/bg_vis_02.png) right bottom no-repeat ,url(../images/bg_vis.jpg)100% repeat;
	background-size: 20%, 30%, 40%, 100%;
	background-attachment: fixed;
}
#section_new .new_inner{
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}

/*求人情報*/
#section_recruit{
	background: url(../images/bg_recruit.jpg) repeat right bottom;
	background-size: 10px;
}
#section_recruit img{
	width: 95%;
	max-width: 700px;
	height: auto;
	margin: 0 auto;
}

/*ウィジェット各種*/
.widget_zone{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.widget_zone iframe{
	margin: 70px 15px 0 15px;
	max-width: 279px;
}
.widget_zone:last-child {
	margin-bottom: 30px;
}

.widget_zone.tiktok {
	max-width: 700px;
	margin: 0 auto;
}
.widget_zone.tiktok blockquote {
	margin-top: 70px;
}
.widget_zone.tiktok iframe {
	margin: 0;
	max-width: 325px;
}

/*フッターバナー*/
#section_bottom {
	background: url(../images/bg_vis_contents.png) 11% 30% no-repeat, url(../images/bg_vis_02.png) left 10% no-repeat, url(../images/bg_vis_02.png) right 90% no-repeat, url(../images/bg_vis.jpg)100% repeat;
	background-size: 20%, 30%, 40%, 100%;
	background-attachment: fixed;
	padding-bottom: 10%;
}
#section_bottom .top_title{
	width: 100%;
	border: 8px solid #ffee9f;
	background: #fff;
	padding: 20px 0 10px;
	margin: 0 auto 3%;
	position: relative;
}
#section_bottom .top_title:after {
	position: absolute;
	content: '';
	top: 109%;
	left: 48%;
	border: 10px solid transparent;
	border-top: 10px solid #ffee9f;
	width: 0;
	height: 0;
}
/*バナーの設定*/
figure.bnr_bottom {
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin: 1%;
	width: 45%;
	max-width: 250px;
	min-width: 150px;
	color: #ffc32e;
	line-height: 1.4em;
}
figure.bnr_bottom * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
figure.bnr_bottom img {
	opacity: 1;
	width: 100%;
	height: auto;
	vertical-align: top;
	border: 8px solid #ffee9f;
}
figure.bnr_bottom p.title{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	color: #ffee9f);
	font-size: 22px;
	letter-spacing: 2px;
}
figure.bnr_bottom h3 {
	position: absolute;
	top: 0%;
	width: 100%;
	background-color: #ffee9f;
	z-index: 1;
	text-align: right;
	padding: 15px 25px 0px;
	margin: 0;
	font-weight: 300;
	font-size: 1.3em;
	-webkit-transform: translateY(-200%);
	transform: translateY(-200%);
}
figure.bnr_bottom h3:before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 250px 80px 0;
	border-color: transparent #ffee9f transparent transparent;
}
figure.bnr_bottom figcaption p {
	padding: 5px 25px 15px;
	position: absolute;
	width: 100%;
	text-align: left;
	z-index: 2;
	bottom: 0%;
	background-color: #ffee9f;
	-webkit-transform: translateY(200%);
	transform: translateY(200%);
}
figure.bnr_bottom figcaption p:before {
	position: absolute;
	content: '';
	bottom: 100%;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 80px 0 0 250px;
	border-color: transparent transparent transparent #ffee9f;
}
figure.bnr_bottom a {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}
figure.bnr_bottom:hover h3 {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
figure.bnr_bottom:hover figcaption p {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

@media screen and (max-width: 768px) {
	figure.bnr_bottom h3 {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		font-size: 12px;
	}
	figure.bnr_bottom h3:before{
		top: 90%;
	}
	figure.bnr_bottom figcaption p:before{
		bottom: -10px;
	}
	figure.bnr_bottom figcaption p {
		background-color: unset;
		padding: 0 0 4px 10px;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
	ul.link_bnr {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
	}
}
@media screen and (max-width: 480px) {
	ul.link_bnr {
		flex-direction: column;
	}
}

/****************************************
ここから下層ページの設定なのだよ
****************************************/

/****************************************
下層ページ共通
****************************************/
#contents_schedule,
#contents_cast,
#contents_system,
#contents_access,
#contents_introduction,
#contents_link,
#contents_recruit,
#contents_profile,
#contents_contact,
#contents_reserve,
#contents_err{
	background-size: 12px;
	border-right: 5px solid #ffee9f;
	border-left: 5px solid #ceb67bf7;
	border-top: 5px solid #ceb67bf7;
	padding-top: 0;
}

.subvisual{
	width: 100%;
	height: 50vh;
	position: relative;
	display: flex;
	/*margin-bottom: 5%;*/
}
.subvisual .bg{
	width: 70%;
	height: 30vh;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}
.subvisual .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.subvisual .left{
	width: 30%;
	height: 30vh;
	background-color: #ceb67bf7;
	display: flex;
	align-items: center;
	z-index: 2;
}
.subvisual .left a{
	text-align: center;
	margin: 0 auto;
}
.subvisual .left img{
	width: 70%;
	margin: 0 auto;
}
.subvisual .bg_02{
	width: 100%;
	height: 14vh;
	background: url(../images/sub_bg02.jpg) 0 0 no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: 50% 100%;
	position: absolute;
	bottom: 0;
	overflow: hidden;
}
.contents_h2{
	width: 90%;
	height: 40%;
	max-width: 900px;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
	background: url(../images/bg_contents.png) repeat right bottom;
	background: rgba(  255, 255, 255, 0.8)
}
.contents_h2 .contents_title{
	width: 100%;
}

/*セラピスト一覧とスケジュール一覧はwidth:100%;*/
#contents_schedule .content_inner,
#contents_cast .content_inner{
	width: 95%;
	max-width: unset;
	margin: 0 auto;
}
/*上記以外はmax-width:1000px;*/
.content_inner{
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 5% 0;
}
.content_inner_event{
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 5% 0 2%;
}

/*下層ページh3設定*/
.content_inner h3,
.profile_box_schedule h3{
	position: relative;
	padding: 10px;
	background: #ffee9f;
	margin-bottom: 30px;
	border-radius: 40px;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 900;
}
.content_inner h3:after,
.profile_box_schedule h3:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 49%;
	border: 10px solid transparent;
	border-top: 10px solid #ffee9f;
	width: 0;
	height: 0;
}

/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
/* 出勤スケジュールメニュー */
#contents_schedule .schedule_nav{
	margin: 0 auto 20px;
	display: flex;
	justify-content: center;
	max-width: 1000px;
	position: relative;
}
#contents_schedule .schedule_nav li{
	text-align: center;
	width: calc( 100%/ 7 );
	margin: 0 10px 20px;
}
#contents_schedule .schedule_nav li a {
	color: #484848;
	background: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: #484848;
	position: relative;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 10px;
	font-size: 13px;
	display: block;
	box-sizing: border-box;
}
#contents_schedule .schedule_nav li a:before,
#contents_schedule .schedule_nav li a:after{
	content: '';
	display: block;
	position: absolute;
	border-color: #484848;
	box-sizing: border-box;
	border-style: solid;
	width: 1em;
	height: 1em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#contents_schedule .schedule_nav li a:before {
	top: -6px;
	left: -6px;
	border-width: 2px 0 0 2px;
	z-index: 5;
}
#contents_schedule .schedule_nav li a:after {
	bottom: -6px;
	right: -6px;
	border-width: 0 2px 2px 0;
}
#contents_schedule .schedule_nav li a:hover:before, 
#contents_schedule .schedule_nav li a:hover:after {
	width:calc(100% + 12px);
	height:calc(100% + 12px);
	border-color:#9b7d33de;
}
#contents_schedule .schedule_nav li a:hover {
	color:#484848;
	background-color:#9b7d33de;
	border-color:#9b7d33de;
}
#contents_schedule .schedule_nav li.active a {
	border: 1px solid #ceb67bf7;
	background: #ceb67bf7;
	color: #fff;
}
#contents_schedule .schedule_nav li.active a:before,
#contents_schedule .schedule_nav li.active a:after{
	border-color: #ceb67bf7;
	width:calc(100% + 12px);
	height:calc(100% + 12px);
}
/****************************************
プロフィールページ
****************************************/
/*プロフィール部分*/
#contents_profile .profile_box_right{
	width: 45%;
	display: inline-block;
	vertical-align: top;
}
#contents_profile .profile_box_right .txt_box{
	margin-bottom: 30px;
}
#contents_profile .profile_box_right .txt_box .name,
#contents_profile .profile_box_right .txt_box .age_size{
	font-size: 24px;
}
#contents_profile .profile_box_right .name img{
	max-width: 30px;
	width: 100%;
	height: auto;
	vertical-align: sub;
}
#contents_profile .profile_box_right .txt_box .icon{
}
#contents_profile .profile_box_right .txt_box .icon img{
	max-width: 100px;
	width: 20%;
	height: auto;
	margin: 1% 3px;
}
/*セラピスト写真部分*/
#contents_profile .profile_box_left{
	width: 45%;
	display: inline-block;
	vertical-align: top;
}
#contents_profile .profile_box_left .img_box{
	max-width: 330px;
	max-height: 495px;
	overflow: hidden;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
}
#contents_profile .profile_box_left .img_box .icon{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	text-align: left;
}
#contents_profile .profile_box_left .img_box .icon img{
	width: 46%;
	height: auto;
	display: inline-block;
}
#contents_profile .img_box > img{
	width: 100%;
}
/* ↓↓ 写メ日記、口コミウィジェット */
#contents_profile .widget_box{
	margin: 5% auto;
    width: 95%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#contents_profile .widget_box iframe {
	max-width: 360px;
    width: 100%;
    height: 450px;
	padding: 15px;
}
/* ↓↓ スケジュール表 */
.profile_box_schedule{
	margin: 5% auto;
	width: 95%;
	max-width: 1000px;
}
.profile_box_schedule .profile_sch_box {
	display: flex;
	box-sizing: border-box;
	border: 1px solid #fff;
}
.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: .5em 1em;
	text-align: center;
	color: #fff;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background: #ffc1c1;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	padding: .8em 1em;
	color: #484848;
	text-align: center;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	background: #f9f9f9;
}
@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%;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
		flex-basis: 50%;
	}
}

/****************************************
システムページ
****************************************/
#contents_system .table_01{
	max-width: 550px;
	margin: 0 auto 5%;
}
#contents_system .txt_box{
	text-align: left;
	padding: 10px;
	font-size: 11px;
	color: #848484;
}
#contents_system .table_01 td span.atten{
	border: 1px solid #848484;
	padding: 3px 10px 2px;
	vertical-align: text-bottom;
}
#contents_system .table_01 td span.point_01{
	background: #85020d;
	padding: 6px 10px 4px;
	border-radius: 20px;
	color: #fff;
	vertical-align: text-bottom;
}
#contents_system .table_01 td span.point_02{
	background: #ffc1c1;
	padding: 6px 10px 4px;
	border-radius: 20px;
	color: #484848;
	vertical-align: text-bottom;
}
.credit_card_box img{
	max-width: 550px;
	width: 100%;
}
.invoiceit_images{
	text-align: center;
	margin-bottom: 40px;
}
.invoiceit_images img{
	width: 100%;
	max-width: 550px;
}

/*システムページ・女の子一覧ページのスライダー*/
#contents_system #section_event,
#contents_cast #section_event{
	background: none;
}
#contents_system section#section_event{
	padding: 0;
	margin: 0 0 6%;
}
#contents_cast section#section_event{
	padding: 0;
}
#contents_system #section_event .flex-control-nav,
#contents_cast #section_event .flex-control-nav{
    bottom: -10px;
}
#contents_cast section#section_event ul.slides {
	margin-bottom: 10px;
}

/****************************************
求人情報ページ
****************************************/
#contents_recruit .content_inner .recruit_top{
	width: 100%;
	height: 50vh;
	margin: 0 auto 5%;
	padding: 10px;
	display: flex;
	align-items: center;
	background: #f788a4;
}
#contents_recruit .content_inner .recruit_top .img_box{
	height: 100%;
	width: 45%;
	overflow: hidden;
}
#contents_recruit .content_inner .recruit_top .img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#contents_recruit .content_inner .recruit_top .txt_box{
	width: 55%;
	margin: 10px;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 10px 10px 10px 20px;
	text-align: left;
	font-size: 16px;
	color: #fff;
	border: 1px solid #fff;
}
#contents_recruit .content_inner .recruit_top .txt_box p{
	margin: 0 auto;
}

@media screen and (max-width: 768px){
	#contents_recruit .content_inner .recruit_top{
		display: block;
		height: unset;
	}
	#contents_recruit .content_inner .recruit_top .img_box,
	#contents_recruit .content_inner .recruit_top .txt_box{
		width: 100%;
		display: block;
	}
	#contents_recruit .content_inner .recruit_top .txt_box{
		margin: 20px auto;
		font-size: 12px;
		padding: 10px;
	}
}
/*-- タブ --*/
section.tabs{
    padding: 0;
}
.tabs {
	/*	margin-top: 50px;*/
	background-color: rgba(255, 255, 255, 0.1);
	margin: 0 auto;
}
.tab_item {
	color: #fff;
	width: calc(100%/2);
	height: 50px;
	background-color: #90c1d6;
	line-height: 50px;
	text-align: center;
	display: block;
	float: left;
	text-align: center;
	transition: all 0.2s ease;
}
.tab_item:hover {opacity: 0.75;}

.tabs label{
	text-align: center;
	padding: 0;
	border-bottom: none;
}
/*ラジオボタンを全て消す*/
.tabs input[name="tab_item"] {
	display: none;
}
.tabs input:checked + #contents_form .tab_item  span::after{
	content: none;
}
.tab_content {
	text-align: left;
	line-height: 1.8rem;
	display: none;
	padding: 50px 15px 20px;
	clear: both;
	overflow: hidden;
	border-left: 1px solid #cecece;
	border-right: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
}
#tab_rc_therapist:checked ~ #rc_therapist_box,
#tab_rc_staff:checked ~ #rc_staff_box{
	display: block;
}
.tabs input:checked + .tab_item {
	color: #000;
	background: #fbfbfb;
	position: relative;
	border: 1px solid #dddd;
}

/*-- タブの中身装飾 --*/
#contents_recruit .content_inner #rc_staff_box .recruit_top{
	background: #43add8;
}
.tabs ul.tab_rc_staff{
	/*color: #676767;*/
	width: 100%;
	max-width: 690px;
	border: 1px solid #52c2d0;
	margin: 0 auto 20px;
	padding: 15px 10px;
}
.tabs ul.tab_rc_staff li{
	display: flex;
	justify-content: center;
	border-bottom: 1px dotted #ddd;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.tabs ul.tab_rc_staff li .staff_name{
	position: relative;
	padding: 0 20px 0 0;
	margin-right: 20px;
	width: 170px;
	text-align: left;
}
.tabs ul.tab_rc_staff li .staff_name:after{
	color: #b2cfe4;
	position: absolute;
	top: 0;
	right: 0;
	content: "▶︎";
}
.tabs ul.tab_rc_staff li .staff_salary {
	width: 200px;
}
.tabs .in_title{
	background: #f78ea9;
	color: #ffffff;
	line-height: 1.6em;
	font-size: 1.4em;
	margin: 0 auto 20px;
	width: 100%;
	text-align: center;
	padding: 5px 0;
}

/****************************************
フォーム共通
****************************************/
.content_inner form input[type="text"],
.content_inner form input[type="email"],
.content_inner form textarea,
.content_inner form select {
	outline: none;
	border: 1px solid #eee;
	-webkit-transition: all .3s;
	transition: all .3s;
	background: #fff;
}
.content_inner form input[type="text"]:focus,
.content_inner form input[type="email"]:focus,
.content_inner form textarea:focus,
.content_inner form select:focus {
	box-shadow: 0 0 7px #ff91c8;
	border: 1px solid #ff91c8;
}
.content_inner form select{
	padding: 5px 10px;
	border-radius: 20px;
}
.content_inner .table_01 td{
	padding: 15px 20px 15px 20px;
}
.content_inner .table_01 td input{
	width: 100%;
	padding: 10px;
	border-radius: 20px;
}
.content_inner .table_01 td label{padding: 6px;}
.content_inner .table_01 td label input{
    height: 12px;
    width: 20px;
    border: none;
    border-radius: 0;
}
.content_inner .table_01 td textarea{
	width: 100%;
}
.content_inner .table_01 td#reserve input{
	width: unset;
}

/*確認・送信ボタン設定*/
.btn_send {
	background-color: salmon;
	color: white;
	padding: 2em 3em;
	border: none;
	transition: all .3s ease;
	border-radius: 5px;
	letter-spacing: 2px;
	text-transform: uppercase;
	align-self: center;
	cursor: pointer;
	font-weight: bold;
	display: block;
	margin: 30px auto;
}
.btn_send:hover {
	animation: random-bg .5s linear, grow 1300ms ease;
}
/* pulsating effect on button */
@keyframes random-bg {
	from {
		filter: hue-rotate(0);
	}
	to {
		filter: hue-rotate(360deg);
	}
}
@keyframes grow {
	0% {
		transform: scale(1);
	}
	14% {
		transform: scale(1.3);
	}
	28% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.3);
	}
	70% {
		transform: scale(1);
	}
}

/*戻る、リセットボタン*/
.btn_reset{
	border-bottom: 1px solid #848484;
	color: #848484;
	padding: 5px 10px;
}
.btn_reset:hover{
	opacity: 0.6;
	background: #eee;
}
/*送信完了画面の戻るボタン*/
.btn_back{
	font-size: 16px;
	background: #f2476c;
	color: #fff;
	padding: 5px 20px;
	border-radius: 20px;
	text-align: center;
}

/****************************************
お問合せページ
****************************************/
#contents_contact .txt_box_01{
	color: #484848;
	text-align: center;
}
#contents_contact .txt_box_01 img{
	width: 100%;
	max-width: 500px;
	margin: 2% auto;
}
/****************************************
WEB予約ページ
****************************************/
#contents_reserve .txt_box_01{
	color: #484848;
	text-align: center;
}
#contents_reserve .txt_box_01 img{
	width: 100%;
	max-width: 500px;
	margin: 2% auto;
}
/****************************************
アクセスページ
****************************************/
figure.snip1432 {
	color: #fff;
	position: relative;
	overflow: hidden;
	margin: 20px auto;
	width: 100%;
	max-width: 550px;
	height: 150px;
	background: #000000;
	color: #ffffff;
	text-align: center;
}
figure.snip1432 * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
figure.snip1432 img {
	opacity: 0.9;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: top;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	transform: scale(1.01);
}
figure.snip1432 figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
figure.snip1432 figcaption > div {
	height: 31%;
	overflow: hidden;
	width: 100%;
	position: relative;
}
figure.snip1432 figcaption > div:nth-child(3) {
    height: 18%;
}
figure.snip1432 p {
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	text-transform: uppercase;
}
figure.snip1432 .title {
	font-weight: 900;
	top: 0;
	font-size: 18px;
}
figure.snip1432 sub {
	font-size: 1em;
	bottom: 0;
	font-weight: 500;
}
figure.snip1432 .second {
	opacity: 0;
	-webkit-transform: translateY(150%);
	transform: translateY(150%);
}
figure.snip1432 .area {
    background: #f2476c;
    max-width: 250px;
    padding: 3px 0;
}
figure.snip1432 a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
}
figure.snip1432:hover img {
	opacity: 0.7;
	-webkit-filter: grayscale(70%);
	filter: grayscale(70%);
}
figure.snip1432:hover figcaption .first {
	-webkit-transform: translateY(150%);
	transform: translateY(150%);
	opacity: 0;
}
figure.snip1432:hover figcaption .second {
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
#contents_access .access_area {
    max-width: 550px;
    margin: 0 auto 20px;
}
#contents_access .access_area h4 {
    color: #fff;
    background: #ceb67bf7;
	margin: 0 auto 5px;
    padding: 3px 0;
	font-weight: bold;
}
#contents_access .access_area p span {
    background: linear-gradient(transparent 70%, #ffee9f 70%);
    margin-right: 10px;
}
#contents_access .bottom {
	max-width: 550px;
	width: 100%;
	margin: 5% auto;
}
#contents_access .bottom h3{
	font-size: 13px;
	font-weight: 900;
}
#contents_access .bottom .btn_tel{
	margin: 0 auto;
}
#contents_access .btn_more{
	margin-top: 20px;
}
/****************************************
系列店紹介
****************************************/
#contents_introduction ul {
	display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    width: min(100%, 900px);
    margin: 10px auto 20px;
}
#contents_introduction ul li {
	width: calc((100% - 0px) / 2);
	margin-bottom: 20px;
	padding: 0 20px;
	text-align: left;
	color: #848484;
}
#contents_introduction ul li a{display: block;}
#contents_introduction ul li p{padding: 20px;}
#contents_introduction ul li img{width: 100%;}

@media screen and (max-width: 768px){
	#contents_introduction ul li {
		width: calc((100% - 0px) / 1);
		margin-bottom: 20px;
		padding: 0 20px;
		text-align: left;
		color: #848484;
	}
	#contents_introduction ul li p{padding: 10px;}
}

/****************************************
リンクページ
****************************************/
/* リンクボックス */
.list_link_box{
	width: 100%;
	margin: 0 auto;
	font-size: 10px;
}
.list_link_box li{
	display: inline-block;
	margin: 1%;
}
/****************************************
404ページ
****************************************/
#contents_err h3 {
	font-size: 40px;
	line-height: 1;
	padding: 20px 0;
	border-radius: 100px;
}
#contents_err #err_toplink a {
	position: relative;
	color: #E72D34;
	text-decoration: underline;
}
#contents_err #err_toplink a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -25px;
	margin: -8px 0 0 0;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-left: 7px solid #E72D34;
}

/****************************************
メディアクエリ設定
****************************************/
/*PC版769pxまでSP版786px〜*/
@media screen and (min-width: 769px) {
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 768px){
	/*共通*/
	.pc{
		display: none !important;
	}
	footer{
		margin-bottom: 65px;
	}
	/*SP版追従TELボタン*/
	#bottom_nav{
		display: none;
	}
	#bottom_nav.fade {
		position: fixed;
		right: 0;
		left: 0;
		bottom: 2%;
		margin: 0 1%;
		z-index: 50000;
		display: block !important;
		animation-duration: 2.6s;
		-webkit-animation-duration: 2.6s;
		animation-name: fade;
	}
	@keyframes fade {
		0% {
			opacity: 0;
			transform: translateY(-100px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}
	@-webkit-keyframes fade {
		0% {
			opacity: 0;
			transform: translateY(-100px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}
	#bottom_nav a {
		/* width: 30%; */
		width: calc((100% - 16px ) / 3);
		display: flex;
		flex-direction: row;
		gap: 8px;
		/* margin: 1% 0.5%; */
		padding: 8px;
		background: #fff;
		z-index: 999;
		font-size: 13px;
		letter-spacing: 1px;
		text-decoration: none;
		text-align: center;
		display: inline-block;
		font-feature-settings: "palt";
	}
	#bottom_nav a.nav_01{
		/* border: 4px solid #f2476c; */
		/* color: #f2476c; */
		border: 4px solid #ffffff;
		color: #333333;
		background: #ff94ce;
	}
	#bottom_nav a.nav_02{
		/* border: 4px solid #8ebe1b; */
		/* color: #8ebe1b; */
		border: 4px solid #ffffff;
		color: #333333;
		background: #61ffc2;
	}
	#bottom_nav a.nav_03{
		/* border: 4px solid #ffc1c1; */
		/* color: #ffc1c1; */
		border: 4px solid #ffffff;
		color: #333333;
		background: #ffec15;
	}

	section{ padding: 12% 0; }
	#section_ranking,
	#section_new,
	#section_bottom{
		background-attachment: unset;
	}
	/*本日の出勤、スケジュールページ、セラピスト一覧ページ3人*/
	.cast_box02 li{
		width: 48%;
		margin: 2% 1%;
	}
	.cast_box02 li .txt_box .icon img {
		width: 45%;
		margin: 1%;
	}
	/*下層ページ*/
	.subvisual .bg_02{
		background-attachment: unset;
	}
	.subvisual .left img {
		width: 100%;
	}
	/*contact,reserve,linkページのtable_01設定*/
	#contents_contact .table_01 tr th,
	#contents_contact .table_01 tr td,
	#contents_reserve .table_01 tr th,
	#contents_reserve .table_01 tr td,
	#contents_link .table_01 tr th,
	#contents_link .table_01 tr td,
	#contents_recruit .table_01 tr th,
	#contents_recruit .table_01 tr td{
		width: 100%;
		display: block;
	}
	#contents_contact .table_01 tr th:after,
	#contents_reserve .table_01 tr th:after,
	#contents_link .table_01 tr th:after,
	#contents_recruit .table_01 tr th:after {
		display: none;
	}
	/*スケジュールページ*/
	#contents_schedule .schedule_nav {
		display: block;
	}
	#contents_schedule .schedule_nav li{
		display: inline-block;
		width: calc( 90%/ 2 );
		margin: 2%;
	}
	#contents_schedule .schedule_nav li:first-child{
		width: 95%;
		margin: 2.5% auto;
	}
	/*プロフィールページ*/
	#contents_profile .profile_box_right,
	#contents_profile .profile_box_left{
		width: 100%;
		display: block;
		margin-bottom: 5%;
	}
	div.vid_contents {
		width: 100%;
		text-align: center;
		padding: 0;
		background: #d7d7d7;
	}
}
@media screen and (max-width: 480px){
	.tabs ul.tab_rc_staff li{
		flex-direction: column;
		border-bottom:none;
	}
	.tabs ul.tab_rc_staff li .staff_name{
		margin-right:0;
		width: auto;
		background: #e7f1ff;
		padding: 5px 10px;
	}
	.tabs ul.tab_rc_staff li .staff_name:after{
		content: none;
	}
	.tabs ul.tab_rc_staff li .staff_salary{
		width: auto;
		padding: 5px 10px;
	}
}
@media screen and (max-width: 425px){
	/*トップページ*/
	.h2_title{
		font-size: 35px;
	}
	.h2_sub{
		font-size: 18px;
	}
	#section_ranking,
	#section_new,
	#section_bottom{
		/* background: none; */
		background:url(../images/bg_vis.jpg)repeat 40% 0%;
		background-size: 130%;
		/* background-attachment: fixed; */
	}
	#section_concept{
        background: url(../images/bg_vis_staff_l.png) -36% 54% no-repeat, url(../images/bg_vis_staff_r.png) 310% 104% no-repeat, url(../images/bg_vis.jpg) 40% 0% repeat;
        background-size: 126%, 104%, 130%;
	}
	/*下層ページ*/
	.cast_box02 li .txt_box{
	    margin: 3px 5px;
        font-size: 14px;
    }
	}
}


/*--------------------------------------
cast page
--------------------------------------*/
/*絞り込み用モーダル設定*/
.modal_wrap input#trigger {
	display: none;
}
.modal_overlay {
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}
.modal_trigger {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3)
}
.modal_content {
	position: absolute;
	align-self: center;
	width: 90%;
	max-width: 800px;
	/*margin: 30px 30px 15px;*/
	box-sizing: border-box;
	background: #ffc1c1;
	/*line-height: 1.4em;*/
	transition: 0.5s;
}
.close_button {
	position: absolute;
	top: 5px;
	right: 30px;
	font-size: 20px;
	cursor: pointer;
	background: none;
	color: #4c4c4c;
	z-index: 1;
	width: auto;
}
.modal_wrap input:checked ~ .modal_overlay {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
}
.open_button {
  max-width: 600px;
  margin: 0 auto;
}
.open_button img{
	width: 100%;
	max-width: 800px;
	height: auto;
	margin-bottom: 30px;
}

/*絞り込みモーダル内設定*/
.sort_cast{
	z-index: -1;
}
.sort_cast .dl_type_01{
	padding: 5% 5% 0 5%;
	margin-bottom: 0;
}
.sort_cast .dl_type_01 dt{
	color: #f2476c;
	text-align: left;
}
.sort_cast .dl_type_01 dd{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #fff;
	text-align: left;
}
.sort_cast .dl_type_01 dd label{
	display: inline-block;
	background: none;
	padding: 0;
	margin-right: 5px;
}
.sort_cast .dl_type_01 dd input[type="checkbox"]{
	background: #fff;
	margin-right: 2px;
}
.sort_cast button{
	font-family: sans-serif;
	font-weight: bold;
    background: #f2476c;
    border: 1px solid #f2476c;
    max-width: 500px;
    width: 68%;
    margin: 0 auto;
    font-size: 15px;
    color: #fff;
    position: relative;
	margin-right: 2%;
    cursor: pointer;
    -webkit-appearance: none;
	border-radius: 20px;
	float: left;
	padding: 5px 0;
}
.cast_box .no_staff{
	color: #d87992;
	font-weight: bold;
	max-width: 100%;
}
.sort_btn{
	margin: 0 5% 5%;
}
a.btn_back{
	width: 30%;
	padding: 9px 0;
	float: right;
	background: #000;
	font-size: 10px;
}

.info_btn {
	width: 100%;
    max-width: 600px;
    margin: 30px auto 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items: center;
}
.info_btn a {
    display: block;
	width: calc(96%/2);
	background: #ac5269;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    font-size: 16px;
	margin: 0 1%;
}

/*絞り込みボタン*/
input[type=text] {
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.sort_name {
    text-align: center;
    max-width: 600px;
    margin: 10px auto 20px;
    }
    .sort_name label{
    	text-align: center
    }
     .sort_name div{
     	display: flex;
     	justify-content: center;
     }
.sort_name input[type="text"] {
	text-align: left;
	font-size: 14px;
	font-weight:600;
	width: 100%;
	border: 2px solid rgb(191, 191, 191);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
	}
.sort_name input[type="submit"] {
    width: calc( ( 100% - 35px ) / 2 );
    margin: 0 15px 10px 0;
	font-size: 15px;
	padding: 0;
	vertical-align: top;
}
.sort_name{
	text-align: center;
}
.sort_name a.btn_back {
    width: calc( ( 100% - 35px ) / 2 );
	margin-bottom: 10px;
	font-size: 15px;
	background: #000;
	border: 1px solid #000;
	color: #fff;
	position: relative;
	cursor: pointer;
	display: inline-block;
	font-family: sans-serif;
	line-height: 32px;
	appearance: auto;
    user-select: none;
    white-space: pre;
    align-items: flex-start;
    text-align: center;
    padding: 0;
    float: none;
}
.sort_name input[type="submit"] {
	font-family: sans-serif;
	font-weight: bold;
    background: #f2476c;
    border: 1px solid #f2476c;
    max-width: 500px;
    width: 95%;
    margin: 0 auto;
    font-size: 15px;
    color: #fff;
    position: relative;
    margin-bottom: 10px;
	margin-right: 5%;
    cursor: pointer;
    -webkit-appearance: none;
	border-radius: 20px;
}
.sort_name input[type="submit" i] {
    appearance: auto;
    user-select: none;
    white-space: pre;
    align-items: flex-start;
    text-align: center;
}

.sort_cast .dl_type_01{
    text-align: left;
    table-layout: fixed;
    font-size: 14px;
    max-height: calc(90vh - 75px - 65px );
    overflow-y: auto;
}

@media (max-width: 480px){
.sort_name a.btn_back{
		font-size: 10px
	}
}