@CHARSET "UTF-8";
/*
Theme Name: こんどうクリニック様
date: 2025.4.29
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --orange: #f6a60a;
	--green: #0aa84c;
	--yellow: #ffe302;
  --bk: #000;
	--bg: #efefef;
	--blue: #3bb1d2;
	--red: #c83223;
	--bg_yellow: #fcfbef;
	--bg_blue: #edf7fa;
	--stripe_green: repeating-linear-gradient(-45deg, transparent, transparent 10px, #0FB655 10px, #0FB655 20px )
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 500;
	/*font-family: "Montserrat","Zen Kaku Gothic New","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;*/
	font-family: "Lato","Zen Maru Gothic", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
}

.font_mincho{
	font-family:  "游明朝体", "Yu Mincho", YuMincho , serif;
}




/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 500;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 700;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 500;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.hidden{
	overflow: hidden;
}
.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}
.wide_wrap{
	max-width: 1200px;
}
.short_wrap{
	max-width: 850px;
}

.bg{
	background: var(--bg);
}
.bg_green{
	background-size: auto auto;
	background-color: var(--green);
	background-image: var(--stripe_green);
}
.bg_white{
	background: #fff;
	padding: 3rem 5%;
	border-radius: 2rem;
	position: relative;
}
.section{
	padding: 4rem 0;
}
.section_title{
	font-size: 2.2rem;
	margin-bottom: 3rem;
}
.title_border{
	position: relative;
	display: flex;
	align-items: center;
	white-space: nowrap;
	margin-bottom: 2rem;
}
.title_border .border{
	display: block;
	margin-left: 2rem;
	background: url('images/common/border.svg') repeat-x left center / contain;
	background-size: 10rem 30rem;
	flex: 1;
	width: 90%;
	height: 5rem;
}

.block{
	margin-bottom: 8rem;
}
.page_header{
	padding: 12rem 5% 3rem;
}


.page_title{
	text-align: center;
	font-size: 2.6rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.5;
}
.page_container{
	padding: 0 0 5rem;
	position: relative;
}
#breadcrumbs{
	font-size: 1.2rem;
	padding: 1rem 5%;
	background: var(--green);
	color: #fff;
}
#breadcrumbs a{
	color: #fff;
}
#message_404 p{
	margin-bottom: 5rem;
	text-align: center;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	display: block;
	width: 100%;
	max-width: 35rem;
	margin: 0 auto;
	text-align: center;
  position: relative;
	font-weight: 700;
	z-index: 5;
}
.btn_link::after{
	content: '';
	background-size: auto auto;
	background-color: var(--green);
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,.7) 4px, rgba(255,255,255,.7) 6px );
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -.5rem;
	right: -.5rem;
	z-index: -1;
	border-radius: .5rem;
}
.btn_link__orange::after{
	background-color: var(--orange);
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,.7) 4px, rgba(255,255,255,.7) 6px );
}
.btn_link__blue::after{
	background-color: var(--blue);
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,.7) 4px, rgba(255,255,255,.7) 6px );
}
.btn_link__bk::after{
	background: #000;
}
.btn_link__txt{
	background: #fff;
	border: var(--green) solid .2rem;
	color: var(--green);
	display: block;
	z-index: 5;
	padding: 1rem;
	border-radius: .5rem;
	transition: .3s;
	position: relative;
	font-size: 1.6rem;
}
.btn_link__bk .btn_link__txt{
	color: #000;
	border-color: #000;
}
.btn_link__orange .btn_link__txt{
	border-color: #fff;
	color: #fff;
	background: var(--orange);
}
.btn_link__blue .btn_link__txt{
	border-color: #fff;
	color: #fff;
	background: var(--blue);
}
.arrow{
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 2rem;
	height: 2px;
	background: var(--green);
}
.arrow::after{
	content: '';
	position: absolute;
	right: -2px;
	bottom: 0;
	width: 1rem;
	height: .5rem;
	background: var(--green);
	clip-path: polygon(0 0,100% 100%,0 100%);
}
.btn_link__bk .arrow,
.btn_link__bk .arrow::after{
	background: #000;
}
.btn_link__orange .arrow,
.btn_link__orange .arrow::after,
.btn_link__blue .arrow,
.btn_link__blue .arrow::after{
	background: #fff;
}

.btn_link .txt_small{
	display: block;
}
.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}


input[type="submit"]{
	outline: 0;
	box-shadow: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #efefef;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}

.img_round{
	border-top-left-radius: 2rem;
	border-bottom-right-radius: 2rem;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
	position: relative;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}

.icon_plus{
	position: absolute;
	width: 1.5rem;
	height: 2px;
	background: var(--green);
	right: 0;
	top: 50%;
	translate: 0 -50%;
}
.icon_plus::after{
	content: '';
	width: 1.5rem;
	height: 2px;
	background: var(--green);
	position: absolute;
	top: 0;
	left: 0;
	rotate: 90deg;
	transition: .3s;
}
[open] .icon_plus::after{
	rotate: none;
}



/* =swiper base
-------------------------------------------------------------- */

.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: var(--green);
	border-radius: 50%;
}
.swiper-button-prev{
	left: -2rem;
}
.swiper-button-next{
	right: -2rem;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--green) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--green);
}
.swiper-wrapper{
	transition-timing-function:linear; 
}

#gallery .swiper{
	overflow: visible;
}
#gallery .swiper-slide{
	padding: 0 1rem;
}





/* =page nav
-------------------------------------------------------------- */

