@charset "UTF-8";
.visually-hidden {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* 要素セレクタに対するスタイル */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  overflow: hidden; /* ウィンドウ全体のスクロールを止める */
}

#mainContents,
#contents {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* ユーティリティクラス */
.text-left {
  text-align: left !important;
}

.indent-second-line {
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}

.mb0 {
  margin-bottom: 0;
}

.deco {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  top: -0.1em;
}
.deco > span {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: currentColor;
  transform: rotate(45deg);
  position: relative;
  top: 0.1em;
}
.deco > span:nth-of-type(1) {
  width: 0.2em;
  height: 0.2em;
}
.deco > span:nth-of-type(2) {
  width: 0.3em;
  height: 0.3em;
}
.deco > span:nth-of-type(3) {
  width: 0.4em;
  height: 0.4em;
}
.deco--diamond {
  gap: 0.3em;
}
.deco--diamond > span {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: currentColor;
  transform: rotate(45deg);
  position: relative;
  top: 0.1em;
}
.deco--diamond > span:nth-of-type(1) {
  width: 0.2em;
  height: 0.2em;
}
.deco--diamond > span:nth-of-type(2) {
  width: 0.3em;
  height: 0.3em;
}
.deco--diamond > span:nth-of-type(3) {
  width: 0.4em;
  height: 0.4em;
}
.deco--circle > span {
  border-radius: 50%;
  transform: none;
}
.deco--reverse {
  flex-direction: row-reverse;
}
.deco--triangle-left > span {
  width: 0 !important;
  height: 0 !important;
  background: transparent;
  transform: none;
  border: 0;
}
.deco--triangle-left > span:nth-of-type(1) {
  border-top: 0.2em solid transparent;
  border-bottom: 0.2em solid transparent;
  border-right: 0.24em solid currentColor;
}
.deco--triangle-left > span:nth-of-type(2) {
  border-top: 0.27em solid transparent;
  border-bottom: 0.27em solid transparent;
  border-right: 0.32em solid currentColor;
}
.deco--triangle-left > span:nth-of-type(3) {
  border-top: 0.34em solid transparent;
  border-bottom: 0.34em solid transparent;
  border-right: 0.4em solid currentColor;
}
.deco--triangle-right > span {
  width: 0 !important;
  height: 0 !important;
  background: transparent;
  transform: none;
  border: 0;
}
.deco--triangle-right > span:nth-of-type(1) {
  border-top: 0.34em solid transparent;
  border-bottom: 0.34em solid transparent;
  border-left: 0.4em solid currentColor;
}
.deco--triangle-right > span:nth-of-type(2) {
  border-top: 0.27em solid transparent;
  border-bottom: 0.27em solid transparent;
  border-left: 0.32em solid currentColor;
}
.deco--triangle-right > span:nth-of-type(3) {
  border-top: 0.2em solid transparent;
  border-bottom: 0.2em solid transparent;
  border-left: 0.24em solid currentColor;
}

/* ユーティリティクラス 終わり*/
/* wrapper */
.wrapper {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.36rem;
  color: #1d777b;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.6s ease; /* ふわっと表示 */
}
@media (min-width: 751px) {
  .wrapper {
    font-size: 2.4rem; /* 1.5rem * 1.6 */
  }
}
.wrapper a,
.wrapper button {
  -webkit-tap-highlight-color: transparent;
}

.wrapper.loaded {
  opacity: 1;
}

/* main-banner */
.main-banner {
  position: relative;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  gap: 1.4rem;
}
@media (min-width: 751px) {
  .main-banner {
    padding: 1.5rem 2.5rem;
    gap: 2rem;
  }
}
.main-banner__logo {
  flex: 0 0 auto;
  width: 3.2rem;
}
@media (min-width: 751px) {
  .main-banner__logo {
    width: 5.6rem;
  }
}
.main-banner__title-wrapper {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}
@media (min-width: 751px) {
  .main-banner__title-wrapper {
    gap: 1.5rem;
  }
}
.main-banner__title {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 751px) {
  .main-banner__title {
    max-width: 42rem;
  }
}
.main-banner__nav-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-banner__logo img, .main-banner__title img {
  display: block;
  width: auto;
  height: 2em;
}

