@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;
}
/*横幅をはみ出た部分は見えなくする*/
html{
	overflow-x: hidden;
}
body {
	width: 100%;
	min-width: 320px;
	min-height: 800px;
	background: #fff;
	color: #534a4a;
	font-size: 12px;
	font-family: Futura, "Helvetica Neue" , Helvetica , Arial , Roboto, "Droid Sans", "ヒラギノ角ゴ Pro W6" , "Hiragino Kaku Gothic Pro" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	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;
	width: 100%;
}
/* form */
input, select {
	vertical-align: middle;
}
/* 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;
	-webkit-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: #534a4a;
}

/********* 文字色 *********/
.atten_01, .atten_01 a{color: #d87975;}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #0000ff;}
.atten_04, .atten_04 a{color: #ff0000;}
.atten_box{
	background: #d87975;
	color: #fff;
	padding: 5px;
	font-size: 1.2em;
	margin-right: 5px;
}
/********* フォントサイズ *********/
.fs_05em{font-size: 0.5em;}
.fs_08em{font-size: 0.8em;}
.fs_12em{font-size: 1.2em;}
.fs_13em{font-size: 1.3em;}
.fs_15em{font-size: 1.5em;}
.fs_16em{font-size: 1.6em;}
.fs_17em{font-size: 1.7em;}
.fs_18em{font-size: 1.8em;}
.fs_20em{font-size: 2em;}
.fs_22em{font-size: 2.2em;}
.fs_25em{font-size: 2.5em;}
.fs_30em{font-size: 3em;}
.fs_35em{font-size: 3.5em;}
.fs_vmin{font-size: 3.5vmin;}
/********* フォントウェイト *********/
.weight{font-weight: bold;}
/********* マージン *********/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_50{margin-bottom: 50px;}
.mt_30{margin-top: 30px;}
.mt_20{margin-top: 20px;}
/********* センタリング *********/
.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}
/********* アンダーライン *********/
.border_01 {background: linear-gradient(transparent 55%, #f7e6e9 55%);}
.border_02 {background: linear-gradient(transparent 55%, #ffffb6 55%);}

/********* hover時アニメーション *********/
.link_act_01{
	opacity: 1;
	-webkit-transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}
.link_act_01:hover{
	opacity: 0.5;
	-webkit-transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}


/********* 各テーブル設定 *********/
/* テーブル 1 */
.table_01 {
	width: 100%;
	max-width: 600px;
	margin: 10px auto;
	border-spacing: 0;
}
.table_01 th, .table_01 td {
	width: 100%;
	display: block;
	padding: 15px;
	border-color: #f7e6e9;
	border-style: solid;
	border-width: 1px;
}
.table_01 th {
	background: #f7e6e9;
	text-align: center;
}
.table_01 td {
	text-align: left;
}
/* テーブル 2 */
.table_02 {
	width: 100%;
	border-spacing: 0;
	text-align: left;
	table-layout: fixed;
}
.table_02 th, .table_02 td {
	border: 1px solid #fff2f4;
	text-align: center;
	vertical-align: middle;
}
.table_02 th {
	padding: 0.5em 1em;
	background: #f7e6e9;
}
.table_02 td {
	padding: 0.5em;
	height: 40px;
}
@media screen and (max-width: 768px){
	.table_02 th {
		padding: 0.8em 0.5em;
		line-height: 1.2;
	}
	.table_02 td {
		padding: 1em 0.3em;
		line-height: 1.2;
		font-size: 10px;
	}
}

/* テキストボックス 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: #ff007e;
	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;
	text-align: left;
}

/********* 女の子BOX設定 *********/
/*トップページ出勤*/
.cast_box01{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.cast_box01 li{
	width: 30%;
	margin: 10px;
	position: relative;
	align-self: stretch;
	background: #f7e6e9;
}
.cast_box01 li .img_box{
	width: 100%;
	padding-top: 150%;
	overflow: hidden;
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	vertical-align: top;
}
.cast_box01 li .img_box > img.staff_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}
.cast_box01 li .icon_box{
	display: flex;
	position: absolute;
	bottom: 5px;
	padding: 0 5px;
	z-index: 5;
}
.cast_box01 li .icon_box .icon_new{
	width: 100%;
	max-width: 45px;
	min-width: 32px;
	margin-right: 5px;
}
.cast_box01 li .icon_box .icon_twitter{
	width: 100%;
	max-width: 45px;
	min-width: 32px;
}
.cast_box01 li .icon_box .icon_new img,
.cast_box01 li .icon_box .icon_twitter img {
	height: auto;
}
@media screen and (max-width: 768px){
	.cast_box01 li .icon_box{
		width: 100%;
		/* bottom: 90px; */
	}
	.cast_box01 li .icon_box .icon_new{
		width: 25%;
	}
	.cast_box01 li .icon_box .icon_twitter{
		width: 25%;
	}
}

/*
.cast_box01 li .img_box .icon_new{
	position: absolute;
	bottom: 5px;
	left: 5px;
	width: 20%;
	max-width: 50px;
	min-width: 32px;
}
.cast_box01 li .img_box .icon_twitter a{
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 20%;
	max-width: 50px;
	min-width: 32px;
}
*/
.cast_box01 li .icon_class01{
	/* position: absolute;
	top: 5px;
	right: 5px; */
	
	max-width: 100px; 
}

/*セラピスト画像hover時アニメーション*/
.staff .img_box:before {
	content: '';
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	width: 100%;
	height: 50%;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	-webkit-transition-property: top, opacity;
	transition-property: top, opacity;
	-webkit-transition-duration: 0.3s;
					transition-duration: 0.3s;
}
.staff .img_box .staff_img {
	display: block;
	max-width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.staff .img_box .details {
	font-size: 16px;
	padding: 10px;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}
.staff .img_box .details .title,
.staff .img_box .details .info {
	display: block;
	opacity: 0;
	position: relative;
	top: 100px;
	-webkit-transition-property: top, opacity;
					transition-property: top, opacity;
	-webkit-transition-duration: 0.3s;
					transition-duration: 0.3s;
	-webkit-transition-delay: 0s;
					transition-delay: 0s;
}
.staff .img_box .details .title {
	line-height: 1;
	font-weight: 600;
	font-size: 18px;
}
.staff .img_box .details .info {
	line-height: 1.2;
	margin-top: 5px;
	font-size: 12px;
}
.staff .img_box:hover:before,
.staff .img_box:hover .title,
.staff .img_box:hover .info {
	opacity: 1;
}
.staff .img_box:hover:before {
	top: 50%;
}
.staff .img_box:hover .title,
.staff .img_box:hover .info {
	top: 0;
}
.staff .img_box:hover .title {
	-webkit-transition-delay: 0.15s;
					transition-delay: 0.15s;
}
.staff .img_box:hover .info {
	-webkit-transition-delay: 0.25s;
					transition-delay: 0.25s;
}



.cast_box01 li .txt_box{
	padding: 15px;
}
.cast_box01 li .txt_box .time{
	width: 100%;
	border: 1px solid #534a4a;
	padding: 5px;
	/* margin-top: 4px; */
}
.cast_box01 li .underline {
	display: block;
	border-top: 1px solid #3c3c3c;
    /* width: 70%; */
    max-width: 200px;
    margin: 5px auto 0;
    padding-top: 5px;
}
@media screen and (max-width: 768px){
	.cast_box01 li{
		width: 45%;
		margin: 5px;
	}
	#contents_cast .cast_box01 li{
		width: 30%;
	}
	.cast_box01 li .txt_box{
		padding: 10px;
	}
	.cast_box01 li .icon_class01{
		max-width: 70px;
	}
}


/*ピックアップ使用*/
.cast_box02{
	margin: 0 auto;
	position: relative;
}
.cast_box02 li{
	width: 100%;
	margin: 0 auto 30px;
	position: relative;
	text-align: center;
	background: #f5f5f5;
}
.cast_box02 .img_box{
	width: 330px;
	height: 495px;
	float: left;
	position: relative;
	display: inline-block;
	vertical-align: bottom;
}
.cast_box02 .img_box img.staff_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	z-index: 2;
	position: relative;
}
.cast_box02 .img_box .icon_new{
	position: absolute;
	bottom: 5px;
	left: 5px;
	width: 20%;
	max-width: 100px;
	z-index: 2;
}
.cast_box02 .img_box .icon_class01{
	position: absolute;
	top: 5px;
	right: 5px;
	width: 20%;
	max-width: 100px;
	z-index: 2;
}
.cast_box02 .txt_box{
	font-size: 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin-top: 30%;
}
.cast_box02 .txt_box span{
	font-size: 12px;
	color: #d87975;
	letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
	.cast_box02 li .img_box{
		width: 220px;
		height: 330px;
	}
	.cast_box02 .txt_box{
		margin-top: 20%;
	}
}
@media screen and (max-width: 425px) {
	.cast_box02 li .img_box{
		width: 180px;
		height: 270px;
	}
}



/* 女の子のボックス */
.cast_box li{
	width: 200px;
	position: relative;
}
/*以下のサイズはサイトに合わせてください*/
.cast_box li .img_box {
	width: 200px;
	height: 300px;
	margin-bottom: 10px;
}
/*以下のサイズはサイトに合わせてください*/
.cast_box li .img_box > img{
	max-width: 200px;
	max-height: 300px;
}
.cast_box li .txt_box .time{
	color: #ffff00;
}
.cast_box li .txt_box .icon{
	height: 20px;
}
.cast_box li .txt_box .time{
/*	width: 100%;*/
	padding: 4px;
	border: 1px solid #333;
	background: url(../images/bg_contents_01.png) 0 0 repeat;
}
.cast_box li .frame{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
}

/* 各ページ上部のテキストボックス */
.pagetext_box{
	height: 200px;
	margin-bottom: 20px;
	background: url(../images/bg_pagetext_box.png) 0 0 no-repeat;
	color: #fff;
	text-align: left;
	line-height: 1.5em;
	box-sizing: border-box;
	padding: 50px;
}
/* リンクボックス */
.list_link_box{
	margin-right: -30px;
	font-size: 10px;
}
.list_link_box li{
	float: left;
	margin: 0 30px 20px 0;
}

/********* 各種btn設定 *********/
/*トップページメインビジュアル下TELボタン*/
.info_tel{
	display: block;
	position: relative;
	width: 100%;
	font-size: 20px;
	color: #d87975;
	transition: all 0.3s;
}
.info_tel .tel_span{
	transition: all 0.3s;
	transform: scale(1, 1);
}
.info_tel::before,
.info_tel::after {
	content: "";
	position: absolute;
	transition: all 0.3s;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.info_tel::before {
	left: 4px;
	z-index: 1;
	opacity: 0;
	background: rgba( 247, 230, 233, 0.4);
	transform: scale(0.1, 1);
}
.info_tel:hover::before {
	opacity: 1;
	transform: scale(1, 1);
}
.info_tel::after {
	transition: all 0.3s;
	border: 1px solid #d87975;
}
.info_tel:hover::after {
	transform: scale(1, 0.1);
	opacity: 0;
}

/*TEL,MAIL,LINE共通設定*/
.btn_common{
	width: 280px;
	margin: 15px auto;
	display: block;
	position: relative;
	font-size: 16px;
	transition: all 0.3s;
	text-align: center;
	padding: 5px;
}
.btn_common .tel_span{
	transition: all 0.3s;
	transform: scale(1, 1);
}
.btn_common::before,
.btn_common::after {
	content: "";
	position: absolute;
	transition: all 0.3s;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.btn_common::before {
	left: 4px;
	z-index: 1;
	opacity: 0;
	transform: scale(0.1, 1);
}
.btn_common:hover::before {
	opacity: 1;
	transform: scale(1, 1);
}
.btn_common::after {
	transition: all 0.3s;
}
.btn_common:hover::after {
	transform: scale(1, 0.1);
	opacity: 0;
}

/*TELボタン*/
.btn_tel{
	color: #d87975;
}
.btn_tel::before {
	background: rgba( 247, 230, 233, 0.4);
}
.btn_tel::after {
	border: 1px solid #d87975;
}
/*MAILボタン*/
.btn_mail{
	color: #759dd8;
}
.btn_mail::before {
	background: rgba( 117, 157, 216, 0.4);
}
.btn_mail::after {
	border: 1px solid #759dd8;
}
/*LINEボタン*/
.btn_line{
	color: #75d8aa;
}
.btn_line::before {
	background: rgba( 117, 216, 170, 0.4);
}
.btn_line::after {
	border: 1px solid #75d8aa;
}


/*btn_more設定*/
.btn_more01{
	width: 200px;
	height: 55px;
	margin: 30px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #c4b494;
	font-size: 18px;
	background: none;
}
.btn_more01:hover{
	color: #c4b494;
}
.btn_more01 .border{
	position:absolute;
	background:none;
	transition:all .5s ease-in-out;
}
.btn_more01>.border:nth-of-type(1){
	top:0;
	left:0;
	border-top:1px solid #c4b494;
	width:100%;
	height:100%;
}
.btn_more01>.border:nth-of-type(2){
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	border-bottom:1px solid #c4b494;
}
.btn_more01>.border:nth-of-type(3){
	left:0;
	top:0;
	height:100%;
	width:100%;
	border-left:1px solid #c4b494;
}
.btn_more01>.border:nth-of-type(4){
	top:0;
	right:0;
	height:100%;
	width:100%;
	border-right:1px solid #c4b494;
}
.btn_more01:hover .border:nth-of-type(1){
	transform:translate(0, 99%);
}
.btn_more01:hover .border:nth-of-type(2){
	transform:translate(0, -99%);
}
.btn_more01:hover .border:nth-of-type(3){
	transform:translate(99%, 0);
}
.btn_more01:hover .border:nth-of-type(4){
	transform:translate(-99%, 0);
}

/*btn_more02白バージョン*/
.btn_more01.more,
.btn_more01.more:hover{
	color: #fff;
}
.btn_more01.more>.border:nth-of-type(1){
	border-top:1px solid #fff;
}
.btn_more01.more>.border:nth-of-type(2){
	border-bottom:1px solid #fff;
}
.btn_more01.more>.border:nth-of-type(3){
	border-left:1px solid #fff;
}
.btn_more01.more>.border:nth-of-type(4){
	border-right:1px solid #fff;
}

/*btn_blog*/
.btn_blog {
	width: 280px;
	margin: 20px auto 0;
	display: block;
	position: relative;
	transition: all 0.3s;
	text-align: center;
	padding: 5px 5px 7px;
	color: #c4b494;
}
.btn_blog:hover {
	color: #827474;
}
.btn_blog::before ,
.btn_blog::after {
	content: "";
	position: absolute;
	transition: all 0.3s;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.btn_blog::before {
	z-index: 2;
	opacity: 0;
	transform: scale(0.1, 1);
	background: rgba( 247, 230, 233, 0.4);
	border-radius: 2px;
}
.btn_blog:hover::before {
	opacity: 1;
	transform: scale(1, 1);
}
.btn_blog::after {
	z-index: 1;
	opacity: 1;
	transform: scale(1, 1);
	border: solid 1px #c4b494;
	border-radius: 2px;
}
.btn_blog:hover::after {
	opacity: 0;
	transform: scale(1, 0.1);
}

/********* 各種アニメーション設定 *********/
/*次々と現れる*/
.animate-elm {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.animate-elm.type01 {
	-webkit-animation-delay: 0.6s;
					animation-delay: 0.6s;
}
.animate-elm.type02 {
	-webkit-animation-delay: 0.8s;
					animation-delay: 0.8s;
}
.animate-elm.type03 {
	-webkit-animation-delay: 1s;
					animation-delay: 1s;
}
.animate-elm.type04 {
	-webkit-animation-delay: 1.2s;
					animation-delay: 1.2s;
}
.animate-elm.fadein {
	-webkit-animation-name: fadeInTop;
					animation-name: fadeInTop;
	-webkit-animation-duration: 500ms;
					animation-duration: 500ms;
	-webkit-animation-fill-mode: both;
					animation-fill-mode: both;
}
@-webkit-keyframes fadeInTop {
	from {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transform: translateY(-100px);
						transform: translateY(-100px);
	}
	to {
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		-webkit-transform: translateY(0);
						transform: translateY(0);
	}
}
@keyframes fadeInTop {
	from {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transform: translateY(-100px);
						transform: translateY(-100px);
	}
	to {
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		-webkit-transform: translateY(0);
						transform: translateY(0);
	}
}

/* 右からフェードイン */
.right_fadein {
	transition: opacity 1.5s;
	-moz-transition: opacity 1.5s;
	-webkit-transition: opacity 1.5s;
	-o-transition: opacity 1.5s;
	transition: transform 1.5s;
	-moz-transition: transform 1.5s;
	-webkit-transition: transform 1.5s;
	-o-transition: transform 1.5s;
}
/* 左からフェードイン */
.left_fadein {
	transition: opacity 1.5s;
	-moz-transition: opacity 1.5s;
	-webkit-transition: opacity 1.5s;
	-o-transition: opacity 1.5s;
	transition: transform 1.5s;
	-moz-transition: transform 1.5s;
	-webkit-transition: transform 1.5s;
	-o-transition: transform 1.5s;
}


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

ヘッダー

**************************/
h1{
	width: 100%;
	background: #f7e6e9;
	font-size: 10px;
}
header {
	width: 100%;
	height: 100px;
	background: #fff;
	z-index: 99999;
	position: fixed;
	top: 0;
	left: 0;
	/* box-shadow: 0 2px 10px #00000014; */
}
@media screen and (max-width: 768px){
	h1 {
/*		display: none;*/
	}
	header{
		height: 70px;
		position: relative;
	}
}

/* ヘッドライン */
header .frame{
	width: 100%;
	background: #f7e6e9;
	padding: 5px 0;
}
header .headline {
	width: 90%;
	max-width: 800px;
	height: 20px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	clear: both;
	overflow: hidden;
}
header .headline ul {
	margin: 0px;
	padding: 0px;
	position: absolute;
	left: 10px;
	top: 0;
}
header .headline ul li {
	width: 800px;
	height: 20px;
	line-height: 20px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	font-size: 11px;
}

/*ロゴとnav部分*/
header .header_nav{
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* ロゴ */
header .header_nav .logo {
	width: 150px;
	margin: 0 20px;
}
@media screen and (max-width: 768px){
	header .header_nav{
		height: 40px;
	}
	header .header_nav .logo{
		width: 120px;
		margin: 5px 20px 0;
	}
}

header .header_nav .logo img{
	vertical-align: middle;
	width: 100%;
    height: auto;
}
/*TEL,LINEアイコン*/
header .icon_box{
	position: absolute;
	right: 10px;
}
header .icon_box img{
	width: 30px;
	margin: 0 4px;
}

/*PC版メニュー*/
header ul.nav_pc{
	display: inline-block;
}
header ul.nav_pc li{
	display: inline-block;
	font-size: 12px;
	line-height: 1.4;
	margin-right: 12px;
}
header ul.nav_pc li a{
	position: relative;
	text-decoration: none;
	moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
header ul.nav_pc li a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #d87975;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
header ul.nav_pc li a:hover {
	color: #d87975;
}
header ul.nav_pc li a:hover::after {
	transform: scale(1, 1);
}
header ul.nav_pc li.logo a:hover::after {
	display: none;
}


/**************************
sp版メニュー設定
***************************/
.btn_menu{
	position: absolute;
	left: 10px;
	z-index: 999999;
}
.btn_menu i{
	font-size: 30px;
}
/*クリック時の波紋*/
#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;
	}
}

/*クリック時のopenとcloseの入れ替え*/
#btn18 .btn_close,
#btn18 .btn_open{
	position: absolute;
	bottom: 0;
	text-align: center;
	transform: translateY(50px);
	transition: width .25s .35s, color .45s .35s;
	z-index: 9999999;
}
#btn18 .btn_close {
	color: rgba(0, 0, 0, 0);
	right: 0;
	width: 0;
	top: -66px;
	left: 0;
}
#btn18 .btn_open {
	width: 100%;
	position: absolute;
	top: -66px;
	left: 0;
}
#btn18.active .btn_close{
	color: #fff;
	width: 100%;
}
#btn18.active .btn_open {
	color: rgba(0, 0, 0, 0);
	width: 0;
}

/*ドロワーの中*/
#nav-d-bg {
	position: fixed;
	background: rgba( 255, 133, 155, 0.95);
	width: 1000px;
	height: 1200px;
	right: -1000px;
	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;
	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: #fff600;
}
#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 span:nth-child(even){
	position: absolute;
	right: 20px;
}

/*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;
}
.btn_nav_tel .nav_icon_img{
	max-width: 20px;
	vertical-align: sub;
}

/* LINE,Twitter */
.nav_iconBox{
	display: flex;
	justify-content: space-evenly;
}
.nav_iconBox .nav_icon_img{
	max-width: 30px;
}
#nav_drawer .nav_iconBox {
    color: #fff;
    font-size: 14px;
    border-bottom: none;
    text-align: center;
}
#nav_drawer .nav_iconBox:after{
	content: none;
}
/*営業時間・受付時間*/
#nav_drawer .info_open{
	color: #fff;
	font-size: 14px;
	border-bottom: none;
	text-align: center;
}
#nav_drawer .info_open:after{
	content: none;
}

