@charset "UTF-8";
/* CSS Document */

/*SP共通*/
img{
	max-width: 100%;
	height: auto;
	width /***/:auto;　
}

.pc_cont {
	display: none !important;
}


/*header*/
header {
	width: 100%;
	height: 90px;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
}

header div {
	width: calc(100% - 30px);
	height: 90px;
	margin: 0 auto;
	position: relative;
}

header div p.read {
	font-size: 10px;
	color: #383838;
	position: absolute;
	left: 0;
	top: 7px;
	line-height: 1.5em;
}

header div .logo {
	width: 80%;
	max-width: 300px;
	position: absolute;
	left: 0;
	bottom: 15px;
}

header div > ul {
	display: none;
}

header div nav {
	display: none;
}


/*フッター*/
footer {
	background-color: #184ea9;
	padding: 0 0 0;
	color: #fff;
}

footer a {
	color: #fff;
}

footer div.ftr01 {
	padding: 45px 15px 25px;
	border-bottom: 1px solid #f2f2f2;
}

footer div.ftr01 div {
	padding-bottom: 25px;
}

footer div.ftr01 p {
	line-height: 1.5em;
}

footer .ftr02 {
	padding: 30px 15px 40px;
}

footer .ftr02 p {
	font-weight: 500;
	line-height: 2em;
}

footer .ftr02 ul {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 35px;
}

footer .ftr02 ul li {
	line-height: 2em;
	margin-right: 15px;
	padding-left: 15px;
	position: relative;
}

footer .ftr02 ul li::before {
	content: "▶";
	font-size: 9px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

footer p.copy {
	background-color: #0b306f;
	font-size:min(3.8vw,30px);
	color: #efefef;
	text-align: center;
	padding: 15px;
}

footer .pagetop {
	width: 60px;
	height: 60px;
	position: fixed;
	right: 10px;
	bottom: -60px;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
	opacity: 0;
}

footer .pagetop.fixed {
	position: fixed;
	right: 10px;
	bottom: 90px;
	opacity: 1;
}


/*SP固定ボタン*/
.sp_btn {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10000;
}

.sp_btn ul {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	box-shadow: 0px 0px 10px 0px #c9c9c9;
}

.sp_btn ul li {
	width: 25%;
	height: 80px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sp_btn ul li:nth-child(odd) {
	background-color: #e7dfcf;
}

.sp_btn ul li:nth-child(even) {
	background-color: #04378c;
}

.sp_btn ul li img {
	width: 100%;
	max-width: 80px;
	height: auto;
}


/*SPスライドメニュー*/
.sp_nav nav {
    background: rgba(255,255,255,0);
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    transition: all 0.4s;
    transform: translate(100%);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
}

.sp_nav nav.open {
  transform: translate(0);
  background: rgba(255,255,255,1);
}

.sp_nav nav .nav_box {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
	padding-bottom: 40px;
    position: relative;
    display: none;
}

.sp_nav nav.open .nav_box {
    display: block;
}

.sp_nav nav p.close {
    position: fixed;
    width: 25px;
    height: 22px;
    right: 14px;
    top: 20px;
    cursor: pointer;
}

.sp_nav nav p.close::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 25px;
    border-top: 1px solid #fff;
    transform:rotate(45deg);
}

.sp_nav nav p.close::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 25px;
    border-top: 1px solid #fff;
    transform:rotate(-45deg);
}

.sp_nav nav div.nav_ttl {
    width: 100%;
    height: 55px;
    background: #184ea9;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
}

.sp_nav nav div.nav_ttl p.nav_name {
	text-align: center;
	padding-top: 18px;
	font-size:min(3.8vw,18px);
	font-weight: bold;
}

.sp_nav nav div.nav_menu ul {
/*	padding-bottom: 30px;*/
	border-top: 1px solid #555;
}

.sp_nav nav div.nav_menu ul li a {
	display: block;
	color: #101010;
	text-decoration: none;
	font-size:min(4vw,22px);
	padding: 10px 5px;
	border-bottom: 1px solid #555;
	line-height: 1em;
}


