@charset "utf-8";

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}body{width:100%;min-width:320px;min-height:800px;overflow-x:hidden;text-align:center;-webkit-text-size-adjust:100%;font-feature-settings:"palt"}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main{display:block}h1,h2,h3,h4,h5,h6,th{font-weight:400}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}a{color:#3e4349;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}p{max-height:999999px}ins{background-color:#ff9;color:#3e4349;text-decoration:none}mark{background-color:#ff9;color:#3e4349;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:bottom}input,select{vertical-align:middle}

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

 common (共通スタイル)

****************************************/
body {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
	color: var(--color-black1);
	background: var(--color-white1);
	font-size: 14px;
	font-weight: 500;
	/*font-family: Garamond , "Times New Roman", "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;*/
	font-family: Times New Roman, '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Noto Serif JP', 'Hiragino Mincho ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	line-height: 1.8;/* 変更 */
}
body:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    background: url(../images/bg_body.jpg) bottom center / cover no-repeat;
}
@keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}

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

.inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.inner500{
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.inner1200{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
a{
	color: var(--color-black1);
}
main{
	margin: 0 auto;
	max-width: 1920px;
	width: 100%;
}
img{
	max-width: 100%;
  	height: auto;
}

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

/*********** 文字色 ***********/
.atten_01, .atten_01 a{color: #e50055;}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #a4f4ff;}
.atten_04, .atten_04 a{color: #ffe5a4;}

:root {
	--color-white1:	#fff;
	--color-gray1:	#c6beb6;
	--color-black1:	#2c190b;
	--color-pink1: #e66b89;
	--color-pink2: #d62668;
	--color-pink3: #f093aa;
	--color-blue1: #56cdde;
	--bg-gradation1: linear-gradient(90deg, rgba(194, 79, 107, 1) 0%, rgba(229, 143, 164, 1) 50%, rgba(194, 79, 107, 1) 100%);
	--bg-gradation2: linear-gradient(90deg, rgba(58, 202, 198, 1) 0%, rgba(88, 223, 218, 1) 50%, rgba(58, 202, 198, 1) 100%);
}

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

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

/*********** フォントサイズ ***********/
.fs_ss{font-size: 8px;}
.fs_s{font-size: 10px;}
.fs_12{font-size: 12px;}
.fs_13{font-size: 13px;}
.fs_14{font-size: 14px;}
.fs_15{font-size: 15px;}
.fs_16{font-size: 16px;}
.fs_18{font-size: 18px;}
.fs_20{font-size: 20px;}
.fs_24{font-size: 24px;}

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

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

/*********** table設定 ***********/
/*table01*/
.table_01 {
	width: 100%;
	margin-bottom: 30px;
	border-left: 1px solid var(--color-pink2);
	border-top: 1px solid var(--color-pink2);
	border-spacing: 0;
	text-align: left;
}
.table_01 th, .table_01 td {
	padding: 16px;
	border-color: var(--color-pink2);
	border-style: solid;
	border-width: 1px;
	background: var(--color-white1);
	font-size: 14px;
    vertical-align: middle;
}
.table_01 th {
	width: 30%;
	background: var(--color-pink3);
	color: var(--color-white1);
	vertical-align: middle;
    text-align: center;
	font-size: 14px;
}

/*table02*/
.table_02 {
	width: 100%;
	margin-bottom: 30px;
	border-left: 1px solid var(--color-pink2);
	border-top: 1px solid var(--color-pink2);
	border-spacing: 0;
	text-align: left;
}
.table_02 th, .table_02 td {
	padding: 16px;
	border-color: var(--color-pink2);
	border-style: solid;
	border-width: 1px;
	background: var(--color-white1);
	font-size: 14px;
    vertical-align: middle;
}
.table_02 th {
	width: 25%;
	background: var(--color-pink3);
	color: var(--color-white1);
	vertical-align: middle;
    text-align: center;
	font-size: 14px;
}

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

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

/* リンクボックス */
.list_link_box li{
	margin: 10px;
	display: inline-block;
	font-size: 11px;
}

/*********** ボタン設定 ***********/
.btn_more{
	display: inline-block;
    position: relative;
	text-align: center;
	height: 60px;
	line-height: 60px;
	max-width: 240px;
	width: 60%;
	margin: 40px auto 0;
	color: var(--color-white1);
	font-size: 16px;
	border-radius: 10px;
	border: none;

	background: url(../images/btn_frame_top.png), url(../images/btn_frame_bottom.png), var(--bg-gradation1);
	background-position: top left, bottom right, center;
	background-repeat: no-repeat;
	background-size: 30px, 30px, 100%;
}
.btn_more:hover{
	opacity: 0.6;
	transition: all 0.4s ease-in-out;
}
.btn_more:focus {
    outline: none;
}

.btn_01{
	display: inline-block;
    position: relative;
	text-align: center;
	height: 50px;
	line-height: 50px;
	max-width: 450px;
	width: 80%;
	margin: 0 auto 10px;
	color: var(--color-white1);
	font-size: 18px;
	border-radius: 10px;
	border: none;

	background: url(../images/btn_frame_top.png), url(../images/btn_frame_bottom.png), var(--bg-gradation1);
	background-position: top left, bottom right, center;
	background-repeat: no-repeat;
	background-size: 30px, 30px, 100%;
}
.btn_01:hover{
	opacity: 0.6;
	transition: all 0.4s ease-in-out;
}

.btn_topics{
	position: relative;
	overflow: hidden;
	display: inline-block;
	background: var(--bg-gradation1);
	width: 40%;
	max-width: 160px;
	min-width: 100px;
	margin: 2px;
    padding: 8px 10px;
	border-radius: 10px;
    font-size: 16px;
	letter-spacing: 0.06em;
	transition: ease .6s;
}
.btn_topics span {
	color: var(--color-white1);
}
.btn_topics:hover {
	opacity: 0.6;
	transition: 0.3s ease-in-out;
}

/* フォームのボタン */
.btn_form {
	display: flex;
	gap: 5px;
	justify-content: center;
	/* ボタンを縦に並べる場合
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center; */
}
.btn_form input {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 250px;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	color: #fff;
	background: #000;
}

/* フォームボタン - 確認・送信ボタン */
.btn_form .btn_send {
	display: inline-block;
	width: 100%;
	max-width: 240px;
	font-size: 16px;
	text-align: center;
	font-family: Times New Roman, '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Noto Serif JP', 'Hiragino Mincho ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	cursor: pointer;
    padding: 10px 4px;
	color: var(--color-white1);
	background: var(--bg-gradation1);
	border-radius: 10px;
	line-height: 2.0rem;
	transition: 0.3s;
}
.btn_form .btn_send:hover {
	border: 1px solid var(--color-pink1);
	color: var(--color-pink1);
	background: var(--color-white1);
}
/* フォームボタン - リセット・もどるボタン */
.btn_form .btn_reset,
.btn_form .btn_back {
	display: inline-block;
	border: 1px solid var(--color-gray1);
	width: 100%;
	max-width: 160px;
	font-size: 16px;
	text-align: center;
	font-family: Times New Roman, '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Noto Serif JP', 'Hiragino Mincho ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	cursor: pointer;
    padding: 10px 4px;
	border-radius: 0;
	background: var(--color-gray1);
	border-radius: 10px;
	color: var(--color-white1);
	line-height: 2.0rem;
	transition: 0.3s;
}
.btn_form .btn_reset:hover,
.btn_form .btn_back:hover {
	color: var(--color-gray1);
	background: var(--color-white1);
}

/* 送信完了画面 */
.finish_txt {
	font-size: 14px;
}

/******************************
アニメーション
******************************/
/* フォーカスイン*/
.focusin{
	opacity: 0;
	transform : translate(0, 100px);
	transition : all 1.5s;
}
.focusin.on {
	opacity : 1;
	transform : translate(0, 0);
}

/******************************
form共通設定
******************************/
/*formのデフォルトスタイルの削除・リセット*/
form input[type="text"],
form input[type="email"],
form button,
form textarea,
form select {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
}
/*フォームのスタイルを設定*/
form input[type="text"],
form input[type="email"],
form textarea,
form select {
	border: 1px solid #c7c7c7;
	-webkit-transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
					transition: all .3s;/*フォーカスしたときにふわっと表示させる用*/
	padding: 8px;
	vertical-align: baseline;
}
form textarea {
	resize: vertical;
}
form .form_txt {
	margin-top: 5px;
}
form input[type="text"].form_short {
	max-width: 70px;
}
form input[type="text"].form_middle {
	max-width: 120px;
}
form input[type="radio"],
form input[type="checkbox"] {
	margin: 0 4px;
	vertical-align: baseline;
	accent-color: #ff007e;
}
form .form_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
form input::placeholder,
form textarea::placeholder {
	color: #c7c7c7;
}
form textarea.message {
    height: 200px;
}
@media screen and (max-width: 768px) {
	form input[type="text"],
	form input[type="email"],
	form textarea {
		font-size: 16px;
	}
	form .form_list {
		grid-template-columns: 1fr;
	}
}
.icon_required {
	display: inline-block;
	font-size: 0.75em;
	padding: 2px 4px;
	line-height: 1;
	color: #fff;
	background: #ff007e;
}

/******************************
セラピスト共通設定
******************************/
section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#section_ranking_01,#section_ranking_02) .cast_box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px min(2%, 30px);
}
.cast_box li{
	position: relative;
	padding: 8px;
	background: var(--color-white1);
	border: 1px solid var(--color-pink1);
	border-radius: 8px;
}
.cast_box li .img_box {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	position: relative;
}
.cast_box li .img_box .img_cast{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.icon_new{
	width: 40px;
	position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
#contents_profile .icon_new{
	width: 60px;
}
@media screen and (min-width: 767px) {
	.cast_box li{
		padding: 10px;
	}
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01) .cast_box {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.icon_new{
		width: 60px;
	}
}
/* アイコン */
.cast_box li .icon_box,
#contents_profile .profile_box_left .img_box .icon_box {
	position: absolute;
	bottom: 8px;
	right: 0;
	display: flex;
    justify-content: center;
	margin-right: 8px;
}
.cast_box li .icon_box img,
#contents_profile .profile_box_left .img_box .icon_box img{
    width: 32px;
    margin-left: 6px;
}
.cast_box li .txt_box{
	margin-top: 10px;
	line-height: normal;
	color: var(--color_brown1);
}
.cast_box li .txt_box .name{
	font-size: 15px;
}
.cast_box li .txt_box .size{
	font-size: 15px;
}
.cast_box li .txt_box .time{
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
	letter-spacing: 0;
	padding: 6px 4px;
	line-height: 14px;
	color: var(--color-white1);
	background: var(--color-blue1);
	display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 10px;
	border-radius: 20px;
}
.cast_box li .txt_box .time_free_txt{
	padding: 0px 4px 4px;
	line-height: 14px;
	background: var(--gradation_bordeaux);
}
.cast_box li .frame {
    position: absolute;
    top: -28px;
    left: 0;
    right: 0;
    pointer-events: none;
}
.cast_box li .frame img {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 768px){
	.cast_box li .txt_box .icon{
	    gap: 8px;
	}
	.cast_box li .txt_box .icon img {
	    width: calc((100% / 2) - 4px);
	}
}
@media screen and (max-width: 930px){
	.cast_box li .frame {
		top: -22px;
	}
}
@media screen and (max-width: 767px){
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#section_ranking_01,#section_ranking_02) .cast_box {
		gap: 50px min(2%, 59px);
	}
	.cast_box li .icon_box,
	#contents_profile .profile_box_left .img_box .icon_box {
		bottom: 30px;
		right: 8px;
	}
    .cast_box li .frame {
        top: -47px;
    }
}
@media screen and (max-width: 680px){
    .cast_box li .frame {
        top: -41px;
    }
}
@media screen and (max-width: 580px){
    .cast_box li .frame {
        top: -35px;
    }
	.cast_box li .icon_box,
	#contents_profile .profile_box_left .img_box .icon_box {
		bottom: 18px;
		right: 4px;
	}
}
@media screen and (max-width: 520px){
	.cast_box li {
		padding: 8px;
	}
	.cast_box li .txt_box .size{
		font-size: 12px;
	}
    .cast_box li .frame {
        top: -28px;
    }
}
@media screen and (max-width: 420px){
	section:not(#section_covergirl,#section_newface,#section_top_ranking_01,#section_ranking_01,#section_ranking_02) .cast_box {
		gap: 30px min(2%, 59px);
	}
	.cast_box li .icon_box,
	#contents_profile .profile_box_left .img_box .icon_box {
		bottom: 8px;
		right: 0;
	}
    .cast_box li .frame {
        top: -22px;
    }
}

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

