@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: "M PLUS Rounded 1c", sans-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;
  overflow: hidden;
}
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: #3c3434;
  --primary-color: #2ebcad;
  --bg-color: #ffffff;
  --red-color: #ee0000;
  --accent-color: #ffff00;
}
/*アキ*/
.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;
  position: relative;
}
.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) {
}
/*************
〇〇〇〇
*************/
@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;
  }
}

/*==============================
# 5hanayome3rd
==============================*/
.hanayome-5 ul.text_list.annotation {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.hanayome-5 ul.text_list.annotation li {
  font-size: 12px;
  letter-spacing: 0.025em;
  line-height: 1.58;
  color: #434542;
}

.hanayome-5 .caution_acc .acc_btn {
  color: #434542;
  background-color: #fff;
  border: 1px solid #434542;
}

.hanayome-5 .acc_btn--01 span {
  background-color: #f0a52d;
}

.hanayome-5 .acc_btn--02 span {
  background-color: #42a1df;
}

.hanayome-5 .acc_btn--04 span {
  background-color: #83bb01;
}

.hanayome-5 .acc_btn--05 span {
  background-color: #e95656;
}

.hanayome-5 .acc_btn span::before,
.hanayome-5 .acc_btn span::after {
  background-color: #fff;
}

.hanayome-5 ul.text_list.annotation li.fcRed {
  color: #ef6688;
}

.hanayome-5 .text_link {
  color: #ef6688;
}

.hanayome-5 .caution_acc .acc_body {
  border: none;
  padding: 15px;
  background-color: #f8f8f8;
}

@media (min-width: 751px) {
  .hanayome-5 .qr_wrap {
    box-sizing: border-box;
    border: none;
    max-width: 490px;
    background-image: url(../img/qr_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }

  .hanayome-5 .qr_text_hd {
    font-size: 18px;
    color: #ef5f80;
    background-color: #fff;
  }

  .hanayome-5 .qr_text p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .hanayome-5 .qr_img {
    box-sizing: border-box;
    padding: 10px;
    border: none;
  }
}

/* common */
.sec__lead {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: relative;
}

.sec__lead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #fff;
  filter: blur(45px);
}

.sec__lead p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sec__lead p span {
  font-weight: 700;
}

.sec__lead--01 {
  margin-top: 24px;
}
@media (min-width: 751px) {
  .sec__lead--01 {
    margin-top: 25px;
  }
}

.sec__lead--01::before {
  width: 312px;
  height: 161px;
}
@media (min-width: 751px) {
  .sec__lead--01::before {
    width: 330px;
    height: 137px;
  }
}

.sec__lead--01 p span {
  color: #e5981d;
}

.sec__lead--02 {
  margin-top: 24px;
}
@media (min-width: 751px) {
  .sec__lead--02 {
    margin-top: 20px;
  }
}

.sec__lead--02::before {
  width: 312px;
  height: 161px;
}
@media (min-width: 751px) {
  .sec__lead--02::before {
    width: 330px;
    height: 137px;
  }
}

.sec__lead--02 p span {
  color: #42a1df;
}

.sec__lead--03 {
  margin-top: 24px;
}

.sec__lead--03 p span {
  color: #9761c4;
}

@media (min-width: 751px) {
  .sec__lead--03 {
    margin-top: 47px;
  }
}

.sec__lead--03::before {
  width: 312px;
  height: 161px;
}
@media (min-width: 751px) {
  .sec__lead--03::before {
    width: 330px;
    height: 137px;
  }
}

.sec__lead--04 {
  margin-top: 24px;
}
@media (min-width: 751px) {
  .sec__lead--04 {
    margin-top: 37px;
  }
}

.sec__lead--04::before {
  width: 312px;
  height: 129px;
}
@media (min-width: 751px) {
  .sec__lead--04::before {
    width: 330px;
    height: 129px;
  }
}

.sec__lead--04 p {
  line-height: 1.8;
}

.sec__lead--04 p span {
  color: #6e9d00;
}

.sec__lead--05 {
  margin-top: 24px;
}
@media (min-width: 751px) {
  .sec__lead--05 {
    margin-top: 36px;
  }
}

.sec__lead--05::before {
  width: 312px;
  height: 120px;
}
@media (min-width: 751px) {
  .sec__lead--05::before {
    width: 330px;
    height: 120px;
  }
}

.sec__lead--05 p span {
  color: #e95757;
}

.sec__lead--06 {
  margin-top: 13px;
}
@media (min-width: 751px) {
  .sec__lead--06 {
    margin-top: 20px;
  }
}

.sec__lead--06::before {
  width: 246px;
  height: 89px;
}

.sec-contents {
}

.sec-contents--01 {
  margin-top: 24px;
}
@media (min-width: 751px) {
  .sec-contents--01 {
    margin-top: 16px;
  }
}

.sec-contents--02 {
  margin-top: 53px;
}
@media (min-width: 751px) {
  .sec-contents--02 {
    margin-top: 64px;
  }
}

.sec-contents--03 {
  margin-top: 24px;
}

.sec-contents--04 {
  margin-top: 45px;
}
@media (min-width: 751px) {
  .sec-contents--04 {
    margin-top: 60px;
  }
}

.sec-contents--05 {
  margin-top: 32px;
}
@media (min-width: 751px) {
  .sec-contents--05 {
    margin-top: 50px;
  }
}

.sec-contents--06 {
  margin-top: 29px;
}
@media (min-width: 751px) {
  .sec-contents--06 {
    margin-top: 32px;
  }
}

.sec-contents__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 375px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec-contents__inner {
    max-width: 730px;
  }
}

