@charset "UTF-8";
/* font定義 */
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/notoserifjp/notoserifjp-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/notoserifjp/notoserifjp-bold.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: url("../webfonts/notosansjp/notosansjp-light.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-light.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-light.otf") format("opentype");
}
@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: 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");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: normal;
  src: url("../webfonts/yakuhanjp/yakuhanjp-regular.woff2") format("woff2"), url("../webfonts/yakuhanjp/yakuhanjp-regular.otf") format("opentype");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: Bold;
  src: url("../webfonts/yakuhanjp/yakuhanjp-bold.woff2") format("woff2"), url("../webfonts/yakuhanjp/yakuhanjp-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 {
  color: #0071bc !important;
}
.text-color-link > img {
  width: 1em;
  margin-left: 0.4rem;
  position: relative;
  top: 0.1rem;
}
@media (min-width: 751px) {
  .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 Serif JP", serif;
  font-weight: 700;
  font-feature-settings: "frac" 0;
  color: #333333;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  font-size: 1.5rem;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.6s ease; /* ふわっと表示 */
}
@media (min-width: 751px) {
  .wrapper {
    font-size: 2.4rem; /* 1.5rem * 1.6 */
  }
}

.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 {
  flex: 0 1 auto;
  max-width: 28rem;
  min-width: 0;
}
@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: 100%;
  height: auto;
}

/* main-container */
.main-container {
  scroll-behavior: smooth;
  background-image: url("../img/background-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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 */
}
.main-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.main-container {
  /* SP時は縦積みに戻す */
}
@media (max-width: 750px) {
  .main-container {
    flex-direction: column;
  }
}
.main-container__inner {
  /* itemBox__title--type3 の幅を「この要素の80%」に揃えるため（container 単位: cqi） */
  container-type: inline-size;
  margin: 0 auto;
  max-width: 950px;
  width: 100%;
  min-height: 100%; /* コンテンツが少ない時も背景を白く保つ */
  /* 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;
}
@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;
  }
}
@media (min-width: 1440px) {
  .main-container__left {
    align-items: center;
    padding: 1rem;
  }
}
@media (min-width: 1800px) {
  .main-container__left {
    padding: 4rem;
  }
}
.main-container__left__inner {
  width: 100%;
  max-width: 450px;
}
.main-container__left__inner img {
  width: 100%;
  height: auto;
}
.main-container__right {
  padding: 3rem;
}
@media (min-width: 1440px) {
  .main-container__right {
    align-items: center;
  }
}
.main-container__right__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.main-container__right__inner img {
  width: 100%;
  height: auto;
}
.main-container__right__inner .live-logo {
  width: 100%;
  max-width: none;
  margin-top: 5rem;
}
.main-container__right__inner .ico-x {
  width: 100%;
  margin-top: 5rem;
}
.main-container__right__inner .ico-top {
  width: 100%;
  margin-top: 5rem;
}
.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%;
  display: flex;
  justify-content: center;
}
.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;
}

#content_0-1 {
  margin-top: -9rem;
}
@media (min-width: 751px) {
  #content_0-1 {
    margin-top: -15.5rem;
  }
}

#content_1 {
  background-color: #e1c9d5;
  padding-top: 9rem;
}
@media (min-width: 751px) {
  #content_1 {
    padding-top: 16rem;
  }
}

#content_1-2 {
  background-color: #e1c9d5;
  margin: -10px 0;
}

#content_2 {
  background-color: #f2ede4;
  padding-top: 10px;
}

#content_2-3 {
  background-color: #f2ede4;
  margin: -10px 0;
}

#content_3 {
  padding-top: 10px;
  background-color: #e1c9d5;
}

#content_3-4 {
  background-color: #e1c9d5;
  margin: -10px 0;
}

#content_4 {
  padding-top: 10px;
  background-color: #F2EEE6;
}

.contentBox__title {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 90%;
  margin: 0 auto 2.4rem;
  min-height: 4.8rem;
  padding: 1rem 2.8rem;
  box-sizing: border-box;
  background-color: transparent;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: #ffffff;
  font-family: "Noto Serif JP", 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: 751px) {
  .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: 751px) {
  .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: 751px) {
  .contentBox__full-img {
    margin: 0 0 3.2rem;
  }
}
.contentBox__full-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.ribbonTitleWrapper {
  text-align: center;
  width: 70%;
  margin: 0 0 2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 751px) {
  .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: 751px) {
  .ribbonTitle {
    height: 6rem;
    font-size: 2.7rem;
  }
}

.datePeriod {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #710c21;
  font-family: "Noto Serif JP", serif;
  margin: 3rem auto 3rem;
  gap: 0.5rem;
}
@media (min-width: 751px) {
  .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: 751px) {
  .datePeriod__date {
    gap: 0.8rem;
  }
}
.datePeriod__year {
  font-size: 1.5rem;
  font-weight: bold;
}
.datePeriod__year--type2 {
  color: #d3446b;
}
@media (min-width: 751px) {
  .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: 751px) {
  .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: 751px) {
  .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: 751px) {
  .datePeriod__tilde {
    font-size: 3.2rem;
  }
}

.attentionText {
  color: #710c21;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  text-align: left;
  font-weight: bold;
  /* スマホ等で改行された場合、2行目以降の頭を1文字分下げる（※の下にテキストがこないようにする） */
  padding-left: 1.2em; /* &__mark の margin-right: 0.2em を考慮して少し広めに */
  text-indent: -1.2em;
}
@media (min-width: 751px) {
  .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: 751px) {
  .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%;
  box-sizing: border-box;
}
@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: 751px) {
  .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: 751px) {
  .itemBox__title--type3::before {
    top: -0.8rem; /* PC時は隙間を少し広く */
    height: 0.3rem;
  }
}
.itemBox__title--type3::after {
  bottom: -0.6rem; /* 下の線（白い背景との間に0.4remの隙間ができる） */
}
@media (min-width: 751px) {
  .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: 751px) {
  .itemBox__text + .itemBox__text {
    margin-top: 2.4rem;
  }
}
.itemBox__text > span {
  display: inline-block;
}
@media (min-width: 751px) {
  .itemBox__text > span {
    margin-top: 0.96rem;
  }
}
.itemBox__text--type2 {
  color: #d3446b;
}