#drawer.active{
	display: none;
}

/* タブメニュー */
.tab_nav {
	width: 100%;
    position: fixed;
    top: 80px;
    z-index: 90000;
    background: #fff;
    border-bottom: solid 1px #ff859b;
    padding: 14px 5px 0;
}
.tab_nav ul {
	display: grid;
	grid-template-columns: repeat(6 , 1fr);
}
.tab_nav li {
	background: center 6px / 20px no-repeat;
}
.tab_nav li.tab_nav_index {
    background-image: url(../images/icon_tab_nav_index.png);
}
.tab_nav li.tab_nav_system {
    background-image: url(../images/icon_tab_nav_system.png);
}
.tab_nav li.tab_nav_staff {
    background-image: url(../images/icon_tab_nav_staff.png);
}
.tab_nav li.tab_nav_schedule {
    background-image: url(../images/icon_tab_nav_schedule.png);
}
.tab_nav li.tab_nav_access {
    background-image: url(../images/icon_tab_nav_access.png);
}
.tab_nav li.tab_nav_recruit {
    background-image: url(../images/icon_tab_nav_recruit.png);
}
.tab_nav li a {
	display: block;
	position: relative;
	height: 50px;
	padding-top: 27px;
    font-size: 10px;
}
.tab_nav li.tab_active {
    border: solid 1px #ff859b;
    border-bottom: solid 1px #fff;
    border-radius: 4px 4px 0 0;
    margin-bottom: -1px;
}
.tab_nav li.tab_active a {
	height: 46px;
    /* background: #f7e6e9; */
    border-radius: 3px 3px 0 0;
}
.tab_nav li.tab_active a:before ,
.tab_nav li.tab_active a:after {
	content: "";
    display: block;
    width: 10px;
    height: 10px;
	position: absolute;
    bottom: -4px;
	background: center / 10px no-repeat;
}
.tab_nav li.tab_active a:before {
    background-image: url(../images/tab_nav_left.png);
    left: -10px;
}
.tab_nav li.tab_active a:after {
    background-image: url(../images/tab_nav_right.png);
    right: -10px;
}

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

