@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');
*{
	box-sizing:border-box;
	padding:0;
	margin:0;
	word-break:normal;
	word-wrap:break-word;

}
@font-face {
  font-family: "zenkaku";
  src:url(ZenKakuGothicNew-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenkaku";
  src:url(ZenKakuGothicNew-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "zenkaku";
  src:url(ZenKakuGothicNew-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'robotoflex';
  src:url(Roboto.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bahnschrift';
  src:url(bahnschrift.ttf);
  font-weight: normal;
  font-style: normal;
}
body{
	font-family: "zenkaku", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ Pro W6", "メイリオ","Meiryo",Arial, sans-serif;
	background-color:#fff;
	color:#333;
	font-size: 18px;
	line-height: 1.4;
}
img{
	vertical-align:bottom;
	margin:0;
	padding:0;
	border:0;
	max-width:100%;
}
.clearfix:before,
.clearfix:after{
	display: table;
  	content: " ";
}
.clearfix:after{
	clear: both;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
table {
  background-color: transparent;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
ul li{
	list-style:none;
}
h1,h2,h3,h4,h5,h6,p{
	margin:0px;
}
h1,h2,h3,h4{
	font-family: 'Noto Serif JP', serif;
}

.fixedcontainer{
	max-width:900px;
	width: 90%;
	margin:0 auto;
	padding:0px;
}
a{
	color: inherit;
}
a:visited,
a:link,
a:hover,
a:active,
a:focus{
	outline:none;
	text-decoration:none;
}
a:hover{
	opacity:0.8;
	transition:opacity 0.5s ease;
}


.red{
	color:#ed1c24;
}
.bkyellow{
	background-color:#fff100;
}
.bold{
	font-weight:bold;
}
.btline{
	text-decoration:underline;	
}
.underline{
	text-decoration:underline;
}
.text-center{
	text-align:center;
}
.text-left{
	text-align:left;
}
.text-right{
	text-align:right;
}
.visible-sp{
	display:none;
}
.hidden-sp{
	display:block;
}
.visible-xs{
	display:none;
}
.hidden-xs{
	display:block;
}
.visible-500{
	display:none;
}
.hidden-500{
	display:block;
}
.flex{
  display:-webkit-flex;
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    flex-direction:row;
    flex-wrap: nowrap;
}
/*-------------header----------------------*/
.menu-trigger {	
	position: relative;
	display: block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
    float: right;
    width: 50px;
    height: 50px;
    z-index: 2;
}
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
    float: right;
    position: absolute;
    background: #000;
    width: 30px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
}
.active .menu-trigger span{
	background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
    top: 15px;
}
.menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 15px;
}
.g-nav {
    display: none;
    position: fixed;
    top: 0; 
    left: 0;
    background: rgba(183, 150, 85, 0.95);
    width: 100%;
    height: auto;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 30px;
}
.active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
}

.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
}
.active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
}
.list{
	text-align: center;
}
.list li{
	margin-top: 15px;
}
.list a{
	display: inline-block;
	font-family: 'robotoflex';
	font-size: 37px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 2px;
	position: relative;
}
.list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 2px;
    background:#DBCAAA;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
.list li a:hover::after {
    transform: scale(1, 1);
}

.header{
	background-color: #fff;
}
.header_in{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	z-index: 2;
	position: relative;
}

.logo a{
	display: block;
	line-height: 1;
}
.active .logo a svg .st0{
	fill: #fff;
}
.header_links{
	display: flex;
	align-items: center;
}
.header_links>a{
	margin-left: 15px;
}
.header_btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	padding: 7px 0;
}
.header_btn svg{
	margin-right: 5px;
}
.header_btn1{	
	border: 1px solid #B79655;
	color: #B79655;
	background-color: #fff;
	transition: all 0.5s;
}
.active .header_btn1{
	background-color: #B79655;
	border: 1px solid #fff;
	color: #fff;
}
.active .header_btn1 svg .st1{
	stroke: #fff;
}
.header_btn2{
	border: 1px solid #B79655;
	background-color: #B79655;
	color: #fff;
	transition: all 0.5s;
}
.active .header_btn2{
	background-color: #fff;
	border: 1px solid #fff;
	color: #B79655;
}
.active .header_btn2 svg .st2{
	stroke: #B79655;
}


