@charset "UTF-8";
/* レスポンシブ ブレークポイント
   $bp-ui    : フォント・余白・アイコン等のUI拡大用（iPad mini 縦=744px も拡大対象に含める）
   $bp-fixed : 中央コンテンツを 750px 固定するレイアウト用（744px では固定しない） */
/* font定義 */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/notosansjp/notosansjp-regular.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-regular.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/notosansjp/notosansjp-medium.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-medium.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../webfonts/notosansjp/notosansjp-bold.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-bold.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-bold.otf") format("opentype");
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  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-color-link > img {
  width: 1em;
  margin-left: 0.4rem;
  position: relative;
  top: 0.1rem;
}
@media (min-width: 741px) {
  .text-color-link > img {
    margin-left: 0.64rem;
    top: 0.16rem;
  }
}

/* ユーティリティクラス 終わり*/
/* wrapper */
.wrapper {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-feature-settings: "frac" 0;
  color: #000000;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.6s ease; /* ふわっと表示 */
  background-color: #eef1fa;
  /* 背景画像を含むコンテンツ全体をここでスクロールさせる */
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden; /* 横方向のはみ出しでスワイプ後に余白が残るのを防ぐ */
  -webkit-overflow-scrolling: touch;
  overflow-anchor: none; /* アコーディオン開閉時にスクロール位置がずれないようにする */
  scrollbar-width: none; /* Firefox */
}
.wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
@media (min-width: 741px) {
  .wrapper {
    font-size: 2.4rem; /* 1.5rem * 1.6 */
  }
}

.wrapper.loaded {
  opacity: 1;
}

/* main-banner */
.main-banner {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  gap: 1.4rem;
}
@media (min-width: 741px) {
  .main-banner {
    padding: 1.5rem 2.5rem;
    gap: 2rem;
  }
}
.main-banner__logo {
  flex: 0 0 auto;
  width: 3.2rem;
}
@media (min-width: 741px) {
  .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: 741px) {
  .main-banner__title-wrapper {
    gap: 1.5rem;
  }
}
.main-banner__title {
  flex: 0 1 auto;
  max-width: 28rem;
  min-width: 0;
}
@media (min-width: 741px) {
  .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: 100%;
  height: auto;
}

/* main-container */
.main-container {
  width: 100%;
  flex: 1; /* 親の.wrapperから高さを引き継ぐ */
  display: flex;
  min-height: 0;
  align-items: flex-start; /* 左右を上に固定するためにstretchから変更 */
}
.main-container__inner {
  /* itemBox__title--type3 の幅を「この要素の80%」に揃えるため（container 単位: cqi） */
  container-type: inline-size;
  margin: 0 auto;
  max-width: 950px;
  width: 100%;
  min-height: 100%; /* コンテンツが少ない時も背景を白く保つ */
}
@media (min-width: 741px) {
  .main-container__inner {
    box-shadow: 8px 0 0 0 #f7c9dd;
  }
}
.main-container__inner {
  /* PC時: 横幅固定は 751px 以上で維持（iPad mini 縦 744px は固定対象外） */
}
@media (min-width: 751px) {
  .main-container__inner {
    flex: 0 0 750px; /* 中央は750pxで固定 */
    width: 750px;
    max-width: 750px;
    min-width: 750px;
  }
}

/* header */
.header {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}
.header__img {
  width: 100%;
}

/* top */
.top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8% 5% 15%;
  border-block: 0.5px solid #d3d5db;
  border-top: none;
  background-color: #F6F5F3;
  width: 100%;
}
.top h2:not(.top-nav__title) {
  margin: 2rem 0 1.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  width: 50%;
}
@media (min-width: 741px) {
  .top h2:not(.top-nav__title) {
    font-size: 2.4rem;
  }
}
.top__img {
  width: 50%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.top-nav {
  width: 100%;
  max-width: 64rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background-color: #FFFFFF;
  padding-block: 7.5%;
  padding-inline: 7.5%;
  box-shadow: 4px 4px #f7c9dd;
}
.top-nav__title {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 65%;
  max-width: 32rem;
  margin: 0 auto 2.4rem;
}
.top-nav__title img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 741px) {
  .top-nav__title {
    width: 65%;
    margin: 0 auto 3.6rem;
  }
}
.top-nav__flow-area {
  position: relative;
  padding-bottom: 1.2rem;
}
.top-nav__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.top-nav__flow-line {
  position: absolute;
  top: -3rem;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 2px;
  transform: translateX(-50%);
  background-color: #000000;
  pointer-events: none;
}
.top-nav__flow-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.6rem;
  height: 1.6rem;
  margin-left: -0.075rem;
  background-color: #000000;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 22' fill='none'%3E%3Cpath d='M1 21V1' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M1 21L7 15' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: left bottom;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 22' fill='none'%3E%3Cpath d='M1 21V1' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M1 21L7 15' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left bottom;
  -webkit-mask-size: contain;
}
.top-nav__flow-line-img {
  position: absolute;
  top: -3.6rem;
  bottom: 0;
  left: 50%;
  z-index: 0;
  display: block;
  width: auto;
  height: calc(100% + 4.8rem);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (min-width: 741px) {
  .top-nav__flow-line-img {
    top: -4.8rem;
    height: calc(100% + 7.2rem);
  }
}
.top-nav__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 5.4rem;
  padding: 1.1rem 0.6rem;
  background-color: #f6f7f9;
  text-decoration: none;
}
.top-nav__main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding-right: 1rem;
}
.top-nav__icon {
  flex-shrink: 0;
  width: 4.6rem;
  height: auto;
  display: block;
}
@media (min-width: 741px) {
  .top-nav__icon {
    width: 5.2rem;
  }
}
.top-nav__text {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.5;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (min-width: 741px) {
  .top-nav__text {
    font-size: 1.8rem;
  }
}
.top-nav__label {
  position: absolute;
  right: 0.4rem;
  bottom: 0.35rem;
  display: block;
  width: auto;
  height: 2.4rem;
}
@media (min-width: 741px) {
  .top-nav__label {
    height: 3.6rem;
  }
}
.top-nav .top__img {
  position: relative;
  z-index: 1;
  width: 52%;
  margin: 3% auto 0;
}
@media (min-width: 741px) {
  .top-nav .top__img {
    width: 50%;
    margin: 5% auto 0;
  }
}

#movie,
#talk,
#digital-stamp-rally,
#spot,
#goods,
#information {
  --section-inline-padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 15%;
  padding-inline: var(--section-inline-padding);
  border-block: 0.5px solid #d3d5db;
}
#movie > h2,
#movie > .title-overview,
#talk > h2,
#talk > .title-overview,
#digital-stamp-rally > h2,
#digital-stamp-rally > .title-overview,
#spot > h2,
#spot > .title-overview,
#goods > h2,
#goods > .title-overview,
#information > h2,
#information > .title-overview {
  width: calc(100% + 2 * var(--section-inline-padding) / (100% - 2 * var(--section-inline-padding)) * 100%);
  margin-inline: calc(-1 * var(--section-inline-padding) / (100% - 2 * var(--section-inline-padding)) * 100%);
  box-sizing: border-box;
}
#movie > h2 img,
#talk > h2 img,
#digital-stamp-rally > h2 img,
#spot > h2 img,
#goods > h2 img,
#information > h2 img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

#movie {
  background-color: #F9F0F4;
}

#talk {
  background-color: #e9e9ee;
}

#digital-stamp-rally {
  background-color: #F9F0F4;
}
#digital-stamp-rally .terms-box__title.underline,
#digital-stamp-rally .label-heading__title.underline {
  background-color: transparent;
  font-size: 1.8rem;
  padding: 0;
  color: #eb6d9a;
}
@media (min-width: 741px) {
  #digital-stamp-rally .terms-box__title.underline,
  #digital-stamp-rally .label-heading__title.underline {
    font-size: 2.6rem;
    padding: 0;
  }
}

#spot {
  background-color: #e9e9ee;
}

#goods {
  background-color: #F9F0F4;
}
@media (min-width: 741px) {
  #goods .panel-content {
    margin-bottom: 10%;
  }
}

