@charset "UTF-8";

/* 共通部分 ------------------------------------------------------------------------*/
html {
    font-size: 100%;
}
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
    background-color: #fffcfa;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}


:root {
    --text: #2a2a2a;
    --muted: #6b6b6b;
    --bg: #ffffff;
    --panel: #f7f7f7;
    --line: #e9e9e9;
    --gold: #C8B273;
    --gold-dark: #a99354;
  }

  * {
    box-sizing: border-box
  }

  html,
  body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }

  a {
    color: inherit;
    text-decoration: none
  }

  img {
    max-width: 100%;
    display: block
  }

  .container {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 20px
  }

/* header*/
 .page-header {
    display: flex;
    justify-content: space-between;
       margin-right: 10px;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
  }

 .logo {
    width: 210px;
    margin-top: 25px;
    margin-left: 10px;
  }

  .brand .name {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    letter-spacing: .3px
  }

  .menu {
    display: flex;
    gap: 26px;
    align-items: center
  }

  .menu a {
    font-size: 14px;
    color: #444
  }

  .menu a.reserve {
    background: var(--gold);
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: .2s ease;
    display: inline-block
  }

  .reserve:hover {
    background: var(--gold-dark)
  }

  /* hero */
  .hero {
    width: 100%;
    height: 700px;
    background: #ddd;
    overflow: hidden
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
  }

  /* sections */
  section {
    padding: 70px 0
  }

  .section-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 28px;
  }

  .lead {
    max-width: 820px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.9;
    text-align: center
  }

  /* Menu cards */
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 28px
  }

  .card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    overflow: hidden;
    border: 1px solid var(--line)
  }

  .card img {
    aspect-ratio: 16/10;
    object-fit: cover
  }

  .card .body {
    padding: 16px;
    text-align: center
  }

  .card .label {
    color: #666;
    font-size: 14px
  }

  .center-btn {
    display: flex;
    justify-content: center;
    margin-top: 26px
  }

  .btn-ghost {
    background: #4d4d4d;
    color: #fff;
    border-radius: 999px;
    padding: 10px 28px;
    display: inline-block;
    transition: .2s
  }

  .btn-ghost:hover {
    opacity: .9
  }

  /* gallery */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
  }

  .gallery img {
    border-radius: 16px;
    aspect-ratio: 16/10;
    object-fit: cover;
    border: 1px solid var(--line)
  }

  /* access */
  .access {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: start
  }

  .info {
    display: grid;
    gap: 14px
  }

  .info dl {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 10px 14px;
    margin: 0
  }

  .info dt {
    color: #777
  }

  .cta {
    margin-top: 10px
  }

  .cta a {
    background: var(--gold);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    display: inline-block
  }

  .cta a:hover {
    background: var(--gold-dark)
  }

  /* news */
  .news-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px
  }

  .news-list {
    list-style: none;
    padding: 0;
    margin: 0
  }

  .news-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding: 10px 6px;
    border-bottom: 1px dashed var(--line)
  }

  .news-item:last-child {
    border-bottom: none
  }

  .news-date {
    color: #777
  }

  .news-link {
    color: #222;
    text-decoration: underline
  }

  .news-more {
    text-align: right;
    margin-top: 10px
  }

  /* footer */
  footer {
    background: #2f2f2f;
    color: #d6d6d6;
    padding: 18px 0
  }

  footer .copyright {
    font-size: 12px;
    text-align: center
  }

  /* section spacing tweaks for first/last */
  .tight-top {
    padding-top: 40px
  }

  /* responsive */
  @media (max-width: 960px) {

    .cards,
    .gallery {
      grid-template-columns: 1fr 1fr
    }

    .access {
      grid-template-columns: 1fr
    }

    .hero {
      height: 280px
    }
  }

  @media (max-width: 560px) {
    .menu {
      display: none
    }

    .cards,
    .gallery {
      grid-template-columns: 1fr
    }

    .section-title {
      font-size: 22px
    }

    .hero {
      height: 220px
    }

    .news-item {
      grid-template-columns: 1fr
    }
  }