headerヘッダー設定

****************************************/
header {
	width: 100%;
	height: 60px;
	background: var(--color-white1);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
    padding: 0 20px 0 16px;
	filter: drop-shadow(0px 1px 1px rgba(230,107,137,1));
}
header h1.logo img{
	max-width: 100px;
	margin-top: 24px;
}
header h1.logo:before {
    content: "";
    position: absolute;
    background: var(--color-white1);
    width: 150px;
    height: 150px;
    border-radius: 100%;
    top: 38%;
    left: 65px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
@media screen and (max-width: 800px) {
	header {
		padding: 0 10px;
	}
	header h1.logo:before {
		width: 120px;
		height: 120px;
		top: 40%;
		left: 48px;
	}
	header h1.logo img {
		max-width: 78px;
	}
}

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

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

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

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

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

#sp_nav .sp_nav_box {
	width: 100%;
}

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

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

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

footerフッター設定

****************************************/
footer {
	background: url(../images/bg_footer.jpg) 50% 100% no-repeat;
    background-size: cover;
	font-size: 12px;
}
/* パンくずリスト */
.breadcrumbs {
	width: 100%;
	background: var(--bg-gradation1);
	color: var(--color-white1);
	padding: 4px 0;
}
.breadcrumbs ol li {
	display: inline-block;
	list-style-type: none;
	font-size: 12px;
	padding-right: 5px;
	color: var(--color-gold1);
	letter-spacing: 2px;
}
.breadcrumbs ol li:before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
  	font-weight: 900;
	display: inline;
	margin: 0 8px 0;
}
.breadcrumbs ol li:first-child:before {
	margin: 0;
	content: "\f015";
}
.breadcrumbs ol li a {
	color: var(--color-gold1);
}
/* テキストメニュー */
footer .nav{
	margin: 0 auto;
	padding: 20px 0 10px;
	line-height: 20px;
}
footer .nav li {
	display: inline-block;
	line-height: 30px;
}
footer .nav li a {
	color: var(--color-black1);
	letter-spacing: 0.06em;
}
footer .nav li a:hover{
	opacity: 0.5;
}
footer .nav li:after {
	content: "　|　";
	display: inline;
	margin: 0;
	color: var(--color-black1);
}
footer .nav li:last-child:after {
	display: none;
}
/* ロゴ */
footer .logo {
	margin: 30px;
}
footer .logo img {
	width: 200px;
}

