/* ============================================
   AGEO CITY — Tourism Portal
   Aesthetic: Modern Japonisme with weighty restraint
   ============================================ */

:root{
  /* Sumi & Paper palette */
  --ink:          #1a1613;
  --ink-soft:     #2a2420;
  --ink-mid:      #4a3f37;
  --ink-light:    #6b5d52;
  --paper:        #f4ede2;
  --paper-warm:   #ebe2d2;
  --paper-deep:   #e0d4be;
  --washi:        #f7f1e6;
  --bone:         #faf6ed;
  --washi-white:  #f8f7f4;   /* near-white base for grain backdrop */

  /* Accents */
  --shu:          #a8362a;     /* 朱 - vermillion */
  --shu-deep:     #7d2419;
  --shu-soft:     #c45a4c;
  --kincha:       #b8964a;     /* 金茶 */
  --enji:         #6b1f1a;
  --murasaki:     #4a3d5e;     /* deep traditional purple */
  --murasaki-pale:#e8dff1;

  /* Light tones */
  --line:         rgba(26,22,19,0.14);
  --line-strong:  rgba(26,22,19,0.32);

  /* Type */
  --f-mincho: "Hina Mincho", "Zen Old Mincho", "游明朝", "Yu Mincho", serif;
  --f-en:     "Cormorant Garamond", "Cormorant Infant", serif;

  /* Spacing */
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body{
  margin: 0;
  font-family: var(--f-mincho);
  color: var(--ink);
  background-color: #efe6d3;
  background-image: url("dist/img/washi-fiber.svg");
  background-repeat: repeat;
  background-size: 600px 600px;
  font-feature-settings: "palt";
  font-size: 18px;
  line-height: 2.0;
  font-weight: 400;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

/* ============================================
   GLOBAL PARALLAX BACKDROP
   ============================================ */
.site-bg{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: #efe6d3;
  background-image: url("dist/img/washi-fiber.svg");
  background-repeat: repeat;
  background-size: 600px 600px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }


/* ============================================
   HEADER
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .3s;
}
.header-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}
.header-brand{
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}
.brand-org{
  font-family: "Zen Kurenaido", "Hina Mincho", "Zen Old Mincho", serif;
  font-size: 38px;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
}
.brand-sub{
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--ink-light);
  font-weight: 400;
}

/* Right side cluster: lang switch + nav-toggle + nav */
.header-right{
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Language switch (JA / EN) */
.lang-switch{
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.16em;
}
.lang-btn{
  padding: 2px 4px;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  font-style: italic;
  color: var(--ink-light);
  transition: color .25s;
}
.lang-btn:hover{ color: var(--shu); }
.lang-btn.is-active{ color: var(--ink); font-weight: 500; }
.lang-sep{
  color: var(--line-strong);
  font-family: var(--f-en);
  font-style: italic;
}

/* Nav toggle button (hamburger) - hidden on desktop */
.nav-toggle{
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 120;
  cursor: pointer;
}
.nav-toggle-bar{
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .4s cubic-bezier(.4,.2,.2,1), opacity .3s, width .4s, background-color .3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar{
  background: var(--paper);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
  width: 28px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
  width: 28px;
}

.site-nav ul{
  display: flex;
  gap: 0;
}
.site-nav li{
  position: relative;
}
.site-nav li + li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--line);
}
.site-nav a{
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 20px;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: color .3s;
  position: relative;
}
.site-nav a:hover{ color: var(--shu); }
.site-nav .nav-num{
  font-family: var(--f-en);
  font-size: 14px;
  font-style: italic;
  color: var(--shu);
  font-weight: 400;
  letter-spacing: 0;
}
.site-nav .nav-label{ font-weight: 500; }
.header-rule{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.header-rule::after{
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent);
}


/* ============================================
   MAIN VISUAL
   ============================================ */
.mv{
  position: relative;
  background: var(--paper);
  padding: 48px 0 110px;
  overflow: hidden;
}
.mv-slider{
  position: relative;
  width: 100%;
}
.mv-track{
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 0;
  transition: transform .9s cubic-bezier(.4,.6,.2,1);
  will-change: transform;
}
.mv-slide{
  flex: 0 0 70%;
  max-width: 70%;
  min-width: 0;
  position: relative;
  transition: opacity .7s, transform .9s ease;
  cursor: pointer;
}
.mv-slide.is-side{
  opacity: 0.5;
  transform: scale(0.95);
}
.mv-slide-inner{
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-soft);
  border-radius: 80px 8px 80px 80px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(26,22,19,0.4);
}
.mv-slide-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.mv-title-wrap{
  position: absolute;
  bottom: 60px;
  left: 9%;
  right: 18%;
  z-index: 3;
  color: var(--paper);
}
.mv-title{
  margin: 0;
  font-family: var(--f-mincho);
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.mv-title-sub{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.mv-title-tag{
  display: inline-block;
  padding: 8px 22px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-mincho);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 3px;
  text-shadow: none;
}

.mv-region{
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 210px;
  height: auto;
  z-index: 4;
  opacity: 0.92;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.3));
}
.mv-region text{ font-family: "Zen Old Mincho", serif; }

