/* =========================================
   Variables & Configuration
   ========================================= */
:root {
    /* Colors */
    --color-brand-gold: #C5A059;
    --color-brand-charcoal: #333333;
    --color-brand-light-gray: #F9F9F9;
    --color-brand-pink: #FDF5F5;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-gray: #374151;
    /* gray-700 approximation */
    --color-text-light-gray: #6b7280;
    /* gray-500 approximation */

    /* Fonts */
    --font-serif-jp: "Noto Serif JP", serif;
    --font-cinzel: "Cinzel", serif;

    /* Spacing & Sizes */
    --container-width: 1280px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-serif-jp);
    color: var(--color-brand-charcoal);
    background-color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* =========================================
   Utility Classes
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.font-cinzel {
    font-family: var(--font-cinzel);
}

.font-serif {
    font-family: var(--font-serif-jp);
}

/* Visibility utilities */
.hidden {
    display: none;
}

.block {
    display: block;
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }

    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }
}

/* =========================================
   Components: Header
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.6) !important;
    /* 薄い背景色 (Ensure visibility on hero images) */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    /* Add subtle shadow */
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 1rem 0 !important;
}

/* Ensure header content is visible */
.header-inner {
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Add a class for when header is scrolled if needed,
   though original code didn't seem to have a specific scrolled state other than transition */

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.site-header.scrolled .site-title a {
    color: var(--color-brand-charcoal);
}

.site-title {
    font-size: 1.5rem;
    /* ~text-2xl */
    font-weight: 500;
    letter-spacing: 0.05em;
    /* tracking-wider */
}

.desktop-nav ul {
    display: flex;
    gap: 3rem;
    /* space-x-12 */
    font-size: 0.875rem;
    /* text-sm */
    font-family: var(--font-cinzel);
    letter-spacing: 0.1em;
    /* tracking-widest */
    color: var(--color-text-gray);
}

.desktop-nav a:hover {
    color: var(--color-brand-gold);
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: currentColor;
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
    gap: 1rem;
    font-family: var(--font-cinzel);
    letter-spacing: 0.1em;
    color: var(--color-text-gray);
}

.mobile-nav a {
    display: block;
}

.mobile-nav a:hover {
    color: var(--color-brand-gold);
}


/* =========================================
   Components: Hero Section
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    /* JS toggles this or similar logic */
}

/* Note: Original JS likely toggles opacity classes directly. 
   We will keep using utility-like logic or update JS. 
   For now, we will add a utility helper for the JS to use if it expects 'opacity-100'/'opacity-0' */
.opacity-100 {
    opacity: 1 !important;
}

.opacity-0 {
    opacity: 0 !important;
}


.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content {
        align-items: flex-end;
        padding-right: 6rem;
        /* pr-24 */
    }
}

.vertical-copy {
    position: absolute;
    top: 15%;
    /* スマホでは右上の空スペースに配置 */
    right: 1.5rem;
    /* スマホでの右側余白 */
    transform: translateY(0);
    /* スマホでは基本位置で固定 */
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.15em;
    /* スマホでは少し詰める */
    font-size: 1.35rem;
    /* スマホ用に一回り小さく（約21〜22px相当） */
    font-weight: bold;
    /* より確実に太く見せるためbold(700)に指定 */
    color: var(--color-white);
    -webkit-text-stroke: 0.5px var(--color-white);
    /* 物理的に文字の線を太くする */
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.6);
    /* 影を40%ほど濃く調整 */
    line-height: 2.2;
    /* スマホでの行間 */
    opacity: 0;
    animation: fadeInUpMobile 2s ease-out forwards;
    height: auto;
    /* 縦幅に余裕を持たせる */
    max-height: 80vh;
    /* 画面高さからはみ出さないように */
    transition: left 0.5s ease, right 0.5s ease, margin-top 0.5s ease;
    /* 移動をスムーズに */
}

/* 2枚目スライド専用の配置（左寄り・2文字分上に移動） */
.vertical-copy.slide-pos-left {
    right: auto;
    left: 1.5rem;
    margin-top: -2em;
    /* 2文字分上に移動 */
}

.copy-line-1,
.copy-line-2,
.copy-line-3 {
    display: block;
}

.copy-line-2 {
    margin-top: 3.5em;
    /* フォントサイズに対する相対値で下げる */
}

.copy-line-3 {
    margin-top: 7em;
    /* 3行目はさらに下げる */
}

.small-text {
    font-size: 90%;
}

