
/* Reset */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
}
body {
	line-height:1;
	font-family: sans-serif;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}
nav 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;
}
/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
/* change colours to suit your needs */
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;
}
/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
/* form */
input:focus,
textarea:focus,
select:focus {
	outline: 0;
}
input {
	text-decoration: none;
}
input[type="submit"] {
	background-color: transparent;
	border: none;
	border-radius: 0;
	cursor : pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="text"] {
	border-radius: 0;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
::-webkit-input-placeholder {
	color: #bfbfbf;
}
::-ms-input-placeholder {
	color: #bfbfbf;
}
::placeholder {
	color: #bfbfbf;
}

ol, ul, li {
	list-style: none;
}
/* /Reset */


/***********************************************
カラーピッカーでの色変更用
***********************************************/
:root {
    --main_color: #fff;
    --main_color_r: 255;
    --main_color_g: 255;
    --main_color_b: 255;
    --font_color: #fff;
    --font_color_r: 255;
    --font_color_b: 255;
    --font_color_a: 255;
}

/***********************************************
Common
***********************************************/
h2 {
	margin-bottom: 16px;
	text-align: center;
	letter-spacing: 2px;
	font-size: 10px;
	transform: scale(0.8, 0.8);
	font-weight: normal;
}
h2::before {
	margin-bottom: 4px;
	display: block;
	font-size: 20px;
	font-weight: bold;
}
.square {
	margin-bottom: 16px;
	padding: 8px 16px;
	border: 1px solid #000;
	font-size: 13px;
	line-height: 1.4;
	text-align: justify;
	text-justify: inter-ideograph;
}
.btn {
	width: 240px;
	margin: 24px auto;
	background: #000;
	border-radius: 25px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	display: block;
	position: relative;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.btn::after {
	margin: 0 0 0 0;
	content: "\f105";
	font-family: "FontAwesome";
	position: absolute;
	top: 0;
	right: 15px;
}
.btn input {
	width: 100%;
	padding: 0;
	line-height: 50px;
	display: block;
	color: #fff;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.btn:hover,
.btn input:hover {
	opacity: .6;
}
.text-blue {
	color: #3766d2;
}
.text-red {
	color: #d23737;
}
.text-small {
	font-size: 10px;
}
.text-center {
	text-align: center;
}
.is-hide {
	display: none;
}
/***********************************************
Header
***********************************************/
header {
	padding-top: 68px;
	position: relative;
}
h1 {
	padding: 4px 8px;
	font-size: 10px;
	color: #fff;
	position: absolute;
	z-index: 1;
	line-height: 1.4;
	text-shadow: black 0 0 5px;
}
/* ******** Note ******** */
.header-note {
	width: 100%;
	height: 20px;
	background: #000;
	line-height: 20px;
	text-align: center;
	font-size: 10px;
	font-weight: 600;
	cursor:pointer;
	color: #fff;
	position: fixed;
	top: 0;
	z-index: 2;
}
.header-note p {
	opacity: 1;
	transition: .4s ease-in-out;
}
.header-note p:hover {
	opacity: .6;
}
/* ******** Note Modal ******** */
.modal-note {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, .8);
	overflow: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
}
.modal-note-content {
	width: 100%;
	min-height: 100%;
	padding: 4%;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 9999;
}
.modal-note-content .modal-note-inner {
	width: 100%;
	max-width: 480px;
	height: auto;
}
.modal-note-content .note-txt {
	padding: 6%;
	background: #fff;
	border-radius: 4px 4px 0 0;
	font-size: 12px;
	line-height: 1.6;
	text-align: justify;
}
.modal-note-content .note-txt span {
	color: #ef4343;
	font-weight: 600;
}
.modal-note-content .note-close {
	width: 100%;
	height: 40px;
	background: #000;
	border: 0;
	border-radius: 0 0 4px 4px;
	line-height: 40px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	outline: none;
	opacity: 1;
	transition: .4s ease-in-out;
}
.modal-note-content .note-close:hover {
	opacity: .8;
}
/* ******** テンプレート（コーラル） ******** */
.header-note,
.modal-note-content .note-close {
	background: var(--main_color);
}

nav {
	width: 100%;
	height: 48px;
	position: fixed;
	top: 20px;
	z-index: 2;
	background: rgba(255, 255, 255, 0.8);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* ******** Setting Background Image ******** */
#sign {
	background: url(http://hana.cocoii.work/images/main.html) no-repeat center;
	background-size: cover;
	position: relative;
	z-index: 0;
	overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}
/* ******** Setting Blur at :before ******** */
#sign:before {
	content: '';
	background: inherit;/*.bgImageで設定した背景画像を継承する*/
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
	position: absolute;
	/*ブラー効果で画像の端がボヤけた分だけ位置を調整*/
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;/*重なり順序を一番下にしておく*/
}
#sign img {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	display: block;
}
/* ******** information ******** */
#information {
	width: 100%;
	padding: 16px 0;
	background: rgba(0, 0, 0, 0.5);
	text-align: center;
}
#information div {
	max-width: 640px;
	display: inline-block;
	text-align: left;
	font-size: 18px;
}
#information a {
	margin-right: 16px;
	color: #fff;
	display: inline;
}
#information p {
	color: #fff;
	display: inline;
}
#information span {
	width: 64px;
	margin-right: 8px;
	padding: 2px 8px;
	border: 2px solid #fff;
	font-size: 18px;
	text-align: center;
	display: inline-block;
}
/* ******** PC Menu ******** */
#header-menu-pc ul {
	height: 48px;
	border-left: 8px solid #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#header-menu-pc ul li {
	width: 120px;
}
#header-menu-pc ul li:last-child a {
	border: none;
}
#header-menu-pc ul li a {
	padding-left: 8px;
	border-right: 1px solid #000;
	color: #000;
	letter-spacing: 1px;
	font-weight: bold;
	display: block;
}
#header-menu-pc ul li a span {
	letter-spacing: 0;
	font-size: 10px;
	font-weight: normal;
	display: block;
}
/* ******** SP Modal Menu ******** */
.menu-toggle {
	width: 38px;
	height: 40px;
	padding: 8px 0 0 10px;
	background: #000;
}
.menu-toggle .menu-trigger,
.menu-toggle .menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-toggle .menu-trigger {
	position: relative;
	width: 28px;
	height: 19px;
}
.menu-toggle .menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
}
.menu-toggle .menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-toggle .menu-trigger span:nth-of-type(2) {
	top: 8px;
}
.menu-toggle .menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-toggle .menu-trigger p {
	position: absolute;
	top: 23px;
	left: 0;
	right: 0;
	font-size: 10px;
	color: #fff;
}
/* #header-menu-sp .modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#80000000,endColorstr=#80000000);
	background: rgba(255, 255, 255, 0.6);
}
#header-menu-sp .modal-wrap {
	max-width: 480px;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#header-menu-sp .modal-content {
	height: 100%;
	max-width: 960px;
	margin: 0 auto;
}
#header-menu-sp .modal-table-wrap {
	display: table;
	table-layout: fixed;
	height: 100%;
	width: 100%;
}
#header-menu-sp .modal-table-cell {
	width: 100%;
	max-width: 640px;
	display: table-cell;
	padding: 10px 0 10px;
	vertical-align: middle;
}
#header-menu-sp .modal-content-box {
	position: relative;
	margin: 0 auto;
	background: #fff;
}
#header-menu-sp .modal-content-inner {
	height: 90vh;
	padding: 50px 0 50px;
	background: #000;
} */
/* #header-menu-sp .modal-btn-close {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 9;
	height: 30px;
	width: 30px;
	cursor: pointer;
}
#header-menu-sp .modal-btn-close span {
	display: block;
	background: #fff;
	height: 2px;
	width: 30px;
}
#header-menu-sp .modal-btn-close .bar01 {
	-moz-transform: translateY(15px) rotate(-45deg);
	-ms-transform: translateY(15px) rotate(-45deg);
	-webkit-transform: translateY(15px) rotate(-45deg);
	transform: translateY(15px) rotate(-45deg);
}
#header-menu-sp .modal-btn-close .bar02 {
	-moz-transform: translateY(13px) rotate(45deg);
	-ms-transform: translateY(13px) rotate(45deg);
	-webkit-transform: translateY(13px) rotate(45deg);
	transform: translateY(13px) rotate(45deg);
} */
#header-menu-sp {
	background: #000;
}
.modaal-container {
	max-width: 380px;
}
.modaal-content-container {
	background: #fff;
	width: 100%;
	padding: 0;
}
.modaal-inner-wrapper {
	padding: 16px;
}
.modal-head {
	padding: 40px 24px 16px;
	background:
		rgb(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b)
		);
}
.modal-head p {
	color: #fff;
	text-align: center;
}
.modal-head p:first-child {
	margin-bottom: 16px;
	text-align: center;
	letter-spacing: 2px;
	font-size: 10px;
	transform: scale(0.8, 0.8);
	font-weight: normal;
}
.modal-head p:first-child::before {
	content: "MENU";
	margin-bottom: 4px;
	display: block;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 4px;
}
.modal-head p:nth-child(2) {
	margin-bottom: 16px;
}
.modal-head p:nth-child(2)::before {
	margin-right: 8px;
	content: "\f105";
	font-family: "FontAwesome";
}
.modal-head a {
	/* width: 240px; */
	margin: 0 auto;
	padding: 10px 0;
	border: 1px solid #fff;
	border-radius: 40px;
	background: #fff;
	font-size: 12px;
	text-align: center;
	color: #000;
	display: block;
}
.modal-body {
	padding: 16px 48px 32px;
	background: #151515;
}
.modal-body li a {
	padding: 16px 0;
	border-bottom: 1px solid #2d2d2d;
	color: #fff;
	font-size: 14px;
	display: block;
	position: relative;
}
.modal-body li a::before {
	margin-bottom: 4px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 4px;
}
.modal-body li a::after {
	content: "\f105";
	font-family: "FontAwesome";
	position: absolute;
	right: 0;
}
.modal-body li a span {
	font-size: 10px;
	color: #b6b6b6;
}
.modal-tail {
	padding: 16px 24px;
	background:
		rgb(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b)
		);
}
.modal-tail p {
	margin-bottom: 8px;
	color: #b6b6b6;
	font-size: 13px;
}
.modal-tail p span {
	width: 46px;
	margin-right: 4px;
	padding: 2px 8px;
	border: 1px solid #b6b6b6;
	font-size: 10px;
	text-align: center;
	display: inline-block;
}
.modal-tail a {
	margin-bottom: 8px;
	color: #b6b6b6;
	font-size: 13px;
	display: block;
}
.modal-tail a span {
	width: 46px;
	margin-right: 4px;
	padding: 2px 8px;
	border: 1px solid #b6b6b6;
	font-size: 10px;
	text-align: center;
	display: inline-block;
}
/* ******** Header Tel ******** */
nav a.call-ignition {
	width: 100%;
	max-width: 240px;
	margin: 0 5px 0 auto;
	padding: 13px 0;
	background: #000;
	border-radius: 20px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
}
nav a.call-ignition > span span {
	margin-right: 8px;
	padding: 2px 8px;
	border: 2px solid #fff;
	font-size: 10px;
}