.step-box__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.008em;
  padding: 10px 30px 7px 9.5px;
  position: relative;
  border-radius: 8px;
}

.step-box__title.open {
  border-radius: 8px 8px 0 0;
}

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

.step-box__title span::before,
.step-box__title span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-box__title span::before {
  width: 10px;
  height: 2px;
}

.step-box__title span::after {
  height: 10px;
  width: 2px;
}

.step-box__title.open span::after {
  opacity: 0;
}

.step-box--01 .step-box__title {
  background-color: #f0a52d;
  border: 1px solid #f0a52d;
}

.step-box--03 .step-box__title {
  background-color: #9761c4;
  border: 1px solid #9761c4;
  text-align: center;
}

.step-box--04 .step-box__title {
  background-color: #83bb01;
  border: 1px solid #83bb01;
  text-align: center;
}

.step-box--05 .step-box__title {
  background-color: #e95656;
  border: 1px solid #e95656;
  text-align: center;
}

.step-box--01 .step-box__title span::before,
.step-box--01 .step-box__title span::after {
  background-color: #f0a52d;
}

.step-box--03 .step-box__title span::before,
.step-box--03 .step-box__title span::after {
  background-color: #9761c4;
}

.step-box--04 .step-box__title span::before,
.step-box--04 .step-box__title span::after {
  background-color: #83bb01;
}

.step-box--05 .step-box__title span::before,
.step-box--05 .step-box__title span::after {
  background-color: #e95656;
}

.step-box__body {
  padding: 12px 24px 14px 10px;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  display: none;
}

.step-box--01 .step-box__body {
  border: 1px solid #f0a52d;
}

.step-box--03 .step-box__body {
  border: 1px solid #9761c4;
}

.step-box--04 .step-box__body {
  border: 1px solid #83bb01;
}

.step-box--05 .step-box__body {
  border: 1px solid #e95656;
}

.step-box__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-box-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.step-box-item__step {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.008em;
  color: #fff;
  border-radius: 100px;
  padding: 0 6.5px;
}

.step-box--01 .step-box-item__step {
  background-color: #f0a52d;
}

.step-box--03 .step-box-item__step {
  background-color: #9761c4;
}

.step-box--04 .step-box-item__step {
  background-color: #83bb01;
}

.step-box--05 .step-box-item__step {
  background-color: #e95656;
}

.step-box-item__text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.008em;
  line-height: 1.5;
  margin-top: -0.1em;
}

.step-box-item__text span {
  font-weight: 700;
}

.step-box-item__text small {
  font-size: 12px;
}

.img__note {
  font-size: 12px;
  text-align: right;
  margin-top: 8px;
}

.img__note.center {
  text-align: center;
}

/* section */
.mv__img {
  width: 100%;
}

.mv__img img {
  width: 100%;
}

.mv_schedule {
  background-color: #ef6688;
  padding: 12px 0;
}

.mv_schedule__text {
  width: 100%;
  max-width: 291px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .mv_schedule__text {
    max-width: 311px;
  }
}

.intro {
  background-color: #ffdee9;
  background-image: url(../img/bg_pink-sp.png);
  background-size: cover;
  background-position: top center;
}
@media (min-width: 751px) {
  .intro {
    background-image: url(../img/bg_pink-pc.png);
  }
}

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