/*コンテンツライン*/
.b_t {
	border-top: 2px solid #04378c;
}


/*見出し*/
h2.h01 {
	text-align: center;
	font-size:min(8vw,84px);
	color: #1e1e1f;
	font-weight: 500;
	line-height: 1.2em;
}

h2.h02 {
	font-size:min(7.2vw,72px);
	color: #262627;
	font-weight: 500;
	line-height: 1.2em;
}

h2.h03 {
	text-align: center;
	font-size:min(6.7vw,64px); 
	font-weight: 500;
	color: #fdfdfd;
	line-height: 1.3em;
	background-color: #184ea9;
	padding: 20px 0;
}

h2.h04 {
	font-size:min(6.2vw,56px);
	color: #101010;
	font-weight: 500;
	padding-bottom: 5px;
	border-bottom: 2px solid #262627;
}

h3.h01 {
	border: 2px solid #04378c;
	text-align: center;
	padding: 10px 0;
	color: #1e1e88;
	font-size:min(5.2vw,44px);
	font-weight: 500;
}

h3.h02 {
	text-align: center;
	font-size:min(6.7vw,64px); 
	font-weight: 500;
	color: #fdfdfd;
	line-height: 1.3em;
	background-color: #184ea9;
	padding: 20px 0;
}

h3.h03 {
	background-color: #eef4ff;
	text-align: center;
	padding: 12px 0;
	color: #1e1e88;
	font-size:min(5.2vw,44px);
	font-weight: 500;
}

h3.h04 {
	background-color: #184ea9;
	padding: 15px 20px;
	color: #fff;
	font-size:min(5.5vw,48px);
	font-weight: 500;
}

h3.h05 {
	background-color: #eef4ff;
	padding: 20px 25px;
	font-size:min(6.2vw,56px);
	font-weight: 500;
}

h3.h06 {
	font-size:min(6.2vw,56px);
	color: #101010;
	font-weight: 500;
	padding-bottom: 5px;
	border-bottom: 2px solid #262627;
}

h3.h07 {
	text-align: center;
	font-size:min(6.7vw,64px); 
	font-weight: 500;
	color: #fff;
	line-height: 1.3em;
	background-color: #04378c;
	padding: 15px 0;
}

h3.h08 {
	border-left: 3px solid #04378c;
	padding-left: 10px;
	font-size:min(5.5vw,48px);
	color: #101010;
	font-weight: 500;
	line-height: 1.3em;
}

h4.h01 {
	font-size:min(6.2vw,56px);
	color: #101010;
	font-weight: 500;
	padding-bottom: 5px;
	border-bottom: 2px solid #262627;
}

h4.h02 {
	border-left: 3px solid #04378c;
	padding-left: 10px;
	font-size:min(5.5vw,48px);
	color: #101010;
	font-weight: 500;
	line-height: 1.3em;
}

h4.h03 {
	border: 2px solid #04378c;
	text-align: center;
	padding: 10px 0;
	color: #1e1e88;
	font-size:min(5.2vw,44px);
	font-weight: 500;
}

h5.h01 {
	border-left: 3px solid #04378c;
	padding-left: 10px;
	font-size:min(5.5vw,48px);
	color: #101010;
	font-weight: 500;
	line-height: 1.3em;
}


/*見出し上テキスト*/
.h_t01 {
	text-align: center;
	color: #04378c;
	padding-bottom: 5px;
}


/*ボタン*/
.btn01 {
	text-align: center;
}

.btn01 a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 44px;
	background-color: #184ea9;
	color: #fff;
	border: 1px solid #184ea9;
	border-radius: 22px;
	text-decoration: none;
	position: relative;
}

.btn01 a::after {
	content: "▶︎";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size:min(2.2vw,20px);
}

.btn02 a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	background-color: #184ea9;
	color: #fff;
	border: 1px solid #184ea9;
	border-radius: 18px;
	text-decoration: none;
	position: relative;
}

.btn02 a::after {
	content: ">";
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%) scale(.6,1);
	font-size:min(3.8vw,30px);
}