/* 電話番号&営業時間 */
footer .ft_info_box {
	margin: 0 auto;
	display: flex;
	justify-content: center;
    flex-direction: column;
	padding-bottom: 20px;
}
footer .ft_info_box li {
	font-size: 16px;
	letter-spacing: 1px;
    line-height: 1.8rem;
	color: var(--color-black1);
}
footer .ft_info_box li span {
	font-size: 22px;
}
footer .ft_info_box li span.fs_14 {
	font-size: 14px;
}
footer .ft_info_box a {
	color: var(--color-black1);
}
footer .ft_info_box a:hover {
	opacity: 0.5;
}
/* コピーライト等 */
footer .footer_link {
	padding: 5px 0;
	text-align: center;
	font-size: 12px;
	font-family: sans-serif;
	color: var(--color-black1);
}
footer .footer_link a {
	color: var(--color-black1);
	text-decoration: underline;
	text-decoration-color: #44455e;
}

@media screen and (max-width: 768px){
	footer {
        padding: 0 0 80px;
    }
}
/* アイコン */
footer .icon_box{
    display: flex;
    justify-content: center;
	margin: 0 auto 20px;
}
footer .icon_box img {
    width: 30px;
	margin: 0 4px;
}
/* フリースペース */
.free_link_box img {
    margin-bottom: 10px;
	height: 100% !important;
    max-width: 100% !important;
}
/* リンクバナー */
.list_link_box {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: min(100%, 840px);
    margin: 20px auto 20px;
}
.list_link_box img {
    width: 100%;
	height: auto;
}

/*fotter 追尾*/
#bottom_nav{
	position: fixed;
	right: 0;
	left: 0;
	bottom: 10px;
	width: 100%;
	z-index: 99;
}
#bottom_nav ul {
	display: flex;
    flex-wrap: nowrap;
	justify-content: center;
	align-content: center;
	width: 96%;
	margin: 0 auto;
}
#bottom_nav li {
	width: calc(100% / 3);
	margin-right: 4px;
	border-radius: 40px;
}
#bottom_nav li:last-child {
	margin-right: 0;
}
#bottom_nav li a {
	width: 100%;
	height: 100%;
}
#bottom_nav li .b_n_outer p {
	color: var(--color-white1);
	font-size: 14px;
	letter-spacing: 1px;
    line-height: 0.8rem;
    text-align: center;
    padding: 16px 0 14px;
	border-radius: 10px;
}
#bottom_nav li.b_n_line .b_n_outer p {
	background: var(--bg-gradation2);
}
#bottom_nav li.b_n_tel .b_n_outer p {
	background: var(--bg-gradation2);
}
#bottom_nav li.b_n_reserve .b_n_outer p {
	background: var(--bg-gradation2);
}
#bottom_nav i {
	font-size: 12px;
	color: var(--color-gold1);
	margin-right: 4px;
}

@media screen and (min-width: 769px) {
	#bottom_nav {
		display: none;
	}
}

/****************************************
mainvisualメインビジュアル
****************************************/
#mainvisual {
	position: relative;
	overflow: hidden;
    padding-top: 60px;
}
#mainvisual picture > img {
	width: 100%;
	height: 100%;
	display: block;
}
#mainvisual .info_wrap {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 1;
	width: 25%;
	min-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-inline: auto;
}
#mainvisual .logo {
    margin: 0 auto;
    width: 100%;
    z-index: 10;
}
#mainvisual .logo img{
    width: 90%;
    height: auto;
    margin: 0 auto;
}

/* フェードテキスト */
#mainvisual .mainvisual_txt1 {
	position: absolute;
	top: 14vh;
	left: 240px;
	writing-mode: vertical-rl;
	font-size: 24px;
	letter-spacing: 0.05em;
	color: var(--color-black1);
	filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 1));
	line-height: 40px;
	font-feature-settings: initial;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
#mainvisual .mainvisual_txt1 p span {
	font-size: 28px;
}
#mainvisual .mainvisual_txt1 p:first-child {
	text-align: start;
}
#mainvisual .mainvisual_txt1 p:last-child {
	padding-top: 6.5vh;
}
#mainvisual .swiper {
	position: absolute;
	inset: 0;
	z-index: 2;
}
#mainvisual .swiper-wrapper,
#mainvisual .swiper-slide {
	height: 100%;
}
#mainvisual .swiper-slide {
	width: 100%;
	opacity: 0;
	transition: opacity 1s;
}
#mainvisual .swiper-slide-active {
	opacity: 1;
}

@media screen and (max-width: 1280px){
	#mainvisual .mainvisual_txt1 {
		top: 10vh;
		left: 120px;
	}
}
@media screen and (max-width: 1000px){
	#mainvisual .info_wrap {
		top: 46%;
	}
	#mainvisual .logo img{
		width: 100%;
	}
}
@media screen and (max-width: 768px){
	#mainvisual {
		padding-top: 60px;
	}
	#mainvisual .info_wrap {
		top: 50%;
	}
	#mainvisual .logo img{
		width: 70%;
	}
	#mainvisual .mainvisual_txt1 {
		font-size: 20px;
		left: 80px;
		line-height: 30px;
	}
	#mainvisual .mainvisual_txt1 p span {
		font-size: 24px;
	}
	#mainvisual .mainvisual_txt1 p:last-child {
		padding-top: 5.3vh;
	}
}
@media screen and (max-width: 540px){
	#mainvisual {
		padding-top: 60px;
	}
	#mainvisual .info_wrap {
		top: 55%;
	}
	#mainvisual .logo img{
		width: 60%;
	}
	#mainvisual .mainvisual_txt1 {
		font-size: 18px;
		top: 12vh;
		left: 20px;
		line-height: 28px;
	}
	#mainvisual .mainvisual_txt1 p span {
		font-size: 22px;
	}
	#mainvisual .mainvisual_txt1 p:last-child {
		padding-top: 4.8vh;
	}
}

/* ↓flexslider.cssを上書き */
#mainvisual .flex-control-nav {
	bottom: 0;
}
/* flexslider.cssを上書き */
.flexslider{
	margin-bottom: 0;
	background: unset;
	border: none;
}
.flex-control-nav{
    display: none;
}
/* ↑flexslider.cssを上書き */

