@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

:root {
	--min-layout-width: 335;
  --max-layout-width: 1250;
	--min-ratio: calc(1 / var(--min-layout-width) * 100vw);
  --max-ratio: calc(1 / var(--max-layout-width) * 100vw);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #383231;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  text-decoration: none;
  color: #383231;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

ul {
  list-style: none;
}

p, span, h2, h3 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 760px) {
  p, span, h2, h3 {
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 760px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 760px) {
  .sp {
    display: block;
  }
}

.page-flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .page-flex {
    display: block;
  }
}

















/* --- logo --- */
.sub .nav-tit {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 140px;
  width: calc(140 * var(--max-ratio));
  height: calc(140 * var(--max-ratio));
  background: rgba(253, 252, 248, 0.9);
}
.sub .nav-tit a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.sub .nav-tit a img {
  width: calc(98 * var(--max-ratio));
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.sub .nav-tit a:hover img {
  opacity: 0.7;
}
@media screen and (min-width: 1250px) {
  .sub .nav-tit {
    width: 140px;
    height: 140px;
  }
  .sub .nav-tit a img {
    width: 98px;
  }
}
@media screen and (max-width: 760px) {
  .sub .nav-tit {
    width: 24vw;
    height: 24vw;
  }
  .sub .nav-tit a img {
    width: 16.8vw;
  }
  .sub .nav-tit a:hover img {
    opacity: 1;
  }
}






/* --- main --- */
.sub .cont_inner {
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.sub .cont_inner .lead_txt {
  font-size: 20px;
  font-size: calc(20 * var(--max-ratio));
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
}
.sub .cont_inner .lead_txt + .lead_txt {
  margin-top: 40px;
}
@media screen and (min-width: 1250px) {
  .sub .cont_inner .lead_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 760px) {
  .sub .cont_inner .lead_txt {
    font-size: 3.7333vw;
  }
}



/* --- aricle --- */
.aricle_tit_box {
  margin-bottom: 35px;
  text-align: center;
}
.aricle_tit_box .aricle_tit {
  display: block;
  width: 218px;
  margin-left: auto;
  margin-right: auto;
}
.aricle_tit_box p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 26px;
}
.aricle_tit_box p a {
  color: #918381;
  padding-right: 20px;
  position: relative;
}
.aricle_tit_box p a::after {
  display: block;
  content: "";
  width: 6px;
  height: 10px;
  background: url('../images/common/arrow_icon.svg');
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.aricle_tit_box p a:hover {
  color: #383231;
}
.aricle_tit_box p a:hover::after {
  background: url('../images/common/arrow_icon_hover.svg');
  background-size: cover;
}

.aricle_cont {
  width: 100%;
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 60px 150px;
  border-radius: 18px;
  box-sizing: border-box;
  background: #fff;
}
.aricle_cont .cont_tit {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.aricle_cont .cont_tit small {
  font-size: 24px;
}
.aricle_cont .cont_main_img {
  margin-bottom: 120px;
}
.aricle_cont .cont_box {
  width: 100%;
  max-width: 605px;
  margin-left: auto;
  margin-right: auto;
}
.aricle_cont .cont_box h2 {
  font-size: 22px;
  line-height: 1.6363;
  margin-bottom: 23px;
}
.aricle_cont .cont_box p {
  font-size: 16px;
  line-height: 2.125;
}
.aricle_cont .cont_box .wp-caption {
  margin-top: 70px;
  margin-bottom: 70px;
  max-width: 100%;
  min-width: 100%;
}
.aricle_cont .cont_box .wp-caption.aligncenter {
  text-align: center;
}
.aricle_cont .cont_box .wp-caption-text {
  font-size: 12px;
  margin-top: 10px;
}

.aricle_cont ul.page-navs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
  padding-top: 70px;
}
.aricle_cont ul.page-navs li a {
  font-size: 16px;
  color: #918381;
  position: relative;
}
.aricle_cont ul.page-navs li:nth-child(1) a {
  padding-left: 20px;
}
.aricle_cont ul.page-navs li:nth-child(2) a {
  padding-right: 20px;
}
.aricle_cont ul.page-navs li a::after {
  display: block;
  content: "";
  width: 6px;
  height: 10px;
  background: url('../images/common/arrow_icon.svg');
  background-size: cover;
  position: absolute;
  top: 50%;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.aricle_cont ul.page-navs li:nth-child(1) a::after {
  left: 0;
  transform: scaleX(-1) translateY(-50%);
}
.aricle_cont ul.page-navs li:nth-child(2) a::after {
  right: 0;
  transform: translateY(-50%);
}
.aricle_cont ul.page-navs li a:hover {
  color: #383231;
}
.aricle_cont ul.page-navs li a:hover::after {
  background: url('../images/common/arrow_icon_hover.svg');
  background-size: cover;
}

@media (max-width: 1000px) and (min-width: 761px) {
  .aricle_cont {
    max-width: calc(100% - 4%);
  }
}
@media screen and (max-width: 760px) {
  .aricle_tit_box {
    margin-bottom: 5.3333vw;
  }
  .aricle_tit_box .aricle_tit {
    width: 37.0667vw;
  }
  .aricle_tit_box p {
    font-size: 3.7333vw;
    margin-top: 4.5333vw;
  }
  .aricle_tit_box p a {
    padding-right: 4.2667vw;
  }
  .aricle_tit_box p a::after {
    width: 1.6vw;
    height: 2.6667vw;
  }

  .aricle_cont {
    max-width: 94.6667vw;
    padding: 14.4vw 0 13.3333vw;
    border-radius: 4.8vw;
  }
  .aricle_cont .cont_tit {
    font-size: 6.9333vw;
  }
  .stay_article .aricle_cont .cont_tit {
    margin-bottom: 11.4667vw;
  }
  .trail_article .aricle_cont .cont_tit {
    margin-bottom: 6.1333vw;
  }

  
  .aricle_cont .cont_tit small {
    display: block;
    font-size: 3.7333vw;
    line-height: 2;
  }
  .aricle_cont .cont_main_img {
    margin-bottom: 12.2667vw;
  }
  .aricle_cont .cont_box {
    max-width: 77.6vw;
  }
  .aricle_cont .cont_box h2 {
    font-size: 4.5333vw;
    line-height: 1.647;
    margin-bottom: 4.2667vw;
  }
  .aricle_cont .cont_box p {
    font-size: 3.7333vw;
    line-height: 2;
  }
  .aricle_cont .cont_box .wp-caption {
    margin-top: 6.4vw;
    margin-bottom: 6.4vw;
  }
  .aricle_cont .cont_box .wp-caption-text {
    font-size: 2.6667vw;
    line-height: 1.4;
    margin-top: 1.3333vw;
  }

  .aricle_cont ul.page-navs {
    gap: 13.3333vw;
    padding-top: 9.6vw;
  }
  .aricle_cont ul.page-navs li a {
    font-size: 3.4667vw;
  }
  .aricle_cont ul.page-navs li:nth-child(1) a {
    padding-left: 5.3333vw;
  }
  .aricle_cont ul.page-navs li:nth-child(2) a {
    padding-right: 5.3333vw;
  }
  .aricle_cont ul.page-navs li a::after {
    width: 1.6vw;
    height: 2.6667vw;
  }
}


/* --- footer --- */
.sub #Footer {
	padding-top: 40px;
	padding-bottom: 40px;
}

.sub #Footer p {
  font-size: 14px;
  font-weight: bold;
	text-align: center;
}

.FooterTitle {
	margin-bottom: 30px;
}

.FooterAddress {
  display: inline-block;
  font-size: 12px;
  padding-top: 10px;
}
.FooterAddress a {
  color: #00784A;
}

.FooterContact {
	margin-top: 30px;
	border-radius: 4px;
	border: 1px solid #00784A;
	width: 240px;
	margin-left: auto;
	margin-right: auto;
}

.FooterContact a {
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
}
.FooterContact a:hover {
  opacity: 0.5;
}
.FooterCopy {
	margin-top: 28px;
}
.FooterCopy small {
	font-size: 10px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .sub #Footer {
    padding-top: 8vw;
    padding-bottom: 11.7333vw;
  }
  .sub #Footer p {
    font-size: 3.2vw;
  }
  .FooterTitle {
    width: 76.8vw;
    margin: 0 auto 8vw;
  }
  .FooterAddress {
    font-size: 2.6667vw;
    padding-top: 2.6667vw;
    line-height: 1.8;
  }
  .FooterContact {
    margin-top: 5.3333vw;
    width: 58.6667vw;
  }
  .FooterContact a {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
  .FooterCopy {
    margin-top: 4.2667vw;
  }
  .FooterCopy small {
    font-size: 2.1333vw;
  }
}




