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

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
	text-transform: none;
}
body {
  font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
  font-size: 1.6em;
  color: #292929;
  line-height: 2.4rem;
  text-align: center;
}
h1, h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 4.0rem;
  margin: 0 auto;
	letter-spacing: 2px;
	color: #B58137;
	line-height: 5.0rem;
}
h3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3rem;
	letter-spacing: 3px;
}
p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3rem;
	letter-spacing: 3px;
}

/*
@media(max-width: 1060px) {
  h1, h2 {
    font-size: 2.0rem;
    margin: 70px auto 30px;
  }
  h3, p {
    font-size: 1.4rem;
  }
}*/
/*予約ボタン（基本形）*/
.btn_cv a {
  width: 335px;
  height: 55px;
  margin: 100px auto;
  background: linear-gradient(to right, #2B9A78, #00A5CF);
  color: #fff;
  border-radius: 50px;
  padding-top: 30px;
  font-size: 2rem;
  display: block;
  z-index: 10;
}
.btn_bus {
  height: 20px;
  margin-left: 20px;
  transform: scale(-1, 1);
}
/*予約ボタン（追従）*/
.btn_cv_top a {
	  width: 230px;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    right: 80px;
    border-radius: 10px 10px 0 0;
	padding: 10px 80px 10px 0;
}

.btn_cv_top_text_01 {
	font-size: 1.3rem;
	padding-left: 43px;
  font-weight: 300;
	position: relative;
	top: 5px;
}
.btn_cv_top_text_02 {
    font-size: 2rem;
  font-family: "Work Sans", sans-serif;
    margin: -9px 0 0 -69px;
    position: relative;
	  left: 112px;
	  bottom: 7px;
}
.btn_cv_top_text_02_b {
	font-size: 5.5rem;
}
.btn_bus_top {
    height: 36px;
    margin-left: 86px;
    margin-top: -10px;
    transform: scale(-1, 1);
    position: relative;
  	left: 41px;
	  bottom: 6px;
}
@media(max-width: 1060px) {
	.btn_cv_top a {
	  width: 56px;
    margin: 0 auto;
    position: fixed;
    bottom: 30px;
    right: 0;
    border-radius: 10px 0 0 10px;
	  padding: 80px 10px 80px 0;
}
	.btn_cv_top_text_01 {
	  writing-mode: vertical-rl;
		padding-left: 0;
		display: block;
    height: 150px;
    position: relative;
    top: -46px;
    right: -33px;
}
	.btn_cv_top_text_02 {
		writing-mode: vertical-rl;
    display: block;
    height: 150px;
    position: relative;
    top: -154px;
    left: 82px;
}
	.btn_cv_top_text_02_b {
		writing-mode: vertical-rl;
    display: block;
    height: 150px;
    position: relative;
    top: -123px;
    right: 12px;
}
	.btn_cv_top_text_02_ooknow {
		writing-mode: vertical-rl;
    display: block;
    height: 150px;
    position: relative;
    top: -60px;
    right: 0px;
}
	.btn_bus_top {
    position: absolute;
    top: 179px;
    left: -73px;
    height: 23px;
}
}
.btn_pc_top {
  width: 215px;
}
/*お問い合わせボタン*/
.btn_contact a {
  width: 300px;
  margin: 40px auto;
    backdrop-filter: blur(44px);
    -webkit-backdrop-filter: blur(8px);
    color: #161616;
    border: solid 1px #000;
  border-radius: 10px;
  padding: 20px 0;
  font-size: 1.6rem;
  display: block;
}
.btn_mail {
  height: 20px;
  margin-left: 20px;
}
/*モーダル*/
.modal_sp {
  display: none;
}
.modal {
  line-height: 2.3rem;
	margin: 0 auto;
}
.modal th, .modal_sp th {
  width: 30%;
  padding-left: 20px;
  padding-right: 20px;
  vertical-align: middle;
}
.modal td, .modal_sp th {
  width: 70%;
  padding-left: 20px;
  padding-right: 20px;
  vertical-align: middle;
}
.modal_th_odd, .modal_td_odd {
  height: 65px;
  font-size: 1.6rem;
  padding-top: 0;
  font-weight: 300;
  background-color: #F9EDDC;
}
.modal_th_even, .modal_td_even {
  height: 65px;
  font-size: 1.6rem;
  padding-top: 0;
  font-weight: 300;
  background-color: #fff;
}
.modal_open_2 {
	margin-top: 20px;
}
/* モーダル本体の指定 + モーダル外側の背景の指定 */
.wrapper_modal_1, .wrapper_modal_2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 80%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 100;
}
/*モーダル本体の擬似要素の指定*/
.wrapper_modal_1:before, .wrapper_modal_2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.wrapper_modal_1.active, .wrapper_modal_2.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal_body_1, .modal_body_2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 70%;
}
/*モーダルを閉じるボタンの指定*/
.modal_close_1, .modal_close_2 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal_content_1 {
  background: #fff;
  text-align: left;
  padding: 50px 30px;
  color: #161616;
  border-radius: 10px;
  line-height: 3.0rem;
}
.modal_content_2 {
  background: #fff;
  text-align: left;
  padding: 50px 30px;
  color: #161616;
  border-radius: 10px;
  line-height: 3.0rem;
}
	.modal_content_2_h2 {
		margin: 0px auto 40px;
		font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
	}
	.modal_content_2_h3 {
		margin-top: 40px;
		font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
	}
	.modal_content_2 ol {
		list-style-position: inside;
	}
	.modal_content_2 p {
		font-weight: 300;
		font-size: 1.4rem;
	}
	.modal_content_2 li {
		font-weight: 300;
		font-size: 1.4rem;
	}
	.modal_content_2 a {
		font-weight: 300;
		font-size: 1.4rem;
	}