@media (min-width: 768px) {
    .vertical-copy {
        font-size: 2.5rem;
        /* PC用の文字サイズ */
        top: 50%;
        /* PCでは縦中央 */
        right: 10rem;
        /* PCでの右側余白 */
        transform: translateY(-50%);
        /* PCでは中央揃えのための変形 */
        line-height: 2.5;
        /* PCではよりゆったりと */
        letter-spacing: 0.2em;
        -webkit-text-stroke: 1px var(--color-white);
        /* PC用に少し太めの輪郭を追加 */
        animation: fadeInUp 2s ease-out forwards;
        /* PC用のアニメーション */
    }

    .vertical-copy.slide-pos-left {
        left: 10rem;
        /* PC時の左配置 */
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-40%);
        /* Start slightly lower */
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
        /* End at vertically centered position */
    }
}

@keyframes fadeInUpMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
        /* 少し下から開始 */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* 指定位置で止まる */
    }
}

.horizontal-sub-copy {
    font-family: var(--font-cinzel);
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.1em;
    /* tracking-widest */
    font-size: 0.875rem;
    /* text-sm */
    margin-top: 2rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .horizontal-sub-copy {
        font-size: 1rem;
        /* text-base */
        margin-top: 0;
        position: absolute;
        bottom: 4rem;
        /* Moved down */
        /* bottom-24 -> bottom-16 */
        right: 4rem;
        /* Moved outward */
        /* right-32 -> right-16 */
    }
}

/* =========================================
   Components: Section Headers
   ========================================= */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
    /* mb-24 */
}

.section-header.text-center {
    justify-content: center;
}

.section-line {
    height: 1px;
    width: 4rem;
    /* w-16 */
    background-color: var(--color-brand-charcoal);
}

/* ... existing code ... */

.pricing-item {
    background: #fff;
    padding: 3.5rem 2.5rem;
    /* Increased vertical padding */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 350px;
    border: 1px solid #eee;
}

@media (min-width: 768px) {
    .section-line {
        width: 6rem;
    }
}

.section-title-en {
    display: block;
    font-family: var(--font-cinzel);
    font-size: 2.25rem;
    /* text-4xl */
    color: var(--color-brand-charcoal);
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .section-title-en {
        font-size: 3rem;
        /* text-5xl */
    }
}

.section-title-jp {
    font-family: var(--font-serif-jp);
    font-size: 0.875rem;
    /* text-sm */
    letter-spacing: 0.2em;
    color: var(--color-text-light-gray);
    margin-top: 0.5rem;
    margin-left: 0.25rem;
}

@media (min-width: 768px) {
    .section-title-jp {
        font-size: 1rem;
    }
}

/* =========================================
   Components: About Section
   ========================================= */
.section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.about-content-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* gap-12 */
    align-items: center;
    margin-bottom: 8rem;
    /* mb-32 */
}

@media (min-width: 768px) {
    .about-content-row {
        flex-direction: row;
        gap: 6rem;
        /* gap-24 */
        margin-bottom: 12rem;
        /* mb-48 */
    }

    .about-content-row.reverse {
        flex-direction: row-reverse;
    }
}

.text-area {
    width: 100%;
}

@media (min-width: 768px) {
    .text-area {
        width: 45%;
        padding-top: 2.5rem;
    }
}

.image-area {
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    .image-area {
        width: 55%;
    }
}

.about-heading {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.625;
    letter-spacing: 0.1em;
}

.gold-accent {
    color: var(--color-brand-gold);
}

.about-text {
    color: var(--color-text-gray);
    /* gray-600 */
    line-height: 2.2;
    text-align: justify;
    font-weight: 300;
    /* font-light */
    font-size: 15px;
}

.image-frame {
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
}

.aspect-4-3 {
    aspect-ratio: 4/3;
}

.aspect-3-4 {
    aspect-ratio: 3/4;
}

.aspect-3-2 {
    aspect-ratio: 3/2;
}

.image-hover-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 1s;
}

.image-hover-zoom:hover {
    transform: scale(1.05);
}

.deco-box {
    position: absolute;
    z-index: -10;
    display: none;
}

@media (min-width: 768px) {
    .deco-box {
        display: block;
    }
}

.deco-box.gray {
    bottom: -2.5rem;
    left: -2.5rem;
    width: 6rem;
    height: 6rem;
    background-color: var(--color-brand-light-gray);
}

