/* ==================
   リセット・基本設定
================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream:      #fcf9ef;
  --red:        #f37270;
  --lightblue:  #96afdc;
  --orange:     #e05727;
  --navy:       #174a9a;
  --yellow:     #d9c42f;
  --green:      #518c56;
  --white:      #fff;
  --text:       #222;
  --text-light: #888;
  --radius:     16px;
  --shadow:     0 4px 2px rgba(0,0,0,0.2);
  --font-title: "Dela Gothic One", sans-serif;
  --font-body:  "Kiwi Maru", serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ==================
   アニメーション定義
================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(3deg); }
  66%       { transform: translateY(-4px) rotate(-3deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-5deg); }
  75%       { transform: rotate(5deg); }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes zoomFadeIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(2deg); }
  66%       { transform: translateY(-5px) rotate(-2deg); }
}

@keyframes bounceBtn {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes floatCloud01 {
  0%, 100% { transform: translateX(0vw) translateY(0vw); }
  30%       { transform: translateX(8vw) translateY(-8vw); }
  60%       { transform: translateX(12vw) translateY(-5vw); }
}

@keyframes floatCloud02 {
  0%, 100% { transform: translateX(0vw) translateY(0vw); }
  30%       { transform: translateX(-8vw) translateY(-6vw); }
  60%       { transform: translateX(-12vw) translateY(-3vw); }
}

@keyframes markerPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(243,114,112,0.6));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(243,114,112,0.9));
  }
}

/* ==================
   スクロールアニメーション
================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* overview__card / spots__card はゆっくり目に */
.overview__card.reveal,
.spots__card.reveal {
  transition: opacity 1.5s ease, transform 1.5s ease;
}

/* ==================
   ナビゲーション
================== */
.nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--navy);
  box-shadow: 0 -4px 20px rgba(23,74,154,0.2);
  z-index: 100;
  border-radius: 20px 20px 0 0;
}

.nav__list {
  display: flex;
  list-style: none;
  justify-content: space-around;
  padding: 8px 0 12px;
}

.nav__list li a {
  font-family: var(--font-body);
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.3s;
  padding: 4px 8px;
  border-radius: 12px;
}

.nav__list li a i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.nav__list li a:hover,
.nav__list li.active a {
  color: var(--yellow);
}

.nav__list li a:hover i {
  transform: scale(1.2) rotate(-5deg);
  animation: shake 0.4s ease;
}

/* ==================
   MV（fixed固定）
================== */
.mv {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
  overflow: hidden;
  transition: opacity 0.6s ease;
}

.mv.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.mv__spacer {
  height: 120vh;
  pointer-events: none;
}

.contents {
  position: relative;
  z-index: 10;
  background: none;
}

/* ==================
   賑やかしシルエット
================== */
.mv__silhouettes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.mv__sil {
  position: absolute;
  width: 10%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.mv__sil.is-visible {
  opacity: 1;
  animation: floatSlow 5s ease-in-out infinite;
}

.mv__sil--01 { top: 6%;    left: 4%;   animation-duration: 5.2s; }
.mv__sil--02 { top: 10%;   right: 5%;  animation-duration: 6.1s; }
.mv__sil--03 { top: 28%;   left: 2%;   animation-duration: 5.8s; }
.mv__sil--04 { top: 8%;    right: 41%; animation-duration: 7.0s; }
.mv__sil--05 { top: 48%;   left: 3%;   animation-duration: 6.4s; }
.mv__sil--06 { top: 45%;   right: 4%;  animation-duration: 5.5s; }
.mv__sil--07 { bottom: 25%; left: 5%;  animation-duration: 6.8s; }
.mv__sil--08 { bottom: 22%; right: 6%; animation-duration: 5.9s; }
.mv__sil--09 { bottom: 12%; left: 12%; animation-duration: 6.3s; }
.mv__sil--10 { bottom: 10%; right: 14%; animation-duration: 5.6s; }
.mv__sil--11 {
  top: 22%;
  left: 83%;
  animation-duration: 7.2s;
  rotate: 46deg;
}

/* ==================
   MV 雲SVG
================== */
.mv__clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(2px 4px 1px rgba(23, 74, 154, 0.45));
}

