/* ==========================================================================
   grace - 京都着物サロン grace
   Color:
     Gold Accent:  #C6AA6D  rgb(198,170,109)
     Dark Brown:   #3A3320  rgb(58,51,32)
     BG Cream:     #FDF7EE  rgb(253,247,238)
     Light Blue:   #E8EDF1  rgb(232,237,241)
     White:        #FFFFFF
   Font: "Noto Serif JP", "YuMincho", "Yu Mincho", serif
   Accent Font: "Shippori Mincho", serif (雰囲気を出す見出し等に使用)
   English Font: "Cormorant Garamond", serif (英語ページ用)
   ========================================================================== */

/* ----------------------------------------
   Reset & Base
   ---------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Serif JP", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
    line-height: 1.8;
    color: #3A3320;
    background-color: #FDF7EE;
    -webkit-font-smoothing: antialiased;
}

/* English pages */
html[lang="en-US"] body,
html[lang="en"] body {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

html[lang="en-US"] .hero-catch,
html[lang="en"] .hero-catch,
html[lang="en-US"] .section-title,
html[lang="en"] .section-title,
html[lang="en-US"] .plan-hero-title,
html[lang="en"] .plan-hero-title,
html[lang="en-US"] .steps-heading,
html[lang="en"] .steps-heading,
html[lang="en-US"] .concept-item-title,
html[lang="en"] .concept-item-title,
html[lang="en-US"] .gallery-category-title,
html[lang="en"] .gallery-category-title,
html[lang="en-US"] .plan-card-name,
html[lang="en"] .plan-card-name,
html[lang="en-US"] .faq-category-title,
html[lang="en"] .faq-category-title,
html[lang="en-US"] .cta-text,
html[lang="en"] .cta-text {
    font-family: "Cormorant Garamond", serif;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: #C6AA6D;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul, ol {
    list-style: none;
}

/* ----------------------------------------
   Accent Font (雰囲気を出す見出し等)
   ---------------------------------------- */
.hero-catch,
.section-title,
.plan-hero-title,
.availability-concept-lead,
.concept-label,
.concept-item-title,
.gallery-category-title,
.plan-card-name,
.steps-heading,
.faq-category-title,
.cta-text {
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #3A3320;
    text-align: center;
    margin-bottom: 60px;
}

.section-title--gold {
    color: #C6AA6D;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.grace-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 247, 238, 0.95);
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.grace-header.scrolled {
    box-shadow: 0 1px 10px rgba(58, 51, 32, 0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo .logo-img {
    height: 60px;
    width: auto;
}

.header-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #C6AA6D;
    line-height: 1;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #C6AA6D;
    opacity: 1;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    margin-left: 24px;
    padding: 5px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #E8EDF1;
    background-color: #C6AA6D;
    border: 1px solid #C6AA6D;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #b0964e;
    opacity: 1;
}

/* Header SNS */
.header-sns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
}

.header-sns-icon {
    display: flex;
    align-items: center;
    color: #3A3320;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.header-sns-icon:hover {
    opacity: 1;
    color: #C6AA6D;
}

/* Language Flag */
.lang-flag {
    vertical-align: middle;
    margin-right: 4px;
}

.nav-lang-dropdown .lang-flag {
    margin-right: 6px;
}

/* Language Switcher */
.nav-lang {
    position: relative;
    margin-left: 16px;
}

.nav-lang-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
    background: none;
    border: 1px solid #C6AA6D;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-lang-btn:hover {
    background-color: #C6AA6D;
    color: #fff;
}

.nav-lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #e5ddd0;
    box-shadow: 0 4px 12px rgba(58, 51, 32, 0.1);
    list-style: none;
    padding: 0;
    min-width: 120px;
    z-index: 100;
}

.nav-lang-dropdown.is-open {
    display: block;
}

.nav-lang-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3A3320;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease;
}

.nav-lang-dropdown a:hover {
    background-color: #FDF7EE;
    opacity: 1;
}

.nav-lang-dropdown a.is-active {
    color: #C6AA6D;
}

/* Mobile Language Switcher */
.mobile-lang {
    text-align: center;
    padding: 20px 0;
}

.mobile-lang-btn {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #3A3320;
}

.mobile-lang-btn.is-active {
    color: #C6AA6D;
}

.mobile-lang-divider {
    margin: 0 12px;
    color: #d4c9b8;
}

.mobile-lang-btn .lang-flag {
    vertical-align: middle;
    margin-right: 4px;
}

/* Mobile SNS */
.mobile-sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}

.mobile-sns-icon {
    display: flex;
    align-items: center;
    color: #3A3320;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.mobile-sns-icon:hover {
    opacity: 1;
    color: #C6AA6D;
}