mainvisual メインビジュアル設定

***************************/
#mainvisual{
	width: 100%;
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	margin-top: 90px;
}
#mainvisual .main_logo{
	width: 75%;
	max-width: 500px;
}
#mainvisual .main_logo img{
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1s both;
					animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1s both;
}
/*トップページメインビジュアルlogoアニメーション*/
@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
						filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
						filter: blur(0px);
		opacity: 1;
	}
}
@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
						filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
						filter: blur(0px);
		opacity: 1;
	}
}
/*店舗情報*/
.shop_info{
	width: 90%;
	max-width: 500px;
	margin: 0 auto 10px;
	color: #d87975;
}
.shop_info p{
	width: 45%;
	margin: 10px auto;
	display: inline-block;
	font-size: 16px;
}

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

フッター

**************************/
footer {
	background: #f7e6e9;
	font-size: 10px;
	padding-top: 10px;
}

@media screen and (max-width: 768px){
header .icon_box {
	display: none;
}
footer{
	margin-bottom:50px;
}

footer .icon_box{
	width: 100%;
    background: #ff859b;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: table;
    z-index: 9999;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
footer .icon_box img{
	width: 30px;
	margin: 10px 10%;
	}
}
@media screen and (min-width: 769px) {

footer .icon_box{display: none;}

}

/* パンくずリスト */
.breadcrumbs {
	margin-bottom: 10px;
	background: #fff;
	border-radius: 20px;
}
.breadcrumbs ul li {
	font-size: 10px;
	display: inline-block;
}
.breadcrumbs ul li:before {
	content: "\f105";
	font-family: FontAwesome;
	display: inline;
	margin: 0 8px 0;
}
.breadcrumbs ul li:first-child:before {
	margin: 0;
	content: "\f015";
}
.breadcrumbs ul li a {
	color: #000;
}
/* テキストメニュー */
footer .inner .nav{
	margin: 0 auto;
	padding: 10px 0;
	display: table;
}
footer .inner .nav li {
	display: table-cell;
}
footer .inner .nav li:after {
	content: "　|　";
	display: inline;
	margin: 0 3px;
}
footer .inner .nav li:last-child:after {
	display: none;
}
footer .inner .logo{
	width: 180px;
	margin: 20px auto;
}
footer .inner .logo img{
	height: auto;
}
/* 電話番号&営業時間 */
footer .inner .info_box {
	margin: 0 auto;
	display: table;
}
footer .inner .info_box li {
	display: table-cell;
}
.footer_link {
	padding: 5px 0;
	text-align: center;
	font-size: 12px;
}
.footer_link a {
	text-decoration: underline;
	text-decoration-color: #d0d0d0;
}
.footer_txt{
	margin: 10px;
}


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

トップページ

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

/****** トップページ共通設定 ******/
/*各セクション設定*/
section{
	padding: 5% 0;
	width: 100%;
}
/*h2設定*/
.top_title{
	color: #c4b494;
	text-align: center;
	margin-bottom: 50px;
}
.h2_title{
	font-size: 50px;
	line-height: 1.2;
}
.h2_sub{
	font-size: 14px;
}
@media screen and (max-width: 768px){
	.top_title{
		text-align: left;
		margin-bottom: 30px;
	}
}
/*h3設定*/
section h3{
	overflow: hidden;
	text-align: center;
	color: #534a4a;
	font-size: 16px;
}
section h3 span {
	position: relative;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	text-align: left;
}
section h3 span::before,
section h3 span::after {
	position: absolute;
	top: 50%;
	content: '';
	width: 1000px;
	height: 1px;
	background-color: #534a4a;
}
section h3 span::before {
	right: 100%;
}
section h3 span::after {
	left: 100%;
}

/*セラピようh3設定*/
section h3.girls_h3{
	overflow: hidden;
	text-align: center;
	color: #534a4a;
	font-size: 13px;
}
section h3.girls_h3 span {
	position: relative;
	display: inline-block;
	margin: auto;
	padding: 0;
	text-align: center;
}
section h3.girls_h3 span::before,
section h3.girls_h3 span::after {
	display:none;
}

.icon_check_list ul{
	display:flex;
	gap: 5px;
	margin: 10px 0;
}
.icon_check_list li{
	width: 100% !important;
	padding: 5px;
	border: 1px solid #f5bdc7;
	color: #c66d7d;
	margin: 0;
}
@media screen and (max-width: 768px){
	.icon_check_list ul{
		flex-wrap:wrap;
		/* gap: 0px; */
	}
	.icon_check_list li{
		width: 100% !important;
		margin: 0;
	}
}
.short_comment{

}

/*検索*/
.sort_type_inner{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.sort_type_dl {
	display:flex;
	justify-content:left;
	flex-wrap:wrap;
	border-bottom: 1px solid #c4b494;
	padding: 10px;
	font-size: 14px;
}

.sort_type_dl dt{
	width: 30%;
	text-align: justify;
	padding: 10px;
	color: #94815a;
	/* border: 1px solid #c4b494; */
}
.sort_type_dl dd{
	width: 70%;
	text-align: left;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
}
.sort_type_dl dd label{
	width: 20%;
	padding: 2px 0;
}
@media screen and (max-width: 768px){
	.sort_type_dl dd label{
		width: 50%;
	}
}

.sort_type_inner button{
    width: 50%;
    height: 40px;
    background: #c4b494;
    border: 1px solid #fff;
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
    border-radius: 3px;
}
.sort_type_inner a.cancel {
    background: #fff;
    border: 1px solid #c4b494;
    color: #c4b494;
    font-size: 12px;
    padding: 11px 30px;
    /* border-radius: 3px; */
}


/*本日の出勤*/
#section_today{
	background: #fffff6;
}

/*twitterとevent*/
.col_02{
	width: 100%;
	position: relative;
	/*display: flex;
	align-items: center;
	justify-content: center;*/
}
.col_02 #section_twitter,
.col_02 #section_event
{
	width: 49%;
	vertical-align: top;
	display: inline-block;
	padding-top: 40px;
	padding-bottom: 40px;
}
@media screen and (max-width: 768px){
	.col_02{
		display: block;
	}
	.col_02 #section_twitter,
	.col_02 #section_event
	{
		width: 100%;
	}
}
/*twitter*/
#section_twitter .frame{
	width: 100%;
	max-width: 240px;
/*	height: 400px;*/
	margin: auto;
/*	overflow-y: scroll;*/
	box-shadow: 0 0 10px #0000001a;
}
#section_twitter a {
	display: block;
	width: min(100%, 600px);
	margin-inline: auto;
}
#section_twitter a img {
	width: 100%;
	height: auto;
}
/* 姉妹店バナー */
#section_store ul li{
    max-width: 460px;
	margin: 0 auto;
}
#section_store ul li:hover {
	box-shadow: 10px 10px 0px #f7e6e9;
	transition: 0.3s ease-in-out;
}
#section_store ul li img{
    width: 100%;
}
/*event*/
#section_event{
	margin: 100px 0 30px;
}
@media screen and (max-width: 768px){
	#section_event,
	#section_event2{
		margin: 70px 0 20px;
	}
}
#section_event2.flexslider{
	margin: 0 0 30px;
}
#section_event li,
#section_event2 li{
	margin-bottom: 50px;
}
#section_event .flex-control-nav li,
#section_event2 .flex-control-nav li{
	margin-bottom: 0;
}
#section_event img,
#section_event2 img{
	width: 95%;
	height: auto;
	max-width: 500px;
	margin: 0 auto;
}

