@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=Zen+Maru+Gothic:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&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;
}

table th,
table td{
	box-sizing: border-box;
}

caption, th, td {
	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: "Zen Maru Gothic", sans-serif;
	font-size:20px;
	font-weight: bold;
	color:#000;
	line-height:2;
	-webkit-text-size-adjust:none;
}

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

/*-------------------------------------------------------------------
　wrapper
-------------------------------------------------------------------*/
#wrapper{
	width:100%;
	margin:0;
	overflow: hidden;
}

#wrapper img{
	width:100%;
	height:auto;
	backface-visibility:hidden;
	image-rendering: -webkit-optimize-contrast;
}


/*-------------------------------------------------------------------
　br
-------------------------------------------------------------------*/
.br_pcdis{display:block;}/*1024px以上表示*/
.br_pc{display:block;}
.br_sp{display:none;}
.br1200{display: block;}
.br1024{display: none;}
.br480sp{display: none;}
.br_pcd{display:block;}

.dis1024{display: none;}

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

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

.dis1024{display: block;}
}

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

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


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

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

#hd_logo{
	width: 200px;
	display: flex;
	align-items: center;
	margin-left: 50px;
}

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

#g_navi{
	/*position: relative;*/
	display: flex;
	align-items: center;
	border:0px solid #000;
	margin-right: 140px;
}

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

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

#g_navi ul li a{
	position: relative;
	display: block;
	font-size: 22px;
	font-weight: bold;
	color: #000;
	border:0px solid #000;
}

#g_navi ul li a:hover{
	color: #000;
}

#g_navi ul li.navTit:hover{
	color: #E86161;
	transition: all 0s;
	cursor: pointer;
}

#g_navi .sub-menu {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	display: block;
	position: absolute;
	top: 100px;
	left: 5%;
	width: 210px;
	background: #FBF5F0;
	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: 16px;
	line-height: 1.5;
	border-bottom: 1px dashed #B5B5B5;
}

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

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

#g_navi ul > li:hover a {
	color:#000;
	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:#E86161;
}

#entry_btn a{
	display: inline-block;
	background: #E64930;
	color: #FFF;
	text-align: center;
	border-radius: 50px 50px;
	padding: 0 30px;
}

#entry_btn a:hover{
	background: #E96550;
}

/* ---- pc 1200px ---------- */
@media only screen and (max-width:1200px){
.naviArea{
	height: 80px;
}

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

#g_navi{
	margin-right: 110px;
}

#g_navi ul li{
	height: 100px;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 10px 0;
	text-align: center;
	font-size: 18px;
}
}

/* ---- tablet ------------- */
@media only screen and (max-width:1024px){
.naviArea{
	width: 100%;
	height: 65px;
	border:0px solid #000;
}

#g_navi{
	display: none;
	align-items: center;
	margin-right: 120px;
}
}

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

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

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


/*-------------------------------------------------------------------
　hamburger menu
-------------------------------------------------------------------*/
.openbtn{
	position:fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top:0;
	right: 0;
	cursor: pointer;
	width: 100px;
	height:100px;
	border:0px solid #000;
	background: #E60013;
}

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

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

.openbtn span:nth-of-type(1) {top:35px;}
.openbtn span:nth-of-type(2) {top:48px;}
.openbtn span:nth-of-type(3) {top:61px;}

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

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

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

/* ---- pc 1200px ---------- */
@media only screen and (max-width:1200px){
.openbtn{
	display: block;
	width: 80px;
	height:80px;
	top:0;
}

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

.openbtn span:nth-of-type(1) {top:24px;}
.openbtn span:nth-of-type(2) {top:37px;}
.openbtn span:nth-of-type(3) {top:50px;}

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

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

/* ---- tablet ------------- */
@media only screen and (max-width:1024px){
.openbtn{
	display: block;
	width: 65px;
	height:65px;
	top:0;
}

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

.openbtn span:nth-of-type(1) {top:17px;}
.openbtn span:nth-of-type(2) {top:30px;}
.openbtn span:nth-of-type(3) {top:43px;}

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

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

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

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

/*-- ナビゲーション --*/
#menu .boxMainList {
	width: 800px;
	padding: 10px 0;
	margin: 70px auto 100px;
	display: block;
}

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

#sp_entry_btn a{
	display: block;
	width: 300px;
	background: #E64930;
	color: #FFF;
	text-align: center;
	border-radius: 50px 50px;
	padding: 10px 50px;
	margin: 55px auto 0;
}

#sp_entry_btn a:hover{
	background: #E96550;
}

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

#menu .nomalTit a{display: block;}
#menu .nomalTit a:hover{color: #24412B;}

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

#menu .itemTit::before,
#menu .itemTit::after{
	content: '';
	width: 20px;
	height: 2px;
	background-color: #000;
	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-bottom: 20px;
	padding-left: 50px;
}

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

/* ---- tablet ------------- */
@media only screen and (max-width:1024px){
#menu .boxMainList {
	width: 90%;
	padding: 10px 0;
	margin: 70px auto 100px;
}
}