.intro__inner {
  padding-top: 32px;
  padding-bottom: 40px;
}
@media (min-width: 751px) {
  .intro__inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.intro-head {
  padding: 0 12px;
}

.intro-head__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 751px) {
  .intro-head__text {
    margin-bottom: 32px;
  }
}

.intro-head__img {
  width: 100%;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

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

.intro-link {
  margin-top: 40px;
  width: 100%;
  padding: 0 15px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 751px) {
  .intro-link {
    max-width: 950px;
    margin-top: 0;
    gap: 16px;
  }
}

.intro-link__top {
}

.intro-link__mid {
}

.intro-link__bot {
}

.intro-link__sub {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ef6688;
}

.intro-link__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 751px) {
  .intro-link__list {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
}

.intro-link__item {
  width: 100%;
}
@media (min-width: 751px) {
  .intro-link__item {
    width: calc(33.33% - 10px * 2 / 3);
  }
}

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

.content-heading {
  background-color: #ffdee9;
  padding-bottom: 30px;
}
@media (min-width: 751px) {
  .content-heading {
    padding-bottom: 24px;
  }
}

.content-heading-title {
  padding: 10px 0;
  background-color: #ef6688;
}

.content-heading-title__text {
  width: 100%;
  max-width: 304px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .content-heading-title__text {
    max-width: 332px;
  }
}

.content-heading-title__text img {
  width: 100%;
}

.content-heading02 {
  background-color: #ffdee9;
  padding: 32px 0;
}

.content-heading02-title {
  padding: 10px 0;
  background-color: #ef6688;
}

.content-heading02-title__text {
  width: 100%;
  max-width: 282px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .content-heading02-title__text {
    max-width: 308px;
  }
}

.content-heading02-title__text img {
  width: 100%;
}

.sec-01 {
  background-image: url(../img/bg_sec01-sp.png);
  background-size: cover;
  background-position: top center;
  background-color: #ffe972;
}
@media (min-width: 751px) {
  .sec-01 {
    background-image: url(../img/bg_sec01-pc.png);
  }
}

.sec-01__inner {
  padding-top: 38px;
  padding-bottom: 66px;
  position: relative;
}
@media (min-width: 751px) {
  .sec-01__inner {
    padding-top: 57px;
    padding-bottom: 48px;
  }
}

.sec-01__inner::before {
  content: "";
  width: 100%;
  height: 7px;
  border-top: 4px solid #ffc400;
  border-bottom: 2px solid #ffc400;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-01-heading {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec-01-heading {
    max-width: 450px;
  }
}