/***********************************************
Footer
***********************************************/
footer {
	background: #f5f5f5;
}
footer div {
	padding: 16px 24px;
}
footer div p {
	margin-bottom: 8px;
	color: #585858;
	font-size: 13px;
}
footer div p:first-child {
	font-weight: bold;
	line-height: 1.4;
}
footer div a {
	margin-bottom: 8px;
	color: #585858;
	font-size: 13px;
	display: block;
}
footer div span {
	width: 30px;
	margin-right: 4px;
	padding: 2px 8px;
	border: 1px solid #585858;
	font-size: 10px;
	text-align: center;
	display: inline-block;
}
footer p small {
	font-size: 10px;
	line-height: 1.4;
}
footer .power {
	padding: 16px 0;
	background: #000;
	color: #4d4d4d;
	font-size: 12px;
	display: block;
	text-align: center;
}
footer .power span {
	padding-bottom: 2px;
	border-bottom: 1px solid #585858;
}

/***********************************************
Main
***********************************************/
main section,
aside section {
	padding: 16px 24px;
}
/* ******** Event ******** */
#event {
	background: #fff;
}
#event h2::before {
	content: "EVENT";
}
#event ul li img {
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	display: block;
}

/* ******** Pickup ******** */
#pickup {
	background: #f5f5f5;
}
#pickup h2::before {
	content: "PICK UP";
}
#pickup ul {
	width: 240px;
	margin: 0 auto;
}
#pickup ul li {
	border-radius: 10px;
	background: #000;
	color: #fff;
	overflow: hidden;
}
#pickup ul li .pickup-image {
	background: rgba(255, 255, 255, 0.4);
}
#pickup ul li img {
	width: 240px;
	/*height: 360px;*/
	margin: 0 auto;
}
#pickup ul li a {
	color: #fff;
}
#pickup ul li .pickup-text {
	padding: 6px 0 8px;
	font-size: 12px;
	text-align: center;
}
#pickup ul li .pickup-schedule {
	margin-top: 6px;
	padding: 4px 8px;
	border: 1px solid #fff;
	display: inline-block;
}
/* ******** Message ******** */
#message {
	background: #fff;
}
#message h2::before {
	content: "MESSAGE";
}
#message div {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.6;
	word-wrap: break-word;
	box-sizing: border-box;
}
#message div img {
	max-width: 100% !important;
	height: auto !important;
}
/* ******** News ******** */
#news {
	background: #f5f5f5;
}
#news h2::before {
	content: "NEWS";
}
#news article {
	width: 640px;
	margin: 0 auto;
}
#news article h3 {
	line-height: 1.4;
    /* padding: 10px 16px 8px; */
    /* margin: 0 0 8px; */
    /* background: #e1d3bc; */
    overflow: hidden;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #3b2300;
    background: linear-gradient(transparent 65%, #ff8686 65%);
}
#news article time {
	margin-bottom: 16px;
	padding-bottom: 2px;
	/* border-bottom: 2px solid #7d7d7d; */
	font-size: 10px;
	font-weight: bold;
	color: #585858;
	display: inline-block;
}
#news article p {
	font-size: 14px;
	line-height: 1.4;
}
#news article .news-discount {
	margin: 0 16px 16px;
    padding: 10px 16px 8px;
    border-radius: 4px;
    background: #f8cbd4;
    line-height: 1.4;
    font-size: 14px;
    font-weight: bold;
    color: #d6294a;
}
#news article .news-inner {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#news article .news-comment {
	width: 456px;
	margin: 0 24px 0 0;
	font-size: 12px;
    line-height: 1.6;
}
#news article .news-image {
	width: 160px;
}
#news article .news-image img {
	width: 100%;
}
/* ******** System ******** */
#system {
	background: #fff;
}
#system .system_editor_box {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.4;
	font-size: 14px;
}
#system .system_editor_box img {
	max-width: 100% !important;
	height: auto !important;
}
#system h2::before {
	content: "SYSTEM";
}
#system .system_outer {
	margin-bottom: 32px;
    padding: 16px;
    border: 1px solid #000;
}