.flex-control-nav {
    bottom: 0;
}
/*イベント画像スライダーの●の色設定*/
.flex-control-nav li{
	margin: 0 2px;
}
.flex-control-paging li a {
	width: 50px;
	height: 10px;
	display: block;
	background: #f9f9f9;
	cursor: pointer;
	text-indent: -9999px;
	box-shadow: none;
	border-radius: 0;
}
.flex-control-paging li a.flex-active{
	background: #f7e6e9;
	border: none;
}

/*セラピストページ誘導部分*/
#section_staff{
	height: 800px;
	background: url(../images/bg_top_img.jpg) center top no-repeat,#f7e6e9;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
#section_staff .staff_inner{
	width: 95%;
	max-width: 550px;
	margin: 0 auto;
}
#section_staff .cast_box02 .txt_box{
	margin-top: 40%;
}
#section_staff >div >img{
	max-width: 150px;
	margin-bottom: 15px;
}
#section_staff p{
	color: #fff;
	font-size: 14px;
	text-shadow: 0 0 13px #503638;
}
#section_staff .more{
	margin-top: 5px;
	text-shadow: 0 0 13px #503638;
}
@media screen and (max-width: 768px){
	#section_staff{
		height: unset;
		margin: 80px auto 50px;
		background-size: cover;
		background-position: 80% 0;
	}
	#section_staff .cast_box02 .txt_box{
		margin-top: 25%;
		font-size: 14px;
	}
	#section_staff >div >img{
		max-width: 120px;
		margin-top: 30px;
	}
	#section_staff .btn_more01{
		margin-bottom: 20px;
	}
}