.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: 751px) {
  .mb-30 {
    margin-bottom: 3.5rem;
  }
}

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

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

.locatoneBox {
  align-items: center;
}
.locatoneBox__title {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media (min-width: 751px) {
  .locatoneBox__title {
    margin-bottom: 3.2rem;
  }
}
.locatoneBox__title img {
  width: 100%;
  max-width: 440px;
}
@media (min-width: 751px) {
  .locatoneBox__title img {
    max-width: 360px;
  }
}
.locatoneBox__text {
  width: 90%;
  margin: 0 auto;
  line-height: 1.8;
  color: #333333;
  font-weight: bold;
  font-size: 1.45rem;
  padding: 0 1.5rem;
  text-align: left;
}
@media (min-width: 751px) {
  .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: 751px) {
  .locatoneBox__notes {
    margin-bottom: 4rem;
    padding: 0 3rem;
  }
}
.locatoneBox__notes .attentionText {
  width: fit-content;
  margin: 0 0 rem;
  font-size: 1.2rem;
  color: #333333;
  font-weight: bold;
  text-align: left;
  padding-left: 2.2em;
  text-indent: -2.2em;
}
@media (min-width: 751px) {
  .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: 751px) {
  .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 #710c21;
  font-size: 1.4rem;
  background-color: #f2ede4;
}
@media (min-width: 751px) {
  .notesBox {
    width: 80%;
    height: auto;
    padding: 1.6rem;
    font-size: 2.24rem;
  }
}
.notesBox::-webkit-scrollbar {
  width: 1.1rem;
}
.notesBox::-webkit-scrollbar-thumb {
  background-color: #710c21;
  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: 751px) {
  .notesBox__overview {
    margin-bottom: 2.56rem;
  }
}
.notesBox__itemBox {
  margin-bottom: 1.6rem;
}
@media (min-width: 751px) {
  .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: #710c21;
  font-size: 1.2rem;
}
.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: 751px) {
  .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: 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 {
  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: 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: #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: 751px) {
  .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: 751px) {
  .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: 751px) {
  .inquiry__ribbon {
    margin-bottom: 3.5rem;
  }
}
.inquiry__email {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}
@media (min-width: 751px) {
  .inquiry__email {
    font-size: 1.8rem;
    margin-bottom: 5rem;
  }
}
.inquiry__date {
  margin-top: 0;
  margin-bottom: 3rem;
}
@media (min-width: 751px) {
  .inquiry__date {
    margin-top: 0;
    margin-bottom: 4rem;
  }
}
@media (min-width: 751px) {
  .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: 751px) {
  .stampSpotsWrapper {
    margin-bottom: 4.8rem;
  }
}

.stampSpots {
  background-color: #f2ede4;
  padding: 1.5rem;
  border: 3px solid #710c21;
}
@media (min-width: 751px) {
  .stampSpots {
    padding: 2.5rem;
  }
}
.stampSpots__content {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
}
@media (min-width: 751px) {
  .stampSpots__content {
    padding: 3rem 2.5rem;
  }
}
.stampSpots__box {
  margin-bottom: 2rem;
}
@media (min-width: 751px) {
  .stampSpots__box {
    margin-bottom: 3rem;
  }
}
.stampSpots__box:last-of-type {
  margin-bottom: 0;
}
.stampSpots__category {
  margin-bottom: 1.5rem;
  color: #710c21;
  font-weight: bold;
  font-size: 1.5rem;
  border-bottom: 1px solid #710c21;
  padding-bottom: 0.5rem;
}
@media (min-width: 751px) {
  .stampSpots__category {
    margin-bottom: 2rem;
    font-size: 2rem;
    padding-bottom: 0.8rem;
  }
}
.stampSpots__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 1rem;
}
@media (min-width: 751px) {
  .stampSpots__list {
    column-gap: 2rem;
    row-gap: 1.5rem;
  }
}
.stampSpots__list > li {
  width: 100%;
  border-bottom: 1px solid #e1c9d5;
  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: #710c21;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.3rem;
}
@media (min-width: 751px) {
  .stampSpots__list > li > button {
    padding: 0.8rem 0.5rem;
    font-size: 1.8rem;
  }
}
.stampSpots__list > li > button:focus-visible {
  outline: auto;
}
.stampSpots__list > li > button > img {
  height: 1rem;
  width: auto;
}
@media (min-width: 751px) {
  .stampSpots__list > li > button > img {
    height: 1.4rem;
  }
}