.goods-item__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.4rem;
}
@media (min-width: 741px) {
  .goods-item__text {
    margin-top: 3.2rem;
  }
}
.goods-item__text--center {
  align-items: center;
  text-align: center;
}
.goods-item__text__title {
  color: #eb6d9a;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 741px) {
  .goods-item__text__title {
    font-size: 3rem;
  }
}
.goods-item__text__note {
  color: #eb6d9a;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 741px) {
  .goods-item__text__note {
    font-size: 2.4rem;
  }
}

.goods-sale-info {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.goods-sale-info__section {
  margin-bottom: 2.4rem;
}
@media (min-width: 741px) {
  .goods-sale-info__section {
    margin-bottom: 3.2rem;
  }
}
.goods-sale-info__title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem !important;
  color: #000000;
}
@media (min-width: 741px) {
  .goods-sale-info__title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem !important;
  }
}
.goods-sale-info__content {
  text-align: center;
  margin: 0.4rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000000;
}
@media (min-width: 741px) {
  .goods-sale-info__content {
    font-size: 2rem;
  }
}
.goods-sale-info__weekday {
  font-size: 0.75em;
}
.goods-sale-info__notes.ac-section__notes {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.goods-sale-info__notes.ac-section__notes p {
  color: #e60012;
  font-size: 1.2rem;
}
@media (min-width: 741px) {
  .goods-sale-info__notes.ac-section__notes p {
    font-size: 1.6rem;
  }
}
.goods-sale-info__location.ac-section__conditions {
  margin-bottom: 0;
}
.goods-sale-info__location.ac-section__conditions .goods-sale-info__content {
  text-align: center;
}
.goods-sale-info__location.ac-section__conditions p {
  font-size: 1.4rem;
}
@media (min-width: 741px) {
  .goods-sale-info__location.ac-section__conditions p {
    font-size: 2rem;
  }
}

#information {
  background-color: #f4f2f0;
}
#information .label-heading {
  margin-block: 0;
}
#information .label-heading__title--small {
  font-size: 1.6rem;
}
@media (min-width: 741px) {
  #information .label-heading__title--small {
    font-size: 2.4rem;
    padding: 0;
  }
}
#information > h2 + .label-heading {
  margin-top: 2.4rem;
}
@media (min-width: 741px) {
  #information > h2 + .label-heading {
    margin-top: 3rem;
  }
}
#information .label-heading--bg-info .underline:not(.underline--fit) {
  padding-bottom: 0.15rem;
  margin-bottom: 3.2rem !important;
}
@media (min-width: 741px) {
  #information .label-heading--bg-info .underline:not(.underline--fit) {
    margin-bottom: 4rem !important;
  }
}
#information .label-heading--bg-info .underline--fit {
  padding-bottom: 0.15rem;
  margin-bottom: 1rem !important;
}
@media (min-width: 741px) {
  #information .label-heading--bg-info .underline--fit {
    margin-bottom: 1.2rem !important;
  }
}
#information .label-heading--bg-info .label-heading__title {
  margin-block-end: 0;
}
#information .label-heading--bg-info + .label-heading--bg-info {
  margin-top: 0;
}
#information .link-btn-info + .label-heading {
  margin-top: 2.8rem;
}
@media (min-width: 741px) {
  #information .link-btn-info + .label-heading {
    margin-top: 3.5rem;
  }
}
#information .label-heading--office {
  margin-top: 3.6rem;
}
@media (min-width: 741px) {
  #information .label-heading--office {
    margin-top: 4rem;
  }
}
#information .contact-info__office .contact-info__hours {
  margin-top: 0.5rem;
}
#information .contact-info__office .contact-info__note {
  margin-top: 1.6rem;
}
@media (min-width: 741px) {
  #information .contact-info__office .contact-info__hours {
    margin-top: 0.8rem;
  }
  #information .contact-info__office .contact-info__note {
    margin-top: 2rem;
  }
}

.contact-info__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.contact-info__email, .contact-info__office {
  width: 100%;
  text-align: center;
}
.contact-info__email a, .contact-info__office a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.contact-info__email {
  margin: 0;
}
.contact-info__office {
  text-decoration: none;
}
.contact-info__office p {
  margin: 0;
  line-height: 1.6;
}
.contact-info__office p + p {
  margin-top: 0.2em;
}
.contact-info__hours {
  margin: 0;
}
.contact-info__note {
  font-size: 1.3rem;
  margin: 0;
}
@media (min-width: 741px) {
  .contact-info__note {
    font-size: 1.8rem;
  }
}

.inline-block {
  display: inline-block;
}

.title-overview {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 1.6rem;
  margin-block: 10%;
}
@media (min-width: 741px) {
  .title-overview {
    font-size: 2.4rem;
    margin-block: 7.5%;
  }
}

