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

* {
	line-height: 1;
}

img {
    border: 0;
    vertical-align: top;
}


/*clearfix*/
.clearfix:after{
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .clearfix{
	display: inline-block;
}
/* no ie mac \*/
* html .clearfix{
	height: 1%;
}
.clearfix{
	display: block;
}
.clearfix{
  overflow:hidden;
}
/* Hides from IE-mac \*/
* html .clearfix{
  height:1%;
	overflow-x : hidden;
}

* {
	box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
word-wrap: break-word;

	
}

/*body*/

body {
width: 100%;
	-webkit-text-size-adjust: 100%;
}

img {
    border: 0;
    vertical-align: top;
}

.contents-left {
	float: left;
	vertical-align: top;
	display: inline-block;
}

.contents-right {
	float: right;
	vertical-align: top;
	display: inline-block;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.75;
}


.contents-box {
	font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	color: #4d4d4d;
	font-size: 16px;
	line-height: 1;
}

.contents-box p {
	font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
	font-size: 16px;
	color: #4d4d4d;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.contents-box p br.sp-view {
	display: none;
}

.contents-box a {
}

.contents-box p a {
}

.space-box {
	clear:both;
}

/*header*/

#header {
	width: 100%;
	position: fixed;
left: 0px;
top: 0px;
	z-index: 999999999999;
}

.header {
	padding: 0px 20px;
	display: flex;
  justify-content: space-between;
	width: 100%;
}

.header-left {
	padding-top: 15px;
}

.header-left img {
	height: 80px;
	width: auto;
}

.header-right {
	display: flex;
  justify-content: flex-end;
flex-wrap: wrap;
}

.header-right .box02 {
	padding-top: 10px;
}


/*メニュー部分*/
	nav{
		display: none;
		position: absolute;
		top:0;
		left: 0;
		width: 100%;
		min-height: 100vh;
		background:#FFF;
		overflow: auto;
		
	}
	nav .box-wrap {
		width: 100%;
		min-height: 100vh;
		display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
		flex-direction: column;
	}

nav .box-wrap h2 img {
		height: 90px;
	width: auto;
	}

nav .box-wrap h3 img {
		height: 90px;
	width: auto;
	}

nav .box-wrap ul {
		display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	gap:0px 10px;
	padding: 30px 0px 70px;
	}

nav .box-wrap ul li a {
	font-family: 'GenEiLateMin', sans-serif;
		font-size: 20px;
color: #754c24;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: normal;
	background-color: #f3eae0;
	width: 240px;
	text-align: center;
	padding: 15px 0px;
	border-radius: 60px;
	display: block;
	}

nav .box-wrap .contents-linkbox2 {
	text-align: center;
	}

nav .box-wrap .contents-linkbox2 .box-in {
	display: flex;
  justify-content: center;
flex-wrap: wrap;
	gap:20px 10px;
	padding-top: 35px;
	width: 1100px;
	}

nav .box-wrap .contents-linkbox2 .box {
	width: 200px;
	}

nav .box-wrap .contents-linkbox2 h6 a {
	font-family: 'GenEiLateMin', sans-serif;
		font-size: 20px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: normal;
	background-color: #f6921e;
	text-align: center;
	padding: 15px 0px;
	border-radius: 8px;
	display: block;
	margin-bottom: 5px;
	}

nav .box-wrap .contents-linkbox2 p {
		font-size: 14px;
line-height: 1.4;
	}


/*開閉ボタン*/
	#nav_toggle{
		display: inline-block;
		vertical-align: top;
		float: right;
		width: 64px;
		height: 64px;
		position: relative;
		top: 0px;
		z-index: 10000000000;
		background-image: url("../images/menu-nav.svg");
		background-position: left bottom;
		background-repeat: no-repeat;
		background-size: 100% auto;
		padding: 20px 10px;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #FFF;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:10px;
	}
	#nav_toggle span:nth-child(3){
		top:20px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}



/* nav-pc */

.nav-pc {
	width: 100%;
	line-height: 0;
	text-align: center;
	position: absolute;
left: 0px;
bottom: 0px;
}

.nav-pc ul {
	display: inline-block;
}

.nav-pc ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px 35px;
}

.nav-pc ul li a:hover {
	opacity: 0.75;
}