.deco-box.gold-border {
    top: -2.5rem;
    right: -2.5rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* Grid for About Harmony images */
.about-grid-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-grid-images .img-1 {
    margin-top: 3rem;
}

.about-grid-images .img-2 {
    margin-bottom: 3rem;
}


/* =========================================
   Components: Parallax Sections
   ========================================= */
.parallax-section {
    position: relative;
    height: 50vh;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

/* iOS Safariなどのスマホブラウザで「background-attachment: fixed」が効かず画像が巨大化し見えなくなる・消えるバグの回避策 */
@media screen and (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .parallax-section {
        background-attachment: scroll !important;
    }
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    width: 100%;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .parallax-content {
        padding: 0 3rem;
    }
}

.parallax-title {
    font-family: var(--font-cinzel);
    font-size: 1.875rem;
    /* text-3xl */
    letter-spacing: 0.3em;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .parallax-title {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

.parallax-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-top: 1rem;
    opacity: 0.9;
}


/* =========================================
   Components: Product Grid
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    cursor: pointer;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/4;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-detail-btn {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    font-family: var(--font-cinzel);
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.product-info {
    padding-left: 0.5rem;
    text-align: left;
}

.product-title {
    font-family: var(--font-cinzel);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-brand-charcoal);
    letter-spacing: 0.1em;
}

.product-desc {
    font-size: 0.75rem;
    color: var(--color-text-light-gray);
    letter-spacing: 0.1em;
    font-weight: 300;
}

.view-all-container {
    margin-top: 5rem;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    border: 1px solid var(--color-brand-charcoal);
    padding: 1rem 4rem;
    font-size: 0.75rem;
    font-family: var(--font-cinzel);
    letter-spacing: 0.3em;
    transition: all 0.5s;
}

.view-all-btn:hover {
    background-color: var(--color-brand-charcoal);
    color: var(--color-white);
}

/* スマホレイアウト時にコレクションの「VIEW ALL PRODUCTS」を非表示にする */
@media (max-width: 768px) {
    #products .view-all-container {
        display: none;
    }
}


/* =========================================
   Components: Message Section
   ========================================= */
.message-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--color-brand-light-gray);
    position: relative;
}

.message-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.message-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 768px) {
    .message-flex {
        flex-direction: row;
    }
}

.message-image-col {
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    .message-image-col {
        width: 50%;
    }
}

.owner-image-border {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    z-index: 0;
}

.owner-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%);
    transition: filter 0.7s;
}

.owner-image:hover {
    filter: grayscale(0%);
}

.message-text-col {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .message-text-col {
        width: 50%;
        text-align: left;
    }
}