.page_links{
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
.page_links a, 
.page_links span{
  text-decoration: none;
	font-size: 1.4rem;
	padding: 0 .5rem;
}
.page_links span.current{
	color: var(--orange);
}
.page_links a:hover{
	text-decoration: underline;
}
.page_links a.next{
  margin-left: 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
}


.nav_single{
	clear: both;
	display: flex;
  justify-content: center;
  margin: 5rem 0;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
	font-size: 1.2rem;
}
.nav_single li{
	width: 50%;
}
.nav_single li a{
	display: block;
	padding: 1rem .5rem;
}
.nav_next{
	text-align: right;
}
.nav_archive{
	border-left: #ccc solid 1px;
	border-right: #ccc solid 1px;
}





/* =Contact
-------------------------------------------------------------- */

.require{
	background: #960014;
	color: #fff;
	font-size: 1.2rem;
	padding: .5rem 1rem;
	border-radius: 50px;
	margin-right: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  border: #ccc solid 1px;
	background: #fff;
	min-height: 4rem;
	font-size: 1.4rem;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 150px;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
.form_wrap label{
	cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
}
.form_wrap .wpcf7-list-item{
	margin: .5rem 3rem .5rem 0;
}

.btn_submit{
	padding: 1.5rem;
	text-align: center;
	background: var(--green);
	border-radius: 1rem;
	display: block;
	margin: 0 auto;
	max-width: 400px;
	width: 100%;
	font-weight: 700;
	color: #fff;
	font-size: 1.6rem;
}
.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}

.form_wrap th{
	display: block;
	width: 100%;
	padding: 0 0 1rem;
	font-size: 1.4rem;
}
.form_wrap td{
	display: block;
	padding: 0 0 3rem;
	border-bottom: #ccc solid 1px;
	margin-bottom: 2rem;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.policy_check{
	text-align: center;
	margin: 3rem 0;
}
.policy_check p{
	margin: 1rem 0;
}

.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
}

.form_recaptcha{
	border: #999 solid 1px;
	padding: 20px 5%;
	margin: 0 auto;
	max-width: 500px;
	font-size: 12px;
}
.form_recaptcha p{
	margin: 0;
	text-align: left;
}
.form_recaptcha p a{
	text-decoration: underline;
	margin: 0 5px;
}

.wpcf7-turnstile{
	text-align: center;
	margin: 2rem 0;
}
.grecaptcha-badge{
	visibility: hidden;
}

.policy_check a{
	text-decoration: underline;
}

#reserve_form table{
	margin-bottom: 3rem;
}
#reserve_form h3{
	background: #777;
	padding: .5rem 1.5rem;
	font-size: 1.6rem;
	margin-bottom: 2rem;
	border-radius: .5rem;
	color: #fff;
}





/* =header
-------------------------------------------------------------- */

#site_header{
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 1rem;
}
#header_logo{
  display: block;
	width: 20rem;
	margin: 1rem auto 0 0;
}
.scroll #header_logo{
	width: 15rem;
}
#header_nav__btn{
	position: fixed;
	top: 1rem;
	right: 1rem;
	width: 6rem;
	height: 6rem;
	text-align: center;
	z-index: 9999;
  cursor: pointer;
	border-radius: 50%;
	background: var(--green);
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#header_nav__btn .border{
	width: 30px;
	height: 3px;
	background: #fff;
	border-radius: 3px;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn{
  background: var(--orange);
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}


#header_nav__inner{
	width: 80%;
	max-width: 40rem;
	height: 100%;
	background: var(--green);
	z-index: 999;
	position: fixed;
	top: 0;
	right: -40rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	border-top-left-radius: 2rem;
	border-bottom-left-radius: 2rem;
	padding: 5rem 5%;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
	right: 0;
}
.main_navigation{
	position: relative;
}
.main_navigation li a{
	display: block;
	padding: 1.5rem 0;
	position: relative;
	color: #fff;
	font-weight: 700;
}
.main_navigation li a i{
	font-size: 2rem;
	margin-right: .5rem;
}
.nav_icon{
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	margin-right: .5rem;
	vertical-align: middle;
}
.sub_nav ul{
	display: flex;
	flex-wrap: wrap;
	padding-left: 2rem;
	padding-bottom: 1rem;
}
.sub_nav li{
	width: 50%;
}
.sub_nav li a{
	padding: .5rem;
	font-size: 80%;
}

.contact_box{
	margin: 3rem 0;
}
.contact_box li{
	margin-bottom: 1rem;
}
.contact_box li a{
	padding: 1rem 0;
	border-radius: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 7rem;
	max-width: 100%;
	background: #fff;
}
.contact_box li a::after{
	content: none;
}
.contact_box li a .icon{
	width: 4rem;
	height: 4rem;
	vertical-align: middle;
	object-fit: contain;
	margin-right: 1rem;
}
.contact_box li a i{
	font-size: 2.6rem;
	margin-right: .5rem;
}
.btn_reservation{
	border: var(--orange) solid .2rem;
	background: var(--orange) !important;
	color: #fff !important;
}
.btn_access{
	border: var(--blue) solid .2rem;
	background: var(--blue) !important;
	color: #fff;
}
.btn_tel{
	line-height: 1.2;
	border: var(--green) solid .2rem;
	color: var(--green);
}
.btn_tel .large{
	font-size: 150%;
	display: block;
}
.btn_tel .txt_small{
	display: block;
	margin-top: .3rem;
}
.btn_line{
	border: var(--green) solid .2rem;
	color: var(--green);
}
#header_top__links{
	margin-top: 3rem;
}
#header_top__links li a{
	color: #fff;
	font-size: 1.2rem;
}
#header_contact .btn_tel,
#header_contact .btn_line{
	border: #fff solid .2rem;
}
.contact_box li a.btn_tel .icon{
	width: 6rem;
	height: 6rem;
}
.sns_links{
	display: flex;
	justify-content: center;
}
.sns_links li{
	margin: 0 1.5rem;
}
.sns_links li a{
	font-size: 2.6rem;
}
#header_sns a{
	color: #fff;
}

#reservation_modal{
	display: none;
	background: none;
	padding: 0 5%;
	text-align: center;
	position: static;
	width: 100%;
	max-width: 60rem;
}
#reservation_modal__inner{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#reservation_modal ul{
	width: 100%;
}
#reservation_modal ul li{
	margin-bottom: 2rem;
}
#reservation_modal ul li p{
	border: #ccc solid 1px;
	padding: 1.5rem 5%;
	margin: 2rem auto;
	font-size: 1.2rem;
	text-align: left;
	width: 90%;
	line-height: 1.5;
	background: #fff;
}
#reservation_modal ul li .btn_link{
	max-width: 50rem;
}
#reservation_modal .btn_link__txt{
	padding: 2rem 0;
	font-size: 1.8rem;
}
.fancybox-button{
	width: 8rem;
	height: 8rem;
}
.fancybox-button svg *{
	color: var(--green);
}
#reservation_modal p{
	font-size: 1.2rem;
}





