@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;
    background: #a72935;
  }
}
:root {
  --text-color: #000000;
  --primary-color: #2ebcad;
  --bg-color: #ffffff;
  --red-color: #ee0000;
  --accent-color: #ffff00;
  --zenkaku-gothic: "Zen Maru Gothic", sans-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: 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;
}
/*************
汎用
*************/
/* ボイストック枠 */
.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) {
}
/*************
〇〇〇〇
*************/
@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;
  }
}

/*==============================
# unique
==============================*/
.content_wrap {
  overflow: hidden;
}

.l-inner {
  box-sizing: border-box;
  padding: 0 15px;
  max-width: 710px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 751px) {
  .l-pc__inner {
    max-width: 392px;
    margin: 0 auto;
  }
}

.l-pink__box {
  background-color: #fad7d7;
  border-radius: 11px;
  padding: 18px 14px 26px;
}

.bg__pink {
  background-color: #ffe8e8;
  padding-top: 50px;
  padding-bottom: 75px;
  background-image: url(../img/net_pink.png);
  background-repeat: repeat;
  background-position: top center;
  background-size: 375px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -800px;
  margin-right: -800px;
  padding-left: 800px;
  padding-right: 800px;
  margin-top: -10.6vw;
  position: relative;
}
@media (min-width: 751px) {
  .bg__pink {
    margin-left: -1500px;
    margin-right: -1500px;
    padding-left: 1500px;
    padding-right: 1500px;
    margin-top: -7vw;
    padding-bottom: 118px;
  }
}

.intro__inner {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.intro__schedule {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.intro__text {
  font-family: var(--zenkaku-gothic);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  text-align: center;
  color: #b71c32;
  margin-top: 20px;
}
@media (min-width: 751px) {
  .intro__text {
    margin-top: 14px;
  }
}

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

.intro-links-top {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
}
@media (min-width: 751px) {
  .intro-links-top {
    max-width: none;
  }
}

.intro-links-top__btn {
  width: 50%;
}

.intro-links-bottom__btn {
  width: 100%;
  max-width: 256px;
  margin: 2px auto 0;
}
@media (min-width: 751px) {
  .intro-links-bottom__btn {
    max-width: 322px;
    margin: 3px auto 0;
  }
  .intro-links-top__btn,
  .intro-links-bottom__btn {
    transition-duration: 0.3s;
  }
  .intro-links-top__btn:hover,
  .intro-links-bottom__btn:hover {
    transform: translateY(8px);
  }
}

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

.movie__title {
  width: 100%;
  max-width: 225px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .movie__title {
    max-width: 295px;
  }
}

.movie__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.56;
  color: #410911;
  margin-top: 12px;
}

.movie__img {
  margin-top: 20px;
  width: 100%;
}

.movie-schedule {
  margin-top: 13px;
}

.movie-schedule__title {
}

.movie-schedule__title span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #410912;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.movie-schedule__list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.movie-schedule-item {
  border-bottom: 1px dashed #b71c32;
  display: flex;
  align-items: center;
  gap: 9px;
}

.movie-schedule-item__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.009em;
  color: #fff;
  padding: 4.5px 16px;
  border-radius: 14px;
  background-color: #b71c32;
}

.movie-schedule-item__text {
  font-size: 13px;
  font-weight: 500;
  color: #410912;
}

.movie-schedule-item__text span {
  font-size: 16px;
}

.goods {
  margin-top: 50px;
}

.goods__title {
  width: 100%;
  max-width: 225px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .goods__title {
    max-width: 299px;
  }
}

.goods__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.56;
  color: #410911;
  margin-top: 12px;
}

.goods-item {
  margin-top: 35px;
  padding-left: 14px;
  position: relative;
  /* min-height: 255px; */
}

.goods-item--02 {
  margin-top: 38px;
}

.goods-item__tag {
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 3;
}

.goods-item__tag span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 8px 24px;
  background-color: #b71c32;
  border-radius: 12px;
  position: relative;
}

.goods-item__tag span::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f8f4cc;
  border: 1px solid #b71c32;
  border-radius: 12px;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: -1;
}