.mv-meta{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0 0;
  font-family: var(--f-en);
  font-size: 14px;
  color: var(--ink-mid);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.mv-meta-date{
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  font-size: 15px;
}
.mv-meta-tag{
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--washi);
  border: 1px solid var(--line);
  font-family: var(--f-mincho);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--ink);
  font-weight: 500;
}
.mv-meta-cat{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-mid);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  font-family: var(--f-mincho);
}
.mv-meta-cat svg{ width: 13px; height: 13px; opacity: 0.6; }

.mv-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 60px 0;
}
.mv-counter{
  font-family: var(--f-en);
  font-style: italic;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
}
.mv-current{
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
}
.mv-bar{
  flex: 0 1 280px;
  height: 1px;
  background: var(--line-strong);
  position: relative;
}
.mv-bar-fill{
  position: absolute;
  left: 0;
  top: -0.5px;
  width: 33.33%;
  height: 2px;
  background: var(--shu);
  transition: width .6s;
}
.mv-arrows{
  display: flex;
  gap: 6px;
}
.mv-arrow{
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
  background: transparent;
  color: var(--ink);
}
.mv-arrow:hover{ background: var(--ink); color: var(--paper); }
.mv-arrow svg{ width: 22px; }

/* ============================================
   CONCEPT (offset photos + centred prose)
   ============================================ */
.concept{
  position: relative;
  padding: 200px 0;
  overflow: hidden;
}
/* 桜の花びらを散らした背景（インラインSVG・密度低め・小粒・ふわふわ降下＋横揺れ） */
.concept::before{
  content: "";
  position: absolute;
  /* 横揺れの分だけ左右にはみ出させ、エッジに隙間を出さない */
  inset: -80px -60px -80px -60px;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><defs><path id='p' d='M0 0 C-8 -6 -10 -18 0 -22 C10 -18 8 -6 0 0 Z M0 -22 Q-1 -19 0 -18 Q1 -19 0 -22 Z'/></defs><g fill='%23e8a8b4'><use href='%23p' transform='translate(70 110) rotate(25) scale(1)' opacity='0.55'/><use href='%23p' transform='translate(210 50) rotate(-40) scale(1.25)' opacity='0.5'/><use href='%23p' transform='translate(330 140) rotate(70) scale(0.85)' opacity='0.6'/><use href='%23p' transform='translate(460 70) rotate(-15) scale(1)' opacity='0.5'/><use href='%23p' transform='translate(540 220) rotate(115) scale(0.9)' opacity='0.55'/><use href='%23p' transform='translate(40 260) rotate(-60) scale(1.15)' opacity='0.5'/><use href='%23p' transform='translate(220 310) rotate(45) scale(0.85)' opacity='0.6'/><use href='%23p' transform='translate(380 290) rotate(-25) scale(1)' opacity='0.55'/><use href='%23p' transform='translate(490 410) rotate(15) scale(0.9)' opacity='0.5'/><use href='%23p' transform='translate(120 440) rotate(-80) scale(1.1)' opacity='0.55'/><use href='%23p' transform='translate(280 510) rotate(55) scale(0.85)' opacity='0.5'/><use href='%23p' transform='translate(430 560) rotate(-40) scale(0.95)' opacity='0.55'/><use href='%23p' transform='translate(560 490) rotate(95) scale(0.75)' opacity='0.6'/></g><g fill='%23f4cdd3'><use href='%23p' transform='translate(150 170) rotate(60) scale(1.4)' opacity='0.4'/><use href='%23p' transform='translate(380 430) rotate(-50) scale(1.5)' opacity='0.35'/><use href='%23p' transform='translate(60 370) rotate(30) scale(1.3)' opacity='0.4'/><use href='%23p' transform='translate(310 60) rotate(-70) scale(1.2)' opacity='0.4'/></g></svg>");
  background-size: 780px 780px;
  background-repeat: repeat;
  opacity: 0.6;
  mix-blend-mode: multiply;
  will-change: background-position, transform;
  /* 落下と横揺れを別軸で同時実行（background-position と transform は競合しない） */
  -webkit-animation:
    sakura-fall 48s linear infinite,
    sakura-sway 6.5s ease-in-out infinite alternate;
          animation:
    sakura-fall 48s linear infinite,
    sakura-sway 6.5s ease-in-out infinite alternate;
}
/* ふんわり感を出す微オーバーレイ（中央寄りを少しだけ淡く） */
.concept::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,253,250,0.55) 0%, rgba(255,253,250,0) 60%);
}
/* 斜めにふわっと降るアニメーション
   tile 780×780 を 1 周期で完全に移動 → 継ぎ目なくループ */