/* main-img */

.main-img {
	width: 100%;
	position: relative;
}

.main-img img {
	width: 100%;
	height: auto;
	max-height: 660px;
	object-fit: cover;
}

.main-img::before {
	content: "";
	position: absolute;
left: 0px;
bottom: 0px;
	background-image: url("../images/flame01a.png");
background-position: center bottom;
background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	margin-bottom: -2px;
}

/*title-box*/
 
.title-box {
	position: absolute;
left: 0px;
top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
  justify-content: flex-end;
	align-items: center;
	padding-right: 5%;
}

.title-box .box {
	background-image: url("../images/title.svg");
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
	width: 512px;
	height: 466px;
	display: flex;
  justify-content: center;
align-items: center;
	flex-direction: column;
	text-align: center;
}


.title-box h3, .title-box h4 {
	font-family: 'GenEiLateMin', sans-serif;
font-weight: normal;
line-height: 1.2;
}

.title-box h3 {
	font-size: 48px;
color: #603813;
	letter-spacing: 0.3em;
	position: relative;
}

.title-box h3::before {
	content: "";
	position: absolute;
left: 0px;
top: 0px;
background-position: center top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 100%;
}

.title-box h4 {
font-size: 28px;
	color: #f6921e;
	padding-top: 15px;
}


/*contents*/
.contents {
	width: 100%;
	background-color: #fffbf7;
	background-image: url("../images/flame01b.png");
background-position: center top;
background-repeat: no-repeat;
background-size: 100% auto;
	padding-top: 80px;
}


/*contents-concept*/

.contents-concept {
	width: 1060px;
	text-align: center;
	margin-bottom: 120px;
}

.contents-concept .midashi-box {
	margin-bottom: 40px;
	display: flex;
  flex-direction: column;
  align-items: center;
}

.contents-concept .box-in {
	background-color: #FFF;
	padding: 40px;
	border-radius: 30px;
}

.contents-concept .midashi-box h3, .contents-concept .midashi-box h4, .contents-concept h5 {
	font-family: 'GenEiLateMin', sans-serif;
font-weight: normal;
line-height: 1.2;
}

