@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

/*-------------------------------------------------------------------
　reset
-------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong,
sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td{
	border:0;
	font-family:inherit;
	font-size:100%;
	font-style:inherit;
	font-weight:inherit;
	margin:0;
	outline:0;
	padding:0;
	vertical-align:baseline;
	box-sizing: border-box;
}

ol, ul {list-style:none;}

table {
	border-collapse:separate;
	border-spacing:0;
}

caption, th, td {
	font-weight:normal;
	text-align:left;
}

img{
	width: 100%;
	height: auto;
	padding:0;
	margin:0;
	vertical-align:bottom;
}

a img {border:0;}

a{
	margin:0;
	padding:0;
	text-decoration:none;
	outline:0;
	vertical-align:baseline;
	background:transparent;
	font-size:100%;
	color:#000;
}

a:hover{
	text-decoration: none;
}

/*-------------------------------------------------------------------
　基本設定
-------------------------------------------------------------------*/
body{
  font-family:
		"Kosugi Maru",
		"Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	font-size:22px;
	line-height:1.8;
	color:#000000;
	-webkit-text-size-adjust:none;
}

/* ===== sp 767px ========= */
@media only screen and (max-width:767px){
body{
	font-size:18px;
	line-height:1.8;
}
}

/*-------------------------------------------------------------------
　common
-------------------------------------------------------------------*/
.br_pcdis{display:block;}
.br_pc{display:block;}
.br_sp{display:none;}
.br480sp{display: none;}

.br1200dis{display: none;} /*pc=n 1200=br 767=n 480=br*/

.txGreen{color: #2AA581;}

/* ---- 1200px ------------- */
@media only screen and (max-width:1200px){
.br1200dis{display: block;}
}

/* ---- tablet ------------- */
@media only screen and (max-width:1024px){
.br_pcdis{display:none;}
}

/* ---- sp 767-------------- */
@media only screen and (max-width:767px){
.br_pc{display:none;}
.br_sp{display:block;}
.br1200dis{display: none;}
}

/* ---- sp 480-------------- */
@media only screen and (max-width:480px){
.br480sp{display: block;}
}

/*-------------------------------------------------------------------
　header & navi
-------------------------------------------------------------------*/
.naviArea{
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FFF;
	z-index: 200;
	border:0px solid #000;
}

.naviArea a:hover{text-decoration: none;}
.naviArea h1{display: none;}

#hd_Area{display: flex;}

#hd_logo{
	width: 310px;
	margin-left: 30px;
}

#hd_logo img{
	width: 100%;
	height: auto;
	vertical-align: middle;
}

#hd_insta{
	display: none !important;
}

#g_navi{
	display: flex;
	align-items: center;
	font-family: "Zen Maru Gothic", sans-serif;
	/*margin-right: 200px;*/
	border:0px solid #000;
}

#g_navi ul{
	position: relative;
	display: flex;
	align-items: center;
	list-style-type: none;
	margin-right: 10px;
}

#g_navi ul li{
	height: 100px;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 30px 0;
	font-weight: bold;
	text-align: center;
}

#g_navi ul li a{
	position: relative;
	display: block;
	color: #000;
}

#g_navi ul li a:hover{color: #6EA160;}

#g_navi .sub-menu {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	display: block;
	position: absolute;
	top: 100px;
	left: 5%;
	width: 250px;
	background: #E6EFE4;
	box-sizing: border-box;
	border:0px solid #000;
}
 
#g_navi .sub-menu a {
	display: block;
	padding: 5px 0;
	margin: 0;
	box-sizing: border-box;
}

#g_navi .sub-menu li {
	display: block;
	padding: 8px 15px;
	margin: 0;
	height: auto;
	font-size: 18px;
	line-height: 1.5;
	border-bottom: 1px dashed #B5B5B5;
}

#g_navi .sub-menu li:last-child {
	border-bottom: 0px dashed #B5B5B5;
}

#g_navi ul > li:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
}

#g_navi ul > li:hover a {
	color:#2AA581;
	text-decoration: none;
	opacity: 1;
}

#g_navi li:hover ul.sub-menu {
	top: 100px;
	visibility: visible;
	opacity: 1;
	z-index: 9999;
}

