/* 光南台乗馬クラブ - トップページ専用スタイル */

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-1%, -1%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(56, 100, 56, 0.48) 0%,
            rgba(56, 100, 56, 0.18) 50%,
            rgba(56, 100, 56, 0.56) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 2rem;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-title-sub {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--white);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ========================================
   引用セクション
   ======================================== */
.quote-section {
    padding: 12rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.quote-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(8rem, 25vw, 20rem);
    color: var(--sage-pale);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 2.2;
    color: var(--forest-dark);
    letter-spacing: 0.1em;
}

.quote-author {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.2em;
}

.quote-link {
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
    color: var(--forest);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.35rem;
}

.quote-link::after {
    content: "→";
    margin-left: 0.65rem;
    transition: transform 0.3s ease;
}

.quote-link:hover::after {
    transform: translateX(5px);
}

/* ========================================
   ストーリーセクション
   ======================================== */
.story {
    padding: 0;
    background: var(--white);
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.story-block:nth-child(even) {
    direction: rtl;
}

.story-block:nth-child(even)>* {
    direction: ltr;
}

.story-image {
    position: relative;
    overflow: hidden;
}

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

.story-block:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background: var(--cream);
}

.story-block:nth-child(even) .story-content {
    background: var(--sage-pale);
}

.story-number {
    font-family: 'Shippori Mincho', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--sage-light);
    line-height: 1;
    margin-bottom: 2rem;
}

.story-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 2.2;
    max-width: 500px;
}

/* ========================================
   馬紹介セクション
   ======================================== */
.friends-intro {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--sage-pale) 0%, var(--cream) 32%, var(--white) 100%);
    position: relative;
}

.friends-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.friends-intro-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.8;
}

.friends-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.friends-intro-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(92, 74, 58, 0.08);
    border: 2px solid transparent;
}

.friends-intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 74, 58, 0.15);
    border-color: var(--sage-light);
}

.friends-intro-visual {
    width: min(68%, 220px);
    aspect-ratio: 1;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    overflow: visible;
    background: transparent;
    position: relative;
    transition: transform 0.3s ease;
}

.friends-intro-visual::before {
    content: "";
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 46%, rgba(232, 217, 168, 0.48) 0%, rgba(210, 232, 210, 0.28) 48%, rgba(210, 232, 210, 0) 76%);
    filter: blur(18px);
    opacity: 0.82;
    z-index: 0;
}

.friends-intro-visual::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.62),
        0 14px 32px rgba(92, 74, 58, 0.13),
        0 0 42px rgba(210, 232, 210, 0.34);
    pointer-events: none;
    z-index: 2;
}

.friends-intro-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 30px rgba(92, 74, 58, 0.13);
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: saturate(0.98) contrast(1.02);
}

.friends-intro-card:nth-child(1) .friends-intro-visual img {
    object-position: 38% center;
}

.friends-intro-card:nth-child(2) .friends-intro-visual img {
    object-position: center center;
}

.friends-intro-card:hover .friends-intro-visual {
    transform: scale(1.04) rotate(1.5deg);
}

.friends-intro-card:hover .friends-intro-visual img {
    transform: scale(1.04);
    filter: saturate(1.04) contrast(1.06);
}

.friends-intro-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.friends-intro-count {
    font-size: 0.9rem;
    color: var(--sage);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.friends-intro-description {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.friends-intro-link {
    color: var(--sage-deep);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.friends-intro-card:hover .friends-intro-link {
    color: var(--forest);
    transform: translateX(5px);
    display: inline-block;
}

.friends-intro-cta {
    text-align: center;
    margin-top: 4rem;
}

.friends-intro-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.friends-intro-button:hover {
    background: var(--forest);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 127, 79, 0.3);
}

.friends-intro-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease;
}

.friends-intro-button:hover svg {
    transform: translateX(5px);
}

/* ========================================
   料金・会員プラン導線
   ======================================== */
.plans-link {
    padding: 6.5rem 2rem 8rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 42%, var(--sage-pale) 100%);
}