.sec-01-heading__title {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sec-01-heading__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  aspect-ratio: 126 / 123;
  top: 0;
  left: 0;
  background-image: url(../img/sec-title-icn01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.sec-01-heading__title img {
  width: 100%;
}

.sec-01-heading__chara {
  width: 151px;
  height: 219px;
  position: absolute;
  top: -70px;
  right: -39px;
}
@media (min-width: 751px) {
  .sec-01-heading__chara {
    top: -53px;
    right: -123px;
  }
}

.sec-01-heading__chara img {
  width: 100%;
}

.sec-01__box {
  padding: 24px 14px;
  background-color: #fff;
  border-radius: 16px;
}
@media (min-width: 751px) {
  .sec-01__box {
    padding: 40px;
  }
}

.sec-01__schedule {
  width: 100%;
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .sec-01__schedule {
    margin-top: 8px;
  }
}

.sec-01__schedule img {
  width: 100%;
}

.sec-02 {
  background-image: url(../img/bg_sec02-sp.png);
  background-size: cover;
  background-position: top center;
  background-color: #a3deff;
}
@media (min-width: 751px) {
  .sec-02 {
    background-image: url(../img/bg_sec02-pc.png);
  }
}

.sec-02__inner {
  padding-top: 40px;
  padding-bottom: 55px;
  position: relative;
}
@media (min-width: 751px) {
  .sec-02__inner {
    padding-top: 55px;
    padding-bottom: 48px;
  }
}

.sec-02__inner::before {
  content: "";
  width: 100%;
  height: 7px;
  border-top: 4px solid #51ace8;
  border-bottom: 2px solid #51ace8;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-02-heading {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec-02-heading {
    max-width: 450px;
  }
}

.sec-02-heading__title {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sec-02-heading__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  aspect-ratio: 126 / 123;
  top: 0;
  right: 0;
  background-image: url(../img/sec-title-icn02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.sec-02-heading__title img {
  width: 100%;
}

.sec-02-heading__chara {
  width: 151px;
  height: 219px;
  position: absolute;
  top: -60px;
  left: -41px;
}
@media (min-width: 751px) {
  .sec-02-heading__chara {
    top: -20px;
    left: -126px;
  }
}

.sec-02-heading__chara img {
  width: 100%;
}

.sec-02-schedule {
  background-color: #42a1df;
  padding: 12px 0;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 751px) {
  .sec-02-schedule {
    margin-top: 30px;
  }
}

.sec-02-schedule__text {
  width: 100%;
  max-width: 291px;
  margin: 0 auto;
}

.sec-02-schedule__text img {
  width: 100%;
}

.sec02-box {
  padding: 44px 14px 24px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}
@media (min-width: 751px) {
  .sec02-box {
    padding: 50px 40px 40px;
  }
}

.sec02-box__title {
  width: 100%;
  max-width: 257px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 751px) {
  .sec02-box__title {
    max-width: 374px;
  }
}

.sec02-box__title img {
  width: 100%;
}

.sec02-box__lead {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.86;
  max-width: 290px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec02-box__lead {
    font-size: 15px;
    max-width: none;
    text-align: center;
  }
}

.sec02-box__lead span {
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(transparent 50%, rgba(255, 226, 0, 0.35) 50%);
}

.sec02-box__images {
  box-sizing: border-box;
  margin-top: 20px;
  padding-left: 44px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .sec02-box__images {
    margin-top: 25px;
    padding-left: 0;
    max-width: 380px;
  }
}

.sec02-box__img {
  width: 100%;
}
@media (min-width: 751px) {
  .sec02-box__img {
    max-width: 289px;
    margin: 0 auto;
  }
}

.sec02-box__img img {
  width: 100%;
}

.sec02-box__contents {
  width: 100%;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 380px;
}
@media (min-width: 751px) {
  .sec02-box__contents {
    margin-top: 16px;
  }
}

.sec02-box__contents img {
  width: 100%;
}

.sec02-detail {
  margin-top: 24px;
  width: 100%;
  max-width: 282px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/sec02_detail_bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 751px) {
  .sec02-detail {
    background-image: url(../img/sec02_detail_bg-pc.png);
    max-width: 585px;
  }
}

.sec02-detail__inner {
  box-sizing: border-box;
  padding: 33px 18px 26px;
}

.sec02-detail__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sec02-detail__list li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.008em;
  line-height: 1.28;
  padding-left: 1em;
  text-indent: -1em;
}

.sec02-detail__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.sec02-detail__notes li {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.58;
  padding-left: 1em;
  text-indent: -1em;
}

.sec02__annotation {
  margin-top: 16px;
}
@media (min-width: 751px) {
  .sec02__annotation {
    margin-top: 25px;
  }
}

.sec-03 {
  background-image: url(../img/bg_sec03-sp.png);
  background-size: cover;
  background-position: top center;
  background-color: #dcc4f0;
}
@media (min-width: 751px) {
  .sec-03 {
    background-image: url(../img/bg_sec03-pc.png);
  }
}

.sec-03__inner {
  padding-top: 34px;
  padding-bottom: 60px;
  position: relative;
}
@media (min-width: 751px) {
  .sec-03__inner {
    padding-top: 57px;
    padding-bottom: 48px;
  }
}

.sec-03__inner::before {
  content: "";
  width: 100%;
  height: 7px;
  border-top: 4px solid #9761c4;
  border-bottom: 2px solid #9761c4;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-03-heading {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec-03-heading {
    max-width: 450px;
  }
}

.sec-03-heading__title {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sec-03-heading__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  aspect-ratio: 126 / 123;
  top: -8px;
  left: 0;
  background-image: url(../img/sec-title-icn03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.sec-03-heading__title img {
  width: 100%;
}

.sec-03-heading__chara {
  width: 151px;
  height: 219px;
  position: absolute;
  top: -66px;
  right: -16px;
}
@media (min-width: 751px) {
  .sec-03-heading__chara {
    top: -22px;
    right: -151px;
  }
}

.sec-03-heading__chara img {
  width: 100%;
}

.sec-03-schedule {
  background-color: #9761c4;
  padding: 12px 0;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 751px) {
  .sec-03-schedule {
    margin-top: 30px;
  }
}

.sec-03-schedule__text {
  width: 100%;
  max-width: 291px;
  margin: 0 auto;
}

.sec-03-schedule__text img {
  width: 100%;
}

.sec03-box {
  padding: 24px 14px;
  background-color: #fff;
  border-radius: 16px;
}
@media (min-width: 751px) {
  .sec03-box {
    padding: 40px;
  }
}

.sec03__images {
  box-sizing: border-box;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  width: 100%;
  max-width: 345px;
}
@media (min-width: 751px) {
  .sec03__images {
    margin-top: 32px;
    max-width: 418px;
    padding-left: 0;
  }
}

.sec03-box__img {
  width: 100%;
}

.sec03-box__img img {
  width: 100%;
}

.sec03-detail {
  margin-top: 20px;
  width: 100%;
  max-width: 282px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/sec03_detail_bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 751px) {
  .sec03-detail {
    margin-top: 16px;
    background-image: url(../img/sec03_detail_bg-pc.png);
    max-width: 490px;
  }
}

.sec03-detail__inner {
  box-sizing: border-box;
  padding: 31px 30px 25px;
}

.sec03-detail__item + .sec03-detail__item {
  margin-top: 23px;
}

.sec03-detail__sub {
  width: 100%;
}

.sec03-detail__sub img {
  width: 100%;
}

.sec03-detail__list {
  margin-top: 11px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 751px) {
  .sec03-detail__list {
    padding: 0;
  }
}

.sec03-detail__list li {
  font-size: 15px;
  font-weight: 400;
}

.sec03-detail__list li a {
  text-decoration: underline;
  color: #3c3434;
}

.sec03-detail__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 8px;
}
@media (min-width: 751px) {
  .sec03-detail__note {
    text-align: left;
  }
}

.sec03-detail__text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.008em;
  text-align: center;
  margin-top: 8px;
  white-space: nowrap;
}
@media (min-width: 751px) {
  .sec03-detail__text {
    text-align: left;
  }
}

.sec03__annotation {
  margin-top: 16px;
}

.sec-04 {
  background-image: url(../img/bg_sec04-sp.png);
  background-size: cover;
  background-position: top center;
  background-color: #bcdd5f;
}
@media (min-width: 751px) {
  .sec-04 {
    background-image: url(../img/bg_sec04-pc.png);
  }
}

.sec-04__inner {
  padding-top: 38px;
  padding-bottom: 55px;
  position: relative;
}
@media (min-width: 751px) {
  .sec-04__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.sec-04__inner::before {
  content: "";
  width: 100%;
  height: 7px;
  border-top: 4px solid #83bb01;
  border-bottom: 2px solid #83bb01;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-04-heading {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec-04-heading {
    max-width: 450px;
  }
}

.sec-04-heading__title {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sec-04-heading__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  aspect-ratio: 126 / 123;
  top: 34px;
  right: 0;
  background-image: url(../img/sec-title-icn04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.sec-04-heading__title img {
  width: 100%;
}

.sec-04-heading__chara {
  width: 151px;
  height: 219px;
  position: absolute;
  top: -64px;
  left: -41px;
}
@media (min-width: 751px) {
  .sec-04-heading__chara {
    top: -55px;
    left: -113px;
  }
}

.sec-04-heading__chara img {
  width: 100%;
}

.sec-04-schedule {
  background-color: #83bb01;
  padding: 12px 0;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 751px) {
  .sec-04-schedule {
    margin-top: 30px;
  }
}

.sec-04-schedule__text {
  width: 100%;
  max-width: 291px;
  margin: 0 auto;
}

.sec-04-schedule__text img {
  width: 100%;
}

.sec04-box {
  padding: 44px 14px 24px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}
@media (min-width: 751px) {
  .sec04-box {
    padding: 56px 40px 40px;
  }
}

.sec04-box__title {
  width: 100%;
  max-width: 277px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 751px) {
  .sec04-box__title {
    max-width: 374px;
  }
}

.sec04-box-map {
}

.sec04-box-map__img {
  width: 100%;
  max-width: 317px;
  margin: 0 auto;
}

.sec04-box-map__img img {
  width: 100%;
}

.sec04-box-map__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.58;
  margin-top: 5px;
}
@media (min-width: 751px) {
  .sec04-box-map__note {
    text-align: center;
    margin-top: 8px;
  }
}

.sec04-box-spot {
  width: 100%;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 751px) {
  .sec04-box-spot {
    max-width: 490px;
  }
}

.sec04-box-spot-item {
}

.sec04-box-spot-item__head {
  position: relative;
  padding: 10px 30px 10px 10px;
  border-radius: 8px;
}

.sec04-box-spot-item__head span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}

.sec04-box-spot-item__head span::before,
.sec04-box-spot-item__head span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec04-box-spot-item__head span::before {
  width: 10px;
  height: 2px;
}

.sec04-box-spot-item__head span::after {
  height: 10px;
  width: 2px;
}

.sec04-box-spot-item__head.open span::after {
  opacity: 0;
}

.sec04-box-spot-item__head--01 {
  background-color: #f9bf02;
}

.sec04-box-spot-item__head--02 {
  background-color: #ae75dc;
}

.sec04-box-spot-item__head--03 {
  background-color: #61b8eb;
}

.sec04-box-spot-item__head--04 {
  background-color: #94c602;
}

.sec04-box-spot-item__head--05 {
  background-color: #e95656;
}

.sec04-box-spot-item__head--01 span::before,
.sec04-box-spot-item__head--01 span::after {
  background-color: #f9bf02;
}

.sec04-box-spot-item__head--02 span::before,
.sec04-box-spot-item__head--02 span::after {
  background-color: #ae75dc;
}

.sec04-box-spot-item__head--03 span::before,
.sec04-box-spot-item__head--03 span::after {
  background-color: #61b8eb;
}

.sec04-box-spot-item__head--04 span::before,
.sec04-box-spot-item__head--04 span::after {
  background-color: #94c602;
}

.sec04-box-spot-item__head--05 span::before,
.sec04-box-spot-item__head--05 span::after {
  background-color: #e95656;
}

.sec04-box-spot-item__title {
  width: 100%;
}

.sec04-box-spot-item__title img {
  width: 100%;
}

.sec04-box-spot-item__title--01 {
  max-width: 168px;
}
@media (min-width: 751px) {
  .sec04-box-spot-item__title--01 {
    max-width: 213px;
  }
}

.sec04-box-spot-item__title--02 {
  max-width: 150px;
}
@media (min-width: 751px) {
  .sec04-box-spot-item__title--02 {
    max-width: 191px;
  }
}

.sec04-box-spot-item__title--03 {
  max-width: 193px;
}
@media (min-width: 751px) {
  .sec04-box-spot-item__title--03 {
    max-width: 244px;
  }
}

.sec04-box-spot-item__title--04 {
  max-width: 182px;
}
@media (min-width: 751px) {
  .sec04-box-spot-item__title--04 {
    max-width: 230px;
  }
}

.sec04-box-spot-item__title--05 {
  max-width: 175px;
}
@media (min-width: 751px) {
  .sec04-box-spot-item__title--05 {
    max-width: 225px;
  }
}

.sec04-box-spot-item__body {
  position: relative;
  margin-top: 8px;
  display: none;
}

.sec04-box-spot-item__img {
  width: 100%;
  position: relative;
}

.sec04-box-spot-item__img::before {
  content: "";
  display: block;
  padding-top: 56.78%;
}
@media (min-width: 751px) {
  .sec04-box-spot-item__img::before {
    /* padding-top: 36.73%; */
  }
  .sec04-box-spot-item__body .sec04-box-spot-item__chara {
    top: 250px;
  }
}

.sec04-box-spot-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec04-box-spot-item__time {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 7px;
}

.sec04-box-spot-item__time span {
  font-size: 12px;
}

.sec04-box-spot-item__notes {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
  margin-top: 5px;
}

.sec04-box-spot-item__notes li {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.58;
  padding-left: 1em;
  text-indent: -1em;
}

.sec04-box-spot-item__notes li a {
  color: #ef6688;
  text-decoration: underline;
}

.sec04-box-spot-item__chara {
  width: 81px;
  position: absolute;
  top: 150px;
  right: 8px;
}

.sec04-box-spot-item__chara img {
  width: 100%;
}

.sec04-contents {
  margin-top: 24px;
}
@media (min-width: 751px) {
  .sec04-contents {
    margin-top: 32px;
  }
}

.sec04-contents__title {
  width: 100%;
  max-width: 288px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec04-contents__title {
    max-width: 306px;
  }
}

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

.sec04-contents__images {
  width: 100%;
  max-width: 296px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .sec04-contents__images {
    max-width: 390px;
    margin-top: 48px;
  }
}

.sec04-contents__img {
  width: 100%;
}

.sec04-contents__img img {
  width: 100%;
}

.sec04-detail {
  margin-top: 24px;
  width: 100%;
  max-width: 286px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/sec04_detail_bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 751px) {
  .sec04-detail {
    background-image: url(../img/sec04_detail_bg-pc.png);
    max-width: 490px;
  }
}

.sec04-detail__inner {
  box-sizing: border-box;
  padding: 27px 28px 23px;
}

.sec04-detail__item + .sec04-detail__item {
  margin-top: 23px;
}

.sec04-detail__sub {
  width: 100%;
}

.sec04-detail__sub img {
  width: 100%;
}

.sec04-detail__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 8px;
}
@media (min-width: 751px) {
  .sec04-detail__note {
    text-align: left;
  }
}