/*料金システム*/
#section_system .inner{
	max-width: 600px;
}
#section_system h3{
	margin-bottom: 20px;
}
#section_system .system_box{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}
#section_system .system_box:nth-of-type(1){
	margin-bottom: 0;
}
#section_system .system_frame{
	width: 220px;
	height: 220px;
	border: 5px solid #f7e6e9;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px;
}
#section_system .system_frame_02{
	width: 100%;
	max-width: 460px;
	height: 220px;
	border: 5px solid #f7e6e9;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1%;
}
#section_system .system_frame p{
	font-size: 22px;
}
#section_system .system_frame_02 p{
	font-size: 20px;
}
#section_system .txt{
	max-width: 500px;
	width: 100%;
	margin: 10px auto 50px;
	text-align: left;
	color: #827474;
}
/*開閉式注意事項部分の設定*/
#section_system .left{
	margin: 10px auto;
}
#section_system label {
	background: #f7e6e9;
	padding: 10px;
	display: block;
	margin: 0 0 20px 0;
	border: 1px solid #fff;
	font-size: 16px;
}
#section_system input[type="checkbox"].on_off{
	display: none;
}
#section_system .atten_txt p {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin: 0;
	padding: 0 10px;
	text-align: left;
}
#section_system input[type="checkbox"].on_off + p{
	height: 0;
	overflow: hidden;
}
#section_system input[type="checkbox"].on_off:checked + p{
	/* height: 450px; */
	height: 510px;
}

.new_course{
    max-width: 400px;
    border: 5px solid #f7e6e9;
    border-radius: 25px;
    display: block;
    margin: 5px;
    padding-top: 25px;
    padding-bottom: 19px;
    margin: 0 auto;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 18px;
}
.txt_new_corse{
	width: 100%;
    max-width: 400px;
    position: left;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 20px;
}
.txt_new_corse_a{
	color: #827474;
}
.txt_new_corse_a .span1{
	padding-left: 0.5em;
  	text-indent: -1em;
}

/*pickup*/
#section_pickup{
	background: #daceb5;
}
#section_pickup h2{
	color: #fff;
	text-align: center;
	width: 30%;
	display: inline-block;
	vertical-align: middle;
}
#section_pickup .pickup_inner{
	width: 100%;
	margin: 0 auto;
}
#section_pickup .pickup_inner .cast_box01 li{
	width: 22%;
	margin: 10px;
	background: transparent;
}
#section_pickup .pickup_inner .cast_box01 li .img_box{
	border-radius: 50%;
	padding-top: 100%
}

#section_pickup .pickup_inner .cast_box01 .txt_box span{
	font-size: 12px;
	color: #d87975;
	letter-spacing: 1px;
}
#section_pickup .pickup_inner .cast_box01 li .icon_box{
	position: absolute;
	padding: 0;
	bottom: 0;
}

@media screen and (max-width: 1024px) and (min-width: 769px){
	#section_pickup .pickup_inner .cast_box01 li{
		width: 30%;
		margin: 10px;
	}
}

@media screen and (max-width: 768px){
	#section_pickup h2{
		width: 100%;
		margin-bottom: 20px;
		text-align-last: left;
	}
	#section_pickup .txt_box{
		font-size: 14px;
	}
	#section_system input[type="checkbox"].on_off:checked + p {
	height: 510px;
	}
	#section_pickup .pickup_inner .cast_box01 li{
		position: relative;
		width: 28%;
		margin: 8px 8px 16px;
	}
	#section_pickup .pickup_inner .cast_box01 li .icon_box{
		padding: 0;
		bottom: -10px;
	}
}
@media screen and (max-width: 480px){
	#section_system input[type="checkbox"].on_off:checked + p {
	height: 575px;
	}
}
@media screen and (max-width: 320px){
	#section_system input[type="checkbox"].on_off:checked + p {
	height: 660px;
	}
}

/*ピックアップ*/
#section_pickup02 .inner{
	max-width: 800px;
}
#section_pickup02 .cast_box01{
	flex-wrap: nowrap;
	justify-content: normal;
	margin-bottom: 10px;
	/*navが必要な場合はこちらを使用↓
	margin-bottom: 60px;*/
}
#section_pickup02 .cast_box01 li {
    margin: 0;
}


/*明日出勤のセラピスト*/
#section_tomorrow .cast_box01{
	flex-wrap: nowrap;
	justify-content: normal;
	margin-bottom: 10px;
	/*navが必要な場合はこちらを使用↓
	margin-bottom: 60px;*/
}
#section_tomorrow .cast_box01 li {
    margin: 0;
}
/*navが必要な場合はこちらを使用↓
.swiper-pagination-bullet {
    width: 50px;
    height: 10px;
    background: #bbb;
    cursor: pointer;
    text-indent: -9999px;
    box-shadow: none;
    border-radius: 0;
}
.swiper-pagination-bullet-active{
	background: #f7e6e9;
}*/
@media screen and (min-width: 480px){
	.sp_480{
		display: none;
	}
}


/*アクセス*/
#section_access{
	background: #fff;
}
/*下部バナー*/
#section_bnr .col{
	width: 280px;
	margin: 1rem;
	cursor: pointer;
	display: inline-block;
}
#section_bnr .col .container{
	-webkit-transform-style: preserve-3d;
					transform-style: preserve-3d;
	-webkit-perspective: 1000px;
					perspective: 1000px;
}
#section_bnr .col .front,
#section_bnr .col .back{
	background-size: cover;
	background-position: center;
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
					transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
					backface-visibility: hidden;
	text-align: center;
	min-height: 280px;
	height: auto;
	border-radius: 20px;
	color: #fff;
	font-size: 1.5rem;
}
#section_bnr .col .back{
	background: #cedce7;
	background: -webkit-linear-gradient(45deg,  #f7e6e9 0%,#e0a7b1 100%);
	background: -o-linear-gradient(45deg,  #f7e6e9 0%,#e0a7b1 100%);
	background: linear-gradient(45deg,  #f7e6e9 0%,#e0a7b1 100%);
}
#section_bnr .col .front:after{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	-webkit-backface-visibility: hidden;
					backface-visibility: hidden;
	border-radius: 20px;
}
#section_bnr .col .container:hover .front,
#section_bnr .col .container:hover .back{
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
#section_bnr .col .back{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#section_bnr .col .inner{
	-webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
					transform: translateY(-50%) translateZ(60px) scale(0.94);
	top: 50%;
	position: absolute;
	left: 0;
	width: 100%;
	padding: 2rem;
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
	outline: 1px solid transparent;
	-webkit-perspective: inherit;
					perspective: inherit;
	z-index: 2;
}
#section_bnr .col .container .back{
	-webkit-transform: rotateY(180deg);
					transform: rotateY(180deg);
	-webkit-transform-style: preserve-3d;
					transform-style: preserve-3d;
}

#section_bnr .col .container .front{
	-webkit-transform: rotateY(0deg);
					transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
					transform-style: preserve-3d;
}
#section_bnr .col .container:hover .back{
	-webkit-transform: rotateY(0deg);
					transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
					transform-style: preserve-3d;
}
#section_bnr .col .container:hover .front{
	-webkit-transform: rotateY(-180deg);
					transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
					transform-style: preserve-3d;
}
#section_bnr .col .front .inner p{
	font-size: 40px;
	margin-bottom: 2rem;
	position: relative;
}
#section_bnr .col .front .inner p:after{
	content: '';
	width: 4rem;
	height: 2px;
	position: absolute;
	background: #fff;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -.75rem;
}
#section_bnr .col .back .inner p{
	font-size: 14px;
	text-align: center;
	color: #534a4a;
}
#section_bnr .col .back .inner p img{
	width: 60%;
	margin: 10px auto;
}



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

ここから下層ページ設定だよ！↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

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

