@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: 'CraftMincho';
  src: url('../font/craftmincho.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body{
	margin: 0;
	padding: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: bolder;
  	font-style: normal;
	background-image: url("../images/background.jpg");
	background-repeat: repeat;
	color: #444444;
	line-height: 1.5;
	font-size: 16px;
}
@media (max-width: 768px){
	body{
		font-size: 14px;
	}
}
a:hover{
	color: #6D706E;
}
/*header*/
#header{
	font-size: 16px;
	max-height: 100px;
	max-width: 1920px;
	width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
}

.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 91.53%;
    margin: 0 auto;
}

.header-inner{
	display: flex;
    gap: 50px;
	justify-content: flex-start;
	align-items: center;
}
.header-inner h1 img{
	width: 100px;
	height: auto;
}
.menu{
	display: flex;
	gap: 30px;
}

.header-btn{
	display:flex;
    justify-content: flex-end;
	align-items: center;
    gap: 50px;
}
.header-tel{
	letter-spacing: 1.5px;
	font-weight: 600;
	font-size: 18px;
}
.nav{
    position: static;
    transform: none;
}
@media screen and (min-width: 1024px) {
    .hamburger{
		display: none;
}
}
.header-inner h1 img{
	width: 112px;
	height: 83px;
}
/*WEB予約ボタン*/
.reserve-btn a{
    background: #1F4E6B;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 260px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: solid 1px #1F4E6B;
}
.reserve-btn a:hover{
    background: #fff;
    color: #1F4E6B;
}
@media (max-width: 768px){
	.reserve-btn a{
	margin: 0 auto;
}
}
@media (max-width: 1023px){
  .header-inner > .menu{
    display: none;
  }
  .header-container{
    width: 100%;
	max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  /*TEL + WEB予約*/
  .header-btn{
    order: -1;                 
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    padding: 8px 16px;
    box-sizing: border-box;
    gap: 0;
  }
.reserve-btn{
      flex: 1;
      display: flex;
  }

  .reserve-btn a{
      flex: 1;
      width: 100%;
      max-width: none;
      margin: 0;
      border-radius: 0;
      border: none;
      padding: 12px 0;
      justify-content: center;
      align-items: center;
  }
  /*TEL*/
  .header-tel{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    font-size: 16px;
    background: #fff;
    text-align: center;
  }

  /*WEB予約*/
  .reserve-btn{
    flex: 1;
  }

  .reserve-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    background: #1F4E6B;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 0;
  }
  /*ロゴ + ハンバーガー*/
  .header-inner{
    order: 0;
    width: 100%;
    padding: 8px 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .header-inner h1 img{
    width: 80px;
    height: auto;
  }
  /*ドロワーメニュー*/
  .nav{
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 82vw;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 1200;
    padding: 16px 14px;
    box-sizing: border-box;
  }

  .nav.is-open{
    transform: translateX(0);
  }

  .nav .menu{
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav .menu a{
    display: block;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    color: #444;
  }
	/*ハンバーガー*/
  .hamburger{
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    margin-left: auto;
    cursor: pointer;
    z-index: 1300;
    position: relative;
  }
  .hamburger-line{
    width: 25px;
    height: 1px;
    background: #444;
    display: block;
    margin: 3px 0;
    transition: transform .25s, opacity .25s;
    transform-origin: center;
  }
  .hamburger.is-open .line-top{
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-open .line-middle{
    opacity: 0;
  }
  .hamburger.is-open .line-bottom{
    transform: translateY(-7px) rotate(-45deg);
  }
	#header{
    max-height: none;
  }
  .header-container{
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
  }
  .header-btn{
    padding: 0;
    gap: 0;
  }

  .header-tel{
    padding: 12px 0;
  }

  .reserve-btn a{
    padding: 12px 0;
    margin: 0;
  }
  .nav .menu{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

}



.container{
	/*width: calc(1247 / 1440 * 100%);*/
	width: calc(960 / 1440 * 100%);
	margin: 0 auto;
}
@media (max-width: 768px){
	.container{
		width: calc(286 / 375 * 100%);
}
}


/*footer*/

#footer{
	background-color: #CFBEA9;
	padding-top: 50px;
	padding-bottom: 10px;
}
.footer-text a img{
	width: 112px;
	height: 83px;
	margin-bottom: 20px;
}
.footer-container{
    width: 91.53%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.footer-menu{
	display: flex;
	gap: 30px;
}
.fp-copy{
	padding-top: 20px;
}
.fp-copy p{
	font-size: 14px;
}
.footer-time,
.footer-tel{
	padding-bottom: 5px;
}
@media (max-width: 768px){
  .footer-menu{
	display: flex;
    flex-direction: column;
	gap: 10px;
}
	.footer-menu li{
		font-weight: 700;
		list-style-type: disc;
	}
	.footer-container{
    width: 75%;
}
	.fp-copy p{
		font-size: 10px;
	}
}
/*googlemapボタン*/
.map-btn{
	margin: 10px 0;
}
@media (max-width: 768px){
	.map-btn{
	
}
}
.map-btn a{
    background: #8A745A;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 260px;
    padding: 10px 15px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: solid 1px #8A745A;
}
.map-btn a:hover{
    background: #D2C0AA;
    color: #8A745A;
}
@media (max-width: 768px){
	.map-btn a{
	margin-right: auto;
		max-width: 100px;
}
	.footer-adress,
	.footer-tel,
	.footer-time{
		font-size: 12px;
	}
}
/*リンクボタン*/
.more-btn{
	margin-top: 68px;
}
@media (max-width: 768px){
	.more-btn{
	margin-top: 30px;
}
}
.more-btn a{
    background: #42985C;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 260px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: solid 1px #42985C;
}
.more-btn a:hover{
    background: #fff;
    color: #42985C;
}
@media (max-width: 768px){
	.more-btn a{
	margin: 0 auto;
}
}
/*mv*/
.sub-mv{
	width: calc(1200 / 1440 * 100%);
	margin: 0 auto;
	position: relative;
}
.sub-mv-img{
	margin-top: 100px;
}
@media (max-width: 768px){
	.sub-mv-img{
	margin-top: 30px;
}
}
.sub-mv-img img{
	
}
.sub-mv-txt{
	
}
.sub-mv-txt h2{
	font-family: 'CraftMincho',serif;
	color: #1F4E6B;
	font-size: 30px;
	letter-spacing: 2px;
	position: absolute;
	bottom: 50px;
	right: 0px;
	transform: translate(20%,0);
}
.sub-mv-txt nav{
	font-size: 14px;
	position: absolute;
	bottom: 30px;
	right: 0px;
	transform: translate(20%,0);
}
.breadcrumb-list{
	display: flex;
	align-items: center;
	gap: 5px;
}
@media (max-width: 768px){
	.sub-mv-txt h2{
	font-size: 20px;
	bottom: 25px;
}
	.sub-mv-txt nav{
	font-size: 10px;
	bottom: 10px;
}
}


/*メールフォーム*/


.form-table{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
	border-collapse: collapse;
}

.form-table th,
.form-table td{
	border-bottom: 1px solid #CCCDCC;
	padding: 30px 0;
	text-align: left;
	vertical-align: middle;
}

.form-table th{
	width: 25%;
	
}

.contact .container h3{
	text-align: center;
	font-size: 20px;
}
.mail-form{
	text-align: center;
	color: #42985C;
}
.must{
	text-align: right;
}

.form-table input[type="text"],
.form-table input[type="mail"],
.form-table textarea{
	width: 100%;
	padding: 15px;
	border: 1px solid rgba(213, 223, 220, 0.37);
	box-sizing: border-box;
	border-radius: 5px;
	background-color: rgba(213, 223, 220, 0.37);
}

.submit-btn{
	
	text-align: center;
}

.submit-btn input{
	width: 300px;
	height: 60px;
	border-radius: 20px;
	background: rgba(213, 223, 220, 0.9);
	border: none;
	color: #444;
}
.submit-btn input:hover{
	cursor: pointer;
}
.submit-btn{
	margin-bottom: 100px;
}

@media (max-width: 768px){
	.form-table,
	.form-table th,
	.form-table td
	{
		border: none;
		width: 100%;
		text-align: left;
	}
	
	.form-table th,
	.form-table td{
		display: block;
		padding: 10px 0;
		
	}
}
/*inro*/
.contact-intro{
	padding: 100px 0;
}
.contact-flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 768px){
	.contact-flex{
		flex-direction: column;
}
}
.contact-txt{
	width: calc(440 / 960 * 100%);
}
.contact-txt h4{
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 800;
}
.contact-txt p{
	text-align: justify;
	font-size: 14px;
	letter-spacing: 1.5px;
	line-height: 2;
}
.contact-tel-txt{
	width: calc(440 / 960 * 100%);
	background-color: rgba(213, 223, 220, 0.37);
	text-align: center;
	padding: 50px 0;
}
@media (max-width: 768px){
	.contact-tel-txt{
		width: 100%;
}
	.contact-txt{
		width: 100%;
		margin-bottom: 50px;
}
}
.contact-tel-txt h4{
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 800;
}
.contact-tel-txt .contact-tel{
	margin-bottom: 10px;
	font-size: 18px;
}
.contact-tel-txt .contact-time{
	font-size: 14px;
}