@media(max-width: 1060px) {
  .modal_sp {
    display: block;
    background-color: #fff;
  }
  .modal {
    display: none;
  }
  .wrapper_modal_1, .wrapper_modal_2 {
    padding: 40px 0;
  }
  .modal_body_1, .modal_body_2 {
    width: 80%;
  }
  .modal_content_1 {
    background: #fff;
    text-align: left;
    padding: 0;
    color: #161616;
    border-radius: 10px;
    line-height: 3.0rem;
    width: 100%;
  }
  .modal_th_odd, .modal_td_odd {
    font-size: 1.4rem;
    padding: 10px;
  }
  .modal_th_even, .modal_td_even {
    font-size: 1.4rem;
    padding: 10px;
  }
  .modal_text_title_sp {
    font-weight: 400;
  }
  .modal_th_odd, .modal_th_even {
    width: 1%;
  }
}

/*ヒーロービジュアル*/
header {
  background-image: url("./img/hero_03.jpg");
  width: min(1440px, 100vw);
	margin: 0 auto;
  height: min(800px, 80vh);
	/* background-position: bottom -500px right 0px; */
  background-repeat: no-repeat;
  background-size: cover;
}

header p {
  font-family: "Work Sans", sans-serif;
  font-size: 9.0rem;
  line-height: 6.5rem;
	font-weight: 500;
  color: #fff;
  padding: 40px 20px 20px;
}

header span {
  font-size: 4rem;
  font-weight: 100;
}

.wrapper_header_logo_copy {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header_logo_date {
	font-size: 4.0rem;
  padding: 10px 0 0 0;
	display: none;
}
.header_logo_date_text {
	font-size: 1.4rem;
  padding: 0 0 20px 0;
	margin-top: -25px;
  display: none;
}

.logo {
  width: max(300px, 15vw);
}

@media(max-width: 900px) {
  header {
    background-position: top;
  }
	header p {
  font-size: 6.0rem;
}
.logo {
  width: max(200px, 15vw);
}
}

/*info*/

.info {
	margin: 80px auto;
	padding: 0 20px;
}

.info_wrap h2 {
	color: #B58137;
	margin: 0 auto 20px;
}

.info_text {
	padding-top: 10px;
}

.info_text a {
 font-weight: 500;	
 color: #2B9A78;
 font-size: 1.6rem;
 background: linear-gradient(transparent 70%, #F1FF52 100%);
}

/* ABOUT */

.about_wrap {
	display: flex;
	justify-content: center;
	width: 100vw;
  max-width: 1440px;
  align-items: center;
  margin: 0 auto;
  background-color: #2B9A78;
}

.about_wrap div:nth-of-type(1) {
  color: #fff;
	width: 50vw;
	padding: 0 40px;
}

.about_wrap div:nth-of-type(1) p {
  padding: 30px 10px 0;
}

.about_wrap div:nth-of-type(2) {
  color: #292929;
	width: 50vw;
}

.about_wrap div:nth-of-type(2) img {
	width: min(770px, 50vw);
	display: flex;
}

.about_wrap div h1 {
	color: #fff;
	margin: 0 auto;
	line-height: 5rem;
}

.about_images_wrap {
  width: 100vw;
  max-width: 1440px;
  height: 580px;
	margin: 0 auto;
	padding: 40px 0 100px;
}

.about_images_wrap h2 {
	padding: 0 0 40px;
}

#point_images img {
  width: min(770px, 50vw);
  height: 500px;
  object-fit: cover;
  margin: 0 auto;
}

@media(max-width: 900px) {

.about_wrap {
	display: block;
}
.about_wrap div:nth-of-type(1) {
	width: auto;
	padding: 60px 20px;
}

.about_wrap div:nth-of-type(2) {
	width: 100vw;
}

.about_wrap div:nth-of-type(2) img {
	width: 100%;
}
.about_images_wrap {
  height: auto;
	padding: 40px 0;
}
#point_images img {
  width: max(300px, 80%);
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}
}

