@charset "UTF-8";

.stay-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
}

.stay-inner.sec-01 {
  width: 924px;
}

.stay-inner.sec-02,
.stay-inner.sec-03,
.stay-inner.sec-04 {
  width: 1000px;
}

.stay-h2 {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

.stay-h2 span {
  display: block;
}

.stay-h2 span + span {
  margin-left: 2em;
}

.stay-mv-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;

  > div:not([class]) {
    max-width: 100%;
  }
}

.stay-mv-txt {
  width: 380px;
  max-width: 100%;
}

.stay-img {
  width: 408px;
}

.stay-anchor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 744px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.stay-anchor li:nth-child(1) img,
.stay-anchor li:nth-child(2) img {
  width: 120px;
}

.stay-anchor li:nth-child(3) img {
  width: 264px;
}

.stay-anchor a {
  position: relative;
  display: block;
}

.stay-anchor a::after {
  content: "";
  display: block;
  background: url("../img/stay/nav_arrow.svg") no-repeat center center;
  background-size: contain;
  width: 12px;
  height: 24px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s ease;
}

.stay-anchor a:hover::after {
  bottom: -35px;
}

@media screen and (max-width: 768px) {
  .stay-mv-content {
    flex-direction: column;
    gap: 60px;
  }

  .stay-h2 {
    font-size: 1.6rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .stay-anchor {
    justify-content: center;
    column-gap: 30px;
    row-gap: 80px;
  }

  .stay-anchor li:nth-child(1) img,
  .stay-anchor li:nth-child(2) img {
    width: 108px;
  }

  .stay-anchor li:nth-child(3) img {
    width: 228px;
  }
}

/* あそぶ
-------------------------------------------------- */
.play-title-img {
  width: 276px;
  margin-left: auto;
  margin-right: auto;
}

.play-content li {
  display: flex;
  align-items: center;
  gap: 50px;
}

.play-content li img {
  width: 180px;
  min-width: 180px;
}

.play-heading {
  font-size: 1.6rem;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

.play-sns-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .play-title-img {
    width: 192px;
  }

  .play-content li {
    align-items: flex-start;
    gap: 20px;
  }

  .play-content li img {
    width: 120px;
    min-width: 120px;
  }
}

/* 泊まる
-------------------------------------------------- */
.stay-title-img {
  width: 312px;
  margin-left: auto;
  margin-right: auto;
}

.stay-txt.num01 {
  width: 384px;
  max-width: 100%;
}

.stay-txt.num02 {
  width: 228px;
  max-width: 100%;
}

.stay-txt.num03 {
  width: 684px;
  max-width: 100%;
}

.stay-heading {
  font-weight: bold;
  padding-left: 10px;
  border-left: 2px solid #000;
  line-height: 1;
}

.stay-list li {
  list-style: disc;
  margin-left: 24px;
}

.stay-important {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: #F8F8F8;
}

.stay-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 372px;
  height: 72px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 1.6rem;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  color: #000;
  line-height: 1;
  overflow: hidden; /* 疑似要素がはみ出ないように */
  z-index: 0;
  transition: .6s;
}

.stay-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
  z-index: -1;
}

.stay-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.stay-btn:hover {
  color: #fff;
}

.stay-btn.black {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.stay-btn.black::before {
  background-color: #fff;
}

.stay-btn.black:hover {
  color: #000;
}

@media screen and (max-width: 768px) {
  .stay-title-img {
    width: 216px;
  }

  .img06 {
    transform: translateX(10%);
  }
}

/* ボランティア
-------------------------------------------------- */

.volunteer-title-img {
  width: 504px;
  margin-left: auto;
  margin-right: auto;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist li::before {
  content: '';
  background: url(../img/stay/icon_check.svg) no-repeat center center;
  background-size: contain;
  width: 14px;
  height: 14px;
}

.checklist li:last-child span {
  position: relative;
}

.checklist li:last-child span::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .volunteer-title-img {
    width: 312px;
  }
}


/* 背景
-------------------------------------------------- */
.bg-sec01 {
  bottom: 100px;
}

.bg-sec02 {
  top: -100px;
}

.bg-sec03 {
  top: 200px;
  z-index: -2;
}

.bg-sec03-02 {
  top: 144px;
  right: -20%;
  width: 660px;
  max-width: 65%;
  z-index: -1;
}

.bg-sec04 {
  top: 100px;
  z-index: -2;
}

.bg-sec04-02 {
  top: 180px;
  right: -20%;
  width: 744px;
  max-width: 75%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .bg-sec03 {
    top: 500px;
  }

  .bg-sec04 {
    top: 450px;
  }
}