.message-label {
    display: block;
    font-family: var(--font-cinzel);
    color: var(--color-brand-gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.message-heading {
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.message-body {
    color: var(--color-text-gray);
    line-height: 2;
    margin-bottom: 2rem;
    text-align: justify;
}

.message-sign {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: right;
}

@media (min-width: 768px) {
    .message-sign {
        text-align: left;
    }
}

.message-sign-sub {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-light-gray);
    margin-top: 0.5rem;
    display: block;
}

/* =========================================
   Components: Footer
   ========================================= */
.site-footer.custom-footer {
    background-color: #4b3d3f;
    color: #fdf5f5;
    padding: 3rem 0 3rem; /* 地図との隙間を縮めるため、上部パディングを5remから3remに縮小 */
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 0 !important;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 6rem;
        align-items: flex-start;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-left {
        width: 32%;
    }
}

.footer-logo {
    margin-bottom: 4.5rem;
}

.footer-logo .logo-sub {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-main {
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 375px) {
    .footer-logo .logo-main {
        font-size: 1.75rem;
    }
}

.footer-info-text {
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-sns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sns-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fdf5f5;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.sns-link:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: 0.7rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
    margin-top: auto;
    font-family: var(--font-cinzel);
}

/* PC用コピーライト：スマホでは非表示 */
@media (max-width: 768px) {
    .pc-only-copyright {
        display: none;
    }
}

/* スマホ用コピーライト：PCでは非表示、スマホで表示 */
.sp-only-copyright {
    display: none;
}

@media (max-width: 768px) {
    .sp-only-copyright {
        display: block;
        text-align: center;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }
}

.footer-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-right {
        width: 63%;
    }
}

.footer-description {
    line-height: 2;
    letter-spacing: 0.1em;
    margin-bottom: 4.5rem;
}

.footer-nav-area {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-nav-area {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
        margin-top: -1.25rem;
    }
}

.footer-nav-col {
    width: 100%;
}

.footer-nav-links {
    flex: 1;
}

.footer-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-links a {
    color: #fdf5f5;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: opacity 0.3s;
}

.footer-nav-links a:hover {
    opacity: 0.7;
}

/* =========================================
   Components: Footer Banners (YouTube & LINE & Instagram)
   ========================================= */
.footer-nav-banners {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-banner-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    border: 1px solid #D4AF37; /* ゴールドの枠線 */
    padding: 0.4rem 1.25rem;
    height: 54px; /* 3つのバナー+gapで高さを揃える */
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    box-sizing: border-box;
    border-radius: 6px; /* 枠の角を少し丸みを持たせる */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.footer-banner-card:hover {
    transform: translateY(-2px);
    background-color: rgba(212, 175, 55, 0.05); /* ホバー時に微かにゴールド背景 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 3カラム（アイコン、テキスト、矢印）のレイアウト調整 */
.banner-icon-area {
    flex-shrink: 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.banner-svg-icon {
    width: 22px;
    height: 22px;
    color: #D4AF37;
    stroke: #D4AF37;
    transition: transform 0.3s ease;
}

.banner-text-area {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-label {
    font-size: 0.6rem;
    font-family: var(--font-cinzel), sans-serif;
    letter-spacing: 0.2em;
    color: #D4AF37;
    margin-bottom: 0.1rem;
    font-weight: 400;
}

.banner-main-title {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.banner-arrow-area {
    flex-shrink: 0;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.banner-arrow {
    font-size: 1rem;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

/* ホバー時のマイクロインタラクション */
.footer-banner-card:hover .banner-arrow {
    transform: translateX(5px);
}
.footer-banner-card:hover .banner-svg-icon {
    transform: scale(1.05);
}

/* モバイル対応の調整 */
@media (max-width: 768px) {
    .footer-nav-banners {
        flex: none;
        width: 100%;
        gap: 1.25rem;
    }
    
    .footer-banner-card {
        height: auto; /* モバイルでは高さ固定を解除して可変に */
        min-height: 100px;
        padding: 1.25rem 1.25rem;
    }
    
    .banner-main-title {
        font-size: 0.9rem;
    }
}



/* =========================================
   Animation Classes (Retained)
   ========================================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================
   Components: Footer Map
   ========================================= */
.footer-map {
    width: 100%;
    line-height: 0;
    font-size: 0;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.5s;
    vertical-align: bottom;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-map iframe:hover {
    filter: grayscale(0%);
}

@media (min-width: 768px) {
    .footer-map iframe {
        height: 500px;
    }
}



/* =========================================
   Components: Shop Info Section
   ========================================= */
.shop-info-section {
    background-color: var(--color-white);
}

/* =========================================
   Page: Genten (Origin of Business)
   ========================================= */
.genten-hero {
    height: 60vh;
}

.genten-content {
    background-color: var(--color-white);
    background-image: radial-gradient(#C5A059 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-color: #faf9f6;
    /* Off-white base */
}

.expanded-container {
    max-width: 1000px;
    margin: 0 auto;
}

.genten-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
}

@media (min-width: 768px) {
    .genten-row {
        flex-direction: row;
        gap: 5rem;
        margin-bottom: 10rem;
        align-items: center;
    }

    .genten-row.reverse {
        flex-direction: row-reverse;
    }
}

.genten-text-col {
    flex: 1;
    font-size: 1rem;
    line-height: 2.2;
    color: var(--color-text-gray);
    text-align: justify;
}

.genten-text-col.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    height: 500px;
    /* Adjust based on text length */
    text-align: left;
    /* Becomes top align in vertical */
    letter-spacing: 0.1em;
}

.genten-image-col {
    flex: 1;
    width: 100%;
}

.genten-heading {
    font-family: var(--font-serif-jp);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    /* Becomes left margin in vertical */
    color: var(--color-brand-charcoal);
    border-left: 4px solid var(--color-brand-gold);
    /* Becomes top border in vertical if not handled carefully, but writing-mode handles borders correctly usually */
    padding-left: 1rem;
}

.vertical-text .genten-heading {
    margin-bottom: 0;
    margin-left: 2rem;
    border-left: none;
    border-top: 4px solid var(--color-brand-gold);
    padding-left: 0;
    padding-top: 1rem;
}


.genten-subheading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-brand-charcoal);
    border-bottom: 1px solid var(--color-brand-gold);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.genten-quote {
    text-align: center;
    margin: 6rem 0;
    padding: 3rem;
    background-color: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--color-brand-gold);
    border-bottom: 1px solid var(--color-brand-gold);
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2.5;
    color: var(--color-brand-charcoal);
}

.genten-sign {
    margin-top: 3rem;
    text-align: right;
    font-size: 1.125rem;
}

/* =========================================
   Page: Kyoushitu (Kimono Class)
   ========================================= */
.kyoushitu-hero {
    height: 50vh;
    background-color: #faf3ee;
    /* Soft beige/pink nuance */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.kyoushitu-title {
    font-family: var(--font-cinzel);
    font-size: 3rem;
    color: var(--color-brand-gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.kyoushitu-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
}

.kyoushitu-concept-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: 3rem auto;
    display: block;
}

/* Old features-grid styles removed directly to use about-content-row instead */

.instructor-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .instructor-box {
        flex-direction: row;
        gap: 4rem;
    }
}

.instructor-image img {
    max-width: 100%;
    border-radius: 8px;
    width: 400px;
}

.instructor-text {
    flex: 1;
}

.instructor-name {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-brand-gold);
}

.kyoushitu-cta {
    padding: 5rem 0;
}

.kyoushitu-cta .cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.btn-white {
    background-color: #fff;
    color: var(--color-brand-gold);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    background-color: var(--color-brand-charcoal);
    color: #fff;
}

.btn-gold {
    background-color: var(--color-brand-gold);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: var(--color-brand-charcoal);
}

.kyoushitu-testimonials img {
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.kyoushitu-benefits.bg-brand-charcoal {
    background-color: var(--color-brand-charcoal);
}

.text-gold {
    color: var(--color-brand-gold);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--color-brand-gold);
    margin-bottom: 1rem;
}

.benefit-title .text-sm {
    font-size: 1rem;
    color: #fff;
    display: block;
    margin-top: 0.5rem;
    font-weight: normal;
}

.qa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .qa-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.qa-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.qa-question {
    font-weight: bold;
    color: var(--color-brand-charcoal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #ddd;
}

.qa-answer {
    line-height: 1.8;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    background-color: #fafafafa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
    color: var(--color-text-gray);
    overflow-x: auto;
    /* Allow horizontal scroll */
    -webkit-overflow-scrolling: touch;
}

.breadcrumbs {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    /* Force single line */
    align-items: center;
    white-space: nowrap;
    /* Prevent text wrapping */
    padding-left: 0;
    margin-bottom: 0;
    gap: 0.75rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    /* Header Adjustment */
    .site-header {
        padding: 0.75rem 0;
    }

    /* Standardize Titles on Mobile */
    .page-hero-title {
        font-size: 1.75rem !important;
        /* Smaller size to prevent wrapping */
    }

    /* Origin Page Mobile Text */
    .genten-text-col.vertical-text {
        writing-mode: horizontal-tb;
        padding: 2rem 1rem;
    }

    .breadcrumbs-wrapper {
        display: block;
        font-size: 0.75rem;
    }

    /* Paragraph Text Size Adjustment for Mobile */
    p {
        font-size: 0.9rem;
        /* Slightly smaller for better flow */
        line-height: 1.8;
        text-align: justify;
    }
}

.pricing-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
    /* Additional space for scaled featured item */
}

@media (min-width: 768px) {
    .pricing-box {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
}

.pricing-item {
    background: #fff;
    padding: 4rem 2rem;
    /* Increased vertical padding significantly */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 350px;
    border: 1px solid #eee;
}

.pricing-item.featured {
    border: 2px solid var(--color-brand-gold);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.pricing-item .price {
    font-size: 2rem;
    color: var(--color-brand-gold);
    font-family: var(--font-cinzel);
    margin-bottom: 1rem;
}

.pricing-item .tax {
    font-size: 0.875rem;
    color: var(--color-text-gray);
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* =========================================
   Page: Q&A
   ========================================= */
.qanda-hero {
    height: 40vh;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/hero-bg-2.png');
    /* Fallback or specific texture */
    background-size: cover;
    background-position: center;
    position: relative;
}

.qanda-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
}

.qanda-hero-content {
    position: relative;
    z-index: 1;
}

.qanda-title {
    font-family: var(--font-cinzel);
    font-size: 3rem;
    color: var(--color-brand-charcoal);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.qanda-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-title {
    font-size: 1.75rem;
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-brand-gold);
}

.qa-list {
    max-width: 900px;
    margin: 0 auto;
}

.qa-pair {
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.qa-pair:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qa-q {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    color: var(--color-brand-charcoal);
}

.qa-a {
    display: flex;
    align-items: flex-start;
    margin-left: 0;
    border-top: 1px dashed #eee;
    padding-top: 1.5rem;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.q-icon,
.a-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    font-family: var(--font-cinzel);
    font-weight: bold;
}

.q-icon {
    background-color: var(--color-brand-charcoal);
    color: #fff;
}

.a-icon {
    background-color: var(--color-brand-gold);
    color: #fff;
}

.a-text {
    flex: 1;
}

/* =========================================
   Page: Company Profile (About)
   ========================================= */
.about-hero {
    height: 40vh;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/hero-bg-1.png');
    /* Fallback or specific */
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-title {
    font-family: var(--font-cinzel);
    font-size: 3rem;
    color: var(--color-brand-charcoal);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
}

.narrowed-container {
    max-width: 800px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

.company-info-block {
    margin-bottom: 4rem;
}

.company-store-name {
    font-size: 1.5rem;
    color: var(--color-brand-charcoal);
    border-left: 4px solid var(--color-brand-gold);
    padding-left: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.store-sub {
    font-size: 1rem;
    font-weight: normal;
    margin-left: 0.5rem;
    color: var(--color-text-gray);
}

.company-table-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.company-table th {
    width: 30%;
    font-weight: 600;
    color: var(--color-brand-charcoal);
    background-color: #fafafafa;
    white-space: nowrap;
}

table.history-table th {
    width: 15%;
    text-align: center;
}

.history-img {
    width: 100%;
    max-width: 130px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: block;
}

.company-table td {
    color: var(--color-text-gray);
    line-height: 1.8;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-divider {
    height: 1px;
    background: #eee;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        background: transparent;
        padding-bottom: 0.25rem;
        color: var(--color-brand-gold);
        border-bottom: none;
    }

    .company-table td {
        padding-top: 0;
        padding-left: 1rem;
    }

    /* Mobile Text Adjustment (Origin) */
    .genten-text-col.vertical-text {
        writing-mode: horizontal-tb;
        padding: 2rem 1rem;
        height: auto;
    }

    .genten-heading {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
        border-right: none;
        padding-right: 0;
        border-bottom: 4px solid var(--color-brand-gold);
        padding-bottom: 1rem;
        display: inline-block;
        width: auto;
    }

    .vertical-text .genten-heading {
        font-size: 1.4rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
        border-top: none;
        padding-top: 0;
        border-bottom: 4px solid var(--color-brand-gold);
        padding-bottom: 1rem;
        display: table;
    }
}

/* =========================================
   Standardized Page Hero
   ========================================= */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Consistent overlay */
}

.page-hero-content {
    position: relative;
    z-index: 10;
}

.page-hero-title {
    font-family: var(--font-cinzel);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-family: var(--font-noto);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    display: block;
}

.qanda-title,
.about-title,
.parallax-title,
.kyoushitu-title {
    font-size: 3rem;
    /* PC Base */
}

@media (max-width: 768px) {

    .qanda-title,
    .about-title,
    .parallax-title,
    .kyoushitu-title {
        font-size: 2rem;
        /* Mobile */
    }

    .breadcrumbs-wrapper {
        display: none;
        /* Often hidden on mobile to save space, or keep if preferred */
    }
}

/* =========================================
   Components: Blog & Single Post
   ========================================= */
.single-post-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.single-post-date {
    display: block;
    color: var(--color-brand-gold);
    letter-spacing: 0.1em;
    font-family: var(--font-cinzel);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.single-post-title {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .single-post-title {
        font-size: 2.25rem;
    }
}

.single-post-category {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light-gray);
}

.single-post-thumbnail {
    margin-bottom: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--color-text-gray);
    text-align: justify;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--color-brand-charcoal);
}

.single-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
}

.post-nav-prev {
    width: 50%;
    padding-right: 1rem;
}

.post-nav-next {
    width: 50%;
    padding-left: 1rem;
    text-align: right;
}

.pagination-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination-wrapper .nav-links {
    display: flex;
    gap: 0.5rem;
}

.pagination-wrapper .page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    color: var(--color-text-gray);
    transition: all 0.3s ease;
    display: inline-block;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background-color: var(--color-brand-charcoal);
    color: var(--color-white);
    border-color: var(--color-brand-charcoal);
}

/* Custom Contact Form 7 Styling */
.custom-contact-form {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 4rem 2rem;
    border-top: 1px solid var(--color-border-gray);
}

.custom-contact-form .wpcf7-form-control-wrap {
    margin-bottom: 1.5rem;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="url"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border-gray);
    border-radius: 8px;
    background-color: var(--color-brand-light-gray);
    font-family: var(--font-serif-jp);
    color: var(--color-brand-charcoal);
}

.custom-contact-form .wpcf7-submit {
    background-color: var(--color-brand-gold);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-family: var(--font-cinzel);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-contact-form .wpcf7-submit:hover {
    background-color: var(--color-brand-charcoal);
}

@media (max-width: 768px) {
    .custom-contact-form {
        padding: 2rem 1rem;
    }
}

/* =========================================
   Contact Form 7 カスタムデザイン（和風・上品）
========================================= */

/* フォーム全体の大枠 */
.custom-contact-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    /* 明朝体を指定 */
    color: #333;
}

/* 各項目の余白 */
.custom-contact-form .form-group {
    margin-bottom: 35px;
}

/* ラベル（見出し） */
.custom-contact-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: 0.08em;
}

/* 必須マーク */
.custom-contact-form .required {
    font-size: 11px;
    color: #9b3d46;
    /* サイトの雰囲気に合わせた落ち着いた赤（えんじ色） */
    margin-left: 10px;
    vertical-align: middle;
    border: 1px solid #9b3d46;
    padding: 2px 6px;
}

/* 入力フィールド共通（テキスト、セレクト、テキストエリア） */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="tel"],
.custom-contact-form input[type="email"],
.custom-contact-form select,
.custom-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    /* 細くて薄い上品な枠線 */
    background-color: #fafafa;
    border-radius: 0;
    /* 角丸をなくし凛とした印象に */
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    /* スマホでのデフォルトスタイルをリセット */
}

/* 選択ボックス（セレクト）の矢印調整 */
.custom-contact-form select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="%23333" d="M5 6L0 0h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 30px;
}

/* 入力中のフォーカス状態 */
.custom-contact-form input[type="text"]:focus,
.custom-contact-form input[type="tel"]:focus,
.custom-contact-form input[type="email"]:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
    outline: none;
    border-color: #999;
    background-color: #fff;
}

/* 送信ボタンエリア */
.custom-contact-form .form-submit {
    text-align: center;
    margin-top: 60px;
}

/* 送信ボタン本体 */
.custom-contact-form .wpcf7-submit {
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    padding: 16px 80px;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    font-family: inherit;
}

/* 送信ボタンホバー時 */
.custom-contact-form .wpcf7-submit:hover {
    background-color: #333;
    color: #fff;
}

/* エラーメッセージの調整 */
.custom-contact-form .wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: 8px;
    color: #9b3d46;
}

