@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Antique+Soft&display=swap");

/*************
FMT
*************/
:root {
  --text-color: #333333;
  --sub-text-color: #606060;
  --text-link: #11bdb7;
  --primary-color: #5d4a24;
  --secondary-color: #c9af66;
  --accent01-color: #007f94;
  --accent02-color: #ffda0b;
  --red-color: #d13b00;
  --bg01-color: #fdfaed;
  --bg02-color: #fffefc;
  --border-color: #c9af66;
  --font-serif: "Noto Serif JP", 游明朝, 游明朝体, "Yu Mincho", YuMincho, serif;
  --scale-factor: 1; /* 通常時 */
  --btn-base-color: #5d4a24; /* アコーディオンボタンのベース色 */
  --btn-text-color: #fff; /* アコーディオンボタンのテキスト色 */
}

.main__wrap {
  padding-top: 66px;
  background-color: #fff;
  color: var(--text-color);
  line-height: 1.5;
  font-size: 14px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.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: 800px;
}
.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(--text-link);
  text-decoration: underline;
  font-weight: bold;
}
.txt-note {
  font-size: 12px;
}
.txt-note.fz-s {
  font-size: 11px;
}
.note__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.note__list li {
  font-size: 12px;
}
.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;
}

/* 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%);
  }
}

.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: 10px;
  color: var(--text-color);
  background-color: rgba(242, 239, 235, 0.8);
  border-radius: 4px;
  padding: 16px 10px;
}
.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(--btn-base-color);
  border-radius: 20px;
}
.acc__btn_text {
  font-weight: bold;
  color: var(--btn-text-color);
}
.acc__btn_plus {
  background-color: var(--btn-text-color);
  height: 16px;
  width: 16px;
  border-radius: 100%;
  position: relative;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
  content: "";
  background-color: var(--btn-base-color);
  position: absolute;
  width: 10px;
  height: 1px;
  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;
}
.voice-btn__block {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .voice-btn__pc {
    background-color: var(--accent01-color);
    border: 4px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
  }
  .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: 16px;
    margin-bottom: 8px;
  }
  .voice-btn__txt .txt02 {
    font-size: 12px;
  }
  .voice-btn__img {
    background-color: #fff;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
  }
}

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

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */

#mainVisual {
  position: relative;
  background-color: #d65841;
  overflow-x: clip;
}

#mainVisual::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  background-image: url(../img/deco2.svg);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto;
  width: 100%;
  height: 20px;
}

.lead_txt {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--red-color);
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 900;
  width: fit-content;
  margin-inline: auto;
  padding-block: 24px 32px;
}

.lead_txt::before,
.lead_txt::after {
  content: "";
  position: absolute;
  translate: 0 -50%;
  width: 54px;
  height: 45px;
  background: url(../img/deco1.svg) no-repeat center / contain;
}

.lead_txt::before {
  top: calc(50% - 40px);
  right: -80px;
}

.lead_txt::after {
  top: calc(50% + 15px);
  left: -80px;
  scale: -1 1;
}

.lead_line {
  display: inline-block;
  background-color: #fff;
  font-weight: 900;
  padding-inline: 4px;
}

.lead_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lead_txt .lead_line {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: all 0.8s;
}
.lead_txt.is-inview .lead_line {
  animation-name: lead_slide;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}
.ll_1 {
  animation-delay: 0s;
}
.ll_2 {
  animation-delay: 0.2s;
}
.ll_3 {
  animation-delay: 0.4s;
}
@keyframes lead_slide {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .kv_wrap {
    position: relative;
    background-color: #d65841;
    width: 100%;
    height: 506px;
  }
  .kv_wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    background-image: url(../img/kv_deco1.png), url(../img/kv_deco2.png);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left, right;
    width: 100%;
    min-width: 1250px;
    height: 506px;
    z-index: 2;
  }
  .kv_wrap img {
    width: calc(1693px / 2);
    height: auto;
    margin: 0 auto;
  }
  .lead_txt {
    padding-block: 32px 56px;
  }
  .lead_group {
    flex-direction: row;
    background-color: #fff;
    padding-inline: 6px;
  }
  .lead_group .lead_line {
    background-color: transparent;
    padding-inline: 0;
  }
  .lead_txt .lead_line.ll_2 {
    animation: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .lead_txt .lead_line.ll_3 {
    animation: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .lead_group {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: all 0.8s;
  }
  .lead_txt.is-inview .lead_group {
    animation-name: lead_slide;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-delay: 0.2s;
  }
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.anc_head {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  font-family: "Tomorrow", sans-serif;
  color: #fff;
  margin-block-end: 14px;
}

.anc_head span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-inline: -1px;
  z-index: 1;
}

.anc_head span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--red-color);
  width: 19px;
  height: 19px;
  rotate: 45deg;
  z-index: -1;
}