/* main-container */
.main-container {
  scroll-behavior: smooth;
  background-image: url("../img/top_back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d2f7e8;
  width: 100%;
  flex: 1; /* 親の.wrapperから高さを引き継ぐ */
  display: flex;
  min-height: 0;
  align-items: flex-start; /* 左右を上に固定するためにstretchから変更 */
  /* 全体でスクロールを管理し、スクロールバーを非表示にする */
  overflow-y: auto;
  overflow-x: hidden; /* 横方向のはみ出しでスワイプ後に余白が残るのを防ぐ */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  /* SP時は縦積みに戻す */
  /* PC版用の左右コンテンツ要素を消すタイミングでbackground-imageも非表示に*/
}
.main-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
@media (max-width: 750px) {
  .main-container {
    flex-direction: column;
  }
}
@media (max-width: 1439px) {
  .main-container {
    background-image: none;
  }
}
.main-container__inner {
  /* itemBox__title--type3 の幅を「この要素の80%」に揃えるため（container 単位: cqi） */
  container-type: inline-size;
  margin: 0 auto;
  max-width: 950px;
  width: 100%;
  min-height: 100%; /* コンテンツがｓ少ない時も背景を白く保つ */
  z-index: 1;
  /* PC時 */
}
@media (min-width: 751px) {
  .main-container__inner {
    flex: 0 0 750px; /* 中央は750pxで固定 */
    width: 750px;
    max-width: 750px;
    min-width: 750px;
  }
}
.main-container__left, .main-container__right {
  /* PC時: 左右は可変幅（auto）で、スクロールしても画面内に留まるようにする */
  display: none;
  background-image: none;
}
@media (min-width: 1440px) {
  .main-container__left, .main-container__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; /* 余った幅を左右で均等に分ける */
    position: sticky;
    top: 0; /* 上に固定（必要に応じてヘッダーの高さを足す） */
    height: 100%; /* 画面高さに合わせて中央揃え */
    box-sizing: border-box;
  }
}
.main-container__left__inner {
  width: 100%;
}
.main-container__left__inner img {
  width: 100%;
  height: auto;
  transform: scale(1.07);
}
.main-container__right__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
}
.main-container__right__inner > p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.2;
}
.main-container__right__inner > p > span {
  font-size: 0.4em;
}
.main-container__right__inner > button > img {
  width: initial;
  height: auto;
  cursor: pointer;
}
.main-container__right__inner .ico-top-btn {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
}
.main-container__right__inner .ico-top-btn:focus-visible {
  outline: auto;
}

/* header */
.header {
  position: relative;
  z-index: 10;
  width: 100%;
}
.header__img {
  width: 100%;
}

/* top */
.top {
  position: relative;
  z-index: 1;
  margin-top: -10%; /* マイナスマージンでheaderと重なるように調整（必要に応じて数値を変更） */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e1c9d5;
  width: 100%;
}
.top__img {
  width: 100%;
  height: auto;
  display: block;
}