/* 送信完了・失敗メッセージ枠の調整 */
.custom-contact-form .wpcf7-response-output {
    margin-top: 40px;
    border-radius: 0;
    font-size: 14px;
    text-align: center;
    padding: 20px !important;
}

/* =========================================
   News / Blog Section
   ========================================= */
.news-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.news-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-link {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .news-link {
        flex-direction: row;
        align-items: center;
        padding: 2rem 1.5rem;
    }
}

.news-link:hover {
    background-color: var(--color-brand-light-gray);
}

.news-meta {
    margin-bottom: 0.5rem;
    color: var(--color-text-light-gray);
    font-family: var(--font-cinzel);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .news-meta {
        margin-bottom: 0;
        width: 150px;
        flex-shrink: 0;
    }
}

.news-title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-brand-charcoal);
    flex-grow: 1;
}

/* =========================================
   Global Paragraph Adjustments
   ========================================= */
/* SP用16pxの設定と改行調整 */
p:not(.logo-sub):not(.logo-main):not(.footer-copyright):not(.section-title-en):not(.section-title-jp):not(.parallax-title):not(.parallax-subtitle):not(.news-meta) {
    font-size: 16px !important;
    text-wrap: pretty;
    /* 最終行の孤立文字を防ぐ */
    word-break: normal;
    /* auto-phraseがSafariで悪さをする事があるため標準に戻す */
    line-height: 2 !important;
    /* 文字サイズ変更に伴う行間調整 */
}