/* =footer
-------------------------------------------------------------- */

#footer_access{
	/*border-top: var(--green) solid .5rem;
	border-bottom: var(--green) solid .5rem;*/
}
.gmap{
	height: 40rem;
}
.gmap iframe{
	width: 100%;
	height: 100%;
}
#footer_access h2{
	background: var(--green);
	color: #fff;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	padding: .5rem 1.5rem;
	border-radius: .5rem;
}
.footer_access__txt dl{
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}
.footer_access__txt dt{
	flex: 0 0 5rem;
	margin-right: 2rem;
	text-align: center;
}
.footer_access__txt dd{
	flex: 1;
}
.footer_access__txt dd span{
	font-weight: 700;
	display: block;
}
#footer_schedule{
	margin-top: 2rem;
}
#footer_schedule table{
	margin-bottom: 1rem;
	table-layout: fixed;
}
#footer_schedule table th,
#footer_schedule table td{
	border: var(--bk) solid 1px;
	text-align: center;
	vertical-align: middle;
	font-size: 1.2rem;
	padding: .5rem;
}
#footer_access__inner{
	padding: 3rem 5%;
	font-size: 1.2rem;
}
#footer_access__inner p{
	margin-bottom: 1rem;
}
#site_footer__inner{
	padding: 3rem 0;
	text-align: center;
}
#footer_logo{
	width: 12rem;
	display: block;
	margin: 0 auto 2rem;
}
#footer_info__access{
	background: var(--blue);
	font-size: 1.2rem;
	padding: .5rem 1rem;
	border: 0;
	max-width: 20rem;
	margin: 1rem auto;
	border-radius: 50px;
	color: #fff;
}
#footer_info__access::after{
	content: none;
}
#footer_info__access .icon{
	width: 2rem;
	height: 2rem;
	object-fit: contain;
	vertical-align: middle;
	margin-right: .3rem;
}
#footer_info__access i{
	margin-right: .5rem;
}
#footer_sns{
	margin: 2rem 0;
}
#footer_links{
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}
#footer_links li{
	margin: 0 1rem;
}
#footer_copy{
	background: var(--green);
	color: #fff;
	font-size: 1rem;
	text-align: center;
	padding: 2rem 0 8rem;
}

#footer_fixed{
	position: fixed;
	bottom: -7rem;
	left: 1%;
	z-index: 999;
	display: flex;
	width: 98%;
	margin: 0;
	justify-content: space-between;
	transition: .3s;
}
.scroll #footer_fixed{
	bottom: 1rem;
}
#footer_fixed li{
	width: 33%;
	margin: 0;
}
#footer_fixed li a{
	border-radius: 1rem;
	font-size: 1rem;
	display: block;
	height: 100%;
	padding: 1rem 0 .5rem;
	color: #fff;
	border: rgba(0,0,0,.2) solid .2rem;
	min-height: 100%;
}
#footer_fixed li a .icon{
	display: block;
	margin: 0 auto .2rem;
	width: 2.5rem;
	height: 2.5rem;
}
#footer_fixed li a i{
	display: block;
	margin: 0 auto .5rem;
}
#footer_fixed .btn_tel{
	background: var(--green);
}
#footer_fixed .btn_line{
	background: var(--green);
}
#footer_fixed .btn_access{
	background: var(--blue);
}
#footer_fixed .btn_reservation{
	background: var(--orange);
}





/* =TOP
-------------------------------------------------------------- */

#front_body #header_logo{
	opacity: 0;
	visibility: hidden;
}
#front_body.scroll #header_logo{
	opacity: 1;
	visibility: visible;
}
#main_visual{
	position: relative;
	height: 100svh;
}
#main_visual__inner{
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 80%;
	max-width: 35rem;
	text-align: center;
}
#main_visual__tree{
	display: block;
	width: 40%;
	max-width: 15rem;
	margin: 0 auto 3rem;
}

#main_visual__frame img{
	position: absolute;
	z-index: 50;
}
#main__top_left{
	top: 0;
	left: 0;
	width: 50%;
}
#main__bottom_left{
	bottom: 0;
	left: 0;
	width: 45%;
}
#main__bottom_right{
	bottom: 0;
	right: 0;
	width: 20%;
}

#main_visual__illust img{
	position: absolute;
	opacity: .8;
}
#main01{
	bottom: 80%;
	left: 25%;
	width: 70%;
}
#main02{
	top: 25%;
	left: 80%;
	width: 40%;
}
#main03{
	top: 70%;
	left: 65%;
	width: 40%;
}
#main04{
	top: 70%;
	right: 45%;
	width: 75%;
}
#main05{
	bottom: 55%;
	right: 70%;
	width: 50%;
}
#top_news__wrap{
	position: absolute;
	bottom: 1rem;
	right: 0;
	width: 90%;
	background: #fff;
	border: var(--green) solid .5rem;
	border-right: 0;
	z-index: 99;
	border-top-left-radius: 1rem;
	border-bottom-left-radius: 1rem;
	overflow: hidden;
}
#top_news{
	display: flex;
	align-items: center;
	font-size: 1rem;
}
#top_news h2{
	align-self: stretch;
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 6rem;
	border-right: var(--green) solid .2rem;
}
#top_news__inner{
	padding: 1rem 3rem 1rem 1rem;
	flex: 1;
	overflow: hidden;
}
#top_news__inner .slick-arrow{
	left: auto;
	right: 1rem;
	border-top: var(--bk) solid 1px;
	border-right: var(--bk) solid 1px;
}
#top_news__inner .slick-prev{
	transform: rotate(-45deg);
	top: 35%;
	width: 1rem;
	height: 1rem;
}
#top_news__inner .slick-next{
	transform: rotate(135deg);
	top: 60%;
	width: 1rem;
	height: 1rem;
}
#top_news__inner .slick-arrow::before{
	content: none !important;
}
.top_news__box{
	display: block;
}
.top_news__box .posted_title{
	font-size: 1.2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#top_concept__inner{
	/*display: flex;*/
	z-index: 99;
	max-width: 1300px;
}
#top_concept__inner h2{
	color: var(--green);
	margin-top: 3rem;
	font-size: 2rem;
}
#top_concept__txt p{
	font-size: 1.6rem;
}
#top_concept__txt p span{
	font-size: 120%;
	font-weight: 700;
	line-height: 1.5;
	display: block;
	margin: .5rem 0;
}
#top_concept__link{
	margin-top: 3rem;
}
#top_concept__link li{
	margin-top: 1.5rem;
}
#top_concept__link .btn_link{
	margin: 0;
}
#top_concept__link .txt_small{
	display: block;
}
#top_concept__illust01{
	position: absolute;
	top: -3rem;
	right: -1rem;
	z-index: 10;
	width: 60%;
	max-width: 30rem;
}
#top_concept__illust02{
	position: absolute;
	bottom: -2rem;
	left: -1rem;
	z-index: 10;
	width: 30%;
	max-width: 10rem;
}
#top_gallery__slide .slick-list{
	overflow: visible;
}