/*---------------------------
ヘッドライン
---------------------------*/
#section_headline {
    width: 100%;
	background: var(--bg-gradation1);
	padding: 6px 0;
}
#section_headline .headline_wrap {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: min(100%, 800px);
    margin: 0 auto;
    text-align: center;
	align-items: center;
    line-height: 20px;
}
#section_headline .headline_title {
	color: var(--color-white1);
	font-size: 12px;
	transform: rotate(-90deg);
	padding-bottom: 4px;
    border-bottom: 1px solid var(--color-white1);
}
#section_headline .headline_wrap ul li {
	color: var(--color-white1);
}

/******************************
トップページ
******************************/
#section_message,
#section_concept1,
#section_event,
#section_schedule_today,
#section_topics{
	padding: 60px 20px;
}
#section_concept1 {
	padding: 0 20px 60px;
}
#section_concept3,
#section_concept5{
	padding: 0 20px 60px;
}
#section_bnr_sns {
	padding: 60px 20px 0;
}
#section_bnr_top {
	padding: 0 20px 120px;
}

/* タイトル */
.subtitle,
.subtitle_pickup,
.subtitle_today {
    position: relative;
    text-align: center;
    padding-top: 44px;
    margin-bottom: 20px;
}
.subtitle .txt_grad,
.subtitle_today .txt_grad {
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
    display: inline-block;
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    background-image: var(--bg-gradation1);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.subtitle_pickup .txt_grad {
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-pink2);
}
.subtitle .sub,
.subtitle_today .sub {
    display: block;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: var(--color-pink1);
}
.subtitle_pickup .sub {
    display: block;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: var(--color-pink2);
}
.subtitle::before,
.subtitle_today::before {
    display: block;
    content: "";
    width: 60px;
    height: 30px;
    background: url(../images/subtitle_deco.svg) center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 480px) {
	.subtitle,
	.subtitle_pickup {
		padding-top: 30px;
		margin-bottom: 20px;
	}
	.subtitle_today {
		padding-top: 30px;
	    margin-bottom: 20px;
	}
	.subtitle .sub,
	.subtitle_pickup .sub {
        line-height: 1.2;
		font-size: 14px;
	}
	.subtitle_today .sub {
        line-height: 1.8;
		font-size: 14px;
	}
	.subtitle::before,
	.subtitle_today::before {
		width: 40px;
		height: 20px;
	}
}

/*---------------------------
ピックアップ
---------------------------*/
#section_covergirl {
	position: relative;
	padding: 80px 20px 60px;
	background: url(../images/bg_pickup1.jpg) center / cover no-repeat;
	overflow: hidden;
}
#section_covergirl::before {
	content: "";
	position: absolute;
	top: 60px;
	right: 0;
    width: 64%;
    height: 70%;
	background: url(../images/bg_pickup2.jpg) center / cover no-repeat;
    border-radius: 20px 0 0 20px;
	z-index: 0;
}
#section_covergirl .inner {
	position: relative;
	z-index: 1;
}
#section_covergirl .swiper {
    padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
	#section_covergirl::before {
		width: 80%;
	}
}

/*---------------------------
メッセージ
---------------------------*/
.bg_message {
	position: relative;
    width: 100%;
    background: url(../images/bg_message.jpg) 50% 100% no-repeat;
    background-size: cover;
}

#section_message h2 {
	display: none;
}
#section_message .concept_txt_box {
	width: min(100%, 680px);
	margin: auto;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid var(--color-pink1);
}
#section_message .txt_box_inner {
	position: relative;
	padding: 40px 10px;
	font-size: clamp(14px, 2vw, 14px);
    line-height: 2.0;
}
#section_message .txt_box_inner:before,
#section_message .txt_box_inner:after {
	content: '';
	position: absolute;
    width: 196px;
    height: 200px;
	background: url(../images/message_deco.svg) center / contain no-repeat;
	left: 50%;
	transform: translateX(-50%);
}
#section_message .txt_box_inner:before {
	top: -20px;
}
#section_message .txt_box_inner:after {
	bottom: -20px;
	transform: translateX(-50%) rotate(180deg);
}
#section_message .txt_box_inner p {
    font-size: clamp(14px, 1.2vw, 16px);
}
#section_message .concept_txt_box span {
	color: var(--color-pink1);
    font-size: clamp(16px, 1.2vw, 18px);
}
#section_message .concept_txt_box span.message {
	color: var(--color-pink2);
    font-size: clamp(18px, 1.2vw, 20px);
}

/*---------------------------
区切り画像
---------------------------*/
#section_divider{
	padding: 0 0 100px;
    display: flex;
    justify-content: space-between;
}
#section_divider .divider_visual01 {
    width: 60%;
    margin: 0 -10% 0 0;
}
#section_divider .divider_visual02 {
    width: 55%;
    padding-top: clamp(70px, 20vw, 240px);
	z-index: 1;
}
#section_divider .divider_img01{
	display: block;
	width: 100%;
    height: auto;
	border-radius: 0 20px 20px 0;
	margin-bottom: clamp(60px, 16vw, 160px);
}
#section_divider .divider_img02{
	display: block;
	width: 100%;
    height: auto;
	border-radius: 20px 0 0 20px;
}

/*---------------------------
コンセプト1
---------------------------*/
#section_concept1 {
	position: relative;
	width: 100%;
	background: #fff3f3;
	background-size: cover;
}
#section_concept1::before {
	position: absolute;
	content: '';
	left: 50%;
	z-index: 0;
    width: 140px;
    height: 120px;
	border-radius: 50%;
	background: inherit;
	transform: translateX(-50%) translateY(30%);
	top: -80px;
}
#section_concept1 .concept_txt_box {
	font-size: clamp(12px, 2vw, 14px);
    line-height: 2.0;
}
#section_concept1 .concept_txt_box .title_01 {
	position: relative;
	color: var(--color-pink1);
	line-height: 1.6;
	letter-spacing: 0.08em;
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: clamp(20px, 4vw, 20px);
	z-index: 1;
}
#section_concept1 .concept_txt_box .title_01 span {
	color: var(--color-pink2);
    font-size: 22px;
}
#section_concept1 .title_01 .concept_deco {
	display: block;
	margin: 0 auto 40px;
	width: 120px;
	height: auto;
}
#section_concept1 .concept_txt_box p {
    font-size: clamp(14px, 1.2vw, 16px);
}
#section_concept1 .concept_txt_box span {
	color: var(--color-pink1);
}
#section_concept1 .concept_txt_box span.concept1 {
	color: var(--color-pink2);
	font-size: 18px;
}

/*---------------------------
コンセプト2
---------------------------*/
.bg_concept2 {
	position: relative;
    width: 100%;
    background: url(../images/bg_concept2.jpg) 50% 100% no-repeat;
    background-size: cover;
}