.label-bubble {
  display: inline-block;
  margin: 0 0 2.8rem;
  --bubble-bg: #000000;
  --bubble-color: #ffffff;
  --bubble-skew: -45deg;
}
.label-bubble__body {
  display: block;
  position: relative;
  transform: skewX(var(--bubble-skew));
  background-color: var(--bubble-bg);
  padding: 0.5rem 4rem;
}
@media (min-width: 741px) {
  .label-bubble__body {
    padding: 0.75rem 6rem;
  }
}
.label-bubble__body::after {
  content: "";
  position: absolute;
  right: 40%;
  bottom: -1.4rem;
  width: 1.5rem;
  height: 1.5rem;
  transform: skewX(calc(var(--bubble-skew) * -1));
  background-color: var(--bubble-bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (min-width: 741px) {
  .label-bubble__body::after {
    bottom: -2.1rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}
.label-bubble__text {
  display: block;
  transform: skewX(calc(var(--bubble-skew) * -1));
  color: var(--bubble-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 741px) {
  .label-bubble__text {
    font-size: 1.8rem;
  }
}
.label-bubble--no-tail {
  margin-bottom: 1.4rem;
}
.label-bubble--no-tail .label-bubble__body::after {
  display: none;
}
.label-bubble--dark {
  --bubble-bg: #000000;
  --bubble-color: #ffffff;
}
.label-bubble--pink {
  --bubble-bg: #EAA0BA;
  --bubble-color: #ffffff;
}
.label-bubble--text-pink {
  --bubble-color: #f19db5;
}

.label-bubble-wrap {
  position: relative;
  display: inline-block;
  margin: 0 0 1.5rem;
}
@media (min-width: 741px) {
  .label-bubble-wrap {
    margin: 0 0 2.25rem;
  }
}
.label-bubble-wrap .label-bubble {
  margin-bottom: 0;
}
.label-bubble-wrap .label-bubble__body {
  padding: 0.625rem 4.75rem 0.625rem 5rem;
}
@media (min-width: 741px) {
  .label-bubble-wrap .label-bubble__body {
    padding: 0.9375rem 7.125rem 0.9375rem 7.5rem;
  }
}
.label-bubble-wrap .label-bubble__body::after {
  bottom: -1.75rem;
  width: 1.5rem;
  height: 1.875rem;
}
@media (min-width: 741px) {
  .label-bubble-wrap .label-bubble__body::after {
    bottom: -2.625rem;
    width: 2.25rem;
    height: 2.8125rem;
  }
}
.label-bubble-wrap .label-bubble__text {
  font-size: 1.875rem;
}
@media (min-width: 741px) {
  .label-bubble-wrap .label-bubble__text {
    font-size: 3rem;
  }
}
.label-bubble-wrap__badge {
  position: absolute;
  right: -3.75rem;
  top: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: #eb6d9a;
  color: #ffffff;
  transform: translateY(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (min-width: 741px) {
  .label-bubble-wrap__badge {
    right: -5.625rem;
    width: 11.25rem;
    height: 11.25rem;
    font-size: 2rem;
  }
}
.label-bubble-wrap__badge-line {
  display: block;
}

.line-label {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.35rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000000;
  text-align: center;
}
.line-label--sm {
  font-size: 1.2rem;
}
.line-label--lg {
  font-size: 1.8rem;
}
.line-label--xl {
  font-size: 2.2rem;
}

.panel-box {
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
}
.panel-box .panel-list {
  --panel-list-outer-padding: 0;
  --panel-list-inner-gap: 0;
  padding: 0;
}
.panel-box .panel-list__inner {
  gap: 0.3rem;
  align-items: stretch;
  padding-top: 0.8rem;
}
.panel-box .panel-list__item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background-color: #eb6d9a;
  color: #ffffff;
  border: 1px solid #eb6d9a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (min-width: 741px) {
  .panel-box .panel-list__item {
    font-size: 2rem;
  }
}
.panel-box .panel-list__item--active {
  background-color: #ffffff;
  color: #000000;
  border-bottom: none;
  padding: 1rem 1rem calc(1rem + 1px);
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  margin-top: -0.8rem;
}
@media (min-width: 741px) {
  .panel-box .panel-list__item--active {
    font-size: 2.4rem;
  }
}
.panel-box .panel-list__item--active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background-color: #ffffff;
}
.panel-box .panel-list--2lines .panel-list__item {
  line-height: 1.4;
  min-height: calc(2.8em + 1.4rem + 2px);
}
.panel-box .panel-list--2lines .panel-list__item--active {
  min-height: calc(2.8em + 2rem + 2px);
}

.panel-list {
  --panel-list-outer-padding: 1.5rem;
  --panel-list-inner-gap: 0.4rem;
  width: 100%;
  padding: 0 var(--panel-list-outer-padding);
}
.panel-list__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--panel-list-inner-gap);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.panel-list__item {
  flex: 1;
  text-align: center;
  background-color: #333;
  color: #ffffff;
  padding: 1em 2.5em;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.panel-list__item--active {
  background-color: #ffffff;
  color: #333;
  padding: 1.2em 3em;
  font-size: 1.7rem;
  margin-bottom: 0;
}
.panel-list--cols-2 .panel-list__inner {
  width: min(100%, 26rem);
  margin-inline: auto;
  justify-content: center;
}
.panel-list--cols-2 .panel-list__item {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 1.5em;
}
.panel-list--cols-2 .panel-list__item--active {
  padding-inline: 1.5em;
}

.spot-ad {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  padding-block: 2rem;
  padding-inline: 0;
  overflow: hidden;
}
.spot-ad .label-heading {
  padding-inline: 2rem;
}
.spot-ad .ad-swiper {
  width: 100%;
  align-self: stretch;
  overflow: hidden;
}
.spot-ad .itemBox__notesBox--type2 {
  width: 100%;
  margin-top: 1.6rem;
}
@media (min-width: 741px) {
  .spot-ad .itemBox__notesBox--type2 {
    margin-top: 2.4rem;
  }
}
.spot-ad .itemBox__notesBox--type2 .notesBox {
  margin-bottom: 0;
}
.panel-box .spot-ad {
  position: relative;
  z-index: 0;
  border: 1px solid #eb6d9a;
  margin-top: 1.6rem;
  padding: 0 2rem 2.4rem;
  padding-inline: 0;
}

stampSpots__content.button.panel-list__item {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.panel-content {
  display: none;
}
.panel-content--active {
  display: flex;
}
.panel-content {
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  padding: 2rem;
}
.panel-box .panel-content {
  position: relative;
  z-index: 0;
  border: 1px solid #eb6d9a;
  margin-top: -1px;
  padding: 2.4rem 2rem 2rem;
}
.panel-box .panel-content:has(.panel-content__flex) {
  padding: 2rem 1.2rem;
}
.panel-content__img {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 741px) {
  .panel-content__img {
    width: 90%;
  }
}
.panel-content__img img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 741px) {
  .panel-content__img img {
    width: 100%;
  }
}
.panel-content__flex {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.panel-content__flex .station-member-list {
  flex: 1;
  min-width: 0;
  margin-top: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.panel-content__flex .station-member-list__item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.6rem 0;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
}
@media (min-width: 741px) {
  .panel-content__flex .station-member-list__item {
    font-size: 2.2rem;
    gap: 0.6rem;
  }
}
.panel-content__flex .station-member-list__station {
  flex: none;
  width: 100%;
  justify-content: flex-start;
  padding-left: 0;
  gap: 0.4rem;
  white-space: nowrap;
}
.panel-content__flex .station-member-list__station::before {
  width: 1.6rem;
  height: 1.6rem;
}
@media (min-width: 741px) {
  .panel-content__flex .station-member-list__station::before {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.panel-content__flex .station-member-list__member {
  flex: none;
  width: 100%;
  padding-left: 1.6rem;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.panel-content__flex--column {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.panel-content__flex--column .station-member-list {
  flex: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}
.panel-content__flex--inline .station-member-list__item {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}
.panel-content__flex--inline .station-member-list__station {
  flex: none;
  width: auto;
}
.panel-content__flex--inline .station-member-list__member {
  flex: 1;
  width: auto;
  padding-left: 0;
}
.panel-content .stampSpots__category {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #eb6d9a;
  font-weight: 500;
  font-size: 1.5rem;
  border-bottom: 1px solid #eb6d9a;
  padding-bottom: 0.5rem;
  text-align: left;
}
.panel-content .stampSpots__category:first-child {
  margin-top: 0;
}
@media (min-width: 741px) {
  .panel-content .stampSpots__category {
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
    padding-bottom: 0.8rem;
  }
  .panel-content .stampSpots__category:first-child {
    margin-top: 0;
  }
}
.panel-content__flex--column .stampSpots__category {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-bottom: none;
}
.panel-content__flex--column .stampSpots__category:first-child {
  margin-top: 0;
}
@media (min-width: 741px) {
  .panel-content__flex--column .stampSpots__category {
    margin-top: 2.5rem;
    margin-bottom: 0;
  }
  .panel-content__flex--column .stampSpots__category:first-child {
    margin-top: 0;
  }
}
.panel-content > .stampSpots__category:first-of-type {
  margin-top: 0;
}
.panel-content p {
  text-align: center;
}
.panel-content .line-label {
  align-self: center;
  margin: 0.8rem 0;
}
.panel-content .ico-youtube {
  display: inline-block;
  height: 1em;
  width: auto;
  vertical-align: -0.1em;
  margin-left: 0.25em;
}
.panel-content__title {
  display: inline-block;
  align-self: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 741px) {
  .panel-content__title {
    font-size: 2.8rem;
    margin: 2rem auto 3rem;
  }
}
.panel-content__title::after {
  content: "";
  display: block;
  width: 12rem;
  height: 1px;
  margin: 0.8rem auto 0;
  background-color: #eb6d9a;
}
@media (min-width: 741px) {
  .panel-content__title::after {
    width: 20rem;
    height: 2px;
    margin: 1.2rem auto 0;
  }
}
.panel-content__terms-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1.6rem;
  width: 100%;
}
@media (min-width: 741px) {
  .panel-content__terms-text {
    font-size: 2.6rem;
  }
}
.panel-content__terms-text--spaced-top {
  margin-top: 5%;
}
.panel-content__terms-text--spaced-top--10 {
  margin-top: 10%;
}
.panel-content__terms-text--weekday {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media (min-width: 741px) {
  .panel-content__terms-text--weekday {
    font-size: 2rem;
  }
}
.panel-content__text__left {
  text-align: left;
  margin-bottom: 0.8rem;
}
.panel-content__video {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 3.2rem;
}
.panel-content__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.station-member-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 1%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 741px) {
  .station-member-list {
    margin: 1.6rem 0 0;
  }
}
.station-member-list__item {
  display: flex;
  align-items: center;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  line-height: 1.5;
  border-bottom: 1px solid #eb6d9a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (min-width: 741px) {
  .station-member-list__item {
    font-size: 2.4rem;
  }
}
.station-member-list__station {
  display: flex;
  flex: 0 0 calc(4.8rem + 8em);
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  color: #eb6d9a;
  white-space: nowrap;
}
.station-member-list__station::before {
  content: "";
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: url("../img/ico_train.png") center/contain no-repeat;
}
.station-member-list__station--ship::before {
  background: url("../img/ico_ship.png") center/contain no-repeat;
}
.station-member-list__member {
  flex: 1;
  color: #000000;
}

.label-heading__title,
.terms-box__title {
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (min-width: 741px) {
  .label-heading__title,
  .terms-box__title {
    font-size: 2.8rem;
    margin-block-end: 1%;
    padding: 0.75%;
    font-size: 3rem;
  }
}

.underline {
  border-bottom: 1px solid #eb6d9a;
  padding-bottom: 0.5rem;
  margin-bottom: 3% !important;
}
.underline--fit {
  width: fit-content;
  margin-inline: auto;
  padding-inline: 0.4em;
}

.label-heading {
  width: 100%;
  margin-top: 10%;
  display: flex;
  flex-direction: column;
}
.label-heading--no-margin {
  margin-top: 0;
}
.label-heading--bg-white .label-heading__title,
.label-heading--bg-white .label-heading__content {
  background-color: #FFFFFF;
}
.label-heading--bg-info {
  margin-bottom: 0;
}
.label-heading--bg-info .label-heading__title,
.label-heading--bg-info .label-heading__content {
  background-color: #f4f2f0;
}
.label-heading--bg-info + .contact-info__email {
  margin-top: 0;
}
.label-heading__title {
  margin-block-end: 0.5%;
  background-color: #fceff3;
}
.label-heading__title--pink {
  color: #eb6d9a;
}
.label-heading__content {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  background-color: #fceff3;
}

.terms-box {
  width: 100%;
  margin-block: 10%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 741px) {
  .terms-box {
    margin-block: 5%;
  }
}
.terms-box__title {
  margin-block-end: 0.5%;
  background-color: #fceff3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding: 1%;
}
@media (min-width: 741px) {
  .terms-box__title {
    font-size: 3rem;
    margin-block-end: 1%;
    padding: 0.75%;
  }
}
.terms-box__content {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  background-color: #fceff3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 3%;
}
@media (min-width: 741px) {
  .terms-box__content {
    font-size: 3.5rem;
    padding: 0.75%;
  }
}
.terms-box__weekday {
  font-size: 0.75em;
}

.prize-area {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-block: 10%;
  padding-inline: 5%;
}
.prize-area__bonus {
  position: relative;
  width: 100%;
  margin-top: 2.8rem;
  padding: 3.6rem 1.6rem 1.6rem;
  border: 1px solid #EAA0BA;
  border-radius: 0.8rem;
  background-color: #ffffff;
  overflow: visible;
}
@media (min-width: 741px) {
  .prize-area__bonus {
    padding: 5.4rem 1.6rem 1.6rem;
  }
}
.prize-area__bonus-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 1;
  white-space: nowrap;
}
.prize-area__bonus-badge.label-bubble {
  margin-bottom: 0;
}
.prize-area__bonus-badge .label-bubble__body {
  padding: 0.4rem 3.2rem;
}
@media (min-width: 741px) {
  .prize-area__bonus-badge .label-bubble__body {
    padding: 0.64rem 5.12rem;
  }
}
@media (min-width: 741px) {
  .prize-area__bonus-badge .label-bubble__text {
    font-size: 2.4rem;
  }
}
.prize-area__bonus-badge .label-bubble__body::after {
  right: auto;
  left: 50%;
  transform: translateX(-50%) skewX(calc(var(--bubble-skew) * -1));
}
.prize-area__bonus-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 0.8rem;
}
.prize-area__bonus-body--img-full {
  justify-content: center;
}
.prize-area__bonus-body--img-full .prize-area__bonus-img {
  flex: 1 1 100%;
  width: 100%;
  justify-content: center;
}
.prize-area__bonus-text {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #000000;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: normal;
  word-break: keep-all;
}
@media (min-width: 741px) {
  .prize-area__bonus-text {
    font-size: 3rem;
  }
}
.prize-area__bonus-text p {
  margin: 0;
}
.prize-area__bonus-text--small {
  font-size: 1.2rem;
}
@media (min-width: 741px) {
  .prize-area__bonus-text--small {
    font-size: 1.8rem;
  }
}
.prize-area__bonus-limited {
  color: #eb6d9a;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}
@media (min-width: 741px) {
  .prize-area__bonus-limited {
    font-size: 3.2rem;
  }
}
.prize-area__bonus-img {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.prize-area__bonus-img .prize-area__img {
  display: block;
  width: 100%;
  height: auto;
}
.prize-area__figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-block: 5%;
}
.prize-area__figure-note {
  width: 100%;
  text-align: right;
  margin: 0;
  color: #545454;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 741px) {
  .prize-area__figure-note {
    font-size: 1.7rem;
  }
}
.prize-area__text {
  display: flex;
  flex-direction: column;
  align-items: left;
}
.prize-area__text--center {
  align-items: center;
  text-align: center;
}
@media (min-width: 741px) {
  .prize-area__text--center {
    margin-top: 2.4rem;
  }
}
.prize-area__text__mark {
  color: #eb6d9a;
}
.prize-area__text__black {
  color: #000000;
}
.prize-area__text__pink {
  color: #eb6d9a;
}
.prize-area__text__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 741px) {
  .prize-area__text__title {
    font-size: 3rem;
  }
}
.prize-area__text__note {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 741px) {
  .prize-area__text__note {
    font-size: 2.4rem;
  }
}
.prize-area__imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.prize-area__img {
  width: 100%;
  height: auto;
}
.prize-area__box {
  border: 0.5px solid #000000;
  background-color: #ffffff;
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 741px) {
  .prize-area__box {
    margin: 1.6rem 0;
  }
}
.prize-area__box--type2 {
  background-color: #f4f2f0;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 7.5%;
  font-size: 1.4rem;
}
@media (min-width: 741px) {
  .prize-area__box--type2 {
    font-size: 1.8rem;
    padding: 5%;
  }
}
.prize-area__box--type2 .box-subtitle {
  margin-bottom: 1.2rem;
}
.prize-area__box--type2 .box-title {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 741px) {
  .prize-area__box--type2 .box-title {
    font-size: 2rem;
  }
}
.prize-area__box--type2 .box-item-list {
  width: 100%;
  align-self: stretch;
  text-align: left;
}
.prize-area__box--type2 .box-item--mb {
  margin-bottom: 1rem;
}
@media (min-width: 741px) {
  .prize-area__box--type2 .box-item--mb {
    margin-bottom: 1.6rem;
  }
}
@media (min-width: 741px) {
  .prize-area__box--type2 .box-item {
    font-size: 1.8rem;
  }
}
.prize-area__box--type2 .box-item--accent {
  color: #eb6d9a;
}
.prize-area__box--type2 .box-item__link {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.prize-area__box--type2 .box-item__weekday {
  font-size: 0.75em;
}
.prize-area__box--tier {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  justify-content: flex-start;
}
.prize-area__box--tier .prize-area__box-body {
  flex: 0 0 auto;
}
.prize-area__box--tier .prize-area__box-body + .prize-area__box--tier .prize-area__box-body {
  border-top: 1px solid #000000;
}
.prize-area__box__notes {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  text-align: left;
  margin-top: 1rem;
}
.prize-area__box__notes p {
  margin: 0.2rem 0;
  padding-left: 1em;
  text-indent: -1em;
}
@media (min-width: 741px) {
  .prize-area__box__notes {
    font-size: 2rem;
    margin-top: 1.6rem;
  }
}
.prize-area__boxes__arrange {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}
.prize-area__boxes__arrange .prize-area__box {
  flex: 1;
}
.prize-area__boxes__arrange--auto-height {
  align-items: flex-start;
}
.prize-area__arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
  margin: 0.8rem 0;
}
.prize-area__arrow {
  flex: 1;
  height: 2.4rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 24'%3E%3Cpath d='M6 0V12' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='square'/%3E%3Cpath d='M2 17L6 22L10 17' fill='none' stroke='%23000000' stroke-width='1' stroke-linejoin='miter' stroke-linecap='square'/%3E%3C/svg%3E") center/auto 100% no-repeat;
}
.prize-area__box-head {
  width: 100%;
  margin: 0;
  padding: 0.6rem 0.4rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  background-color: #DE007F;
}
.prize-area__box-body {
  width: 100%;
  padding: 0.8rem 0.4rem;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  color: #000000;
  background-color: #ffffff;
}
.prize-area__box-body p {
  margin: 0;
}
.prize-area__redeem {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 1.6rem;
}
.prize-area__redeem p {
  text-align: center;
  margin: 0;
}
.prize-area__redeem .line-label {
  margin: 0.8rem 0;
}

.contentBox {
  scroll-margin-top: 6rem;
}
@media (min-width: 741px) {
  .contentBox {
    scroll-margin-top: 8rem;
  }
}
.contentBox__title {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 90%;
  margin: 0 auto 2.4rem;
  min-height: 4.8rem;
  padding: 1rem 2.8rem;
  background-color: transparent;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
}
.contentBox__title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #710c21;
  clip-path: polygon(1.4rem 0, calc(100% - 1.4rem) 0, 100% 1.4rem, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 1.4rem 100%, 0 calc(100% - 1.4rem), 0 1.4rem);
}
.contentBox__title::after {
  content: "";
  position: absolute;
  inset: -3rem;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(135 12 12)'%3E%3Cpath fill='%23800020' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(-135 12 12)'%3E%3Cpath fill='%23800020' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(45 12 12)'%3E%3Cpath fill='%23800020' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(-45 12 12)'%3E%3Cpath fill='%23800020' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  background-position: left 2.8rem top 2.8rem, right 2.8rem top 2.8rem, left 2.8rem bottom 2.8rem, right 2.8rem bottom 2.8rem;
}
@media (min-width: 741px) {
  .contentBox__title {
    width: 90%;
    margin: 0 auto 4.5rem;
    min-height: 6.4rem;
    padding: 1.4rem 4rem;
    font-size: 2.7rem;
  }
  .contentBox__title::before {
    clip-path: polygon(2rem 0, calc(100% - 2rem) 0, 100% 2rem, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 2rem 100%, 0 calc(100% - 2rem), 0 2rem);
  }
  .contentBox__title::after {
    background-size: 1.4rem 1.4rem;
    background-position: left 2.6rem top 2.6rem, right 2.6rem top 2.6rem, left 2.6rem bottom 2.6rem, right 2.6rem bottom 2.6rem;
  }
}
.contentBox__title--type2::before {
  background-color: #d3446b;
}
.contentBox__title--type2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(135 12 12)'%3E%3Cpath fill='%23DB6383' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(-135 12 12)'%3E%3Cpath fill='%23DB6383' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(45 12 12)'%3E%3Cpath fill='%23DB6383' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 32 32'%3E%3Cg transform='rotate(-45 12 12)'%3E%3Cpath fill='%23DB6383' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/g%3E%3C/svg%3E");
}
.contentBox__inner {
  padding: 1rem 0 1rem;
}
@media (min-width: 741px) {
  .contentBox__inner {
    padding: 1.5rem 0 1rem;
  }
}
.contentBox__inner {
  /* itemBox で包んでいない type3 見出し（flex 子でない）を中央に */
}
.contentBox__inner > h3.itemBox__title--type3 {
  left: 50%;
  transform: translateX(-50%);
}
.contentBox__full-img {
  margin: 0 0 2rem;
}
@media (min-width: 741px) {
  .contentBox__full-img {
    margin: 0 0 3.2rem;
  }
}
.contentBox__full-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.stamp-spot-content {
  width: 100%;
}
.stamp-spot-content__title {
  margin: 0 0 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #eb6d9a;
}
@media (min-width: 741px) {
  .stamp-spot-content__title {
    font-size: 2.4rem;
    margin-block-end: 3%;
    padding: 0.75%;
  }
}
.stamp-spot-content__notes {
  width: 100%;
}
.stamp-spot-content__notes p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  color: #000000;
}
@media (min-width: 741px) {
  .stamp-spot-content__notes p {
    font-size: 1.8rem;
  }
}
.stamp-spot-content__notes p + p {
  margin-top: 0.4rem;
}
@media (min-width: 741px) {
  .stamp-spot-content__notes p + p {
    margin-top: 0.8rem;
  }
}
.stamp-spot-content__notes-item {
  padding-left: 1em;
  text-indent: -1em;
}
.stamp-spot-content__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  max-width: 300px;
  margin: 3.2rem auto;
}
@media (min-width: 741px) {
  .stamp-spot-content__img {
    margin-block: 4.8rem;
  }
}
.stamp-spot-content__img img {
  width: 100%;
  height: auto;
  display: block;
}
.stamp-spot-content__img--visual-center {
  overflow: visible;
}
.stamp-spot-content__img--visual-center img {
  transform: translateX(-5.5%);
}
@media (min-width: 741px) {
  .stamp-spot-content__img--visual-center img {
    transform: translateX(-4.5%);
  }
}

.ac {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  width: 90%;
  margin: 10% 10px 0;
  border: 1px solid #000000;
  background-color: #ffffff;
}
.ac:has(.w100) {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.ac--stamp-spot {
  margin-top: 5%;
  border: 1px solid #FFFFFF;
}

.ac-parent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 4.8rem;
  padding: 1.2rem 4.8rem;
  margin: 0;
  cursor: pointer;
  border: none;
  background-color: #ffffff;
}
@media (min-width: 741px) {
  .ac-parent {
    min-height: 6rem;
    padding: 1.8rem 7.2rem;
  }
}
.ac-parent > p {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  color: #000000;
}
@media (min-width: 741px) {
  .ac-parent > p {
    font-size: 2.4rem;
  }
}

.ac-parent-toggle {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
}
.ac-parent-toggle::before, .ac-parent-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000000;
  transform: translate(-50%, -50%);
}
.ac-parent-toggle::before {
  width: 1.4rem;
  height: 1px;
}
.ac-parent-toggle::after {
  width: 1.5px;
  height: 1.4rem;
  transition: opacity 0.2s;
}

.ac-parent.open .ac-parent-toggle::after {
  opacity: 0;
}

.ac-child {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  border: none;
  background-color: #ffffff;
  transition: grid-template-rows 0.35s ease;
}
.ac-child__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.ac-child__inner > :first-child {
  margin-top: 1.6rem;
}
.ac-child__inner > :last-child {
  margin-bottom: 2.4rem;
}
.ac-child__inner > .label-bubble {
  align-self: center;
}

.ac-parent.open + .ac-child {
  grid-template-rows: minmax(0, 1fr);
}

.ac-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.ac-section + .ac-section {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid #cccccc;
}
.ac-section .label-bubble {
  align-self: center;
  margin-bottom: 1.2rem;
}
.ac-section__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #000000;
  margin: 1.2rem 0 1.2rem;
}
@media (min-width: 741px) {
  .ac-section__lead {
    font-size: 2.8rem;
    margin: 2.4rem 0 2.4rem;
  }
}
.ac-section__conditions {
  width: 100%;
  margin-bottom: 1rem;
}
.ac-section__conditions p {
  margin: 0.3rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000000;
  text-align: left;
}
@media (min-width: 741px) {
  .ac-section__conditions p {
    font-size: 2rem;
  }
}
.ac-section__notes {
  width: 100%;
  margin-bottom: 1rem;
}
.ac-section__notes p {
  gap: 0.2em;
  margin: 0.2rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
  text-align: left;
}
.ac-section__notes p:not(.ac-section__notes-detail):not(.ac-section__notes-example) {
  padding-left: 1em;
  text-indent: -1em;
}
.ac-section__notes p.ac-section__notes-example {
  padding-left: 2em;
  text-indent: -2em;
}
@media (min-width: 741px) {
  .ac-section__notes p {
    font-size: 2rem;
  }
}

.link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 3rem auto 0.4rem;
  min-height: 4.8rem;
  padding: 1.2rem 4.8rem;
  border: none;
  background-color: #000000;
  box-shadow: 2px 2px 0 #eb6d9a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  color: #f19db5;
  text-decoration: none;
  transition: opacity 0.3s;
}
.link-btn:hover {
  opacity: 0.8;
}
.link-btn:focus-visible {
  outline: auto;
}
.link-btn__text {
  display: block;
  width: 100%;
}
.link-btn__text--pink {
  color: #f19db5;
}
.link-btn__arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 3.6rem;
  height: 1.4rem;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 10'%3E%3Cpath d='M0 7h26l-6-5' fill='none' stroke='%23f19db5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.link-btn__arrow-info {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 10'%3E%3Cpath d='M0 7h26l-6-5' fill='none' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.link-btn.link-btn-info {
  background-color: #00823e;
  color: #FFFFFF;
  box-shadow: none;
  margin-top: 0;
}
.link-btn--disabled {
  pointer-events: none;
  cursor: default;
}
.link-btn--disabled:hover {
  opacity: 1;
}
@media (min-width: 741px) {
  .link-btn {
    min-height: 6rem;
    padding: 1.8rem 7.2rem;
  }
}
@media (min-width: 741px) {
  .link-btn__text {
    font-size: 2.4rem;
  }
}