#top_service h2{
	text-align: center;
	font-size: 1.6rem;
	margin-bottom: 2rem;
	white-space: nowrap;
}
#top_service .wrapper{
	max-width: 1400px;
	width: 96%;
}
.top_service__block{
	margin-bottom: 1rem;
}
#top_service__case{
	position: relative;
	margin-bottom: 2rem;
}
#top_case__map{
	position: relative;
	max-width: 400px;
	margin: 0 auto;
	padding: 2rem 0 3rem;
}
#top_case__map ul li{
	position: absolute;
	z-index: 5;
}
#top_case__head{
	top: 0;
	right: 5%;
}
#top_case__chest{
	top: 10rem;
	right: 0;
}
#top_case__hand{
	bottom: 10rem;
	right: 0;
}
#top_case__other{
	bottom: 10rem;
	left: 0;
}
#top_case__skin{
	bottom: 0;
	right: 10%;
}
#top_case__woman{
	top: 0;
	left: 0;
}
#top_case__mental{
	top: 10rem;
	left: 0;
}
.top_case__link{
	display: block;
	align-items: center;
	padding: .5rem;
	text-align: center;
	border: var(--green) solid .2rem;
	border-radius: .5rem;
	width: 10rem;
	position: relative;
	font-weight: 700;
	background: #fff;
}
.top_case__img{
	width: 5rem;
	display: block;
	margin: 0 auto .5rem;
}
.top_case__link p{
	flex: 1;
	text-align: center;
	white-space: nowrap;
}
#top_service__case .btn_link{
	margin-top: 2rem;
}
#top_service__links li a{
	text-align: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	overflow: hidden;
	border-radius: 1rem;
	display: block;
}
#top_service__links li a .img_clip::before{
	padding-top: 45%;
}
#top_service__links li a .img_clip img{
	height: auto;
}
#top_service__links li a h3{
	padding: 2rem 0;
	text-align: center;
	font-size: 1.8rem;
}
#top_service__medicine{
	border: var(--orange) solid .2rem;
	background: var(--orange);
}
#top_service__flow{
	border: var(--blue) solid .2rem;
	background: var(--blue);
}
#top_blog .btn_link{
	margin-top: 3rem;
}







.post_list li{
	margin-bottom: 2rem;
}
.post_box{
	border: #ccc solid 1px;
	display: block;
	height: 100%;
}
.post_box:hover{
	color: var(--bk);
}
.post_box__thumb .img_clip::before{
	padding-top: 50%;
}
.post_box__inner{
	padding: 1rem 1rem 2rem;
}
.posted_date{
	font-size: 1.2rem;
}
.blog_cat{
	margin-top: 1rem;
}
.blog_cat span{
	background: var(--bg);
	padding: .2rem 1rem;
	margin-right: .5rem;
	border-radius: 50px;
}
.side_container{
	margin-top: 5rem;
}
.side_box{
	margin-bottom: 3rem;
	font-size: 1.2rem;
}
.side_box__title{
	font-size: 1.6rem;
	border-bottom: var(--bk) solid .2rem;
	padding-bottom: .5rem;
	margin-bottom: 1rem;
}
.news_list__box{
	display: block;
	padding: .5rem 0;
	border-bottom: #999 solid 1px;
}

.side_cat li{
	padding: 1rem 0;
	border-bottom: #999 solid 1px;
}
.blog_slide .slick-track {
  display: flex;
	margin: 0;
}
.blog_slide .slick-slide {
  height: auto !important;
	padding: 0 .5rem;
}
.blog_slide .slick-list{
	overflow: visible;
}
.side_blog__list li{
	margin: 0;
}
.side_blog__list .post_box{
	display: flex;
	border: 0;
	border-radius: 0;
	padding: 1rem 0;
	border-bottom: #999 solid 1px;
}
.side_blog__list .posted_date{
	font-size: 1rem;
}
.side_blog__list .post_box__thumb{
	flex: 0 0 30%;
	margin-right: 1rem;
}
.side_blog__list .img_clip::before{
	padding-top: 100%;
}
.side_blog__list .post_box__inner{
	flex: 1;
	padding: 0;
	font-size: 1.2rem;
}
.side_search{
	display: flex;
}
.side_search .input_box{
	width: 80%;
	margin: 0;
	background: #fff;
}
.side_search__submit{
	flex: 1;
	padding: 1rem;
	border-radius: 0;
	background: #999;
	color: #fff;
	border: 0;
}
.no_posts{
	background: var(--bg);
	padding: 3rem 0;
	text-align: center;
}

.entry_header{
	border-bottom: var(--bk) solid .2rem;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
}
.entry_header h1{
	font-size: 2rem;
	line-height: 1.5;
}

.entry_content{
	padding-bottom: 8rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--bk) solid .4rem;
}
.entry_content h3{
	background: #777;
	padding: 1rem 1.5rem;
	border-radius: .5rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
}
.entry_content h4{
	color: var(--bk);
	font-size: 1.6rem;
	margin: 2rem 0;
}
.entry_content p{
	margin: 2rem 0;
	word-break: break-all;
}
.entry_content a{
	text-decoration: underline;
	color: var(--green);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table tr{
	border: 0;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
}

.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg);
  border-radius: .5rem;
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}