.contents-concept .midashi-box h3 {
	font-size: 48px;
color: #603813;
letter-spacing: 0.3em;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.contents-concept .midashi-box h3::before, .contents-concept .midashi-box h3::after {
	content: "";
	position: absolute;
top: 0px;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 68px;
	height: 79px;
	margin-top: -15px;
}

.contents-concept .midashi-box h3::before {
left: 0px;
	background-image: url("../images/icon-concept01.svg");
background-position: left top;
	margin-left: -160px;
}

.contents-concept .midashi-box h3::after {
right: 0px;
	background-image: url("../images/icon-concept02.svg");
background-position: right top;
	margin-right: -160px;
}

.contents-concept .midashi-box h4 {
	font-size: 28px;
color: #f6921e;
letter-spacing: 0.05em;
	display: inline-block;
	padding: 8px 40px;
	background-color: #FFF;
	border-radius: 60px;
}

.contents-concept h5 {
	font-size: 32px;
color: #603813;
letter-spacing: 0.1em;
	margin-bottom: 40px;
}

.contents-concept p {
color: #231815;
	line-height: 2;
}


/* contents-linkbox */

.contents-linkbox {
	text-align: center;
	background-image: url("../../top/images/back04_01.jpg");
background-position: center top;
background-repeat: repeat-y;
background-size: 100% auto;
	padding: 100px 0px 250px;
	position: relative;
}

.contents-linkbox::before {
	content: "";
	position: absolute;
left: 0px;
bottom: 0px;
	background-image: url("../../top/images/back04_02.jpg");
background-position: center bottom;
background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 300px;
}

.contents-linkbox h3 {
	margin-bottom: 45px;
}

.contents-linkbox .box-in {
	width: 1280px;
	display: flex;
  justify-content: center;
flex-wrap: wrap;
	gap:0px 20px;
}

.contents-linkbox .box {
	width: 239px;
}

.contents-linkbox .box a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.contents-linkbox p {
	position: absolute;
left: 0px;
top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	font-size: 14px;
color: #603813;
line-height: 1.4;
	font-weight: 500;
	padding-top: 95px;
}


/* lay */

.lay p {
color: #231815;
line-height: 1.8;
	letter-spacing: 0.05em;
}

/* lay01 */

.lay01 {
	background-color: #FFF;
	padding: 40px;
	border-radius: 30px;
	border-style : solid;
border-color : #f29600;
border-width : 1px;
	text-align: center;
}

.lay01 h4 {
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 29px;
color: #f6921e;
line-height: 1.4;
letter-spacing: 0.15em;
font-weight: normal;
	margin-bottom: 20px;
}

.lay01 p {
color: #231815;
line-height: 2;
}

/* lay02 */

.lay02 {
	display: flex;
  justify-content: center;
flex-wrap: wrap;
	gap:0px 60px;
	text-align: left;
}

.lay02 ul li {
	position: relative;
	padding-left: 50px;
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 26px;
color: #603813;
line-height: 1.4;
font-weight: normal;
	letter-spacing: 0.05em;
}

.lay02 ul li:not(:last-child) {
	margin-bottom: 15px;
}

.lay02 ul li::before {
	content: "";
	position: absolute;
left: 0px;
top: 0px;
	background-image: url("../images/check.svg");
background-position: left top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 40px;
	height: 36px;
}

/* lay03 */

.lay03 {
	width: 900px;
	text-align: left;
}

.lay03 .box:not(:last-child) {
	margin-bottom: 40px;
}


.lay03 h5 {
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 29px;
color: #603813;
line-height: 1.4;
letter-spacing: 0.2em;
font-weight: normal;
	margin-bottom: 35px;
	text-align: center;
}

.lay03 h6 {
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 20px;
color: #754c24;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: normal;
	background-color: #FFF;
	border-radius: 60px;
	padding: 0px 40px;
	padding-left: 150px;
background-position: left center;
background-repeat: no-repeat;
	height: 72px;
	display: flex;
  justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
}

.lay03 h6 span {
	font-size: 13px;
	line-height: 0.8;
}

.lay03a .box:nth-child(1) h6 {
	background-image: url("../images/m01.svg");
}

.lay03a .box:nth-child(2) h6 {
	background-image: url("../images/m02.svg");
}

.lay03a .box:nth-child(3) h6 {
	background-image: url("../images/m03.svg");
}

.lay03a .box:nth-child(4) h6 {
	background-image: url("../images/m04.svg");
}

.lay03b .box:nth-child(1) h6 {
	background-image: url("../images/d01.svg");
}

.lay03b .box:nth-child(2) h6 {
	background-image: url("../images/d02.svg");
}

.lay03b .box:nth-child(3) h6 {
	background-image: url("../images/d03.svg");
}

.lay03b .box:nth-child(4) h6 {
	background-image: url("../images/d04.svg");
}

.lay03 p {
	padding-top: 20px;
}

/* lay04 */

.lay04 {
	text-align: center;
	background-color: #f3eae0;
	border-radius: 30px;
	padding: 40px 0px 60px;
}

.lay04 .box01 {
	padding: 35px;
	background-color: #FFF;
}

.lay04 .box-flow {
	padding-top: 50px;
	width: 900px;
	text-align: left;
}

.lay04 .box-flow .box {
	position: relative;
}

.lay04 .box-flow .box:not(:last-child) {
	margin-bottom: 60px;
}

.lay04 .box-flow .box::after {
	content: "";
	position: absolute;
left: 0px;
bottom: 0px;
	background-image: url("../images/arrow-flow.svg");
background-position: center bottom;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 100%;
	height: 28px;
	margin-bottom: -45px;
}

.lay04 .box-flow .box:last-child::after {
	display: none;
}

.lay04 .box-flow h6 {
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 20px;
color: #754c24;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: normal;
	background-color: #FFF;
	border-radius: 60px;
	padding: 0px 40px;
	padding-left: 150px;
background-position: left center;
background-repeat: no-repeat;
	height: 72px;
	display: flex;
  justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
}

.lay04 .box-flow .box:nth-child(1) h6 {
	background-image: url("../images/f01.svg");
}

.lay04 .box-flow .box:nth-child(2) h6 {
	background-image: url("../images/f02.svg");
}

.lay04 .box-flow .box:nth-child(3) h6 {
	background-image: url("../images/f03.svg");
}

.lay04 .box-flow .box:nth-child(4) h6 {
	background-image: url("../images/f04.svg");
}

.lay04 .box-flow .box:nth-child(5) h6 {
	background-image: url("../images/f05.svg");
}

.lay04 .box-flow .box:nth-child(6) h6 {
	background-image: url("../images/f06.svg");
}

.lay04 .box-flow .box:nth-child(7) h6 {
	background-image: url("../images/f07.svg");
}

.lay04 h4, .lay04 h5 {
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 29px;
color: #754c24;
line-height: 1.4;
letter-spacing: 0.2em;
font-weight: normal;
	margin-bottom: 30px;
}

.lay04 h5 {
color: #f6921e;
	text-align: center;
}

.lay04 p {
	padding: 20px 20px 0px;
}

/* lay05 */

.lay05 {
	width: 900px;
	text-align: left;
}

.lay05 .box:not(:last-child) {
	margin-bottom: 50px;
}


.lay05 h6 {
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 22px;
color: #754c24;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: normal;
	background-color: #FFF;
	border-radius: 60px;
	padding: 0px 40px;
	padding-left: 100px;
	margin-left: 30px;
background-position: left center;
background-repeat: no-repeat;
	height: 72px;
	display: flex;
  justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
	position: relative;
}

.lay05 h6::after {
	content: "";
	position: absolute;
left: 0px;
top: 0px;
background-position: left top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 123px;
	height: 116px;
	margin-left: -40px;
	margin-top: -25px;
}

.lay05 .box:nth-child(1) h6::after {
	background-image: url("../images/t01.svg");
}

.lay05 .box:nth-child(2) h6::after {
	background-image: url("../images/t02.svg");
}

.lay05 .box:nth-child(3) h6::after {
	background-image: url("../images/t03.svg");
}

.lay05 .box:nth-child(4) h6::after {
	background-image: url("../images/t04.svg");
}

.lay05 .box:nth-child(5) h6::after {
	background-image: url("../images/t05.svg");
}

.lay05 p {
	padding: 20px 20px 0px;
}

/* lay06 */

.lay06 {
	width: 100%;
	background-color: #FFF;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
  justify-content: space-between;
flex-wrap: wrap;
}

.lay06 .box01 {
	width: 370px;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	text-align: center;
	background-color: #d2f2ff;
}

.lay06 .box02 {
	flex: 1;
	padding: 35px 50px;
	text-align: left;
}

.lay06 h3, .lay06 h4 {
	font-family: 'GenEiLateMin', sans-serif;
color: #384f78;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: normal;
}

.lay06 h3 {
	font-size: 35px;
}

.lay06 h4 {
	font-size: 22px;
	margin-bottom: 15px;
}



/*midashi*/

p.text01 {
	color:#000;
	line-height:1.6;
	font-size: 16px;
	letter-spacing: 0.05em;
}

.midashi01 {
	font-family: 'GenEiLateMin', sans-serif;
	text-align: center;
	margin-bottom: 35px;
	font-size: 29px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: normal;
	display: inline-block;
	padding: 10px 50px;
	border-radius: 60px;
	background-color: #603813;
	min-width: 940px;
}

.midashi01a {
	background-color: #f6921e;
}

.midashi02 {
	font-family: 'GenEiLateMin', sans-serif;
	font-size: 32px;
color: #603813;
	line-height: 1.4;
letter-spacing: 0.1em;
	font-weight: normal;
	margin-bottom: 40px;
}

.banner-side {
	position: fixed;
right: 20px;
top: 140px;
	z-index: 99999999999;
}


/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    display: block;
}