/****** 下層ページ共通設定 ******/
/*オープニングアニメーション設定*/
.fade_group div ,
.fade_group2 div {
	content: '';
	position: fixed;
	top: 0;
	left: -100vw;
	width: 100vw;
	height: 100%;
	pointer-events: none;
}
.fade_group div {
	z-index: 9999;
	transition: .6s;
}
.fade_group2 div {
	z-index: 9998;
	transition: .8s;
}
.fade_group div:nth-of-type(1) {
	background: rgba( 255, 133, 155,.3);
}
.fade_group div:nth-of-type(2) {
	background: rgba( 255, 133, 155,.5);
	transition-delay:.1s;
}
.fade_group div:nth-of-type(3) {
	background: rgba( 255, 133, 155,.7);
	transition-delay:.2s;
}
.fade_group div:nth-of-type(4) {
	background: rgba( 255,255,255,1);
	transition-delay:.3s;
}
.fade_group2 div:nth-of-type(1) {
	background: rgba( 255, 133, 155,.8);
	transition-delay: .2s;
}
.fade_group2 div:nth-of-type(2) {
	background: rgba( 255, 133, 155,.8);
	transition-delay: .3s;
}
div.fo .fade_group div{
left: 0;
}
div.fo .fade_group2 div{
left: 100vw;
}

/*コンテンツの上下余白設定*/
.contents{
	padding: 0 0 50px 0;
}

/*サブビジュアル*/
.subvisual{
	width: 100%;
	height: 45vh;
	position: relative;
	margin-bottom: 50px;
	margin-top: 72px;
}
/* @media screen and (max-width: 768px){
	.subvisual{
		margin-top: 56px;
	}
} */
.subvisual .sub_right{
	width: 70%;
	height: 35vh;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}
.subvisual .sub_right img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.subvisual .sub_left{
	width: 50%;
	height: 25vh;
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgba( 247, 230, 233, 0.9);
	z-index: 100;
}

/*サブビジュアルアニメーション*/
.subvisual .sub_right .img_wrap,
.subvisual .sub_left .img_wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
/*右画像*/
.subvisual .sub_right .img_wrap:before {
	animation: img-wrap-right 2s cubic-bezier(.4, 0, .2, 1) 0.5s forwards;
	background: #fff;
	bottom: 0;
	content: '';
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
@keyframes img-wrap-right {
	100% {
		transform: translateX(100%);
	}
}
/*左部分*/
.subvisual .sub_left .img_wrap{
	display: flex;
	align-items: center;
	justify-content: center;
}
.subvisual .sub_left .img_wrap:before {
	animation: img-wrap-left 2s cubic-bezier(.4, 0, .2, 1) 0.5s forwards;
	background: #fff;
	bottom: 0;
	content: '';
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
@keyframes img-wrap-left {
	100% {
		transform: translateX(-100%);
	}
}
/*下層ページh2設定*/
.subvisual .h2_main{
	font-size: 24px;
}

/* spレイアウト */
@media screen and (max-width: 768px){
	.subvisual {
		height: 50px;
		margin-top: 56px;
		margin-bottom: 40px;
	}
	#contents_cast .subvisual {
		margin-bottom: 60px;
	}
	.subvisual .sub_right {
		display: none;
	}
	.subvisual .sub_left {
		height: 40px;
		bottom: 10px;
	}
	.subvisual .sub_left .img_wrap {
		overflow: inherit;
	}
	.subvisual .sub_left .img_wrap:before {
		display: none;
	}
	.subvisual .sub_left .img_wrap h2 {
		position: absolute;
		top: 23px;
		left: 100%;
		transform: translateX(-50%);
		width: 100%;
		line-height: 1.4;
	}
}

/****************************************
出勤スケジュールページ
****************************************/
/* 日付選択ボタン */
#contents_schedule .schedule_nav{
	margin: 30px auto;
	display: table;
}
#contents_schedule .schedule_nav li{
	display: inline-block;
	width: 120px;
	height: 50px;
	border: 2px solid #c4b494;
	text-align: center;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	margin: 0 2px;
}
#contents_schedule .schedule_nav li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #c4b494;
	text-decoration: none;
	line-height: 50px;
	transition: all .5s ease;
	z-index: 2;
	position: relative;
}
#contents_schedule .schedule_nav li .eff_02{
	width: 120px;
	height: 50px;
	top: -50px;
	background: #c4b494;
	position: absolute;
	transition: all .5s ease;
	z-index: 1;
}
#contents_schedule .schedule_nav li:hover .eff_02{
	top: 0;
}
#contents_schedule .schedule_nav li:hover a{
	color: #fff;
}
#contents_schedule .schedule_nav li.active {
	background: #f7e6e9;
	border: 2px solid #f7e6e9;
}
#contents_schedule .schedule_nav li.active .eff_02{
	background: #f7e6e9;
}
#contents_schedule .schedule_nav li.active a{
	color: #fff;
}

@media screen and (max-width: 768px){
	#contents_schedule .schedule_nav li{
		width: 45%;
	}
	#contents_schedule .schedule_nav li .eff_02{
		width: 100%;
	}
	#contents_schedule .schedule_nav li:first-child{
		width: 92%;
	}
}
/****************************************
セラピスト一覧ページ
****************************************/
/* セラピスト検索 */
.sort_name input,
.sort_name select {
    width: 100%;
    margin: 0 auto;
    padding: 5px 10px;
    background: #fff;
    color: #534a4a;
}
.sort_name .search_box{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.sort_name .search_box input[type="text"] {
	width: 70%;
    height: 40px;
    outline: none;
    border: 1px solid #e7e7e7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #fff;
    border-radius: 0;
    margin-right: 10px;
    color: #534a4a;
}
.sort_name .search_box input[type="submit"] {
	width: 30%;
	height: 40px;
    background: #c4b494;
    border: 1px solid #fff;
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
    border-radius: 3px;
}
.sort_name select{
	-webkit-appearance: none;
  	appearance: none;
	border-radius: 0;
	border: 1px solid #e7e7e7;
	padding: 12px;
}
.sort_name select::-ms-expand {
  display: none;
}
.select_container{
	position: relative;
	margin-bottom: 20px;
}
.select_container::after {
  	content: "";
    position: absolute;
    top: 13px;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #b7b7b7;
    border-bottom: 1px solid #b7b7b7;
    transform: rotate(45deg);
}
.sort_name {
    width: 100%;
    max-width: 450px;
    margin: 30px auto 40px;
}
.sort_name p{
	margin-bottom: 4px;
}
.sort_name input {
    padding: 12px;
    border: none;
    border-radius: 0;
}
.sort_name .btn_box a {
    background: #fff;
    border: 1px solid #c4b494;
    color: #c4b494;
    font-size: 12px;
    padding: 6px 30px;
    border-radius: 3px;
}
@media screen and (max-width:500px) {
    .sort_name {
        padding: 0 20px;
        margin: 0 auto 30px;
    }
}
/****************************************
プロフィールページ
****************************************/
#contents_profile .subvisual{
	margin-bottom: 0;
}

#contents_profile .bg{
	margin-top: -50px;
	padding: 100px 0;
	width: 100%;
	background: url(../images/bg_profile.jpg) center no-repeat;
	background-size: cover;
}
@media screen and (max-width: 768px){
	#contents_profile .bg{
		padding: 70px 0 100px;
	}
}

#contents_profile .profile_right_wrap,
#contents_profile .profile_box_right,
#contents_profile .profile_box_left{
	display: inline-block;
	margin: 30px auto;
	vertical-align: top;
}

/*左：写真部分設定*/
#contents_profile .profile_box_left{
	width: 440px;
}
#contents_profile .profile_box_left .img_box{
	width: 300px;
	height: 450px;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
}
#contents_profile .profile_box_left .img_box .icon_box{
	display: flex;
	position: absolute;
	top: 5px;
	left: 5px;
}
#contents_profile .profile_box_left .img_box .icon_box .icon_new{
	width: 100%;
	max-width: 60px;
	margin-right: 5px;
}
#contents_profile .profile_box_left .img_box .icon_box .icon_twitter{
	width: 100%;
	max-width: 60px;
}

/*
#contents_profile .profile_box_left .img_box .icon_new{
	width: 20%;
	max-width: 60px;
	position: absolute;
	top: 5px;
	left: 5px;
}
*/
#contents_profile .profile_box_left .img_box .icon_class01{
	width: 20%;
	max-width: 60px;
	position: absolute;
	bottom: 5px;
	left: 70px;
}
/*セラピスト写真サムネイル*/
#contents_profile .profile_box_left .cast_thumb{
	width: 70px;
	height: 100px;
	margin-bottom: 4px;
}
/*以下のサイズはサイトに合わせてください*/
#contents_profile .img_box > img{
	max-width: 300px;
	max-height: 450px;
}
#contents_profile .img_box > video{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_box_schedule{
	clear: both;
}