.wp-block-image{
	margin-bottom: 2rem;
	margin-top: 2rem;
}
.wp-block-image img{
	overflow: hidden;
}
.wp-block-image figcaption{
	font-size: 1.2rem;
	margin: .5rem 0 0;
	text-align: center;
}
.wp-block-gallery{
	display: flex;
	flex-wrap: wrap;
	gap: 0 !important;
}
.wp-block-gallery .wp-block-image{
	width: 50%;
	padding-right: 1rem;
	margin: .5rem 0;
}
.wp-block-embed{
	margin: 2rem 0;
}

div#toc_container{
  width: 100%;
  border: 0;
  border-top: #999 solid 1px;
  border-bottom: #999 solid 1px;
  margin: 3rem 0;
  padding: 3rem 0;
}
div#toc_container a{
  color: #000;
}
div#toc_container a:hover{
  color: var(--yellow_txt);
}
#toc_container p.toc_title{
  text-align: left;
  font-size: 1.8rem;
}
.toc_list > li{
  margin-bottom: 1rem !important;
}




.page_nav{
	display: flex;
	flex-wrap: wrap;
	margin: 2rem -.5rem;
}
.page_nav li{
	width: 100%;
	margin: 1rem 0;
}
.page_nav .btn_link__txt{
	border-radius: .5rem;
	padding: 1.5rem .5rem;
	max-width: 100%;
	font-size: 1.8rem;
}
.page_nav .arrow{
	rotate: 90deg;
}



#page_about .section_title{
	border-left: var(--green) solid .5rem;
	padding-left: 1.5rem;
	line-height: 1.5;
}
.featured_box{
	display: flex;
	margin-bottom: 3rem;
}
.featured_box__img{
	flex: 0 0 10rem;
	margin-right: 2rem;
}
.featured_box__txt{
	flex: 1;
}
.featured_box__num{
	display: inline-block;
	background: var(--orange);
	padding: .2rem 3rem .2rem 1rem;
	clip-path: polygon(0 0,100% 0,95% 50%,100% 100%,0 100%);
	color: #fff;
}
.featured_box__txt h3{
	font-size: 1.8rem;
	line-height: 1.5;
	margin: 1rem 0;
}
.featured_box__txt a{
	display: inline-block;
	margin-top: .5rem;
	color: var(--green);
	font-weight: 700;
}
.details_table th{
	border-bottom: var(--green) solid .2rem;
	border-right: #fff solid 1rem;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
}
.details_table td{
	border-bottom: var(--bg) solid .2rem;
	vertical-align: middle;
}

.profile_title{
	font-size: 1.8rem;
	background: var(--green);
	padding: .5rem 1.5rem;
	border-radius: .5rem;
	margin: 4rem 0 1rem;
	color: #fff;
}
.profile_title::before{
	content: '●';
	margin-right: .5rem;
}
.greeting_inner{
	margin: 2rem 0;
}
.greeting_inner p{
	flex: 1;
}
.greeting_img{
	margin: 2rem -.2rem;
	display: flex;
}
.greeting_img li{
	text-align: center;
	width: 50%;
	padding: .2rem;
}
#profile_inner{
	margin-bottom: 2rem;
}
#profile_photo{
	width: 80%;
	margin: 0 auto 2rem;
}
#profile_name{
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 2rem;
}
#profile_name span{
	color: var(--green);
	font-size: 80%;
	display: block;
}
#history_table th{
	width: 40%;
	text-align: left;
}
.book_box{
	display: flex;
	margin-bottom: 2rem;
}
.book_box__img{
	flex: 0 0 10rem;
	margin-right: 1rem;
}
.book_box__txt{
	flex: 1;
}
.book_box__txt h4{
	margin-bottom: 1rem;
}
.book_box__txt .btn_link{
	margin: 1rem 0 0;
	max-width: 20rem;
}
.book_box__txt .btn_link__txt{
	padding: .5rem;
	font-size: 1.2rem;
}

#gallery .wrapper{
	max-width: 800px;
}


#faq_side{
	margin: 0;
}
.faq_nav .btn_link__txt{
	font-size: 1.4rem;
}
.faq_icon{
	width: 3rem;
	display: block;
	margin: 0 auto .5rem;
}
.faq_block h2{
	border-left: var(--green) solid .5rem;
	padding-left: 1.5rem;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}
.faq_box{
	border-bottom: var(--green) solid .1rem;
}
.faq_question{
	padding: 1.5rem 3rem 1.5rem 0;
	font-size: 1.6rem;
	line-height: 1.5;
	display: flex;
	align-items: center;
}
.faq_en{
	color: var(--green);
	font-size: 2rem;
	font-weight: 700;
	margin-right: 1rem;
}
.faq_answer{
	padding: 1rem 3rem 2rem;
	background: var(--bg_yellow);
}
.faq_answer .faq_en{
	color: var(--orange);
}

.page_intro{
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
}
/*
#case_list__wrap{
	margin-top: 3rem;
}

.case_list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5rem;
}
.case_list li{
	width: 50%;
	padding: .5rem;
}*/
.case_box{
	display: flex;
	align-items: center;
	height: 100%;
	border-bottom: var(--bk) dotted .1rem;
	padding: 2rem 0;
	font-size: 1rem;
}
.case_box__img{
	width: 35%;
	margin-right: 2rem;
}
.case_box__txt{
	flex: 1;
	align-self: stretch;
	display: flex;
	flex-direction: column;
}
.case_box__txt h3{
	background: var(--green);
	color: #fff;
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 1rem;
	position: relative;
	padding: .5rem;
	border-radius: .5rem;
}
.case_box__txt p{
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: .5rem;
}
.case_box .btn_link{
	margin-top: auto;
	
}
.case_box .btn_link__txt{
	padding: .5rem;
	font-size: 1.2rem;
}

.case_more{
	margin: auto 0 0 auto;
	display: block;
	width: 50%;
	color: var(--green);
	text-align: right;
	font-weight: 700;
	position: relative;
	padding-bottom: .5rem;
}
.case_more::after{
	content: '';
	background: var(--green);
	width: 100%;
	height: .2rem;
	position: absolute;
	bottom: 0;
	right: -1rem;
	transition: .3s;
}
.case_box:hover .case_more::after{
	width: 40%;
}