/* point*/

.point_wrap {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
}
.point_wrap div {
  width: 33.3vw;
	padding: 40px 0 60px;
}

.point_wrap div:nth-of-type(1) {
  background-color: #F9EDDC;
}

.point_wrap div:nth-of-type(2) {
  background-color: #ECDBC3;
}

.point_wrap div:nth-of-type(3) {
  background-color: #C9B394;
}

.point_wrap div h3 {
  margin-top: 30px;
  font-size: 3.0rem;
	font-weight: 500;
}
.point_wrap div img {
  width: 90px;
  margin-top: 25px;
}
.point_wrap div p {
  margin-top: 25px;
  line-height: 2.2rem;
}
#point_img_02 {
  width: 80px;
}

@media(max-width: 900px) {
.point_wrap {
  display: block;
}
.point_wrap div {
  width: auto;
}
}

/* price */
.price {
   margin: 80px auto 0;
   width: min(1440px, 100vw);
}

.price p {
  width: 80%;
  margin: 20px auto 10px;
  text-align: left;
}

.price_wrap {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 1440px;
}

.price table {
  width: 80%;
  max-width: 1440px;
  background-color: #ECDBC3;
  margin: 10px auto 80px;
	border: solid 2px #fff;
}

.price table tr:nth-of-type(1) {
    background-color: #2B9A78;
    color: #fff;
    padding: 30px;
}

.price table th {
    width: 30%;
    background-color: #C9B394;
    color: #fff;
    padding: 30px;
}

.price table tr, .price table th, .price table td {
	    border: solid 3px #fff;
	    vertical-align: middle;
}

.price table td {
		font-size: 2.0rem;
}

@media(max-width: 900px) {
.price table th {
    padding: 10px;
  }
	
	.price table tr, .price table td {
    padding: 15px;
		
 }
 }

/* facilities */

.facilities {
  margin: 0 auto 0;
  background-color: #2B9A78;
  width: min(1440px, 100vw);
}

.facilities h2 {
	color: #fff;
}
.facilities_wrap {
  display: flex;
  margin: 0 auto;
  justify-content: center;
	max-width: 1440px;
}


.facilities_wrap div:nth-of-type(1) {
	width: 60%;
}

.facilities_wrap div:nth-of-type(1) img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: flex;
	 object-position: 0 73%;
}

.facilities_wrap div:nth-of-type(2) {
  width: 50%;
  color: #fff;
	text-align: left;
  margin: 0 auto;
	padding: 80px 50px 0;
}

.facilities_wrap div:nth-of-type(2) ul {
	padding:  30px 20px 0px;
  list-style-position: inside;
	text-align: left;
	font-weight: 400;
}
.facilities_wrap div:nth-of-type(2) li {
  font-size: 1.6rem;
	line-height: 3.2rem;
}

@media(max-width: 900px) {
.facilities h2 {
	text-align: center;
}
.facilities_wrap {
  display: block;
}
.facilities_wrap div:nth-of-type(1) {
	width: 100vw;
}

.facilities_wrap div:nth-of-type(1) img {
    width: 100%;
    height: 300px;
}
.facilities_wrap div:nth-of-type(2) {
  width: auto;
  padding: 60px 20px;
}
}

/* accsess */

.accsess {
    margin: 0 auto;
    background-color: #ECDBC3;
  width: min(1440px, 100vw);
}

.accsess_wrap {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 1440px;
    background-color: #F9EDDC;
}

