@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 {
	z-index: 999999999999;
	width: 100%;
	position: fixed;
left: 0px;
top: 0px;
}

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

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

#header h2 {
	position: absolute;
   top: 0%;
   left: 50%;
   -webkit-transform: translate(-50%, -0%);
   transform: translate(-50%, -0%);
	padding-top: 80px;
}

#header h2 img {
	height: 150px;
	width: auto;
}

/*メニュー部分*/
	nav{
		display: none;
		position: absolute;
		top:0;
		width: 100%;
		min-height: 100vh;
		background:#FFF;
		left: 0;
		overflow: auto;
		
	}
	nav div {
		display: block;
		width: 100%;
		height:100%;
		position: absolute;
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;
		margin: auto;
		padding-top: 300px;
	}
	nav ul{
		margin: 0 auto;
		width: 700px;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
		display: flex;
  justify-content: space-between;
		flex-wrap: wrap;
	}

nav ul li{
	width: 50%;
	}

	nav ul li:last-child{
		border: none;
	}

	nav ul li a {
		display: block; 
		color: #c3996d;
		font-weight: normal;
		font-size: 22px;
		line-height: 1.2;
		letter-spacing: 0.1em;
		padding: 10px 15px;
	}

nav ul li:nth-child(3) a, nav ul li:nth-child(4) a {
	padding-bottom: 25px;
	}



nav ul li:nth-child(n+5) a {
		color: #FFF;
	background-color: #c3996d;
	letter-spacing: 0.1em;
	border-style : solid;
border-color : #FFF;
border-width : 1px;
	}


nav ul li a:before {
		content: "●";
	font-size: 18px;
	}

nav ul li:nth-child(n+5) a:before {
		content: "・";
	}


nav ul li a:hover {
		opacity: 1;
	color: #42210b;
	}

nav ul li:nth-child(n+5) a:hover {
	color: #FFF;
	background-color: #42210b;
	}

nav ul li a span {
	display: inline-block;
	padding-left: 20px;
	font-size: 14px;
	color: #c59b6d;
	letter-spacing: 0.1em;
	}

/*開閉ボタン*/
	#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: 10px 7px;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: rgba(0,0,0,0.5);
		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: 500px;
	object-fit: cover;
}

.main-img::before {
	content: "";
	position: absolute;
left: 0px;
bottom: 0px;
	background-image: url("../images/flame.svg");
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: 376px;
	height: 407px;
	display: flex;
  justify-content: center;
align-items: center;
	flex-direction: column;
	text-align: center;
}


.title-box h3, .title-box h4 {
line-height: 1.2;
}

.title-box h3 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 37px;
color: #42210B;
	letter-spacing: 0.3em;
font-weight: 400;
}

.title-box h4 {
	font-family: 'Poppins', sans-serif;
font-size: 22px;
	color: #C6B198;
	font-weight: 500;
	padding-top: 15px;
}


/*contents*/
.contents {
	width: 100%;
	padding-top: 30px;
	background-image: url("../images/contents-back.jpg");
background-position: center top;
background-repeat: repeat-y;
}


/*contents-concept*/

.contents-concept {
	width: 1000px;
	margin-bottom: 100px;
}

.contents-concept .box01 {
	background-image: url("../images/midashi01.svg");
background-position: center top;
background-repeat: no-repeat;
background-size: auto 100%;
	height: 198px;
	display: flex;
  justify-content: center;
align-items: center;
	flex-direction: column;
	text-align: center;
}

.contents-concept h3, .contents-concept h4 {
line-height: 1.2;
}

.contents-concept h3 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 37px;
color: #42210B;
	letter-spacing: 0.3em;
font-weight: 400;
}

.contents-concept h4 {
	font-family: 'Poppins', sans-serif;
font-size: 22px;
	color: #C6B198;
	font-weight: 500;
	padding-top: 15px;
}

.contents-concept .box02 {
	padding-top: 20px;
}


/* contents-guide */

.contents-guide {
	text-align: center;
	margin-bottom: 100px;
}

.contents-guide .midashi-box {
	display: flex;
  justify-content: center;
	margin-bottom: 40px;
}

.contents-guide .midashi-box h3 {
	font-family: 'Jost', sans-serif;
	font-size: 30px;
color: #c6b198;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: 600;
}

.contents-guide .midashi-box h4 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 25px;
	color: #42210b;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: 400;
	border-left-style : solid;
border-left-color : #988575;
border-left-width : 1px;
	padding-left: 20px;
	margin-left: 20px;
}