#system .system_outer .system_title {
	margin-bottom: 16px;
	font-weight: bold;
	letter-spacing: 2px;
}
#system .system_outer .system_title::before {
	content: "\f0d7";
	font-family: "FontAwesome";
}
#system .system_outer .system_desc {
	padding: 8px 16px;
	border-radius: 8px;
	background: #e6e6e6;
	color: #8a8a8a;
	font-size: 12px;
	text-align: justify;
	text-justify: inter-ideograph;
}

#system .system_inner {
	width: 88%;
	margin: 0 auto 20px;
}
#system .system_inner .row_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 16px;
	margin-bottom: 4px;
	text-align: right;
	box-sizing: border-box;
	border-bottom: 1px solid #000;
}
#system .system_inner .row_box > div {
	text-align: right;
	box-sizing: border-box;
	border-right: 1px dashed #b6b6b6;
}
#system .system_inner .row_box > div:last-child {
	border-right: none;
}
#system .system_inner .row_box > div span {
	font-size: 16px;
}
#system .system_inner .system_complement {
	color: #8e8e8e;
	font-size: 12px;
	text-align: justify;
	text-justify: inter-ideograph;
}



/* 2カラム設定 */
#system .column_2 .row_box > div {
	padding: 0 8% 4px 0;
	font-size: 48px;
}
#system .column_2 .row_box div:first-child {
	width: 40%;
}
#system .column_2 .row_box div:nth-of-type(2) {
	width: 60%;
}
/* 3カラム設定 */
#system .column_3 .row_box > div {
	padding: 0 6% 4px 0;
	font-size: 32px;
}
#system .column_3 .row_box div:first-child {
	width: 24%;
}
#system .column_3 .row_box div:nth-of-type(2) {
	width: 38%;
}
#system .column_3 .row_box div:nth-of-type(3) {
	width: 38%;
}
/* 4カラム設定 */
#system .column_4 .row_box > div {
	padding: 0 2% 4px 0;
	font-size: 24px;
}
#system .column_4 .row_box div:first-child {
	width: 16%;
}
#system .column_4 .row_box div:nth-of-type(2) {
	width: 28%;
}
#system .column_4 .row_box div:nth-of-type(3) {
	width: 28%;
}
#system .column_4 .row_box div:nth-of-type(4) {
	width: 28%;
}