@-webkit-keyframes sakura-fall{
  from { background-position: 0 0; }
  to   { background-position: -780px 780px; }
}
@keyframes sakura-fall{
  from { background-position: 0 0; }
  to   { background-position: -780px 780px; }
}
/* 風に揺られる横スウェイ（落下軌道に重ねて自然な蛇行に） */
@-webkit-keyframes sakura-sway{
  from { -webkit-transform: translate3d(-28px, 0, 0); transform: translate3d(-28px, 0, 0); }
  to   { -webkit-transform: translate3d( 28px, 0, 0); transform: translate3d( 28px, 0, 0); }
}
@keyframes sakura-sway{
  from { -webkit-transform: translate3d(-28px, 0, 0); transform: translate3d(-28px, 0, 0); }
  to   { -webkit-transform: translate3d( 28px, 0, 0); transform: translate3d( 28px, 0, 0); }
}
/* アクセシビリティ: モーション抑制設定の OS では止める */
@media (prefers-reduced-motion: reduce){
  .concept::before{
    -webkit-animation: none;
            animation: none;
  }
}
.concept-inner{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-body{
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}
.concept-lead{
  margin: 0;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--ink);
}
.concept-text{
  margin: 0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 2.8;
  letter-spacing: 0.18em;
  color: var(--ink-mid);
}
/* offset photos */
.concept-photo{
  position: absolute;
  margin: 0;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 40px 90px -45px rgba(26,22,19,0.55);
}
.concept-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}
.concept-photo-l{
  left: 0;
  top: 0;
  width: clamp(180px, 18vw, 280px);
  aspect-ratio: 3 / 4;
}
.concept-photo-r{
  right: calc(50% - 50vw);
  bottom: 0;
  width: clamp(260px, 32vw, 460px);
  aspect-ratio: 16 / 10;
  z-index: 2;
}

/* ふわっと浮かび上がる写真の出現 */
.concept-photo.reveal-init{
  opacity: 0;
  transform: translateY(64px) scale(.965);
  filter: blur(8px) saturate(0.96) contrast(1.03);
  transition:
    opacity 1.6s cubic-bezier(.16,.7,.2,1),
    transform 1.8s cubic-bezier(.16,.7,.2,1),
    filter 1.6s cubic-bezier(.16,.7,.2,1);
}
.concept-photo.reveal-init.is-revealed{
  opacity: 1;
  transform: none;
  filter: blur(0) saturate(0.96) contrast(1.03);
}
.concept-photo-l.reveal-init{ transition-delay: .05s; }
.concept-photo-r.reveal-init{ transition-delay: .28s; }
@media (prefers-reduced-motion: reduce){
  .concept-photo.reveal-init{ opacity: 1; transform: none; filter: none; transition: none; }
}


/* ============================================
   HERO / INTRO
   ============================================ */