.contents-guide .box-in {
	width: 1170px;
	padding: 40px;
	display: flex;
  justify-content: center;
flex-wrap: wrap;
	gap:40px 30px;
	border-style : solid;
border-color : #C6B198;
border-width : 3px;
	background-color: rgba(255,255,255,0.8);
	border-radius: 35px;
}

.contents-guide .box {
	width: 240px;
}

.contents-guide .box img {
	border-radius: 50%;
	width: 100%;
height: auto;
}

.contents-guide .box h5 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 26px;
color: #42210B;
line-height: 1.2;
letter-spacing: 0.3em;
font-weight: 400;
	padding: 15px 0px 8px;
}

.contents-guide .box h6 {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
color: #C6B198;
line-height: 1.2;
font-weight: 500;
}



/* lay01 */

.lay01 {
	position: relative;
	border-radius: 35px;
	background-color: rgba(219,211,204,0.3);
	padding: 50px 85px;
	padding-top: 70px;
}

.lay01::after {
	position: absolute;
left: 25%;
top: 0px;
	width: 50%;
	font-family: 'Zen Maru Gothic', sans-serif;
	text-align: center;
	font-size: 31px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.3em;
font-weight: 400;
	display: inline-block;
	padding: 8px 0px;
	border-radius: 60px;
	background-color: #988575;
	margin-top: -25px;
}

/* lay02 */

.lay02 {
	background-color: #FFF;
	border-radius: 16px;
	padding: 40px 50px;
	overflow: hidden;
}

/* movie */

.movie {
	width: 920px;
	background-color: #FFF;
}

.movie img, .movie video {
	width: 100%;
	height: auto;
}




/*midashi*/

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

.midashi01 {
	font-family: 'Zen Maru Gothic', sans-serif;
	text-align: center;
	margin-bottom: 30px;
	font-size: 31px;
color: #736357;
line-height: 1.2;
letter-spacing: 0.3em;
font-weight: 400;
}


h6.btn01 a {
	font-weight: 500;
	font-size: 16px;
color: #FFF;
line-height: 1.2;
	letter-spacing: 0.1em;
	padding: 15px 70px;
	display: inline-block;
	text-align: center;
	transition: .5s;
	border-radius: 60px;
	min-width: 240px;
	position: relative;
	background-color: #c9b294;
}

h6.btn01 a::after {
	content: "";
	position: absolute;
right: 25px;
top: 0px;
	background-image: url("../images/link-arrow03.svg");
background-position: right center;
background-repeat: no-repeat;
	background-size: auto 20px;
	width: 20px;
	height: 100%;
	transition: .5s;
}

h6.btn01 a:hover {
	opacity: 1;
}

h6.btn01 a:hover::after {
	right: 15px;
}


.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;
    background : #1d91ac;
    text-align: center;
    color: #FFF;
    font-size: 24px;
    text-decoration: none;
    padding: 10px 10px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
	border-radius: 5px;
}

.pagetop_btn a:hover {
    display: block;
    background-color: #8bc53f;
    text-align: center;
    color: #FFF;
    font-size: 24px;
    text-decoration: none;
    padding: 10px 10px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
	border-radius: 5px;
}


/*subcontents-map*/

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

.subcontents-map .box-in {
	padding: 25px 0px;
	text-align: center;
}

.subcontents-map p {
color: #231815;
line-height: 1.6;
	padding-top: 20px;
}

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

/*footer*/

.footer {
	width: 100%;
	text-align: center;
	background-image: url("../images/footer.jpg");
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}

.footer .box-in {
	width: 1030px;
	display: flex;
  justify-content: space-between;
	align-items: flex-end;
	padding: 60px 0px 40px;
}

.footer .box01 {
	width: 360px;
}

.footer .box02 {
	width: 430px;
}

.footer h3 img {
	height: 130px;
	width: auto;
}

.footer h4 {
	margin: 20px auto;
}

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

.footer h5 {
	display: inline-block;
	position: relative;
	padding-left: 40px;
	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: 28px;
	height: 39px;
}

.footer .box01 p {
color: #736357;
line-height: 1.2;
}

.footer > p {
	font-size: 12px;
	color: #231815;
	line-height: 1.2;
	padding: 20px 0px;
	text-align: center;
}


/*footer-link*/

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

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

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

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



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

#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: 10px;
}


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

.header-right .box01 {
	display: none;
}


#header h2 {
	padding-top: 50px;
}

#header h2 img {
	height: 90px;
	width: auto;
}

	
/*開閉ボタン*/
	#nav_toggle{
		width: 53px;
		height: 53px;
		padding: 7px 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 div {
		padding-top: 180px;
	}
	nav ul{
		width: 100%;
	}
	
nav ul li {
	width: 100%;
	
}
	