.contentBox {
  padding: 2rem 0;
}
.contentBox--1 {
  background-image: url("../img/background-1.png");
  background-size: cover;
  background-position: top;
  padding-top: 23%;
  padding-bottom: 2rem;
  scroll-margin-top: -7.2rem;
}
@media (min-width: 751px) {
  .contentBox--1 {
    scroll-margin-top: -15rem;
  }
}
.contentBox--2 {
  background-image: url("../img/background-2.png");
  background-size: cover;
  background-position: top;
}
.contentBox--3 {
  background-image: url("../img/background-3.png");
  background-size: cover;
  background-position: top;
}
.contentBox--4 {
  background-image: url("../img/background-4.png");
  background-size: cover;
  background-position: top;
}
.contentBox--5 {
  background-image: url("../img/background-5.png");
  background-size: cover;
  background-position: top;
}
.contentBox__title {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  margin: 0 auto 1rem;
  min-height: 4.8rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 800;
  color: #15516a;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 0 2rem;
  gap: 0.8rem;
}
@media (min-width: 751px) {
  .contentBox__title {
    font-size: inherit;
  }
}
.contentBox__title > span {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.contentBox__title > span:nth-of-type(1) {
  padding: 1rem 0.8rem;
}
.contentBox__title > span:nth-of-type(1) > img {
  height: 1.7em;
  width: auto;
}
.contentBox__title > span:nth-of-type(2) {
  width: 100%;
  padding: 1rem 1.6rem;
}
@media (min-width: 751px) {
  .contentBox__title > span:nth-of-type(2) {
    padding: 1.8rem 1.6rem;
    line-height: 1.2;
  }
}
.contentBox__title > span:nth-of-type(2) > span {
  font-size: 0.48em;
}
@media (min-width: 751px) {
  .contentBox__title > span:nth-of-type(2) > span {
    font-size: 0.6em;
  }
}
.contentBox__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  padding: 3rem 2rem;
  margin: 0 2rem;
  /* itemBox で包んでいない type3 見出し（flex 子でない）を中央に */
}
@media (min-width: 751px) {
  .contentBox__inner {
    padding: 4rem 6.7rem;
  }
}
.contentBox__inner--goods {
  padding: 3rem 3.1rem;
}
@media (min-width: 751px) {
  .contentBox__inner--goods {
    padding: 4rem 6.7rem;
  }
}
.contentBox__inner--photoSpot {
  padding: 3rem 0rem;
}
@media (min-width: 751px) {
  .contentBox__inner--photoSpot {
    padding: 5rem 0rem;
  }
}
.contentBox__inner > h3.itemBox__title--type3 {
  left: 50%;
  transform: translateX(-50%);
}
.contentBox__overview {
  background-color: #ffffff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
@media (min-width: 751px) {
  .contentBox__overview {
    font-size: inherit;
    line-height: 1.6;
  }
}
.contentBox__overview > span {
  font-size: 0.8em;
}
.contentBox__overview > div {
  display: inline-block; /* 内容の幅だけにする */
  text-align: left; /* 中身は左揃え */
  line-height: 1.4;
}
.contentBox__overview > div > span {
  font-size: 0.7em;
}
.contentBox__full-img {
  margin: 0 0 3rem;
}
@media (min-width: 751px) {
  .contentBox__full-img {
    margin: 0 0 4.3rem;
  }
}
.contentBox__full-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.contentBox__full-img--exception {
  width: calc(100% + 4rem);
  margin-left: -2rem;
}
@media (min-width: 751px) {
  .contentBox__full-img--exception {
    width: calc(100% + 13.6rem);
    margin-left: -6.8rem;
    margin-bottom: 3.6rem;
  }
}
.contentBox__linkBtn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #1d777b;
}
@media (min-width: 751px) {
  .contentBox__linkBtn--locatone {
    width: 74%;
    margin: 0 auto;
  }
}
.contentBox__linkBtn--salesInfo {
  color: #ffffff !important;
}
.contentBox__linkBtn--salesInfo > span {
  inset: 0 0% 0 0 !important; /* 右端の一部をアイコン領域として除外しない */
  text-decoration: none !important;
  font-size: inherit !important;
}
.contentBox__linkBtn--disabled {
  pointer-events: none; /* クリック不可 */
  cursor: not-allowed;
}
.contentBox__linkBtn--disabled > img {
  user-select: none !important; /* ダブルクリック時の影を消す */
  -webkit-user-select: none !important;
}
.contentBox__linkBtn > span {
  position: absolute;
  inset: -4% 21% 0 0; /* 右端の一部をアイコン領域として除外 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.2em; /* 下線との余白を調整 */
  text-decoration-thickness: 0.1rem;
}
@media (min-width: 751px) {
  .contentBox__linkBtn > span {
    font-size: 2.9rem;
  }
}
.contentBox__announce {
  font-size: 1rem;
  padding: 1.6rem 1rem;
  border: 1px solid #1d777b;
  border-radius: 0.5rem;
}
.contentBox__announce > h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 751px) {
  .contentBox__announce > h3 {
    font-size: 2.1rem;
  }
}
.contentBox__announce > ul {
  line-height: 1.6;
}
.contentBox__announce > ul > li {
  font-size: 0.9rem;
}
@media (min-width: 751px) {
  .contentBox__announce > ul > li {
    font-size: 1.5rem;
  }
}
.contentBox__notes {
  margin-top: 2rem;
  margin-bottom: 2rem;
  list-style: none;
  font-size: 0.8em;
}
@media (min-width: 751px) {
  .contentBox__notes {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 0 4rem;
  }
}
.contentBox__notes > li {
  margin-bottom: 0.6rem;
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}
.contentBox__notes > li:last-of-type {
  margin-bottom: 0;
}