.anc_btn_list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 14px;
  overflow-x: hidden;
  align-items: center;
}
.anc_btn_list::after {
  content: "";
  background-image: url(../img/deco3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 25px;
  margin-top: 30px;
}
.anc_btn img {
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
}
.anc_btn a {
  display: block;
  transition: all 0.3s;
}
.anc_btn_list li {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.5s;
}
.anc_btn_list li:nth-child(1) {
  transition-delay: 0s;
}
.anc_btn_list li:nth-child(2) {
  transition-delay: 0.2s;
}
.anc_btn_list li:nth-child(3) {
  transition-delay: 0.4s;
}
.anc_btn_list.is-inview li {
  opacity: 1;
  transform: translateY(0);
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .anc_btn_list {
    width: 328px;
    margin-inline: auto;
    overflow: visible;
  }
  .anc_btn a:hover {
    transform: translateY(3px);
  }
}
/* ------------------------------------------------------------
basic
------------------------------------------------------------ */
.cts_wrap {
  background-image: url(../img/bg1.png);
  background-repeat: repeat-y;
  background-size: 300%;
  background-position: top center;
  padding-block: 60px 36px;
  overflow-x: clip;
}
.sec__wrap {
  padding-bottom: 24px;
  padding-top: 40px;
}
.sec__head {
  max-width: 375px;
  margin: 0 auto;
}
.box01 {
  position: relative;
}
.box01__top {
  border-radius: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  left: -3px;
  right: -3px;
  height: 14px;
}
.box01__top::after {
  position: absolute;
  content: "";
  border: 2px solid var(--secondary-color);
  background: var(--primary-color);
  height: 20px;
  top: -3px;
  left: 3px;
  right: 3px;
  height: 16px;
  border-radius: 4px;
  z-index: 1;
}
.box01__inner {
  padding-top: 48px;
  padding-bottom: 40px;
  position: relative;
  background-color: var(--bg02-color);
  border: 4px solid var(--secondary-color);
  transform: translateY(-100%);
  transition: all 0.8s;
  max-width: calc(100% - 8px);
  margin: 0 auto;
}
.box01__inner::after {
  content: "";
  border-radius: 3px;
  background-color: var(--secondary-color);
  position: absolute;
  left: -7px;
  right: -7px;
  height: 10px;
  bottom: -4px;
}
.box01__height {
  /* overflow: hidden; */
  overflow-y: clip;
}
.box01.is-inview .box01__inner {
  transform: translateY(0);
}
.box01__deco {
  margin: 0 auto;
  width: 42px;
}
.box01__head {
  font-family: var(--font-serif);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 2.4px;
  background-color: var(--bg01-color);
  padding: 11px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  gap: 12px;
}
.box01__head::before,
.box01__head::after {
  content: "";
  background-color: var(--text-color);
  width: 20px;
  height: 1.5px;
}
.box01__head__sub {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.box01__main {
  padding: 16px 12px 0;
}
.box01__lead {
  letter-spacing: 0.02em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .cts_wrap {
    background-size: 100%;
    overflow-x: clip;
  }
  .box01__main {
    padding: 24px 60px 0;
  }
}
/* ------------------------------------------------------------
#ex_contents
------------------------------------------------------------ */
.cast__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
  align-items: center;
  justify-content: center;
}
.cast__list li {
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cast__chara {
  text-align: center;
  font-size: 15px;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 10px;
}
.cast__chara::before {
  content: "";
  background-color: var(--red-color);
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
.cast__cv {
  border-radius: 100px;
  border: 1px solid #937d3e;
  color: #937d3e;
  width: fit-content;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 0 5px;
}

.talk__list {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}
.talk__list li {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 132px;
}
.talk__list li + li::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/cross.svg) center / contain no-repeat;
  top: 29%;
  left: -16px;
  position: absolute;
}
.talk__cv {
  margin-top: 4px;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 10px;
}
.talk__cv::before {
  content: "";
  background-color: var(--red-color);
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
.talk__chara {
  color: #8c8c8c;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.talk__pic {
  border-radius: 8px;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .talk__list {
    column-gap: 30px;
  }
  .talk__list li + li::before {
    left: -26px;
  }
}

/* ------------------------------------------------------------
#ex_rewards
------------------------------------------------------------ */
#ex_rewards .box01__inner {
  padding-top: 24px;
}
.box02 > dt {
  background-color: #cf5039;
  padding: 6px 0;
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
}
.box02 > dd {
  margin-top: 10px;
  padding: 0 4px;
}
.box02 > dd + dt {
  margin-top: 12px;
}
.box02__link {
  width: fit-content;
  margin: 0 auto;
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration-line: underline;
}
.box02__text01 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.step__wrap {
  padding: 16px;
  border: 1px solid var(--primary-color);
}
.step__list {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.step__list + .step__list {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e3dcc9;
}
.step__list dt {
  background-color: var(--secondary-color);
  font-family: var(--font-serif);
  color: #fff;
  font-weight: bold;
  line-height: 1;
  width: 45px;
  padding: 4px 0;
  text-align: center;
  font-size: 10px;
}
.step__list dd {
  width: calc(100% - 45px - 10px);
}
.img__wrap {
  max-width: 400px;
  margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}
/* ------------------------------------------------------------
#kyoto
------------------------------------------------------------ */
.map__wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.map_right {
  width: 100%;
}
.map__box {
  position: relative;
  max-width: 313px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  margin: 0 auto;
}
.map-pin {
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  background-color: var(--red-color);
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  transition: all 0.5s;
}
/* 京都駅 */
.map-pin.pin01 {
  top: 54.2%;
  left: 35.1%;
}
/* 三十三間堂 */
.map-pin.pin02 {
  top: 48.5%;
  left: 62%;
}
/* 法観寺 */
.map-pin.pin03 {
  top: 27.5%;
  left: 77.8%;
}
/* 平等院 */
.map-pin.pin04 {
  top: 91.5%;
  left: 81.5%;
}
.map-spot {
  position: absolute;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid var(--red-color);
  padding: 1px 12px 2px;
  width: fit-content;
  color: var(--red-color);
  font-size: 12px;
  font-weight: 700;
}
.map-pin.active + .map-spot {
  color: #fff;
  background-color: var(--red-color);
  transform: scale(1.1);
}

.spot01 {
  top: 46.5%;
  left: 26%;
}
.spot02 {
  top: 42%;
  left: 57%;
}
.spot03 {
  top: 21%;
  left: 69%;
}
.spot04 {
  top: 85%;
  left: 73%;
}

.spot__slide--block {
  width: 100%;
  max-width: 320px;
  position: relative;
  margin: 0 auto;
}
.spot__slide--block::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  border-bottom: 30px solid #d65841;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  top: -16px;
  left: calc(50% - 30px);
}

/* マップ スライドカセット*/
.spot__slide--box {
  background-color: #d65841;
  border-radius: 8px;
  padding: 18px 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
}
.spot-name {
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-serif);
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.spot-name::before,
.spot-name::after {
  content: "";
  background-color: #fff;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
}
.spot-img {
  box-sizing: border-box;
  width: 100%;
  margin-top: 12px;
  height: 100%;
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  /* 以下画像保存対策 */
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
@media print {
    .spot-img { display: none }
}
.spot__slide--box ul.note__list {
  height: 100%;
}

.box01__head02 {
  font-family: var(--font-serif);
  text-align: center;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background-color: #fffcf0;
  padding: 11px 0 10px;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  position: relative;
}
.box01__head02::before,
.box01__head02::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  background-color: var(--secondary-color);
}
.box01__head02::before {
  top: 2px;
}
.box01__head02::after {
  bottom: 2px;
}

.box01__head02__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}
.box01__head02__sub::before,
.box01__head02__sub::after {
  content: "";
  background-color: var(--text-color);
  width: 12px;
  height: 1px;
}
.box01__head02__sub::before {
  transform: rotate(60deg);
}
.box01__head02__sub::after {
  transform: rotate(120deg);
}
.box01__head02__main {
  font-size: 18px;
  font-weight: 900;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .box01__head02__sub {
    gap: 12px;
  }
  .map__wrap {
    flex-direction: row;
    gap: 25px;
    align-items: flex-start;
  }
  .map__box {
    margin: 0;
  }
  .map-pin:hover {
    background-color: #fff;
    border-color: var(--red-color);
    transform: scale(1.05);
  }
  .map-pin:hover span {
    color: #fff;
  }
  .map_right {
    width: calc(100% - 316px);
  }
  .spot__slide--block {
    width: 100%;
  }
  .spot__slide--box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .spot-txt {
    font-size: 14px;
  }
  .spot-info {
    font-size: 14px;
  }
  .spot__slide--block::before {
    transform: rotate(-90deg);
    top: calc(50% - 30px);
    left: -30px;
  }
}