#section_concept2 {
	padding: 60px 60px 60px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	gap: 80px;
}
#section_concept2 .txt_box {
	width: 50%;
	order: 2;
	text-align: left;
}
#section_concept2 .txt_box p {
    font-size: clamp(14px, 1.2vw, 16px);
}
#section_concept2 .txt_box span {
	color: var(--color-pink1);
}
#section_concept2 .txt_box h3 {
	color: var(--color-pink1);
	line-height: 1.6;
	letter-spacing: 0.08em;
    font-size: clamp(18px, 3vw, 20px);
    margin-bottom: clamp(20px, 4vw, 20px);
}
#section_concept2 .txt_box h3 span {
	color: var(--color-pink2);
    font-size: 22px;
}
#section_concept2 .img_box {
	width: 50%;
	height: 400px;
	position: relative;
	overflow: hidden;
	order: 1;
}
#section_concept2 .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px){
	#section_concept2 {
		flex-wrap: wrap;
		padding: 60px 0;
		gap: 0px;
	}
	#section_concept2 .txt_box {
		width: 90%;
		text-align: center;
		margin: 0 auto;
	}
	#section_concept2 .txt_box h3 {
		margin-top: 40px;
	}
	#section_concept2 .img_box {
        width: 90%;
        height: auto;
        margin-right: auto;
	}
}

/*---------------------------
コンセプト3
---------------------------*/
#section_concept3 .mikubari_img {
    width: min(360px, 100%);
    height: auto;
	margin-bottom: 40px;
}
#section_concept3 .mikubari_list {
	display: grid;
    gap: 40px min(4%, 40px);
	text-align: left;
}
#section_concept3 .mikubari_list_box h3 {
	font-size: clamp(16px, 4vw, 18px);
	line-height: 1;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
	color: var(--color-pink1);
	position: relative;
	padding-left: 36px;
}
#section_concept3 .mikubari_list_box h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
    width: 32px;
    height: 32px;
	background: url(../images/concept_tiara.svg) center / contain no-repeat;
}
#section_concept3 .mikubari_list_box h3 span {
	font-size: clamp(18px, 4vw, 24px);
}
#section_concept3 .mikubari_list_box p {
    font-size: clamp(14px, 1.2vw, 16px);
}

@media screen and (max-width: 768px){
	#section_concept3 .mikubari_img {
		width: min(240px, 100%);
	}
}

/*---------------------------
コンセプト4
---------------------------*/
.bg_concept3 {
	position: relative;
	width: 100%;
	background: url(../images/bg_concept3.jpg) 50% 50% no-repeat;
	background-size: cover;
}

#section_concept4 {
    padding: 60px 0 60px 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	gap: 80px;
}
#section_concept4 .txt_box {
	width: 50%;
	order: 1;
	text-align: left;
}
#section_concept4 .txt_box p {
    font-size: clamp(14px, 1.2vw, 16px);
}
#section_concept4 .txt_box span {
	color: var(--color-pink1);
}
#section_concept4 .txt_box h3 {
	color: var(--color-pink1);
	line-height: 1.6;
	letter-spacing: 0.08em;
    font-size: clamp(18px, 3vw, 20px);
    margin-bottom: clamp(20px, 4vw, 20px);
}
#section_concept4 .txt_box h3 span {
	color: var(--color-pink2);
    font-size: 22px;
}
#section_concept4 .img_box {
	width: 50%;
    height: 400px;
	position: relative;
	overflow: hidden;
	order: 2;
}
#section_concept4 .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom center;
	border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px){
	#section_concept4 {
		flex-wrap: wrap;
		padding: 60px 0 40px;
		gap: 0px;
	}
	#section_concept4 .txt_box {
		width: 90%;
		order: 2;
		text-align: center;
		margin: 0 auto;
	}
	#section_concept4 .txt_box h3 {
		margin-top: 40px;
	}
	#section_concept4 .img_box {
        width: 90%;
        height: auto;
        margin-left: auto;
		order: 1;
	}
}

/*---------------------------
コンセプト5
---------------------------*/
#section_concept5 {
	line-height: 1.8;
}
#section_concept5 h3 {
    background: url(../images/commitment_line.svg) center bottom / 200px 20px no-repeat;
    font-size: clamp(16px, 3vw, 18px);
    padding: 0 0 20px;
    margin-bottom: 10px;
	color: var(--color-pink1);
}
#section_concept5 h3 span {
	color: var(--color-pink2);
	font-size: clamp(18px, 3vw, 20px);
}
#section_concept5 ul {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	max-width: 600px;
	margin: 30px auto;
}
#section_concept5 ul li {
	position: relative;
	background: var(--color-white1);
	border: solid 1px var(--color-pink2);
	padding: 15px;
	border-radius: 12px;
}
#section_concept5 ul li::before {
	content: "";
	position: absolute;
	top: -20px;
	right: -12px;
	width: 60px;
	height: 60px;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 2;
}
#section_concept5 ul li img {
	margin-bottom: 10px;
}
/* 1枚目 */
#section_concept5 ul li:nth-child(1)::before {
	background-image: url(../images/img_number_01.png);
}
/* 2枚目 */
#section_concept5 ul li:nth-child(2)::before {
	background-image: url(../images/img_number_02.png);
}
/* 3枚目 */
#section_concept5 ul li:nth-child(3)::before {
	background-image: url(../images/img_number_03.png);
}

@media screen and (min-width: 1010px){
	#section_concept5 ul {
		grid-template-columns: repeat(3, 1fr);
		max-width: 100%;
	}
}
@media screen and (max-width: 768px){
	#section_concept5 ul {
		gap: 30px;
		margin: 0 auto;
	}
}

/*---------------------------
イベント
---------------------------*/
#section_event {
    position: relative;
    width: 100%;
    background: url(../images/bg_event.jpg) 50% 100% no-repeat;
    background-size: cover;
}

/* 矢印非表示 */
.swiper-button-next.next,.swiper-button-prev.prev{
	display: none;
}
/* イベント */
≈ img{
	width: 100%;
	max-width: 690px;
}
#section_event .swiper-wrapper .swiper-slide{
	padding:0  10px;
}
/* swiper ページネーション上書き */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 4px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 6px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	background: var(--color-gray1);
	opacity: 1;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-pink2);
	opacity: 1;
}
/*swiper その他上書き*/
#section_event .swiper-wrapper{
	margin-bottom: 40px;
}
.profile_box_schedule .swiper-wrapper{
	margin-bottom: 0;
}
@media screen and (min-width: 767px) {
	#section_top_ranking_01 .swiper-wrapper{
		margin-bottom: 0;
	}
}

/*---------------------------
本日の出勤情報
---------------------------*/
#section_schedule_today{
    position: relative;
    width: 100%;
    background: url(../images/bg_therapist.jpg) 50% 50% no-repeat;
    background-size: cover;
}
#contents_cast .cast_box .cast_box_list:nth-of-type(4n),
#contents_schedule .cast_box .cast_box_list:nth-of-type(4n) {
	margin-right: 0;
}

/*---------------------------
SNSバナー
---------------------------*/
.bg_topics {
	position: relative;
    width: 100%;
    background: url(../images/bg_topics.jpg) 50% 100% no-repeat;
    background-size: cover;
}

#section_bnr_sns ul {
    margin: 0 auto;
}
#section_bnr_sns ul li {
    max-width: 380px;
    width: 100%;
    display: inline-block;
    margin: 0 5px 10px;
    text-align: center;
    vertical-align: middle;
}
#section_bnr_sns a img {
    width: auto;
    max-width: 100%;
    height: auto;
}