#system .caution {
	font-size: 10px;
	color: #b6b6b6;
	text-align: justify;
	text-justify: inter-ideograph;
}
#system .caution p {
	margin-bottom: 8px;
	line-height: 1.2;
}
#system .caution .caution_caption {
	margin-bottom: 4px;
	padding-left: 4px;
	border-left: 4px solid #b6b6b6;
}



/* ******** Staff ******** */
#staff {
	background: #f5f5f5;
}
#staff h2::before {
	content: "THERAPIST";
}
#staff {
	padding-right: 16px;
	padding-left: 16px;
}
#staff ul {
	width: 100%;
	max-width: 508px;
	margin: 0 auto;
}
#staff ul .staff_list {
	margin-bottom: 24px;
	padding: 16px 16px 8px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 0 14px 2px rgba(0, 0, 0, 0.1);
}
#staff ul li .staff-inner {
	margin-bottom: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	overflow: hidden;
}
#staff ul li .name {
	margin: 0 0 8px -16px;
	padding-left: 8px;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	border-left: 6px solid #000;
}
#staff ul li .name span {
	margin-left: 8px;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #b6b6b6;
}
#staff ul li .image {
	width: 42%;
	max-width: 200px;
}
#staff ul li .image img {
	width: 100%;
}
#staff ul li .image div img {
	width: 50%;
	box-sizing: border-box;
}
#staff ul li .image .thumbnail {
	margin-bottom: 16px;
	display: flex;
	justify-content: space-around;
}
#staff ul li .image .thumbnail a {
	width: 48%;
}
#staff ul li .image .thumbnail img {
	width: 100%;
	object-fit: cover;
}

#staff ul li .information {
	width: 54%;
	font-size: 12px;
	text-align: justify;
	text-justify: inter-ideograph;
}

#staff ul li .information .schedule-title {
	padding: 4px 12px 2px;
	border-radius: 4px 4px 0 0;
	background: #000;
	color: #fff;
	display: inline-block;
}
#staff ul li .information .schedule {
	padding: 16px 24px 15px 24px;
	border: 2px solid #000;
	border-radius: 0 4px 4px 4px;
}
#staff ul li .information .schedule p:first-child {
	/* margin-bottom: 8px;
	font-size: 10px;
	letter-spacing: 2px;
	font-weight: bold;
	text-align: center; */
}
#staff ul li .information .schedule dl dt {
	margin-bottom: 7px;
	font-size: 13px;
}
#staff ul li .information .schedule dl dt::before {
	content: "\f0d7";
	font-family: "FontAwesome";
	margin-right: 4px;
}
#staff ul li .information .schedule dl dd {
	margin-bottom: 15px;
	padding-left: 0.8em;
	font-weight: bold;
	font-size: 14px;
	word-wrap: break-word;
}
#staff ul li .information .schedule .slick_week {
	padding: 0 0 50px 0;
}
#staff ul li .information .schedule .slick_week .btn_next_week {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #b6b6b6;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
    padding: 12px 14px;
    width: 22%;
    text-align: center;
}
#staff ul li .information .schedule .slick_week .btn_prev_week {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #b6b6b6;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
    padding: 12px 14px;
    width: 22%;
    text-align: center;
}
#staff ul li .comment {
	padding: 8px 16px;
	border-radius: 4px;
	background: #f5f5f5;
	font-size: 14px;
	overflow: hidden;
}
#staff ul li .comment p:last-child {
	color: #585858;
	line-height: 1.4;
	font-size: 12px;
}
#staff ul li .information .schedule .slick_week .slick-disabled {
	display: none !important;
}
#staff ul li .information .schedule .slick_week .slick-list {
	border-bottom: 1px solid #b6b6b6;
}

/* 折りたたみここまで */
/*#staff ul li .information .schedule-more {
	width: 100%;
	padding: 8px 0 4px;
	border-top: 1px solid #b6b6b6;
	color: #b6b6b6;
	text-align: center;
	display: block;
	content: "ssss";
}
#staff ul li .comment {
	padding: 8px 16px;
	border-radius: 4px;
	background: #f5f5f5;
	font-size: 14px;
	overflow: hidden;
}
#staff ul li .comment p:last-child {
	color: #585858;
	line-height: 1.4;
	font-size: 12px;
}*/
/* 折りたたみ */
.accbox {
	max-width: 400px;/*最大幅*/
}
.accbox label {
	width: 100%;
	display: block;
	cursor :pointer;
	transition: all 0.5s;
}
/*チェックは隠す*/
.accbox input {
	display: none;
}
/*中身を非表示にしておく*/
.accbox .accshow {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
}
/*クリックで中身表示*/
.cssacc:checked + .accshow {
	height: auto;
	opacity: 1;
}
/* ******** Staff Rich ******** */
#staff_rich {
	margin: 0 auto;
	background: #f5f5f5;
}
#staff_rich h2 {
	margin-bottom: 8px;
}
#staff_rich h2::before {
	content: "THERAPIST";
}
#staff_rich > div {
	max-width: 400px;
	margin: 0 auto;
	position: relative;
}
#staff_rich > div::after {
	content: "\f107";
	font-family: "FontAwesome";
	color: #000;
	pointer-events: none;
	position: absolute;
	top: 12px;
	right: 16px;
}
#staff_rich > div form select {
	width: 100%;
	max-width: 400px;
	margin: 0 auto 16px;
	padding: 8px ;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	font-size: 14px;
	display: block;
	outline: none;
	text-align: center;
	text-indent: 37%;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@-moz-document url-prefix() {
	#staff_rich > div form select {
		text-indent: 0;
	}
}
#staff_rich ul {
	max-width: 740px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#staff_rich ul::after,
