/* style.css */

body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background-color: #f0ede9;
    color: #6b5e52;
  }

  .hidden {
    opacity: 0;
  }

  /* 数字フォント調整 */
  .font-numeric {
    font-family: 'Roboto', 'M PLUS 1p', sans-serif;
    letter-spacing: 0.02em;
}

  .welcome-screen {
    position: fixed;
    inset: 0;
    background-color: rgba(61, 61, 61, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
  }
  
  .welcome-title {
    font-size: 1.5rem;
    color: #9bb1c8;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    padding: 1rem 2rem;
  }
  .welcome-screen.hidden {
    opacity: 0;
    pointer-events: none;
  }  
  
  .menu-button {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
  }
  

  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #fdfaf5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 100;
  }
  
  .site-header.active {
    transform: translateY(0);
    opacity: 1;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b5e52;
    letter-spacing: 0.1em;
    text-decoration: none;
  }

  .logo:hover {
    opacity: 0.8;
  }

  .logo-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem 0 1rem;
  }
  
  .main-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
  }

  .hamburger {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
  }
  
  .hamburger span {
    height: 3px;
    width: 100%;
    background-color: #6b5e52;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* アクティブ時の変化（☰ → ✕） */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #f6f6f6;
    position: absolute;
    top: 60px;
    right: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Cormorant Garamond', serif;
    gap: 1rem;
    min-width: 160px;
    z-index: 100;
    animation: fadeIn 0.3s ease;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu a {
    color: #6b5e52;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
  }
  
  .nav-menu a:hover {
    color: #a3b18a;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }  
  
  .hero-fade {
    position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .hero-bg.show {
    opacity: 1;
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  @keyframes fadeOut {
    to { opacity: 0; }
  }

  .hero-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .hero-img {
    display: block;
    width: 100%;
    height: auto;
  }

  @media (min-width: 768px) {
    .hero-img {
      height: 300px;
    }
  }
  
  .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
  }
  
  .footer {
    background-color: #3d3d3d;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.75rem;
  }

  .site-footer {
    background-color: #fdfaf5;
    padding: 2rem 1rem 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    color: #999;
    text-align: center;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
  }
  
  .footer-bottom small {
    display: block;
    font-size: 0.8rem;
    color: #777;
  }
  
  .footer-reserve {
    background-color: #fdfdfd;
    padding: 2rem 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
  }
  
  .footer-reserve strong {
    color: #6b5e52;
  }
  
  .footer-reserve-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1rem;
  }
  
  .reserve-button,
  .call-button {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 220px;
    text-align: center;
  }
  
  .reserve-button {
    background-color: #a3b18a;
    color: #fff;
  }
  .reserve-button:hover {
    background-color: #7a926d;
  }
  
  .call-button {
    background-color: #6b5e52;
    color: #fff;
  }
  .call-button:hover {
    background-color: #4f463e;
  }
  
  .section {
    padding: 2rem 1.5rem;
    background-color: #f0ede9;
  }

  .section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0;
  }

  .section-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;

    svg {
      stroke: #9bb1c8;
    }
  }
  
  .section-title {
    font-size: 1.5rem;
    color: #7a926d;
    font-family: 'Cormorant Garamond', serif;
  }
  
  .section-text {
    color: #6b5e52;
    line-height: 1.7;
  }

  /* top-news(blog) */
  .section-about, .section-menu, .section-staff, .section-access {
    margin-bottom: 1.5rem;
  }
  
  .news-item {
    background-color: #fdfaf5 !important;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 1rem;
    text-align: left;
  }
  .news-item a {
    text-decoration: none;
    color: inherit;
  }
  .news-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 8px;
  }
  .news-meta {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
  }
  .news-category {
    background-color: #a3b18a;
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
  .news-title {
    font-size: 1rem;
    margin: 0.6rem 0 0.3rem;
    color: #333;
  }
  .news-excerpt {
    font-size: 0.9rem;
    color: #555;
  }
  .swiper {
    padding-bottom: 2rem;
  }

  /* スライド矢印カラー */
.swiper-button-next::after,
.swiper-button-prev::after {
  color: #6b5e52;
  width: 44px;
  height: 44px;
  transition: opacity 0.3s ease;
  opacity: 0.6;
}

.swiper-button-next::after:hover,
.swiper-button-prev::after:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    top: 40%;
  }
}