/* stamprally */
.stamprally {
  display: flex;
  width: 90%;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 3.2rem;
}
@media (min-width: 751px) {
  .stamprally {
    margin: 0 auto 5rem;
    width: 70%;
  }
}
.stamprally__link {
  display: block;
  align-self: stretch; /* 親が align-items: center でも横幅いっぱい */
  width: 100%;
}
.stamprally__link-img {
  width: 100%;
  height: auto;
}

/* inquiry */
.inquiry {
  width: 100%;
  background-color: #edf9f4;
}
.inquiry__inner {
  margin: 0 auto;
  max-width: 320px;
  padding: 4rem 0 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 751px) {
  .inquiry__inner {
    width: 44%;
    min-width: 520px;
  }
}
.inquiry__text {
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 751px) {
  .inquiry__text {
    font-size: 2.24rem;
  }
}
.inquiry__text > a {
  color: #1d777b;
  text-decoration: none;
}
.inquiry__text--title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
@media (min-width: 751px) {
  .inquiry__text--title {
    font-size: 2.7rem;
  }
}
.inquiry__text--email, .inquiry__text--date {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-left: 0.4rem;
  text-align: left;
}
.inquiry__text--email > span, .inquiry__text--date > span {
  display: inline-block;
  min-width: 7em;
  border-left: 1px solid #1d777b;
  padding-left: 0.7rem;
}
.inquiry__text--email > a {
  position: relative;
  top: -0.4em;
}
.inquiry__text--date {
  margin-top: 2.6rem;
}
.inquiry__text--date img {
  height: 2.2em;
  width: auto;
}
.inquiry__notes {
  display: inline-block;
  margin-top: 0.7rem;
  list-style: none;
  font-size: 0.7em;
}
.inquiry__notes > li {
  margin-bottom: 0.2rem;
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}
.inquiry__notes > li:last-of-type {
  margin-bottom: 0;
}

.logo-bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 2.5rem 2.2rem;
  background-color: #ffffff;
}
.logo-bnr > img {
  display: block;
  width: 100%;
  max-width: calc((100% - 1.2rem) / 2);
  height: auto;
  object-fit: contain;
}
@media (min-width: 751px) {
  .logo-bnr {
    gap: 2.4rem;
    padding: 4rem 6.72rem;
  }
  .logo-bnr > img {
    max-width: calc((100% - 2.4rem) / 2);
  }
}

/* footer */
.footer {
  background-color: green;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  font-size: 1.3rem;
  padding: 1.5rem 2.2rem;
}
@media (min-width: 751px) {
  .footer {
    font-size: 1.5rem;
    padding: 1rem 6.72rem;
  }
}

/* Swiper */
.swiper {
  margin: 0 0 2rem;
}
@media (min-width: 751px) {
  .swiper {
    margin: 0 0 3rem;
  }
}

.swiper-wrapper {
  /* ここは通常のまま（はみ出し部分はswiperコンテナ内で表示される） */
}

/* スライド画像が横幅いっぱいに広がるようにする */
.swiper-slide {
  width: 80%; /* 1枚のスライド幅を指定（画面の80%） */
  height: auto;
  opacity: 1 !important;
  transition: opacity 0.3s;
}