#g_navi li:hover ul.sub-menu a {
	color: #000;
	text-align:left;
	opacity: 1;
}

#g_navi li:hover ul.sub-menu a:hover {
	color:#2AA581;
}

#sns{
	margin-right: 200px;
	border: 0px solid red;
}

#sns img{width: 40px;}
#sns a:hover{opacity: 0.8;}

/* ---- pc 1550px ---------- */
@media only screen and (max-width:1550px){
#g_navi ul li{
	padding: 0 12px 0;/*padding: 0 15px 0;*/
}
}

/* ---- pc 1400px ---------- */
@media only screen and (max-width:1400px){
#hd_logo{
	width: 250px;
	margin-left: 30px;
}

#g_navi ul li{
	padding: 0 10px 0;
	font-size: 20px;
}

#sns{margin-right: 180px;}
}

/* ---- pc 1200px ---------- */
@media only screen and (max-width:1200px){
#hd_logo{
	width: 230px;
	margin-left: 20px;
}

#g_navi ul li{
	padding: 0 10px 0;
	font-size: 20px;
}

#g_navi .sub-menu {left: 0%;}
#sns{margin-right: 150px;}
}

/* ---- pc 1150px ---------- */
@media only screen and (max-width:1150px){
.naviArea{
	width: 100%;
	height: 60px;
	/*position: fixed;*/
}

#hd_Area{
	width: 100%;
	justify-content: space-between;
	margin-right: 75px;
}

#hd_insta{
	display: block !important;
}

#hd_insta img{
	width: 40px;
	height: auto;
}

#hd_logo{
	width: 200px;
	margin-left: 20px;
}

#g_navi{display: none;}
}

/* ---- tablet ------------- */
@media only screen and (max-width:1024px){
.naviArea{
	width: 100%;
	height: 60px;
}

#hd_logo{
	width: 200px;
	margin-left: 20px;
}
}

/* ---- sp 480 ------------- */
@media only screen and (max-width:480px){
#hd_Area{
	margin-right: 70px;
}

#hd_logo{
	width: 180px;
	margin-left: 20px;
}
}

/*-------------------------------------------------------------------
　hamburger menu
-------------------------------------------------------------------*/
/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 0;
	cursor: pointer;
	width: 80px;
	height:80px;
	border:0px solid #000;
	background: #F3F9F7;
	display: none;
}

.openbtn > div{
	position: relative;
	width: 36px;
}

/*×に変化*/	
.openbtn span{
	width: 100%;
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 22px;
	height: 3px;
	border-radius: 2px;
	background-color: #2AA581;
}

.openbtn span:nth-of-type(1) {top:25px;}
.openbtn span:nth-of-type(2) {top:38px;}
.openbtn span:nth-of-type(3) {top:51px;}

.openbtn.active span:nth-of-type(1) {
	top: 33px;
	left: 22px;
	transform: translateY(6px) rotate(-45deg);
	width: 100%;
	background-color: #2AA581;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;	
}

.openbtn.active span:nth-of-type(3){
	top: 45px;
	left: 22px;
	transform: translateY(-6px) rotate(45deg);
	width: 100%;
	background-color: #2AA581;
}


/*========= ナビゲーションのためのCSS ===============*/
#menu{
	/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
	position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
	top:0;/*ナビの位置と形状*/
	width:100%;
	right: 0;
	height: 100vh;/*ナビの高さ*/
	background:#F3F9F7;
	transition: all 0.8s;/*動き*/
}

/*-- アクティブクラスがついたら透過なしにして最前面へ --*/
#menu.panelactive{
	opacity: 1;
	z-index:999;
}

/*-- ナビゲーションの縦スクロール --*/
#menu.panelactive #g_navList{
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999; 
	width: 100%;
	height: 100vh;/*表示する高さ*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: #F3F9F7;
}

#menu.panelactive #g_navList::-webkit-scrollbar{
  display:none;/*スクロールバー非表示（Chrome・Safari）*/
}

.sp_hdBox{
	display: none;
}

.menu_logo{
	display: none;
}

/*-- ナビゲーション --*/
#menu .boxMainList {
	font-family: "Zen Maru Gothic", sans-serif;
	width: 800px;
	padding: 10px 0;
	margin: 70px auto 100px;
	display: block;
	font-weight: bold;
	color: #37231E;
}

