@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;
  --blue-color: #12a7de;
  --lightBlue-color: #effcff;
  --pink-color: #e31f63;
  --lightPink-color: #fff5f8;
  --serif-font: "Noto Serif JP", serif;
  --bg-pink: #f7cbde;
}
/*アキ*/
.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: 12px;
}
@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;
}
.js-blur {
  transition: 1.5s ease;
  opacity: 0;
  filter: blur(8px);
}
.js-blur.is-inview {
  opacity: 1;
  filter: blur(0px);
}
/*************
汎用
*************/
/* ボイストック枠 */
.VoiStock_btn {
  display: block;
  position: relative;
  max-width: 400px;
  margin: 32px auto 16px;
}
.VoiStock_btn.comingSoon {
  pointer-events: none;
}
.qr_wrap {
  display: none;
}
.VoiStock_btn p.comingSoon {
  background: rgba(193, 163, 74, 0.85);
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 80%;
  top: 50%;
  left: 50%;
  max-width: 400px;
  transform: translate(-50%, -50%);
  border-radius: 100vmax;
}
@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) {
}
/*************
〇〇〇〇
*************/
@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;
  }
}

/*==============================
# original
==============================*/
.bg_white {
  background-image: url(../img/bg_white.png);
  background-size: 375px 387px;
  background-repeat: repeat;
  background-position: top center;
  background-color: #fff;
}

.bg_pink {
  background-image: url(../img/bg_pink.png);
  background-size: 375px 375px;
  background-repeat: repeat;
  background-position: top center;
}

.intro {
  box-sizing: border-box;
}

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

.intro__inner {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media (min-width: 751px) {
  .intro__inner {
    padding: 40px 20px 50px;
    max-width: 840px;
  }
}

.mv img {
  width: 100%;
}
@media (min-width: 751px) {
  .mv img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  }
}

.intro-schedule {
  width: 100%;
  max-width: 315px;
  margin: 30px auto 0;
}
@media (min-width: 751px) {
  .intro-schedule {
    max-width: 426px;
  }
}

.intro-schedule img {
  width: 100%;
}

.intro-text {
  padding: 55px 15px 60px;
  margin-top: -16px;
  width: 100%;
  background-image: url(../img/bg_intro-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 751px) {
  .intro-text {
    max-width: 750px;
    padding: 115px 15px 40px;
    margin-top: -75px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/bg_intro-pc.png);
  }
}

.intro-text p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.625;
  text-align: center;
}
@media (min-width: 751px) {
  .intro-text p {
    font-size: 18px;
    line-height: 1.66;
  }
}

.intro-link {
  margin-top: -10px;
}
@media (min-width: 751px) {
  .intro-link {
    margin-top: 0;
  }
}

.intro-link__inner {
  width: 100%;
  padding: 0 15px;
  max-width: 750px;
  margin: 0 auto;
}

.intro-link__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 751px) {
  .intro-link__top {
    flex-direction: row;
    gap: 30px;
  }
}

.intro-link__col {
  width: 100%;
}
@media (min-width: 751px) {
  .intro-link__col {
    width: calc(50% - 30px / 2);
  }
}

.intro-link__sub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px 6px 0 0;
  background-color: #fff;
}

.intro-link__sub.blue {
  color: var(--blue-color);
}

.intro-link__sub.pink {
  color: var(--pink-color);
}

