@charset "UTF-8";
/* ======================================
ハンバーガーボタン :::::::::::::::::::::::::::::::
========================================== */
/* トグルボタン */
.toggle-btn {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #376a3c;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  top: 90px;
  z-index: 500;
  cursor: pointer;
}

@media (max-width: 675px) {
  .toggle-btn {
    width: 60px;
    height: 60px;
    right: 0;
    top: 70px;
    border-radius: 0%;
  }
}
.toggle-btn i {
  background: #f4d68b;
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  width: 40%;
}

.toggle-btn i:nth-of-type(1) {
  left: 24px;
  top: 30px;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(2) {
  left: 24px;
  top: 40px;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(3) {
  left: 24px;
  top: 50px;
  border-radius: 1px;
}

.toggle-btn.active i:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}

.toggle-btn.active i:nth-of-type(2) {
  opacity: 0;
}

.toggle-btn.active i:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 675px) {
  .toggle-btn i:nth-of-type(1) {
    left: 20px;
    top: 20px;
  }
  .toggle-btn i:nth-of-type(2) {
    left: 20px;
    top: 30px;
    border-radius: 1px;
  }
  .toggle-btn i:nth-of-type(3) {
    left: 20px;
    top: 40px;
    border-radius: 1px;
  }
}
/* ======================================
	ナビゲーションメニュー :::::::::::::::::::::::::::::::
	========================================== */
.cc_global-nav {
  position: fixed;
  inset: 0;
  margin: auto;
  background: #F7F6F2;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.cc_global-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.cc_global-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 500px) {
  .cc_global-nav__inner {
    margin: 0;
  }
}

.cc_global-nav__list {
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  margin: 80px 2rem 2rem;
}

