@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.3
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500&family=Noto+Sans+JP:wght@300;400&display=swap');

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

  :root {
    --navy: #192840;
    --navy-light: #263d5c;
    --sand: #f0e8db;
    --sand-dark: #e0d0bc;
    --cream: #faf8f4;
    --gold: #b8996a;
    --gold-light: #d4b88a;
    --text: #2c2416;
    --text-mid: #6b5a44;
    --text-light: #a09080;
    --white: #fff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.04em;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2rem;
    transition: background 0.5s, padding 0.5s;
  }
  nav.scrolled {
    background: rgba(25, 40, 64, 0.92);
    backdrop-filter: blur(8px);
    padding: 1.0rem 2rem;
  }
  .nav-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.2em;
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
    text-shadow: 0 1px 10px rgba(0,0,0,0.45);
  }
  .nav-logo span { display: block; font-size: 0.85rem; font-weight: 300; letter-spacing: 0.35em; color: var(--gold-light); margin-top: 4px; text-align: left; }
  .nav-links { display: flex; align-items: center; gap: 0 1.0rem; list-style: none; margin-top: 0; }
  .nav-reserve { display: none; }
  /* ご予約ボタン（nav-links内） */
  .nav-reserve-item { list-style: none; }
  .nav-reserve-link {
    display: inline-block;
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.15em !important;
    padding: 0.45rem 1.2rem !important;
    border-radius: 2px;
    text-decoration: none !important;
    transition: background 0.3s;
    white-space: nowrap;
  }
  .nav-reserve-link:hover { background: var(--gold-light) !important; }
  .nav-links a {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-reserve {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--navy);
    background: var(--gold-light);
    padding: 0.55rem 1.4rem;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-reserve:hover { background: var(--gold); }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    background: url('https://nunome.online/wp-content/uploads/2026/04/hero-img.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25,40,64,0.75) 0%, rgba(25,40,64,0.15) 55%, transparent 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5vw 8vh;
    animation: fadeUp 1.4s 0.4s both;
  }
  .hero-label {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
  }
  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .hero-sub {
    margin-top: 1.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    max-width: 480px;
    line-height: 2;
  }
  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 5vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }
  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
  }

  /* ── INTRO ── */
  .intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 540px;
  }
  .intro-img {
    background: url('https://nunome.online/wp-content/uploads/2026/04/intro-img.jpg') center/cover no-repeat;
  }
  .intro-text {
    background: var(--navy);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
  }
  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-bottom: 1.8rem;
  }
  .section-body {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 2.2;
    letter-spacing: 0.06em;
    max-width: 36ch;
  }
  .divider {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin: 2rem 0;
  }

  /* ── PHOTOS GRID ── */
  .photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 360px 360px;
    gap: 6px;
    background: var(--sand-dark);
  }
  .photo-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .photo-grid-item:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .photo-grid-item:hover img { transform: scale(1.06); }
  .photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(25,40,64,0.75));
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.1em;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s;
  }
  .photo-grid-item:hover .photo-caption { transform: translateY(0); opacity: 1; }

  /* ── STORY ── */
  .story {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .story-text {
    background: var(--cream);
    padding: 7rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* building section-title → hero-titleと同じ文字スタイル */
  .building-text .section-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .story-text .section-title { color: var(--text); }
  .story-text .section-body { color: var(--text-mid); }
  .story-text .section-label { color: var(--gold); }
  .story-img {
    background: url('https://nunome.online/wp-content/uploads/2026/04/story-img.jpg') center/cover no-repeat;
    min-height: 560px;
  }

  /* ── ROOM ── */
  .room {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .room-img {
    position: absolute;
    inset: 0;
    background: url('https://nunome.online/wp-content/uploads/2025/05/IMG_2637.jpeg') center/cover no-repeat;
  }
  .room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25,40,64,0.55);
  }
  .room-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin-left: 8vw;
    padding: 4rem 0;
  }
  .room-content .section-title { color: var(--white); }
  .room-content .section-body { color: rgba(255,255,255,0.7); max-width: none; }

  /* ── ISLAND ── */
  .island {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .island-img {
    background: url('https://nunome.online/wp-content/uploads/2026/04/island-img.jpg') center/cover no-repeat;
    min-height: 500px;
  }
  .island-text {
    background: var(--sand);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .island-text .section-title { color: var(--text); }
  .island-text .section-body { color: var(--text-mid); }

  /* ── CTA ── */
  .cta {
    background: var(--navy);
    padding: 7rem 5vw;
    text-align: center;
  }
  .cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
  }
  .cta-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
  }
  .cta-phone {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
  }
  .cta-phone:hover { color: var(--white); }
  .cta-hours { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; margin-bottom: 2.5rem; }
  .btn {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    padding: 1rem 3rem;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn:hover { background: var(--gold); color: var(--navy); }

  /* ── ACCESS ── */
  .access {
    background: var(--cream);
    padding: 6rem 5vw;
  }
  .access-inner { max-width: 960px; margin: 0 auto; }
  .access-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    text-align: center;
  }
  .access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .access-item { border-left: 1px solid var(--sand-dark); padding-left: 1.5rem; }
  .access-step { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 0.6rem; }
  .access-name { font-family: 'Noto Serif JP', serif; font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; font-weight: 400; }
  .access-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.9; }

  /* ── FOOTER ── */
  footer {
    background: #0e1b2e;
    padding: 3rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.2em;
  }
  .footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }


  /* ── BUILDING ── */
  .building {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .building-text {
    background: var(--navy);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .building-img {
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  @media (max-width: 900px) {
    /* ── ナビゲーション ── */
    #mainNav {
      padding: 0.8rem 1.2rem;
      flex-direction: column;
      gap: 0.35rem;
      min-height: auto;
    }
    .nav-logo {
      font-size: 1.5rem;
      letter-spacing: 0.12em;
      text-align: center;
    }
    .nav-logo span {
      font-size: 0.65rem;
      margin-top: 2px;
      letter-spacing: 0.25em;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem 1.2rem;
      margin-top: 0.2rem;
    }
    .nav-links a {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
    }
    .nav-reserve {
      display: inline-block;
      font-size: 0.75rem;
      padding: 0.4rem 1rem;
      margin-top: 0.3rem;
    }

    /* ── ヒーロー ── */
    .hero-content { padding: 0 5vw 5vh; }
    .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }

    /* ── building セクション ── */
    .building { grid-template-columns: 1fr; }
    .building-text { padding: 3rem 1.8rem; }
    .building-img { min-height: 260px; }

    /* ── intro / story / island ── */
    .intro, .story, .island { grid-template-columns: 1fr; }
    .intro-img, .story-img, .island-img { min-height: 260px; }
    .intro-text, .story-text, .island-text { padding: 2.8rem 1.8rem; }
    .story-img { order: -1; }

    /* ── photo-grid ── */
    .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .photo-grid-item:first-child { grid-column: 1; grid-row: 1; }

    /* ── room ── */
    .room-content { margin: 0; padding: 3rem 1.8rem; width: 100%; max-width: 100%; }

    /* ── CTA ── */
    .cta { padding: 4rem 1.8rem; }

    /* ── access ── */
    .access-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* ── footer ── */
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }

    /* ── section 共通 padding ── */
    .section-label { font-size: 0.65rem; }
    .section-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  }


/* ── トップページ専用：Cocoon既存要素の非表示・リセット ── */
.home #appeal, .home .appeal,
.home .header-container, .home .header-in,
.home .navi-in, .home .navi,
.home .breadcrumb, .home #breadcrumb,
.home .sidebar, .home #sidebar,
.home .footer-wrapper, .home .site-footer,
.home .footer-top, .home .footer-bottom,
.home #footer, .home footer.footer,
.home .article-footer, .home .entry-footer,
.home .admin-panel,
.home .entry-header, .home .article-header,
.home .byline, .home .post-date,
.home .cat-label, .home .pager-post-navi {
  display: none !important;
}
.home #wrapper,
.home #container,
.home #content,
.home #content-in,
.home #main,
.home .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
}
.home body {
  background: var(--cream) !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* 目次を非表示 */
.home #toc,
.home .toc { display: none !important; }

/* section-title の見出し：スキン(dark-enji)のえんじ色装飾を除去 */
.home .article h2 {
  background-image: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  padding: 0 !important;
  font-size: inherit !important;
  color: var(--white) !important;
}

/* story・island セクションの見出しを紺色に */
.home .story-text h2.section-title,
.home .island-text h2.section-title {
  color: var(--navy) !important;
}