.mv__cloud {
  position: absolute;
  fill: rgba(255, 255, 255);
  opacity: 0;
  transition: opacity 1s ease;
}

.mv__cloud.is-visible {
  opacity: 1;
}

.mv__cloud--01 {
  width: 97%;
  top: -3%;
  left: -17%;
  animation: floatCloud01 9s ease-in-out infinite;
}

.mv__cloud--02 {
  width: 44%;
  top: 12%;
  right: -20%;
  animation: floatCloud02 11s ease-in-out infinite;
}

.mv__cloud--03 {
  width: 65%;
  top: 28%;
  left: -16%;
  animation: floatCloud01 10s ease-in-out infinite;
  animation-delay: 1s;
}

.mv__cloud--04 {
  width: 43%;
  top: 60%;
  right: -19%;
  animation: floatCloud02 8s ease-in-out infinite;
  animation-delay: 0.5s;
}

.mv__cloud--05 {
  width: 38%;
  bottom: 21%;
  left: -14%;
  animation: floatCloud01 12s ease-in-out infinite;
  animation-delay: 1.5s;
}

.mv__cloud--06 {
  width: 77%;
  bottom: 13%;
  right: -27%;
  animation: floatCloud02 9.5s ease-in-out infinite;
  animation-delay: 2s;
}

/* ==================
   overview 雲（1枚）
================== */
.overview__cloud-wrap {
  position: absolute;
  width: calc(100% + 3rem);
  margin-left: -4.5rem;
  margin-top: -14vw;
  margin-bottom: 1rem;
  height: 80px;
  overflow: visible;
  z-index: 5;
  pointer-events: none;
  transform: rotate(180deg);
}

.overview__cloud {
  position: absolute;
  width: 110%;
  left: -5%;
  bottom: 0;
  fill: var(--white);
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1);
  filter: drop-shadow(2px 4px 1px rgba(23, 74, 154, 0.45));
}

.overview__cloud.is-visible {
  opacity: 1;
  transform: translateY(0px);
}

/* ==================
   メインコンテンツ
================== */
.mv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 1rem;
}

.mv__logo-wrap {
  opacity: 0;
  transform: scale(0.8);
  width: 80%;
  max-width: 340px;
}