#staff_rich ul::before {
    content: "";
    display: block;
    width: 180px;
    height: 0;
}
#staff_rich ul::before {
	order: 1;
}

#staff_rich ul li {
	width: 180px;
	margin-bottom: 8px;
}

#staff_rich ul li a {
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	height: 100%;
	color: #fff;
	overflow: hidden;
	background-color: #000;
}
#staff_rich ul li a img {
	width: 180px;
    /*height: 270px;*/
	display: block;
}
#staff_rich ul li a .staff_desc {
	margin-top: auto;
	height: 50px;
	padding: 6px 0 8px;
	font-size: 10px;
	text-align: center;
	box-sizing: border-box;
}
#staff_rich ul li a .staff_desc .staff_sch {
	margin-top: 6px;
	padding: 4px 8px;
	border: 1px solid #fff;
	display: inline-block;
}



/* ******** Profile ******** */
#profile {
	max-width: 330px;
	margin: 0 auto;
}
#profile h2::before {
	content: "PROFILE";
}
#profile ul li .name {
	margin: 0 0 16px -24px;
	padding-left: 16px;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	border-left: 8px solid #000;
}
#profile ul li .name span {
	margin-left: 8px;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #b6b6b6;
}
#profile ul li .image {
	width: 100%;
	max-width: 200px;
	margin: 0 auto 8px;
}
#profile ul li .image img {
	width: 100%;
	border-radius: 8px;
	display: block;
}
#profile ul li .thumbnail {
	margin: 0 auto 8px;
	width: 200px;
}
#profile ul li .thumbnail img {
	width: 48.6%;
	height: 118px;
	object-fit: cover;
	border-radius: 8px;
}
#profile ul li .comment {
	margin-bottom: 16px;
	padding: 16px 24px;
	border-radius: 8px;
	background: #f5f5f5;
	color: #585858;
	line-height: 1.4;
	font-size: 14px;
}



#profile ul li .information {
	font-size: 12px;
	text-align: justify;
	text-justify: inter-ideograph;
}

#profile ul li .information .schedule-title {
	padding: 4px 12px 2px;
	font-size: 14px;
	border-radius: 4px 4px 0 0;
	background: #000;
	color: #fff;
	display: inline-block;
}
#profile ul li .information .schedule {
	position: relative;
	width: 100%;
	padding: 24px 6%;
	box-sizing: border-box;
	border: 2px solid #000;
	border-radius: 0 4px 4px 4px;
	display: flex;
	justify-content: space-between;
}
#profile ul li .information .schedule::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 1px;
	height: 75%;
	background-color: #666;
}

#profile ul li .information .schedule dl {
	width: 44%;
}
#profile ul li .information .schedule dl dt {
	margin-bottom: 7px;
	font-size: 13px;
}
#profile ul li .information .schedule dl dt::before {
	content: "\f0d7";
	font-family: "FontAwesome";
	margin-right: 4px;
}

#profile ul li .information .schedule dl dd {
	margin-bottom: 1.6em;
	padding-left: 0.8em;
	font-weight: bold;
	font-size: 13px;
	color: #696969;
	word-wrap: break-word;
}
#profile ul li .information .schedule .slick_week {
	padding: 0 0 50px 0;
}
#profile ul li .information .schedule .slick_week .btn_next_week {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #b6b6b6;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
    padding: 12px 14px;
    width: 22%;
    text-align: center;
}
#profile ul li .information .schedule .slick_week .btn_prev_week {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #b6b6b6;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
    padding: 12px 14px;
    width: 22%;
    text-align: center;
}
#profile ul li .comment {
	padding: 8px 16px;
	border-radius: 4px;
	background: #f5f5f5;
	font-size: 14px;
	overflow: hidden;
}
#profile ul li .comment p:last-child {
	color: #585858;
	line-height: 1.4;
	font-size: 12px;
}
#profile ul li .information .schedule .slick_week .slick-disabled {
	display: none !important;
}
#profile ul li .information .schedule .slick_week .slick-list {
	border-bottom: 1px solid #b6b6b6;
}

/* ******** Interior ******** */
#interior {
	background: #fff;
}
#interior h2::before {
	content: "Interior";
}
#interior ul li img {
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	display: block;
}