.accsess_wrap h2 {
	padding-bottom: 40px;
}

.accsess_wrap ul {
  list-style: inside;
  font-weight: 400;
  padding-left: 20px;
}

.accsess_wrap ul a {
  color: #2B9A78;
	font-size: 1.4rem;
}

.accsess_wrap div a {
  color: #2B9A78;
	font-size: 1.6rem;
}

.accsess_wrap div:nth-of-type(1) {
  width: 44%;
	font-family: "Noto Sans JP", sans-serif;
  text-align: left;
	padding: 80px 50px;
}


.accsess_wrap div:nth-of-type(1) li {
  font-size: 1.6rem;
  line-height: 4.0rem;
}

.accsess_wrap div:nth-of-type(2) {
  width: 50%;
}


.accsess_wrap h3 {
  font-size: 1.6rem;
  color: #B58137;
  padding: 20px 0;
}

.accsess_wrap p {
	padding-left: 20px;
}
.accsess_wrap p:nth-of-type(2) {
	padding-top: 20px;
}

.fa-location-dot, .fa-map {
	padding-right: 15px;
}


iframe {
    width: 100%;
    height: 100%;
}

@media(max-width: 900px) {
	.accsess_wrap {
    display: block;
}
	.accsess_wrap h2, .accsess_wrap h3 {
	text-align: center;
}
	.accsess_wrap div:nth-of-type(1) {
  width: auto;
	padding: 60px 20px;
}
 .accsess_wrap div:nth-of-type(2) {
  width: auto;
	height: 400px;
}
}

/* notes */

.notes {
	width: min(1440px, 100vw);
  margin: 0 auto;
  padding: 80px 0;
	font-size: 1.6rem;
	font-weight: 400;
}

.notes p {
  width: 80%;
  margin: 20px auto 10px;
  text-align: left;
}

.fa-circle-exclamation {
	padding-right: 15px;
}

.notes_wrap {
	background-color: #E1DBD3;
	padding: 30px;
	width: 80%;
  margin: 0 auto;
	border-radius: 10px;
}
.notes_wrap li {
  padding: 12px 0px 12px 100px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
	font-weight: 400;
}

.notes_wrap li::before {
  content:  ""; 
	width:  10px;               /* 幅指定 */
  height:  10px;              /* 高さ指定 */
  display:  inline-block;     /* インラインブロックにする */
  background-color: #2B9A78;  /* 背景色指定 */
  border-radius:  50%;        /* 要素を丸くする */
	margin-right: 20px;
}

.notes_wrap span {
 font-weight: 500;	
 color: #2B9A78;
}
@media(max-width:1060px) {
.notes_wrap li {
  padding: 20px 0px 0px 0;
}
.notes_wrap {
	padding: 20px;
}
}

/* reserve */

.reserve {
	width: min(1440px, 100vw);
  margin: 0 auto;
  padding: 80px 0;
	background-color: #2B9A78;
	color: #fff;
}

.reserve h2 {
	color: #fff;
	padding: 0 20px;
}

.reserve p:nth-of-type(1) {
	padding: 30px 20px 0;
}