.btn_w01 {
	width: 80%;
	margin: 0 auto;
}

.btn_w02 {
	width: 80%;
	margin: 0 auto;
}

.btn_w03 {
	width: 30%;
	margin: 0 auto;
}

.btn_w04 {
	width: 100%;
	margin: 0 auto;
}


/*コラム*/
#column {
	background-color: #f3f3f3;
	padding: 60px 15px 80px;
}

#column > div {
	padding: 40px 0 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#column > div > a {
	background-color: #fff;
	width: 49%;
	display: flex;
	flex-direction: column;
	padding-bottom: 15px;
	margin-bottom: 30px;
	text-decoration: none;
}

#column > div > a:nth-child(even) {
	margin-left: 2%;
}

#column > div > a div img {
	width: 100%;
	height: auto;
}

#column > div > a p.day {
	padding: 15px 20px 5px;
	font-size:min(3.0vw,26px);
	color: #b7b7b7;
	line-height: 1em;
	font-weight: 500;
}

#column > div > a p.tit {
	padding: 0 20px 15px;
	font-size:min(3.8vw,30px);
	color: #252525;
	font-weight: bold;
}

#column > div > a ul {
	padding: 0 20px;
	margin-top: auto;
}

#column > div > a ul li {
	font-size:min(3.5vw,28px);
	color: #232e64;
	line-height: 1.5em;
}


/*アクセス*/
#acc {
	padding: 60px 15px 80px;
}

#acc iframe {
	margin: 40px 0 0;
	width: 100%;
}

#acc ul {
	padding-top: 10px;
}

#acc ul li {
	font-size:min(3.8vw,30px);
	line-height: 1.5em;
	margin-bottom: .5em;
}


/*フォーム*/
#reservation .box01 {
	padding: 60px 15px 30px;
}

#reservation .box01 .reserve_read {
	padding: 40px 0 0;
}

#reservation .box01 ul.btn {
	padding: 30px 0 25px;
}

#reservation .box01 ul.btn li {
	text-align: center;
}

#reservation .box01 ul.btn li:first-child {
	padding-bottom: 20px;
}

#reservation .box01 ul.btn li img {
	box-shadow: 0px 0px 10px 0px #c9c9c9;
}

#reservation .box01 ul.tel_t {
	text-align: center;
}

#reservation .box01 ul.tel_t li:nth-child(2) a {
	font-size:min(9.6vw,100px);
	color: #184ea9;
	text-decoration: none;
	padding-left: 1.2em;
	position: relative;
}

#reservation .box01 ul.tel_t li:nth-child(2) a::before {
	content: "";
	width: 1em;
	height: 1em;
	background-image: url("../../images/tel.webp");
	background-size: 100% auto;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-30%);
}

#reservation .box01 ul.tel_t li:nth-child(3) {
	line-height: 2.5em;
}

#reservation .box01 ul.tel_t li:nth-child(3) span {
	border: 1px solid #0b1216;
	padding: 0 5px;
	line-height: 1em;
}

#reservation .box02 {
	padding: 0 15px 80px;
}

#reservation .box02 table {
	width: 100%;
}

#reservation .box02 > table:first-of-type {
	margin-top: 20px;
	border-top: 1px solid #333333;
}

#reservation .box02 table td {
	display: block;
	border-bottom: 1px solid #333333;
	padding-top: 20px;
	padding-bottom: 20px;
}

#reservation .box02 table td:first-child {
	padding-left: 20px;
	padding-right: 20px;
	background-color: #eef4ff;
	font-weight: bold;
	line-height: 1.2em;
}

#reservation .box02 table td:first-child span.cl {
	color: #c01d1f;
}

#reservation .box02 table td span.hissu {
	background-color: #d94b4d;
	color: #fff;
	font-size:min(3.7vw,30px);
	font-weight: normal;
	padding: 0 10px;
	border-radius: 5px;
	margin-left: 8px;
}