.pagetop_btn img {
    height: 160px;
	width: auto;
}


/*subcontents-map*/

.subcontents-map {
	width: 100%;
	clear: both;
	background-color: #8BC460;
}

.subcontents-map .box-in {
	padding: 20px 0px 25px;
	text-align: center;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	gap:0px 30px;
}

.subcontents-map .box-in p {
color: #FFF;
line-height: 1.6;
	text-align: left;
	border-left-style : solid;
border-left-color : #FFF;
border-left-width : 1px;
	padding-left: 30px;
}

.subcontents-map .parking {
	width: 1000px;
	background-color: #FFF;
	border-radius: 20px;
	padding: 20px 50px;
	display: flex;
  justify-content: space-between;
	align-items: center;
flex-wrap: wrap;
	margin-bottom: 25px;
}

.subcontents-map .parking h3 {
	flex: 1;
}

.subcontents-map .parking .box-p {
	width: 660px;
}

.subcontents-map .parking .box-p .box {
	display: flex;
  justify-content: space-between;
flex-wrap: wrap;
}

.subcontents-map .parking .box-p .box:not(:last-child) {
	margin-bottom: 10px;
}

.subcontents-map .parking h4 {
	width: 190px;
	text-align: center;
	padding: 8px 0px;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
color: #FFF;
line-height: 1.2;
letter-spacing: 0em;
font-weight: 500;
	background-color: #77cb54;
	border-radius: 8px;
}