/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
.info_bg {
  background:
    linear-gradient(to bottom, rgba(246, 232, 213, 0.75), rgba(246, 232, 213, 0.75)),
    url(../img/info_bg.svg) center top / 96.07px #f6e8d5;
  position: relative;
  padding-top: 60px;
  padding-bottom: 16px;
}
.info_bg::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, #fcfbf7, #fcfbf7 10px, transparent 10px, transparent 20px);
}
.info_bg::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 10px;
  height: 10px;
  background: repeating-linear-gradient(90deg, transparent, transparent 10px, #fcfbf7 10px, #fcfbf7 20px);
}
.info__head {
  font-family: var(--font-serif);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 2.4px;
  padding: 11px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  gap: 12px;
}
.info__head::before,
.info__head::after {
  content: "";
  background-color: var(--text-color);
  width: 20px;
  height: 1.5px;
}
.info__link {
  display: block;
  border: 2px solid #ae0a29;
  background:
    linear-gradient(to bottom, rgba(255, 254, 250, 0.8), rgba(255, 254, 250, 0.8)),
    url(../img/info_btn_bg.svg) center top / 110px repeat #fffefa;
  padding: 10px 34px;
  border-radius: 8px;
  box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.1);
  max-width: 345px;
  margin: 0 auto;
  transition: all 0.3s;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .info__link:hover {
    transform: translateY(3px);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1);
  }
}