.fadeUp--kv {
  -webkit-animation-duration:.5s;
	-webkit-animation-timing-function:linear;
	-webkit-animation-iteration-count:1;
	-webkit-animation-fill-mode:forwards;
	animation-duration:.5s;
	animation-fill-mode:forwards;
	animation-iteration-count:1;
	animation-timing-function:linear;
	opacity:0;
	-webkit-animation-name:fadeUp;
	animation-name:fadeUp;
}
@keyframes fadeUp {
	from {
		opacity:0;
    transform: translateY(20px);
	}
	to {
		opacity:1;
    transform: translateY(0);
	}
}

.fadeIn--kv {
  -webkit-animation-duration:.5s;
	-webkit-animation-timing-function:linear;
	-webkit-animation-iteration-count:1;
	-webkit-animation-fill-mode:forwards;
	animation-duration:.5s;
	animation-fill-mode:forwards;
	animation-iteration-count:1;
	animation-timing-function:linear;
	opacity:0;
	-webkit-animation-name:fadeIn;
	animation-name:fadeIn;
}
@keyframes fadeIn {
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}

.fadeIn--kv01
{ animation-delay: 0.3s; }
.fadeIn--kv02
{ animation-delay: 0.6s; }
.fadeIn--kv03
{ animation-delay: 0.9s; }




.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.on {
  opacity: 1;
  transform: translateY(0);
}