/*右：プロフィール内容設定*/
#contents_profile .profile_box_right{
	width: 500px;
	background: rgba( 255, 255, 255, 0.9);
	border: 5px solid #f7e6e9;
	border-radius: 25px;
	padding: 30px;
}
#contents_profile .profile_box_right h3{
	color: #f5bdc7;
	margin: 20px 0 10px;
}
#contents_profile .profile_box_right h3 span:before,
#contents_profile .profile_box_right h3 span:after{
	background-color: #f5bdc7;
}
#contents_profile .profile_box_right .twitter{
	/* box-shadow: 0 0 10px rgba( 0, 0, 0, 0.1); */
}
#contents_profile .profile_box_right .twitter img{
	width: 100%;
	height: auto;
}
#contents_profile .profile_box_right .txt{
	text-align: left;
}
#contents_profile .profile_box_right .class_icon {
	margin-bottom: 10px;
}
#contents_profile .profile_box_right .class_icon img {
	max-width:100px ;
}
#contents_profile .profile_box_right .prof_size {
	display: flex;
	gap: 0 60px;
	margin: auto;
	justify-content: center;
}
#contents_profile .profile_box_right .prof_size::after {
	display: none;
}


/*プロフィールページ出勤スケジュール表*/
.profile_box_schedule {
	padding-top: 0;
}
.profile_box_schedule h3 {
	margin-bottom: 30px;
}
.profile_box_schedule .icon_exp img {
	max-width: 350px;
	height: auto;
	margin-bottom: 5px;
}

.profile_box_schedule .profile_sch_box {
	width: 100%;
	box-sizing: border-box;
	/* border: 1px solid #fff2f4; */
	display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px 0;
    grid-template-rows: 2fr;
    box-sizing: border-box;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable {
	width: 100%;
	flex-grow: 1;
	border-left: 1px solid #fff2f4;
    border-bottom: 1px solid #fff2f4;
}
.profile_box_schedule .profile_sch_box div:nth-of-type(7).profile_sch_variable .profile_sch_date,
.profile_box_schedule .profile_sch_box div:nth-of-type(7).profile_sch_variable .profile_sch_check,
.profile_box_schedule .profile_sch_box div:nth-of-type(14).profile_sch_variable .profile_sch_date,
.profile_box_schedule .profile_sch_box div:nth-of-type(14).profile_sch_variable .profile_sch_check{
	border-right: 1px solid #fff2f4;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
	padding: .5em 1em;
	border-left: 1px solid #fff2f4;
	border-bottom: 1px solid #fff2f4;
	background: #f7e6e9;
}
.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 94px;
	padding: .5em 0;
	text-align: center;
	border-left: 1px solid #fff2f4;
}
/* .profile_box_schedule .profile_sch_active {
    background: #fcdbe1;
} */
.profile_box_schedule span {
	text-align: center;
	display: inline-block;
}

.profile_box_schedule .profile_sch_active .active_circle::before {
	display: inline-block;
	margin: 0 3px 0 0;
	width: 10px;
	height: 10px;
	content: '';
	border: 2px solid #D87B75;
	border-radius: 100%;
	text-align: center;
    vertical-align: text-top;
	/* background:#c0c0c0; */
    /* background: url(../images/icon_tab_nav_time.png) left center / clamp(10px, 1.4vw, 12px) no-repeat;
	padding: 0 clamp(10px, 1.7vw, 18px); */
}
.profile_box_schedule .table_02 td {
	height: 94px;
}
.profile_box_schedule .kakko {
	position: relative;
	padding: 4px 10px;
	margin-top: 5px;
}
.profile_box_schedule .kakko::before,
.profile_box_schedule .kakko::after{
	position: absolute;
    width: 10px;
    height: 100%;
    content: '';
    border-top: solid 1px;
    border-bottom: solid 1px;
}
.profile_box_schedule .kakko::before {
    border-left: solid 1px;
    left: 0;
	top: 0;
}
.profile_box_schedule .kakko::after {
    border-right: solid 1px;
    right: 0;
	top: 0;
}
.profile_box_schedule .icon_time {
    max-width: 60px;
}

#profile_box_movie {
	margin-bottom: 80px;
}
#profile_box_movie h3{
	margin-bottom: 20px;
}
.movie_list_wide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.movie_list_wide li {
  width: 290px;
  background: #fff;
  box-shadow: 0 0px 10px #0000001a;
  margin: 0 20px 20px;
  padding: 10px;
  transition-duration: 0.3s;
}

@media (max-width: 960px) {
	#contents_profile .profile_right_wrap,
	#contents_profile .profile_box_right,
	#contents_profile .profile_box_left{
		width: 100%;
	}
	#contents_profile .profile_right_wrap{
		margin: 0 auto;
	}
	#contents_profile .profile_box_right{
		padding: 15px;
	}
	.profile_box_schedule .profile_sch_box.profile_sch_thisweek_box {
		display: block;
		margin-bottom: 20px;
	}
	.profile_box_schedule .profile_sch_box.profile_sch_thisweek_box .profile_sch_variable {
		flex-grow: unset;
		display: flex;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_date {
		flex-basis: 50%;
		border-left: none;
		padding: .7em 1em .5em;
		display: flex;
        justify-content: center;
        align-items: center;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable .profile_sch_check {
		flex-basis: 50%;
		border-bottom: 1px solid #fff2f4;
		height: auto;
	}
	.profile_box_schedule .table_02 td {
		height: auto;
	}
	.profile_box_schedule .profile_sch_box div:nth-of-type(1).profile_sch_variable .profile_sch_check{
		border-left: 1px solid #fff2f4;
	}
	.profile_box_schedule .profile_sch_box .profile_sch_variable:last-child .profile_sch_date,
	.profile_box_schedule .profile_sch_box .profile_sch_variable:last-child .profile_sch_check {
		border-bottom: none;
	}

	.profile_box_schedule .profile_sch_box div:nth-of-type(7).profile_sch_variable .profile_sch_date,
	.profile_box_schedule .profile_sch_box div:nth-of-type(7).profile_sch_variable .profile_sch_check,
	.profile_box_schedule .profile_sch_box div:nth-of-type(14).profile_sch_variable .profile_sch_date,
	.profile_box_schedule .profile_sch_box div:nth-of-type(14).profile_sch_variable .profile_sch_check {
		border-right: none;
	}
	.profile_box_schedule .profile_sch_active span {
		background-size: 12px;
		padding: 0 18px;
	}
	.profile_box_schedule .kakko {
		margin-bottom: 5px;
	}
}

/* Movie 動画 */
#movie_top {
	margin-bottom: 80px;
}
#movie_top h3{
	margin-bottom: 20px;
}
#movie_top .movie_detail_box{
	/* width: 95%; */
	/* max-width: 1000px; */
	height: 70vh;
	aspect-ratio: 3 / 4;
	position: relative;
	margin: 0 auto;
	background-color: #484040;
	background: linear-gradient( #484040 0%, #222 100%);
}
@media screen and (max-width: 480px){
	#movie_top .movie_detail_box{
		width: 90%;
		height: 65vh;
	}
}
#movie_top .movie_detail_box video{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	/* aspect-ratio: 16 / 9; */
	/* object-fit: cover; */
}

.profile_movie .movie_detail_box{
	width: 100%;
    height: auto;
    position: relative;
}
.profile_movie .btn_more01{
	border: 1px solid #c4b494;
	background-color: #fff;
	font-size: 14px;
}

/*
header ul.nav_pc li a{
	position: relative;
	text-decoration: none;
	moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
header ul.nav_pc li a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #d87975;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
header ul.nav_pc li a:hover {
	color: #d87975;
}
header ul.nav_pc li a:hover::after {
	transform: scale(1, 1);
}
*/

/****************************************
ブログ
****************************************/
.profile_box_blog {
	padding-top: 0;
}
@media screen and (max-width: 768px){
	.profile_box_blog {
		padding-top: 5%;
	}
}