.slideshow-fade{
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
}
.slideshow-fade li{
    list-style: none;
    width: 100%;
    height: 100%;
}
.slideshow-fade li img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width:1300px){
.slideshow-fade{
    height: 54.7vw;
}
.slideshow-fade li img{
  height: auto;
  object-fit: initial;
}
}
.fv_ttl{
	font-size: 35px;
	text-align: center;
	color: #B79655;
	line-height: 1.3;
	padding: 30px 0;
}
.fv_ttl h1{
	font-size: 1em;
}
.service{
	display: flex;
}
.service_content{
	width: calc(50% + 64px);
	background-color: #B79655;
	color: #fff;
	padding: 70px 65px 70px calc(50% - 450px);
}
.service_img{
	width: calc(50% - 64px);
	background: url(../img/service.png);
	background-size: cover;
	background-position: center;
}
.title{
	font-size: 50px;
	margin-bottom: 15px;
	color: #B79655;
	text-align: center;
}
.sub_ttl{
	text-align: center;
	font-size: 22px;
	margin-bottom: 30px;
	color: #B79655;
}
.service .title, .service .sub_ttl{
	color: #fff;
	text-align: left;
}
.service_bar{
	width: 166px;
	height: 5px;
	background-color: #ECE4D3;
	margin-left: -100px;
	margin-bottom: 60px;
}
.service_txt{
	line-height: 2.1;
}
.cta{
	padding: 60px 0;
}

.cta_in{
	width:80%;
	margin: 0 auto;


}