.header-spacer {
    height: 70px;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3A3320;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

.hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(253, 247, 238, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #3A3320;
}

.mobile-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 40px;
    background-color: #C6AA6D;
    color: #E8EDF1 !important;
    border-radius: 2px;
}

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.hero {
    position: relative;
    height: 75vh;
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #FDF7EE;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 90px 0 0 60px;
}

.hero-catch {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.6;
    color: #5a4a2a;
}

.hero-catch-en {
    margin-top: 24px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #5a4a2a;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    z-index: 2;
    pointer-events: none;
}

.hero-botanical {
    width: 100%;
    height: auto;
}

/* (Home Intro は Steps に統合) */

/* ----------------------------------------
   Availability (空き状況)
   ---------------------------------------- */
.availability {
    padding: 80px 0 0;
    background-color: #FDF7EE;
    position: relative;
    overflow: hidden;
}

.availability-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.availability-concept {
    flex: 1;
    padding: 20px 0;
    text-align: center;
}

.availability-concept-lead {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #C6AA6D;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 24px;
}

.availability-concept-lead::after {
    content: "◇";
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0.5rem;
    color: #C6AA6D;
    opacity: 0.6;
}

.availability-concept-body {
    font-size: 0.9rem;
    line-height: 2.4;
    color: #3A3320;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.availability-concept-curation {
    margin-bottom: 28px;
    padding: 24px 0;
}

.availability-concept-curation-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #C6AA6D;
    margin-bottom: 16px;
}

.availability-concept-curation-item {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #3A3320;
    letter-spacing: 0.1em;
    font-style: italic;
}

.availability-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.availability-photos {
    width: 100%;
}

.availability-photo {
    width: 100%;
    display: block;
    object-fit: cover;
}

.availability-status {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #C6AA6D;
    position: relative;
}

.availability-status-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #C6AA6D;
    margin-bottom: 12px;
}

.availability-status-value {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #3A3320;
}

.availability-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 12px;
}

.availability-status.is-available .availability-status-dot {
    background-color: #C6AA6D;
}

.availability-status.is-unavailable .availability-status-value {
    color: rgba(58, 51, 32, 0.4);
}

.availability-status.is-unavailable .availability-status-dot {
    background-color: rgba(58, 51, 32, 0.25);
}

/* News Preview (TOP) */
.news-preview {
    padding: 80px 0;
    background-color: #FDF7EE;
}

/* ----------------------------------------
   Concept
   ---------------------------------------- */
.concept {
    padding: 120px 0;
    background-color: #FDF7EE;
}

.concept-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.concept-item:last-child {
    margin-bottom: 0;
}

.concept-item--reverse {
    flex-direction: row-reverse;
}

.concept-item-image {
    flex: 0 0 48%;
    overflow: hidden;
}

.concept-item-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.concept-item-body {
    flex: 1;
    position: relative;
}

.concept-label {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #C6AA6D;
    margin-bottom: 24px;
}

.concept-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
    line-height: 1.6;
    margin-bottom: 12px;
}

.concept-item-en {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #3A3320;
    margin-bottom: 20px;
}

.concept-item-text {
    font-size: 0.9rem;
    line-height: 2.2;
    color: #3A3320;
}

/* ----------------------------------------
   Plan / Price
   ---------------------------------------- */

/* Plan Hero */
.plan-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.plan-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.plan-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #3A3320;
}

/* Plan Sections */
.plan-section {
    padding: 80px 0;
    background-color: #FDF7EE;
}

.plan-section--formal {
    padding-top: 0;
}

.plan-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.plan-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    background-color: #C6AA6D;
    display: inline-block;
    padding: 10px 40px;
}

/* Plan Cards */
.plan-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.plan-card {
    display: flex;
    align-items: center;
    gap: 40px;
}

.plan-card--reverse {
    flex-direction: row-reverse;
}

.plan-card-image {
    position: relative;
    flex: 0 0 35%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-card-label {
    display: none;
}

.plan-card-body {
    flex: 1;
}

.plan-card-text {
    font-size: 0.85rem;
    line-height: 2;
    color: #5a4a2a;
    margin-bottom: 20px;
}

.plan-card-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #C6AA6D;
    letter-spacing: 0.05em;
}

/* Options Section */
.plan-options-section {
    padding: 80px 0;
    background-color: #FDF7EE;
}

.plan-options-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #C6AA6D;
    text-align: center;
    margin-bottom: 40px;
}

.plan-options-list {
    max-width: 700px;
    margin: 0 auto;
}

.plan-options-category {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #C6AA6D;
    margin-top: 32px;
    margin-bottom: 8px;
}