#menu .boxMainList li{border-bottom:1px solid #37231E;}
#menu .boxMainList li:first-child{border-top:1px solid #37231E;}
#menu .innerList li:first-child{border-top:0px solid #37231E;}
#menu .innerList li{border: none;}

/*-- リストのレイアウト設定 --*/
#menu .nomalTit{
	padding: 15px 0 15px 30px;
}

#menu .nomalTit a{display: block; color: #37231E;}
#menu .nomalTit a:hover{text-decoration: none;}

#menu .itemTit{
	position: relative;
	pointer-events: auto;
	padding: 15px 0 15px 30px;
	color: #37231E;
}

#menu .itemTit::before,
#menu .itemTit::after{
	content: '';
	width: 20px;
	height: 2px;
	background-color: #37231E;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 1s;
}

#menu .itemTit::after{
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.3s;
}

#menu .itemTit.show::before {
    opacity: 0;
}

#menu .itemTit.show::after {
	transform: translateY(-50%) rotate(180deg);
}

#menu .itemMain{border-top: 0px solid #000;}
#menu .itemMain:last-child{border-bottom: 1px solid #000;}

#menu .innerList{
	margin-top: 0;
	display: none;
	padding: 0 0 20px 50px;
}

#menu .innerList li{padding: 5px 0;}
#menu .innerList li:first-child{padding: 0 0 5px 0;}
#menu .innerList li a{display: block;}

#menu .innerList li.linkItem a{
	font-size: 20px;
	color: #37231E;
}

.menu_telBox{
	display: none;
}

/* ---- pc 1150px ---------- */
@media only screen and (max-width:1150px){
.sp_hdBox{
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px auto 0;
	border:0px solid #000;
}

.sp_logo img{
	width: 220px;
	height: auto;
}

.sp_inst{margin-right: 30px;}

.sp_inst img{
	width: 40px;
	height: auto;
}

#menu .boxMainList {
	width: 90%;
	padding: 10px 0;
	margin: 30px auto 50px;
}

.openbtn{
	display: block;
	width: 60px;
	height:60px;
	top:0;
}

/*×に変化*/	
.openbtn span{
	width: 100%;
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 13px;
	height: 3px;
	border-radius: 2px;
	background-color: #2AA581;
}

.openbtn span:nth-of-type(1) {top:15px;}
.openbtn span:nth-of-type(2) {top:28px;}
.openbtn span:nth-of-type(3) {top:41px;}

.openbtn.active span:nth-of-type(1) {
	top: 23px;
	left: 13px;
}

.openbtn.active span:nth-of-type(3){
	top: 35px;
	left: 13px;
}

.menu_telBox{
	width: 90%;
	margin: 0 auto;
	display: block;
	text-align: center;
}

.menu_telBox h4{
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #37231E;
}

.menu_tel{
	font-family: "Manrope", sans-serif;
	font-size: 45px;
	font-weight: bold;
	margin: -8px 0 10px;	
}

.menu_tel span.material-icons-round{
	font-size: 40px;
}

.menu_tel a{
	color: #2AA581;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.menu_yoyaku_btn{
	width: 50%;
	margin: 0 auto 100px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 25px;
}

.menu_yoyaku_btn span.material-icons-round{font-size: 30px;}

.menu_yoyaku_btn a{
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-weight: bold;
	color: #FFF;
	background: #F0919B;
	text-align: center;
	border-radius: 10px;
	padding: 20px 5px;
	text-decoration: none;
	transition: 0.5s;
}

.menu_yoyaku_btn a:hover{
	box-sizing: border-box;
	opacity: 0.8;
}

#sp_menu_sns{
	text-align: center;
	margin-bottom: 100px;
}

#sp_menu_sns img{
	width: 60px;
}
}

/* ---- sp 767 ------------- */
@media only screen and (max-width:767px){
.sp_hdBox{
	width: 85%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px auto 0;
	border:0px solid #000;
}

#menu .boxMainList {
	width: 85%;
	padding: 10px 0;
	margin: 20px auto 50px;
	font-size: 22px;
}

.menu_yoyaku_btn{
	width: 80%;
	font-size: 25px;
}
}