/* ---- sp 767 ------------- */
@media only screen and (max-width:767px){
#menu .boxMainList {
	width: 85%;
	padding: 10px 0;
	margin: 70px auto 100px;
}
}

/* ---- sp 480 ------------- */
@media only screen and (max-width:480px){
.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;
}

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

#sp_entry_btn a{
	display: block;
	width: 80%;
	border-radius: 50px 50px;
	padding: 15px 50px;
	margin: 30px auto 0;
}
}


/*-------------------------------------------------------------------
　footer
-------------------------------------------------------------------*/
#footer{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

#footer_ph{
	width: 130px;
	margin-right: 30px;
}

#footer_Mi{
	font-size: 40px;
	line-height: 1.3;
}

#footer_Mi span{
	display: block;
	font-family: "Afacad Flux", sans-serif;
	font-size: 25px;
	color: #E60013;
	margin-bottom: 10px;
}

#ft_text{
	width: 730px;
	margin: 0 auto 50px;
}

#ft_cont{
	width: 1000px;
	margin: 0 auto 50px;
	display: flex;
	justify-content: space-between;
}

.ft_Box{
	width: 48%;
	background: #FFF;
	border:2px solid #E60013;
	border-radius: 20px;
}

.ft_Box a{
	width: 100%;
	display: block;
	padding: 5px 10px;
}

.ft_Box a:hover{
	opacity: 0.7;
	transition:0.3s;
}

.ft_Box h5{
	font-size: 22px;
	color: #E60013;
	text-align: center;
}

#ft_tel{
	font-family: 'Manrope', sans-serif;
	font-size: 45px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.3;
}

#ft_tel i{
	font-size: 35px;
	margin-right: 15px;
}

.ft_Box02{
	display: flex;
	width: 48%;
	color: #FFF;
	text-align: center;
	background: #E60013;
	border-radius: 20px;
	border:0px solid #E60013;
}

.ft_Box02 a{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	text-align: center;
	padding: 5px 10px;
	border-radius: 20px;
}

.ft_Box02 a:hover{
	background: #FF1327;
}

.ft_entryTx{
	font-size: 45px;
	line-height: 1.3;
}

.ft_entryTx span{
	display: block;
	font-size:25px;
}

#ft_logo{
	width: 420px;
	margin: 0 auto;
	text-align: center;
}

#ft_add{
	font-size: 17px;
	text-align: center;
	margin-top: 5px;
}

#copy{
	width: 100%;
	font-size: 15px;
	text-align: center;
	color: #FFF;
	background: #E60013;
	margin-top: 150px;
	padding: 20px 0;
}

/* ---- pc 1200px ---------- */
@media only screen and (max-width:1200px){
#ft_cont{
	width: 80%;
	margin: 0 auto 50px;
}
}

/* ---- tablet ------------- */
@media only screen and (max-width:1024px){
#footer{
	width: 90%;
	margin: 0 auto 30px;
}

#ft_text{
	width: 85%;
	margin: 0 auto 50px;
}

#ft_cont{
	width: 90%;
	margin: 0 auto 50px;
}

#ft_tel{
	font-size: 35px;
}

#ft_tel i{
	font-size: 25px;
	margin-right: 15px;
}

.ft_entryTx{
	font-size: 35px;
	line-height: 1.3;
}

.ft_entryTx span{
	font-size:20px;
}

#copy{margin-top: 100px;}
}

/* ---- sp 767 ------------- */
@media only screen and (max-width:767px){
#footer{
	width: 85%;
	margin: 0 auto 30px;
}

#footer_ph{
	width: 150px;
	margin-right: 30px;
}

#footer_Mi{
	font-size: 35px;
}

#footer_Mi span{
	font-size: 22px;
	margin-bottom: 10px;
}

#ft_text{
	width: 85%;
	margin: 0 auto 50px;
}

#ft_cont{
	width: 85%;
	flex-direction: column-reverse;
	margin: 0 auto 50px;
}

.ft_Box,
.ft_Box02{
	width: 80%;
	margin: 0 auto
}

.ft_Box02{
	margin-top: 30px;
}

.ft_Box02 a{
	padding: 10px 10px 15px;
}

#ft_logo{width: 300px;}
#ft_add{font-size: 15px;}
#copy{margin-top: 80px;}
}

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

#footer_Mi{font-size: 25px;}

#footer_Mi span{
	font-size: 18px;
	margin-bottom: 0;
}

.ft_Box,
.ft_Box02{
	width: 100%;
}

.ft_Box h5{font-size: 20px;}
#ft_tel{font-size: 33px;}

#ft_tel i{
	font-size: 20px;
	margin-right: 10px;
}

.ft_entryTx{
	font-size: 35px;
}

.ft_entryTx span{
	font-size:20px;
}

#ft_logo{width: 270px;}

#ft_add{
	font-size: 15px;
	margin-top: 15px;
	line-height: 1.5;
}

#copy{
	font-size: 13px;
	padding: 20px 0;
	line-height: 1.5;
}
}


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

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