.sec04-detail__text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.008em;
  margin-top: 11px;
  white-space: nowrap;
}

.sec04-detail__text a {
  text-decoration: underline;
  color: #3c3434;
}

.sec04-detail__text--02 {
  text-align: center;
  margin-top: 8px;
}
@media (min-width: 751px) {
  .sec04-detail__text--02 {
    text-align: left;
  }
}

.sec04-detail__text--02 + .sec04-detail__text--02 {
  margin-top: 2px;
}

.sec04__annotation {
  margin-top: 16px;
}

.sec04__annotation .text_list.annotation {
  font-weight: bold;
}

.sec04__annotation .text_list.annotation + .annotation {
  font-weight: normal;
  margin-top: 1rem;
}

.step-box--04 {
  margin-top: 25px;
}
@media (min-width: 751px) {
  .step-box--04 {
    margin-top: 30px;
  }
}

.sec-05 {
  background-image: url(../img/bg_sec05-sp.png);
  background-size: cover;
  background-position: top center;
  background-color: #ffa69a;
}
@media (min-width: 751px) {
  .sec-05 {
    background-image: url(../img/bg_sec05-pc.png);
  }
}

.sec-05__inner {
  padding-top: 38px;
  padding-bottom: 55px;
  position: relative;
}
@media (min-width: 751px) {
  .sec-05__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.sec-05__inner::before {
  content: "";
  width: 100%;
  height: 7px;
  border-top: 4px solid #e95656;
  border-bottom: 2px solid #e95656;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-05-heading {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec-05-heading {
    max-width: 450px;
  }
}