.subcontents-map .parking .box:nth-child(2) h4 {
	background-color: #55c994;
}

.subcontents-map .parking h6 {
	width: 178px;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
}

.subcontents-map .parking p {
	flex: 1;
	padding-left: 20px;
	text-align: left;
	line-height: 1.6;
	font-size: 15px;
}

.subcontents-map .map-box, .subcontents-map iframe {
	width: 100%;
	clear: both;
	height: 450px;
}

/*footer*/

.footer {
	width: 100%;
	background-color: #fffbf7;
}

.footer .box-in {
	width: 1280px;
	display: flex;
  justify-content: space-between;
	align-items: center;
	padding: 50px 0px;
}
.footer .box02 {
	text-align: right;
}

.footer h5, .footer h5 a {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 42px;
color: #5c3723;
line-height: 1.2;
letter-spacing: 0.05em;
font-weight: 400;
}

.footer h5 {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 30px;
}

.footer h5::before {
	content: "";
	position: absolute;
left: 0px;
top: 15px;
	background-image: url("../images/tel-footer.svg");
background-position: left top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 30px;
	height: 30px;
}

.footer > p {
	font-size: 11px;
	color: #666666;
	line-height: 1.2;
	padding-bottom: 30px;
	text-align: center;
}


.banner-side {
	position: fixed;
right: 0px;
top: 120px;
	z-index: 99999999999;
}

.banner-side li img {
	width: 180px;
height: auto;
}


/*footer-link*/

.footer-link {
	width: 100%;
	text-align: center;
	padding: 10px 5px;
	background-color: #5c3723;
	position: fixed;
	left: 0px;
	bottom: 0px;
	display: none;
	z-index: 99999999999;
}

.footer-link ul {
	display: flex;
  justify-content: center;
}

.footer-link ul li {
	width: 32%;
	margin: 0px 1%;
}

.footer-link ul li img {
	width: 100%;
height: auto;
}



/**
 * for SmartPhone
 */
@media screen and (min-width: 737px) {
	
	body {
	min-width: 1280px;
	}
	

#header .sp-view {
	display: none;
}
	
	.header .contents-right .box02 {
		display: none;
	}	
		
	
}
@media screen and (max-width: 737px) {
    body {
    }

.contents-left {
	float: none;
	display: block;
}

.contents-right {
	float: none;
	display: block;
}


.contents-box {
	font-size: 14px;
}

.contents-box p {
	font-size: 14px;
}

.contents-box p br.sp-view {
	display: inline-block;
}
	


/*header*/


/*header*/

.header {
	padding: 0px 10px;
}

.header-left {
	padding-top: 10px;
}

.header-left h1 img {
	height: 40px;
	width: auto;
}

	
/*開閉ボタン*/
	#nav_toggle{
		width: 53px;
		height: 53px;
		padding: 16px 7px;
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:9px;
	}
	#nav_toggle span:nth-child(3){
		top:18px;
	}

	
	.nav-pc {
		display: none;
	}
	
nav .box-wrap h2 img {
		height: 55px;
	}

nav .box-wrap h3 img {
		height: 60px;
	}

nav .box-wrap ul {
	width: 100%;
	gap:10px 2%;
	padding: 20px 20px 60px;
	}

nav .box-wrap ul li {
	width: 49%;
	}

nav .box-wrap ul li a {
		font-size: 16px;
	width: 100%;
	padding: 12px 0px;
	display: block;
	}

