@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arizonia&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:
		"Noto Sans JP",
		"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: 380px;
	margin-left: 25px;
}

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

#g_navi{
	display: flex;
	align-items: center;
	/*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: #182E66;}

#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:#182E66;
	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;
}

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

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

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

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

#g_navi .sub-menu {left: 0%;}
}

/* ---- 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_logo{
	width: 360px;
	margin-left: 20px;
}

#g_navi{display: none;}
}

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

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

#hd_logo{
	width: 250px;
	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: #182E66;
	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: #FFFFFF;
}

.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: #FFFFFF;
}

.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: #FFFFFF;
}


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

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

.sp_hdBox{
	display: none;
}

.menu_logo{
	display: none;
}

/*-- ナビゲーション --*/
#menu .boxMainList {
	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: 360px;
	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: #FFFFFF;
}

.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-size: 18px;
	font-weight: bold;
}

.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: #182E66;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
}

/* ---- 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: 18px;
}
}

/* ---- sp 480 ------------- */
@media only screen and (max-width:480px){
#menu .boxMainList {
	font-size: 18px;
}

#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;
}
}

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


/*-------------------------------------------------------------------
　footer
-------------------------------------------------------------------*/
#footer_wrap{
	width: 100%;
	margin-top: 150px;
	background:
		linear-gradient(rgba(24, 46, 102, 0.5), rgba(24, 46, 102, 0.5)),
		url("../images/footer_bg.jpg") no-repeat top center / cover;
}

#footer{
	width: 1300px;
	margin: 0 auto;
	padding: 100px 0;
	color: #FFF;
	text-align: center;
}

#ft_log{
	width: 330px;
	margin: 0 auto;
}

#ft_tel{
	font-family: "Manrope", sans-serif;
	font-size: 55px;
	font-weight: bold;
}

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

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

#ft_add{
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 50px;
}

#copyright{
	font-size: 12px;
}

/* ---- pc 1400px ---------- */
@media only screen and (max-width:1400px){
#footer{
	width: 90%;
	margin: 0 auto;
	padding: 100px 0;
	color: #FFF;
	text-align: center;
}
}

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

/* ---- sp 767 ------------- */
@media only screen and (max-width:767px){
#footer_wrap{
	width: 100%;
	margin-top: 90px;
}

#footer{
	width: 100%;
	padding: 70px 0;
}

#ft_log{
	width: 300px;
	margin: 0 auto;
}

#ft_tel{
	font-size: 45px;
}

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

/* ---- sp 480 ------------- */
@media only screen and (max-width:480px){
#ft_log{
	width: 250px;
}

#ft_tel{
	font-size: 35px;
}

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

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

#copyright{
	width: 90%;
	font-size: 11px;
	margin: 0 auto;
}
}

/*-------------------------------------------------------------------
　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;
    }
}