.reserve p:nth-of-type(1) span {
  font-weight: 500;
	font-size: 2.0rem;
	color: #fff;
  background: linear-gradient(transparent 70%, #F1FF52 100%);
}


.reserve ul {
	width: max(300px, 60vw);
	max-width: 600px;
  margin: 50px auto 0;
}

.reserve ul p {
	text-align: left;
	font-size: 1.3rem;
}

.reserve ul a {
	font-weight: 600;
	font-size: 1.3rem;
  color: #2B9A78;
  background: linear-gradient(transparent 70%, #F1FF52 100%);
}

.reserve li {
  padding: 15px 20px;
  margin: 10px 0;
  color: #292929;
  background-color: #fff;
  list-style: none;
	border-radius: 10px;
	font-weight: 400;
	letter-spacing: 3px;
  line-height: 3rem;
}

.reserve li img {
  width: 100%;
}

.fa-caret-down {
	font-size: 3rem;
	color: #F1FF52;
}

.fa-1, .fa-2, .fa-3, .fa-4, .fa-5, .fa-6 {
  font-size: 2rem;
	padding-right: 20px;
	color: #2B9A78;
}

.reserve table {
    width: 90%;
    background-color: #ECDBC3;
    margin: 10px auto;
    border: solid 2px #fff;
}

.reserve table th {
    width: 30%;
    background-color: #B58137;
    color: #fff;
}

.reserve table tr, .reserve table th, .reserve table td {
	    border: solid 3px #fff;
	    vertical-align: middle;
	font-size: 1.4rem;
	padding-left: 10px;
	text-align: left;
}

.reserve table td {
    text-align: left;
    padding: 10px;
	  line-height: 1.5;
}

.reserve table td span {
    font-size: 1.2rem;
    color: #2B9A78;
	letter-spacing: 2px;
	line-height: 0;
}

@media(max-width: 900px) {
.reserve ul {
	width: max(300px, 90vw);
	max-width: 600px;
  margin: 50px auto 0;
}
.reserve li {
  padding: 15px 15px;
}
.reserve table {
    width: 100%;
	letter-spacing: 0.5px;
}
.reserve table th {
    padding: 3px 0 0 10px;
  }
}

/* book now + btn */

.book {
	width: min(1440px, 100vw);
  margin: 0 auto;
  padding: 80px 0 50px;
	background-color: #F9EDDC;
}
.book_lodging {
	background-color: #ECDBC3;
	padding: 50px 0;
}
.btn_wrap {
	display: flex;
	justify-content: space-evenly;
  width: min(1440px, 100vw);
  margin: 0 auto;
  padding: 30px 0 0;
}

.book ul {
	width: min(1440px, 80vw);
	margin: 0 auto;
}

.book li {
	list-style: none;
	color: #2B9A78;
	font-size: 1.4rem;
	font-weight: 400;
	padding: 5px 0;
}

.book ul a {
    font-weight: 600;
    font-size: 1.6rem;
    color: #2B9A78;
}

.book span {
    font-weight: 500;
	font-size: 1.4rem;
    color: #2B9A78;
    background: linear-gradient(transparent 70%, #F1FF52 100%);
	padding: 0 10px;
}

.fa-circle-check {
	padding-right: 10px;
}

.book h3 {
	margin-top: 30px;
	font-size: 1.6rem;
	color: #2B9A78;
}

.book h3 > span {
	margin: 0 auto;
}

.fa-file-pen {
	padding-right: 15px;
}

@media(max-width:1060px) {

.btn_wrap {
	display: block;
}
}

/* YT */

.yamanakaterrace {
	margin: 80px auto;
	padding: 0 20px;
}

.yt_wrap h2 {
	color: #B58137;
	margin: 0 auto;
	line-height: 1;
}

.yt_wrap h3 {
	color: #B58137;
	margin: 0 auto 20px;
}

.yt_text {
	font-size: 1.4rem;
	margin: 40px auto 0;
}

.yt_img_wrap {
	width: min(1440px, 80vw);
	display: flex;
	flex-flow: wrap;
	margin: 30px auto 0;
  justify-content: center;
}

.yt_img_wrap img {
	width: min(500px, 35vw);
}

.yt_btn_wrap {
  width: 300px;
  margin: 40px auto;
  background: #2B9A78;
  color: #fff;
  border-radius: 10px;
  font-size: 2rem;
  display: block;
	padding: 20px 0;
}

.yt_btn_wrap i {
	padding-left: 15px;
}

.yt_btn_wrap a {
  color: #fff;
  font-size: 1.6rem;
}

/*フッター*/
footer {
  background-image: url("./img/footer.jpg");
  width: min(1440px, 100vw);
	background-size: cover;
  background-position: top -366px left 0;
  background-repeat: no-repeat;
  padding: 80px 0;
	margin: 0 auto;
}

footer a {
	font-size: 1.4rem;
}

.contact_underline {
  color: #fff;
  text-decoration: underline #fff 0.5px;
  font-weight: 300;
}

.fa-list-check {
	padding-left: 15px;
}
small {
  color: #fff;
  display: inline-block;
  padding: 30px 0 0 0;
  font-weight: 300;
}
@media(max-width:1200px) {

footer {
  background-position: top -166px left 0;

}
}

@media(max-width:1060px) {

footer {
	background-size: 180%;
  background-position: center;
}
}
/*
@media(max-width: 1060px) {
  .contact_underline {
    font-size: 1.4rem;
  }
  small {
    font-size: 1.4rem;
  }
}
@media(max-width: 600px) {
  footer {
    background-image: url("./img/footer_sp.jpg");
    height: 440px;
    background-size: 100%;
    background-position: top;
  }
  small {
    padding: 150px 0 0 0;
}
}*/