.mv__logo-wrap.is-visible {
  animation: zoomFadeIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mv__logo {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.mv__illust-wrap {
  opacity: 0;
  transform: scale(0.75);
  width: 100%;
}

.mv__illust-wrap.is-visible {
  animation: zoomFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mv__illust-wrap.is-visible .mv__illust {
  animation: floatSlow 5s ease-in-out 0.8s infinite;
}

.mv__illust {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.mv__btn {
  opacity: 0;
  color: var(--navy);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 0px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.mv__btn.is-visible {
  animation:
    fadeIn 0.5s ease forwards,
    bounceBtn 1.8s ease-in-out 0.5s infinite;
}

.mv__btn:active {
  transform: scale(0.95);
}

/* ==================
   セクション共通
================== */
.section {
  padding: 0 0 5rem;
  position: relative;
}

#overview.section {
  padding: 0 0 5rem;
}

.section__inner {
  padding: 2rem 1.5rem 0;
}

/* ==================
   セクションタイトル
   マーキー（右→左に流れる）
================== */

/* 外側：overflow: hidden を担当（アニメーションしない） */
.section__title-outer {
  position: absolute;
  top: -13vw;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 1.2rem 0;
}

/* 内側：flex で2つのタイトルを並べてアニメーション */
.section__title-wrap {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 7s linear infinite;
  will-change: transform;
}

.section__title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
  padding-right: 3rem;
  animation: none;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
}

/* セクションごとのタイトルカラー */
.overview  .section__title { -webkit-text-stroke-color: var(--red); }
.schedule  .section__title { -webkit-text-stroke-color: var(--orange); }
.checklist .section__title { -webkit-text-stroke-color: var(--green); }
.spots     .section__title { -webkit-text-stroke-color: var(--navy); }
.gallery   .section__title { -webkit-text-stroke-color: var(--yellow); }


/* ==================
   セクション区切り
   丸角バッジ＋丸角ボディ
================== */

/* バッジ（左から出る丸角タグ） */
.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.6rem 0.5rem 1.2rem;
  border-radius: 0 30px 30px 0;
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-left: -1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

.overview  .section__badge { background: var(--red); }
.schedule  .section__badge { background: var(--orange); }
.checklist .section__badge { background: var(--green); }
.spots     .section__badge { background: var(--navy); }
.gallery   .section__badge { background: var(--yellow); color: var(--navy); }

/* セクション背景色 */
.overview  { background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%); }
.schedule  { background: #fdf5f5; }
.checklist { background: #f5f8f5; }
.spots     { background: #f5f7fc; }
.gallery   { background: #fdfcf0; }

/* ==================
   旅行概要
================== */
/* ==================
   旅行概要：タイトルはマーキーなし
================== */
.overview .section__title-outer {
  display: none; /* overviewはマーキーなし */
}

.overview .section__title-wrap {
  overflow: visible;
  padding: 0;
  margin-bottom: 0;
  position: relative;
  top: 0;
  animation: none;
  display: block;
  width: auto;
}

.overview .section__title-wrap::after {
  display: none;
}

.overview .section__title::after {
  display: none;
}

.overview .section__title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  white-space: normal;
  display: inline-block;
  padding: 0.3rem 1.2rem;
  animation: none;
  min-width: unset;
  position: relative;
  left: 50%;
  transform: translate(-50%, -80%);
  color: var(--red);
  margin-bottom: 16vw;
  z-index: 6;
  -webkit-text-stroke: 0;
}

.overview .section__title::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--red);
  z-index: -1;
  opacity: 0.5;
}

.overview .section__inner {
  padding-top: 0;
}

.overview__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 5;
  padding-top: 2rem;
}

.overview__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.overview__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.overview__card:nth-child(1) { border-color: var(--yellow); }
.overview__card:nth-child(2) { border-color: var(--orange); }
.overview__card:nth-child(3) { border-color: var(--green); }
.overview__card:nth-child(4) { border-color: var(--lightblue); }

.overview__card:nth-child(1)::before { background: var(--yellow); }
.overview__card:nth-child(2)::before { background: var(--orange); }
.overview__card:nth-child(3)::before { background: var(--green); }
.overview__card:nth-child(4)::before { background: var(--lightblue); }

.overview__card:active {
  transform: scale(0.97);
}

.overview__card i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.overview__card:nth-child(1) i { color: var(--yellow); }
.overview__card:nth-child(2) i { color: var(--orange); }
.overview__card:nth-child(3) i { color: var(--green); }
.overview__card:nth-child(4) i { color: var(--lightblue); }

.overview__card h3 {
  font-family: var(--font-title);
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.overview__card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: nowrap;
}

/* ==================
   タイムスケジュール
================== */
.schedule__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
}

.schedule__tabs::-webkit-scrollbar {
  display: none;
}

.schedule__tab {
  font-family: var(--font-body);
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--orange);
  background: var(--white);
  color: var(--orange);
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.schedule__tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 4px 4px 0px rgba(224,87,39,0.3);
  transform: translateY(-2px);
}

.schedule__content {
  display: none;
}

.schedule__content.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.schedule__day-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  padding: 0.6rem 1rem;
  background: var(--white);
  border-radius: 10px;
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
}

.timeline {
  position: relative;
  padding-left: 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--lightblue);
  border-radius: 3px;
}

.timeline__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  animation: fadeInUp 0.4s ease both;
}

.timeline__time {
  font-family: var(--font-title);
  font-size: 0.68rem;
  color: var(--orange);
  width: 40px;
  flex-shrink: 0;
  margin-top: -2px;
  letter-spacing: 0.02em;
  text-align: right;
  transform: translateX(-50%);
}

.timeline__body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  flex: 1;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border: 2px solid transparent;
}

.timeline__body:active {
  transform: scale(0.98);
}

.timeline__body::before {
  content: '●';
  position: absolute;
  left: -32px;
  top: 0;
  font-size: 0.4rem;
  color: var(--orange);
}