.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;
  }
}

/* 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: 751px) {
  #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;
}
#closer:hover {
  color: #4b5361;
  cursor: pointer;
}
#closer:focus-visible {
  outline: auto;
}

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

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

/* ダイアログ関連 終わり */
/* Swiper */
.swiper {
  margin: 0 0 1.5rem;
  padding-bottom: 40px; /* ページネーション用の余白 */
}
@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 {
  color: #d3446b;
}

@media screen and (max-width: 750px) {
  .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;
}
@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);
}
@media (min-width: 751px) {
  .nav-menu__inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
.nav-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: #f4eaef;
  display: flex;
  flex-direction: column;
  opacity: 0.92;
}
@media (min-width: 751px) {
  .nav-menu__list {
    width: 70%;
  }
}
.nav-menu__item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #cc7a9f;
}
@media (min-width: 751px) {
  .nav-menu__item {
    padding: 2rem;
    border-right: 1px solid #eee;
  }
  .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: 751px) {
  .nav-menu__item .nav-menu__campaign-img {
    max-width: 12rem;
  }
}
.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: 751px) {
  .nav-menu__link img:not(.nav-menu__campaign-img) {
    width: 100%;
    max-width: 20rem;
  }
}
.nav-menu__text {
  display: block;
  margin-top: 0.8rem;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #d3446b;
}
@media (min-width: 751px) {
  .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: 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;
}

/*# sourceMappingURL=style.css.map */