#side_case__cat ul{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5rem;
}
#side_case__cat li{
	margin-bottom: 1rem;
	width: 50%;
	padding: 0 .5rem;
}
#side_case__cat .top_case__link{
	display: flex;
	width: 100%;
}
.case_cat__title{
	font-size: 1.6rem;
	border-bottom: var(--green) solid .2rem;
	padding-bottom: .5rem;
	display: flex;
	align-items: center;
}
.case_cat__title span{
	font-size: 150%;
}
.case_cat__img{
	flex: 0 0 5rem;
	margin-right: 1rem;
}
.case_list__box{
	display: flex;
	align-items: center;
	border: 0;
	border-bottom: #999 solid 1px;
	padding: 1rem 0;
	border-radius: 0;
}
.case_list__box .post_box__thumb{
	flex: 0 0 10rem;
	margin-right: 2rem;
}
.case_list__box .img_clip::before{
	padding-top: 100%;
}
.case_list__box .posted_title{
	font-size: 1.6rem;
}
.case_list__box .post_box__inner{
	padding: 0;
	flex: 1;
}



/* =medicine
-------------------------------------------------------------- */

#medicine_intro{
	font-size: 1.8rem;
	border: var(--green) solid .2rem;
	border-radius: 1rem;
	padding: 2rem 1rem;
	max-width: 800px;
	background: #fff;
}
.medicine_block h2{
	background: var(--bg_yellow);
	border-left: var(--green) solid .5rem;
	display: flex;
	align-items: center;
	font-size: 2rem;
	margin-bottom: 2rem;
	padding: 0 2rem;
	height: 5rem;
}

.medicine_block__img{
	margin-top: 3rem;
}





.flow_box{
	padding-bottom: 4rem;
	position: relative;
}
.flow_box::after{
	content: '';
	background: var(--green);
	width: 2px;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 3rem;
	z-index: -1;
}
.flow_box:last-child::after{
	content: none;
}
.flow_box h2{
	display: flex;
	background: var(--bg_yellow);
	align-items: center;
	font-size: 2rem;
	margin-bottom: 1rem;
}
.flow_box h2 span{
	background: var(--green);
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 3rem;
	width: 6rem;
	height: 6rem;
	margin-right: 1rem;
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
}
.flow_box__inner{
	padding-left: 6rem;
}
.flow_box__img{
	margin: 0 auto 2rem;
}
#flow_contact{
	margin: 2rem auto;
}

.flow_box__txt ol li{
	margin-bottom: 1rem;
	font-weight: 700;
}
.flow_attention{
	background: var(--bg_blue);
	padding: 1.5rem 5%;
	font-size: 90%;
	font-weight: 500;
	margin: 1rem 0 2rem;
	border-radius: 1rem;
}
.flow_attention ul li{
	margin-bottom: .5rem;
	font-weight: 500;
	padding-left: 1em;
	text-indent: -1em;
}
.flow_attention h3{
	text-align: center;
	margin-bottom: .5rem;
}