.gnavIcon {
  width: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cc_global-nav__item {
  align-items: center;
  margin-bottom: 16px;
}
.cc_global-nav__item a {
  color: #376a3c;
  letter-spacing: 0.1rem;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
  display: flex;
  line-height: 2rem;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed #376a3c;
}
.cc_global-nav__item a:hover {
  color: #ce5003;
}
.cc_global-nav__item .last_link {
  border-bottom: 0;
  padding-bottom: 0;
}
.cc_global-nav__item p {
  color: #776F6D;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-left: 32px;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .cc_global-nav__item p {
    display: none;
  }
}
.cc_global-nav__item hr {
  border-color: #988d8b;
  border-style: dashed;
  margin-bottom: 15px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .cc_global-nav__item hr {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
}

.cc_gnav__other p {
  color: #776F6D;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
}

.cc_gnav__other img {
  width: 60px;
  margin-top: 5px;
}
@media (max-width: 500px) {
  .cc_gnav__other img {
    width: 40px;
  }
}

.cc_gnav__other--link {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .cc_gnav__other--link {
    margin-top: 0.5rem;
  }
}

.cc_gnav__other--link a {
  font-size: 16px;
  margin-right: 20px;
  line-height: 20px;
  vertical-align: middle;
}

.cc_gnav__other--link img {
  width: 18px;
  margin: 0;
  line-height: 20px;
  vertical-align: middle;
}

.hiro_top {
  position: absolute;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
}

.hiro_top img {
  width: 100%;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 599px) {
  .hiro_top img {
    height: 20px;
  }
}

.hiro_main {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.spot_container {
  position: relative;
  max-width: 1024px;
  margin: 80px auto;
  background-color: #f3f5ef;
  padding: 80px 0 32px;
  filter: drop-shadow(0px 0px 20px #b4c9b4);
}
@media (max-width: 630px) {
  .spot_container {
    padding-top: 110px;
  }
}

.spot_container:last-of-type {
  margin-bottom: 0;
}

.spot_title {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(650px, 80%);
  margin: 0 auto;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 16px 0;
  color: #ffffff;
  background-color: #376a3c;
  letter-spacing: 0.1em;
  border-radius: 16px;
}
@media (max-width: 630px) {
  .spot_title {
    flex-direction: column;
    width: min(350px, 90%);
  }
}
.spot_title span {
  font-size: 20px;
}
.spot_title .spot_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 16px;
  width: 16px;
  height: 18px;
}
@media (max-width: 630px) {
  .spot_title .spot_arrow {
    margin-right: 0;
  }
}
.spot_title .il_crab {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 32px;
  width: 43px;
  height: 43px;
}
@media (max-width: 768px) {
  .spot_title .il_crab {
    margin-left: 8px;
    margin-top: 8px;
  }
}

.spot_subtitle {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  margin: 0 auto 24px;
  padding: 0 16px;
  font-weight: bold;
  line-height: 1.3;
  color: #376a3c;
}
@media (max-width: 630px) {
  .spot_subtitle {
    width: min(300px, 90%);
  }
}

.spot_title_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 630px) {
  .spot_title_inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.spot_title_inner-topbtm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

.spot-text_container {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .spot-text_container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.line {
  height: 100%;
  border-left: 1px solid #819d8a;
}
@media (max-width: 768px) {
  .line {
    display: none;
  }
}

.spot-text_inner {
  line-height: 1.7;
}

.spot-text_inner h4 {
  font-size: 20px;
  font-weight: bold;
  color: #12652d;
}

.spot-text_inner ul {
  margin-bottom: 16px;
}

.spot-text_inner ul .list {
  font-size: 16px;
  padding-left: 16px;
  text-indent: -16px;
}

.spot-text_inner ul .list:before {
  content: "●";
  color: #9a9a9a;
  font-size: 8px;
  margin-right: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.spot-text_inner ul .attention {
  font-size: 16px;
  padding-left: 16px;
  text-indent: -16px;
  color: #9d1e10;
  font-weight: bold;
}

.spot-text_inner ul .attention:before {
  content: "※";
  color: #9d1e10;
}

.btn_link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #376a3c;
  color: #fff;
  padding: 4px 16px;
  border-radius: 9999px;
  font-weight: 600;
  margin-top: 2px;
}

.text_link {
  border-bottom: 1px solid #000;
}

.spot-video_container {
  margin: 32px auto 0;
}

.movie_wrap {
  width: clamp(300px, 70vw, 900px);
  margin: 0 auto;
  filter: drop-shadow(0px 0px 16px rgba(77, 74, 62, 0.2));
}
@media (max-width: 850px) {
  .movie_wrap {
    width: 90%;
  }
}
@media (max-width: 550px) {
  .movie_wrap {
    width: 95%;
  }
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainslide_container {
  width: 100%;
  width: calc(100% - 40px);
  position: relative;
  margin-inline: auto;
  margin: 2em auto;
  /* 前への矢印 */
  /* 次への矢印 */
  /* ページネーション */
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}

@media (min-width: 768px) {
  .mainslide_container {
    width: 100%;
  }
}
.mainslide_container .swiper-slide {
  opacity: 0.5; /* 左右のスライドを薄くする */
  transform: scale(0.7); /* 左右のスライドを小さくする */
  transition: 0.6s; /* ゆっくり小さくさせる */
}

.mainslide_container .swiper-slide img {
  border-radius: 16px;
}

.mainslide_container .swiper-slide-active {
  opacity: 1; /* 中央のスライドは薄くしない */
  transform: scale(1); /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
}

.mainslide_container .swiper-button-prev {
  left: -16px;
  top: 45%;
}

.mainslide_container .swiper-button-next {
  right: -16px;
  top: 45%;
}

.mainslide_container .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}

@media (min-width: 768px) {
  .mainslide_container {
    /* 前への矢印 */
    /* 次への矢印 */
  }
  .mainslide_container .swiper-button-prev {
    left: min(15vw, 140px);
  }
  .mainslide_container .swiper-button-next {
    right: min(15vw, 140px);
  }
}
@media (max-width: 500px) {
  .mainslide_container {
    /* 前への矢印 */
    /* 次への矢印 */
  }
  .mainslide_container .swiper-button-prev {
    top: 40%;
  }
  .mainslide_container .swiper-button-next {
    top: 40%;
  }
}
.mainslide_container .swiper-button-prev,
.mainslide_container .swiper-button-next {
  height: 40px;
  width: 40px;
}

.mainslide_container .swiper-button-prev::after,
.mainslide_container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}

@media (min-width: 768px) {
  .mainslide_container {
    /* 前へ次への矢印カスタマイズ */
    /* 前へ次への矢印カスタマイズ */
  }
  .mainslide_container .swiper-button-prev,
  .mainslide_container .swiper-button-next {
    height: 50px;
    width: 50px;
  }
  .mainslide_container .swiper-button-prev::after,
  .mainslide_container .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 50px;
    margin: auto;
    width: 50px;
  }
}
.mainslide_container .swiper-button-prev::after {
  scale: -1;
  background-image: url(../images/top_slider_arrow.svg);
}

.mainslide_container .swiper-button-next::after {
  background-image: url(../images/top_slider_arrow.svg);
}

.mainslide_container .swiper-slide img {
  height: auto;
  width: 100%;
}

.mainslide_container .mainslider_text {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.mainslide_container .mainslider_text img {
  display: inline;
  width: 13px;
  margin-left: 0.2rem;
  margin-bottom: 0.1rem;
  border-radius: 0;
}/*# sourceMappingURL=style.css.map */