.sec-05-heading__title {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sec-05-heading__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  aspect-ratio: 126 / 123;
  top: 0;
  left: 0;
  background-image: url(../img/sec-title-icn05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.sec-05-heading__title img {
  width: 100%;
}

.sec-05-heading__chara {
  width: 151px;
  height: 219px;
  position: absolute;
  top: -84px;
  right: -42px;
}
@media (min-width: 751px) {
  .sec-05-heading__chara {
    top: -42px;
    right: -124px;
  }
}

.sec-05-heading__chara img {
  width: 100%;
}

.sec-05-schedule {
  background-color: #e95656;
  padding: 12px 0;
  margin-top: 13px;
  position: relative;
  z-index: 1;
}
@media (min-width: 751px) {
  .sec-05-schedule {
    margin-top: 30px;
  }
}

.sec-05-schedule__text {
  width: 100%;
  max-width: 291px;
  margin: 0 auto;
}

.sec-05-schedule__text img {
  width: 100%;
}

.step-box--05 {
  margin-top: 25px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .step-box--05 {
    margin-top: 27px;
    max-width: 490px;
  }
}

.sec05-box {
  padding: 44px 14px 24px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  margin-top: 48px;
}
@media (min-width: 751px) {
  .sec05-box {
    padding: 56px 40px 40px;
    margin-top: 55px;
  }
}

.sec05-box__title {
  width: 100%;
  max-width: 309px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 751px) {
  .sec05-box__title {
    max-width: 369px;
  }
}

.sec05-box-map {
}

.sec05-box-map__img {
  width: 100%;
  max-width: 317px;
  margin: 0 auto;
}

.sec05-box-map__img img {
  width: 100%;
}

.sec05-box-map__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.58;
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
}
@media (min-width: 751px) {
  .sec05-box-map__note {
    text-align: center;
    margin-top: 6px;
  }
}

.sec-06 {
  background-image: url(../img/bg_sec06-sp.png);
  background-size: cover;
  background-position: top center;
  background-color: #b1afa6;
}
@media (min-width: 751px) {
  .sec-06 {
    background-image: url(../img/bg_sec06-pc.png);
  }
}

.sec-06__inner {
  padding-top: 38px;
  padding-bottom: 55px;
  position: relative;
}
@media (min-width: 751px) {
  .sec-06__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.sec-06__inner::before {
  content: "";
  width: 100%;
  height: 7px;
  border-top: 4px solid #7c7a72;
  border-bottom: 2px solid #7c7a72;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-06-heading {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec-06-heading {
    max-width: 450px;
  }
}

.sec-06-heading__title {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sec-06-heading__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  aspect-ratio: 126 / 123;
  top: 0;
  right: 0;
  background-image: url(../img/sec-title-icn06.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.sec-06-heading__title img {
  width: 100%;
}

.sec-06-heading__chara {
  width: 151px;
  height: 219px;
  position: absolute;
  top: -64px;
  left: -41px;
}
@media (min-width: 751px) {
  .sec-06-heading__chara {
    top: -55px;
    left: -113px;
  }
}

.sec-06-heading__chara img {
  width: 100%;
}

.sec06-box {
  padding: 24px 14px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}
@media (min-width: 751px) {
  .sec06-box {
    padding: 40px;
  }
}

.sec06__images {
  width: 100%;
  max-width: 317px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sec06__images {
    max-width: 450px;
  }
}

.sec06__img {
  width: 100%;
}

.sec06__img img {
  width: 100%;
}

.sec06__sub {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.625;
  text-align: center;
  /* margin-top: 15px; */
}
@media (min-width: 751px) {
  .sec06__sub {
    /*  margin-top: 24px; */
  }
}

.sec06__sub span {
  display: inline-block;
  background: linear-gradient(transparent 50%, rgba(255, 226, 0, 0.35) 50%);
}

.sec06-detail {
  margin-top: 20px;
  width: 100%;
  max-width: 282px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/sec06_detail_bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 751px) {
  .sec06-detail {
    background-image: url(../img/sec06_detail_bg-pc.png);
    max-width: 490px;
  }
}

.sec06-detail__inner {
  box-sizing: border-box;
  padding: 27px 28px 26px;
}

.sec06-detail__sub {
  width: 100%;
}

.sec06-detail__sub img {
  width: 100%;
}

.sec06-detail_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.sec06-detail_list li {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.008em;
  line-height: 1.2;
  padding-bottom: 4px;
  border-bottom: 1px solid #cccccc;
}

.sec06-link {
  margin-top: 22px;
}

.sec06-link__btn {
  position: relative;
  width: 100%;
  max-width: 317px;
  margin: 0 auto;
}

/*comingsoon用*/
.sec06-link__btn {
  pointer-events: none;
}

.sec06-link__btn p.comingSoon {
  background: #0e1639;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  opacity: 0.85;
}
/*comingsoon用*/

@media (min-width: 751px) {
  .sec06-link__btn {
    max-width: 620px;
  }
}

.sec06-link__btn img {
  width: 100%;
}

.sec06-link__note {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  margin-top: 8px;
}

.link {
  background-color: #ffdee9;
}

.link__inner {
  box-sizing: border-box;
  padding: 40px 15px;
  width: 100%;
  max-width: 408px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .link__inner {
    padding: 42px 15px 46px;
  }
}

.link__title {
  width: 100%;
  max-width: 84px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .link__title {
    max-width: 112px;
  }
}

.link__title img {
  width: 100%;
}

.link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}
@media (min-width: 751px) {
  .link__list {
    gap: 8px;
    margin-top: 24px;
  }
}

.link__list li {
  width: calc(50% - 9px / 2);
}
@media (min-width: 751px) {
  .link__list li {
    width: calc(50% - 8px / 2);
  }
}

.link__list li img {
  width: 100%;
}

.link__note {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 751px) {
  .link__note {
    margin-top: 12px;
  }
}

.link__copy {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #828381;
}

.sec--photo__dummy {
  width: 40%;
  margin-inline: auto;
  margin-bottom: 5px;
}

@media (min-width: 751px) {
  .sec--photo__dummy {
    width: 20%;
  }
}

.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;
  width: 48px;
  height: 48px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  background-color: transparent;
}
.splide__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/ico_slide-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 {
  max-width: 345px;
  margin: 0 auto;
}

.VoiStock_btn p.comingSoon {
  background: rgba(56, 18, 36, 0.8);
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 95%;
  height: 85%;
  top: 50%;
  left: 50%;
  max-width: 400px;
  transform: translate(-50%, -50%);
  border-radius: 100vmax;
}