/* ---- sp 480 ------------- */
@media only screen and (max-width:480px){
.sp_inst{margin-right: 35px;}

#menu .boxMainList {
	font-size: 22px;
}

#menu .nomalTit{
	padding: 15px 0 15px 20px;
}

#menu .itemTit{
	position: relative;
	pointer-events: auto;
	padding: 15px 0 15px 20px;
}

#menu .innerList{
	padding: 0 0 20px 30px;
}

#menu .linkItem{font-size: 20px;}

.menu_tel{
	font-size: 35px;
	margin: -8px 0 10px;	
}

.menu_tel span.material-icons-round{
	font-size: 30px;
}

.menu_yoyaku_btn{
	width: 85%;
	font-size: 22px;
}
}

/* ---- sp 360 ------------- */
@media only screen and (max-width:360px){
.sp_logo img{
	width: 180px;
}
}


/*-------------------------------------------------------------------
　footer
-------------------------------------------------------------------*/
#footer{
	width: 100%;
	background: url("../images/footer_bg.jpg") no-repeat top center;
	background-size: cover;
	background-color: #FBFBFB;
	padding: 150px 0;
}

#footerIn{
	width: 1400px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	border:0px solid #000;
}

#ft_info{
	width: 670px;
	border:0px solid #000;
}

#ft_calendar{
	max-width: 670px;
	width: 100%;
	border:0px solid #000;
}

#ft_cont{
	display: flex;
	margin-bottom: 20px;
}

.ft_logo{
	width: 110px;
	margin-right: 20px;
}

.ft_logo img{
	width: 100%;
	height: auto;
}

#ft_tel h3{
	color: #2AA581;
	font-weight: bold;
}

#ft_add{
	padding: 0;
}

#ft_call{
	font-family: "Manrope", sans-serif;
	font-size: 55px;
	font-weight: bold;
	line-height: 1;
}

#ft_call span.material-icons-round{
	font-size: 50px;
}

#ft_call a{
	color: #F0919B;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ft_time_box{
	width: 100%;
	padding: 30px;
	border:1px solid #000;
	border-radius: 10px;
	box-sizing: border-box;
	background: #FFF;
	margin-top: 30px;
}

.ft_timeTb{
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	color: #37231E;
}

.ft_timeTb th:first-child{width: 160px;}

.ft_timeTb thead th{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: bold;
	padding-bottom: 10px;
	border-width: 0px 0px 1px 0px;
	border-color: #C8C8C8;
	border-style: solid;
	text-align: center;
}

.ft_timeTb tbody td{
	padding: 10px 3px;
	text-align: center;
	border-width: 0px 0px 1px 0px;
	border-color: #C8C8C8;
	border-style: solid;
}

.ft_timeTb tfoot td{
	padding: 10px 3px 0px;
	text-align: center;
	border-width: 0px 0px 0px 0px;
	border-color: #C8C8C8;
	border-style: solid;
}

.ft_timeTb th.none{border-width: 0px 0px 1px 0px;}
.ft_timeTb tbody td.none{border-width: 0px 0px 1px 0px;}
.ft_timeTb tfoot td.none{border-width: 0;}

.ft_timeTb thead th.tb_txL,
.ft_timeTb tbody td.tb_txL,
.ft_timeTb tfoot td.tb_txL{
	text-align: left;
}

.ft_timeTb tbody td,
.ft_timeTb tfoot td {
	vertical-align: middle;
}

.ft_tb_fg{color: #2AA581;}
.ft_tb_fp{color: #F0919B;}

.ft_time_info{
	margin-top: 30px;
}

ul.ft_time_det{
	list-style: none;
	margin-right: 50px;
}

ul.ft_time_det li{
	position: relative;
	padding-left: 1.5em;
}

ul.ft_time_det li::before{
	content: "●";
  position: absolute;
  left: 0;
  top: 0; /* 縦位置調整 */
  font-size: 1em;
}

ul.ft_time_det li.green::before{color: #2AA581;}
ul.ft_time_det li.pink::before{color: #F0919B;}

.g_calendar {
	position: relative;
	width: 100%;
	padding-bottom: 75%; /* 縦横比 */
	height: 0;
}
 
.g_calendar iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

#copyright{
	width: 100%;
	font-size: 12px;
	color: #978D8A;
	text-align: center;
	background: #FBE7E1;
	padding: 10px 10px;
	line-height: 1.2;
}

/* ---- pc 1500px ---------- */
@media only screen and (max-width:1500px){
#footerIn{
	width: 90%;
}

#ft_info{
	width: 48%;
}

#ft_calendar{
	max-width: 48%;
	width: 48%;
}

.g_calendar {
	position: relative;
	width: 100%;
	padding-bottom: 75%;/* 高さ比率（4:3） */
}
}