/* ▶︎マーカー */
.timeline__marker {
  position: absolute;
  left: 38px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: translateY(-50%);
  transition: top 0.6s ease;
}

.timeline__marker::before {
  content: '▼';
  font-size: 1rem;
  color: var(--yellow);
  padding-right: 5px;
  filter: drop-shadow(0 0 4px rgba(243,114,112,0.6));
  animation: markerPulse 1.5s ease-in-out infinite;
}

.timeline__item.is-now .timeline__body {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(243,114,112,0.2), var(--shadow);
}

.timeline__item.is-now .timeline__time {
  color: var(--red);
  font-weight: bold;
}

.timeline__body h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.timeline__body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.timeline__note {
  font-family: var(--font-body);
  font-size: 0.8rem !important;
  color: var(--navy) !important;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.timeline__note.warn {
  color: var(--red) !important;
}

.timeline__list {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.timeline__list li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0.3rem 0.6rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--yellow);
}

/* ==================
   持ち物チェックリスト
================== */
.checklist__progress {
  text-align: center;
  margin-bottom: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--green);
}

.checklist__progress-bar {
  height: 12px;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.checklist__progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 6px;
  transition: width 0.4s ease;
  width: 0%;
  position: relative;
  overflow: hidden;
}

.checklist__progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  animation: shimmer 2s infinite;
}

.checklist__progress-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--green);
  font-weight: bold;
}

.checklist__groups {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.checklist__group {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.checklist__group:nth-child(1) { border-color: var(--green); }
.checklist__group:nth-child(2) { border-color: var(--lightblue); }
.checklist__group:nth-child(3) { border-color: var(--red); }
.checklist__group:nth-child(4) { border-color: var(--orange); }
.checklist__group:nth-child(5) { border-color: var(--yellow); }

.checklist__group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.checklist__group:nth-child(1)::before { background: var(--green); }
.checklist__group:nth-child(2)::before { background: var(--lightblue); }
.checklist__group:nth-child(3)::before { background: var(--red); }
.checklist__group:nth-child(4)::before { background: var(--orange); }
.checklist__group:nth-child(5)::before { background: var(--yellow); }

.checklist__group h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
}

.checklist__group:nth-child(1) h3 { color: var(--green); }
.checklist__group:nth-child(2) h3 { color: var(--lightblue); }
.checklist__group:nth-child(3) h3 { color: var(--red); }
.checklist__group:nth-child(4) h3 { color: var(--orange); }
.checklist__group:nth-child(5) h3 { color: var(--yellow); }

.checklist__group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist__group label {
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.checklist__group label:hover {
  background: var(--cream);
}

.checklist__group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

.checklist__group label:has(input:checked) {
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.6;
}

.checklist__reset {
  font-family: var(--font-body);
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.7rem 2rem;
  background: var(--red);
  border: none;
  border-radius: 25px;
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 4px 4px 0px rgba(243,114,112,0.3);
  transition: transform 0.2s;
}

.checklist__reset:active {
  transform: scale(0.95);
}

/* ==================
   訪問予定スポット
================== */
.spots__area-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--white);
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--navy);
  border-radius: 12px;
  box-shadow: 4px 4px 0px rgba(23,74,154,0.2);
  letter-spacing: 0.05em;
}

.spots__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spots__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  position: relative;
  border: 2px solid transparent;
}

.spots__card:nth-child(odd)  { border-color: var(--navy); }
.spots__card:nth-child(even) { border-color: var(--lightblue); }

.spots__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
}

.spots__card:nth-child(odd)::before  { background: var(--navy); }
.spots__card:nth-child(even)::before { background: var(--lightblue); }

.spots__card:active {
  transform: scale(0.98);
}

.spots__card-body {
  padding: 1rem 1rem 1rem 1.3rem;
}