@media screen and (max-width: 750px) {
  .swiper-slide {
    width: 85%;
  }
}
/* アクティブでないスライドを少し薄くして、中央のスライドを際立たせる（任意） */
.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.6 !important;
}

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

.swiper-pagination-bullet-active {
  background-color: #d3446b !important; /* アクティブ時の色（例：濃いピンク） */
}

.swiper-pagination-bullet {
  margin: 0 10px !important; /* ドット同士の間隔を広げる（数値を大きくするとより離れる） */
  width: 12px; /* ドット自体の大きさも少し大きくしています（不要な場合は消してください） */
  height: 12px;
  display: inline-block;
  border-radius: 50%;
}

.swiper-button-prev,
.swiper-button-next {
  width: clamp(2rem, 4vw, 4rem);
  height: clamp(2rem, 4vw, 4rem);
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  left: clamp(1.6rem, 4vw, 4.8rem);
  background-image: url("../img/arrow_left.png");
}

.swiper-button-next {
  right: clamp(1.6rem, 4vw, 4.8rem);
  background-image: url("../img/arrow_right.png");
}

/* ハンバーガーメニュー */
.nav-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(138, 137, 137, 0.5);
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1440px) {
  .nav-menu, .nav-menu.open {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.nav-menu__inner {
  width: 100%;
  min-height: 100%;
  padding-top: var(--banner-height, 0px);
}
.nav-menu__list {
  background-color: #f2f9f6;
  padding: 0 1rem;
}
.nav-menu__list > li:last-of-type > a {
  margin-bottom: 0;
}
.nav-menu__item {
  border-top: 1px dotted #1d777b;
}
.nav-menu__item:first-of-type {
  border-top: none;
}
.nav-menu__link {
  display: flex;
  align-items: center;
  color: #15516a !important;
  text-decoration: none;
  padding: 2.4rem 1rem;
  font-weight: 800;
}
.nav-menu__link--toTop {
  background: transparent;
  border: none;
  width: 100%;
  justify-content: space-between;
  padding: 1rem !important;
}
.nav-menu__link--toTop > img {
  height: 5.4rem !important;
  padding-right: 0 !important;
}
.nav-menu__link--toTop > p {
  padding-left: 0 !important;
}
.nav-menu__link--toTop > p::before {
  content: none !important;
}
.nav-menu__link > img {
  height: 2.8em;
  width: auto;
  padding-right: 0.7rem;
}
.nav-menu__link > p {
  position: relative;
  font-size: 2rem;
  text-align: left;
  padding-left: 1.4rem;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav-menu__link > p::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.3rem;
  bottom: -0.3rem;
  width: 2px;
  background: #15516a;
}
.nav-menu__link > p > span {
  font-size: 0.48em;
}

.nav-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 751px) {
  .nav-btn {
    width: 4.8rem;
    height: 4.8rem;
  }
}
@media (min-width: 1440px) {
  .nav-btn {
    display: none;
  }
}
.nav-btn__icon {
  display: block;
  height: auto;
}
.nav-btn__icon--menu {
  width: 2.5rem; /* 枠 3.2rem 比で少し小さく */
}
@media (min-width: 751px) {
  .nav-btn__icon--menu {
    width: 3.6rem; /* 枠 4.8rem 比で少し小さく */
  }
}
.nav-btn__icon--close {
  display: none;
  width: 2rem; /* menu 比で小さく（3.2rem 枠内） */
}
@media (min-width: 751px) {
  .nav-btn__icon--close {
    width: 3rem; /* 4.8rem 枠内 */
  }
}
.nav-btn.open .nav-btn__icon--menu {
  display: none;
}
.nav-btn.open .nav-btn__icon--close {
  display: block;
}

.navigation {
  position: relative;
  background-color: #d2f7e8;
  text-align: center;
}
.navigation__inner {
  padding: 2.2rem 1.6rem;
}
.navigation__inner--top {
  padding: 1rem 0rem !important;
  margin: 0 3rem;
}
@media (min-width: 751px) {
  .navigation__message {
    margin-bottom: 5rem;
  }
}
.navigation__message > p {
  margin-bottom: 2.2rem;
}
@media (min-width: 751px) {
  .navigation__message > p {
    margin-bottom: 4rem;
  }
}
.navigation__message > p:first-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.navigation__message > p:first-of-type > img {
  height: 4.2em;
  width: auto;
}
.navigation__message > p > span > a {
  display: inline;
  color: #1d777b;
  text-decoration: none;
  border-bottom: 1px dotted;
}
.navigation__message > p > a {
  margin-top: 1rem;
}
@media (min-width: 751px) {
  .navigation__message > p > a {
    margin-top: 0.8rem;
  }
}
.navigation__message > p > a > img {
  height: 2.4em;
  width: auto;
}
@media (min-width: 751px) {
  .navigation__message > p > a > img {
    height: 2em;
  }
}
@media (min-width: 751px) {
  .navigation__list--inner {
    padding: 0 6rem;
  }
}
.navigation__list > li:last-of-type > a {
  margin-bottom: 0;
}
.navigation__item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 6px 6px 0 rgba(29, 119, 123, 0.9);
}
.navigation__item:first-of-type > a > img {
  padding-right: 0.4rem !important;
}
.navigation__link {
  display: flex;
  align-items: center;
  color: #15516a !important;
  text-decoration: none;
  padding: 1.2rem 1rem;
  margin-bottom: 1.8rem;
  font-weight: bold;
}
.navigation__link--top {
  padding: 1.2rem 1.6rem;
}
.navigation__link--top > p {
  font-size: 1.3vw !important;
}
.navigation__link > img {
  height: 2em;
  width: auto;
  padding-right: 0.7rem;
}
.navigation__link > p {
  font-size: 2rem;
  font-weight: 800;
  text-align: left;
  border-left: 2px solid #15516a;
  padding-left: 1rem;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 751px) {
  .navigation__link > p {
    font-size: inherit;
  }
}
.navigation__link > p > span {
  font-size: 0.48em;
}
.navigation__border {
  width: 2px;
  height: 100%;
}