/* ******** Gallery ******** */
#gallery {
	background: #f5f5f5;
	clear: both;
}
#gallery h2::before {
	content: "GALLERY";
}
#gallery ul {
	max-width: 720px;
	margin: 0 auto;
}
#gallery ul {
	display: flex;
	flex-wrap: wrap;
}
#gallery ul li {
	width: 178px;
	height: 178px;
	margin: 0 1px 2px;
	position: relative;
}
#gallery ul li img {
	width: 178px;
	height: 178px;
	object-fit: cover;
}
#gallery ul li p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 12px;
	width: 100%;
	position: absolute;
	bottom: 0;
	background: rgba(255, 255, 255, 0.6);
	padding: 8px;
	color: #000;
	box-sizing: border-box;
}
/* ******** Access ******** */
#access {
	margin: 0 auto;
	background: #f5f5f5;
	clear: both;
}
#access h2::before {
	content: "ACCESS";
}
#access > div {
	max-width: 640px;
    margin: 0 auto;
    line-height: 1.4;
    font-size: 14px;
}
#access > div img {
	max-width: 100% !important;
	height: auto !important;
}
/* ******** Recruit ******** */
#recruit {
	background: #fff;
}
#recruit h2::before {
	content: "RECRUIT";
}
#recruit .recruit_title {
	margin: 0 auto 24px;
	padding: 10px 16px 8px;
	border-radius: 4px;
	background: #f8cbd4;
	line-height: 1.4;
	font-size: 14px;
	font-weight: bold;
	color: #505050;
	max-width: 480px;
}
#recruit .img_recruit {
	max-width: 100%;
	margin-bottom: 20px;
}
#recruit dl {
	width: 480px;
	margin: 0 auto 20px;
}
#recruit dl dt {
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 2px;
}
#recruit dl dt::before {
	content: "\f0d7";
	font-family: "FontAwesome";
	margin-right: 4px;
}
#recruit dl dd {
	margin-bottom: 16px;
	padding-bottom: 16px;
	padding-left: 11px;
	border-bottom: 1px solid #bbb;
	line-height: 1.4;
	font-size: 14px;
	word-break: break-all;
	overflow-wrap: break-all;
}
#recruit dl a {
	color: #000;
}
#recruit .recruit_option_info {
	width: 480px;
	margin: 0 auto;
	line-height: 1.4;
	text-align: left;
}
#recruit .recruit_option_info iframe {
	max-width: 100% !important;
}
#recruit .recruit_option_info .recruit_option_img {
	width: 150px;
	height: 200px;
	margin: 0 4px 20px 4px;
}
#recruit .recruit_option_info .recruit_option_txt {
	margin-bottom: 20px;
	word-break: break-all;
	overflow-wrap: break-all;
}
#recruit .recruit_option_info .recruit_line_box {
	width: 100%;
	max-width: 240px;
	margin: 0 auto 20px;
	text-align: center;
}
#recruit .recruit_option_info .recruit_line_box img {
	width: 100%;
}

.recruit-line {
	width: 100%;
	max-width: 188px;
	margin: 8px 0 0 0;
	display: none;
}
.recruit-line a {
	padding: 14px 0;
	border-radius: 4px;
	background: #00b900;
	text-align: center;
	color: #fff;
	font-weight: bold;
	display: block;
	line-height: 1;
}
.recruit-line a::before {
	content: "\f075";
	font-family: "FontAwesome";
	margin: 0 8px 0 0;
}


.recruit-icon {
	background: #CC0533;
	margin: 0 0 4px;
	padding: 2px 4px 3px;
	border-radius: 4px;
	color: #fff;
	font-size: 10px;
	display: inline-block;
	white-space: nowrap;
}
.recruit-icon-none {
	background: #d8d8d8;
	margin: 0 0 4px;
	padding: 2px 4px 3px;
	border-radius: 4px;
	color: #a7a7a7;
	font-size: 10px;
	display: inline-block;
	white-space: nowrap;
}
/* ******** Reserve ******** */
#reserve {
	background: #fff;
}
#reserve h2::before {
	content: "RESERVE";
}
#reserve ul {
	max-width: 480px;
	margin: 0 auto;
}
#reserve ul li {
	max-width: 480px;
	margin: 0 auto 16px;

}
#reserve ul li > p {
	font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
#reserve ul li > p::before {
	content: "\f0d7";
	font-family: "FontAwesome";
	margin-right: 4px;
}

#reserve ul li > p .icon_require {
	display: inline-block;
	text-align: center;
	padding: 2px 8px;
	font-size: 10px;
	font-weight: normal;
	border-radius: 8px;
	color: #151515;
	background-color: #f5eda7;
}
#reserve ul li .form_parts_box {
	position: relative;
}
#reserve ul li .form_parts_box::before {
	padding: 12px 8px;
	content: "\f040";
	font-family: "FontAwesome";
	color: #fff;
	border-radius: 8px 0 0 8px;
	background: #000;
	display: block;
	position: absolute;
	left: 0;
}

#reserve ul li .form_parts_box input {
	width: 86%;
	height: 40px;
	margin: 0 0 8px;
	padding: 0 0 0 40px;
	border: none;
	border-radius: 0 8px 8px 0;
	background: #f5f5f5;
	box-shadow: none;
	font-size: 12px;
	outline: none;
}
#reserve ul li .form_parts_box select {
	width: 86%;
	height: 40px;
	margin: 0 0 8px;
	padding: 0 0 0 40px;
	border: none;
	border-radius: 0 8px 8px 0;
	background: #f5f5f5;
	box-shadow: none;
	font-size: 12px;
	outline: none;
	box-sizing: content-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

}

#reserve ul li.text .form_parts_box::before {
	padding: 12px 8px 80px;
}
#reserve ul li.text .form_parts_box textarea {
	width: 86%;
	height: 83px;
	margin-bottom: 8px;
	padding: 13px 0 12px 40px;
	border: none;
	border-radius: 0 8px 8px 0;
	background: #f5f5f5;
	box-shadow: none;
	font-size: 12px;
	outline: none;
	overflow-y: auto;
	letter-spacing: 2px;
}
#reserve .reserve-text {
	width: 82%;
	max-width: 380px;
	margin: 0 auto;
	padding: 16px 24px;
	border: 1px solid #8c8c8c;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: #5a5a5a;
	font-feature-settings: "palt";
}
.notify-check {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.2);
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.notify-check > div {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 88%;
	max-width: 400px;
	height: 400px;
}
.notify-check .notify-check-inner {
	position: relative;
	border-radius: 8px;
	background: #fff;
	padding: 100px 40px;
	color: #5a5a5a;
	line-height: 1.4;
}
.notify-check .notify-check-inner p:nth-child(1) {
	color: #e66556;
	font-weight: bold;
	margin: 0 0 16px;
}
.notify-check .notify-check-close {
	width: 200px;
	margin: 24px auto 0;
	background: #e66556;
	border-radius: 40px;
	text-align: center;
}
.notify-check .notify-check-close button::before {
	content: "\f00d";
	font-family: "FontAwesome";
	margin: 0 8px 0 0;
}
.notify-check .notify-check-close button {
	line-height: 1;
	color: #fff;
	border: none;
	display: block;
	padding: 12px 16px;
	background: none;
	width: 100%;
}