.intro-link__items {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.intro-link__items a {
  display: block;
  width: calc(50% - 10px / 2);
}

.intro-link__bot {
  margin-top: 20px;
}

.intro-link__bot a {
  display: block;
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
}

.voice {
  background-image: url(../img/bg_voice-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  z-index: 5;
}
@media (min-width: 751px) {
  .voice {
    background-image: url(../img/bg_voice-pc.png);
    background-size: 720px 332px;
  }
  .intro-link__items a:hover,
  .intro-link__bot a:hover {
    opacity: 0.5;
  }
  .intro-link__items a,
  .intro-link__bot a {
    transition: 0.3s;
  }
}

.voice__inner {
  box-sizing: border-box;
  padding: 34px 15px 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .voice__inner {
    padding: 40px 15px 0;
  }
}

.voice__title {
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .voice__title {
    max-width: 360px;
  }
}

.voice__contents {
}

.voice-item {
}

.voice-item * {
  box-sizing: border-box;
}

.voice-item + .voice-item {
  margin-top: 30px;
}

.voice-item__head {
  width: 100%;
}

.voice-item__head img {
  width: 100%;
}

.voice-item__body {
  margin-top: 32px;
  position: relative;
  padding: 0 10px;
}

.voice-item__top {
  width: 100%;
}

.voice-item__top img {
  width: 100%;
}

.voice-item__mid {
  padding: 0 6px;
  margin-top: -10px;
}

.voice-item__bot {
  width: 100%;
  margin-top: -10px;
}

.voice-item__bot img {
  width: 100%;
}

.voice-item__lead {
  width: 100%;
  max-width: 188px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.voice-item__lead img {
  width: 100%;
}

.voice-item__text {
  padding: 24px 10px;
  background-color: var(--lightBlue-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (min-width: 751px) {
  .voice-item__text {
    text-align: center;
  }
}

.vote {
  background-image: url(../img/bg_vote-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: -60px;
  position: relative;
  z-index: 4;
}
@media (min-width: 751px) {
  .vote {
    background-image: url(../img/bg_vote-pc.png);
    background-size: 556px 411px;
  }
}

.vote__inner {
  box-sizing: border-box;
  padding: 124px 15px 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.vote__title {
  width: 100%;
  max-width: 274px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .vote__title {
    max-width: 309px;
  }
}

.vote__sub {
  width: 100%;
}

.vote__sub img {
  width: 100%;
}

.vote__lead {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 751px) {
  .vote__lead {
    font-size: 16px;
    line-height: 1.625;
    margin-top: 30px;
  }
}

.vote__lead span {
  font-weight: 700;
  color: var(--blue-color);
  background: linear-gradient(transparent 60%, var(--lightBlue-color) 60%);
}

.photo {
  background-image: url(../img/bg_photo-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}
@media (min-width: 751px) {
  .photo {
    background-image: url(../img/bg_photo-pc.png);
    background-size: 660px 311px;
    margin-top: -110px;
  }
}

.photo__inner {
  box-sizing: border-box;
  padding: 134px 15px 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .photo__inner {
    padding: 178px 15px 0;
  }
}

.photo__title {
  width: 100%;
  max-width: 285px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .photo__title {
    max-width: 333px;
  }
}

.photo__title img {
  width: 100%;
}

.photo__sub {
  width: 100%;
}

.photo__sub img {
  width: 100%;
}

.photo__lead {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 751px) {
  .photo__lead {
    font-size: 16px;
    line-height: 1.625;
    margin-top: 30px;
  }
}

.photo__lead span {
  color: var(--pink-color);
}

.collabo {
  background-image: url(../img/bg_collabo-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .collabo {
    background-image: url(../img/bg_collabo-pc.png);
    background-size: 666px 425px;
    margin-top: -90px;
  }
}

.collabo__inner {
  box-sizing: border-box;
  padding: 106px 15px 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .collabo__inner {
    padding: 166px 15px 0;
  }
}

.collabo__title {
  width: 100%;
  max-width: 328px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .collabo__title {
    max-width: 371px;
  }
}

.collabo__lead {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 751px) {
  .collabo__lead {
    font-size: 16px;
    line-height: 1.625;
  }
}

.collabo__lead span {
  font-weight: 700;
  color: var(--pink-color);
  background: linear-gradient(transparent 60%, #fff5f8 60%);
}

.collabo-item + .collabo-item {
  margin-top: 30px;
}

.collabo-item__sub {
  width: 100%;
}

.collabo-item__sub img {
  width: 100%;
}

.collabo-item__body {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.collabo-item--01 .collabo-item__body {
  max-width: 301px;
  margin-top: 30px;
}
@media (min-width: 751px) {
  .collabo-item--01 .collabo-item__body {
    max-width: 440px;
    margin-top: 30px;
  }
}

.collabo-item--02 .collabo-item__body {
  max-width: 315px;
  margin-top: 10px;
}
@media (min-width: 751px) {
  .collabo-item--02 .collabo-item__body {
    max-width: 607px;
    margin-top: 28px;
  }
}

.collabo-item__img {
  width: 100%;
}

.collabo-item__img img {
  width: 100%;
}

.collabo-item__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.42;
}

.collabo-item--01 .collabo-item__note {
  transform: translateY(-100%);
}

.collabo-item--02 .collabo-item__note {
}

.collabo-box {
  margin-top: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 10px;
  background-image: url(../img/bg_flow_pink.png);
}

.collabo-box__inner {
  background-color: #fff;
  padding: 10px 10px 20px;
}

.collabo-box__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.collabo-box__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.57;
  margin-top: 15px;
}

.collabo-box__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.57;
  margin-top: 10px;
}

.collabo-box__link a {
  color: var(--pink-color);
  font-weight: 500;
  text-decoration: underline;
}

.collabo-box .annotation {
  margin-top: 10px;
}

.collabo-card {
  margin-top: 30px;
}

.collabo-card__title {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 6px 0;
  background-color: #000;
  position: relative;
  cursor: pointer;
}
@media (min-width: 751px) {
  .collabo-card__title {
    padding: 8px 0;
  }
}

.collabo-card__title span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.collabo-card__title span::before,
.collabo-card__title span::after {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

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

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

.collabo-card__body {
  margin-top: 12px;
  background-color: #fff5f8;
  padding: 15px;
  display: none;
}

.collabo-card__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.collabo-card-item {
  position: relative;
}

.collabo-card-item:not(:last-child)::after {
  content: "";
  width: 64px;
  height: 16px;
  background-image: url(../img/card_arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
}

.collabo-card-item__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  padding: 6px 0;
}

.pink .collabo-card-item__title {
  background-color: var(--pink-color);
}

.blue .collabo-card-item__title {
  background-color: var(--blue-color);
}

.collabo-card-item__body {
  background-color: #fff;
  padding: 10px 14px 20px;
}

.collabo-card-item__step {
  font-family: var(--serif-font);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.pink .collabo-card-item__step {
  color: #f46c9b;
}

.blue .collabo-card-item__step {
  color: #12a7de;
}

.collabo-card-item__lead {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: center;
  margin-top: 4px;
}

.collabo-card-item__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  margin-top: 8px;
}

.collabo-card-item__text.pink {
  color: var(--pink-color);
}

.collabo-card-item__btn {
  text-align: center;
  margin-top: 8px;
}

.collabo-card-item__btn a {
  display: inline-block;
  width: 240px;
}

.collabo-card-item .annotation {
  margin-top: 8px;
}

.collabo-card-item .annotation a {
  color: var(--blue-color);
  font-weight: 700;
  text-decoration: underline;
}

.collabo-card-item__img {
  width: 78%;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
}

.collabo-card-item__img.card {
  width: 65%;
}

.collabo-card-item__img img {
  width: 100%;
}

.collabo-card-item__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: 8px;
}

.collabo-card-item__note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: 4px;
}

.infomation {
  background-image: url(../img/bg_pink.png);
  background-size: 375px 375px;
  background-repeat: repeat;
  background-position: top center;
  overflow: hidden;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 751px) {
  .infomation {
    margin-top: 80px;
  }
  .collabo-card-item__img {
    width: 58%;
  }
}

.infomation::before {
  content: "";
  background-image: url(../img/bg_info01-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 112vw;
  height: 72vw;
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 751px) {
  .infomation::before {
    background-image: url(../img/bg_info01-pc.png);
    width: 720px;
    height: 463px;
    top: 90px;
  }
}

.infomation::after {
  content: "";
  background-image: url(../img/bg_info02-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 112vw;
  height: 58vw;
  position: absolute;
  top: 855px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 751px) {
  .infomation::after {
    background-image: url(../img/bg_info02-pc.png);
    width: 629px;
    height: 326px;
    top: 956px;
  }
}

.infomation__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 440px;
  padding: 30px 15px 20px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .infomation__inner {
    padding: 50px 15px 30px;
  }
}

.infomation__title {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .infomation__title {
    max-width: 337px;
  }
}

.infomation__title img {
  width: 100%;
}

.infomation-intro {
  margin-top: 40px;
}

.infomation-intro__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}

.infomation-intro__lead {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .infomation-intro__lead {
    max-width: 360px;
  }
}

.infomation-intro__lead img {
  width: 100%;
}

.infomation__img {
  width: 100%;
  margin-top: 32px;
}

.infomation__img img {
  width: 100%;
}

.infomation-content {
  margin-top: 30px;
  position: relative;
}
@media (min-width: 751px) {
}

.infomation-content__lead {
  width: 100%;
  max-width: 138px;
  margin-left: auto;
  margin-right: auto;
}

.infomation-content__lead img {
  width: 100%;
}

.infomation-content__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}

.infomation__link {
  margin-top: 40px;
}
@media (min-width: 751px) {
  .infomation__link {
    margin-top: 50px;
  }
}

.infomation__to {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--pink-color);
}

.infomation__bnr {
  margin-top: 10px;
  display: block;
  width: 100%;
}

.infomation__bnr img {
  width: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.infomation__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 8px;
}

.infomation__sns {
  margin-top: 30px;
}

.infomation__x {
  margin-top: 20px;
  text-align: center;
}

.infomation__x a {
  display: inline-block;
  width: 50px;
}

.infomation__x img {
  width: 100%;
}

.infomation__copy {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 30px;
}

.l-flow {
  margin-top: 20px;
}

.l-flow__title {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 6px 0;
  background-color: #98d8c8;
  position: relative;
  cursor: pointer;
}
@media (min-width: 751px) {
  .l-flow__title {
    padding: 8px 0;
  }
}

.blue .l-flow__title {
  background-color: var(--blue-color);
}

.pink .l-flow__title {
  font-size: 14px;
  background-color: var(--pink-color);
}

.l-flow__title span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.l-flow__title span::before,
.l-flow__title span::after {
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.blue .l-flow__title span::before,
.blue .l-flow__title span::after {
  background-color: var(--blue-color);
}

.pink .l-flow__title span::before,
.pink .l-flow__title span::after {
  background-color: var(--pink-color);
}

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

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

.l-flow__body {
  margin-top: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 10px;
  display: none;
}

.blue .l-flow__body {
  background-image: url(../img/bg_flow_blue.png);
}

.pink .l-flow__body {
  background-image: url(../img/bg_flow_pink.png);
}

.l-flow__box {
  background-color: #fff;
  padding: 10px 10px 20px;
}
@media (min-width: 751px) {
  .l-flow__box {
    background-color: #fff;
    padding: 10px 30px 20px;
  }
}

.l-flow__lead {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 751px) {
}

.l-flow__list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-flow__item {
}

.l-flow__step {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 3px 0;
}

.blue .l-flow__step {
  color: var(--blue-color);
  background-image: url(../img/bg_step_blue-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 751px) {
  .blue .l-flow__step {
    background-image: url(../img/bg_step_blue-pc.png);
  }
}

.pink .l-flow__step {
  color: var(--pink-color);
  background-image: url(../img/bg_step_pink-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 751px) {
  .pink .l-flow__step {
    background-image: url(../img/bg_step_pink-pc.png);
  }
}

.l-flow__text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.53;
  margin-top: 10px;
}

.l-flow__note {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.57;
  color: var(--pink-color);
  margin-top: 20px;
}

.l-flow__note span {
  background: linear-gradient(transparent 60%, #fff5f8 60%);
}

.l-contents-box {
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (min-width: 751px) {
  .l-contents-box {
    margin-top: 30px;
    padding: 40px 50px;
  }
}

.l-contents-box.blue {
  border: 1px solid #83cce6;
}

.l-contents-box.pink {
  border: 1px solid var(--pink-color);
}

/*==============================
# ボイス
==============================*/
.text_link {
  color: var(--pink-color);
}

.caution_acc .acc_btn {
  background-color: #000;
}

.acc_btn span::before,
.acc_btn span::after {
  background-color: #000;
}

.caution_acc .acc_body {
  border: none;
  border-radius: 0;
  padding: 15px;
}

.acc_body.blue {
  background-color: var(--lightBlue-color);
}

.acc_body.pink {
  background-color: var(--lightPink-color);
}

@media (min-width: 751px) {
  .qr_wrap {
    border: none;
    border-radius: 0;
    max-width: 530px;
    padding: 30px;
    background-image: url(../img/bg_qr.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
  }
}

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

@media (min-width: 751px) {
  .qr_text_hd {
    color: #b48c00;
    background-color: #fff;
    font-size: 17px;
  }
}

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

.sec--photo__splide-container {
  padding-top: 20px;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.sec--photo__splide {
  /* margin: 0 14px 8px; */
  margin-bottom: 8px;
  padding-bottom: 64px;
  margin-top: 10px;
}
.sec--photo__splide__slide__inner {
  scale: 0.719;
  transition: scale 0.2s;
  margin-top: 10px;
}
.sec--photo__splide__slide.is-active .sec--photo__splide__slide__inner {
  scale: 1;
}
.sec--photo__splide-pagination {
  bottom: 68px;
}
.sec--photo__splide-button-wrapper {
  bottom: 55px;
}
.sec--photo__splide-container__note {
  text-align: center;
  font-size: 12px;
  line-height: 1.42;
}

/* --- splide --- */
.sec--stamp__splide__slide {
  padding-bottom: 60px;
  position: relative;
}
.splide__num {
  font-size: 18px;
  position: absolute;
  bottom: 13px;
  pointer-events: none;
  left: 50%;
  translate: -50%;
}
.splide__num__index,
.splide__num__total {
  margin-inline: 7px;
}
.splide__arrows {
  display: flex;
  justify-content: space-between;
  width: 190px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}
.splide__arrow {
  display: block;
  border: 0;
  border-radius: 10px;
  background: #f46c9b;
  width: 48px;
  height: 48px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.splide__arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  background: url(../img/ico_swiper-arrow.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.splide__arrow:active {
  opacity: 0.5;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--next {
  scale: -1 1;
}

.photo-slide {
  margin-top: 20px;
  background-image: url(../img/bg_slide.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.photo-slide__title {
  text-align: center;
}

.photo-slide__title span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.36;
  text-align: center;
  color: #fff;
  padding: 4px 8px;
  background-color: #000;
}

.photo-slide__deco01 {
  position: absolute;
  top: 70px;
  left: 27px;
  width: 32px;
}

.photo-slide__deco02 {
  position: absolute;
  top: 27px;
  right: 13px;
  width: 46px;
}

.splide__slide__name {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.025em;
  color: var(--pink-color);
}

.sec--photo__splide__slide span {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.36;
  text-align: center;
  color: #fff;
  padding: 4px 8px;
  background-color: #000;
  white-space: nowrap;
}
