@charset "utf-8";
/* CSS Document */

/* =========================================================
   Reset
========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { width: 100%; display: block; }

/* =========================================================
   Layout
========================================================= */
.container { max-width: 750px; margin: 0 auto; }
.block { position: relative; }

/* =========================================================
   Stacking
========================================================= */
.img-wrap { position: relative; }
.img-base { width: 100%; display: block; }

/* =========================================================
   img-txt / Animation（下からフェード＋スライド）
========================================================= */
.img-txt{
  position:absolute; z-index:2; width:100%; top:0; left:0;
  opacity:0;
  transform: translate(-50%, -50%) translateY(80px);
  transition: opacity 1.0s ease, transform 1.0s ease;
}
.is-show .img-txt{
  opacity:1;
  transform: translate(-50%, -50%) translateY(0);
}

/* =========================================================
   Button
========================================================= */
.btn {
  position: absolute;
  z-index: 3;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
}
.btn img { width: 100%; transition: transform .3s ease; }

/* =========================================================
   Button Animation（PC/SP 共通のゆっくり呼吸）
========================================================= */
@keyframes btn-breath {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.btn img {
  animation: btn-breath 2.8s ease-in-out infinite;
}
/* 中央基準を使うボタンに限定して付与（必要なブロックだけ） */
.block02 .btn,
.block04 .btn,
.block07 .btn,
.block12 .btn,
.block14 .btn,
.block17 .btn,
.block20 .btn,
.block21 .btn{
  transform: translate(-50%, -50%);
}
/* =========================================================
   Per Block（transform削除済み）
========================================================= */

/* block01 */
.block01 .img-txt { width: 85.2%; top: 39%; left: 42%; }

/* block02 */
.block02 .btn { width: 90%; top: 79%; left: 50%; }

/* block04 */
.block04 .img-txt { width: 33.47%; top: 9%; left: 78%; }
.block04 .btn { width: 90%; top: 95.7%; left: 50%; }

/* block06 */
.block06 .img-txt { width: 44.53%; top: 34%; left: 27%; }

/* block07 */
.block07 .btn { width: 90%; top: 94.5%; left: 50%; }

/* 既存の位置指定（あなた指定のまま） */
.block07 .video-area {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  z-index: 2;
}

.block07 .video-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.block07 .video-wrap:last-child { margin-bottom: 0; }

.block07 .video-item {
  width: 100%;
  display: block;
}

/* 中央の再生ボタン（シンプルで上品） */
.block07 .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(92,69,42,0.6);
  background: rgba(255,255,255,0.75);
  color: #5c452a;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
.block07 .play-btn:hover { background: rgba(255,255,255,0.9); transform: translate(-50%,-50%) scale(1.03); }
.block07 .video-wrap.playing .play-btn { opacity: 0; pointer-events: none; }

/* 右下コントロール（停止・ミュート） */
.block07 .ctrls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 8px;
}

.block07 .ctrls button {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(92,69,42,0.3);
  background: rgba(255,255,255,0.85);
  color: #5c452a;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.block07 .ctrls button:hover { transform: scale(1.05); background: rgba(255,255,255,0.95); }


/* ボタンは最前面のまま */
.block07 .btn {
  z-index: 3;
}

/* block09 */
.block09 .img-txt { width: 90.67%; top: 30%; left: 50%; }

/* block10 */
.block10 .img-txt { width: 90.67%; top: 12%; left: 50%; }

/* block11 */
.block11 .img-txt { width: 90.67%; top: 14%; left: 50%; }

/* block12 */
.block12 .btn { width: 90%; top: 94.3%; left: 50%; }

/* block14 */
.block14 .btn { width: 90%; top: 92%; left: 50%; }

/* block17 */
.block17 .btn { width: 90%; top: 92%; left: 50%; }

/* block20 */
.block20 .img-txt { width: 98.40%; top: 79%; left: 50%; }
.block20 .btn { width: 90%; top: 94.5%; left: 50%; }

/* block21 */
.block21 .btn { width: 90%; top: 88%; left: 50%; }

/* =========================================================
   block22（テキスト仕様）
========================================================= */

.block22 .info-box {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  color: #5c452a;
  font-family: "游明朝体", "Yu Mincho", serif;
  line-height: 1.8;
  text-align: left;
  font-size: 1.8rem;
}
.block22 .map-box iframe {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  border: none;
}
.block22 .row {
  display: grid;
  grid-template-columns: 5em 1fr;
  column-gap: 1em;
  padding: 1em 0;
  border-top: 1px solid #c7b9a3;
  font-size: 1em;
}

/* スマホ時の文字サイズ調整 */
@media screen and (max-width: 767px) {
  .block22 .row {
    font-size: 0.5em;
  }
}

.block22 .row:first-child { border-top: none; }
.block22 .txt { margin: 0; }


.footer-link {
  background: #d09a9a;
  padding: 14px 0;
  text-align: center;
}

.footer-link ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link ul li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin: 0 10px;
  position: relative;
}

.footer-link ul li + li::before {
  content: "｜";
  color: #fff;
  position: absolute;
  left: -12px;
}

.footer-link a {
  color: #fff;
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}

