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

html{
	font-size: 62.5%;
}

a{
	text-decoration: none;
	color:  #3f312b;
}

a:hover{
	color: #d3cbc6;
}

i{
	margin-right: 7px;
}


.sp{
	display: none;
}

/*body*/
body{
	font-family: 'EB Garamond', serif;
	font-family: 'Noto Serif JP', serif;
	font-family: 'Sawarabi Mincho', sans-serif;
	background-image: url("../img/bgi.png");
	background-color:rgba(255,255,255,0.8);
	background-blend-mode:lighten;
	-webkit-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	color: #3f312b;
	font-size: 1.6rem;
}


h2{
	font-size: 2.4rem;
	line-height: 2;
	text-align: center;
	margin-bottom: 45px;
	border-bottom:double;
	border-color: #3f312b;
}

h3{
	line-height: 2;
	font-size: 2rem;
}

h1{
	font-size: 2.4rem;
	letter-spacing: 0.1rem;
	line-height: 2;
}

p{
	line-height: 1.6;
}

.section{
	padding: 90px;
}

.btn{
	color: #fff;
	font-weight: bold;
	display: inline-block;
    background-color: #3f312b;
	text-decoration: none;
	padding: 20px;
	text-align: center;
	letter-spacing: 1px;
	border: 1px solid #3f312b;
}

.btn:hover{
	background-color: #fff;
	color:#d3cbc6;
}

.btn-container{
	text-align: center;
	margin-bottom: 90px;
}

/*header*/

.header{
	padding-bottom: 0;
}
.global-nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}

.nav-list{
	margin-left: 20px;
}


.kv{
	position: relative;
}

.kv-text-container{
	position: absolute;
	top: 15%;
    left: 15%;
    width: 70%;
    color: #fff;
    padding: 15px;
    font-size: 2.4rem;

}

.kv-img{
	-webkit-background-size: cover;
	background-size: cover;
	max-width: 100%;
	height: auto;
	text-align: center;
	margin-bottom: 90px;
}

/*sum*/

.sum{
	background-color: #fff;
}


.sum p {
	text-align: center;
	margin-bottom: 45px;
}

.list__item{
	line-height: 2;
	display: block;
	margin-left: 15%;
}

.list{
	margin-bottom: 90px;
}

/*about*/
.about h2{
	margin-bottom: 10px;
}
.about h3{
	text-align: center;
	margin-bottom: 45px;
}
.list2 .list__item{
	line-height: 1.5;
	margin-bottom: 45px;
}

.list__item span{
	font-size: 4rem;
	font-style: italic;
	padding-right: 5px;
}


/*details*/
.details{
	margin: 0 auto;
	background-color: #fff;
}

.details h3{
	text-align: center;
	border-bottom:double;
	border-color: #3f312b;
	width: 300px;
	margin: 0 auto;
	margin-bottom: 45px;
}

.details-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.details-list__img{
	max-width: 400px;
	margin-bottom: 60px;
}

.details-list__item{
	width: 50%;
}
.more{
	width: 200px;
}

dl{
	margin-bottom: 45px;
	margin-left: 15%;
}

dt{
	margin-bottom: 20px;
}
dd{
	margin-bottom: 45px;
	line-height: 1.5;
}

/*申し込み*/
.btn3{
	background-color: #eae5e3;
	color: #3f312b;
	width: 200px;
}

.btn3:hover{
	color:#eae5e3;
	background-color: #3f312b;
}

/*footer*/
footer{
	text-align: center;
	margin: 45px 0;
}




@media screen and (max-width: 800px){
	.pc{
		display: none;
	}
	
	.section{
		padding: 20px;
	}
	
/*-------------hamburger menu*/
	.nav_btn{
		display: block;
	}
	
	#header{
		z-index: 500;
	}
	
	#header #navi {
	  transition: all .6s;
	  overflow-y: auto;
	　padding-top: 40px;
	  width: 300px;
	  height: 100vh;
	  z-index: 300;
	  top: 0;
	  right: -320px;
	  background-color: #fff;
	  position: fixed;
}
 
#header .nav_btn {
  width: 44px;
  height: 44px;
  z-index: 400;
  top: 7px;
  right: 7px;
  cursor: pointer;
  position: absolute;
	background-color: #3f312b;
}
 
.hamburger_line {
  transition: all .6s;
  width: 34px;
  height: 2px;
  left: 5px;
  background-color: #fff;
  position: absolute;
}
 
.hamburger_line1 { top: 10px; }
.hamburger_line2 { top: 21px; }
.hamburger_line3 { top: 32px; }
 
.nav_bg {
  opacity: 0;
  transition: all .6s;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  top: 0;
  left: 0;
  visibility: hidden;
  background-color: #000;
  cursor: pointer;
  position: fixed;
}
 
/* 表示された時用のCSS */
.nav_open #header #navi { left: 0; }
 
.nav_open .nav_bg {
  opacity: .8;
  visibility: visible;
}
 
.nav_open .hamburger_line1 {
  transform: rotate(45deg);
  top: 20px;
}
 
.nav_open .hamburger_line2 {
  width: 0;
  left: 50%;
}
 
.nav_open .hamburger_line3 {
  transform: rotate(-45deg);
  top: 20px;
}
	
	
/*nav*/
	
	header .global-nav{
		display: block;
	}

	.nav-list{
		margin-top: 30px;
		margin-left: 30px;
	}
	
/*-------------/hamburger menu*/
	
/*header*/
	.logo{
		text-align: center;
		font-size: 2rem;
	}
	
	
/*about*/
	.list__item{
		margin: 0;
	}
	
/*details*/
	
	.details-list{
		display: block;
		justify-content: center;
	}

	.details-list__item{
		text-align: center;
		width: 100%;
	}
	
	.details-list__img{	
		margin-bottom: 45px;
	}
	
	dl{
		margin-left: 0;
	}
	
}

@media screen and (max-width: 500px){
	
/*common*/
	.sp{
		display: block;
	}
	
	.section{
		padding: 10px;
	}
	
	.btn{
		line-height: 1.4;
	}
	
/*about*/
	.list__item{
		margin: 10px;
	}

	
/*details*/
	.details-list__img{
		max-width: 300px;
	}
	
	dl{
		margin: 10px;
	}
}