.plan-options-category:first-child {
    margin-top: 0;
}

.plan-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #3A3320;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.plan-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #C6AA6D;
}

.plan-option-info {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.plan-option-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3A3320;
}

.plan-option-name-en {
    font-size: 0.8rem;
    font-weight: 600;
    color: #C6AA6D;
    letter-spacing: 0.05em;
}

.plan-option-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3A3320;
}

/* ----------------------------------------
   Steps
   ---------------------------------------- */
.steps {
    color: #3A3320;
    position: relative;
}

.steps-header {
    padding: 40px 0;
    background-color: #FDF7EE;
    text-align: center;
}

.steps-en {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #C6AA6D;
    margin-bottom: 12px;
}

.steps-heading {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.steps-content {
    background-color: #fff;
    background-image: url('../images/hero/formal.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    padding: 50px 0 60px;
    position: relative;
}

.steps-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #3A3320;
}

.steps-number {
    font-size: 2.5rem;
    color: #3A3320;
}

.steps-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    flex: 0 0 130px;
}

.step-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, #C6AA6D 0%, #E8D5A3 60%, #FDF7EE 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.step-label {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}

.step-text {
    font-size: 0.7rem;
    line-height: 1.5;
    color: #3A3320;
    margin-top: 8px;
}

.steps-description {
    text-align: center;
    font-size: 0.85rem;
    line-height: 2;
    color: #3A3320;
    margin-top: 30px;
}

.step-arrow {
    flex: 0 0 20px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #C6AA6D;
    border-right: 2px solid #C6AA6D;
    transform: rotate(45deg);
}

/* ----------------------------------------
   Gallery
   ---------------------------------------- */
.gallery {
    padding: 90px 0 0;
    background-color: #FDF7EE;
}

/* Category sections (vertically stacked) */
.gallery-category {
    margin-bottom: 80px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-category-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #C6AA6D;
    margin-bottom: 4px;
}

.gallery-category-en {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #C6AA6D;
}

/* Carousel */
.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 2rem;
    color: #C6AA6D;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.gallery-arrow:hover {
    opacity: 0.6;
}

.gallery-pager {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #C6AA6D;
    letter-spacing: 0.1em;
}

.gallery-carousel-viewport {
    flex: 1;
    overflow: hidden;
}

.gallery-carousel-track {
    display: flex;
    will-change: transform;
}

.gallery-carousel-item {
    flex: 0 0 25%;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.gallery-carousel-item img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
}

.gallery-carousel-caption {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #3A3320;
    letter-spacing: 0.05em;
}

/* Instagram Section */
.gallery-instagram-section {
    padding: 60px 0 120px;
    background-color: #FDF7EE;
}

.gallery-instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.gallery-instagram-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #3A3320;
    border-radius: 50%;
}

.gallery-instagram-label {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
}

.gallery-instagram-grid {
    margin-bottom: 40px;
}

.gallery-instagram-grid img {
    width: 100%;
    display: block;
}

/* ----------------------------------------
   News
   ---------------------------------------- */
.news {
    padding: 60px 0 0;
    background-color: #FDF7EE;
}

/* Info Tabs */
.info-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 48px;
    border-bottom: 1px solid #d4c9b8;
}

.info-tab {
    padding: 12px 28px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #999;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
}

.info-tab:hover {
    color: #3A3320;
}

.info-tab.is-active {
    color: #3A3320;
    border-bottom-color: #C6AA6D;
}