.types {
  font-weight: bold;
}
@media (min-width: 751px) {
  .types {
    padding: 0 4rem;
  }
}
.types > li:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 751px) {
  .types__name {
    font-size: 0.8em;
  }
}
.types__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (min-width: 751px) {
  .types__item {
    margin-bottom: 4rem;
  }
}
.types__type > span {
  display: inline-block;
}
.types__type > span:nth-of-type(1) {
  font-size: 1.6rem;
  margin-left: 0.4rem;
  margin-right: 1.8rem;
}
@media (min-width: 751px) {
  .types__type > span:nth-of-type(1) {
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
  }
}
.types__type > span:nth-of-type(1) > img {
  position: relative;
  top: -0.2rem;
  margin-left: 0.4rem;
  height: 1.6em;
  width: auto;
}
@media (min-width: 751px) {
  .types__type > span:nth-of-type(1) > img {
    margin-left: 0.6rem;
  }
}
.types__type > span:nth-of-type(2) {
  border-left: 1px solid #1d777b;
  padding-left: 0.6rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  font-size: 0.82em;
}
@media (min-width: 751px) {
  .types__type > span:nth-of-type(2) {
    line-height: 1.4;
    margin-bottom: 1.2rem;
    font-size: 0.63em;
  }
}
.types__badge {
  display: inline-block;
  background-color: #1d777b;
  color: #ffffff;
  padding: 0.4rem 1rem;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
@media (min-width: 751px) {
  .types__badge {
    font-size: 0.8em;
  }
}
.types__img {
  position: absolute;
  right: -2rem;
  width: auto;
  height: 7.4em;
}

.salesInfo {
  margin-bottom: 2rem;
}
@media (min-width: 751px) {
  .salesInfo {
    margin-bottom: 2.6rem;
  }
}
.salesInfo__itemBox {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 751px) {
  .salesInfo__itemBox {
    margin-bottom: 6rem;
  }
}
.salesInfo__itemBox:last-of-type {
  margin-bottom: 0;
}
.salesInfo__itemBox:last-of-type > .salesInfo__content {
  text-align: center;
}
.salesInfo__itemBox:last-of-type > .salesInfo__content > p {
  display: inline-block;
  text-align: left;
  max-width: 20em;
}
.salesInfo__itemName {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 751px) {
  .salesInfo__itemName {
    font-size: 2rem;
  }
}
.salesInfo__itemName::before, .salesInfo__itemName::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #1d777b;
}
.salesInfo__itemName > span > img {
  height: 1em;
  width: auto;
}
.salesInfo__itemName > span > img:nth-of-type(1) {
  margin-right: 0.4rem;
  margin-left: 0.4rem;
}
.salesInfo__itemName > span > img:nth-of-type(2) {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.salesInfo__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.salesInfo__content > p {
  margin-bottom: 1rem;
}
.salesInfo__content > p > img {
  width: 80%;
}
.salesInfo__content > div {
  display: inline-block;
  text-align: left;
  word-break: break-all;
}
.salesInfo__content > a {
  display: inline-block;
  color: #1d777b;
  text-decoration: none;
  border-bottom: 1px dotted #1d777b;
}
.salesInfo__notes {
  margin-top: 1.4rem;
  list-style: none;
  font-size: 0.8em;
}
.salesInfo__notes > li {
  margin-bottom: 0.6rem;
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}
.salesInfo__notes > li:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 751px) {
  .photoSpot {
    margin-bottom: 0;
  }
}
.photoSpot__itemBox {
  text-align: center;
  margin-bottom: 3.2rem;
}
@media (min-width: 751px) {
  .photoSpot__itemBox {
    margin-bottom: 8rem;
  }
}
.photoSpot__itemBox:last-of-type {
  margin-bottom: 0;
}
.photoSpot__itemName {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  margin-bottom: 1rem;
  padding: 0 3rem;
  font-size: 1.08em;
}
@media (min-width: 751px) {
  .photoSpot__itemName {
    font-size: 2.2rem;
    padding: 0 5rem;
  }
}
.photoSpot__itemName::before, .photoSpot__itemName::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #1d777b;
}
.photoSpot__itemName > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-width: 9em;
}
.photoSpot__itemName > span > img {
  height: 1em;
  width: auto;
}
.photoSpot__itemName > span > img:nth-of-type(1) {
  margin-right: 0.4rem;
}
.photoSpot__itemName > span > img:nth-of-type(2) {
  margin-left: 0.4rem;
}
.photoSpot__content > img:first-of-type {
  padding: 0 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 751px) {
  .photoSpot__content > img:first-of-type {
    padding: 0 5rem;
  }
}
.photoSpot__periodImg {
  position: relative;
}
.photoSpot__periodImg img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.06);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.photoSpot__periodImg img:not(:first-child) {
  position: absolute;
  inset: 0;
}
.photoSpot__periodImg img.is-active {
  opacity: 1;
  transform: scale(1);
}
.photoSpot__periodImg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.photoSpot__periodImg.is-fade::after {
  opacity: 0.9;
}
.photoSpot__notes {
  margin-top: 1.4rem;
  list-style: none;
  font-size: 0.7em;
  padding: 0 2rem;
}
.photoSpot__notes > li {
  margin-bottom: 0.6rem;
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}
.photoSpot__notes > li:last-of-type {
  margin-bottom: 0;
}