.spots__card-body h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.spots__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--white) !important;
  background: var(--orange);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.spots__card-body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.spots__info {
  font-family: var(--font-body);
  font-size: 0.8rem !important;
  color: var(--navy) !important;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.spots__info.warn {
  color: var(--red) !important;
}

.spots__link {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-size: 0.8rem;
  text-decoration: none;
  background: var(--navy);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-top: 0.3rem;
  box-shadow: 3px 3px 0px rgba(23,74,154,0.3);
  transition: transform 0.2s;
}

.spots__link:active {
  transform: scale(0.95);
}

.spots__pending {
  margin-top: 1rem;
  margin-bottom: 3rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 2px dashed var(--lightblue);
}

.spots__pending-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.spots__pending-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spots__pending-list li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--navy);
  background: var(--cream);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--lightblue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==================
   ギャラリー
================== */
.gallery__coming-soon {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px dashed var(--yellow);
}

.gallery__coming-soon i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--yellow);
  animation: float 3s ease-in-out infinite;
}

.gallery__coming-soon p {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
}

.gallery__sub {
  font-family: var(--font-body);
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
}

/* ==================
   フッター
================== */
.footer {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1.2rem;
  font-size: 0.8rem;
  padding-bottom: 80px;
  letter-spacing: 0.1em;
}

/* ==================
   シマーエフェクト
================== */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  animation: shimmer 2s infinite;
}



/* パスワード認証 */
/* ==================
   認証画面
================== */

/* 認証画面のbody */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* 背景の装飾丸 */
.auth-page::before {
  content: '';
  position: fixed;
  width: 300px;
  height: 300px;
  background: var(--lightblue);
  border-radius: 50%;
  top: -100px;
  right: -80px;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.auth-page::after {
  content: '';
  position: fixed;
  width: 200px;
  height: 200px;
  background: var(--yellow);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
  opacity: 0.15;
  animation: float 10s ease-in-out infinite reverse;
}

/* モーダル外側 */
.auth {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  animation: fadeIn 0.4s ease;
  position: relative;
  z-index: 1;
}

/* モーダル本体 */
.auth__inner {
  width: 100%;
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  box-shadow:
      0 20px 60px rgba(23,74,154,0.15),
      0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid rgba(150,175,220,0.3);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* モーダル上部のカラーライン */
.auth__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--navy);
  border-radius: 28px 28px 0 0;
}

/* モーダル右下の装飾丸 */
.auth__inner::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--cream);
  border-radius: 50%;
  bottom: -40px;
  right: -30px;
  opacity: 0.8;
}

/* 鍵アイコン */
.auth__icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
      0 4px 0px rgba(23,74,154,0.3),
      0 8px 20px rgba(23,74,154,0.2);
  animation: bounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.auth__icon i {
  font-size: 1.6rem;
  color: var(--yellow);
}

/* ロゴ */
.auth__logo {
  position: relative;
  z-index: 1;
}

.auth__logo img {
  width: 70%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* タイトル */
.auth__title {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* リード文 */
.auth__lead {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-top: -0.5rem;
}

/* エラーメッセージ */
.auth__error {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(243,114,112,0.08);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(243,114,112,0.3);
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: authShake 0.4s ease;
}

@keyframes authShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

/* フォーム */
.auth__form {
  width: 100%;
  position: relative;
  z-index: 1;
}

.auth__input-wrap {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--lightblue);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 0px rgba(150,175,220,0.3);
}

.auth__input-wrap:focus-within {
  border-color: var(--navy);
  box-shadow: 0 4px 0px rgba(23,74,154,0.2);
}

.auth__input {
  flex: 1;
  padding: 0.9rem 1.4rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  background: transparent;
  color: var(--text);
  letter-spacing: 0.3em;
}

.auth__input::placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.auth__btn {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 3px 0px rgba(23,74,154,0.3);
}

.auth__btn:hover {
  background: var(--orange);
  box-shadow: 0 3px 0px rgba(224,87,39,0.3);
}

.auth__btn:active {
  transform: scale(0.92) translateY(2px);
  box-shadow: none;
}

/* カラフルドット装飾 */
.auth__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.auth__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.auth__dot:nth-child(1) { background: var(--red); }
.auth__dot:nth-child(2) { background: var(--yellow); }
.auth__dot:nth-child(3) { background: var(--green); }
.auth__dot:nth-child(4) { background: var(--lightblue); }
.auth__dot:nth-child(5) { background: var(--navy); }