.news-item.is-hidden {
    display: none;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-item {
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(58, 51, 32, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(58, 51, 32, 0.12);
}

.news-item-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-item-cat {
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: rgba(198, 170, 109, 0.9);
    z-index: 1;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-body {
    padding: 20px;
}

.news-item-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #C6AA6D;
    margin-bottom: 12px;
}

.news-item-more {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #C6AA6D;
}

.news-item-date {
    display: block;
    font-size: 0.75rem;
    color: rgba(58, 51, 32, 0.6);
    margin-bottom: 8px;
}

.news-item-excerpt {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #3A3320;
    margin-bottom: 12px;
}

.news-more-wrap {
    text-align: right;
}

/* Single News (記事詳細) */
.single-news {
    padding: 60px 0 80px;
}

.single-news-meta {
    margin-bottom: 16px;
}

.single-news-date {
    font-size: 0.85rem;
    color: rgba(58, 51, 32, 0.6);
}

.single-news-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3A3320;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5ddd0;
}

.single-news-content {
    font-size: 0.95rem;
    line-height: 2;
    color: #3A3320;
    margin-bottom: 60px;
}

.single-news-content p {
    margin-bottom: 1.5em;
}

.single-news-content img {
    max-width: 100%;
    height: auto;
}

.single-news-back {
    text-align: center;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

/* WP paginate_links list output */
.news-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-pagination .page-numbers li {
    display: inline-flex;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3A3320;
    border: 1px solid #d4c9b8;
    transition: all 0.3s ease;
}

.news-pagination .page-numbers a:hover {
    border-color: #C6AA6D;
    color: #C6AA6D;
    opacity: 1;
}

.news-pagination .page-numbers .current {
    color: #fff;
    background-color: #C6AA6D;
    border-color: #C6AA6D;
}

.news-pagination .page-numbers .prev,
.news-pagination .page-numbers .next {
    border: none;
    font-size: 0.8rem;
}

.news-pagination .page-numbers .dots {
    border: none;
    color: #3A3320;
}

.btn-more {
    display: inline-block;
    padding: 12px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #E8EDF1;
    background-color: #3A3320;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-more:hover {
    background-color: #55493a;
    opacity: 1;
    color: #E8EDF1;
}

/* ----------------------------------------
   Access
   ---------------------------------------- */
.access {
    padding: 120px 0;
    background-color: #FDF7EE;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.access-map iframe {
    width: 100%;
    height: 400px;
    display: block;
}

.access-detail-wrap {
    text-align: center;
}

.access-detail-title {
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #C6AA6D;
    margin-bottom: 24px;
}

.access-detail {
    display: grid;
    text-align: left;
    grid-template-columns: 100px 1fr;
    gap: 16px 20px;
    font-size: 0.9rem;
}

.access-detail dt {
    font-weight: 600;
    color: #C6AA6D;
}

.access-detail dd {
    color: #3A3320;
}

/* Access Hotels */
.access-hotels {
    padding: 80px 0 120px;
    background-color: #FDF7EE;
}

.access-hotels-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
    text-align: center;
    margin-bottom: 8px;
}

.access-hotels-en {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #C6AA6D;
    text-align: center;
    margin-bottom: 50px;
}

.access-hotel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.access-hotel-card {
    background-color: #fff;
    overflow: hidden;
}

.access-hotel-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.access-hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-hotel-card-body {
    padding: 24px;
}

.access-hotel-card-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #3A3320;
    margin-bottom: 4px;
}

.access-hotel-card-en {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #C6AA6D;
    margin-bottom: 16px;
}

.access-hotel-card-text {
    font-size: 0.8rem;
    line-height: 2;
    color: #3A3320;
}

/* ----------------------------------------
   Reservation
   ---------------------------------------- */
.reservation {
    padding: 120px 0;
    background-color: #FDF7EE;
}

.reservation-en {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
    margin-top: -40px;
    margin-bottom: 60px;
}

.reservation-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #3A3320;
    margin-bottom: 8px;
}

.form-required {
    color: #C6AA6D;
    font-size: 0.75rem;
}
.form-note {
    color: #888;
    font-size: 0.75rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #3A3320;
    border: 1px solid #d4c9b8;
    background-color: #FDF7EE;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C6AA6D;
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group--half {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    display: inline-block;
    padding: 14px 60px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #E8EDF1;
    background-color: #C6AA6D;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #b0964e;
}

/* ----------------------------------------
   FAQ
   ---------------------------------------- */
.faq {
    padding: 120px 0;
    background-color: #FDF7EE;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #C6AA6D;
    margin-top: -40px;
    margin-bottom: 60px;
}

.faq-category {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #3A3320;
    padding-bottom: 12px;
    border-bottom: 2px solid #C6AA6D;
    margin-bottom: 0;
}

.faq-item {
    border-bottom: 1px solid #C6AA6D;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
}

.faq-q {
    font-size: 1rem;
    font-weight: 800;
    color: #C6AA6D;
    flex-shrink: 0;
}

.faq-question > span:nth-child(2) {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3A3320;
}

.faq-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #3A3320;
    border-bottom: 2px solid #3A3320;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    display: none;
    padding: 0 0 20px 32px;
}

.faq-item.open .faq-answer {
    display: flex;
    gap: 12px;
}

.faq-a {
    font-size: 1rem;
    font-weight: 800;
    color: #C6AA6D;
    flex-shrink: 0;
}

.faq-answer p {
    font-size: 0.85rem;
    line-height: 2;
    color: #3A3320;
}

/* ----------------------------------------
   Cancellation Policy
   ---------------------------------------- */
.policy-section {
    padding: 80px 0;
    background-color: #FDF7EE;
}

.policy-content {
    max-width: 760px;
    margin: 0 auto;
}