.information {
  background-color: #edf9f4;
  padding-top: 4rem;
}
.information__inner > p {
  text-align: center;
  font-size: 1.6rem;
}
@media (min-width: 751px) {
  .information__inner > p {
    font-size: inherit;
  }
}
.information__inner > p > span {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.information__inner > p > span::before, .information__inner > p > span::after {
  content: "";
  position: relative;
  top: 0.1em;
  display: block;
  width: 0.26em;
  height: 1.2em;
  background-color: #1d777b;
  clip-path: polygon(0% 0%, 100% 0%, 65% 100%, 35% 100%);
}
.information__inner > p > span::before {
  transform: rotate(-22deg);
}
.information__inner > p > span::after {
  transform: rotate(22deg);
}
.information__inner > p > a {
  color: #1d777b;
  text-decoration: none;
  border-bottom: 1px dotted #1d777b;
}

.goods {
  margin-bottom: 3rem;
}
.goods__item {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
}
@media (min-width: 751px) {
  .goods__item {
    margin-bottom: 6rem;
  }
}
.goods__item:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
}
.goods__item:nth-of-type(1)::before {
  display: none;
}
.goods__item:nth-of-type(1) > img {
  max-width: 481px;
}
.goods__item:nth-of-type(2) > img {
  max-width: 527px;
}
.goods__item:nth-of-type(3) > img {
  width: 50%;
  max-width: 396px;
}
@media (min-width: 751px) {
  .goods__item:nth-of-type(3) > img {
    width: initial;
  }
}
.goods__item:nth-of-type(4) > img {
  max-width: 484px;
}
.goods__item:nth-of-type(5) > img {
  max-width: 548px;
}
.goods__item:nth-of-type(6) > img {
  max-width: 540px;
}
.goods__item:nth-of-type(7) > img {
  max-width: 536px;
}
.goods__item:nth-of-type(8) > img {
  max-width: 570px;
}
.goods__item:nth-of-type(9) > img {
  max-width: 494px;
}
.goods__item:nth-of-type(10) > img {
  max-width: 575px;
}
.goods__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #1d777b 0, #1d777b 1px, transparent 1px, transparent 6px);
}
@media (min-width: 751px) {
  .goods__item::before {
    height: 2px;
    background: repeating-linear-gradient(to right, #1d777b 0, #1d777b 2px, transparent 2px, transparent 6px);
  }
}
.goods__item > img {
  display: block;
  margin: 0 auto;
}
.goods__description {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 751px) {
  .goods__description {
    justify-content: center;
    gap: 3rem;
    margin-top: 1rem;
  }
}
.goods__description--exception > p:nth-of-type(2) > span:not(:first-of-type) > span {
  font-size: 0.6em !important;
}
.goods__description > p:nth-of-type(1) {
  font-size: 1.4rem;
  line-height: 1.62;
}
@media (min-width: 751px) {
  .goods__description > p:nth-of-type(1) {
    font-size: 1.9rem;
  }
}
.goods__description > p:nth-of-type(1) > span {
  background-color: #1d777b;
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
  color: #ffffff;
  font-size: 0.5em;
}
@media (min-width: 751px) {
  .goods__description > p:nth-of-type(1) > span {
    font-size: 0.66em;
  }
}
.goods__description > p:nth-of-type(2) {
  position: relative;
  top: -0.4rem;
  font-size: 1.8rem;
  text-align: right;
  line-height: 1.36;
}
@media (min-width: 751px) {
  .goods__description > p:nth-of-type(2) {
    font-size: 2.5rem;
  }
}
.goods__description > p:nth-of-type(2) > span:first-of-type {
  font-size: 0.4em;
}
@media (min-width: 751px) {
  .goods__description > p:nth-of-type(2) > span:first-of-type {
    font-size: 0.5em;
  }
}
.goods__description > p:nth-of-type(2) > span:not(:first-of-type) {
  letter-spacing: -0.08rem;
}
.goods__description > p:nth-of-type(2) > span:not(:first-of-type) > span {
  font-size: 0.8em;
}

.sankahouhou {
  margin-top: 2rem;
  text-align: center;
}
.sankahouhou__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
@media (min-width: 751px) {
  .sankahouhou__title {
    font-size: 4rem;
  }
}
.sankahouhou__img {
  margin-bottom: 1rem;
  max-width: 604px;
}
.sankahouhou__notes {
  margin-top: 1rem;
  margin-bottom: 2.6rem;
}
@media (min-width: 751px) {
  .sankahouhou__notes {
    margin-bottom: 3.2rem;
  }
}
.sankahouhou__notes > li {
  font-size: 0.7em;
  margin-bottom: 0.6rem;
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}
.sankahouhou__notes > li:last-of-type {
  margin-bottom: 0;
}