/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1.5rem;
	}
	table td{
		padding: 1.5rem 2rem;
	}
	.section{
		padding: 5rem 0;
	}
	.section_title{
		font-size: 2.6rem;
	}
	#footer_contact{
		margin: 0 0 0 auto;
		width: 30%;
	}
	#footer_contact a{
		min-height: 8rem;
	}
	#footer_info{
		display: flex;
		align-items: center;
		margin-bottom: 3rem;
	}
	#site_footer__inner{
		text-align: left;
	}
	#footer_logo{
		flex: 0 0 12rem;
		margin: 0 5rem 0 0;
	}
	#footer_info__inner{
		flex: 1;
		padding-top: 3rem;
		margin-right: 3rem;
	}
	#footer_info__access{
		margin: 1rem 0 0;
	}
	.footer_access__txt{
		padding: 0 1rem;
	}
	#footer_sns{
		justify-content: flex-start;
		margin: 0 0 1rem;
	}
	#footer_fixed{
		display: none;
	}
	#footer_copy{
		padding: 3rem 0;
	}
	#footer_links{
		display: flex;
		justify-content: flex-end;
		margin: 0;
	}
	#footer_links li{
		margin-right: 2rem;
	}
	#main_visual{
		height: 50rem;
	}
	#main__top_left{
		width:35%;
	}
	#main__bottom_left{
		bottom: -3rem;
		left: 0;
		width: 40%;
	}
	#main01{
		bottom: 75%;
		left: 30%;
		width: 50%;
	}
	#main02{
		top: 18%;
		left: 75%;
		width: 30%;
	}
	#main03{
		top: 75%;
		left: 55%;
		width: 25%;
	}
	#main04{
		top: 65%;
		right: 55%;
		width: 45%;
	}
	#main05{
		bottom: 40%;
		right: 70%;
		width: 30%;
	}
	#top_concept__inner h2{
		margin: 0 0 0 5rem;
		writing-mode: vertical-rl;
		font-size: 3rem;
		white-space: nowrap;
	}
	#top_concept__inner h2 span{
		margin-top: 3rem;
	}
	#top_concept__inner{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
	}
	#top_concept__txt{
		padding: 8rem 0 3rem;
	}
	#top_concept__illust02{
		bottom: -13rem;
		left: auto;
		right: 1rem;
		max-width: 15rem;
	}
	.container_wrap{
		display: flex;
		justify-content: space-between;
		padding-top: 3rem;
	}
	.main_container{
		width: 70%;
	}
	.side_container{
		width: 25%;
		margin: 0;
	}
	.post_list:not(.side_blog__list){
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1rem;
	}
	.post_list:not(.side_blog__list) li{
		width: 50%;
		padding: 0 1rem;
		margin-bottom: 3rem;
	}
	#top_blog .post_list li{
		width: 33.33%;
	}
	.page_header{
		padding: 15rem 5% 4rem;
	}
	.page_title{
		text-align: center;
		font-size: 3rem;
	}
	.page_nav li{
		width: 33.33%;
		padding: 0 1rem;
	}
	#top_concept__illust01{
		left: -1rem;
		right: auto;
	}
	
	#top_news__wrap{
		width: 50%;
		max-width: 60rem;
	}
	#top_news{
		margin: 0;
		border-radius: 0;
		border-top-left-radius: 1rem;
	}
	#top_service h2{
		font-size: 3rem;
	}
	#top_service__inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#top_service__case{
		width: 60%;
		margin: 0;
	}
	#top_case__map{
		padding: 0;
		max-width: 700px;
	}
	#top_case4{
		bottom: 4rem;
		left: 5%;
	}
	#top_case5{
		bottom: 14rem;
	}
	#top_case7{
		top: 8rem;
	}
	.top_case__link{
		padding: 1rem;
		width: 18rem;
		font-size: 1.6rem;
		display: flex;
	}
	.top_case__img{
		flex: 0 0 5rem;
		margin: 0;
	}
	#top_service__links{
		width: 38%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#featured_box__wrap{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 -1rem;
	}
	.featured_box{
		display: block;
		width: 33.33%;
		padding: 0 1rem;
		margin-bottom: 3rem;
	}
	.featured_box__img{
		width: 80%;
		margin: 0 auto 1rem;
	}
	.featured_box__txt h3{
		min-height: 6rem;
		display: flex;
		align-items: center;
	}
	.details_table th{
		width: 20%;
	}
	#profile_inner{
		display: flex;
		align-items: flex-end;
		margin-top: 3rem;
	}
	#profile_name span{
		display: inline;
		margin-left: 3rem;
	}
	#history_table th{
		width: 30%;
	}
	.case_list{
		display: flex;
		flex-wrap: wrap;
	}
	.case_list li{
		width: 50%;
		padding: 0 1.5rem;
	}
	.case_box{
		padding: 3rem 1rem;
		font-size: 1.2rem;
	}
	.book_box{
		align-items: center;
	}
	.book_box__img{
		flex: 0 0 15rem;
		margin-right: 3rem;
	}
	.profile_block{
		padding: 0 2rem;
	}
	#profile_photo{
		float: left;
		width: 35%;
		margin: 0 3rem 3rem 0;
	}
	.greeting_img{
		margin: 0 0 0 3rem;
		flex: 0 0 30%;
		display: block;
	}
	.greeting_img li{
		width: 100%;
		padding: 0;
		margin-bottom: 1rem;
	}
	.medicine_block__flex{
		display: flex;
	}
	.medicine_block__img{
		flex: 0 0 35%;
		margin: 0 0 0 3rem;
	}
	.medicine_block__txt{
		flex: 1;
	}
	.faq_nav .page_nav{
		display: block;
	}
	.faq_nav .page_nav li{
		width: 100%;
		padding: 0;
		margin-bottom: 1rem;
	}
	.side_container__sticky{
		position: sticky;
		top: 12rem;
	}
	.flow_box__inner{
		display: flex;
		flex-direction: row-reverse;
	}
	.flow_box__img{
		flex: 0 0 40%;
		margin-left: 3rem;
	}
	.flow_box__txt{
		flex: 1;
		margin-top: 2rem;
	}
	#side_case__cat ul{
		display: block;
		margin: 0;
	}
	#side_case__cat li{
		width: 100%;
		padding: 0;
	}
	#side_case__cat .top_case__link{
		display: flex;
		width: 100%;
	}
	#reserve_form table th{
		width: 30%;
		display: table-cell;
		padding: 2.5rem 0;
	}
	#reserve_form table td{
		display: table-cell;
		padding: 2rem;
		border: 0;
	}
	#reserve_form table tr{
		border-bottom: #999 solid 1px;
	}
}