/* PC用18pxの設定 */
@media (min-width: 768px) {
    p:not(.logo-sub):not(.logo-main):not(.footer-copyright):not(.section-title-en):not(.section-title-jp):not(.parallax-title):not(.parallax-subtitle):not(.news-meta) {
        font-size: 18px !important;
    }
}

/* 全画面表示時の余白・文字間隔の最適化 (justifyによる不自然な文字間のもたつきを防ぐ) */
.about-text,
.message-body {
    text-align: left !important;
    word-break: normal !important;
}

/* =========================================
   Components: Voice (Customer Testimonials)
   ========================================= */
.voice-section {
    padding: 4rem 0;
}

.voice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.voice-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.voice-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--color-brand-gold);
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 1rem;
}

.voice-location {
    font-size: 0.875rem;
    color: var(--color-text-light-gray);
    letter-spacing: 0.1em;
}

.voice-name {
    font-size: 1.25rem;
    color: var(--color-brand-charcoal);
    font-weight: 500;
}

.voice-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--color-text-gray);
    text-align: justify;
}

.voice-text p {
    text-align: left !important;
    word-break: normal !important;
}

.voice-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--color-brand-gold);
    color: var(--color-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cinzel);
    font-weight: bold;
}

.voice-category-title {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: var(--color-brand-charcoal);
    position: relative;
}