.goods-item__box {
  padding: 15px 20px 7px;
  background-color: #fcf2f2;
  border-radius: 18px;
  position: relative;
}

.goods-item--02 .goods-item__box {
  padding-top: 22px;
}

.goods-item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #410912;
  padding-left: 55px;
}
@media (min-width: 751px) {
  .goods-item__text {
    padding-left: 0;
    max-width: 200px;
    margin: 0 auto;
  }
}

.goods-item__img {
  margin-left: auto;
  margin-right: auto;
}

.goods-item--01 .goods-item__img {
  margin-top: 10px;
  width: 110px;
}

.goods-item--02 .goods-item__img {
  margin-top: 16px;
  width: 180px;
}

.goods-item__note {
  font-size: 12px;
  font-weight: 400;
  text-align: right;
  color: #410912;
  padding-right: 45px;
}
@media (min-width: 751px) {
  .goods-item__note {
    text-align: center;
    padding-right: 0;
  }
}

.goods-item--01 .goods-item__note {
  margin-top: 16px;
}
@media (min-width: 751px) {
  .goods-item--01 .goods-item__note {
    margin-top: 40px;
  }
}

.goods-item--02 .goods-item__note {
  margin-top: 23px;
}
@media (min-width: 751px) {
  .goods-item--02 .goods-item__note {
    margin-top: 48px;
  }
}

.goods-item__num {
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #98d8c8;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: #410912;
  line-height: 1;
}
@media (min-width: 751px) {
  .goods-item__num {
    bottom: 26px;
    right: 44px;
  }
}

.goods-item__num span {
  font-size: 18px;
  font-weight: 700;
}

.goods-annotation {
  margin-top: 16px;
}
@media (min-width: 751px) {
  .goods-annotation {
    margin-top: 20px;
  }
}

.goods-annotation__title {
  font-size: 12px;
  color: #410912;
  text-align: center;
}

.goods-annotation__lead {
  font-size: 12px;
  color: #410912;
}

.goods-privacy {
  margin-top: 20px;
}

.goods-privacy__btn {
  display: flex;
  width: 200px;
  height: 33px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #410912;
  gap: 5px;
  margin: 0 auto;
  cursor: pointer;
}

.goods-privacy__btn span {
  width: 20px;
  height: 20px;
  position: relative;
}

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

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

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

.goods-privacy__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.025em;
  color: #410912;
  margin-top: 7px;
  display: none;
}

.goods-privacy__text a {
  text-decoration: underline;
}

.goods-join {
  margin-top: 20px;
}

.goods-join__btn {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #410912;
  padding: 8px 0;
  background-color: #98d8c8;
  position: relative;
  cursor: pointer;
}

.goods-join__btn span {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(-50%, -50%);
}

.goods-join__btn span::before,
.goods-join__btn span::after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #9c93bd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  border-radius: 2px;
}

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

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

.goods-join__box {
  margin-top: 12px;
  border: 1px solid #420b13;
  padding: 12px;
  display: none;
}

.goods-join__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.goods-join-item:not(:last-child) {
  padding-bottom: 8px;
  border-bottom: 1px solid #420b13;
}

.goods-join-item__contents {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.goods-join-item__step {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #410912;
  background-color: #98d8c8;
  border-radius: 2px;
  width: 60px;
  padding: 2px 0;
  flex-shrink: 0;
}

.goods-join-item__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #410912;
  flex: 0 1 100%;
}

.goods-join-item__text span {
  font-weight: 500;
}

.goods-join-item__note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 12px;
  color: #410912;
  text-indent: -1em;
  padding-left: 1em;
}

.info {
  position: relative;
  margin-top: -40px;
}
@media (min-width: 751px) {
  .info {
    margin-top: -80px;
  }
}

.info__title {
  width: 100%;
}

.info__contents {
  padding-top: 80px;
  padding-bottom: 6px;
  background-color: #98d8c8;
  background-image: url(../img/net_pink.png);
  background-repeat: repeat;
  background-position: top center;
  background-size: 375px;
  margin-top: -40px;
}
@media (min-width: 751px) {
  .info__contents {
    padding-top: 120px;
    padding-bottom: 15px;
  }
}