/*フォームアイテムリセット*/
#reservation .box02 table td:last-child input[type='text'],
#reservation .box02 table td:last-child input[type='number'],
#reservation .box02 table td:last-child input[type='email'],
#reservation .box02 table td:last-child input[type='tel'],
#reservation .box02 table td:last-child textarea,
#reservation .box02 table td:last-child select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

#reservation .box02 table td:last-child input[type='text'],
#reservation .box02 table td:last-child input[type='number'],
#reservation .box02 table td:last-child input[type='email'],
#reservation .box02 table td:last-child input[type='tel'],
#reservation .box02 table td:last-child textarea,
#reservation .box02 table td:last-child select {
	border: 1px solid #bcbcbc;
}

/*フォームアイテム詳細*/
#reservation .box02 table td:last-child input,
#reservation .box02 table td:last-child select,
#reservation .box02 table td:last-child radio,
#reservation .box02 table td:last-child textarea {
	font-size:min(4.5vw,32px);
}

#reservation .box02 table td:last-child .t01 {
	width: calc(100% - 32px);
	padding: 20px 15px;
}

#reservation .box02 table td:last-child .t02 {
	width: 90px;
	padding: 20px 15px;
}

#reservation .box02 table td:last-child .t03 {
	width: calc(100% - 32px);
	padding: 20px 15px;
}

#reservation .box02 table td:last-child .t04 {
	width: 150px;
	padding: 20px 15px;
}

#reservation .box02 table td:last-child textarea {
	width: calc(100% - 32px);
	padding: 20px 15px;
}

#reservation .box02 table td:last-child ul.radio01 li {
	padding-bottom: 20px;
}

#reservation .box02 table td:last-child ul.radio01 li:last-child {
	padding-bottom: 0;
}

#reservation .box02 table td:last-child select {
	padding: 20px 15px;
	margin: 5px 0;
}

#reservation .box02 table td:last-child .wpcf7-checkbox > span {
	display: block;
	margin-bottom: 10px;
}

#reservation .box02 table td:last-child .wpcf7-checkbox > span .wpcf7-list-item-label {
	padding-left: 5px;
}
/**/

#reservation .box02 table td:last-child img.ui-datepicker-trigger {
    margin-left: 5px;
}

#reservation .box02 table td:last-child ul.chui_t {
	padding-top: 20px;
}

#reservation .box02 table td:last-child ul.chui_t li {
	line-height: 1.8em;
	padding-left: 1em;
	position: relative;
}

#reservation .box02 table td:last-child ul.chui_t li::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}

#reservation .box02 table td:last-child p.chui_t02 {
	padding-top: 20px;
}

#reservation .box02 table td:last-child ul.cal {
	padding-bottom: 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
}

#reservation .box02 table td:last-child ul.cal li {
	width: 48%;
}

#reservation .box02 table td:last-child ul.cal li img {
	width: 100%;
	height: auto;
}

#reservation .box02 table td:last-child p.kyushin {
	text-align: right;
	font-size:min(3.7vw,30px);
	line-height: 1.3em;
	padding-bottom: 40px;
}

#reservation .box02 table td:last-child p.kyushin span {
	display: inline-block;
	padding-left: 10vw;
	position: relative;
}

#reservation .box02 table td:last-child p.kyushin span::before {
	content: "";
	width: 7.4vw;
	height: 7.4vw;
	background-color: #f4e9c9;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#reservation .box02 p.t01 {
	padding-top: 20px;
	padding-bottom: 35px;
}

#reservation .box02 p.t01 a {
	color: #252525;
}

#reservation .box02 .send {
	clear: both;
	width: 80%;
	height: 46px;
	margin: 0 auto;
	color: #fff;
	text-align: center;
	position: relative;
}

#reservation .box02 .send::before {
	content: "▶︎";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size:min(2.2vw,20px);
}

#reservation .box02 .send input {	
	display: block;
	width: 100%;
	height: 100%;
	background-color: #184ea9;
	color: #fff;
	border: 1px solid #184ea9;
	border-radius: 22px;
	text-decoration: none;
	font-size:min(4.5vw,32px);
	cursor: pointer;
}

