@charset "utf-8";
/* CSS Document */
/* /////////////////////////////// リセット / ノーマライズ / サニタイズ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* ========== 基本設定 ========== */
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block
}
/* 中央780pxの箱 */
.wrap {
  max-width: 460px;
  margin-inline: auto;
  background-color: #F6EEE4;
}
/* モバイルだけ 1画面フィット。Gridは使わない */
@media (max-width: 640px) {
  .fv {
    min-height: 100vh;
    min-height: 100svh; /* アドレスバー除外の実視野 */
    display: flex;
    flex-direction: column;
  }
  /* 余りの高さをここで全部受ける */
  .fv .nav-challenge {
    flex: 1 0 40px; /* 最低44px、余り分だけ高さが増える */
    margin-top: auto;
  }
}
/* ========== ヘッダー ========== */
/*.page-header{
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.logo{
  font-weight: 700;
  font-size: 1.05rem;
  color: inherit;
  text-decoration: none;
}*/
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 前面に出したい要素（wrap内） */
.page-header, .site-main, .page-footer {
  position: relative;
  z-index: 1;
}
/* ========== ナビ ========== */
.nav-list {
  display: flex;
}
.nav-list > li > a {
  display: block;
  padding: 8px 8px 10px 8px;
}
.nav-list > li:nth-child(1), .nav-list > li:nth-child(3) {
  background-color: #a0564b;
}
.nav-list > li:nth-child(2) {
  background-color: #795744;
}
.nav-list > li {
  position: relative;
  width: calc(100% / 3);
}
.nav-list > li::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  background: #f5ebdf;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.nav-list-label {
  color: #f5ebdf;
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
  margin-top: 10px;
}
.nav-challenge {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #523b2e;
  padding: 22px 10px;
  color: #f5ebdf;
  text-align: center;
  font-size: 17px;
}
.nav-challenge img {
  width: 19px;
  height: 18px;
}
.nav-challenge > div {
  margin: 0 8px;
  text-decoration: underline;
}
.nav-challenge span {
  display: block;
  font-weight: 700;
  font-size: 19px;
  text-decoration: none !important_;
}
/* a直下の最初と最後のimgだけを対象にする */
.nav-challenge > img:first-of-type {
  animation: arrowLeft 2.2s ease-in-out infinite;
}
.nav-challenge > img:last-of-type {
  animation: arrowRight 2.2s ease-in-out infinite;
}
@keyframes arrowLeft {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-6px, 0, 0);
  }
}
@keyframes arrowRight {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(6px, 0, 0);
  }
}
.sub-mv {
  font-family: "Noto Serif JP", serif;
  background-color: #a0564b;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6EEE4;
  font-size: 24px;
  padding: 0 4%;
  text-align: center;
  font-weight: 600;
}
.sub-mv.brown {
  background-color: #523B2E;
}
.sub-mv span {
  display: block;
  font-size: 18px;
  margin-top: 8px;
}
.contents {
  padding: 0 4%;
  color: #795744;
}
.contents p {
  margin: 20px 0;
}
.contents > section {
  margin-top: 60px;
}
h2 {
  font-family: "Noto Serif JP", serif;
  margin: 30px;
  font-size: 26px;
  line-height: 1.2;
  color: #A0564B;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
h2 > span {
  display: block;
  margin-bottom: 6px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 600;
  color: #A0564B;
  opacity: .95;
}
/* カード全体 */
.card {
  background: #fff;
}
.card:last-of-type {
  margin-bottom: 50px;
}
.card-media {
  margin: 0;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-body {
  padding: 16px;
}
.card-title {
  margin: 12px 0 20px;
  color: #A0564B;
  font-size: 22px;
  font-weight: 700;
}
.info-list {
  margin: 0;
  padding: 0;
}
.info-head {
  margin: 0;
  padding: 6px 12px;
  text-align: center;
  font-weight: 700;
  background: #F0E4E2;
  border-top: 1px solid #A0564B;
}
.info-body {
  margin: 0;
  padding: 12px 14px;
  line-height: 1.7;
}
.info-body a {
  text-decoration: underline;
}
.card + .card {
  margin-top: 50px;
}
.record-title {
  font-size: 20px;
  color: #A0564B;
  font-weight: 600;
}
.record-sub {
  margin-top: 10px;
}
.record-media {
  margin-top: 20px;
}
.record-thumbs {
  display: flex;
  justify-content: space-between;
}
.record-thumbs > li {
  width: calc((100% - 20px) /2);
}
.comingsoon {
  font-family: "Noto Serif JP", serif;
  padding: 60px 0 90px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 4px;
}
.btn_top, .btn_access {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  display: block;
  max-width: 320px;
  border: 1px solid #795744;
  text-align: center;
  padding: 10px 16px;
}
.btn_access {
  margin-bottom: 16px;
}
.btn_top span, .btn_access span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}
.btn_top span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  background-image: url("../images/icon_home.png");
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}
/* ========== スポットぺージ ========== */
.spot-lead {
  margin: 12px 0 20px;
  color: #A0564B;
  font-size: 20px;
  font-weight: 700;
}
.audio-guide {
  padding: 10px;
  margin-bottom: 30px;
}
figcaption {
  text-align: center;
  margin-top: 10px;
}
.spot-text h3 {
  font-weight: 700;
  font-size: 18px;
  margin-top: 30px;
}
.spot-section + .spot-section {
  margin-top: 50px;
}
.spot-access {
  margin-top: 50px;
}
.spot-figure img + img {
  margin-top: 10px;
}
.spot-section .link {
  text-decoration: underline;
  color: #a0564b;
}
/* ========== グルメガイド ========== */
.gourmet-list {
  margin-bottom: 30px;
}
.gourmet-list li + li {
  margin-top: 20px;
}
.gourmet-list li {
  position: relative;
}
.btn-overlay {
  width: 80%;
  text-align: center;
  position: absolute;
  bottom: 20px; /* 下に配置 */
  left: 50%;
  transform: translateX(-50%);
  background: #523b2e;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
}
/* プレーヤー全体 */
.audio-player {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 48px;
  max-width: 640px;
  background: #9a4e43;
  color: #fff;
  border-radius: 4px;
  padding: 0 14px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04) inset;
}
/* 再生ボタン */
.ap-btn {
  inline-size: 28px;
  block-size: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  touch-action: manipulation;
}
.ap-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 2px;
  border-radius: 6px;
}
/* ▶ 再生アイコン（デフォ） */
.ap-icon {
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px; /* 三角形 */
  border-color: transparent transparent transparent #fff;
  transform: translateX(1px);
}
/* ⏸ 再生中は一時停止アイコン（縦棒2本） */
.is-playing .ap-icon {
  width: 14px;
  height: 16px;
  border: none; /* ← 三角用のborderを無効化 */
  background: transparent; /* 念のため */
  box-shadow: none; /* ← これが残ってると四角になるので無効化 */
  transform: none;
}
.is-playing .ap-icon::before, .is-playing .ap-icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #fff;
}
.is-playing .ap-icon::before {
  left: 0;
}
.is-playing .ap-icon::after {
  right: 0;
}
/* 時刻表示 */
.time {
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  opacity: .95;
}
/* 進捗バー */
.progress {
  position: relative;
  flex: 1 1 auto;
  inline-size: 100%;
  height: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .18);
  cursor: pointer;
  touch-action: none;
}
.progress::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 2px;
}
.progress__bar {
  position: absolute;
  inset: 3px;
  inline-size: 0%;
  border-radius: 2px;
  background: #c48e86;
  transition: width .1s linear;
}