nav .box-wrap .contents-linkbox2 .box-in {
	gap:10px 1.5%;
	padding-top: 25px;
	width: 92%;
	}

nav .box-wrap .contents-linkbox2 .box {
	width: 32%;
	}

nav .box-wrap .contents-linkbox2 h6 a {
		font-size: 15px;
	padding: 12px 0px;
	margin-bottom: 0px;
	}

nav .box-wrap .contents-linkbox2 p {
		display: none;
	}

	
	
/*main-img*/
 
.main-img img {
	height: 240px;
}

/*title-box*/
 
.title-box {
	padding-right: 0%;
  justify-content: center;
align-items: center;
}

.title-box .box {
	background-image: none;
	width: 100%;
	height: auto;
	padding-top: 70px;
}

.title-box h3, .title-box h4 {
	color: #FFF;
	text-shadow: 0px 0px 8px #000;
}

.title-box h3 {
	font-size: 22px;
	letter-spacing: 0.25em;
}

.title-box h4 {
font-size: 14px;
	padding-top: 10px;
}

	
/*contents*/


.contents {
	padding-top: 40px;
}
	
	
/*contents-concept*/

.contents-concept {
	width: 90%;
	margin-bottom: 60px;
}

.contents-concept .midashi-box {
	margin-bottom: 30px;
}

.contents-concept .box-in {
	padding: 30px 25px;
	border-radius: 20px;
}

.contents-concept .midashi-box h3 {
	font-size: 24px;
letter-spacing: 0.2em;
	margin-bottom: 15px;
}

.contents-concept .midashi-box h3::before, .contents-concept .midashi-box h3::after {
	height: 40px;
	margin-top: -0px;
}

.contents-concept .midashi-box h3::before {
	margin-left: -70px;
}

.contents-concept .midashi-box h3::after {
	margin-right: -70px;
}

.contents-concept .midashi-box h4 {
	font-size: 16px;
	padding: 6px 30px;
}

.contents-concept h5 {
	font-size: 20px;
	margin-bottom: 25px;
}

.contents-concept p {
	text-align: left;
}

	
/* contents-linkbox */

.contents-linkbox {
	padding: 50px 0px 110px;
	background-size: 150% auto;
}

.contents-linkbox::before {
	height: 150px;
}

.contents-linkbox h3 {
	margin-bottom: 25px;
}
	
.contents-linkbox h3 img {
	height: 65px;
	width: auto;
}

.contents-linkbox .box-in {
	width: 100%;
	gap:10px 10px;
}

.contents-linkbox .box {
	width: 175px;
}
	
.contents-linkbox .box img {
	width: 100%;
height: auto;
}

.contents-linkbox p {
	font-size: 12px;
	padding-top: 65px;
}

.lay p {
	text-align: left;
}

/* lay01 */

.lay01 {
	padding: 30px;
	border-radius: 20px;
}

.lay01 h4 {
	font-size: 22px;
}

.lay01 p {
	text-align: left;
}

/* lay02 */

.lay02 {
	gap:15px;
  justify-content: flex-start;
}
	
.lay02 ul {
	width: 92%;
	margin: 0px auto;
}

.lay02 ul li {
	padding-left: 35px;
	font-size: 18px;
}

.lay02 ul li::before {
	height: 22px;
}

/* lay03 */

.lay03 {
	width: 100%;
}

.lay03 .box:not(:last-child) {
	margin-bottom: 30px;
}


.lay03 h5 {
	font-size: 20px;
letter-spacing: 0.15em;
	margin-bottom: 25px;
}

.lay03 h6 {
	font-size: 15px;
	padding: 0px 20px;
	padding-left: 110px;
	height: 60px;
	background-size: auto 100%;
	letter-spacing: 0.05em;
}

.lay03 h6 span {
	font-size: 12px;
	line-height: 1;
}

.lay03 p {
	padding-top: 15px;
}

/* lay04 */

.lay04 {
	border-radius: 20px;
	padding: 30px 0px 40px;
}

.lay04 .box01 {
	padding: 30px 25px;
	text-align: left;
}

.lay04 h4, .lay04 h5 {
	font-size: 20px;
letter-spacing: 0.1em;
	margin-bottom: 20px;
}