/*---------------------------
新着情報
---------------------------*/
#section_topics #info_box {
	background: var(--color-white1);
	border: solid 1px var(--color-pink1);
    outline: solid 8px var(--color-white1);
	text-align: left;
	font-size: 14px;
	margin: auto;
    padding: 40px 30px;
	max-height: 600px;
	border-radius: 10px;
	overflow-y: scroll;
	position: relative;
	z-index: 1;
}
#section_topics #info_box img {
	width: auto !important;
	max-width: 100%;
	height: auto !important;
}
#section_topics #info_box article{
    text-align: left;
    font-size: 14px;
    margin: auto;
    z-index: 1;
    position: relative;
}
#section_topics #info_box article h3 {
	text-align: left;
    font-size: clamp(16px, 4vw, 20px);
	border-bottom: 1px solid var(--color-pink1);
	padding-bottom: 10px;
	margin-bottom: 10px;
	line-height: 24px;
	letter-spacing: 0.06em;
}
#section_topics #info_box article time {
	color: var(--color-red1);
    font-size: clamp(14px, 4vw, 16px);
}
#section_topics #info_box article p {
    font-size: 14px;
}
#section_topics #info_box article .page {
    text-align: center;
    padding-bottom: 10px;
}
#section_topics #info_box article p img{
	max-width: 100%;
}
#section_topics #info_box strong {
	font-weight: bold;
}
#section_topics .inner .page {
	text-align: center;
	padding-top: 30px;
}

@media screen and (max-width: 768px) {
	#section_topics{
		background-attachment: scroll;
	}
	#section_topics #info_box {
		padding: 30px 20px;
	}
}

/*---------------------------
誘導バナー
---------------------------*/
#section_bnr_top ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px min(4%, 30px);
}
#section_bnr_top ul li img {
    display: block;
}
#section_bnr_top .bnr_credit {
	max-width: 500px;
	margin-top: 30px;
}

/* 矢印 */
.accordion-title {
	position: relative;
}
.accordion-title::after {
	border-right: solid 2px #fff;
	border-top: solid 2px #fff;
	content: "";
	display: block;
	height: 8px;
	position: absolute;
	right: 25px;
	top: 38%;
	transform: rotate(135deg);
	transition: transform .3s ease-in-out, top .3s ease-in-out;
	width: 8px;
}
.accordion-title.open::after {
	top: 45%;
	transform: rotate(-45deg);
}

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

下層ページ

****************************************/
/*下層ページ共通設定*/
#contents_system,
#contents_cast,
#contents_schedule,
#contents_profile,
#contents_access,
#contents_entry,
#contents_impressions,
#contents_contact,
#contents_enquete,
#contents_reserve,
#contents_err{
	padding: 60px 20px;
}
#contents_recruit {
	padding: 60px 20px 0;
}
.subvisual{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 32vh;
    padding: 100px 0 40px;
	background: url(../images/subvisual.jpg) center center / cover no-repeat;
	color: var(--color-white1);
}
.subvisual h2{
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
    font-size: clamp(32px, 1.2vw, 40px);
	text-transform: uppercase;
	letter-spacing: 0.2em;
    line-height: 0.8;
	text-shadow: 0 0 16px #e66b89;
}
.subvisual h2 span {
    display: inline-block;
	text-transform: none;
	font-size: 14px;
    text-shadow:
        0 0 8px #e66b89,
        0 0 16px #e66b89,
        0 0 24px #e66b89;
}

.subtitle_sub {
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
    display: block;
    position: relative;
    font-size: clamp(24px, 4vw, 26px);
    text-transform: uppercase;
    line-height: 1;
    margin: 30px 0;
    line-height: 1.4rem;
    letter-spacing: 0.15em;
	color: var(--color-pink2);
}
.subtitle_sub::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -52%);
    background: url(../images/deco_circle.svg) center / 90px 90px no-repeat;
    opacity: 0.6;
    width: 100px;
    height: 100px;
    z-index: -1;
}
.subtitle_sub span {
    font-size: 12px;
}
.subtitle_sub2 {
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
    display: block;
    position: relative;
    font-size: clamp(24px, 4vw, 26px);
    text-transform: uppercase;
    line-height: 1;
    margin: 30px 0;
    line-height: 1.4rem;
    letter-spacing: 0.15em;
	color: var(--color-pink2);
}
.subtitle_sub2 span {
    font-size: 12px;
}

/* 中見出し */
.subtitle_cat01 {
	font-family: Times New Roman, serif;
    font-size: 24px;
    letter-spacing: 0.12em;
	text-align: center;
	margin-bottom: 20px;
}
.subtitle_pro01 {
	color: var(--color-red1);
	font-size: 18px;
	line-height: 1.4rem;
	padding-bottom: 10px;
	text-align: center;
	border-bottom: 1px solid var(--color-red1);
}

/* テキストフレーム01 */
.contents_box_01 {
    background: var(--color-white1);
    border: solid 1px var(--color-pink2);
    text-align: center;
    font-size: 14px;
    margin: 0 auto 40px;
    padding: 40px 30px;
	border-radius: 20px;
}
@media screen and (max-width: 768px) {
	.contents_box_01 {
		padding: 30px 16px;
	}
}

.form_box ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
	color: var(--color-black1);
}
.form_box ul li {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}
.form_box ul li.form_write {
    font-size: 16px;
}
.form_box ul li.form_category {
    border-left: 6px solid var(--color-pink1);
    margin-bottom: 4px;
    padding-left: 6px;
}
.form_box ul li.form_category span.icon_required {
	display: inline-block;
	background: #e50055;
	border-radius: 20px;
	vertical-align: text-bottom;
    padding: 4px 8px;
	margin-left: 8px;
	font-size: 10px;
	color: var(--color-white1);
}
input[type="text"], input[type="email"] {
    width: 100%;
    border: 1px solid var(--color-beige);
    line-height: 2;
    padding: 0 10px;
    height: 40px;
    background: #fff;
}
.form_box button, .form_box textarea {
    margin: 8px 0 0;
}
.form_box input,
.form_box select {
    margin: 0;
}
.form_box label {
    padding: 4px 8px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.form_box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #A6A5C3;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
.form_box select {
    width: 100%;
    height: 40px;
    vertical-align: middle;
    padding: 0 10px;
    border: 1px solid #A6A5C3;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.frame_wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-width: 640px;
	margin: 0 auto 40px;
}
.frame_wrap iframe {
	width: 100%;
	height: 100%;
}

/****************************************
女の子一覧ページ & スケジュールページ
****************************************/
.schedule_nav {
    display: grid;
    gap: 10px;
    margin: 40px auto;
}
.schedule_nav li:first-child {
    grid-column: 1 / 3;
}
.schedule_nav li a {
	font-size: 13px;
	padding: 10px 2px;
    display: block;
	color: var(--color-white1);
    background: var(--color-pink3);
	border-radius: 10px;
    -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-pink2);
	color: var(--color-white1);
}
.schedule_nav li.active a:hover{
	opacity: 1;
}
.schedule_week_box .swiper-wrapper{
	margin-bottom: 0;
}
@media screen and (min-width: 767px) {
	.schedule_nav {
        grid-template-columns: repeat(7, 1fr);
    }
    .schedule_nav li:first-child {
        grid-column: 1 / 1;
    }
}
/* ナビゲーションボタン 上書き*/
.sch_nav_btn.swiper-button-prev, 
.sch_nav_btn.swiper-button-next {
	margin-top: 0;
	width: auto;
	height: 32px;
	color: var(--color-white1);
	background: var(--color-blue1);
	border-radius: 10px;
	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 20px 0 20px;
}
.sch_nav_btn.swiper-button-next {
	top: 0;
	right: 0;
	padding: 0 20px 0 20px;
}
.sch_nav_btn.swiper-button-prev.swiper-button-disabled,
.sch_nav_btn.swiper-button-next.swiper-button-disabled {
 opacity: 0;
}