/* ページネーション */
.news-section .news-swiper {
  position: relative;
}

.news-section .swiper-pagination {
  position: static;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
}

@media (max-width: 600px) {
  .new-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.news-section .swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.news-section .swiper-pagination-bullet-active {
  background-color: #a3b18a;
}

  
  /* top-link */
  .top-alllink {
    text-align: right;
    margin-top: 1rem;
  }
  
  .top-alllink a {
    color: #7a926d;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }

  /* top-access */
  .access-preview {
    margin-top: 3rem;
}

.access-snippet {
    text-align: center;
}

.address-highlight {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    display: inline-block;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.station-info {
    margin-top: 0.25rem;
    font-size: 0.95rem;
}
  
/* menu.html */
.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    color: #6b5e52;
  }

  .menu-list {
    list-style: none;
    margin: 0;
  }
  
  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f0ede9;
  }
  
  .menu-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
    line-height: 1.5;
  }
  
  .back-link {
    color: #7a926d;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .menu-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 90px;
  }
  
  .menu-price {
    font-weight: bold;
    color: #7a926d;
    font-size: 1rem;
  }
  
  .menu-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.2rem;
  }
  .menu-note {
    font-size: 0.75rem;
    display: block;
    margin-top: 0.2rem;
  }
  
  .menu-note.badge {
    color: #fff;
    background-color: #c05;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    display: inline-block;
    font-size: 0.7rem;
    margin-top: 0.5rem;
  }
  
  .menu-note.discount {
    color: #c05;
    font-weight: bold;
    font-size: 0.85rem;
  }  

  .subcategory-title {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 3px solid #9bb1c8;
    font-weight: 600;
    color: #6b5e52;
  }

  .subcategory-desc {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}
  
  /* menu-nav */
  .menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 4rem 0 2rem;
  }
  
  .menu-tabs button {
    background-color: #f0ede9;
    border: 1px solid #9bb1c8;
    color: #9bb1c8;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .menu-tabs button:hover {
    background-color: #9bb1c8;
    color: #f0ede9;
  }
  
  .menu-name {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 600;
    font-size: 1rem;
    border-left: 2px solid #a3b18a;
    padding-left: 0.5rem;
  }
  
  .menu-item.indent {
    padding-left: 1rem;
    border-left: 2px dotted #ddd;
  }
  
  /* about.html */
  .about {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
  }
  
  .about h2 {
    font-size: 1.5rem;
    color: #9bb1c8;
    margin-bottom: 1rem;
  }
  
  .about img {
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  .access-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background-color: #9bb1c8;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.9rem;
  }
  
  .access-button:hover {
    opacity: 0.9;
  }
  
  /* access.html */
  .access-section {
    padding: 2rem 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f6f6f6;
    color: #444;
  }
  
  .section-title--menu, .section-title--about, .section-title--access, .section-title--staff {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    text-align: center;
    margin: 3rem 0 1.5rem;
    color: #6b5e52;
  }
  
  .map-container {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .access-info {
    text-align: center;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1rem;
  }
  
  .address-highlight {
    background-color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    display: inline-block;
    line-height: 1.6;
}
  
  /* staff.html */
  .staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .staff-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    width: 300px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .staff-card:hover {
    transform: translateY(-4px);
  }

  @media (max-width: 480px) {
    .staff-card {
      width: 90%;
    }
  }
  
  .staff-photo {
    width: 100%;
    max-width: 260px;
    height: auto;  
    aspect-ratio: 1/1; /* 正方形 */
    object-fit: cover;  /* はみ出しカットでバランスよく表示 */
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .staff-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.2rem 0;
    color: #333;
  }
  
  .staff-role {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 0.8rem;
  }
  
  .staff-comment {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* instagram link */
  .instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #a3b18a;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .instagram-btn:hover {
    color: #7a926d;
  }
  
  .instagram-icon {
    width: 1rem;
    height: 1rem;
  }

  /* blog.html */
  .blog-section {
    padding: 2rem 1rem;
    background: #fff;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .section-title--blog {
    font-size: 2rem;
    text-align: center;
    color: #6b5e52;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 2rem;
  }
  .blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .blog-card {
    background: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 320px;
    overflow: hidden;
    transition: transform 0.2s;
  }
  .blog-card:hover {
    transform: translateY(-4px);
  }
  .blog-card a {
    color: inherit;
    text-decoration: none;
    display: block;
  }
  .blog-thumb {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
  }
  .blog-meta {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem 0;
  }
  .blog-category {
    background: #a3b18a;
    color: #fff;
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
  }
  .blog-title {
    font-size: 1.1rem;
    margin: 0.5rem 1rem 0;
    font-weight: bold;
    color: #333;
  }
  .blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    padding: 0 1rem 1rem;
    line-height: 1.6;
  }

  /* blog.show.html */
  .blog-detail-section {
    padding: 5rem 1rem 2rem;
    background-color: #fdfaf5;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
  }
  
  .blog-container {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .blog-post {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .blog-category {
    display: inline-block;
    background-color: #a3b18a;
    color: #fff;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
  }
  
  .blog-title {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
  }
  
  .blog-date {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 1.5rem;
  }
  
  .blog-hero-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    aspect-ratio: 3 / 1.5;
  }
  
  .blog-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }
  
  .back-to-list {
    display: inline-block;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6b5e52;
    text-decoration: none;
  }
  
  .back-to-list:hover {
    text-decoration: underline;
  }

  /* markdown記法 */
  .blog-content h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: bold;
    color: #444;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  .blog-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-weight: bold;
    color: #555;
  }
  
  .blog-content blockquote {
    background-color: #f4f1ed;
    border-left: 4px solid #a3b18a;
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
  }
  
  .blog-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
  }
  
  .blog-content code {
    background-color: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95rem;
  }
  
  .blog-content hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2rem 0;
  }
  

  /* パンくずリスト */
  .breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
  }
  
  .breadcrumb a {
    color: #888;
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  
  .breadcrumb span {
    color: #6b5e52;
  }

  /* products/index.html */
  .products-section {
    padding: 2rem 1rem;
    background-color: #fdfaf5;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  .products-container {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .products-title {
    text-align: center;
    font-size: 2rem;
    color: #6b5e52;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 2rem;
  }
  
  .product-feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .product-feature img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .product-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .product-name {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    color: #333;
  }
  
  .product-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
  }
  
  .product-note {
    font-size: 0.9rem;
    color: #6b5e52;
    font-weight: bold;
  }
  
  @media (min-width: 768px) {
    .product-feature {
      flex-direction: row;
      align-items: center;
    }
  
    .product-feature img {
      width: 50%;
    }
  
    .product-content {
      width: 50%;
    }
  }

  /* photogalllery.html */
  .gallery-section {
    padding: 2rem 1rem;
    background-color: #fdfaf5;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
  }
  
  .gallery-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #6b5e52;
    font-family: 'Cormorant Garamond', serif;
  }
  
  .gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .gallery-filter button {
    background-color: #ede8e1;
    color: #333;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
  }
  
  .gallery-filter button.active,
  .gallery-filter button:hover {
    background-color: #a3b18a;
    color: white;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .gallery-grid img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
  }

  .gallery-item {
    display: block;
  }

  /* 閉じるボタンを強調 */
  .lb-close {
    display: block !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    z-index: 9999 !important;
    background-color: rgba(0,0,0,0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
  }
  .lb-overlay {
    background-color: rgba(0, 0, 0, 0.6) !important; /* 明るさ調整 */
  }

  @media (max-width: 480px) {
    .lb-close {
      top: 0.5rem !important;
      right: 0.5rem !important;
      width: 36px;
      height: 36px;
    }
  }
  
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}