/* ---- pc 1300px ---------- */
@media only screen and (max-width:1300px){
.ft_logo{
	width: 100px;
	margin-right: 10px;
}

#ft_tel h3{font-size: 18px;}
#ft_add{font-size: 18px;}

#ft_call{
	font-size: 40px;
	line-height: 1.2;
}

#ft_call span.material-icons-round{font-size: 35px;}

.ft_time_box{
	font-size: 20px;
	padding: 30px;
	margin-top: 30px;
	line-height: 1.5;
}

.ft_timeTb th:first-child{width: 100px;}

ul.ft_time_det{
	font-size: 18px;
	margin-right: 0;
}
}

/* ---- tablet ------------- */
@media only screen and (max-width:1024px){
#footer{
	width: 100%;
	padding: 100px 0;
}

#footerIn{
	width: 90%;
	flex-direction: column;
}

#ft_cont{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

#ft_info{
	width: 80%;
	margin: 0 auto 50px;
}

#ft_calendar{
	max-width: 80%;
	width: 80%;
	margin: 0 auto;
}

.ft_timeTb th:first-child{width: 160px;}
}

/* ---- sp 767 ------------- */
@media only screen and (max-width:767px){
#footer{
	width: 100%;
	padding: 80px 0;
}

#footerIn{
	width: 85%;
}

#ft_info{
	width: 100%;
	margin: 0 auto 50px;
}

#ft_cont{
	flex-direction: column;
	margin-bottom: 20px;
}

.ft_logo{
	width: 120px;
	margin: 0 0 10px 0;
}

#ft_calendar{
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}

.ft_time_box{
	font-size: 18px;
	padding: 20px;
	margin-top: 30px;
	line-height: 1.5;
}

.ft_timeTb th:first-child{width: 100px;}
}

/* ---- sp 480 ------------- */
@media only screen and (max-width:480px){
#ft_cont{
	text-align: center;
	margin-bottom: 20px;
}

.ft_logo{
	width: 100px;
	margin: 0 0 10px 0;
}

#ft_tel h3{font-size: 16px;}

#ft_add{
	font-size: 16px;
	line-height: 1.5;
}

#ft_call{
	font-size: 35px;
	line-height: 1.2;
}

#ft_call span.material-icons-round{font-size: 30px;}

.ft_time_box{
	font-size: 14px;
	padding: 10px;
	margin-top: 30px;
	line-height: 1.5;
}

.ft_timeTb th:first-child{width: 60px;}

.g_calendar {
	width: 100%;
	height: 100%;
	padding-bottom: 150%;
}

#copyright{
	width: 100%;
	font-size: 11px;
	padding: 10px 15px;
}
}


/*-------------------------------------------------------------------
　floating banner
-------------------------------------------------------------------*/
#floating_Ba{
	position: fixed;
	z-index: 300;
	top:20px;
	right: 20px;
	width: 160px;
}

#floating_Ba a:hover{
	opacity: 0.8;
}

/* ---- pc 1400px ---------- */
@media only screen and (max-width:1400px){
#floating_Ba{
	top:20px;
	right: 20px;
	width: 140px;
}
}

/* ---- pc 1200px ---------- */
@media only screen and (max-width:1200px){
#floating_Ba{
	top:20px;
	right: 20px;
	width: 120px;
}
}

/* ---- pc 1150px ---------- */
@media only screen and (max-width:1150px){
#floating_Ba{display: none;}
}

/*-------------------------------------------------------------------
　tel link 
-------------------------------------------------------------------*/
[href^="tel"] {
    text-decoration: none;
    color: #333;
    cursor: default;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    [href^="tel"] {
        pointer-events: auto;
    }
}