.hero{
  position: relative;
  padding: 70px 0 180px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.hero-parallax{
  display: none;
}
.hero-bg::before{
  content: none;
}
.hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

/* Keywords */
.hero-keywords{
  margin-top: 20px;
}
.keywords-heading{
  margin: 0 0 64px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.kw-jp{
  font-size: 26px;
  letter-spacing: 0.18em;
  color: var(--ink);
  padding-left: 0.18em;
}
.keyword-list{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.keyword-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.kw-circle{
  position: relative;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--murasaki-pale);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.kw-circle::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  margin: 8px;
  pointer-events: none;
  z-index: 2;
}
.kw-circle img{
  width: 92%;
  height: 92%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.keyword-item:hover .kw-circle{
  transform: translateY(-6px);
}
.kw-label{
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  text-align: center;
  max-width: 180px;
}

/* ============================================
   SECTION HEADER (shared)
   ============================================ */
.section-head{
  text-align: center;
  margin-bottom: 64px;
}
.sec-title{
  margin: 0;
  font-size: clamp(1.75rem, .833rem + 2.62vw, 3.125rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-left: 0.12em;
}
.sec-lede{
  font-size: 17px;
  color: var(--ink-mid);
  letter-spacing: 0.2em;
  margin: 32px 0 0;
  line-height: 2.4;
  font-weight: 500;
}


/* ============================================
   NEWS / EVENT
   ============================================ */
.news{
  background-color: #E9EAF5;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27200%27%20height%3D%27200%27%3E%3Cfilter%20id%3D%27n%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.85%27%20numOctaves%3D%272%27%20stitchTiles%3D%27stitch%27%2F%3E%3CfeColorMatrix%20type%3D%27saturate%27%20values%3D%270%27%2F%3E%3CfeComponentTransfer%3E%3CfeFuncA%20type%3D%27linear%27%20slope%3D%270.55%27%20intercept%3D%27-0.18%27%2F%3E%3C%2FfeComponentTransfer%3E%3C%2Ffilter%3E%3Crect%20width%3D%27100%25%27%20height%3D%27100%25%27%20filter%3D%27url%28%23n%29%27%2F%3E%3C%2Fsvg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  padding: 168px 0;
  position: relative;
  overflow: hidden;
}
.news::before, .news::after{
  content: "";
  position: absolute;
  background-image: url("images/azalea.svg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.16;
  z-index: 0;
}
.news::before{
  width: 720px;
  height: 720px;
  top: -180px;
  left: -200px;
  transform: rotate(-15deg);
}
.news::after{
  width: 560px;
  height: 560px;
  bottom: -160px;
  right: -140px;
  transform: rotate(25deg);
  opacity: 0.13;
}
.news-inner{
  position: relative;
  z-index: 1;
}
.news-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.section-head-light .sec-title{ color: var(--ink); }

.news-grid{
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.news-grid::-webkit-scrollbar{ display: none; }
.news-grid > .news-card{
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
  min-width: 0;
}
.news-card{
  background: transparent;
  border: none;
  position: relative;
}
.news-card::before{ content: none; }
.news-card::after{ content: none; }

.news-card-link{
  display: flex;              /* ネイティブボタンの中央寄せ挙動を打ち消し、明示的に上揃え */
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 0;
  vertical-align: top;
}
.news-thumb{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(26,22,19,0.05);
}
.news-thumb img{
  width: 100%; height: 100%; object-fit: cover;
}
.news-date{
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-bottom: 14px;
}

.news-body{ padding: 20px 2px 24px; }
.news-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
}

.news-controls{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-progress{
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-en);
  color: var(--ink-mid);
  font-size: 14px;
}
.news-progress em, .progress-current, .progress-total{
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.progress-current{ color: var(--ink); font-size: 15px; }
.progress-bar{
  display: inline-block;
  width: 220px;
  height: 1px;
  background: var(--line-strong);
  position: relative;
}
.progress-fill{
  position: absolute;
  inset: 0;
  width: 25%;
  background: var(--shu);
  height: 2px;
  top: -0.5px;
}
.news-arrows{
  display: flex;
  gap: 4px;
}
.news-arrow{
  width: 56px;
  height: 56px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}
.news-arrow:hover{
  background: var(--ink);
  color: var(--paper);
}
.news-arrow svg{ width: 24px; height: auto; }


/* ============================================
   SHOPS
   ============================================ */
.shops{
  padding: 168px 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}
.shops::before{
  content: "店舗";
  position: absolute;
  top: 60px;
  right: -20px;
  font-size: 380px;
  font-family: var(--f-mincho);
  font-weight: 900;
  color: var(--ink);
  opacity: 0.025;
  line-height: 0.85;
  letter-spacing: -0.05em;
  pointer-events: none;
  writing-mode: vertical-rl;
}
.shops-inner{
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.shops-tabs{
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.shop-tab{
  padding: 18px 36px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  position: relative;
  transition: color .3s;
  color: var(--ink-light);
}
.shop-tab .tab-no{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
}
.shop-tab .tab-label{
  font-size: 14.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.shop-tab.is-active{ color: var(--ink); }
.shop-tab.is-active::after{
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -1px;
  height: 3px;
  background: var(--shu);
}
.shop-tab:hover{ color: var(--shu); }

.shops-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}
.shop-card{
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 24px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 22px;
  position: relative;
  transition: transform .4s, box-shadow .4s;
}
.shop-card[hidden]{ display: none !important; }
.shop-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 40px -20px rgba(26,22,19,0.25);
}
.shop-thumb{
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(26,22,19,0.05);
}
.shop-thumb img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.shop-card:hover .shop-thumb img{ transform: scale(1.06); }
.shop-body{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0 4px;
}
.shop-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.shop-name{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--ink);
}
.shop-rank{
  font-size: 14px;
  letter-spacing: 0.22em;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 8px;
  font-weight: 500;
  align-self: flex-start;
  white-space: nowrap;
}
.shop-romaji{
  font-family: var(--f-en);
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 0.18em;
  margin: -2px 0 8px;
  font-weight: 400;
  font-style: italic;
}
.shop-tags{
  font-size: 14px;
  color: var(--ink-mid);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
  font-weight: 500;
}
.shop-desc{
  font-size: 14px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.shop-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.2em;
  align-self: flex-end;
  margin-top: auto;
  color: var(--ink);
  padding: 6px 14px 6px 0;
  border-bottom: 1px solid var(--ink);
  transition: color .3s, gap .3s;
}
.shop-link svg{ width: 20px; }
.shop-link:hover{ color: var(--shu); gap: 14px; border-color: var(--shu); }


/* ============================================
   MODEL COURSE
   ============================================ */
.model{
  padding: 168px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.model-inner{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.model-tabs{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.model-tab{
  padding: 18px 30px;
  background: transparent;
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .3s, color .3s, border-color .3s;
  min-width: 180px;
}
.model-tab .m-tab-jp{
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.model-tab.is-active{
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.model-tab:hover:not(.is-active){
  border-color: var(--shu);
  color: var(--shu);
}

.model-panel{
  background: transparent;
  border: 1px solid var(--line);
  padding: 56px 64px;
  position: relative;
}
.model-panel::before, .model-panel::after{
  content: "";
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--shu);
}
.model-panel::before{
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.model-panel::after{
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}

.model-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.model-cat{
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--ink-light);
  margin: 0 0 6px;
  font-weight: 500;
}
.model-course-title{
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--ink);
}
.model-meta{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.model-meta li{
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
}

.course-steps{
  position: relative;
  padding-left: 0;
}
.course-steps::before{ content: none; }
.course-step{
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  padding: 0 0 44px;
  align-items: center;
}
.course-step:last-child{ padding-bottom: 4px; }
.step-body{ padding-left: 0; }
.step-transit{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-light);
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.step-transit::before{
  content: "↓";
  color: var(--shu);
  font-style: normal;
  font-size: 14px;
}
.step-title{
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  color: var(--ink);
}
.step-text{
  font-size: 14px;
  color: var(--ink-mid);
  margin: 0 0 14px;
  line-height: 1.95;
  letter-spacing: 0.05em;
}
.step-pill{
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-mid);
  font-weight: 500;
}


/* ============================================
   STORY
   ============================================ */
.story{
  padding: 168px 0;
  background: transparent;
  position: relative;
}
.story-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.story-card{
  display: block;
  background: transparent;
  border: none;
  margin-bottom: 40px;
}
.story-body{
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 2.2;
  margin: 0 0 32px;
  letter-spacing: 0.06em;
}
.story-link{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.24em;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 500;
  transition: background .3s, color .3s, gap .3s;
}
.story-link svg{ width: 22px; }
.story-link:hover{
  background: var(--ink);
  color: var(--paper);
  gap: 16px;
}

.story-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.story-arrow{
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}
.story-arrow:hover{ background: var(--ink); color: var(--paper); }
.story-arrow svg{ width: 20px; }
.story-dots{
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot-item{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--ink);
}
.dot-item.is-active{ background: var(--shu); border-color: var(--shu); }
.story-count{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mid);
  letter-spacing: 0.1em;
}
.story-count em{ font-style: italic; color: var(--ink); font-size: 16px; }



/* News tag chips */
.news-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.news-tags li{
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--paper);
  background: var(--ink-soft);
  padding: 4px 12px;
}

/* Course step photo */
.step-photo{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(26,22,19,0.05);
}
.step-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.course-step:hover .step-photo img{ transform: scale(1.05); }

/* Story (image + text) layout */
.story-card-head{ margin-bottom: 44px; }
.story-name{
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.story-yomi{
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--ink-light);
  font-weight: 400;
}
.story-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-photo{
  margin: 0;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.story-photo img{ width: 100%; height: 100%; object-fit: cover; }
.story-sub{
  margin: 0 0 28px;
  font-size: clamp(1.4rem, .9rem + 1.4vw, 2rem);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
}

/* ============================================
   交通案内 (TRANSIT)
   ============================================ */
.transit{
  background: transparent;
  padding: 156px 0;
  position: relative;
}
.transit-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.transit-block{ margin-top: 64px; }
.transit-block:first-of-type{ margin-top: 8px; }
.transit-map{
  margin: 8px auto 0;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
}
.transit-map-frame{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.transit-map iframe{
  display: block;
  position: absolute;
  top: -64px;
  left: 0;
  width: 100%;
  height: calc(100% + 64px);
  border: 0;
}
.transit-sub{
  margin: 0 0 36px;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding-left: 16px;
  border-left: 4px solid var(--shu);
  line-height: 1.2;
}
.transit-diagram{
  display: grid;
  grid-template-columns: 132px 1fr 76px;
  grid-template-rows: repeat(3, 104px); /* 明示行を定義し、.t-dest の 1/-1 を有効化 */
  grid-auto-rows: 104px;
  column-gap: 20px;
  row-gap: 28px;
  align-items: center;
}
.t-origin{
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-strong);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-align: center;
}
.t-path{
  grid-column: 2;
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.t-seg{
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  min-width: 0;
}
.t-line{
  align-self: end;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  margin-bottom: 6px;
  white-space: nowrap;
}
.t-rail{
  width: 100%;
  height: 1px;
  background: var(--ink-light);
  position: relative;
}
.t-rail::after{
  content: "";
  position: absolute;
  right: -1px; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid var(--ink-light);
  border-right: 1px solid var(--ink-light);
  transform: translateY(-50%) rotate(45deg);
}
.t-time{
  align-self: start;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--shu);
  font-weight: 500;
}
.t-mid{
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 56px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-strong);
  font-size: 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.t-dest{
  grid-column: 3;
  grid-row: 1 / -1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shu);
  color: var(--paper);
}
.t-dest span{
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 20px;
  letter-spacing: 0.28em;
  font-weight: 500;
}
.transit-note{
  margin: 44px 0 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-light);
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  background: transparent;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 0;
}
.footer-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px 72px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.footer-brand{ }
.footer-org-name{
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 1rem + 1.8vw, 2.4rem);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.footer-addr{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  line-height: 1.9;
}
.footer-mail{
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--shu);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity .3s;
}
.footer-mail:hover{ opacity: 0.7; }

.footer-banners{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-banner{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 28px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), background .4s;
}
.footer-banner:hover{ transform: translateY(-4px); background: rgba(255,255,255,0.85); }
.fb-top{
  display: flex;
  align-items: center;
  gap: 16px;
}
.fb-icon{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--shu);
}
.fb-icon svg{ width: 100%; height: 100%; }
.fb-title{
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--ink);
}
.fb-ext{
  margin-left: auto;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--ink-light);
  transition: color .3s, transform .3s;
}
.fb-ext svg{ width: 100%; height: 100%; }
.footer-banner:hover .fb-ext{ color: var(--shu); transform: translate(2px,-2px); }
.fb-caption{
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  line-height: 1.7;
}

.footer-bottom{
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 48px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.copyright{
  font-family: var(--f-mincho);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ink-light);
  margin: 0;
  font-weight: 400;
}
.footer-emergency{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 10px 18px;
  border: 1px solid var(--shu, #b8473c);
  border-radius: 4px;
  background: transparent;
  color: var(--shu, #b8473c);
  cursor: pointer;
  text-align: right;
  line-height: 1.2;
  transition: background .2s, color .2s;
}
.footer-emergency:hover,
.footer-emergency:focus-visible{
  background: var(--shu, #b8473c);
  color: var(--paper, #fff);
}
.footer-emergency .emg-jp{
  font-family: var(--f-mincho);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.footer-emergency .emg-en{
  font-family: var(--f-en);
  font-size: 15px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.modal-row-emg{
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}
.modal-row-emg dt{
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 14px;
  line-height: 1.5;
}
.modal-row-emg dd{
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-self: end;
}
.modal-row-emg .emg-num{
  font-family: var(--f-en);
  font-size: 28px;
  font-weight: 600;
  color: var(--shu, #b8473c);
  letter-spacing: 0.04em;
  line-height: 1;
}
.modal-row-emg .emg-note{
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.sp-only {
  display: none;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
/* JS有効時のみフェードイン。初期はJSで .reveal-init を付与 */
.reveal-init{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal-init.is-revealed{
  opacity: 1;
  transform: translateY(0);
}
.keyword-item.reveal-init{ transition-delay: 0s; }
.keyword-item:nth-child(2).reveal-init{ transition-delay: .08s; }
.keyword-item:nth-child(3).reveal-init{ transition-delay: .16s; }
.keyword-item:nth-child(4).reveal-init{ transition-delay: .24s; }
.keyword-item:nth-child(5).reveal-init{ transition-delay: .32s; }
.news-card.reveal-init{ opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce){
  .reveal-init{ opacity: 1; transform: none; transition: none; }
}


/* ============================================
   GALLERY (full-bleed slide)
   ============================================ */
.gallery{
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.gallery-track{
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 16px 0;
  animation: gallery-scroll 50s linear infinite;
}
.gallery-item{
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
}
/* 横長: slider00002(1), about-right(5), slider00005(6) — 低めに / 縦長: about-left(2), slider00003(3), slider00004(4) — 高めに */
.gallery-item:nth-child(6n+1){ height: clamp(150px, 20vw, 260px); }
.gallery-item:nth-child(6n+2){ height: clamp(280px, 36vw, 460px); }
.gallery-item:nth-child(6n+3){ height: clamp(240px, 32vw, 400px); }
.gallery-item:nth-child(6n+4){ height: clamp(300px, 38vw, 480px); }
.gallery-item:nth-child(6n+5){ height: clamp(170px, 22vw, 290px); }
.gallery-item:nth-child(6n)  { height: clamp(160px, 21vw, 270px); }
.gallery-item img{
  height: 100%;
  width: auto;
  display: block;
  filter: saturate(0.96) contrast(1.03);
}
@keyframes gallery-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-50% - 8px)); }
}
@media (prefers-reduced-motion: reduce){
  .gallery-track{ animation: none; }
}


/* ============================================
   MODAL
   ============================================ */
/* Off-screen (but rendered) modal templates: translate.goog skips
   display:none/visibility:hidden/hidden regions, so we keep the layout
   alive at negative offset. Do NOT change to display:none. */
#modal-templates{
  position: absolute;
  left: -9999px;
  top: 0;
  width: 640px;
  pointer-events: none;
}

.modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.modal[hidden]{ display: none; }
.modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(26,22,19,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .35s ease;
}
.modal.is-open .modal-overlay{ opacity: 1; }
.modal-inner{
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--washi-white);
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .4s cubic-bezier(.2,.7,.2,1), transform .4s cubic-bezier(.2,.7,.2,1);
}
.modal.is-open .modal-inner{ opacity: 1; transform: translateY(0); }
.modal-close{
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background .3s, transform .3s;
}
.modal-close:hover{ background: var(--shu); color: var(--paper); transform: rotate(90deg); }
.modal-close svg{ width: 20px; height: 20px; stroke-width: 2.4; }
.modal-close svg path{ stroke-width: 2.4; }
.modal-media{
  background: var(--ink-soft);
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}
.modal-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-content{ padding: 48px 44px; }
.modal-eyebrow{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--shu);
}
.modal-title{
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 1rem + 1.4vw, 2.1rem);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.modal-title-en{
  display: block;
  margin-top: 6px;
  font-family: var(--f-en, sans-serif);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--ink-mid);
}
.modal-intro{
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
}
.modal-rows{ margin: 0 0 28px; }
.modal-row{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.modal-row:last-child{ border-bottom: 1px solid var(--line); }
.modal-row dt{ color: var(--ink-light); letter-spacing: 0.1em; }
.modal-row dd{ margin: 0; color: var(--ink); line-height: 1.7; }
.modal-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.modal-tags li{
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--paper);
  background: var(--ink-soft);
  padding: 4px 12px;
}
.modal-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .3s, gap .3s;
}
.modal-link svg{ width: 14px; height: 14px; }
.modal-link:hover{ color: var(--shu); gap: 14px; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px){
  .header-inner{ padding: 18px 30px; gap: 24px; }
  .nav-toggle{ display: flex; order: 2; }
  .lang-switch{ order: 1; }
  .site-nav{
    position: fixed;
    top: 0;
    right: 0;
    width: min(82%, 400px);
    height: 100vh;
    height: 100dvh;
    background: var(--ink-soft);
    color: var(--paper);
    padding: 110px 40px 40px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.7,.0,.2,1), visibility 0s linear .5s;
    z-index: 90;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }
  .site-nav.is-open{
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .5s cubic-bezier(.7,.0,.2,1), visibility 0s linear 0s;
  }
  .site-nav ul{
    flex-direction: column;
    gap: 8px;
  }
  .site-nav li + li::before{
    display: none;
  }
  .site-nav li{
    border-bottom: 1px solid rgba(244,237,226,0.12);
  }
  .site-nav a{
    padding: 22px 0;
    font-size: 19px;
    letter-spacing: 0.14em;
    color: var(--paper);
    display: flex;
    align-items: baseline;
    gap: 16px;
  }
  .site-nav a:hover{ color: var(--shu-soft); }
  .site-nav .nav-num{
    font-size: 14px;
    color: var(--shu-soft);
  }
  /* Overlay when nav open */
  body.nav-open{ overflow: hidden; }
  body.nav-open::before{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(26,22,19,0.5);
    z-index: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  /* When nav opens, drop the header chrome so the dark nav reads through and the cream X stands out */
  body.nav-open .site-header{
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.nav-open .brand-org,
  body.nav-open .brand-sub{
    color: var(--paper);
    transition: color .3s;
  }
  body.nav-open .lang-btn{ color: rgba(244,237,226,0.6); }
  body.nav-open .lang-btn.is-active{ color: var(--paper); }
  body.nav-open .lang-sep{ color: rgba(244,237,226,0.4); }
  body.nav-open .header-rule{ opacity: 0; }
  .news-grid{ gap: 16px; }
  .news-grid > .news-card{ flex: 0 0 calc((100% - 16px) / 2); }
  .keyword-list{ grid-template-columns: repeat(3, 1fr); }
  .footer-inner{ grid-template-columns: 1fr; gap: 48px; }
  .transit-diagram{ grid-template-columns: 110px 1fr 72px; column-gap: 14px; }
  .mv-track{ gap: 20px; }
  .mv-slide{ flex-basis: 78%; max-width: 78%; }
}

@media (max-width: 768px){
  .header-inner{ padding: 14px 20px; }
  .brand-org{ font-size: 30px; }
  .footer-bottom{ padding: 22px 24px 32px; gap: 16px; }
  .footer-emergency{ align-self: stretch; align-items: center; text-align: center; }

  /* MV mobile */
  .mv{ padding: 28px 12px 64px; }
  .mv-track{ gap: 8px; }
  .mv-slide{ flex-basis: 100%; max-width: 100%; }
  .mv-slide-inner{ border-radius: 36px 6px 36px 36px; aspect-ratio: auto; height: 60vh; }
  .mv-title-wrap{ bottom: 36px; left: 24px; right: 24px; }
  .mv-title{ font-size: 20px; letter-spacing: 0.04em; }
  .mv-title-tag{ font-size: 13px; padding: 5px 14px; }
  .mv-title-sub{ gap: 12px; margin-top: 12px; }
  .mv-region{ width: 110px; bottom: -10px; right: 14px; }
  .mv-meta{ padding: 14px 0 0; gap: 10px; font-size: 12px; }
  .mv-meta-date{ font-size: 13px; }
  .mv-controls{ padding: 30px 20px 0; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .mv-bar{ flex-basis: 120px; }
  .mv-arrow{ width: 42px; height: 42px; }

  .hero{ padding: 80px 0; }
  .hero-inner{ padding: 0 24px; }
  .keyword-list{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .keyword-list .keyword-item:nth-child(5){
    grid-column: 1 / -1;
    margin-top: 8px;
  }
  .kw-circle{ width: 110px; height: 110px; }

  .news{ padding: 80px 0; }
  .news-inner, .shops-inner, .model-inner, .story-inner, .transit-inner, .footer-inner, .footer-bottom{ padding-left: 24px; padding-right: 24px; }
  /* News: 1ページ = 2列×1段。3枚目以降は右へスライド */
  .news-grid{
    display: grid;
    grid-template-rows: auto;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 14px) / 2);
    column-gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .news-grid::-webkit-scrollbar{ display: none; }
  .news-grid{ margin-bottom: 30px; }
  .news-grid > .news-card{ flex: initial; width: auto; scroll-snap-align: start; }
  .news-controls{ display: flex; flex-direction: column; gap: 22px; align-items: stretch; }
  .news-progress{ justify-content: center; }
  .progress-bar{ width: 140px; }
  .news-arrows{ justify-content: center; }
  .news-progress{ justify-content: center; }
  .progress-bar{ width: 140px; }
  .news-arrows{ justify-content: center; }
  /* ツツジ位置調整 */
  .news::before{ width: 460px; height: 460px; top: -100px; left: -160px; }
  .news::after{ width: 380px; height: 380px; bottom: -100px; right: -120px; }

  .shops, .model, .story{ padding: 80px 0; }

  /* Concept mobile — stack photos, keep the soft reveal */
  .concept{ padding: 80px 0; }
  .concept-inner{
    flex-direction: column;
    min-height: 0;
    gap: 0;
    padding: 0 24px;
  }
  .concept-photo{ position: relative; left: auto; right: auto; top: auto; bottom: auto; }
  .concept-photo-l{ width: 46%; align-self: flex-start; margin-bottom: -28px; }
  .concept-photo-r{ width: 66%; align-self: flex-end; margin: 28px 0 0; }
  .concept-body{ order: -1; margin: 8px 0 40px; gap: 32px; }
  .concept-lead{ font-size: 20px; line-height: 2.3; }
  .concept-text{ font-size: 16px; line-height: 2.5; }
  .shops-tabs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-bottom: none;
  }
  .shop-tab{
    padding: 14px 18px;
    justify-content: center;
    border-bottom: 1px solid var(--line);
  }
  .shop-tab.is-active::after{ left: 0; right: 0; bottom: -1px; }
  .shops-grid{ grid-template-columns: 1fr; gap: 16px; }
  .shop-card{ grid-template-columns: 100px 1fr; gap: 16px; padding: 16px; }
  .shop-thumb{ width: 100px; }
  .shop-name{ font-size: 17px; }

  .model-tabs{ flex-direction: column; align-items: stretch; }
  .model-tab{ min-width: auto; align-items: center; }
  .model-panel{ padding: 32px 20px; }
  .model-header{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .model-meta{ justify-content: flex-start; }
  .course-step{ grid-template-columns: 96px 1fr; gap: 16px; align-items: start; padding-bottom: 28px; }
  .step-body{ padding-left: 0; }
  .step-title{ font-size: 17px; }

  .story-cols{ grid-template-columns: 1fr; gap: 24px; }
  .story-name{ font-size: 24px; gap: 12px; }
  .story-sub{ font-size: 20px; }

  .footer-banners{ grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .transit{ padding: 80px 0; }
  .transit-map{ aspect-ratio: 4 / 3; }
  .transit-diagram{
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-auto-rows: auto;
    row-gap: 0;
    gap: 0;
    position: relative;
  }
  .t-dest{
    order: -1;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin: 0 0 20px;
    padding: 16px 18px;
    min-height: 0;
    border-radius: 4px;
    box-shadow: 0 14px 28px -16px rgba(168,54,42,0.55);
  }
  .t-dest::before{
    content: "↓ 目的地";
    display: block;
    font-family: var(--f-en);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: rgba(244,237,226,0.78);
    margin-bottom: 4px;
  }
  .t-dest span{
    writing-mode: horizontal-tb;
    font-size: 22px;
    letter-spacing: 0.2em;
    font-weight: 600;
  }
  .t-origin{
    grid-column: 1;
    height: auto;
    padding: 14px 18px;
    margin-top: 16px;
    align-self: stretch;
    background: var(--bone);
    border-color: var(--ink);
    font-weight: 600;
  }
  .t-origin + .t-path{ margin-top: 4px; }
  .t-path{
    grid-column: 1;
    padding: 0 0 18px;
    min-height: 0;
    border-bottom: 1px dashed var(--line-strong);
  }
  .t-line{ white-space: normal; text-align: center; font-size: 14px; }
  .t-time{ font-size: 15px; }
  .shops::before{ font-size: 200px; right: -40px; }

  /* Modal mobile */
  .modal{ padding: 48px 0; }
  .modal-inner{
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .modal-media{ height: 260px; min-height: 0; }
  .modal-media img{ height: 100%; min-height: 0; max-height: none; }
  .modal-content{ padding: 32px 24px 56px; }

  .sp-only {
    display: block;
  }
}

