@charset "UTF-8";

/*************
FMT
*************/
.info_wrap,
.footer_container {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  font-weight: 400;
}
img {
  display: block;
  width: 100%;
}
.content_wrap {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-color);
  margin-top: 66px;
  background-color: var(--bg-color);
  width: 100%;
  position: relative;
  z-index: 0;
}
a:hover img {
  opacity: 1;
}

figure {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
figcaption .caption {
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  font-size: 12px;
}
@media (min-width: 751px) {
  .content_wrap {
    margin-top: 90px;
  }
}
:root {
  --text-color: #000000;
  --primary-color: #2ebcad;
  --bg-color: #ffffff;
  --red-color: #ee0000;
  --accent-color: #ffff00;
  --carbo-font: "Cardo", serif;
  --serif-font: "Noto Serif JP", serif;
}
/*アキ*/
.mgt48 {
  margin-top: 48px !important;
}
.mgt32 {
  margin-top: 32px !important;
}
.mgt24 {
  margin-top: 24px !important;
}
.mgt16 {
  margin-top: 16px !important;
}
.mgt8 {
  margin-top: 8px !important;
}
.mgt4 {
  margin-top: 4px !important;
}
.mgt0 {
  margin-top: 0 !important;
}

/*テキストサイズ*/
.annotation {
  font-size: 14px;
}
.smallest {
  font-size: 12px;
}
.larger {
  font-size: 1.5em;
}
.smaller {
  font-size: 0.75em;
}

/* テキスト揃え */
.center {
  text-align: center;
}
.auto_center {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.ib {
  display: inline-block;
}

/* テキストカラー */
.fcPrimary {
  color: var(--primary-color);
}
.fcRed {
  color: var(--red-color);
}
.fcWhite {
  color: #fff;
}
.fcYellow {
  color: #ff0;
}

/* テキスト汎用 */
.bold {
  font-weight: bold;
}
.text_link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}
.marker {
  background: linear-gradient(transparent 50%, var(--accent-color) 50%);
}
.relative_wrap {
  position: relative;
}

/* 箇条書き */
ul.text_list li,
p.text_list {
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}
ul.text_list li + li {
  margin-top: 2px;
}
ul.text_list.annotation li {
  font-size: 14px;
}
@media (min-width: 751px) {
  .red_box {
    font-size: 22px;
  }
  .pc_center {
    text-align: center;
  }
}
/* js-fadeUp */
.js-fadeUp {
  transform: translateY(10px);
  opacity: 0;
  transition: all 1s;
}
.js-fadeUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}
/*************
汎用
*************/
/* ボイストック枠 */
.VoiStock_btn {
  display: block;
  max-width: 400px;
  margin: 32px auto 16px;
}
.VoiStock_btn.comingSoon {
  pointer-events: none;
}
.qr_wrap {
  display: none;
}
@media (min-width: 751px) {
  .qr_wrap {
    padding: 16px;
    margin: 32px auto 16px;
    border: 2px solid var(--primary-color);
    display: flex;
    gap: 16px;
    border-radius: 16px;
    max-width: 480px;
    align-items: center;
  }
  .qr_text {
    flex: 1;
  }
  .qr_text_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .qr_text_hd {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 20px;
    color: #fff;
    background-color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 40px;
    text-align: center;
  }
  .qr_text p {
    text-align: left;
  }
  .qr_img {
    width: 100px;
    position: relative;
    padding: 4px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background-color: #fff;
  }
  .qr_img .comingSoon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }
}
/* アコーディオン */
.acc_body {
  display: none;
}
.acc_btn {
  font-weight: bold;
  width: fit-content;
  margin: 32px auto 0;
  color: var(--text-color);
  position: relative;
  padding-right: 28px;
  cursor: pointer;
  transition: all 0.3s;
}
.acc_btn span {
  position: absolute;
  background-color: #fff;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.acc_btn span::before,
.acc_btn span::after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.acc_btn span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.acc_btn.open span::before {
  transform: translate(-50%, -50%);
}
/* ご注意事項アコーディオン */
.caution_acc .acc_btn {
  padding: 4px 40px 6px 20px;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: #fff;
}
.caution_acc .acc_btn span {
  right: 10px;
}
.caution_acc .acc_body {
  padding: 10px;
  border-radius: 8px;
  margin-top: 16px;
  border: 2px solid var(--primary-color);
}
.caution_head {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}
.text_list + .caution_head {
  margin-top: 8px;
}
@media (min-width: 751px) {
  .caution_acc .acc_body {
    padding: 20px;
    border-radius: 16px;
  }
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
  .intro-content__list li {
    transition-duration: 0.3s;
  }
  .intro-content__list li:hover {
    transform: translateY(8px);
  }
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
終了処理
*************/

.red_box {
  font-weight: bold;
  border: 2px solid var(--red-color);
  color: var(--red-color);
  font-size: 18px;
  text-align: center;
  padding: 8px;
  margin: 16px auto 0;
  max-width: 800px;
  width: calc(100% - 40px);
  background-color: #fff;
}
.VoiStock_btn.sign-off-btn {
  pointer-events: none;
  position: relative;
}
.sign-off {
  background-color: rgba(255, 255, 255, 0.8);
  color: #ee0000;
  border: #ee0000 2px solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 16px 0;
}
@media (min-width: 751px) {
  /* 終了処理 QR枠用 */
  .sign-off-pc {
    background-color: rgba(255, 255, 255, 0.9);
    color: #ee0000;
    border: #ee0000 2px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
  }
}

/*************
footer
*************/
/*その他の推し旅プラン*/
.info_wrap {
  margin: 0 auto;
  padding: 8px 40px 20px;
  position: relative;
  background-color: #fff;
}
.oshitabi_btn {
  display: block;
  border: 4px solid #000;
  background-color: #fff;
  max-width: 740px;
  margin: 32px auto 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  border-radius: 10px;
  position: relative;
  padding: 10px 30px 10px 5px;
  font-size: 18px;
  transition: all 0.3s;
}
.oshitabi_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  height: 12px;
  width: 12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.oshitabi_btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 4px solid var(--primary-color);
}
.oshitabi_btn:hover::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.credit {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
}

.footer_container {
  position: relative;
  z-index: 100;
  background-color: #fff;
  padding-top: 1px;
}
@media (min-width: 751px) {
  .info_wrap {
    margin: 0 auto;
    padding: 8px 20px 100px;
  }
  .oshitabi_btn {
    padding: 15px;
    font-size: 20px;
  }
}

/*************
メディアクエリ
*************/
@media (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}

/*==============================
# final fantasy
==============================*/
html {
  font-size: 2.667vw;
}
@media (min-width: 751px) {
  html {
    font-size: 125%;
  }
}

@media (min-width: 751px) {
  .content_wrap::before {
    content: "";
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 90px);
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
}

.content {
  position: relative;
  box-sizing: border-box;
}

.content * {
  box-sizing: border-box;
}

.content__inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
}