.policy-intro {
    font-size: 0.95rem;
    line-height: 2;
    color: #3A3320;
    margin-bottom: 48px;
}

.policy-block {
    margin-bottom: 40px;
}

.policy-heading {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3A3320;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 170, 109, 0.3);
}

.policy-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 24px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #3A3320;
}

.policy-list dt {
    font-weight: 600;
}

.policy-list dd {
    margin: 0;
}

.policy-text {
    font-size: 0.9rem;
    line-height: 2;
    color: #3A3320;
}

/* ----------------------------------------
   CTA
   ---------------------------------------- */
.cta {
    padding: 80px 0;
    background-color: #3A3320;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #3A3320;
    background-color: #C6AA6D;
    border: none;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #d4ba7f;
    opacity: 1;
    color: #3A3320;
}

/* ----------------------------------------
   Access Compact (CTA下のフッター用)
   ---------------------------------------- */
.access-compact {
    padding: 60px 0;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.grace-footer {
    padding: 60px 0 30px;
    background-color: #FDF7EE;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-producer {
    margin-bottom: 30px;
}

.footer-producer p {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(58, 51, 32, 0.6);
}

.footer-producer-link {
    color: rgba(58, 51, 32, 0.6);
    text-decoration: none;
}

.footer-producer-link:hover {
    color: #C6AA6D;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav ul {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #3A3320;
}

.footer-nav a:hover {
    color: #C6AA6D;
    opacity: 1;
}

.footer-sns {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #3A3320;
    color: #fff;
    transition: background-color 0.3s ease;
}

.footer-sns-icon:hover {
    background-color: #C6AA6D;
    opacity: 1;
}

.footer-policy-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #3A3320;
}

.footer-policy-link:hover {
    color: #C6AA6D;
    opacity: 1;
}

/* ----------------------------------------
   Responsive - Tablet
   ---------------------------------------- */
@media (max-width: 960px) {
    .section-container {
        padding: 0 24px;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-catch {
        font-size: 2.4rem;
    }

    .concept-item {
        flex-direction: column;
        gap: 30px;
    }

    .concept-item--reverse {
        flex-direction: column;
    }

    .concept-item-image {
        flex: none;
        width: 100%;
    }

    .availability-inner {
        flex-direction: column;
        gap: 40px;
    }

    .availability-right {
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .plan-cards {
        gap: 40px;
    }

    .plan-card {
        flex-direction: column;
        gap: 24px;
    }

    .plan-card--reverse {
        flex-direction: column;
    }

    .plan-card-image {
        flex: none;
        width: 100%;
    }

    .plan-card--reverse .plan-card-label {
        left: 16px;
        right: auto;
    }

    .plan-hero-title {
        font-size: 1.8rem;
    }

    .steps-flow {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .step-arrow {
        display: none;
    }

    .step-item {
        flex: none;
    }

    .step-circle {
        width: 110px;
        height: 110px;
    }

    .gallery-carousel-item {
        flex: 0 0 50%;
    }

    .gallery-arrow {
        width: 24px;
        height: 24px;
        font-size: 1.4rem;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .info-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

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

    .access-hotel-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav ul {
        justify-content: center;
        gap: 16px;
    }
}

/* ----------------------------------------
   Responsive - Mobile
   ---------------------------------------- */
@media (max-width: 600px) {
    .section-container {
        padding: 0 16px;
    }

    .header-inner {
        padding: 14px 16px;
    }

    .header-spacer {
        height: 56px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 120px 0 0 20px;
    }

    .hero-catch {
        font-size: 1.8rem;
    }

    .hero-catch-en {
        font-size: 0.8rem;
    }

    .availability-status {
        padding: 30px 40px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .concept,
    .plan,
    .gallery,
    .news,
    .access,
    .reservation,
    .faq {
        padding: 80px 0;
    }

    .access-compact {
        padding: 40px 0;
    }

    .concept-item-image img {
        height: 260px;
    }

    .concept-item-title {
        font-size: 1.2rem;
    }

    .steps-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-item {
        flex: none;
    }

    .step-circle {
        width: 130px;
        height: 130px;
    }

    .step-label {
        font-size: 1.2rem;
    }

    .gallery-carousel-item {
        flex: 0 0 50%;
    }

    .gallery-category {
        margin-bottom: 60px;
    }

    .plan-hero {
        height: 200px;
    }

    .plan-hero-title {
        font-size: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .access-detail {
        grid-template-columns: 80px 1fr;
        gap: 12px 16px;
    }

    .access-hotels {
        padding: 60px 0 80px;
    }

    .gallery-tab {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    .info-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .steps-heading {
        font-size: 1.2rem;
    }
}