/****************************************
週間スケジュールページ
****************************************/
#contents_schedule .schedule_box{
	text-align: left;
}
#contents_schedule .schedule_box li{
	padding: 10px;
	background: #e0e0e0;
	grid-template-columns: 10% auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: -ms-grid;
	display: grid;
	margin-bottom: 20px;
}
#contents_schedule .schedule_box .name{
	width: 100%;
	font-size: 15px;
}
#contents_schedule .schedule_box table{
	width: 100%;
	height: 80px;
	font-size: 10px;
	text-align: center;
}
#contents_schedule .schedule_box .img_box{
	width: 100%;
    padding-right: 20px;
}
#contents_schedule .schedule_box .img_box img{
	max-width: 100%;
}
@media screen and (max-width: 768px) {
	#contents_schedule .schedule_box li{
		grid-template-columns: auto;
	}
	#contents_schedule .schedule_box .img_box{
        width: 50%;
        padding-right: 0px;
        margin: 0 auto 10px;
	}
}

/****************************************
プロフィールページ
****************************************/
#contents_profile .profile_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}
#contents_profile .profile_box_right,
#contents_profile .profile_box_left {
	width: 100%;
	max-width: 450px;
	display: inline-block;
	vertical-align: top;
	word-break: break-word;
}
#contents_profile .profile_box_left .img_box .frame {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
}
#contents_profile .profile_box_left .img_box .frame img {
    width: 100%;
    height: auto;
}
#contents_profile .box_white {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-white1);
	border-radius: 20px;
	border: 1px solid var(--color-pink2);
}
#contents_profile .subtitle_sub {
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: normal;
    display: block;
    position: relative;
    font-size: clamp(20px, 4vw, 24px);
    text-transform: uppercase;
    line-height: 1;
    margin: 30px 0;
    line-height: 1.8rem;
    letter-spacing: 0.06em;
    color: var(--color-pink2);
}
#contents_profile .subtitle_sub::before  {
	content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -52%);
    background: url(../images/deco_circle.svg) center / 80px 80px no-repeat;
    opacity: 0.6;
    width: 100px;
    height: 100px;
    z-index: -1;
}
#contents_profile .profile_box_right .name {
	font-size: 20px;
    line-height: normal;
}
#contents_profile .profile_box_right .size {
	font-size: 16px;
}
#contents_profile .profile_box_right .icon_box {
    line-height: 3.6;
}
#contents_profile .profile_box_right .icon_box img {
	width: 40px;
}
#contents_profile .profile_box_left .img_box{
	width: 300px;
	height: 450px;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
    padding: 10px;
}
#contents_profile .profile_box_left .cast_thumb {
    display: flex;
    max-width: 200px;
    width: 60px;
    height: 90px;
    object-fit: cover;
    justify-content: center;
    margin: 0 auto;
}
#contents_profile .profile_box_left .cast_thumb a {
	margin-right: 4px;
}
/*スケジュール*/
.profile_box_schedule .profile_sch_box {
	width: 100%;
	display: block;
	box-sizing: border-box;
	margin-top: 40px;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	display: flex;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable:not(:last-child) {
	padding-bottom: 1px;
}
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_date,
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_check{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_date{
	flex-basis: 50%;
	color: var(--color-white1);
	background: var(--color-pink3);
}
.profile_box_schedule .profile_sch_box div.profile_sch_variable .profile_sch_check{
	background: var(--color-white1);
	padding: 10px 10px 14px;
}
.profile_box_schedule .profile_sch_box div.profile_sch_variable:first-child .profile_sch_date{
	border-radius: 10px 0 0 0;
}

.profile_box_schedule .profile_sch_box div.profile_sch_variable:last-child .profile_sch_date{
	border-radius: 0 0 0 10px;
}

.profile_box_schedule .profile_sch_box div.profile_sch_variable:first-child .profile_sch_check{
	border-radius: 0 10px 0 0;
}

.profile_box_schedule .profile_sch_box div.profile_sch_variable:last-child .profile_sch_check{
	border-radius: 0 0 10px 0;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	min-height: 60px;
	flex-basis: 50%;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check span{
	width: 90%;
}
@media screen and (min-width: 768px) {
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check span{
		width: 80%;
	}
}

/****************************************
システムページ
****************************************/
.txtbox01 {
	padding: 20px;
	margin: 0 auto 60px;
	background: url(../images/bg_txtbox.jpg) no-repeat 50% 50%/cover;
	border-radius: 20px;
}
.txtbox01_txt {
	padding: 30px;
	background: rgba(255, 248, 246, 0.9);
	position: relative;
}
.txtbox01_txt h3 {
	font-size: 20px;
	margin-bottom: 16px;
	color: var(--color-pink1);
	text-align: center;
}
.txtbox01_txt p span {
	font-size: 18px;
	color: var(--color-pink2);
}

#contents_system .contents_box_01 {
    background: var(--color-white1);
    border: solid 1px var(--color-pink2);
    text-align: center;
    font-size: 14px;
    margin: 0 auto 80px;
    padding: 30px;
	border-radius: 20px;
}
#contents_system .contents_box_02 {
    background: var(--color-white1);
    border: solid 1px var(--color-pink2);
    text-align: center;
    font-size: 14px;
    margin: 0 auto 20px;
    padding: 30px;
	border-radius: 20px;
}
#contents_system .system_corse {
	background: #ffebf0;
	padding: 20px;
	text-align: center;
}
#contents_system .system_corse .corse  {
	color: var(--color-pink2);
	font-size: clamp(18px,3vw,22px);
	line-height: 1.5;
	margin-bottom: 10px;
}
#contents_system .system_corse .corse span  {
	font-size: clamp(16px,3vw,18px);
}
#contents_system .table_system{
	margin: 0 auto;
	width: 100%;
}
#contents_system .table_system tr:not(:last-child) {
	border-bottom: solid 1px var(--color-gray1);
}
#contents_system .table_system tr td {
	width: 50%;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
	font-size: clamp(20px,3vw,22px);
}
#contents_system .table_system tr td span {
	font-size: 16px;
}
#contents_system .table_system tr td p {
	line-height: 1;
}
#contents_system .tax_included {
	margin-bottom: 40px;
}
#contents_system .box_white {
    padding: clamp(40px, 4vw, 50px) clamp(20px, 3vw, 30px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-white1);
	border-radius: 20px;
}
#contents_system .rules_list1 {
    list-style: none;
	text-align: left;
}
#contents_system .rules_list1 li {
    position: relative;
    padding-left: 1.0em;
    line-height: 1.5;
}
#contents_system .rules_list1 li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.0em;
}
#contents_system .rules_list2 {
    list-style: none;
	text-align: left;
}
#contents_system .rules_list2 li {
    position: relative;
    padding-left: 1.0em;
    line-height: 1.5;
}
#contents_system .rules_list2 li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.5em;
}