.plans-link-container {
    max-width: 1040px;
    margin: 0 auto;
}

.plans-link-subtitle {
    margin-top: 1.25rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}

.plans-link-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2.25rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.plans-link-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.plans-link-card {
    display: block;
    min-height: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(156, 203, 156, 0.25);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(92, 74, 58, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plans-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 164, 111, 0.45);
    box-shadow: 0 22px 54px rgba(92, 74, 58, 0.12);
}

.plans-link-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--sage-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.plans-link-card strong {
    display: block;
    font-family: 'Shippori Mincho', serif;
    color: var(--forest-dark);
    font-size: clamp(1.25rem, 2.6vw, 1.65rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.85rem;
}

.plans-link-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.85;
}

.plans-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    justify-self: center;
    min-height: 56px;
    padding: 1rem 2.25rem;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.plans-link-button:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(56, 100, 56, 0.24);
}

.plans-link-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease;
}

.plans-link-button:hover svg {
    transform: translateX(4px);
}

/* ========================================
   料金セクション
   ======================================== */
.pricing {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--sage-pale) 0%, var(--cream) 100%);
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(139, 115, 85, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--sage);
}

.pricing-card.featured::before {
    content: 'おすすめ';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--sage);
    color: var(--white);
    padding: 0.3rem 2rem;
    font-size: 0.8rem;
    transform: rotate(45deg);
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed var(--sage-light);
}

.pricing-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-body {
    padding: 0;
}

.pricing-price {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed var(--sage-light);
}

.pricing-amount {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-tax {
    display: inline-block;
    margin-left: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.pricing-amount .pricing-tax {
    font-size: 0.85rem;
}

.pricing-plan-list {
    display: grid;
    gap: 0.75rem;
}

.pricing-plan-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--sage-light);
    border-radius: 12px;
    background: var(--cream);
}

.pricing-plan-row-set {
    border-color: var(--gold);
    background: rgba(212, 163, 115, 0.12);
}

.pricing-plan-label {
    font-size: 0.9rem;
    color: var(--text);
    white-space: nowrap;
}

.pricing-plan-amount {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
}

.pricing-plan-amount span {
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-plan-amount .pricing-tax {
    font-size: 0.75rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--sage-light);
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
    background: var(--gold);
}

/* ========================================
   会員セクション
   ======================================== */
.membership {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
}

.membership-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.membership-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid transparent;
}

.membership-card:hover {
    border-color: var(--sage);
    box-shadow: 0 20px 50px rgba(79, 127, 79, 0.1);
}

.membership-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.membership-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--forest-dark);
    margin-bottom: 1rem;
}

.membership-description {
    min-height: 4.2em;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}

.membership-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--sage-pale);
}

.membership-row:last-child {
    border-bottom: none;
}

.membership-label {
    color: var(--text-light);
    text-align: left;
}

.membership-label-note {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.membership-value {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--forest-dark);
    white-space: nowrap;
}

.membership-tax {
    margin-left: 0.35rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ========================================
   初めての方へ
   ======================================== */
.first-visit {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 36%, var(--white) 100%);
}

.first-visit-container {
    max-width: 1200px;
    margin: 0 auto;
}

.first-visit-lead {
    max-width: 760px;
    margin: 0 auto 4rem;
    text-align: center;
}

.first-visit-lead p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 2;
}

.first-visit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.first-visit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(156, 203, 156, 0.22);
    box-shadow: 0 8px 28px rgba(92, 74, 58, 0.08);
}

.first-visit-label {
    display: inline-block;
    color: var(--sage-deep);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.9rem;
}

.first-visit-card h3 {
    font-family: 'Shippori Mincho', serif;
    color: var(--forest-dark);
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.first-visit-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.85;
}

/* ========================================
   乗馬フロー
   ======================================== */
.experience-flow {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--sage-pale) 0%, var(--white) 38%, var(--cream) 100%);
}