.ribbonTitleWrapper {
  text-align: center;
  width: 70%;
  margin: 0 0 2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 741px) {
  .ribbonTitleWrapper {
    margin-bottom: 3.2rem;
  }
}

.ribbonTitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.8rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20preserveAspectRatio%3D%22none%22%20viewBox%3D%220%200%20300%2040%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M%2031%201%20L%20269%201%20Q%20274%201%20277.5%204.4%20L%20295%2017.4%20Q%20298.5%2020%20295%2022.6%20L%20277.5%2035.6%20Q%20274%2039%20269%2039%20L%2031%2039%20Q%2026%2039%2022.5%2035.6%20L%205%2022.6%20Q%201.5%2020%205%2017.4%20L%2022.5%204.4%20Q%2026%201%2031%201%20Z%22%20fill%3D%22%23f2ede4%22%20stroke%3D%22%23710c21%22%20stroke-width%3D%222%22%20vector-effect%3D%22non-scaling-stroke%22%2F%3E%3Cpath%20d%3D%22M%2032%204%20L%20268%204%20Q%20272%204%20275%206.8%20L%20291%2018.3%20Q%20293%2020%20291%2021.7%20L%20275%2033.2%20Q%20272%2036%20268%2036%20L%2032%2036%20Q%2028%2036%2025%2033.2%20L%209%2021.7%20Q%207%2020%209%2018.3%20L%2025%206.8%20Q%2028%204%2032%204%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23710c21%22%20stroke-width%3D%221.5%22%20stroke-dasharray%3D%228%2C%204%22%20vector-effect%3D%22non-scaling-stroke%22%2F%3E%3C%2Fsvg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #710c21;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-indent: 0.1em; /* letter-spacingの分だけ左にズレて見えるのを修正するため */
  margin: 0;
}
.ribbonTitle--type2 {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20preserveAspectRatio%3D%22none%22%20viewBox%3D%220%200%20300%2040%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M%2031%201%20L%20269%201%20Q%20274%201%20277.5%204.4%20L%20295%2017.4%20Q%20298.5%2020%20295%2022.6%20L%20277.5%2035.6%20Q%20274%2039%20269%2039%20L%2031%2039%20Q%2026%2039%2022.5%2035.6%20L%205%2022.6%20Q%201.5%2020%205%2017.4%20L%2022.5%204.4%20Q%2026%201%2031%201%20Z%22%20fill%3D%22%23FFFFFF%22%20stroke%3D%22%23d3446b%22%20stroke-width%3D%222%22%20vector-effect%3D%22non-scaling-stroke%22%2F%3E%3Cpath%20d%3D%22M%2032%204%20L%20268%204%20Q%20272%204%20275%206.8%20L%20291%2018.3%20Q%20293%2020%20291%2021.7%20L%20275%2033.2%20Q%20272%2036%20268%2036%20L%2032%2036%20Q%2028%2036%2025%2033.2%20L%209%2021.7%20Q%207%2020%209%2018.3%20L%2025%206.8%20Q%2028%204%2032%204%20Z%22%20fill%3D%22none%22%20stroke%3D%22%23d3446b%22%20stroke-width%3D%221.5%22%20stroke-dasharray%3D%228%2C%204%22%20vector-effect%3D%22non-scaling-stroke%22%2F%3E%3C%2Fsvg%3E");
  color: #d3446b;
}
@media (min-width: 741px) {
  .ribbonTitle {
    height: 6rem;
    font-size: 2.7rem;
  }
}