@media screen and (max-width: 768px) {
	#contents_system .contents_box_01,
	#contents_system .contents_box_02 {
		padding: 20px 16px;
	}
}

/****************************************
求人情報ページ
****************************************/
/* 5つの約束 */
.recruit_promise {
	padding: 60px 20px;
	position: relative;
	width: 100%;
	background: url(../images/bg_concept1.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.recruit_promise .promise_txt_box {
	font-size: clamp(12px, 2vw, 14px);
    line-height: 2.0;
}
.recruit_promise .promise_txt_box .title_01 {
	color: var(--color-pink1);
    line-height: 1.5;
	letter-spacing: 0.08em;
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: clamp(20px, 4vw, 20px);
}
.recruit_promise .promise_txt_box .title_01 span {
	color: var(--color-pink2);
    font-size: 22px;
}
.recruit_promise .promise_txt_box p {
    font-size: clamp(14px, 1.2vw, 14px);
}
.recruit_promise .promise_txt_box span {
	color: var(--color-pink1);
}
.recruit_promise .promise_txt_box span.concept1 {
	color: var(--color-pink2);
	font-size: 18px;
}
.recruit_promise .recruit_img {
	width: min(900px, 100%);
	height: auto;
	margin: 0 auto 40px;
    border-radius: 20px;
}
.recruit_promise .recruit_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
	margin-bottom: 40px;
}
.recruit_promise .recruit_item:nth-child(5) {
    grid-column: 1 / -1;
}
.recruit_promise .title_04 {
    color: var(--color-white1);
    background: var(--bg-gradation1);
    padding: 8px;
    border-radius: 8px;
    margin-bottom: clamp(10px, 1.2vw, 20px);
    font-size: clamp(16px, 3vw, 18px);
}
/* 求人応募 */
.recruit_promise .recruit_contact:not(:first-child) {
    padding-top: 0;
}
.recruit_promise .contact {
    background: var(--color-white1);
    border: solid 1px var(--color-pink2);
    padding: clamp(20px, 6vw, 40px);
	border-radius: 20px;
}
.recruit_promise .contact .contact_txt {
	font-size: 16px;
	margin-bottom: 10px;
}
.recruit_promise .contact ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.recruit_promise .btn_recruit a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 10px;
    border-radius: 50px;
    color: #fff;
	font-size: 16px;
}
.recruit_promise .btn_recruit .btn_tel {
    background: #f093aa;
}
.recruit_promise .btn_recruit .btn_line {
    background: #55d270;
}
.recruit_promise .btn_recruit .btn_mail {
    background: #55bbd2;
}
/* 募集要項 */
.contents_recruit2 {
	padding: 60px 20px 0;
}
.contents_recruit2 .table_02 {
    width: 100%;
    margin-bottom: 60px;
    border-left: 1px solid var(--color-pink2);
    border-top: 1px solid var(--color-pink2);
    border-spacing: 0;
    text-align: left;
}
/* 入店の流れ */
.contents_recruit2 .recruit_flow .enter_box:not(:last-of-type),
.contents_recruit2 .recruit_flow .job_box:not(:last-of-type) {
	margin-bottom: 30px;
}
.contents_recruit2 .recruit_flow .number_title{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto 20px;
	width: 100%;
	max-width: 800px;
}
.contents_recruit2 .recruit_flow .number_title h4{
	color: var(--color-pink1);
	font-size: 24px;
}
.contents_recruit2 .recruit_flow .number{
	color: var(--color-pink1);
	font-size: 20px;
}
.contents_recruit2 .recruit_flow .number span{
	font-size: 26px;
	line-height: 0.9;
}
.contents_recruit2 .recruit_flow .number p{
	line-height: 1;
	border: 1px solid var(--color-pink1);
	border-radius: 100px;
	padding: 14px 10px 10px;
	margin-right: 15px;
}
.contents_recruit2 .recruit_flow .flow_description{
	width: 100%;
	max-width: 800px;
	margin: auto;
	display: flex;
}
.contents_recruit2 .recruit_flow .flow_description img {
	width: 100%;
	height: 100%;
	max-width: 250px;
	margin-right: 20px;
}
.contents_recruit2 .recruit_flow .flow_description p {
	text-align: left;
}

@media screen and (max-width: 768px){
	.txtbox01_txt {
		padding: 30px 16px;
	}
	.txtbox01_txt p span {
		font-size: 16px;
	}
	.txtbox01_txt h3 {
		font-size: 18px;
		margin-bottom: 10px;
	    line-height: 2.0rem;
	}
    .recruit_promise .recruit_grid {
        grid-template-columns: 1fr;
    }
    .recruit_promise .recruit_item:nth-child(5) {
        grid-column: auto;
    }
    .recruit_promise .contact ul {
        grid-template-columns: 1fr;
		gap: 10px;
    }
	.contents_recruit2 .recruit_flow .number_title {
		margin: 0 auto 10px;
	}
	.contents_recruit2 .recruit_flow .number_title h4 {
        font-size: 20px;
        text-align: left;
	}
	.contents_recruit2 .recruit_flow .number {
		font-size: 18px;
	}
	.contents_recruit2 .recruit_flow .number p {
		padding: 10px 8px 8px;
		margin-right: 10px;
	}
	.contents_recruit2 .recruit_flow .number span {
		font-size: 24px;
	    line-height: 0.9;
	}
}

/****************************************
アンケートページ
****************************************/
#contents_enquete .form_box select {
	max-width: 180px;
}
#contents_enquete .form_box .form_score {
	max-width: 100px;
	display: flex;
    align-items: center;
}

/****************************************
アクセスページ
****************************************/
#contents_access .access_ol li{
	width: 100%;
	max-width: 450px;
	display: inline-block;
	padding: 10px;
	margin: 10px auto;
}
#contents_access .table_01 {
	width: 100%;
	margin-bottom: 30px;
	border-left: 1px solid var(--color-pink2);
	border-top: 1px solid var(--color-pink2);
	border-spacing: 0;
	text-align: left;
}
#contents_access .table_01 th,
#contents_access .table_01 td {
	padding: 16px;
	border-color: var(--color-pink2);
	border-style: solid;
	border-width: 1px;
	background: var(--color-white1);
	font-size: 16px;
    vertical-align: middle;
}
#contents_access .table_01 th {
	width: 30%;
	background: var(--color-pink3);
	color: var(--color-white1);
	vertical-align: middle;
	font-size: 14px;
}

/****************************************
404ページ
****************************************/
#contents_err .err_title {
	font-size: 28px;
	color: var(--color-pink1);
	text-align: center;
	line-height: 1.2;
	padding: 0;
	margin: 0 0 20px 0;
}
#contents_err .err_subtitle {
	font-size: 18px;
}
#contents_err .txt_box p {
	text-align: center;
}