/* ------------------------------------------------------------
character
------------------------------------------------------------ */
/* 
<div class="character chara01"><img src="img/chara01.png" alt="時行"></div>
 */

.character__rel {
  position: relative;
}
.character {
  position: absolute;
  width: 100px;
  z-index: 5;
}
.character.chara01 {
  top: -12%;
  right: -4%;
}
.character.chara02 {
  top: -20%;
  left: -4%;
}
.character.chara03 {
  top: -5%;
  right: -4%;
}
.character.chara04 {
  bottom: -7%;
  left: -4%;
}
.character.chara05 {
  top: -2%;
  right: -4%;
}
.character.chara06 {
  top: -70%;
  left: -13%;
}
.character.chara07 {
  top: -20%;
  left: -4%;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .character {
    width: 125px;
  }
  .character.chara01 {
    top: -4%;
    right: -4%;
  }
  .character.chara02 {
    top: -11%;
    left: -14%;
  }
  .character.chara03 {
    top: -5%;
    right: -4%;
  }
  .character.chara04 {
    bottom: -7%;
    left: -4%;
  }
  .character.chara05 {
    top: -2%;
    right: -4%;
  }
  .character.chara06 {
    top: -50%;
    left: 0%;
  }
  .character.chara07 {
    top: -11%;
    left: -14%;
  }
}

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

/* ------------------------------------------------------------
copyright
------------------------------------------------------------ */
.copyright_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: #5d4a24;
}
.copyright_txt::before {
  content: "";
  background-image: url(../img/deco3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 25px;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap {
  background-color: #fff;
  padding: 40px 30px;
}
.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;
  }
}

.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) {
  .oshitabi_btn {
    padding: 15px;
    font-size: 20px;
  }
}

.inactive {
  pointer-events: none;
}
.cs {
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--accent01-color);
  font-weight: bold;
  text-align: center;
  padding: 6px;
}
.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 */
.mgtLLL {
  margin-top: 48px;
}

.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;
  }
}