nav ul li a {
		font-size: 18px;
	}
	
	nav ul li a {
		padding: 10px 15px;
	}

nav ul li:nth-child(3) a {
	padding-bottom: 10px;
	}
	
nav ul li:nth-child(4) a {
	padding-bottom: 20px;
	}
	
	
/*main-img*/
 
.main-img img {
	height: 200px;
}
	
.main-img::before {
	background-size: 105% auto;
	margin-bottom: -1px;
}


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

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


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

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

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


	
/*contents*/


.contents {
	padding-top: 30px;
	background-size: 200% auto;
}
	
	
/*contents-concept*/

.contents-concept {
	width: 100%;
	margin-bottom: 50px;
}

.contents-concept .box01 {
	height: 80px;
}

.contents-concept h3 {
	font-size: 25px;
	letter-spacing: 0.25em;
}

.contents-concept h4 {
font-size: 15px;
	padding-top: 10px;
}

.contents-concept .box02 {
	padding-top: 20px;
	width: 92%;
	margin: 0px auto;
}

	
	
	
/* contents-guide */

.contents-guide {
	margin-bottom: 50px;
	width: 92%;
}

.contents-guide .midashi-box {
	justify-content: flex-start;
	margin-bottom: 30px;
}

.contents-guide .midashi-box h3 {
	font-size: 22px;
}

.contents-guide .midashi-box h4 {
	font-size: 20px;
	padding-left: 15px;
	margin-left: 15px;
}

.contents-guide .box-in {
	width: 100%;
	padding: 25px 20px;
	gap:30px 6%;
	border-radius: 20px;
}

.contents-guide .box {
	width: 47%;
}

.contents-guide .box h5 {
	font-size: 19px;
letter-spacing: 0.2em;
	padding: 10px 0px 5px;
}

.contents-guide .box h6 {
	font-size: 11px;
}


/* lay01 */

.lay01 {
	border-radius: 20px;
	padding: 40px 25px;
	padding-top: 40px;
}

.lay01::after {
left: 10%;
	width: 80%;
	font-size: 22px;
letter-spacing: 0.25em;
	margin-top: -20px;
}

/* lay02 */

.lay02 {
	border-radius: 12px;
	padding: 30px 25px;
}

/* movie */

.movie {
	width: 100%;
}


/*midashi*/

p.text01 {
	font-size: 14px;
}
	
.midashi01 {
	margin-bottom: 25px;
	font-size: 20px;
letter-spacing: 0.15em;
}
	
h6.btn01 a {
	font-size: 14px;
	letter-spacing: 0.05em;
	padding: 12px 70px;
}
	
.btntop-footer {
		width: 92%;
		padding-bottom: 20px;
		display: block;
	}
	
.btntop-footer img {
		width: 100%;
	height: auto;
	}

	
/*contentslink-guide*/

#contentslink-guide {
	padding: 30px 0px 15px;
}

#contentslink-guide h3 {
	margin-bottom: 20px;
}
	
#contentslink-guide h3 img {
	height: 100px;
	width: auto;
}

#contentslink-guide ul {
	width: 92%;
}

#contentslink-guide ul li {
	width: 48.5%;
	margin-right: 2.5%;
	margin-bottom: 15px;
}

#contentslink-guide ul li:nth-child(3n) {
	margin-right: 2%;
}
	
#contentslink-guide ul li:nth-child(2n) {
	margin-right: 0%;
}
	
#contentslink-guide ul li img {
	width: 100%;
height: auto;
}

.banner-side {
right: 10px;
top: 50px;
}
	
.banner-side img {
	width: 100px;
	height: auto;
}

/*btn-top*/
	
	.pagetop_btn {
		bottom: 65px;
		right: 5px;
	}
	

/*subcontents-map*/

.subcontents-map .box-in {
	padding: 30px 0px 20px;
}
	
.subcontents-map .box-in h3 img {
	height: 22px;
	width: auto;
}
	
.subcontents-map .box-in p {
	padding: 15px 15px 0px;
}
	
.subcontents-map .map-box, .subcontents-map iframe {
	width: 100%;
	clear: both;
	height: 200px;
}

/*footer*/

.footer {
}

.footer .box-in {
	width: 90%;
	display: block;
	padding: 40px 0px 30px;
}

.footer .box01 {
	width: 100%;
}

.footer .box02 {
	width: 100%;
}
	
.footer h3 img {
	height: 85px;
	width: auto;
}

.footer h4 img {
	height: 40px;
	width: auto;
}

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

.footer h5 {
	padding-left: 30px;
	margin-top: 5px;
}

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

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

	
	/*footer-link*/

.footer-link {
	display: block;
}

      
}