/* ******** Twitter ******** */
#twitter {
	background: #f5f5f5;
}
#twitter > div {
	width: 480px;
	margin: 0 auto;
}
#twitter h2::before {
	content: "Twitter";
}
/* ******** Banner ******** */
#banner ul li {
	max-width: 240px;
	margin: 0 auto;
	margin-bottom: 16px;
}
#banner ul li img {
	width: 100%;
}
.menu-toggle {
	display: none;
}
.banner-link {
	position: relative;
}
.banner-link p {
	position: absolute;
	left: 53px;
	bottom: 21px;
	color: #000;
	font-size: 12px;
	font-weight: bold;
}

/***********************************************
max-width: 1024px
***********************************************/
@media (max-width: 1024px) {

	/* ******** PC Menu ******** */
	#header-menu-pc {
		width: 66%;
		/*margin-bottom: 10px;*/
	}
	/* ******** Staff Rich ******** */
	#staff_rich ul li {
	    /* width: 33.333%; */
	}

}

/***********************************************
max-width: 768px
***********************************************/
@media (max-width: 768px) {

	/* ******** information ******** */
	#information {
		padding: 8px 0;
	}
	#information div {
		font-size: 13px;
	}
	#information a {
		margin-bottom: 8px;
		margin-right: 0;
		display: inline-block;
	}
	#information p {
		display: block;
	}
	#information span {
		width: 30px;
		font-size: 10px;
		border: 1px solid #fff;
	}
	/* ******** PC Menu ******** */
	#header-menu-pc {
		display: none;
	}
	/* ******** SP Modal Menu ******** */
	#header-menu-sp {
		display: block;
	}
	#header-menu-sp .modal-wrap {
		padding: 0 3.125%;
	}
	#header-menu-sp .modal-content-inner {
		padding: 40px 0 0;
	}
	.menu-toggle {
		display: block;
	}
	/* ******** Event ******** */
	#event ul li img {
		max-width: 720px;
	}
	/* ******** Interior ******** */
	#interior ul li img {
		max-width: 720px;
	}
	/* ******** Message ******** */
	#message p {
		width: 100%;
	}
	/* ******** News ******** */
	#news article {
		width: 100%;
	}
	#news article .news-inner {
		display: block;
	}
	#news article .news-comment {
		width: 100%;
		margin: 0 0 24px 0;
	}
	#news article .news-image {
		margin: 0 auto;
	}

	/* ******** System ******** */
	#system .system_outer .row_box > div {
		font-size: 24px;
	}
	#system .system_outer .row_box > div span {
		font-size: 16px;
	}

	/* 2カラム設定 */
	#system .column_2 .row_box > div {
		font-size: 32px;
	}
	/* 3カラム設定 */
	#system .column_3 .row_box > div {
		font-size: 24px;
	}
	/* 4カラム設定 */
	#system .column_4 .row_box > div {
		font-size: 18px;
	}


	/* ******** Staff ******** */
	#staff ul li .information .thumbnail {
		margin-bottom: 4px;
		/* padding: 4px 0; */
	}
	#staff ul li .information .thumbnail img {
		/* width: 60px; */
		/* height: 60px; */
	}
	#staff ul li .information .schedule {
		padding: 8px;
	}
	#staff ul li .information .schedule dl dt {
		margin-bottom: 4px;
		font-size: 12px;
	}
	#staff ul li .information .schedule dl dd {
		margin: 0 0 8px 12px;
    	font-size: 12px;
	}
	/* ******** Staff Rich ******** */
	#staff_rich ul {
		max-width: 600px;
	}
	#staff_rich ul li {
		/*width: 33.333333%;*/
	}
	/* ******** Recruit ******** */
	#recruit dl {
		width: 100%;
	}
	#recruit .recruit_option_info {
		width: 100%;
	}
	.recruit-line {
		display: block;
	}
	#recruit .recruit_option_info .recruit_line_box {
		display: none;
	}
	/* ******** Twitter ******** */
	#twitter > div {
		width: 100%;
		max-width: 380px;
	}
	/* ******** Gallery ******** */
	#gallery ul {
		width: 88vw;
	}
	#gallery ul li {
		width: 43vw;
		height: 43vw;
		margin: 0 0.5vw 1vw;
	}
	#gallery ul li img {
		/* width: 100%; */
		width: 43vw;
		height: 43vw;
	}
}

@media (max-width: 600px) {
	/* ******** System ******** */
	/* 4カラム設定 */
	#system .column_4 .row_box > div {
		font-size: 15px;
	}

	/* ******** Staff ******** */
	#staff_rich ul {
		max-width: 375px;
	}
}

@media (max-width: 420px) {
	/* ******** System ******** */
	/* 2カラム設定 */
	#system .column_2 .row_box > div {
		font-size: 24px;
	}
	/* 3カラム設定 */
	#system .column_3 .row_box > div {
		font-size: 16px;
	}
	#system .column_3 .row_box > div span {
		font-size: 12px;
	}
	/* 4カラム設定 */
	#system .column_4 .row_box > div {
		font-size: 12px;
	}
	#system .column_4 .row_box > div span {
		font-size: 10px;
	}

	/* ******** Staff ******** */
	#staff_rich ul {
		max-width: 100%;
		align-items: flex-start;
	}
	#staff_rich ul::after,
	#staff_rich ul::before {
	    width: 49.5%;
	}
	#staff_rich ul li {
		width: 49.5%;
	}
	#staff_rich ul li a img {
		width: 100%;
		height: auto;
	}
}

