@charset "UTF-8";
/* CSS Document */

/* PC用設定 */
@media screen and (min-width: 751px) {
}

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
  --text-color: #2a1010;
  --sub-text-color: #606060;
  --text-link: #2689fd;
  --primary-color: #947558;
  --secondary-color: #c497a1;
  --accent-color: #ac385a;
  --red-color: #d00000;
  --bg-color: #fdf7f8;
  --bg02-color: #fffdf8;
  --border-color: #aaaaaa;
  --grad-color: linear-gradient(90deg, #e24d01 0%, #f57710 100%);
  --grad02-color: linear-gradient(90deg, #f57710 0%, #e24d01 100%);
  --font-serif: "Noto Serif JP", 游明朝, 游明朝体, "Yu Mincho", YuMincho, serif;
  --scale-factor: 1; /* 通常時 */
  --btn-base-color: #ccc; /* アコーディオンボタンのベース色 */
  --btn-text-color: #000; /* アコーディオンボタンのテキスト色 */
}
/* 背景固定 */
/* body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) no-repeat center center;
	background-size: cover;
} */

.main__wrap {
  padding-top: 66px;
  background-color: #fff;
  color: var(--text-color);
  line-height: 1.5;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  background-image: url(../img/bg.jpg);
  background-size: 200%;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
.main__wrap * {
  box-sizing: border-box;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

a:hover img {
  opacity: 1;
}

.container {
  width: 92%;
  margin: 0 auto;
  max-width: 900px;
}
.indent li,
.txt-note.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.fc-red {
  color: var(--red-color);
}
.fc-accent {
  color: var(--red-color);
}
.fc-white {
  color: #fff;
}

.txt-link {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: bold;
}
.txt-note {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: var(--text-color);
}
.txt-note.fz-s {
  font-size: 11px;
}
.note__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.note__list li {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
}
.note__list li.fc-red {
  color: var(--red-color);
}

.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.bold {
  font-weight: bold;
}
.auto_center {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.credit {
  font-size: 10px;
  padding-top: 8px;
  text-align: center;
  background-color: #fff;
}

.fz-smaller {
  font-size: 0.8em;
}
.fz-larger {
  font-size: 1.2em;
}

.fontZenOldMincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}
.fontLibreBodoni {
  font-family: "Libre Bodoni", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  :root {
    --scale-factor: 1.15; /* 1.15倍に */
  }
  a img {
    transition: all 0.5s;
  }
  .main__wrap {
    padding-top: 90px;
  }
  .pc_center {
    text-align: center;
  }
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.js__fadeIn {
  opacity: 0; /* 最初は非表示 */
  transition: opacity 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeIn.is-inview {
  opacity: 1;
}

/* フェードアップ */
.js__fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(15px); /* 下にXXpxの位置から */
  transition:
    opacity 0.8s,
    transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* animationフェードダウン */
.js__fadeDown {
  opacity: 0; /* 最初は非表示 */
  transition:
    opacity 1s,
    transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeDown.is-inview {
  animation-name: fadeInDown;
  animation-duration: 1.3s;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -8%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ブラー*/
.js__blurAnime {
  opacity: 0; /* 最初は非表示 */
}
.js__blurAnime.is-inview {
  animation-name: blurAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

/* flipLeft */
.js__flipLeft {
  opacity: 0;
  transition:
    opacity 0.8s,
    transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__flipLeft.is-inview {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
  transition-delay: 0.8s;
  animation-delay: 0.3s;
}
@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }

  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

/* スライド（左から右） */
.js__slide {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: all 0.8s;
}
.js__slide.is-inview {
  animation-name: anime_left_to_right;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes anime_left_to_right {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/* スライド（左上から右下） */
.js__diagonal {
  /* 初期状態：左上の1点に集約 */
  clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  transition: all 0.8s;
}

.js__diagonal.is-inview {
  animation-name: anime_diagonal_wipe;
  animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-timing-function: ease;
}

@keyframes anime_diagonal_wipe {
  0% {
    /* 左上の外側に隠れている状態（三角形） */
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  /* 50% {
    clip-path: polygon(0% 0%, 60% 0%, 0% 100%, 0% 0%);
  } */
  100% {
    /* 右下の外側まで突き抜けることで、角が埋まる違和感を消す */
    /* 200%まで飛ばすのがポイントです */
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
  }
}

.js__listFadeUp li {
  opacity: 0;
  transform: translateY(5px);
}
.js__listFadeUp.is-inview li {
  animation-name: listFadeUp;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.js__listFadeUp li:nth-child(1) {
  animation-delay: 0s;
}
.js__listFadeUp li:nth-child(2) {
  animation-delay: 0.2s;
}
.js__listFadeUp li:nth-child(3) {
  animation-delay: 0.4s;
}
.js__listFadeUp li:nth-child(4) {
  animation-delay: 0.6s;
}
.js__listFadeUp li:nth-child(5) {
  animation-delay: 0.8s;
}
.js__listFadeUp li:nth-child(6) {
  animation-delay: 1s;
}

@keyframes listFadeUp {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.is-transition-delayed01 {
  transition-delay: 0.4s;
}
.is-transition-delayed02 {
  transition-delay: 0.6s;
}
.is-transition-delayed03 {
  transition-delay: 0.8s;
}
.is-animation-delayed {
  animation-delay: 0.4s;
}

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
  display: none;
}
.acc__block01 .acc__body {
  margin-top: 16px;
  color: var(--text-color);
}
.acc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  padding: 6px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.acc__block01 .acc__btn {
  width: fit-content;
  margin: 0 auto;
  background-color: var(--text-color);
  border-radius: 20px;
}
.acc__btn_text {
  font-weight: bold;
  color: #ffffff;
}
.acc__btn_plus {
  background-color: #ffffff;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  position: relative;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
  content: "";
  background-color: var(--text-color);
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.acc__btn_plus::after {
  transform: translate(-50%, -50%);
}
.acc__btn_plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.acc__btn.open .acc__btn_plus::before {
  transform: translate(-50%, -50%);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.voice-btn {
  position: relative;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .voice-btn__pc {
    background-color: var(--primary-color, #b3b3b3);
    border: 1px solid #000000;
    padding: 16px;
  }
  .voice-btn__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .voice-btn__txt {
    color: #fff;
    padding-right: 16px;
  }
  .voice-btn__txt .txt01 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
  }
  .voice-btn__img {
    background-color: #fff;
    width: 120px;
    height: 120px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
  }
}

/* サイズをかえる書き方 */
.SD01 {
  width: calc(81px * var(--scale-factor));
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */

.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.menu__list li {
  width: calc((100% - 20px) / 2);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .menu__list {
    gap: 30px;
  }
  .menu__list li {
    width: calc((100% - 90px) / 4);
    /* max-width: 130px; */
  }
  .menu__list li a {
    transition: all 0.5s;
    display: block;
  }
  .menu__list li a:hover {
    transform: translateY(-5px);
  }
}

/* ------------------------------------------------------------
step
------------------------------------------------------------ */
.step__wrap {
  /* padding: 16px;
  border: 1px solid var(--primary-color); */
  width: 100%;
}
.step__list {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
}
.step__list + .step__list {
  margin-top: 10px;
  /* padding-top: 8px; */
  /* border-top: 1px solid var(--border-color); */
}
.step__list dt {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  line-height: 1;
  width: 52px;
  border-radius: 2px;
  padding: 5px 0;
  text-align: center;
  font-size: 12px;
}
.step__list dd {
  width: calc(100% - 52px - 8px);
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
howto
------------------------------------------------------------ */
.icon_phone {
  width: 46px;
  display: block;
  margin: 16px auto;
}
/* splide */
.howto_splide {
  position: relative; /* ここで基準にする */
}
/* 矢印を絶対配置でリストの上に重ねる */
.howto_splide .splide__arrow {
  position: absolute;
  top: 50%; /* 縦中央 */
  transform: translateY(-50%); /* 上下補正 */
  background: none;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  z-index: 10; /* スライドの上に表示 */
  cursor: pointer;
}
/* 左右の位置 */
.howto_splide .splide__arrow--prev {
  left: -3px; /* 左端 */
}
.howto_splide .splide__arrow--next {
  right: -3px; /* 右端 */
}
/* 画像だけ表示 */
.howto_splide .splide__arrow img {
  display: block;
  width: 29px; /* お好みで調整 */
  height: auto;
}
/* ページネーションリセット */
.howto_splide .splide__pagination {
  all: unset;
  display: flex !important; /* 強制表示 */
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}
.howto_splide .splide__pagination__page {
  all: unset;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5f5f5;
}
.howto_splide .splide__pagination__page.is-active {
  background: var(--primary-color);
}

/* スライド自体をフレックスコンテナに */
.howto_splide .slide__box {
  display: flex; /* フレックス化 */
  flex-direction: column; /* 上下方向 */
  justify-content: center; /* 縦中央 */
  align-items: center; /* 横中央 */
  text-align: center; /* テキスト中央寄せ */
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px 8px;
}
.howto_splide .splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 93%;
  margin: 0 auto;
}
.howto_splide .slide__box--inner p {
  font-weight: bold;
  font-size: 15px;
}
.img-btn_VT01 {
  width: 172px;
  margin: 0 auto 8px;
}
.plate-bk {
  background-color: #000;
  color: #fff;
  border-radius: 40px;
  padding: 3px 12px;
  line-height: 1.2;
  margin-bottom: 2px;
  margin-top: 2px;
}
.aori-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
.aori-txt::before,
.aori-txt::after {
  width: 2px;
  height: 24px;
  background-color: #000;
  content: "";
}
.aori-txt::before {
  transform: rotate(-35deg);
  margin-right: 20px;
}
.aori-txt::after {
  transform: rotate(35deg);
  margin-left: 20px;
}
.slide__box--inner.flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.flex-left {
  width: 80%;
  flex-shrink: 0;
}
.slide__box--inner .icon {
  width: 36px;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .flex-left {
    width: auto;
  }
}

/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap {
  background-color: #fff;
}
.oshitabi_btn--block {
  padding: 40px 30px;
}
.oshitabi_btn {
  display: block;
  border: 3px solid #000000;
  color: #000000;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  position: relative;
}
.oshitabi_btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .oshitabi_btn--block {
    max-width: 640px;
    margin: 0 auto;
  }
  .oshitabi_btn {
    transition: all 0.3s;
    width: 360px;
    margin: 32px auto;
  }
  .oshitabi_btn:hover {
    background-color: #000000;
    color: #fff;
  }
  .oshitabi_btn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: 0.3s;
  width: 56px;
  z-index: 99;
  opacity: 0; /*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active {
  opacity: 1;
}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute {
  position: absolute;
  top: -70px;
  bottom: auto;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .pagetop-btn {
    right: 24px;
  }
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive {
  pointer-events: none;
}
.cs {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
  padding: 6px;
  font-size: 26px;
  text-shadow: 2px 2px 3px #ffffff;
}
.event-end {
  color: var(--red-color);
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: 2px solid var(--red-color);
  padding: 6px;
}
.event-end-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width: 751px) {
  .cs.event-end-block {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  /* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}

/* ------------------------------------------------------------
アキ調整
------------------------------------------------------------ */

.mgbS {
  margin-bottom: 8px;
} /* PC:8px */
.mgbM {
  margin-bottom: 16px;
} /* PC:24px */
.mgbL {
  margin-bottom: 24px;
} /* PC:32px */
.mgbLL {
  margin-bottom: 32px;
} /* PC:40px */

.mgtSS {
  margin-top: 4px;
}
.mgtS {
  margin-top: 8px;
}
.mgtM {
  margin-top: 16px;
} /* PC:24px */
.mgtL {
  margin-top: 24px;
} /* PC:32px */
.mgtLL {
  margin-top: 32px;
} /* PC:40px */

.pdtS {
  padding-top: 8px;
} /* PC:8px */
.pdtM {
  padding-top: 16px;
} /* PC:24px */
.pdtL {
  padding-top: 24px;
} /* PC:32px */

.pdbS {
  padding-bottom: 8px;
} /* PC:8px */
.pdbM {
  padding-bottom: 16px;
} /* PC:24px */
.pdbL {
  padding-bottom: 24px;
} /* PC:32px */

/* PC用設定 */
@media screen and (min-width: 751px) {
  .mgbM {
    margin-bottom: 24px;
  }
  .mgbL {
    margin-bottom: 32px;
  }
  .mgbLL {
    margin-bottom: 40px;
  }

  .mgtM {
    margin-top: 24px;
  }
  .mgtL {
    margin-top: 32px;
  }
  .mgtLL {
    margin-top: 40px;
  }

  .pdtM {
    padding-top: 24px;
  }
  .pdtL {
    padding-top: 32px;
  }

  .pdbM {
    padding-bottom: 24px;
  }
  .pdbL {
    padding-bottom: 32px;
  }
}

.date__wrap {
  width: 78.6%;
  margin-inline: auto;
  margin-top: 16px;
  padding-block: 4px;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.date__wrap dl {
  padding: 4px 8px;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.date__wrap dt {
  font-size: 14px;
  color: var(--bg02-color);
  font-weight: bold;
}
.date__wrap dd {
  width: 100%;
  /* padding-block:4px; */
  background: var(--bg02-color);
  color: var(--primary-color);
  text-align: center;
  font-weight: 900;
}
.date__wrap dd span {
  font-size: 18px;
}

.seo__wrap {
  padding-block: 56px;
  background-image: url(../img/bg-note01.png);
  background-size: cover;
}
.seo__wrap p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 32px;
}

.menu__wrap {
  margin-top: 26px;
}
.menu__wrap .container p {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
}
.menu__wrap .container p::before {
  content: "";
  background-image: url(../img/deco01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 89px;
  height: 26px;
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translate(-50%, 0);
}
.menu__wrap .menu__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 10px;
  margin-inline: auto;
}
.menu__wrap .menu__list li {
  width: 48.6%;
}

.limited__wrap {
  margin-top: 56px;
}
.box__period {
  display: flex;
  width: 91%;
  padding: 4px 0;
  margin-top: 8px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.box__period dl {
  display: flex;
  justify-content: center;
  flex-direction: row;
  background: var(--primary-color);
  width: 100%;
  padding-block: 4px;
  font-weight: 700;
  line-height: 16.8px; /* 120% */
  color: #ffffff;
}
.wrapper__inner-contents,
.keyholder__inner-contents,
.ar__inner-contents {
  display: flex;
  padding: 4px 0;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-top: 8px solid var(--primary-color, #947558);
  border-bottom: 8px solid var(--primary-color, #947558);
  background: var(--bg-color02, #fffdf8);
}
.inner__contents {
  display: flex;
  padding: 24px 15px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-top: 1px solid var(--primary-color, #947558);
  border-bottom: 1px solid var(--primary-color, #947558);
}
.limited__wrap .wrapper__inner-contents,
.items__wrap .keyholder__inner-contents,
.voice__wrap .ar__inner-contents {
  margin-top: 24px;
}
.wrapper__subttl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
}
.wrapper__subttl::before {
  content: "";
  background-image: url(../img/deco02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 89px;
  height: 26px;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translate(-50%, 0);
}
h3,
hgroup span {
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--primary-color);
}
.wrapper__subttl hgroup {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
hgroup span {
  font-size: 14px;
}
.wrapper__actor-box {
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid var(--bg-color, #fdf7f8);
  background: #fff;
}
.wrapper__actor-box > dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.date-actor-box {
  display: flex;
  padding: 4px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 4px;
  background: var(--secondary-color, #c497a1);
  font-weight: 700;
  line-height: 21px; /* 150% */
  color: #fff;
  text-align: center;
}
.actor-box ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 0;
  justify-content: center;
  align-self: stretch;
}
.actor-box ul li {
  position: relative;
  width: calc(100% / 3);
}
.actor-box.actor-box__sp ul {
  margin: 0 16.7%;
  gap: 16px 0;
}
.actor-box.actor-box__sp ul li {
  width: calc(100% / 2);
}
.actor-box ul li dl {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.actor-box dt {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 46.3%;
  height: 46.3%;
}
.img__actor-box {
  margin-top: 24px;
  width: 82.5%;
  margin-inline: auto;
}
.actor-box dd {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 11px;
  color: var(--text-color);
}
.box__wallpaper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.box__wallpaper .wrapper__subttl + div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  background-image: url(../img/bg-note02.png);
  background-size: cover;
}
.box__wallpaper .wrapper__subttl + div p {
  margin-top: 4px;
}

.items__wrap,
.voice__wrap {
  margin-top: 64px;
}
.text__items-wrap {
  width: 93.6%;
}
.box__keyholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.box__keyholder dt {
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 15px;
}
.box__keyholder dd div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 91.7%;
  margin-inline: auto;
  background-image: url(../img/bg-note02.png);
  background-size: contain;
}
/* .box__keyholder dd div img {
  width: 65.7%;
} */
.box__keyholder dd div .note__list {
  align-items: center;
}
.box__keyholder + ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.box__keyholder + ul li {
  width: 100%;
}
.box__keyholder + ul li dt {
  display: flex;
  padding: 2px 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 4px 4px 0 0;
  background: var(--secondary-color);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
}
.box__keyholder + ul li dd {
  display: flex;
  padding: 2px 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #fff;
  font-weight: 700;
  line-height: 21px; /* 150% */
}
.box__keyholder-place {
  position: relative;
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border: 1px solid var(--sub-color, #ad947e);
  background: #fff;
}
.box__keyholder-place::before,
.box__keyholder-place::after {
  content: "";
  background-image: url(../img/deco03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 98%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  aspect-ratio: 614 / 90;
}
.box__keyholder-place::before {
  top: 4px;
}
.box__keyholder-place::after {
  bottom: 4px;
  transform: translate(-50%, 0) scale(1, -1);
}
.ttl__keyholder-place {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 24px;
}
.contents__keyholder-place {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contents__keyholder-place dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.contents__keyholder-place dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 2px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px; /* 175% */
}
.contents__keyholder-place dt + dd {
  color: var(--text-color);
  font-weight: 700;
  line-height: 21px; /* 150% */
}
.photo-slide {
  max-width: 490px;
  width: 100%;
  margin: 0 auto 0;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.sec--photo__splide__slide span {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.36;
  text-align: center;
  color: #fff;
  padding: 2px 4px;
  background-color: #000;
  white-space: nowrap;
}
.splide__slide__name {
  margin-block: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.025em;
  color: var(--primary-color);
}
.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: var(--accent-color);
  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--next {
  scale: -1 1;
}
.splide__num {
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  bottom: 13px;
  pointer-events: none;
  left: 50%;
  translate: -50%;
}
.splide__num__index,
.splide__num__total {
  margin-inline: 7px;
}
.splide__arrow svg {
  display: none;
}
.sec--photo__splide {
  margin-bottom: 16px;
  padding-bottom: 64px;
  margin-top: 0px;
}
.sec--photo__splide-container__note {
  text-align: center;
  font-size: 12px;
  line-height: 1.42;
}
.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;
}
.splide__slide img {
  vertical-align: bottom;
}
.sec--photo__splide__slide figure {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
.ar__inner-contents .inner__contents > div .text__items-wrap {
  width: 100%;
}
.ar__inner-contents .inner__contents > div .txt-note {
  margin-top: 8px;
}
.voice__wrap .acc__block02 {
  width: 100%;
}
.voice__wrap .acc__block02 .acc__btn {
  background: var(--accent-color);
}
.voice__wrap .acc__block02 .acc__body {
  background: #ffffff;
  padding: 10px;
  border: 1px solid var(--accent-color);
}
.voice__wrap .acc__block02 dl {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  align-self: stretch;
}
.voice__wrap .acc__block02 dl:last-child {
  margin-bottom: 0;
}
.voice__wrap .acc__block02 .acc__btn_plus::before,
.voice__wrap .acc__block02 .acc__btn_plus::after {
  background-color: var(--accent-color);
}
.voice__wrap .acc__body dt {
  background: var(--accent-color);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  width: 52px;
  padding: 4px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
}

.keihan__wrap {
  margin-top: 32px;
  padding-bottom: 32px;
  background-size: 7%;
  background-color: rgba(137, 102, 70, 0.97);
  background-blend-mode: lighten;
  background-image: url(../img/bg_keihan.png);
}
.keihan__wrap h2 {
  padding-top: 32px;
}
.keihan__wrap h2 + div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 253, 248, 0.8);
  width: 92%;
  margin: 0 auto;
  max-width: 800px;
  padding: 24px 16px;
}
.keihan__wrap h2 + div .txt-note {
  text-align: center;
}

.movie__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 40px 15px 24px;
  background: url(../img/bg_movie.jpg);
}
.movie__wrap h2 {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}
.movie__wrap dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.movie__wrap dt {
  position: relative;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.movie__wrap dt::before,
.movie__wrap dt::after {
  content: "";
  background-image: url(../img/deco04.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 22px;
  height: 37px;
  position: absolute;
  top: 0;
}
.movie__wrap dt::before {
  left: 10%;
}
.movie__wrap dt::after {
  transform: scale(-1, 1);
  right: 10%;
}
.movie__wrap dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72.4%;
  margin-inline: auto;
}
.movie__wrap dd span {
  display: block;
  font-size: 12px;
  color: #ffffff;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .mv__wrap {
    position: relative;
    max-width: 1600px;
    margin-inline: auto;
  }
  .mv__block h1 {
    max-width: 1600px;
    margin-inline: auto;
  }
  .date__wrap {
    position: absolute;
    bottom: 53px;
    right: 35px;
    width: 290px;
  }
  .seo__wrap {
    background: url(../img/bg-note01_pc.png);
    background-size: cover;
    width: 700px;
    background-position: -70px -50px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 161px;
  }
  .seo__wrap p {
    font-size: 22px;
    line-height: 38px;
  }
  .menu__wrap {
    margin-top: 46px;
  }
  .menu__wrap .container p {
    font-size: 28px;
  }
  .menu__wrap .container p::before {
    width: 108px;
    height: 32px;
    bottom: 40px;
  }
  .menu__wrap .menu__list {
    width: 86.6%;
    margin-top: 16px;
  }
  .menu__wrap .menu__list li {
    width: 24%;
    /* max-width: 188px; */
  }
  .limited__wrap {
    margin-top: 72px;
  }
  .limited__wrap h2,
  .items__wrap h2,
  .voice__wrap h2,
  .keihan__wrap h2 {
    width: 540px;
    margin-inline: auto;
  }
  .limited__wrap .box__period,
  .items__wrap .box__period,
  .voice__wrap .box__period {
    width: 427px;
  }
  .box__period {
    margin-top: 16px;
  }
  .box__period dl {
    font-size: 18px;
  }
  .limited__wrap .wrapper__inner-contents,
  .items__wrap .keyholder__inner-contents,
  .voice__wrap .ar__inner-contents {
    width: 650px;
    margin-inline: auto;
  }
  h3 {
    font-size: 24px;
  }
  hgroup span {
    font-size: 18px;
  }
  .wrapper__subttl {
    gap: 24px;
  }
  .wrapper__subttl p {
    font-size: 16px;
    text-align: center;
  }
  .wrapper__actor-box {
    width: 490px;
    margin-inline: auto;
    padding: 20px;
  }
  .actor-box ul {
    flex-wrap: nowrap;
  }
  .actor-box ul li {
    display: flex;
    justify-content: center;
    width: 112px;
  }
  .actor-box ul li dl {
    width: 112px;
    align-items: center;
  }
  .actor-box dt {
    width: 50px;
    height: 50px;
  }
  .img__actor-box {
    margin-top: 30px;
  }
  .actor-box dd {
    width: 100px;
  }
  .inner__contents {
    gap: 32px;
    padding: 40px 15px;
  }
  .limited__wrap .box__wallpaper .note__list {
    width: 490px;
  }
  .box__wallpaper .wrapper__subttl + div {
    width: 420px;
    margin-inline: auto;
  }
  .voice-btn__flex {
    width: 500px;
    margin-inline: auto;
    border-radius: 20px;
    border: none;
  }
  .voice-btn__txt .txt01 {
    font-size: 15px;
  }
  .voice-btn__img {
    width: 100px;
    height: 100px;
  }
  .cs {
    font-size: 20px;
    color: var(--red-color);
    line-height: 25px;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  }
  .voice-btn__block .pc_view + .txt-note {
    width: 400px;
    margin-inline: auto;
  }
  .items__wrap,
  .voice__wrap {
    margin-top: 80px;
  }
  .text__items-wrap {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .box__keyholder dd div img {
    width: 458px;
  }
  .box__keyholder dt {
    font-size: 18px;
  }
  .box__keyholder {
    gap: 18px;
  }
  .box__keyholder dd div {
    gap: 18px;
  }
  .box__keyholder + ul {
    width: 490px;
    gap: 16px;
  }
  .box__keyholder + ul li dt {
    font-size: 14px;
    line-height: 21px;
  }
  .box__keyholder + ul li dd {
    font-size: 16px;
    line-height: 24px;
  }
  .box__keyholder-place {
    padding: 24px;
    width: 490px;
    margin-inline: auto;
  }
  .contents__keyholder-place dt + dd {
    font-size: 16px;
  }
  .items__wrap .box__keyholder-place + .note__list {
    width: 490px;
    margin-inline: auto;
  }
  .box__keyholder dd div {
    width: 457px;
    background-repeat: no-repeat;
  }
  .ttl__keyholder-place {
    font-size: 18px;
  }
  .sec--photo__splide__slide figure {
    width: 132px;
  }
  .voice__wrap .acc__block02 {
    width: 490px;
  }
  .voice__wrap .acc__block02 .acc__body {
    padding: 20px;
  }
  .voice__wrap .voice-btn__block + .note__list {
    width: 490px;
  }
  .voice__wrap .acc__block01 {
    width: 490px;
  }
  .keihan__wrap {
    background-size: 3%;
  }
  .keihan__wrap h2 + div {
    width: 650px;
    margin-top: 16px;
  }
  .keihan__wrap .box__period {
    width: 330px;
  }
  .keihan__wrap .box__period + div {
    width: 290px;
    margin-inline: auto;
  }
  .movie__wrap {
    gap: 32px;
    padding: 64px 15px;
  }
  .movie__wrap h2 {
    font-size: 42px;
  }
  .movie__wrap h2 + div {
    width: 440px;
  }
  .movie__wrap dl {
    width: 338px;
  }
  .movie__wrap dd {
    width: 251px;
  }
  .box__keyholder-place::before,
  .box__keyholder-place::after {
    background-image: url(../img/deco03_pc.png);
    aspect-ratio: 964/90;
  }
  .voice-btn__pc {
    position: relative;
    background: url(../img/bg_voice-btn_pc.png);
    background-size: cover;
    padding: 25px;
  }
  .voice-btn__pc::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #ffdd86;
    border-radius: 16px;
  }
  .acc__block01 .acc__body {
    margin-top: 8px;
  }
}