/* リスト */
.profile_box_blog h3 {
	margin-bottom: 30px;
}
#section_blog ul ,
#contents_blog ul.blog_box ,
.profile_box_blog ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
#section_blog ul li ,
#contents_blog ul.blog_box li ,
.profile_box_blog ul li {
	border: solid 1px #f7e6e9;
	border-radius: 2px;
	text-align: left;
	line-height: 1.2;
	word-break: break-word; 
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	row-gap: 15px;
}
#section_blog ul li::after ,
#contents_blog ul.blog_box li::after ,
.profile_box_blog ul li::after {
	content: none;
}
#section_blog ul li a ,
#contents_blog ul.blog_box li a ,
.profile_box_blog ul li a {
	display: block;
	padding: 15px;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
}
#section_blog ul li a:hover ,
#contents_blog ul.blog_box li a:hover ,
.profile_box_blog ul li a:hover {
	opacity: 1;
}
#section_blog ul li .img_box ,
#contents_blog ul.blog_box li .img_box ,
.profile_box_blog ul li .img_box {
	overflow: hidden;
}
#section_blog ul li .img_box img ,
#contents_blog ul.blog_box li .img_box img ,
.profile_box_blog ul li .img_box img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 / 1.2;
	transition: all .4s ease-out;
}
#section_blog ul li a:hover .img_box img ,
#contents_blog ul.blog_box li a:hover .img_box img ,
.profile_box_blog ul li a:hover .img_box img {
	transform: scale(1.05);
}
#section_blog ul li h3 ,
#contents_blog ul.blog_box li h3 ,
.profile_box_blog ul li h4 {
	font-size: 14px;
	text-align: left;
}
#section_blog ul li .txt_box ,
#contents_blog ul.blog_box li .txt_box ,
.profile_box_blog ul li .txt_box {
	display: flex;
	flex-direction: row;
	gap: 8px;
}
#section_blog ul li .time ,
#contents_blog ul.blog_box li .time ,
.profile_box_blog ul li .time {
	color: #827474;
	font-size: 11px;
}
#section_blog ul li .name ,
#contents_blog ul.blog_box li .name ,
.profile_box_blog ul li .name {
	/* color: #d87975; */
	color: #827474;
	font-size: 11px;
}
#section_blog ul li .name:after ,
#contents_blog ul.blog_box li .name:after ,
.profile_box_blog ul li .name:after {
	content: none;
}

@media screen and (max-width: 768px){
	#section_blog ul ,
	#contents_blog ul.blog_box ,
	.profile_box_blog ul {
		grid-template-columns: repeat(2, 1fr);
	}
	#section_blog ul li .txt_box ,
	#contents_blog ul.blog_box li .txt_box ,
	.profile_box_blog ul li .txt_box {
		flex-direction: column;
		gap: 4px;
	}
}

/* ページャー（一覧ページ） */
#contents_blog ul.blog_btn {
	margin-top: 30px;
	display: flex;
	justify-content: center;
}
#contents_blog ul.blog_btn li a {
	display: block;
	padding: 3px 5px;
	margin: 0 5px;
	position: relative;
	moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
#contents_blog ul.blog_btn li a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #d87975;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#contents_blog ul.blog_btn li span ,
#contents_blog ul.blog_btn li a:hover {
	display: block;
	padding: 3px 5px;
	margin: 0 5px;
	color: #d87975;
}
#contents_blog ul.blog_btn li a:hover::after {
	transform: scale(1, 1);
}

/* 詳細ページ */
#contents_blog_detail .inner {
	max-width: 600px;
	text-align: left;
}
#contents_blog_detail #blog_anchor {
	scroll-margin-top:120px;
}
#contents_blog_detail .blog_title {
	border: 5px solid #f7e6e9;
	border-radius: 25px;
	padding: 25px;
	line-height: 1.4;
	margin-bottom: 50px;
}
#contents_blog_detail .blog_title h3 {
	text-align: left;
}
#contents_blog_detail .blog_title .time {
	color: #827474;
	font-size: 11px;
	margin-top: 15px;
}
#contents_blog_detail .editor_box img {
	max-width: 100% !important;
	height: auto !important;
}
#contents_blog_detail .blog_title ,
#contents_blog_detail .editor_box {
	word-break: break-word; 
}
@media screen and (max-width: 768px){
	#contents_blog_detail #blog_anchor {
		scroll-margin-top:100px;
	}
	#contents_blog ul.blog_btn {
		margin-top: 10px;
	}
}

/* ページャー（詳細ページ） */
#contents_blog_detail .other_blog {
	margin-top: 50px;
	padding-top: 10px;
	border-top: solid 1px #f7e6e9;
}
#contents_blog_detail .other_blog ul {
	display: flex;
}
#contents_blog_detail .other_blog ul li {
	width: 100%;
}
#contents_blog_detail .other_blog ul li.prev {
	text-align: left;
}
#contents_blog_detail .other_blog ul li.next {
	text-align: right;
}
#contents_blog_detail .other_blog ul li a {
	position: relative;
	display: inline-block;
	padding: 3px 5px;
	moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
#contents_blog_detail .other_blog ul li a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #d87975;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#contents_blog_detail .other_blog ul li a:hover {
	color: #d87975;
	opacity: 1;
}
#contents_blog_detail .other_blog ul li a:hover::after {
	transform: scale(1, 1);
}

/****************************************
料金システムページ
****************************************/
/*料金システム*/
#contents_system .inner{
	max-width: 600px;
}
#contents_system h3{
	margin-bottom: 20px;
}
#contents_system .system_box{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}
#contents_system .system_box:nth-of-type(1){
	margin-bottom: 0;
}
#contents_system .system_frame{
	width: 220px;
	height: 220px;
	border: 5px solid #f7e6e9;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px;
}
#contents_system .system_frame_02{
	width: 100%;
	max-width: 460px;
	height: 220px;
	border: 5px solid #f7e6e9;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1%;
}
#contents_system .system_frame p{
	font-size: 22px;
}
#contents_system .system_frame_02 p{
	font-size: 20px;
}
#contents_system .txt{
	width: 100%;
	max-width: 500px;
	margin: 10px auto 50px;
	text-align: left;
	color: #827474;
}
/****************************************
アクセスページ
****************************************/
#contents_access .table_01 td{
	text-align: center;
}
/****************************************
求人情報ページ
****************************************/
#contents_recruit .subvisual{
	margin-bottom: 0;
}
#contents_recruit .bg{
	margin-top: -50px;
	margin-bottom: 30px;
	padding: 100px 0 30px;
	width: 100%;
	background: url(../images/bg_recruit.jpg) top center no-repeat;
	background-size: cover;
}
#contents_recruit .recruit_inner{
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
}
#contents_recruit .recruit_inner .img_01{
	width: 100%;
	max-width: 500px;
}
#contents_recruit .recruit_inner .img_02{
	width: 60%;
	max-width: 300px;
}
#contents_recruit .recruit_inner h3{
	max-width: 500px;
	margin: 20px auto 10px;
}
#contents_recruit .recruit_box{
	display: flex;
	align-items: center;
	justify-content: center;
}
#contents_recruit .recruit_frame{
	width: 220px;
	height: 220px;
	background: #fff;
	border: 5px solid #f7e6e9;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px;
}
#contents_recruit .recruit_frame p.txt_01{
	font-size: 18px;
}
#contents_recruit .recruit_frame p .atten_01{
	line-height: 1;
}
#contents_recruit .recruit_txt{
	font-size: 15px;
	max-width: 550px;
	margin: 30px auto;
}
#contents_recruit .recruit_link{
	display: inline-block;
	color: #c4b494;
}
#contents_recruit .method {
	margin-top: 0px;
}

@media screen and (max-width: 768px){
	#contents_recruit .recruit_txt{
		font-size: 12px;
	}
}
/****************************************
リンクページ
****************************************/
#contents_link .inner img{
	width: unset;
}
#contents_link h3{
	margin: 20px 0;
}
/****************************************
404ページ
****************************************/
#contents_err {
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.3;
	text-align: left;
	background-image: none;
	background-color: #ffffff;
}
#contents_err #err_title {
	font-size: 56px;
	font-weight: bold;
	line-height: 1.4;
	padding: 0;
	margin: 0;
}
#contents_err #err_subtitle {
	font-size: 26px;
	font-weight: bold;
	margin: 0 0 40px 0;
}
#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;
}