.info__box {
  padding: 24px 14px 22px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 751px) {
  .info__box {
    padding: 50px 14px 22px;
  }
}

.info-item:not(:last-child) {
  padding-bottom: 40px;
  margin-bottom: 35px;
  background-image: url(../img/line.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: contain;
}
@media (min-width: 751px) {
  .info-item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.info-item__title {
  font-family: var(--zenkaku-gothic);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #b71c32;
}
.info-item__title.info-item__title-release {
  width: 31.4%;
}
.info-item__title.info-item__title-live {
  width: 15.8%;
}
.info-item__title.info-item__title-profile {
  width: 27.1%;
}

.info-release {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
}

.info-release__img {
  flex: 0 0 44%;
  margin-top: 6px;
}
@media (min-width: 751px) {
  .info-release__img {
    flex: 0 0 50%;
  }
}

.info-release__contents {
  flex: 0 1 100%;
}

.info-release__new span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  color: #410912;
  padding-right: 1em;
}

.info-release__new span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
}

.info-release__date {
  font-size: 14px;
  font-weight: 400;
  color: #410912;
  margin-top: 2px;
}

.info-release__sub {
  font-size: 14px;
  font-weight: 400;
  color: #410912;
}

.info-release__title {
  font-size: 16px;
  font-weight: 700;
  color: #410912;
}

.info-release__link {
  margin-top: 2px;
  max-width: 165px;
  text-align: center;
}
@media (min-width: 751px) {
  .info-release__link {
    max-width: 182px;
  }
}

.info-release__btn {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #b71c32;
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 7px 0;
  box-shadow: 2px 2px 3px rgba(131, 102, 107, 0.4);
}

.info-release__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #410912;
}

.info-desc {
  margin-top: 11px;
}

.info-desc__title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #410912;
}

.info-desc__list {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-desc-item:not(:last-child) {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(152, 216, 200, 0.5);
}

.info-desc-item__text {
  font-size: 14px;
  font-weight: 400;
  color: #410912;
}

.info-desc-item__text span {
  font-size: 12px;
}

.info-desc-item__text a {
  font-weight: 700;
  text-decoration: underline;
  color: #410912;
}

.info-desc-item__list li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #410912;
}

.info-desc-item__price {
  font-size: 14px;
  font-weight: 500;
  color: #410912;
  text-align: right;
}

.info-desc-item__note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #410912;
}

.info-live {
  margin-top: 20px;
}

.info-live__img {
  width: 100%;
}

.info-live__sub {
  font-size: 12px;
  font-weight: 400;
  color: #410912;
  margin-top: 11px;
}

.info-live__lead {
  font-size: 16px;
  font-weight: 400;
  color: #410912;
}

.info-live__title {
  font-size: 16px;
  font-weight: 700;
  color: #410912;
}

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

.info-live__btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
}
@media (min-width: 751px) {
  .info-live__btn {
    max-width: 370px;
  }
}

.info-profile {
  margin-top: 20px;
}

.info-profile__img {
  width: 100%;
  max-width: 218px;
  margin: 0 auto;
}

.info-profile__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #410912;
  margin-top: 30px;
}

.info-profile__link {
  margin-top: 30px;
  text-align: center;
}

.info-profile__btn {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

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

@media (min-width: 751px) {
  .qr_wrap {
    background-color: #98d8c8;
    border-radius: 10px;
    border: 3px solid #fff;
  }
}

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

@media (min-width: 751px) {
  .qr_text p {
    color: #410912;
    font-size: 14px;
  }
}

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

ul.text_list.annotation li {
  color: #410912;
}

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

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

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

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

.caution_acc .acc_body a {
  text-decoration: underline;
}

.back_to_top.show {
  display: block;
  pointer-events: auto;
  opacity: 1;
}
.back_to_top {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 5px;
  bottom: 8px;
  width: 84px;
  z-index: 1000;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
  transition: all 0.5s;
}