.datePeriod {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #710c21;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin: 3rem auto 3rem;
  gap: 0.5rem;
}
@media (min-width: 741px) {
  .datePeriod {
    flex-wrap: nowrap;
    margin: 1.5rem auto 4.5rem;
    gap: 1.5rem;
  }
}
.datePeriod__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
@media (min-width: 741px) {
  .datePeriod__date {
    gap: 0.8rem;
  }
}
.datePeriod__year {
  font-size: 1.5rem;
  font-weight: bold;
}
.datePeriod__year--type2 {
  color: #d3446b;
}
@media (min-width: 741px) {
  .datePeriod__year {
    font-size: 2.4rem;
  }
}
.datePeriod__day {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
.datePeriod__day--type2 {
  color: #d3446b;
}
@media (min-width: 741px) {
  .datePeriod__day {
    font-size: 4.8rem;
  }
}
.datePeriod__time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.datePeriod__day-of-week {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin: 0.5em 0 0.5em -0.5em;
  letter-spacing: 0.1em;
  transform: rotate(90deg);
}
.datePeriod__day-of-week--type2 {
  color: #d3446b;
}
@media (min-width: 741px) {
  .datePeriod__day-of-week {
    font-size: 1.8rem;
    margin: 0.5em 0 0.5em -0.5em;
  }
}
.datePeriod__tilde {
  font-size: 2rem;
  font-weight: bold;
}
.datePeriod__tilde--type2 {
  color: #d3446b;
}
@media (min-width: 741px) {
  .datePeriod__tilde {
    font-size: 3.2rem;
  }
}

.attentionText-wrapper {
  margin-top: 5%;
}

.attentionText {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  /* スマホ等で改行された場合、2行目以降の頭を1文字分下げる（※の下にテキストがこないようにする） */
  padding-left: 1.2em; /* &__mark の margin-right: 0.2em を考慮して少し広めに */
  text-indent: -1.2em;
}
@media (min-width: 741px) {
  .attentionText {
    font-size: 1.92rem;
    margin-bottom: 0.8rem;
  }
}
.attentionText__mark {
  margin-right: 0.2em;
}
.attentionText__content a {
  color: inherit;
  text-underline-offset: 0.2em; /* 下線との余白を調整 */
}

.itemBox {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.itemBox {
  /* 横 margin 0 でも見出しだけ中央（他の子の横幅は従来どおり 100% 相当に維持） */
}
.itemBox > .itemBox__title--type3 {
  align-self: center;
}
.itemBox__title {
  width: 34rem;
  text-align: center;
  color: #710c21;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.2rem 0;
  margin: 0 auto 0rem;
}
@media (min-width: 741px) {
  .itemBox__title {
    width: 55rem;
    font-size: 2.72rem;
    padding: 0.32rem 0;
    margin-bottom: 3.2rem;
  }
}
.itemBox__title--type3 {
  border: none;
  width: 80%;
  max-width: 100%;
}
@supports (width: 1cqi) {
  .itemBox__title--type3 {
    width: 80cqi;
    max-width: none; /* 80cqi が親より広い場合も main-container__inner 比 80% を優先 */
  }
}
.itemBox__title--type3 {
  background-color: #FFFFFF;
  color: #710c21;
  padding: 0; /* 小数点のピクセルによる滲みを防ぐためpaddingは0に */
  margin: 3.5rem 0 3rem;
  font-size: 2.1rem;
  font-weight: bold;
  position: relative;
  height: 3.2rem; /* 高さを3.2rem（32px）に固定して小数をなくす */
  display: flex; /* テキストを上下中央に配置するためFlexboxを使用 */
  align-items: center;
  justify-content: center;
  line-height: 1; /* 高さを綺麗に計算するために1にする */
}
@media (min-width: 741px) {
  .itemBox__title--type3 {
    padding: 0;
    height: 5.8rem; /* PC時の高さを固定 */
    margin: 6rem 0 6rem;
    font-size: 3.36rem;
  }
}
.itemBox__title--type3::before, .itemBox__title--type3::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2rem; /* 線の太さ */
  background-color: #710c21;
}
.itemBox__title--type3::before {
  top: -0.6rem; /* 上の線（白い背景との間に0.4remの隙間ができる） */
}
@media (min-width: 741px) {
  .itemBox__title--type3::before {
    top: -0.8rem; /* PC時は隙間を少し広く */
    height: 0.3rem;
  }
}
.itemBox__title--type3::after {
  bottom: -0.6rem; /* 下の線（白い背景との間に0.4remの隙間ができる） */
}
@media (min-width: 741px) {
  .itemBox__title--type3::after {
    bottom: -0.8rem;
    height: 0.3rem;
  }
}
.itemBox__title--type3--pink {
  color: #d3446b;
}
.itemBox__title--type3--pink::before, .itemBox__title--type3--pink::after {
  background-color: #d3446b;
}
.itemBox__text {
  text-align: center;
  color: #710c21;
}
.itemBox__text + .itemBox__text {
  margin-top: 1.5rem;
}
@media (min-width: 741px) {
  .itemBox__text + .itemBox__text {
    margin-top: 2.4rem;
  }
}
.itemBox__text > span {
  display: inline-block;
}
@media (min-width: 741px) {
  .itemBox__text > span {
    margin-top: 0.96rem;
  }
}
.itemBox__text--type2 {
  color: #d3446b;
}

.w100 {
  width: 100%;
}

.w100-center {
  width: 100%;
  margin: 0 auto;
}

.w90-center {
  width: 90%;
  margin: 0 auto;
}
.w90-center img {
  width: 100%;
  height: auto;
  display: block;
}

.w80-center {
  width: 80%;
  margin: 0 auto;
}
.w80-center img {
  width: 100%;
  height: auto;
  display: block;
}

.w70-center {
  width: 70%;
  margin: 0 auto;
}
.w70-center img {
  width: 100%;
  height: auto;
  display: block;
}

.w60-center {
  width: 60%;
  margin: 0 auto;
}
.w60-center img {
  width: 100%;
  height: auto;
  display: block;
}

.mb-30 {
  margin-bottom: 3.5rem;
}
@media (min-width: 741px) {
  .mb-30 {
    margin-bottom: 3.5rem;
  }
}

.mb-24 {
  margin-bottom: 2.4rem;
}
@media (min-width: 741px) {
  .mb-24 {
    margin-bottom: 3.2rem;
  }
}

.mb-20 {
  margin-bottom: 2rem;
}
@media (min-width: 741px) {
  .mb-20 {
    margin-bottom: 3.5rem;
  }
}

.locatoneBox {
  align-items: stretch;
}
.locatoneBox__title {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media (min-width: 741px) {
  .locatoneBox__title {
    margin-bottom: 3.2rem;
  }
}
.locatoneBox__title img {
  width: 100%;
  max-width: 440px;
}
@media (min-width: 741px) {
  .locatoneBox__title img {
    max-width: 360px;
  }
}
.locatoneBox__text {
  width: 90%;
  margin: 0 auto;
  line-height: 1.8;
  color: #000000;
  font-weight: 500;
  font-size: 1.45rem;
  padding: 0 1.5rem;
  text-align: left;
}
@media (min-width: 741px) {
  .locatoneBox__text {
    font-size: 2rem;
    margin-bottom: 4rem;
    padding: 0 3rem;
  }
}
.locatoneBox__notes {
  width: 80%;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 741px) {
  .locatoneBox__notes {
    margin-bottom: 4rem;
    padding: 0 3rem;
  }
}
.locatoneBox__notes .attentionText {
  width: fit-content;
  margin: 0 0 rem;
  font-size: 1.2rem;
  color: #000000;
  font-weight: 500;
  text-align: left;
  padding-left: 2.2em;
  text-indent: -2.2em;
}
@media (min-width: 741px) {
  .locatoneBox__notes .attentionText {
    font-size: 1.8rem;
  }
}
.locatoneBox__notes--spaced {
  width: 90%;
  max-width: 100%;
  align-items: flex-start;
}
.locatoneBox__notes--spaced .attentionText {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.locatoneBox__btn {
  text-align: center;
  width: 90%;
}
@media (min-width: 741px) {
  .locatoneBox__btn {
    width: 70%;
  }
}
.locatoneBox__btn a {
  display: inline-block;
  width: 100%;
  transition: opacity 0.3s;
}
.locatoneBox__btn a:hover {
  opacity: 0.8;
}
.locatoneBox__btn a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.notesBox {
  height: auto;
  max-height: 15rem;
  width: 90%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  overflow-y: auto;
  border-radius: 0.7rem;
  border: solid 2px #f19db5;
  font-size: 1.4rem;
  background-color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (min-width: 741px) {
  .notesBox {
    width: 90%;
    height: auto;
    padding: 1.6rem;
    font-size: 2.24rem;
    max-height: 24rem;
    margin-bottom: 2.4rem;
  }
}
.notesBox::-webkit-scrollbar {
  width: 1.1rem;
}
.notesBox::-webkit-scrollbar-thumb {
  background-color: #f19db5;
  border-radius: 1rem;
  border: 0.3rem solid transparent;
  background-clip: padding-box;
}
.notesBox::-webkit-scrollbar-track {
  background-color: #FFFFFF;
  border-radius: 1rem;
  border: 0.3rem solid transparent;
  background-clip: padding-box;
  margin: 1rem 0;
}
.notesBox__overview {
  margin-bottom: 1.6rem;
}
@media (min-width: 741px) {
  .notesBox__overview {
    margin-bottom: 2.56rem;
  }
}
.notesBox__itemBox {
  margin-bottom: 1.6rem;
}
@media (min-width: 741px) {
  .notesBox__itemBox {
    margin-bottom: 2.56rem;
  }
}
.notesBox__itemBox:last-child {
  margin-bottom: 0;
}
.notesBox__itemName {
  margin-left: -0.6em;
}
.notesBox__content > li {
  overflow-wrap: break-word;
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 400;
}
@media (min-width: 741px) {
  .notesBox__content > li {
    font-size: 1.8rem;
  }
}
.notesBox--type2 {
  border-color: #d3446b;
  background-color: #FFFFFF;
}
.notesBox--type2::-webkit-scrollbar-thumb {
  background-color: #d3446b;
}
.notesBox--type2::-webkit-scrollbar-track {
  background-color: #f2ede4;
}
.notesBox--type2 .notesBox__content > li {
  color: #d3446b;
}

.stamp__terms {
  width: 90%;
  margin: 0 auto 1.5rem;
}
@media (min-width: 741px) {
  .stamp__terms {
    margin: 0 auto 2.5rem;
  }
}
.stamp__terms img {
  width: 100%;
  height: auto;
  display: block;
}
.stamp__terms--locatone-small img {
  width: 85%;
  margin: 0 auto;
  display: block;
}

/* stamprally */
.stamprally {
  display: flex;
  width: 90%;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 3.2rem;
}
@media (min-width: 741px) {
  .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 {
  background-image: url("../img/background-inquery.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}
.inquiry__inner {
  color: #710c21;
  margin: 0 auto;
  margin-top: -1px;
  max-width: 320px;
  padding: 3rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 741px) {
  .inquiry__inner {
    width: 44%;
    min-width: 520px;
  }
}
.inquiry__text {
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 741px) {
  .inquiry__text {
    font-size: 2.24rem;
  }
}
.inquiry__text > a {
  color: #710c21;
  text-underline-offset: 0.2em; /* 下線との余白を調整 */
}
.inquiry__text--title {
  margin-top: 0;
  margin-bottom: 4rem;
  font-weight: bold;
  text-align: center;
  display: grid;
  padding: 1.4rem 0;
  background-image: radial-gradient(circle at center, #710c21 1px, transparent 1px), radial-gradient(circle at center, #710c21 1px, transparent 1px);
  background-size: 8px 2px;
  background-position: left top, left bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 741px) {
  .inquiry__text--title {
    display: block;
    margin: 0 -66px 5rem;
    padding: 2.24rem 0;
  }
}
.inquiry__text--title > span {
  display: inline-block;
}
.inquiry__text--note {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}
@media (min-width: 741px) {
  .inquiry__text--note {
    font-size: 1.6rem;
  }
}
.inquiry__text--note > span {
  display: inline-block;
}
.inquiry__ribbon {
  width: 70%;
  margin: 0 auto 2.5rem;
  position: static;
  left: auto;
  transform: none;
}
.inquiry__ribbon .ribbonTitle {
  width: 100%;
  max-width: none;
}
@media (min-width: 741px) {
  .inquiry__ribbon {
    margin-bottom: 3.5rem;
  }
}
.inquiry__email {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}
@media (min-width: 741px) {
  .inquiry__email {
    font-size: 1.8rem;
    margin-bottom: 5rem;
  }
}
.inquiry__date {
  margin-top: 0;
  margin-bottom: 3rem;
}
@media (min-width: 741px) {
  .inquiry__date {
    margin-top: 0;
    margin-bottom: 4rem;
  }
}
@media (min-width: 741px) {
  .inquiry__date.datePeriod {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem auto 3rem;
  }
}

/* stampSpots */
.stampSpotsWrapper {
  margin-bottom: 3rem;
}
@media (min-width: 741px) {
  .stampSpotsWrapper {
    margin-bottom: 4.8rem;
  }
}

.stampSpots {
  background-color: #f2ede4;
  padding: 1.5rem;
  border: 3px solid #710c21;
}
@media (min-width: 741px) {
  .stampSpots {
    padding: 2.5rem;
  }
}
.stampSpots__content {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
}
@media (min-width: 741px) {
  .stampSpots__content {
    padding: 3rem 2.5rem;
  }
}
.stampSpots__content--no-mt {
  margin-top: 0 !important;
}
.stampSpots__box {
  margin-bottom: 2rem;
}
@media (min-width: 741px) {
  .stampSpots__box {
    margin-bottom: 3rem;
  }
}
.stampSpots__box:last-of-type {
  margin-bottom: 0;
}
.stampSpots__category {
  margin-bottom: 1.5rem;
  color: #eb6d9a;
  font-weight: 500;
  font-size: 1.5rem;
  border-bottom: 1px solid #eb6d9a;
  padding-bottom: 0.5rem;
}
@media (min-width: 741px) {
  .stampSpots__category {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    padding-bottom: 0.8rem;
  }
}
.stampSpots__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1rem;
}
@media (min-width: 741px) {
  .stampSpots__list {
    column-gap: 2rem;
    row-gap: 1.5rem;
  }
}
.stampSpots__list > li {
  width: 100%;
  border-bottom: 1px solid #eb6d9a;
  margin-bottom: 0;
  background-color: transparent;
}
.stampSpots__list > li > button {
  border: none;
  outline: none;
  padding: 0.5rem 0.2rem;
  appearance: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
}
@media (min-width: 741px) {
  .stampSpots__list > li > button {
    padding: 0.8rem 0.5rem;
    font-size: 2rem;
  }
}
.stampSpots__list > li > button:focus-visible {
  outline: auto;
}
.stampSpots__list > li > button > img {
  height: 1rem;
  width: auto;
}
@media (min-width: 741px) {
  .stampSpots__list > li > button > img {
    height: 1.4rem;
  }
}
.stampSpots__list > li > button > .link-btn__arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
  width: 2.4rem;
  height: 1rem;
}
@media (min-width: 741px) {
  .stampSpots__list > li > button > .link-btn__arrow {
    width: 3.6rem;
    height: 1.4rem;
  }
}

.logo-bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 2.5rem 2.2rem;
  background-color: #ffffff;
  border-block: 0.5px solid #d3d5db;
}
.logo-bnr > img {
  display: block;
  width: 100%;
  max-width: calc((100% - 1.2rem) / 2);
  height: auto;
  object-fit: contain;
}
@media (min-width: 741px) {
  .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: 741px) {
  .footer {
    font-size: 1.5rem;
    padding: 1rem 6.72rem;
  }
}

/* TOPへ戻るボタン関連 */
/* TOPへ戻るボタン関連 終わり */
/* ダイアログ関連 */
#dialog {
  padding: 3.6rem 1rem 4rem;
  text-align: center;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin: auto;
  background: #FFFFFF;
}
@media (min-width: 741px) {
  #dialog {
    padding: 3.6rem 1rem 7rem;
  }
}
#dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
#closer {
  position: absolute;
  top: 6px;
  right: 15px;
  width: 20px;
  aspect-ratio: 1;
  font-size: 15px;
  color: #282c34;
  background: none;
  border: none;
  padding: 0px;
  font-size: 2.2rem;
  /* iOS などタッチ環境でモーダル表示時にフォーカスが当たると UA が青枠を出すのを抑える */
  -webkit-tap-highlight-color: transparent;
}
#closer:hover {
  color: #4b5361;
  cursor: pointer;
}
#closer:focus {
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  #closer:focus-visible {
    outline: auto;
  }
}