/* ******** AP2管理画面から色変更可能 CSS ******** */
#header-menu-pc ul {
	border-left: 8px solid var(--main_color);
}
#header-menu-pc ul li a {
	border-right: 1px solid var(--main_color);
    color: var(--font_color);
}
nav a.call-ignition {
	background: var(--main_color);
}
#information {
	/* background: var(--main_color); */
	background:
		rgba(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b),
			0.5
		);
}
h2 {
	color: var(--font_color);
}
#pickup ul li {
	background: var(--main_color);
}
#staff_rich,
#pickup,
#news,
#gallery,
#access,
#twitter {
	background:#ffe2e2;
}
#staff ul li .name {
	border-left: 6px solid var(--main_color);
	color: var(--font_color);
}
#staff ul li .information .schedule-title {
	background: var(--main_color);
}
#staff ul li .information .schedule {
    border: 2px solid var(--main_color);
    color: var(--font_color);
}
#staff ul li .comment {
	background:
		rgba(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b),
			0.2
		);
}
#staff ul li .information .schedule .slick_week .slick-list {
	border-bottom: 1px solid var(--main_color);
}
#staff ul li .information .schedule .slick_week .btn_next_week,
#staff ul li .information .schedule .slick_week .btn_prev_week {
    color: var(--font_color);
    border: 1px solid var(--main_color);
}

#staff_rich ul li a {
	background: var(--main_color);
}
#recruit dl dt {
	color: var(--font_color);
}
#reserve ul li .form_parts_box::before {
	background: var(--main_color)
}
#reserve ul li > p {
	color: var(--font_color);
}
.btn {
	background: var(--main_color);
}
footer {
	background:
		rgba(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b),
			0.2
		);
}
footer .power {
	background: var(--main_color);
	color: var(--font_color);
}
footer .power span {
	border-bottom: 1px solid var(--font_color);
}
.menu-toggle {
	background: var(--main_color);
}
.modal-head a {
	color: var(--font_color);
}
.modal-body {
	background:
		rgba(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b),
			0.3
		);
}
.modal-body li a {
	border-bottom: 1px solid var(--font_color);
	color:
		rgba(
			var(--font_color_r),
			var(--font_color_g),
			var(--font_color_b),
			0.6
		);
}
.modal-body li a span {
	color: var(--font_color);
}
.modal-tail p {
	color: #fff;
}
.modal-tail p span {
	border: 1px solid #fff;
}
.modal-tail a {
	color: #fff;
}
.modal-tail a span {
	border: 1px solid #fff;
}
#profile ul li .name {
    border-left: 8px solid var(--font_color);
    color: var(--font_color);
}
#profile ul li .comment {
	background:
		rgba(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b),
			0.2
		);
}
#profile ul li .information .schedule-title {
	background-color: var(--main_color);
}
#profile ul li .information .schedule {
	border: 2px solid var(--main_color);
}
#profile ul li .information .schedule::after {
	background-color:
		rgba(
			var(--main_color_r),
			var(--main_color_g),
			var(--main_color_b),
			0.2
		);
}
#profile ul li .information .schedule dl dt {
	color: var(--font_color);
}
#profile ul li .information .schedule dl dt::before {
	color: var(--font_color);
}
#recruit .recruit_option_info .recruit_line_box p {
	color: var(--font_color);
}






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

* 旧料金表

******************************/
.table_4column, .table_3column, .table_2column{
    width: 100%;
}
.table_4column th, .table_3column th, .table_2column th{
    border: #d8d0c5 1px solid;
    background: #f8f5f0;
    text-align: center;
}
.table_4column td, .table_3column td, .table_2column td{
    background: #FEFDFC;
    text-align: right;
    font-size: 18px;
}
.table_4column .table_txt_box, .table_3column .table_txt_box, .table_2column .table_txt_box{
    text-align: center;
    font-size: 12px;
}
/* テーブル 4カラム */
.table_4column th, .table_4column td{
    width: 25%;
    padding: 10px;
    border: 1px solid #d8d0c5;
    box-sizing: border-box;
}
/* テーブル 3カラム */
.table_3column th, .table_3column td{
    width: 33.33%;
    padding: 10px;
    border: 1px solid #d8d0c5;
    box-sizing: border-box;
}
/* テーブル 2カラム */
.table_2column th, .table_2column td{
    width: 50%;
    padding: 10px;
    border: 1px solid #d8d0c5;
    box-sizing: border-box;
}

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

* テンプレ料金表20200525作成

******************************/
.table_frame{
	padding: 20px 10px;
	
	margin-bottom: 10px;
}
.table_frame h3{
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 15px;
	border-left: 4px solid #636363;
	padding-left: 6px;
}
/*テーブル2,3,4カラム共通*/
.table_02, .table_03, .table_04{
	width: 100%;
}
.table_02 th, .table_03 th, .table_04 th,
.table_02 td, .table_03 td, .table_04 td{
	border-right: 1px dashed #dadada;
	border-bottom: 1px solid #9a9a9a;
	padding: 10px 5px;
}
.table_02 th:last-child, .table_03 th:last-child, .table_04 th:last-child,
.table_02 td:last-child, .table_03 td:last-child, .table_04 td:last-child{
	border-right: none;
}
.table_02 th, .table_03 th, .table_04 th{
	background: #f9f9f9;
	text-align: center;
	font-size: 13px;
}
.table_04 td, .table_03 td, .table_02 td{
	text-align: right;
	font-size: 14px;
}
.table_02 .table_atten, .table_03 .table_atten, .table_04 .table_atten{
	font-size: 12px;
	color: #8e8e8e;
}
/* テーブル 4カラム */
.table_04 th, .table_04 td{
	width: 25%;
	box-sizing: border-box;
}
/* テーブル 3カラム */
.table_03 th, .table_03 td{
	width: 33.33%;
	box-sizing: border-box;
}
/* テーブル 2カラム */
.table_02 th, .table_02 td{
	width: 50%;
	box-sizing: border-box;
}






