/*
Theme Name: carking
Theme URI: https://park-72.com
Author: PARK72
Description: PARK72 custom theme
Version: 1.0
*/


@charset "utf-8";


  :root {
    /* ── カラー（グランアップル準拠） ── */
    --white:       #ffffff;
    --bg:          #f7f3ed;      /* クリームベース */
    --bg-dark:     #ede8e0;      /* セクション区切り */
    --green:       #3d5a47;      /* ロゴ・アクセント緑 */
    --green-mid:   #5a7a65;      /* hover */
    --gold:        #c9a84c;      /* ゴールドアクセント */
    --gold-light:  #dfc070;
    --text:        #333333;      /* 本文 */
    --text-mid:    #666666;
    --text-light:  #999999;
    --border:      #d9d0c5;      /* 薄いベージュ線 */
    --border-dark: #b0a898;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--text);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    overflow-x: hidden;
  }

  img { max-width: 100%; height: auto; display: block; }
  a   { color: inherit; text-decoration: none; }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ============================================================
     HEADER
     ─ グランアップル: 白背景固定 / ロゴ左 / ナビ右 / REVERSEボタン
     ============================================================ */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  /* サブナビ上段（アクセス・FAQ） */
  .header-sub {
    background: var(--bg);
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    padding: 6px 40px;
    border-bottom: 1px solid var(--border);
  }
  .header-sub a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: var(--text-mid);
    letter-spacing: 0.05em;
    transition: color 0.25s;
  }
  .header-sub a:hover { color: var(--green); }

  /* メインナビ */
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
  }

  .site-logo-img {
    height: 40px;   /* 高さを調整してください */
    width: auto;
    display: block;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .site-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text);
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s;
  }
  .site-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--green);
    transition: width 0.3s;
  }
  .site-nav a:hover { color: var(--green); }
  .site-nav a:hover::after { width: 100%; }

  /* RESERVE ボタン */
  .nav-reserve {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white) !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 10px 24px;
    transition: background 0.25s, color 0.25s;
  }
  .nav-reserve::after { display: none !important; }
  .nav-reserve:hover {
    background: var(--white);
    color: var(--green) !important;
  }

  /* ============================================================
     共通コンポーネント
     ─ グランアップル: セクション見出しは英語大文字＋日本語小文字
     ============================================================ */

  /* セクション見出しブロック */
  .sec-head {
    text-align: center;
    margin-bottom: 56px;
  }
  .sec-head-left {
    text-align: left;
    margin-bottom: 48px;
  }

  /* 英字大タイトル */
  .sec-en {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    line-height: 1;
	font-weight: 900;
	padding-top: 1rem;
  }

  /* 日本語サブタイトル */
  .sec-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-mid);
    margin-top: 10px;
  }

  /* 細いアンダーライン（グランアップル定番） */
  .sec-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--green);
    margin: 16px auto 0;
  }
  .sec-head-left .sec-line { margin-left: 0; }

  /* ── ボタン共通 ── */
  /* 塗りつぶしボタン */
  .btn-primary {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
    padding: 14px 36px;
    transition: background 0.25s, color 0.25s;
  }
  .btn-primary:hover {
    background: var(--white);
    color: var(--green);
  }

  /* アウトラインボタン */
  .btn-outline {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 14px 16px;
    transition: background 0.25s, color 0.25s;
  }
  .btn-outline:hover {
    background: var(--green);
    color: var(--white);
  }

  /* View More リンク（矢印付き） */
  .link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    border-bottom: 1px solid var(--green);
    padding-bottom: 3px;
    transition: opacity 0.25s;
  }
  .link-more::after {
    content: '→';
    font-size: 13px;
    transition: transform 0.25s;
  }
  .link-more:hover { opacity: 0.7; }
  .link-more:hover::after { transform: translateX(4px); }

  /* ============================================================
     HERO
     ─ グランアップル準拠:
       フルスクリーン画像 / 左下に極太タイトルが画像に半分かかる /
       タイトルはグリーン（グランアップルは赤） / 日本語サブ
     ============================================================ */
  .hero {
    height: 100vh;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
  }

  /* スライド背景 */
  .hero-slides { position: absolute; inset: 0; }
  .slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease;
    background-size: cover;
    background-position: center center;
  }
  .slide.active { opacity: 1; }

  /* 画像エリア：上80%を使う（下20%はタイトルに使う） */
  .hero-img-area {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80%;
    overflow: hidden;
    z-index: 0;
  }

  /* スライド画像（複数枚・フェード切り替え） */
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 1.6s ease;
  }
  .hero-slide.active { opacity: 1; }

  /* 画像下部のフェードアウト */
  .hero-img-area::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--bg));
  }

  /* テキストエリア：画像に重なるように絶対配置 */
  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 3;
    padding: 0 5vw 4vh;
  }

  /* 小さいキャプション（LIFE STYLE GLAMPING相当） */
  .hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #575757;
    text-shadow: 0 0 7px #fff;
    margin-bottom: 4px;
    opacity: 0;
    animation: gaFadeUp 0.7s 0.3s forwards;
  }

  /* 超大タイトル（グランアップルは画面幅いっぱいの赤文字） */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(64px, 14vw, 80px);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 0.9;
    color: #307629;
    text-transform: uppercase;
    opacity: 0;
    animation: gaFadeUp 0.8s 0.5s forwards;
    padding: 1rem 0;
}

  /* 日本語サブタイトル */
  .hero-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.25em;
    color: #1e1e1e;
    margin-top: 8px;
    opacity: 0;
    animation: gaFadeUp 0.7s 0.8s forwards;
  }

  /* SCROLL DOWN */
  .hero-scroll {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--green), transparent);
    animation: gaScrollLine 2s infinite;
  }
  @keyframes gaScrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* スライドドット */
  .slide-dots {
    position: absolute;
    right: 40px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .dot {
    width: 1px; height: 28px;
    background: rgba(0,0,0,0.2);
    transition: background 0.4s, height 0.4s;
  }
  .dot.active { background: var(--green); height: 48px; }

  /* ============================================================
     CONCEPT
     ─ グランアップル: 左テキスト / 右画像2枚オーバーラップ /
       白背景
     ============================================================ */
  .concept {
    padding: 100px 7vw;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .concept-text .sec-head-left { margin-bottom: 32px; }

  .concept-text p {
    font-size: 14px;
    line-height: 2.1;
    color: var(--text);
    margin-top: 20px;
  }

  .concept-text .btn-outline { margin-top: 36px; }

  /* 画像エリア */
  .concept-visual { position: relative; padding-bottom: 48px; }

  .concept-img-main {
    width: 80%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-left: auto;
  }
  .concept-img-main img,
  .concept-img-main .img-ph {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .concept-img-main:hover img { transform: scale(1.04); }

  .concept-img-accent {
    position: absolute;
    bottom: 0; left: 0;
    width: 48%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }
  .concept-img-accent img,
  .concept-img-accent .img-ph {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* ============================================================
     FEATURES（施設紹介）
     ─ グランアップル準拠:
       PC: 画像左/右交互・テキスト反対側
       SP: 画像上・テキスト下・角丸画像
     ============================================================ */
  .features {
    padding: 80px 0 100px;
    background: var(--bg);
    overflow: hidden;
  }

  .features-head {
    text-align: center;
    padding: 0 7vw 64px;
  }

  /* 1行 = 1カード（画像＋テキストの横並び） */
  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 480px;
    margin-bottom: 0;
  }

  /* 偶数行：画像を右に（テキスト左） */
  .feature-row:nth-child(even) .feature-img  { order: 2; }
  .feature-row:nth-child(even) .feature-body { order: 1; }

  /* 画像エリア */
  .feature-img {
    position: relative;
    height: 480px;
    overflow: hidden;
  }
  .feature-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .feature-row:hover .feature-img img {
    transform: scale(1.04);
  }

  /* テキストエリア */
  .feature-body {
    padding: 56px 7vw;
    background: var(--bg);
  }

  /* No.番号（グランアップルの大きなNº） */
  .feature-no {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: var(--border-dark);
    letter-spacing: -0.02em;
    margin-bottom: -8px;
    opacity: 0.5;
    padding: 0 0 1rem 0;
  }
  .feature-no-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  /* タイトル英語（大文字・太め） */
  .feature-title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 6px;
  }

  /* タイトル日本語（引用符つき） */
  .feature-title-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-mid);
    margin-bottom: 24px;
  }

  /* 細い区切り線 */
  .feature-divider {
    width: 32px;
    height: 2px;
    background: var(--green);
    margin-bottom: 20px;
  }

  .feature-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 2.1;
    color: var(--text-mid);
    margin-bottom: 28px;
  }

  /* 詳しく見るボタン（グランアップル：角丸・赤 → こちらはグリーン） */
  .feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green);
    padding: 14px 28px;
    border-radius: 2px;
    transition: background 0.25s, gap 0.25s;
  }
  .feature-btn::after { content: '→'; font-size: 13px; }
  .feature-btn:hover  { background: var(--green-mid); gap: 16px; }

  /* ============================================================
     FEATURES レスポンシブ（SP）
     ─ 縦積み・画像角丸・テキスト下
     ============================================================ */
  @media (max-width: 768px) {
    .features { padding: 60px 0 72px; }
    .features-head { padding: 0 5vw 48px; }

    .feature-row {
      grid-template-columns: 1fr;
      min-height: auto;
      margin-bottom: 48px;
    }
    .feature-row:last-child { margin-bottom: 0; }

    /* SP: 常に画像上・テキスト下 */
    .feature-row:nth-child(even) .feature-img  { order: 1; }
    .feature-row:nth-child(even) .feature-body { order: 2; }

    .feature-img {
      height: auto;
      aspect-ratio: 4/3;
      margin: 0 5vw;
      border-radius: 16px;  /* SP: 角丸 */
    }

    .feature-body {
      padding: 28px 5vw 0;
    }

    .feature-no { font-size: 48px; }
    .feature-title-en { font-size: 36px; }
  }

  /* ============================================================
     TOPICS（お知らせ）
     ─ グランアップル準拠:
       左に縦書きTOPICS / 横スクロールカードスライダー /
       角丸カード / カテゴリバナー / 下部2ボタン
     ============================================================ */
  .topics {
    padding: 80px 0 72px;
    background: var(--bg);
    overflow: hidden;
  }

  .topics-inner {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  /* 左：縦書きTOPICS */
  .topics-label {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 12px;
  }
  .topics-label-en {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--green);
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    opacity: 0.15;
  }
  .topics-label-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-light);
    writing-mode: vertical-rl;
  }
  .topics-label-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-light);
    writing-mode: vertical-rl;
    text-transform: uppercase;
  }

  /* 右：スライダーエリア */
  .topics-slider-wrap { flex: 1; min-width: 0; }

  .topics-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 40px 24px 24px;
    scrollbar-width: none;
  }
  .topics-slider::-webkit-scrollbar { display: none; }

  /* カード */
  .topic-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }
  .topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }

  .topic-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--bg-dark);
  }
  .topic-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .topic-card:hover .topic-card-img img { transform: scale(1.04); }

  .topic-card-cat {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(30,30,30,0.82);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    padding: 6px 16px;
    text-align: center;
  }

  .topic-card-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .topic-card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 8px;
  }
  .topic-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 10px;
  }
  .topic-card-excerpt {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  /* 矢印ナビ */
  .topics-nav {
    display: flex;
    gap: 12px;
    padding: 0 0 0 24px;
    margin-top: 8px;
  }
  .topics-nav-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-dark);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    font-size: 16px;
    color: var(--text);
  }
  .topics-nav-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
  }

  /* 下部ボタン */
  .topics-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    padding: 0 7vw;
  }
  .topics-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--green);
    padding: 16px 40px;
    border-radius: 40px;
    transition: background 0.25s, gap 0.25s;
    text-decoration: none;
  }
  .topics-footer-btn::after { content: '→'; }
  .topics-footer-btn:hover { background: var(--green-mid); gap: 16px; }

  @media (max-width: 768px) {
    .topics { padding: 56px 0 56px; }
    .topics-label { width: 52px; }
    .topics-label-en { font-size: 36px; }
    .topics-slider { padding: 12px 20px 20px 16px; gap: 14px; }
    .topic-card { width: 72vw; max-width: 280px; }
    .topics-footer { gap: 12px; }
    .topics-footer-btn { padding: 14px 28px; font-size: 12px; }
  }

  /* ============================================================
     INSTAGRAM
     ─ グランアップル: 4列グリッド / ベージュ背景
     ============================================================ */
  .instagram-section {
    padding: 100px 7vw;
    background: var(--bg);
  }

  .instagram-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .insta-cell {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-dark);
    position: relative;
  }
  .insta-cell img,
  .insta-cell .img-ph {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.4s;
    opacity: 0.88;
  }
  .insta-cell:hover img { transform: scale(1.06); opacity: 1; }

  /* ============================================================
     ACCESS
     ─ グランアップル: 白背景 / テキスト左 / 地図右 / 定義リスト
     ============================================================ */
  .access {
    padding: 100px 7vw;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }

  .access-map {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg);
  }
  .access-map iframe {
    width: 100%; height: 100%;
    border: none;
    filter: grayscale(20%);
  }

  .access-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 36px;
  }
  .access-table tr {
    border-bottom: 1px solid var(--border);
  }
  .access-table td {
    padding: 14px 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text);
    vertical-align: top;
  }
  .access-table td:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    white-space: nowrap;
    padding-right: 28px;
    width: 110px;
  }
  .access-table a { color: var(--green); text-decoration: underline; }

  /* ============================================================
     ANIMATIONS（グランアップルの fadeUp 系）
     ============================================================ */
  @keyframes gaFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 960px) {
    .header-main { padding: 0 20px; }
    .header-sub  { 
      padding: 6px 20px; 
      display: flex;
    }
    .site-nav    { gap: 18px; }

    .hero-content { left: 5vw; }

    .concept       { grid-template-columns: 1fr; gap: 48px; padding: 72px 5vw; }
    .concept-img-main { width: 100%; }

    .features      { padding: 0; }
    .features-grid { grid-template-columns: 1fr; gap: 0; }

    .topics        { padding: 56px 0; }

    .instagram-section { padding: 72px 5vw; }
    .instagram-grid    { grid-template-columns: repeat(2, 1fr); }

    .access        { grid-template-columns: 1fr; gap: 40px; padding: 72px 5vw; }
  }

  @media (max-width: 600px) {
    .site-nav { display: none; }
    .hero-copy-main { font-size: clamp(32px, 10vw, 56px); }
    .features-grid  { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }

    /* ── Hero モバイル ── */
    .hero  { 
      height: auto; 
      min-height: unset; 
    }
    .hero-img-area {
       height: 120vw; 
    position: relative; 
  }

    .hero-title {
        font-size: clamp(12px, 7vw, 96px);
    }


    .hero-scroll   { display: none; }
    .slide-dots    { display: none; }

	.hero-eyebrow{
	color: #fff;
	}

  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1rem;
}
  }

  /* ============================================================
     PAGE HERO（お知らせ・各ページ共通）
     ============================================================ */
  .page-hero {
    background: var(--bg);
    padding: 72px 7vw 56px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  .page-hero-en {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -14px;
  }
  .page-hero-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text);
    line-height: 1;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
  }

  /* ============================================================
     NEWS ARCHIVE（お知らせ一覧）
     ============================================================ */
  .news-archive {
    background: var(--white);
    padding: 72px 7vw 100px;
  }
  .news-archive-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .news-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }
  .news-filter-btn {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text-mid);
    border: 1px solid var(--border);
    padding: 6px 20px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    border-radius: 2px;
  }
  .news-filter-btn:hover,
  .news-filter-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
  }
  .news-card:hover { transform: translateY(-4px); }
  .news-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-dark);
    border-radius: 8px;
    margin-bottom: 14px;
  }
  .news-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .news-card:hover .news-card-img img { transform: scale(1.04); }
  .news-card-noimg {
    width: 100%; height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-light);
  }
  .news-card-cat {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(30,30,30,0.78);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    padding: 5px 14px;
    text-align: center;
  }
  .news-card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-bottom: 6px;
  }
  .news-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-light);
    font-size: 14px;
  }
  .news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 64px;
    flex-wrap: wrap;
  }
  .news-pagination a,
  .news-pagination span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 8px 16px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
    border-radius: 2px;
  }
  .news-pagination a:hover,
  .news-pagination .current {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
  }

  /* ============================================================
     SINGLE（記事単独ページ）
     ============================================================ */
  .single-wrap {
    background: var(--white);
    padding: 56px 7vw 100px;
  }

  /* パンくず */
  .single-breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .single-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s;
  }
  .single-breadcrumb a:hover { color: var(--green); }
  .single-breadcrumb-sep { opacity: 0.4; }

  /* 2カラムレイアウト */
  .single-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* 記事エリア */
  .single-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }
  .single-cat {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--green);
    padding: 4px 14px;
    text-decoration: none;
    transition: background 0.25s;
  }
  .single-cat:hover { background: var(--green-mid); }
  .single-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-light);
  }

  /* タイトル */
  .single-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  /* アイキャッチ */
  .single-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
  }
  .single-thumbnail img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* 本文 */
  .single-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.1;
    color: var(--text);
    margin-bottom: 56px;
  }
  .single-content p  { margin-bottom: 1.6em; }
  .single-content h2 {
    font-size: 20px;
    font-weight: 400;
    border-left: 3px solid var(--green);
    padding-left: 16px;
    margin: 2em 0 1em;
    letter-spacing: 0.05em;
  }
  .single-content h3 {
    font-size: 17px;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin: 1.8em 0 0.8em;
  }
  .single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5em 0;
  }
  .single-content a {
    color: var(--green);
    text-decoration: underline;
  }
  .single-content ul,
  .single-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.4em;
  }
  .single-content li { margin-bottom: 0.4em; }

  /* SNSシェア */
  .single-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
  }
  .single-share-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-right: 4px;
  }
  .single-share-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 2px;
    transition: opacity 0.25s;
    color: var(--white);
  }
  .single-share-btn:hover { opacity: 0.8; }
  .single-share-x    { background: #000; }
  .single-share-fb   { background: #1877f2; }
  .single-share-line { background: #06c755; }

  /* 一覧へ戻る */
  .single-back { text-align: center; }
  .single-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 14px 32px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
  }
  .single-back-btn:hover {
    background: var(--green);
    color: var(--white);
  }

  /* サイドバー */
  .single-sidebar {
    position: sticky;
    top: 130px;
  }
  .sidebar-block {}
  .sidebar-title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -8px;
  }
  .sidebar-title-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--text);
    position: relative;
    z-index: 1;
  padding-top: 1.5rem;
  }
  .sidebar-card {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s;
  }
  .sidebar-card:first-of-type { border-top: 1px solid var(--border); }
  .sidebar-card:hover { opacity: 0.72; }
  .sidebar-card-img {
    width: 80px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-dark);
  }
  .sidebar-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .sidebar-card-noimg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
  }
  .sidebar-card-body {}
  .sidebar-card-cat {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--green);
    padding: 1px 8px;
    display: inline-block;
    margin-bottom: 4px;
  }
  .sidebar-card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 3px;
  }
  .sidebar-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* レスポンシブ */
  @media (max-width: 900px) {
    .single-inner { grid-template-columns: 1fr; gap: 48px; }
    .single-sidebar { position: static; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding: 56px 5vw 40px; }
    .single-wrap { padding: 48px 5vw 72px; }
  }
  @media (max-width: 480px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-filter { gap: 6px; }
  }