.lay04 .box-flow {
	padding-top: 35px;
	width: 100%;
}
	
.lay04 .box-flow .box-in {
	width: 92%;
	margin: 0px auto;
	text-align: left;
}

.lay04 .box-flow .box:not(:last-child) {
	margin-bottom: 40px;
}

.lay04 .box-flow .box::after {
	height: 15px;
	margin-bottom: -30px;
}

.lay04 .box-flow h6 {
	font-size: 15px;
letter-spacing: 0.05em;
	padding: 0px 20px;
	padding-left: 110px;
	height: 60px;
	background-size: auto 100%;
}
	
/* lay05 */

.lay05 {
	width: 100%;
}

.lay05 .box:not(:last-child) {
	margin-bottom: 30px;
}


.lay05 h6 {
	font-size: 17px;
	padding: 0px 20px;
	padding-left: 65px;
	margin-left: 20px;
	height: 60px;
}

.lay05 h6::after {
	height: 80px;
	margin-left: -25px;
	margin-top: -15px;
}

/* lay06 */

.lay06 {
	border-radius: 20px;
  justify-content: center;
}

.lay06 .box01 {
	width: 100%;
	padding: 25px 0px 15px;
}

.lay06 .box02 {
	padding: 30px 25px;
}

.lay06 h3 {
	font-size: 25px;
}

.lay06 h4 {
	font-size: 20px;
}


/*midashi*/

p.text01 {
	font-size: 14px;
}
	
.midashi01 {
	margin-bottom: 25px;
	font-size: 18px;
	padding: 12px 30px;
	min-width: 0px;
}
	
.midashi02 {
	font-size: 20px;
	margin-bottom: 25px;
}
	
	
.btntop-footer {
		width: 92%;
		padding-bottom: 20px;
		display: block;
	}
	
.btntop-footer img {
		width: 100%;
	height: auto;
	}

.banner-side {
	display: none;
}

/*btn-top*/
	
	.pagetop_btn {
		bottom: 65px;
		right: 5px;
	}
	
.pagetop_btn img {
    height: 120px;
	width: auto;
}
	

/*subcontents-map*/

.subcontents-map {
	width: 100%;
	clear: both;
}

.subcontents-map .box-in {
	padding: 15px 0px 20px;
	gap:15px 30px;
}
	
.subcontents-map .box-in img {
	height: 25px;
	width: auto;
}

.subcontents-map .box-in p {
	text-align: center;
	border-left-style : none;
	padding-left: 0px;
}

.subcontents-map .parking {
	width: 90%;
	padding: 20px 20px;
  justify-content: center;
	gap:20px;
}

.subcontents-map .parking h3 {
	width: 100%;
	text-align: center;
}
	
.subcontents-map .parking h3 img {
	height: 32px;
	width: auto;
}

.subcontents-map .parking .box-p {
	width: 100%;
}

.subcontents-map .parking .box-p .box {
  justify-content: center;
	gap:10px;
}

.subcontents-map .parking .box-p .box:not(:last-child) {
	margin-bottom: 25px;
}

.subcontents-map .parking h4 {
	width: 100%;
	font-size: 16px;
	letter-spacing: 0.1em;
}

.subcontents-map .parking h6 {
	width: 100%;
	text-align: center;
}

.subcontents-map .parking p {
	width: 100%;
	padding-left: 0px;
	text-align: center;
	font-size: 14px;
}
	
.subcontents-map .map-box, .subcontents-map iframe {
	height: 250px;
}

/*footer*/

.footer .box-in {
	width: 92%;
  justify-content: center;
	flex-wrap: wrap;
	padding: 30px 0px;
	gap:15px;
}
.footer .box02 {
	text-align: center;
}
	
.footer h3 img {
	height: 50px;
	width: auto;
}

.footer h5, .footer h5 a {
	font-size: 38px;
}

.footer h5 {
	padding-left: 25px;
	margin-bottom: 25px;
}

.footer h5::before {
top: 15px;
	height: 27px;
}
	
.footer h6 img {
	width: 100%;
height: auto;
}

.footer > p {
	font-size: 10px;
	padding-bottom: 20%;
}


	/*footer-link*/

.footer-link {
	display: block;
}

      
}