.voice-category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--color-brand-gold);
    margin: 1rem auto 0;
}

/* 改行崩れ防止（文節ごとの回り込み） */
.wrap-prevent {
    display: inline-block;
    white-space: normal;
}

/* 審美眼画像（1枚配置）専用のレスポンシブレイアウト */
.sinbigan-frame {
    aspect-ratio: 16 / 9; /* スマホ時は16:9 */
}

@media (min-width: 768px) {
    .philosophy-1-row, .philosophy-2-row {
        align-items: stretch; /* 左側のテキストエリアの高さを基準にする */
    }
    .philosophy-1-row .image-area, .philosophy-2-row .image-area {
        display: grid; /* Gridを使うことで、ブラウザに関係なく高さを子へ確実に伝播させる */
        /* text-areaの上余白(2.5rem) + 見出しh3の高さ(約6.1rem) + h3の下余白(2rem) = 約10.6rem */
        padding-top: 10.6rem; /* 画像の上端を、見出しではなく「本文（pタグ）」の頭にピッタリ合わせる */
        padding-bottom: 1.5rem; /* 左テキスト（pタグ）の下の余白と合わせる */
    }
    .sinbigan-frame {
        position: relative;
        width: 100%;
        height: 100%;
        aspect-ratio: auto; /* 画像のアスペクト比に引っ張られないように解除 */
        margin: 0;
    }
    .sinbigan-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* 縦書き見出しの改行コントロール（PC表示時は1行、スマホ表示時は改行） */
.br-sp {
    display: none;
}
.pc-space {
    display: inline;
}

@media (max-width: 768px) {
    .br-sp {
        display: inline;
    }
    .pc-space {
        display: none;
    }
}

/* =========================================
   Representative Story (page-story.php)
   ========================================= */
.story-content-section {
    background-color: var(--color-brand-light-gray);
}

/* プレースホルダー枠のデザイン（グリッド内等） */
.placeholder-frame {
    background-color: #faf9f6; /* 薄いベージュ */
    border: 1px dashed var(--color-brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important; /* 他の画像フレームと統一 */
}

/* 1枚画像用のフルサイズプレースホルダー枠 */
.placeholder-frame-full {
    background-color: #faf9f6; /* 薄いベージュ */
    border: 1px dashed var(--color-brand-gold);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image-content {
    text-align: center;
    color: var(--color-brand-gold);
    padding: 2rem;
}

.placeholder-image-content .placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.7;
}

.placeholder-image-content .placeholder-text {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    display: block;
}

/* =========================================
   Origin of Business Button (page-genten.php)
   ========================================= */
/* きものと生きる（page-genten.php）内のプロフィールボタン */
.genten-profile-btn {
    display: inline-block;
    border: 1px solid var(--color-brand-gold);
    color: var(--color-brand-gold);
    padding: 1rem 3.5rem;
    font-size: 0.95rem;
    font-family: var(--font-serif-jp);
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    background-color: transparent;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.genten-profile-btn:hover {
    background-color: var(--color-brand-gold);
    color: var(--color-white);
    opacity: 1;
}

/* スマホ表示時のレイアウト調整 */
@media (max-width: 768px) {
    .genten-profile-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }
}