.period {
  margin-top: -2rem;
}

.period__img {
  width: 100%;
  max-width: 34.5rem;
  margin: 0 auto;
}

.intro {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-image: url(../img/bg_net.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
  margin-top: -3rem;
}

.intro-title {
  text-align: center;
  color: #cbcbcb;
  position: relative;
}

.intro-title__en {
  font-family: var(--carbo-font);
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.intro-title__ja {
  font-family: var(--serif-font);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.intro-title__deco {
  width: 100%;
  max-width: 16.6rem;
  margin: 0 auto;
}

.intro-prologue {
  position: relative;
  z-index: 1;
}

.intro-prologue::before {
  content: "";
  position: absolute;
  top: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34.5rem;
  height: 35rem;
  border-radius: 50%;
  background-color: #fff;
  z-index: 0;
  filter: blur(16px);
}

.intro-prologue__text {
  font-family: var(--serif-font);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  color: #6e6e6e;
  position: relative;
  margin-top: 3rem;
}

.intro-content {
  margin-top: 6.8rem;
}

.intro-content__inner {
  width: 100%;
}

.intro-prologue__deco01 {
  position: absolute;
  width: 23.8rem;
  top: 1rem;
  left: 0.5rem;
  z-index: -1;
}

.intro-prologue__deco02 {
  position: absolute;
  width: 11.8rem;
  top: 0.5rem;
  right: -4.4rem;
  z-index: -1;
}

.intro-prologue__deco03 {
  position: absolute;
  width: 6rem;
  top: 16.5rem;
  left: -1.7rem;
  z-index: 0;
}

.intro-prologue__deco04 {
  position: absolute;
  width: 8.5rem;
  top: 18rem;
  right: -3.3rem;
  z-index: 0;
}

.intro-prologue__deco05 {
  position: absolute;
  width: 10.5rem;
  top: 31.4rem;
  left: -0.2rem;
  z-index: 0;
}

.intro-prologue__deco06 {
  position: absolute;
  width: 25.2rem;
  top: 31.3rem;
  right: -13.1rem;
  z-index: 0;
}

.voice {
  position: relative;
  background-color: #dff5fd;
  background-image: url(../img/bg_net-wh.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
}

.voice__num {
  width: 8.1rem;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
}

.voice__inner {
  padding: 4.2rem 1.5rem 7.4rem;
}

.voice-heading {
  position: relative;
  padding-top: 2.83rem;
  padding-bottom: 3.34rem;
}

.voice-heading::before,
.voice-heading::after {
  content: "";
  width: 16.7rem;
  height: 1.9rem;
  background-image: url(../img/voice_title-deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.voice-heading::before {
  top: 0;
}

.voice-heading::after {
  bottom: 0;
}

.voice-heading__lead {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2d7fb7;
}

.voice-heading__title {
  width: 100%;
  max-width: 30rem;
  margin-top: 1.3rem;
  margin-left: auto;
  margin-right: auto;
}

.voice__text {
  font-family: var(--serif-font);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
  line-height: 1.75;
  color: #333;
  margin-top: 3rem;
  position: relative;
  z-index: 0;
}

.voice__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31.5rem;
  height: 12rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(16px);
  z-index: -1;
}

.voice-chara {
  margin-top: 2.1rem;
}

.voice-chara__title {
  text-align: center;
}

.voice-chara__title span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(to right, #016f96, #0098ce);
}

.voice-chara__text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.43;
  text-align: center;
  color: #2d7fb7;
  margin-top: 0.3rem;
}

.voice-chara__img {
  width: 27.8rem;
  margin-top: 0.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.8rem;
}

.voice-join {
  background-color: #fff;
  border: 2px solid #02aeeb;
  padding: 0.5rem;
}

.voice-join__inner {
  border: 1px solid #02aeeb;
}

.voice-join__contents {
  position: relative;
  padding: 1.5rem 0.8rem 2.5rem;
}

.voice-join__contents::before {
  content: "";
  width: 98%;
  height: 1.2rem;
  position: absolute;
  top: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/voice_box-top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.voice-join__contents::after {
  content: "";
  width: 98%;
  height: 1.2rem;
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/voice_box-bot.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.voice-join__title {
  font-family: var(--serif-font);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #c39e47;
  padding: 0.9rem 0;
  position: relative;
}

.voice-join__title::before,
.voice-join__title::after {
  content: "";
  width: 15.6rem;
  height: 0.2rem;
  background: linear-gradient(to right, transparent 0%, #f0dda7 20%, #c6a562 50%, #f2e0ad 80%, transparent 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.voice-join__title::before {
  top: 0;
}

.voice-join__title::after {
  bottom: 0;
}

.voice-join__list {
  margin-top: 1.5rem;
}

.voice-benefits {
  margin-top: 5.8rem;
  position: relative;
  background-color: #fff;
  border: 1px solid #02aeeb;
}

.voice-benefits__title {
  display: inline-block;
  font-family: var(--serif-font);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  width: 22rem;
  background-color: #c39e47;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.voice-benefits__inner {
  padding: 5.2rem 1.4rem 3rem;
}

.voice-benefits-head {
  position: relative;
}

.voice-benefits-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23rem;
  height: 23rem;
  background-image: url(../img/v_benefits_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.voice-benefits-head__top {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.43;
  text-align: center;
  color: #1d5784;
}

.voice-benefits-head__mid {
  margin-top: 0.6rem;
  text-align: center;
}

.voice-benefits-head__mid span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(to right, #016f96, #0098ce);
}

.voice-benefits-head__bot {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1d5784;
  margin-top: 0.6rem;
}

.voice-benefits-images {
  margin-top: 8rem;
}

.voice-benefits-images__contents {
  position: relative;
}

.voice-benefits-images__tag {
  width: 9.5rem;
  position: absolute;
  top: -5rem;
  right: 0;
}

.voice-benefits-images__item {
  width: 100%;
  margin-bottom: 2rem;
}

.voice-benefits-images__note {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.voice-benefits-images__note + .voice-benefits-images__note {
  margin-top: 0.4rem;
}

.voice-benefits__list {
  margin-top: 3rem;
}

.voice-benefits-certificate {
  margin-top: 2rem;
}

.voice-benefits-certificate__btn {
  text-align: center;
}

.voice-benefits-certificate__btn.comingsoon a {
  pointer-events: none;
}

.voice-benefits-certificate__btn a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #ccc;
  text-align: left;
  padding: 1rem 0 1rem 3rem;
  width: 100%;
  background-color: #999;
  border: 0.3rem solid #fff;
  border-radius: 2.5rem;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.voice-benefits-certificate__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.2rem solid #ccc;
  border-right: 0.2rem solid #ccc;
}

.voice-benefits-certificate__list {
  margin-top: 2rem;
}

.stamp {
  position: relative;
  background-color: #def4e0;
  background-image: url(../img/bg_net-wh.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
}

.stamp__num {
  width: 6.6rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.stamp__inner {
  padding: 4rem 1.5rem;
}

.stamp-heading {
  padding-top: 2.8rem;
  padding-bottom: 3.5rem;
  position: relative;
}

.stamp-heading::before,
.stamp-heading::after {
  content: "";
  width: 16.7rem;
  height: 1.9rem;
  background-image: url(../img/stamp_title-deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.stamp-heading::before {
  top: 0;
}

.stamp-heading::after {
  bottom: 0;
}

.stamp-heading__lead {
  text-align: center;
}

.stamp-heading__lead span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0c9500;
  background: linear-gradient(to top, #c9eacc 30%, transparent 30%);
}

.stamp-heading__sub {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #15a20b;
  margin-top: 1rem;
}

.stamp-heading__title {
  margin: 1rem auto 0;
  width: 28.7rem;
}

.stamp__texts {
  margin-top: 3rem;
  position: relative;
  z-index: 0;
}

.stamp__texts::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31.5rem;
  height: 18rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(16px);
  z-index: -1;
}

.stamp__text {
  font-family: var(--serif-font);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
  color: #333;
}

.stamp__text.green {
  margin-top: 0.5rem;
  color: #0c9500;
}

.stamp__chara {
  width: 27.8rem;
  margin-top: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.8rem;
  position: relative;
}

.stamp-point {
}

.stamp-point__btn {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  background-color: #2eb922;
  border: 0.3rem solid #fff;
  border-radius: 2.5rem;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.stamp-point__btn span {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
}

.stamp-point__btn span::before,
.stamp-point__btn span::after {
  content: "";
  background-color: #2db923;
  position: absolute;
  width: 1rem;
  height: 0.2rem;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}

.stamp-point__btn span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.stamp-point__btn.open span::before {
  transform: translate(-50%, -50%);
}

.stamp-point__body {
  margin-top: 2rem;
  display: none;
}

.stamp-point__body.open {
  display: block;
}

.stamp-point__map {
  width: 100%;
}

.stamp-point__items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stamp-point-box {
  background-color: #fff;
  border: 2px solid #2db923;
  padding: 0.5rem;
}

.stamp-point-box__inner {
  border: 1px solid #2db923;
}

.stamp-point-box__contents {
  position: relative;
  padding: 1.5rem 0.8rem 2rem;
}

.stamp-point-box__contents::before {
  content: "";
  width: 98%;
  height: 1.2rem;
  position: absolute;
  top: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/stamp_box-top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.stamp-point-box__contents::after {
  content: "";
  width: 98%;
  height: 1.2rem;
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/stamp_box-bot.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.stamp-point-box__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.stamp-point-box__num {
  flex: 0 0 4.2rem;
}

.stamp-point-box__title {
  font-family: var(--serif-font);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0c9500;
}

.stamp-point-box__text {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.57;
  color: #333;
  margin-top: 1.5rem;
}

.stamp-point-box__img {
  width: 24rem;
  margin: 1.5rem auto 0;
}

.stamp-point-box__info {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #eaf7eb;
}

.stamp-point-box__info p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.58;
  color: #333;
}

.stamp-point-box__info p + p {
  margin-top: 1rem;
}

.stamp-point-box__note {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.72;
  color: #333;
  margin-top: 1rem;
}

.stamp-point-box-present {
  padding: 1rem;
  background-color: #f5f1d1;
  border-radius: 1rem;
  margin-top: 1rem;
}

.stamp-point-box-present__lead {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
  color: #333;
}

.stamp-point-box-present__title {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
  color: #be922d;
}

.stamp-point-box-present__img {
  width: 22.3rem;
  margin: 0.8rem auto 0;
}

.stamp-point-box-present__note {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
  color: #333;
  margin-top: 0.5rem;
}

.stamp-benefits {
  margin-top: 5.8rem;
  position: relative;
  background-color: #fff;
  border: 1px solid #2db923;
}

.stamp-benefits__title {
  display: inline-block;
  font-family: var(--serif-font);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  width: 31.3rem;
  background-color: #c39e47;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.stamp-benefits__inner {
  padding: 4.6rem 1.4rem 3rem;
}

.stamp-benefits-head {
  position: relative;
}

.stamp-benefits-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21.6rem;
  height: 21.6rem;
  background-image: url(../img/stamp_benefits_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.stamp-benefits-head__top {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.43;
  text-align: center;
  color: #0c9500;
}

.stamp-benefits-head__mid {
  margin-top: 0.6rem;
  text-align: center;
}

.stamp-benefits-head__mid span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(to right, #0b8400, #46bf3b);
}

.stamp-benefits-head__bot {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #0c9500;
  margin-top: 0.6rem;
}

.stamp-benefits-images {
  margin-top: 4rem;
}

.stamp-benefits-images__title {
  text-align: center;
}

.stamp-benefits-images__title span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 0.2rem 1.2rem;
  background: linear-gradient(to right, #0b8400, #46bf3b);
}

.stamp-benefits-images__text {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.43;
  text-align: center;
  color: #0c9500;
  margin-top: 0.8rem;
}

.stamp-benefits-images__img {
  margin-top: 1.5rem;
  width: 100%;
}

.stamp-benefits-images__note {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: -3rem;
}

.stamp-benefits-period {
  width: 100%;
  margin-top: 2.8rem;
}

.stamp-benefits__list {
  margin-top: 2.8rem;
}

.stamp-benefits-exchange__list {
  margin-top: 3rem;
}

.signage {
  position: relative;
  background-color: #f7dfe4;
  background-image: url(../img/bg_net-wh.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
}

.signage__num {
  width: 7rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.signage__inner {
  padding: 3.8rem 1.5rem 6.6rem;
}

.signage-heading {
  position: relative;
  padding-top: 2.83rem;
  padding-bottom: 3.34rem;
}

.signage-heading::before,
.signage-heading::after {
  content: "";
  width: 16.7rem;
  height: 1.9rem;
  background-image: url(../img/signage_title-deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.signage-heading::before {
  top: 0;
}

.signage-heading::after {
  bottom: 0;
}

.signage-heading__lead {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ef5687;
}

.signage-heading__title {
  width: 100%;
  max-width: 30rem;
  margin-top: 1.3rem;
  margin-left: auto;
  margin-right: auto;
}

.signage__text {
  font-family: var(--serif-font);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
  line-height: 1.75;
  color: #333;
  margin-top: 3.6rem;
  position: relative;
  z-index: 0;
}

.signage__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31.5rem;
  height: 10.3rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(16px);
  z-index: -1;
}

.signage__chara {
  width: 27.8rem;
  margin-top: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.8rem;
  position: relative;
}

.signage-item {
  border: 1px solid #ef5687;
}

.signage-item__head {
  font-family: var(--serif-font);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  padding: 0.6rem 0;
  background-color: #ef5687;
}

.signage-item__body {
  padding: 2rem 1.4rem 2.5rem;
  background-color: #fff;
}

.signage-item__title {
  font-family: var(--serif-font);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #c39e47;
  padding: 0.9rem 0;
  position: relative;
}

.signage-item__title::before,
.signage-item__title::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(to right, transparent 0%, #f0dda7 15%, #c6a562 50%, #f2e0ad 85%, transparent 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.signage-item__title::before {
  top: 0;
}

.signage-item__title::after {
  bottom: 0;
}

.signage-item__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.57;
  text-align: center;
  color: #333;
  margin-top: 1rem;
}

.signage-item__img {
  width: 100%;
  margin-top: 1rem;
}

.signage__note {
  margin-top: 2rem;
}

.goods {
  position: relative;
  background-color: #f7eda3;
  background-image: url(../img/bg_net-wh.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
}

.goods__num {
  width: 8.2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.goods__inner {
  padding: 4.7rem 1.5rem 6rem;
}

.goods-heading {
  position: relative;
  padding-top: 2.83rem;
  padding-bottom: 3.34rem;
}

.goods-heading::before,
.goods-heading::after {
  content: "";
  width: 16.7rem;
  height: 1.9rem;
  background-image: url(../img/goods_title-deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.goods-heading::before {
  top: 0;
}

.goods-heading::after {
  bottom: 0;
}

.goods-heading__lead {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #b48c00;
}

.goods-heading__title {
  width: 100%;
  max-width: 21.3rem;
  margin-top: 1.3rem;
  margin-left: auto;
  margin-right: auto;
}

.goods__text {
  font-family: var(--serif-font);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
  line-height: 1.75;
  color: #333;
  margin-top: 3.6rem;
  position: relative;
  z-index: 0;
}

.goods__text span {
  color: #b48c00;
}

.goods__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31.5rem;
  height: 10.3rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(16px);
  z-index: -1;
}

.goods__chara {
  width: 27.8rem;
  margin-top: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.8rem;
  position: relative;
}

.goods-box {
  border: 1px solid #f3be01;
  background-color: #fff;
}

.goods-box__inner {
  padding: 2rem 1.5rem;
}

.goods-box_img {
  width: 100%;
}

.goods-box__list {
  margin-top: 2rem;
}

.goods-box__caution {
  margin-top: 2rem;
}

.goods-box__btn {
  text-align: center;
  margin-top: 2rem;
}

.goods-box__btn a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
  text-align: center;
  padding: 1rem 0 1rem 3rem;
  width: 100%;
  background-color: #b8920e;
  border: 0.3rem solid #fff;
  border-radius: 2.5rem;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.goods-box__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}

.goods-box__note {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  margin-top: 0.6rem;
}

.goods-info {
  background-color: #f5f1d1;
  margin-top: 1rem;
  padding: 1.5rem;
}

.goods-info__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.57;
  text-align: center;
  color: #b8920e;
}

.goods-info__text a {
  font-weight: 700;
  text-decoration: underline;
  color: #b8920e;
}

.goods-info__text span {
  display: block;
  font-size: 1.1rem;
}

.goods-info__note {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  margin-top: 0.6rem;
}

.bottom {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url(../img/bg_net.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
  background-color: #fff;
}

.bottom__bnr {
  width: 34.5rem;
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.bottom__note_ttl {
  font-size: 1.4rem;
  margin-inline: auto;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  text-align: center;
}

.bottom__note {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  margin-top: 0.8rem;
}

.bottom__img {
  width: 36rem;
  margin: 1rem auto 0;
}

.bottom__copy {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #8d8d8d;
  margin-top: 3rem;
}

/*==============================
# component
==============================*/
.c-sec__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(to right, #c6a562, #f0dda7, #c6a562, #f2e0ad, #c8a860);
}

.c-step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-step-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.c-step-list-item__step {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
  padding: 0.5rem 1.2rem;
  background-color: #02aeeb;
  border-radius: 1.9rem;
  flex-shrink: 0;
}

.stamp-benefits__list .c-step-list-item__step {
  background-color: #2db923;
}

.c-step-list-item__text {
  flex: 0 1 100%;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.57;
  color: #333;
  padding-top: 0.3rem;
}

.c-exchange {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-exchange__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-exchange__title {
  font-family: var(--serif-font);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #c39e47;
  padding: 0.9rem 0;
  position: relative;
}

.c-exchange__title::before,
.c-exchange__title::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(to right, transparent 0%, #f0dda7 15%, #c6a562 50%, #f2e0ad 85%, transparent 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.c-exchange__title::before {
  top: 0;
}

.c-exchange__title::after {
  bottom: 0;
}

.c-exchange__text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  color: #333;
}

.c-exchange__text.min {
  font-size: 1.4rem;
}

.c-exchange__access {
  margin-top: 0.5rem;
  text-align: center;
}
.c-exchange__access + .c-exchange__text {
  margin-top: 1rem;
}

.c-exchange__access a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #d50000;
  text-decoration: underline;
}

/*==============================
# ボイストック
==============================*/
ul.text_list.annotation li {
  color: #333;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.58;
}
@media (min-width: 751px) {
  ul.text_list.annotation li {
    font-size: 12px;
  }
}

ul.text_list.annotation li.fcRed {
  color: #d50000;
}

ul.text_list.annotation li a {
  font-weight: 700;
  text-decoration: underline;
}

ul.text_list li + li {
  margin-top: 0.5rem;
}
@media (min-width: 751px) {
  ul.text_list li + li {
    margin-top: 5px;
  }
}

@media (min-width: 751px) {
  .qr_wrap {
    padding: 16px 20px;
    border: 4px solid #000;
    gap: 24px;
    max-width: 600px;
    background: linear-gradient(to right, #143349, #366a94);
  }
}

@media (min-width: 751px) {
  .qr_text p {
    color: #fff;
  }
}

@media (min-width: 751px) {
  .qr_text_hd {
    background: none;
    text-align: left;
    padding: 0;
  }
}

@media (min-width: 751px) {
  .qr_img {
    width: 135px;
    border: none;
    border-radius: 0;
  }
}

/*==============================
# 注意事項
==============================*/
.caution_acc .acc_btn {
  background-color: #004471;
  font-size: 1.5rem;
  padding: 0.6rem 3.7rem 0.7rem 1.5rem;
  border-radius: 1.9rem;
}
@media (min-width: 751px) {
  .caution_acc .acc_btn {
    font-size: 15px;
    padding: 6px 37px 7px 15px;
    border-radius: 1.9rem;
  }
}

.caution_acc .acc_btn span {
  right: 1rem;
  width: 2rem;
  height: 2rem;
}
@media (min-width: 751px) {
  .caution_acc .acc_btn span {
    right: 10px;
    width: 20px;
    height: 20px;
  }
}

.acc_btn span::before,
.acc_btn span::after {
  background-color: #004471;
  width: 1rem;
  height: 0.2rem;
}
@media (min-width: 751px) {
  .acc_btn span::before,
  .acc_btn span::after {
    width: 10px;
    height: 2px;
  }
}

.caution_acc .acc_body {
  padding: 0;
  border: none;
}