#spot-link-wrap {
  font-size: 1rem;
}
@media (min-width: 741px) {
  #spot-link-wrap {
    font-size: 0.9em;
  }
}

#spot-image {
  max-width: 900px;
}

/* ダイアログ関連 終わり */
/* Swiper */
.swiper {
  margin: 2rem 0 1.5rem;
  padding-bottom: 40px; /* ページネーション用の余白 */
}
@media (min-width: 741px) {
  .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: 740px) {
  .swiper-slide {
    width: 85%;
  }
}
/* アクティブでないスライドを少し薄くして、中央のスライドを際立たせる（任意） */
.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.6 !important;
}

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

.ad-swiper {
  margin: 2rem 0 0;
}
@media (min-width: 741px) {
  .ad-swiper {
    margin: 2rem 0 0;
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 740px) {
  .ad-swiper .swiper-slide {
    width: 80%;
    transition: opacity 0.3s ease;
  }
  .ad-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.55 !important;
  }
}

.prize-swiper {
  width: 100%;
  margin: -1.5rem 0 1.2rem;
  padding: 2rem 0 0;
  overflow: hidden;
}
.prize-swiper .swiper-wrapper {
  align-items: center;
}
.prize-swiper .swiper-slide {
  width: 30%;
  opacity: 1 !important;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 740px) {
  .prize-swiper .swiper-slide {
    width: 34%;
  }
}
.swiper-pagination-bullet-active {
  background-color: #eb6d9a !important; /* アクティブ時の色（例：濃いピンク） */
}

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