.cta_in__btn{
	margin-bottom: 20px;
}
@media screen and (min-width:768px){
	.cta_in{
		width:100%;
		margin: 0 auto;
		max-width: 900px;
		display: flex;
	
	
	}
	
	.cta_in__btn{
		margin-bottom: 0;
	}

	.cta_in__btn01{
		margin-right: 40px;
	}

}
.cta_txt{
	text-align: center;
	line-height: 1.6;
	margin-bottom: 40px;
}
.cta_ttl{
	border: 2px solid #22A873;
	text-align: center;
	padding: 20px 0 70px;
	font-size: 42px;
	color: #22A873;
}
.cta_wrap{
	text-align: center;
}
.cta_btn{
	display: inline-block;
	padding: 30px 100px;
	background-color: #22A873;
	color: #fff;
/*	border: 3px solid #fff;*/
	font-size: 42px;
	font-weight: 500;
	margin-top: -62px;
	position:relative;
  top:0;
    text-decoration: none;
    outline: none;
    transition: all .5s;
}
.cta_btn:hover {
  top:-5px;
  opacity: 1;
  transition: all .5s;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.back{
	background: url(../img/back.png) no-repeat;
	background-size: cover;
	background-position: center;
	height: 445px;
}
.description{
	padding: 60px 0;
}
.desc_ttl{
	font-size: 30px;
	color: #B79655;
	margin-bottom: 20px;
}
.desc_txt{
	line-height: 1.6;
}
.merit{
	padding: 80px 0;
	background-color: #F8F4EE;
}
.merit .title{
	text-align: center;
}
.merit_one{
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
.merit_one.reserve{
	flex-direction: row-reverse;
}
.merit_one_img{
	width: 280px;
}
.merit_content{
	width: 568px;
}
.merit_header{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.merit_one_num{
	width: 72px;
	height: 72px;
	background-color: #B79655;
	text-align: center;
	color: #fff;
	font-size: 17px;
	padding-top: 10px;
	line-height: 1;
	margin-right: 10px;
	font-family: 'Noto Serif JP', serif;
}
.merit_one_num span{
	display: block;
	font-size: 32px;
	font-weight: bold;
}
.merit_one_ttl{
	font-size: 30px;
	color: #B79655;
}
.merit_one_txt{
	line-height: 1.6;
}
.change{
	padding-bottom: 70px;
}
.change_tbl table{
	width: 100%;
	text-align: center;
}
.change_tbl table thead th{
	padding: 10px 0;
	border-top: 1px solid #B79655;
	border-bottom: 1px solid #B79655;
	background-color: #D4C099;
	border-right: 1px solid #B79655;
}
.change_tbl table thead td{
	padding: 10px 0;
	border-top: 1px solid #B79655;
	border-bottom: 1px solid #B79655;
	background-color: #D4C099;
	color: #fff;
	border-right: 1px solid #B79655;
}
.change_tbl table thead td:last-child{
	border-right: none;
}
.change_tbl table tbody th{
	padding: 10px 0;
	border-top: 1px solid #B79655;
	border-bottom: 1px solid #B79655;
	background-color: #F8F4EE;
	color: #B79655;
	font-weight: normal;
	min-width: 160px;
	border-right: 1px solid #B79655;
}
.change_tbl table tbody td{
	padding: 10px 0;
	border-top: 1px solid #B79655;
	border-bottom: 1px solid #B79655;
	background-color: #fff;
	min-width: 200px;
}
.change_tbl table tbody td:nth-child(2),
.change_tbl table tbody td:nth-child(3){
	font-size: 24px;
	border-right: 1px solid #B79655;
}
.flow{
	background: url(../img/flow-back.png) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 60px 0;
}
.flow .title, .flow .sub_ttl{
	color: #fff;
}
.flow_list{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.flow_list:before{
	content: '';
	position: absolute;
	left: 20px;
	width: calc(100% - 40px);
	height: 2px;
	background-color: #fff;
	top: 60px;
	z-index: -1;
}
.flow_one{
	text-align: center;
	color: #fff;
	width: 140px;
}
.flow_one_txt{
	font-size: 14px;
	margin-top: 10px;
}
.gallery{
	padding: 60px 0 0;
}
.gallery_list{
	display: flex;
	flex-wrap: wrap;
}
.gallery_list>div{
	width: 50%;
}
.message{
	padding-top: 60px;
}
.message_one{
	position: relative;
	min-height: 190px;
	margin-top: 85px;
}
.message_one_img{
	position: absolute;
	left: 0;
	bottom: 0;
}
.message_one_header{
	margin-left: 85px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #B79655;
	color: #fff;
	padding: 7px 35px 7px 100px;
}
.message_one_name{
	font-size: 22px;
}
.message_one_txt{
	margin: 20px 35px 0 185px;
	line-height: 1.6;
}
.youtube{
	text-align: center;
}
.instagram{
	padding: 60px 0;
	text-align: center;
}
.faq{
	padding: 60px 0;
	background-color: #F8F4EE;
}
.faq_one{
	margin-top: 30px;
}
.ques{
	background-color: #B79655;
	position: relative;
	color: #fff;
	padding: 20px 60px;
}
.ques:before{
	content: 'Q';
	position: absolute;
	font-family: 'bahnschrift';
	left: 18px;
	font-size: 42px;
	line-height: 1;
	top: 15px;
}
.ques:after{
	content: '';
	position: absolute;
	right: 20px;
	width: 18px;
	height: 18px;
	background: url(../img/plus.png) no-repeat;
	background-size: contain;
	background-position: center;
	top: 24px;
}
.ans{
	display: none;
	margin-left: 60px;
	padding: 20px 60px;
	background-color: #fff;
	position: relative;
}
.ans:before{
	content: 'A';
	position: absolute;
	font-family: 'bahnschrift';
	left: 18px;
	font-size: 42px;
	line-height: 1;
	top: 15px;
	color: #B79655;
}
.active .ques:after{
	background-image: url(../img/minus.png);
}
.fixed_bottom{
	position: fixed;
	display: none;
	bottom: 50px;
	right: 50px;
}
.footer{
	padding: 40px 0 15px;
}
.sns_links{
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
}
.sns_links li{
	margin: 0 6px;
}
.copyright{
	text-align: center;
	font-size: 14px;
}