.flow-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.flow-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(156, 203, 156, 0.2);
    box-shadow: 0 8px 24px rgba(92, 74, 58, 0.08);
}

.flow-step {
    color: var(--sage-deep);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.flow-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    color: var(--forest-dark);
    margin-bottom: 1rem;
}

.flow-text {
    color: var(--text-light);
    line-height: 1.9;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 10rem 2rem;
    background: var(--sage-pale);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(156, 203, 156, 0.2);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.4rem;
    font-weight: 500;
    color: var(--forest-dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 1.4rem 1.2rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* ========================================
   アクセスセクション
   ======================================== */
.access {
    padding: 10rem 2rem;
    background: var(--cream);
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.access-map-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.access-map {
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    background: var(--sage-pale);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-guide-image {
    margin: 0;
}

.access-guide-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(50, 70, 50, 0.12);
}

.access-guide-image figcaption {
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.access-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.access-card:hover {
    box-shadow: 0 15px 40px rgba(79, 127, 79, 0.1);
}

.access-card-title {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--sage-deep);
    margin-bottom: 1rem;
}

.access-card-content {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

.access-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.access-card a {
    color: var(--forest);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
}

.access-card a:hover {
    text-decoration: underline;
}

/* ========================================
   お問い合わせセクション
   ======================================== */
.contact {
    padding: 10rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    box-shadow: 0 15px 40px rgba(79, 127, 79, 0.1);
}

.contact-card-wide {
    grid-column: 1 / -1;
}

.contact-card a {
    color: var(--forest);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-owner {
    border-left: 3px solid var(--sage-light);
    padding-left: 1.25rem;
}

.contact-owner-name {
    color: var(--forest-dark);
    font-family: 'Shippori Mincho', serif;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-owner-credential {
    margin-top: 0.65rem;
    color: var(--forest);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

.contact-owner-text {
    margin-top: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* ========================================
   CTAセクション
   ======================================== */
.cta {
    padding: 12rem 2rem;
    background: var(--forest-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(156, 203, 156, 0.1) 0%, transparent 50%);
    animation: ctaGlow 10s ease infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5%, 5%);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--forest-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* ========================================
   Decorative illustrations
   ======================================== */
.quote-accent-image {
    position: absolute;
    right: max(2rem, calc((100vw - 1160px) / 2));
    bottom: 2.25rem;
    z-index: 1;
    width: clamp(210px, 31vw, 390px);
    height: auto;
    opacity: 0.92;
    pointer-events: none;
}

.plans-link-visual,
.pricing-section-visual,
.membership-section-visual,
.first-visit-visual,
.flow-visual {
    margin-right: auto;
    margin-left: auto;
}

.plans-link-visual {
    width: min(100%, 500px);
    margin-top: -0.75rem;
    margin-bottom: -0.5rem;
}

.pricing-section-visual,
.membership-section-visual {
    width: min(100%, 520px);
    margin-top: -2.25rem;
    margin-bottom: 3.5rem;
}

.first-visit-visual {
    width: min(100%, 340px);
    margin-top: -1.75rem;
    margin-bottom: 3rem;
}

.flow-visual {
    width: min(100%, 560px);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 1024px) {
    .story-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .story-block:nth-child(even) {
        direction: ltr;
    }

    .story-image {
        height: 50vh;
    }

    .story-content {
        padding: 4rem 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .first-visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .access-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .access-map {
        aspect-ratio: 16/9;
    }

    .access-guide-image img {
        border-radius: 16px;
    }

    .friends-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 4rem auto 0;
    }
}

@media (max-width: 768px) {
    /* ヒーローセクション - スマホ最適化 */
    .hero {
        /* ビューポートの高さに最適化（アドレスバー考慮） */
        min-height: 100svh;
        height: 100svh;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-eyebrow {
        font-size: 0.8rem;
        letter-spacing: 0.25em;
        margin-bottom: 1.75rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 11vw, 3.5rem);
        letter-spacing: 0.05em;
        margin-bottom: 1.75rem;
        line-height: 1.3;
        white-space: nowrap;
    }

    .hero-title-sub {
        font-size: clamp(0.9rem, 3.5vw, 1.15rem);
        letter-spacing: 0.18em;
        line-height: 1.8;
    }

    .hero-scroll {
        bottom: 3rem;
    }

    .hero-scroll-text {
        font-size: 0.7rem;
        letter-spacing: 0.25em;
    }

    .hero-scroll-line {
        height: 45px;
    }

    /* 引用セクション */
    .quote-section {
        padding: 6rem 1.5rem;
    }

    .quote-accent-image {
        position: relative;
        right: auto;
        bottom: auto;
        display: block;
        width: min(78%, 280px);
        margin: -1rem auto 2rem;
        opacity: 0.86;
    }

    .quote-bg-text {
        font-size: clamp(7rem, 40vw, 12rem);
        opacity: 0.8;
    }

    .quote-text {
        font-size: clamp(1.15rem, 4.5vw, 1.6rem);
        line-height: 2.1;
        letter-spacing: 0.08em;
    }

    .quote-author {
        margin-top: 2.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    /* ストーリーセクション - スマホ最適化 */
    .story {
        background: var(--cream);
    }

    .story-block {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        background: var(--white);
        min-height: auto;
    }

    .story-block + .story-block {
        border-top: 1px solid rgba(79, 127, 79, 0.14);
    }

    .story-block:nth-child(even) {
        background: var(--sage-pale);
    }

    .story-image {
        width: 100%;
        height: clamp(210px, 56vw, 320px);
        min-height: auto;
        border-radius: 0;
        overflow: hidden;
    }

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

    .story-content {
        padding: 2rem 1.5rem 2.5rem;
        background: transparent !important;
    }

    .story-number {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        opacity: 1;
        line-height: 1;
        color: var(--forest);
        letter-spacing: 0.16em;
    }

    .story-title {
        font-size: clamp(1.35rem, 6vw, 1.8rem);
        margin-bottom: 1rem;
        line-height: 1.45;
        letter-spacing: 0.04em;
    }

    .story-title br {
        display: none;
    }

    .story-text {
        max-width: none;
        font-size: 0.94rem;
        line-height: 1.9;
        letter-spacing: 0.02em;
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
        -webkit-box-orient: initial;
    }

    /* 馬紹介セクション */
    .friends-intro {
        padding: 6rem 1.5rem;
    }

    .friends-intro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.875rem;
        max-width: none;
        margin: 2.75rem auto 0;
    }

    .friends-intro-subtitle {
        font-size: 1.05rem;
        margin-top: 1.25rem;
        line-height: 1.9;
    }

    .friends-intro-card {
        min-height: 100%;
        padding: 1.25rem 0.75rem 1.3rem;
        border-radius: 16px;
        /* タップ時のフィードバック強化 */
        -webkit-tap-highlight-color: transparent;
    }

    .friends-intro-card:active {
        transform: scale(0.98);
    }

    .friends-intro-visual {
        width: min(74%, 112px);
        margin-bottom: 1rem;
    }

    .friends-intro-title {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        margin-bottom: 0.55rem;
        letter-spacing: 0.03em;
    }

    .friends-intro-description {
        font-size: 0.8rem;
        line-height: 1.75;
        margin-bottom: 0.85rem;
        text-align: left;
    }

    .friends-intro-link {
        margin-top: auto;
        font-size: 0.76rem;
        letter-spacing: 0.04em;
    }

    .friends-intro-cta {
        margin-top: 2.75rem;
    }

    .friends-intro-button {
        /* タップターゲット最適化 */
        padding: 1.25rem 2.5rem;
        min-height: 56px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    .friends-intro-button:active {
        transform: scale(0.98);
    }

    .plans-link {
        padding: 2.75rem 0.75rem 5.5rem;
    }

    .plans-link-panel {
        grid-template-columns: 1fr;
        gap: 2.75rem;
        margin-top: 1rem;
        padding: 0;
        border-radius: 18px;
    }

    .plans-link-summary {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .plans-link-card {
        padding: 1.25rem 0.95rem;
    }

    .plans-link-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .plans-link-card strong {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }

    .plans-link-card p {
        font-size: 0.78rem;
        line-height: 1.75;
    }

    .plans-link-button {
        width: 100%;
        min-height: 54px;
        padding: 1rem 1.4rem;
        font-size: 0.92rem;
    }

    .plans-link-visual {
        width: min(82%, 320px);
        margin-top: -0.75rem;
        margin-bottom: 0;
    }

    .pricing-section-visual,
    .membership-section-visual {
        width: min(86%, 320px);
        margin-top: -1.25rem;
        margin-bottom: 2.25rem;
    }

    /* 料金セクション */
    .pricing {
        padding: 6rem 1.5rem;
    }

    .pricing-grid {
        max-width: 100%;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
        /* タップ時のフィードバック */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pricing-card:active {
        transform: translateY(-2px) scale(0.99);
    }

    .pricing-card.featured::before {
        font-size: 0.75rem;
        padding: 0.3rem 1.75rem;
        top: 18px;
        right: -28px;
    }

    .pricing-name {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .pricing-desc {
        font-size: 0.9rem;
    }

    .pricing-amount {
        font-size: 2.4rem;
    }

    .pricing-plan-row {
        gap: 0.75rem;
        padding: 0.75rem 0.85rem;
    }

    .pricing-plan-label {
        font-size: 0.85rem;
    }

    .pricing-plan-amount {
        font-size: 1.55rem;
    }

    .pricing-features li {
        padding: 1rem 0;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* 会員セクション */
    .membership {
        padding: 5rem 1.25rem;
    }

    .membership-grid {
        max-width: 100%;
        gap: 1.5rem;
    }

    .membership-card {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .membership-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .membership-icon svg {
        width: 32px;
        height: 32px;
    }

    .membership-name {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .membership-row {
        padding: 0.875rem 0;
    }

    .membership-label {
        font-size: 0.9rem;
    }

    .membership-value {
        font-size: 1.15rem;
    }

    /* 初めての方へ */
    .first-visit {
        padding: 5rem 1.25rem;
    }

    .first-visit-lead {
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .first-visit-lead p {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .first-visit-visual {
        width: min(80%, 280px);
        margin-top: -0.75rem;
        margin-bottom: 2rem;
    }

    .first-visit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .first-visit-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .first-visit-card h3 {
        font-size: 1.25rem;
    }

    .first-visit-card p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* 乗馬フロー */
    .experience-flow {
        padding: 5rem 1.25rem;
    }

    .flow-visual {
        width: min(88%, 340px);
        margin-top: -1rem;
        margin-bottom: 2rem;
    }

    .flow-grid {
        gap: 1.25rem;
    }

    .flow-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .flow-step {
        font-size: 0.75rem;
    }

    .flow-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .flow-text {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* FAQ */
    .faq {
        padding: 6rem 1.5rem;
    }

    .faq-list {
        gap: 1rem;
    }

    .faq-item {
        border-radius: 14px;
        /* タップ時のフィードバック */
        -webkit-tap-highlight-color: transparent;
    }

    .faq-item summary {
        /* タップターゲット最適化 */
        padding: 1.25rem 1.5rem;
        min-height: 60px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        line-height: 1.6;
    }

    .faq-item summary:active {
        background: var(--sage-pale);
    }

    .faq-item p {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
        line-height: 2;
    }

    /* アクセスセクション */
    .access {
        padding: 6rem 1.5rem;
    }

    .access-map {
        aspect-ratio: 4/3;
        border-radius: 20px;
        /* タップ時のインタラクション改善 */
        -webkit-tap-highlight-color: transparent;
    }

    .access-map-group {
        gap: 1.25rem;
    }

    .access-guide-image figcaption {
        font-size: 0.9rem;
    }

    .access-info {
        gap: 1.5rem;
    }

    .contact {
        padding: 6rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .access-card {
        padding: 2rem 1.75rem;
        border-radius: 16px;
    }

    .contact-card {
        padding: 2rem 1.75rem;
        border-radius: 16px;
    }

    .contact-owner {
        padding-left: 1rem;
        border-left-width: 3px;
    }

    .contact-owner-name {
        font-size: 1.3rem;
    }

    .contact-owner-credential {
        font-size: 0.98rem;
    }

    .access-card-title {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .access-card-content {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .access-card a {
        font-size: 1.3rem;
        /* タップターゲット最適化 */
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 0;
        -webkit-tap-highlight-color: transparent;
    }

    .contact-card a {
        font-size: 1.3rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 0;
        -webkit-tap-highlight-color: transparent;
    }

    .access-card a:active {
        transform: scale(1.02);
    }

    .contact-card a:active {
        transform: scale(1.02);
    }

    .access-note {
        font-size: 0.9rem;
    }

    /* CTAセクション */
    .cta {
        padding: 6rem 1.5rem;
    }

    .cta-title {
        font-size: clamp(1.8rem, 7.5vw, 2.4rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 2;
    }

    .cta-button {
        /* タップターゲット最適化 */
        padding: 1.25rem 2.5rem;
        min-height: 56px;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    .cta-button:active {
        transform: scale(0.98);
    }
}

/* 小型スマホ向け追加調整 (375px以下) */
@media (max-width: 375px) {
    .hero-title {
        font-size: clamp(2rem, 11vw, 2.8rem);
        letter-spacing: 0.08em;
    }

    .hero-title-sub {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }

    .hero-content {
        padding: 1.75rem 1.25rem;
    }

    .quote-section {
        padding: 5rem 1.25rem;
    }

    .quote-text {
        font-size: 1.05rem;
        line-height: 2;
    }

    .story-block {
        padding: 0;
        gap: 0;
    }

    .story-image {
        width: 100%;
        height: clamp(180px, 58vw, 220px);
    }

    .story-number {
        font-size: 0.85rem;
        margin-bottom: 0.65rem;
    }

    .story-title {
        font-size: 1.28rem;
        margin-bottom: 0.85rem;
    }

    .story-text {
        font-size: 0.9rem;
        line-height: 1.85;
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .pricing,
    .membership,
    .first-visit,
    .experience-flow,
    .faq,
    .access,
    .friends-intro,
    .plans-link {
        padding: 5rem 1.25rem;
    }

    .cta {
        padding: 5rem 1.25rem;
    }

    .pricing-card,
    .membership-card,
    .first-visit-card,
    .flow-card,
    .access-card {
        padding: 2rem 1.5rem;
    }

    .friends-intro-card {
        padding: 1.05rem 0.65rem 1.15rem;
        border-radius: 14px;
    }

    .friends-intro-grid {
        gap: 0.7rem;
        margin-top: 2.25rem;
    }

    .friends-intro-visual {
        width: min(78%, 96px);
        margin-bottom: 0.8rem;
    }

    .friends-intro-title {
        font-size: 1rem;
    }

    .friends-intro-description {
        font-size: 0.74rem;
        line-height: 1.65;
        margin-bottom: 0.75rem;
    }

    .friends-intro-link {
        font-size: 0.7rem;
    }

    .plans-link-panel {
        padding: 0;
    }

    .plans-link {
        padding: 2.5rem 0.625rem 5rem;
    }

    .plans-link-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .plans-link-card {
        padding: 1.1rem;
    }

    .plans-link-card strong {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 7.5vw, 2.2rem);
    }

    .section-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.35em;
    }

    .cta-button,
    .friends-intro-button {
        padding: 1.125rem 2rem;
        font-size: 0.9rem;
    }
}