.swiper-button-prev,
.swiper-button-next {
  color: #eb6d9a;
}

@media screen and (max-width: 740px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}
/* ハンバーガーメニュー */
.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;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-menu__inner {
  width: 100%;
  min-height: 100%;
  padding-top: var(--banner-height, 0px);
}
@media (min-width: 741px) {
  .nav-menu__inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
.nav-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  max-width: 45rem;
  display: flex;
  flex-direction: column;
  opacity: 0.92;
}
.nav-menu__item {
  padding: 1.5rem 2rem;
}
@media (min-width: 741px) {
  .nav-menu__item:nth-child(2n) {
    border-right: none;
  }
}
.nav-menu__item .nav-menu__campaign-img {
  width: 100%;
  max-width: 9rem;
  margin: 0 auto;
}
@media (min-width: 741px) {
  .nav-menu__item .nav-menu__campaign-img {
    max-width: 12rem;
  }
}
.nav-menu__img {
  width: 100%;
  max-width: 45rem;
  height: auto;
  display: block;
}
.nav-menu__link {
  display: block;
  text-align: center;
  text-decoration: none;
}
.nav-menu__link img:not(.nav-menu__campaign-img) {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 8rem;
  height: auto;
}
@media (min-width: 741px) {
  .nav-menu__link img:not(.nav-menu__campaign-img) {
    width: 100%;
    max-width: 10rem;
  }
}
.nav-menu__text {
  display: block;
  margin-top: 0.8rem;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #d3446b;
}
@media (min-width: 741px) {
  .nav-menu__text {
    font-size: 3rem;
  }
}
.nav-menu__text--underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.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: 741px) {
  .nav-btn {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.nav-btn__icon {
  display: block;
  height: auto;
}
.nav-btn__icon--menu {
  width: 2.5rem; /* 枠 3.2rem 比で少し小さく */
}
@media (min-width: 741px) {
  .nav-btn__icon--menu {
    width: 3.6rem; /* 枠 4.8rem 比で少し小さく */
  }
}
.nav-btn__icon--close {
  display: none;
  width: 2rem; /* menu 比で小さく（3.2rem 枠内） */
}
@media (min-width: 741px) {
  .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;
}