#reservation .box03 {
	background-color: #f9f9fb;
	padding: 40px 15px;
}

#reservation .box03 div {
	border: 2px solid #817f7a;
	padding: 34px 20px 40px;
	text-align: center;
}

#reservation .box03 div h3 {
	font-size:min(7.8vw,80px);
	color: #04378c;
	font-weight: bold;
	line-height: 2em;
}

#reservation .box03 div h3 span {
	padding-left: 2.5em;
	position: relative;
}

#reservation .box03 div h3 span::before {
	content: "";
	width: 2em;
	height: 2em;
	background-image: url("../../images/ico_u18.webp");
	background-size: cover;
	position: absolute;
	left: 0;
	top: -5px;
}

#reservation .box03 div p {
	display: inline-block;
	text-align: left;
	padding-top: 35px;
}

#reservation .box03 div p a {
	color: #252525;
}


/*料金表*/
.price_box table {
	width: 100%;
	margin-bottom: 35px;
}

.price_box table.mb0 {
	margin-bottom: 0;
}

.price_box table td {
	border: 1px solid #04378c;
	padding: 10px;
	line-height: 1.5em;
	background-color: #eef4ff;
}

.price_box table td:last-child {
	text-align: right;
	width: 30%;
	background-color: #fff;
}

.price_box table tr:first-child td {
	text-align: center;
	background-color: #184ea9;
	padding: 20px 10px;
/*	font-size:min(5.5vw,48px);*/
	font-weight: 500;
	color: #fff;
}

.price_box ul {
	padding-top: 15px;
}

.price_box ul li {
	font-size:min(3.8vw,30px);
	line-height: 1.5em;
	padding-left: 1em;
	margin-bottom: .5em;
	position: relative;
}

.price_box ul li::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}

.how ul {
	padding: 30px 0 0 0;
}

.how ul li {
	padding-bottom: 50px;
}

.how ul li:last-child {
	padding-bottom: 0;
}

.how ul li > p {
	padding-top: 20px;
}

.how ul li > div {
	padding-top: 20px;
}

.how ul li > div div {
	text-align: center;
	padding-top: 30px;
}


/*症例写真*/
.case div.case_box > ul > li {
	padding: 40px 0 60px;
	border-bottom: 1px solid #bdbdbd;
}

.case div.case_box > ul > li .img_box {
	width: 80%;
	margin: 0 auto;
	position: relative;
}

.case div.case_box > ul > li .img_box .etsuran {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #5c7db4;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.case div.case_box > ul > li .img_box .etsuran p.t01 {
	font-size:min(6vw,54px); 
	color: #fff;
	line-height: 1em;
	padding-bottom: 10px;
}

.case div.case_box > ul > li .img_box .etsuran p.t02 {
	color: #fff;
	font-size:min(3.5vw,28px);
	padding: 0 5px;
}

.case div.case_box > ul > li .img_box .etsuran.show {
	opacity: 0;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.case div.case_box > ul > li ul {
	padding-top: 20px;
}

.case div.case_box > ul > li ul li {
	font-size:min(3.8vw,30px);
	line-height: 1.8em;
}


/*よくある質問*/
.faq dl {
	padding-top: 40px;
}

.faq dl dt {
	background-color: #eef4ff;
	padding: 15px 45px 15px 40px;
	font-size:min(4.9vw,40px);
	color: #04378c;
	font-weight: 500;
	line-height: 1.5em;
	position: relative;
}

.faq dl dt::before {
	content: "Q";
	font-size:min(6.5vw,60px);
	font-weight: normal;
	position: absolute;
	left: 15px;
	top: 13px;
}

.faq dl dd {
	padding: 15px 15px 40px 40px;
	color: #101010;
	line-height: 1.8em;
	position: relative;
}

.faq dl dd::before {
	content: "A";
	font-size:min(6.5vw,60px);
	color: #333;
	position: absolute;
	left: 15px;
	top: 15px;
}

.faq dl dd a {
	color: #101010;
}