@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 120px;
  }
	#site_header{
		transition: .3s;
		display: flex;
		align-items: flex-start;
		padding: 0 2%;
	}
	.scroll #site_header{
		background: #fff;
		box-shadow: 0 2px 3px rgba(0,0,0,.1);
		align-items: center;
	}
	#header_logo{
		width: 20rem;
		margin: 1rem auto 0 0;
	}
	.scroll #header_logo{
		width: 16rem;
		margin: 0 auto 0 0;
	}
	#header_nav{
		padding-top: .5rem;
	}
	#header_nav__btn{
		display: none;
	}
	#header_nav__inner{
		overflow: visible;
		visibility: visible;
		opacity: 1;
		padding: 0;
		position: static;
		max-width: 100%;
		width: auto;
		background: none;
		display: flex;
		flex-direction: column-reverse;
	}
	.main_navigation{
		display: flex;
		justify-content: flex-end;
	}
	.main_navigation li{
		margin: 0 1.5rem;
		position: relative;
	}
	.main_navigation li a{
		color: var(--bk);
		padding: .5rem 0;
		font-weight: 700;
	}
	.nav_icon,
	.main_navigation li a i{
		display: none;
	}
	.main_navigation li a::after{
		content: '';
		background: var(--green);
		width: 0;
		height: .2rem;
		position: absolute;
		bottom: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}
	.main_navigation li.current a::after,
	.main_navigation li a:hover::after{
		opacity: 1;
		visibility: visible;
		width: 100%;
	}
	.sub_nav{
		transition: .3s;
		position: absolute;
		top: 100%;
		left: 50%;
		translate: -50% 0;
		z-index: 99;
		padding-top: 1rem;
		opacity: 0;
		visibility: hidden;
	}
	.main_navigation li:hover .sub_nav{
		opacity: 1;
		visibility: visible;
	}
	.sub_nav::before{
		content: '';
		background: var(--green);
		width: 1rem;
		height: 1rem;
		clip-path: polygon(50% 0,100% 100%, 0 100%);
		position: absolute;
		top: 0;
		left: 50%;
		translate: -50% 0;
	}
	.sub_nav ul{
		border: var(--green) solid .2rem;
		border-radius: 1rem;
		overflow: hidden;
		padding: 0;
		margin: 0;
		display: block;
		background: #fff;
	}
	.sub_nav ul li{
		margin: 0;
		border-bottom: var(--green) solid .1rem;
		width: auto;
	}
	.sub_nav ul li:last-child{
		border: 0;
	}
	.sub_nav ul li a{
		padding: 1.5rem;
		text-align: center;
		white-space: nowrap;
		min-width: 20rem;
	}
	.sub_nav ul li a::after{
		content: none !important;
	}
	#header_top{
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.contact_box li a.btn_tel i{
		font-size: 2rem !important;
	}
	#header_contact{
		display: flex;
		align-items: center;
		margin: 0;
	}
	#header_contact li{
		margin: 0 0 0 1rem;
	}
	#header_contact li a{
		font-size: 1.2rem;
		min-height: auto;
		padding: .5rem 1.5rem;
		color: #fff;
	}
	#header_contact li a .icon{
		width: 2rem;
		height: 2rem;
	}
	#header_contact li a i{
		font-size: 1.4rem;
		display: block;
	}
	#header_contact li a.btn_tel{
		background: none;
		color: var(--bk);
		line-height: 1.2;
		padding: 0;
		font-size: 1.4rem;
		border: 0;
	}
	#header_contact li a.btn_tel::after{
		content: none;
	}
	#header_contact li a.btn_tel .icon{
		margin-right: .5rem;
		width: 5.5rem;
		height: 5.5rem;
	}
	#header_contact .btn_line{
		border: var(--green) solid .2rem;
	}
	.sns_links li{
		margin: 0 1rem;
	}
	.sns_links li a{
		font-size: 2rem;
	}
	#header_sns{
		margin-left: 1rem;
	}
	#header_sns a{
		color: var(--bk);
	}
	#header_top__links{
		display: none;
	}
	#footer_access{
		display: flex;
	}
	#footer_access .gmap{
		width: 50%;
		align-self: stretch;
		height: auto;
	}
	#footer_access__inner{
		flex: 1;
		max-width: 800px;
		padding: 3rem;
	}
	#main_visual{
		height: 100vh;
		overflow: hidden;
	}
	#main_visual__inner{
		max-width: 500px;
		width: 30%;
	}
	#main_visual__tree{
		max-width: 100%;
	}
	#top_concept__illust01{
		max-width: 35rem;
		right: 3%;
	}
	#top_concept__illust02{
		max-width: 20rem;
		bottom: -20rem;
		rotate: 20deg;
	}
	#top_concept__txt{
		padding: 10rem 0 3rem;
	}
	.featured_box{
		padding: 0 2rem;
	}
	.page_intro{
		font-size: 2rem;
	}
	.flow_box__inner{
		padding-left: 10rem;
	}
	.top_case__img{
		flex: 0 0 7rem;
	}
	.top_case__link{
		width: 22rem;
		font-size: 1.8rem;
	}
	#top_case__hand{
		bottom: 15rem;
	}
	#top_case__skin{
		bottom: 3rem;
		right: 0;
	}
}




@media screen and (min-width: 1024px){
	#main01{
		bottom: 70%;
		width: 45%;
	}
	#main02{
		top: 18%;
		left: 70%;
		width: 28%;
	}
	#main03{
		top: 75%;
		left: 50%;
		width: 23%;
	}
	#main04{
		top: 60%;
		right: 55%;
		width: 40%;
	}
	#main05{
		bottom: 40%;
		right: 70%;
		width: 30%;
	}
}

@media (hover: hover) {
	a:hover{
		color: var(--green);
	}
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-3px);
  	box-shadow: 0 6px 10px -3px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-3px);
  	box-shadow: 0 6px 10px -3px rgba(0,0,0,.3);
  }
	.btn_link:hover .btn_link__txt{
		translate: .3rem .3rem;
	}
	/*
	.btn_reservation:hover{
		background: var(--orange);
	}
	.btn_line:hover{
		background: var(--green);
	}
	.btn_access:hover{
		background: var(--blue);
	}*/
	.top_news__box:hover{
		color: var(--bk);
	}
	.top_news__box:hover .posted_title{
		text-decoration: underline;
	}
	a:hover .img_clip img{
		scale: 1.1;
	}
	.sub_nav ul li a:hover{
		background: var(--green);
		color: #fff;
	}
}


.obana_comment{
	font-weight: 700;
	padding: 1rem 5%;
	background: var(--bg);
	color: var(--red);
	margin: 2rem 0;
}
.bg_illust{
	position: relative;
}
.bg_illust::before{
	content: '';
	position: absolute;
	top: 0;
	right: -8rem;
	z-index: -1;
	opacity: .8;
}
.bg_illust01::before{
	background: url('images/top/mv/01.svg') no-repeat center center / contain;
	width: 35rem;
	height: 15rem;
}
.bg_illust02::before{
	background: url('images/top/mv/02.svg') no-repeat center center / contain;
	width: 35rem;
	height: 35rem;
}
.bg_illust03::before{
	background: url('images/top/mv/03.svg') no-repeat center center / contain;
	width: 20rem;
	height: 18rem;
	right: 0;
}
.bg_illust04::before{
	background: url('images/top/mv/04.svg') no-repeat center center / contain;
	width: 30rem;
	height: 15rem;
}
.bg_illust05::before{
	background: url('images/top/mv/05.svg') no-repeat center center / contain;
	width: 30rem;
	height: 15rem;
}
#gallery::before{
	top: -3rem;
}
#profile::before{
	top: -5rem;
	right: 0;
}
#page_faq .page_header::before{
	right: 0;
	top: 10rem;
}

@media screen and (min-width: 768px){
	.bg_illust01::before{
		width: 50rem;
		height: 25rem;
		right: 0;
	}
	.bg_illust02::before{
		width: 40rem;
		height: 40rem;
	}
	.bg_illust03::before{
		width: 35rem;
		height: 30rem;
		right: -5rem;
	}
	.bg_illust04::before{
		width: 45rem;
		height: 30rem;
	}
	.bg_illust05::before{
		width: 45rem;
		height: 30rem;
		top: 8rem;
	}
	#profile::before{
		top: -5rem;
	}
}
@media screen and (min-width: 1024px){
	.bg_illust01::before{
		top: 10rem;
	}
	.bg_illust03::before{
		width: 40rem;
		height: 35rem;
		right: -5rem;
		top: 8rem;
	}
	#gallery::before{
		top: -8rem;
	}
}