/* ============================================================
   front-page.css — AUREA SOL LEVANS
   フロントページ専用スタイル
   ============================================================ */

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to bottom, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.3) 50%, rgba(20,16,10,0.75) 100%),
            var(--asl-hero-bg) center / cover no-repeat;
    transform: scale(1.03);
    animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    animation: heroFade 1.6s ease-out 0.3s both;
}
@keyframes heroFade {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}
.hero-logo-wordmark {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 0.3rem;
}
.hero-logo-wordmark span { color: var(--gold); }
.hero-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--gold-pale);
    text-transform: uppercase;
    margin-bottom: 2.8rem;
}
.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2.2rem;
    opacity: 0.8;
}
.hero-tagline {
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 2.8rem;
    letter-spacing: 0.02em;
}
.hero-tagline.ja {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.7rem);
    letter-spacing: 0.08em;
}
.hero-cta {
    display: inline-block;
    padding: 0.85rem 2.8rem;
    border: 1px solid var(--gold);
    color: var(--gold-pale);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.35s ease;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span { position: relative; z-index: 1; }
.hero-cta:hover span { color: var(--charcoal); }
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: heroFade 2s ease-out 1.2s both;
}
.hero-scroll-hint span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: rgba(247,244,238,0.5);
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(184,151,58,0.7), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* ----------------------------------------------------------
   INTRO STRIP
   ---------------------------------------------------------- */
#intro {
    background: var(--charcoal);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(184,151,58,0.15);
}
.intro-body--lead {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--on-dark-sub);
    line-height: 1.85;
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: 0.04em;
}
.intro-body--lead.ja {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    font-style: normal;
    font-weight: 300;
    color: var(--on-dark-sub);
    line-height: 2.1;
    max-width: 680px;
    margin: 0 auto;
    letter-spacing: 0.08em;
}

/* ----------------------------------------------------------
   STRENGTH
   ---------------------------------------------------------- */
#strength { background: var(--charcoal); padding: 0 2rem 10rem; }
.strength-inner { max-width: 860px; margin: 0 auto; }
.strength-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem; font-weight: 400; letter-spacing: 0.35em;
    color: var(--gold); text-transform: uppercase; text-align: center;
    margin-bottom: 1.8rem; padding-top: 7rem;
}
.strength-heading {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: clamp(1.7rem, 3.4vw, 2.9rem); font-weight: 300;
    color: var(--on-dark); text-align: center;
    letter-spacing: 0.03em; line-height: 1.45; margin-bottom: 0.5rem;
}
.strength-heading.ja { font-family: 'Noto Serif JP', serif; font-size: clamp(1.2rem, 2.4vw, 2rem); letter-spacing: 0.08em; line-height: 1.9; }
.strength-rule { width: 48px; height: 1px; background: var(--gold); margin: 2rem auto 4.5rem; }
.strength-plan-b { display: none; }
.strength-item-b { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; align-items: start; padding: 1.8rem 0; border-bottom: 1px solid rgba(184,151,58,0.12); }
.strength-item-b:last-child { border-bottom: none; }
.strength-icon { width: 3rem; height: 3rem; border: 1px solid rgba(184,151,58,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strength-icon svg { width: 1.2rem; height: 1.2rem; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.strength-text-b-title { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.strength-text-b-title.ja { font-family: 'Noto Serif JP', serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: none; }
.strength-text-b-body { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 300; color: var(--on-dark-sub); line-height: 2; letter-spacing: 0.03em; }
.strength-text-b-body.ja { font-family: 'Noto Serif JP', serif; font-size: 0.9rem; letter-spacing: 0.07em; line-height: 2.1; }
.strength-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 300; font-style: italic; color: var(--gold-light); text-align: center; letter-spacing: 0.04em; margin-top: 2rem; }
.strength-tagline.ja { font-family: 'Noto Serif JP', serif; font-size: clamp(0.9rem, 1.6vw, 1.2rem); font-style: normal; letter-spacing: 0.1em; }
.strength-plan-a {}
.strength-item-a { padding: 2rem 0; border-bottom: 1px solid rgba(184,151,58,0.12); display: flex; gap: 2rem; align-items: baseline; }
.strength-item-a:last-child { border-bottom: none; }
.strength-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(184,151,58,0.25); flex-shrink: 0; width: 2.5rem; text-align: right; line-height: 1; }
.strength-text-a { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 300; color: var(--on-dark); line-height: 1.6; letter-spacing: 0.03em; }
.strength-text-a.ja { font-family: 'Noto Serif JP', serif; font-size: clamp(0.92rem, 1.5vw, 1.1rem); letter-spacing: 0.08em; line-height: 1.9; color: var(--on-dark-sub); }
.strength-text-a em { font-style: normal; color: var(--gold-light); }
.strength-plan-toggle { display: flex; justify-content: center; gap: 0; margin-bottom: 3rem; }
.strength-plan-toggle button { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; padding: 0.4rem 1.2rem; border: 1px solid rgba(184,151,58,0.4); background: transparent; color: var(--on-dark-sub); cursor: pointer; transition: all 0.3s; text-transform: uppercase; }
.strength-plan-toggle button.active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* ----------------------------------------------------------
   ABOUT CTA
   ---------------------------------------------------------- */
#about-cta {
    background: var(--charcoal-mid);
    padding: 6rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(184,151,58,0.15);
    border-bottom: 1px solid rgba(184,151,58,0.15);
}
#about-cta .section-title { color: var(--on-dark); }
#about-cta .section-rule { margin-bottom: 2.5rem; }

/* ----------------------------------------------------------
   QUOTE BANNER
   ---------------------------------------------------------- */
#quote-banner {
    position: relative;
    padding: 7rem 2rem;
    background:
            linear-gradient(rgba(20,16,10,0.78), rgba(20,16,10,0.78)),
            var(--asl-quote-bg) center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}
.quote-text { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 300; font-style: italic; color: var(--off-white); line-height: 1.6; max-width: 820px; margin: 0 auto 1.5rem; letter-spacing: 0.03em; }
.quote-text.ja { font-family: 'Noto Serif JP', serif; font-size: clamp(1.1rem, 2.2vw, 1.7rem); letter-spacing: 0.1em; line-height: 2; }
.quote-attr { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }

/* ----------------------------------------------------------
   FOUNDER PREVIEW
   ---------------------------------------------------------- */
#founder-preview { background: var(--charcoal-mid); padding: 6rem 2rem; }
.founder-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.founder-img-wrap { position: relative; }
.founder-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; display: block; border: 1px solid rgba(184,151,58,0.25); }
.founder-img-deco { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 80%; height: 80%; border: 1px solid rgba(184,151,58,0.2); pointer-events: none; }
.founder-content { color: var(--on-dark); }
.founder-mobile-row { display: none; }
.founder-name { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.founder-headline { font-size: clamp(1.5rem, 2.8vw, 2.3rem); font-weight: 300; line-height: 1.4; margin-bottom: 2rem; letter-spacing: 0.03em; }
.founder-headline.ja { font-family: 'Noto Serif JP', serif; font-size: clamp(1.2rem, 2.2vw, 1.8rem); line-height: 1.9; letter-spacing: 0.1em; }
.founder-body { font-family: 'Montserrat', sans-serif; font-size: 0.83rem; font-weight: 300; color: var(--on-dark-sub); line-height: 1.9; margin-bottom: 2.5rem; letter-spacing: 0.02em; }
.founder-body.ja { font-family: 'Noto Serif JP', serif; font-size: 0.87rem; letter-spacing: 0.05em; line-height: 2; }

/* ----------------------------------------------------------
   INSTAGRAM
   ---------------------------------------------------------- */
#instagram { background: var(--charcoal-mid); padding: 6rem 2rem; text-align: center; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; max-width: 900px; margin: 3rem auto 2.5rem; }
.instagram-cell { aspect-ratio: 1; background: var(--charcoal-mid); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.instagram-cell-placeholder { font-family: 'Montserrat', sans-serif; font-size: 0.55rem; letter-spacing: 0.15em; color: rgba(247,244,238,0.25); text-transform: uppercase; }
.instagram-handle { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.2em; color: var(--gold); margin-top: 0.5rem; }
.instagram-handle a { color: inherit; text-decoration: none; }
.instagram-handle a:hover { color: var(--gold-light); }

/* ----------------------------------------------------------
   COMMENTS（Phase 5 で本格実装）
   ---------------------------------------------------------- */
#comments { background: var(--charcoal); padding: 100px 20px 120px; position: relative; }
#comments::before { content: ''; display: block; width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--gold)); margin: 0 auto 0; position: absolute; top: 0; left: 50%; }
.comments-inner { max-width: 900px; margin: 0 auto; }
.comments-header { text-align: center; margin-bottom: 64px; }
.comments-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; display: block; }
.comments-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 300; letter-spacing: 0.06em; color: var(--off-white); line-height: 1.3; }
.comments-title-jp { font-family: 'Noto Serif JP', serif; font-size: clamp(18px, 2.5vw, 24px); font-weight: 300; color: var(--warm-gray); margin-top: 8px; display: block; }
.comments-divider { width: 40px; height: 1px; background: var(--gold); margin: 24px auto; }
.comments-cta-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid rgba(184,151,58,0.2); }
.comments-count { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--warm-gray); letter-spacing: 0.08em; }
.comments-count span { color: var(--gold-light); font-size: 22px; font-weight: 500; margin-right: 6px; }
.btn-write-comment { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 14px 28px; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn-write-comment::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 0; }
.btn-write-comment:hover::before { transform: translateX(0); }
.btn-write-comment:hover { color: var(--charcoal); }
.btn-write-comment > * { position: relative; z-index: 1; }
.btn-write-comment svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn-write-comment:hover svg { transform: translateX(3px); }
.comments-grid { display: flex; flex-direction: column; gap: 2px; }
.comment-card { background: var(--charcoal-mid); padding: 36px 40px; position: relative; border-left: 2px solid transparent; transition: border-color 0.3s; }
.comment-card:hover { border-left-color: var(--gold); }
.comment-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; gap: 16px; }
.comment-author-block { display: flex; align-items: center; gap: 16px; }
.comment-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--charcoal-mid) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--charcoal); font-weight: 500; flex-shrink: 0; border: 1px solid rgba(184,151,58,0.3); }
.comment-author-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--off-white); letter-spacing: 0.05em; }
.comment-author-meta { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.comment-sns { font-size: 11px; color: var(--warm-gray); letter-spacing: 0.05em; }
.comment-sns a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.comment-sns a:hover { opacity: 0.7; }
.comment-date { font-size: 11px; color: var(--warm-gray); letter-spacing: 0.08em; white-space: nowrap; flex-shrink: 0; }
.comment-body { font-size: 15px; line-height: 1.85; color: rgba(247,244,238,0.82); font-weight: 300; }
.comment-body.jp { font-family: 'Noto Serif JP', serif; font-size: 14px; line-height: 2; }
.comment-travel { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(184,151,58,0.12); }
.comment-travel-inner { font-size: 11px; letter-spacing: 0.12em; color: var(--gold); opacity: 0.75; font-family: 'Montserrat', sans-serif; text-transform: uppercase; }
.comment-images { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.comment-img-thumb { width: 72px; height: 72px; object-fit: cover; cursor: pointer; border: 1px solid rgba(138,128,120,0.2); transition: opacity 0.2s; display: block; }
.comment-img-thumb:hover { opacity: 0.8; }
.comments-load-more { text-align: center; margin-top: 48px; }
.btn-load-more { background: transparent; border: none; color: var(--warm-gray); font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; padding: 12px 20px; transition: color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-load-more:hover { color: var(--gold-light); }
.btn-load-more::after { content: ''; display: block; width: 24px; height: 1px; background: currentColor; }

/* ----------------------------------------------------------
   コメント投稿モーダル
   ---------------------------------------------------------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,10,10,0.92); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; backdrop-filter: blur(6px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--charcoal-mid); width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(24px); transition: transform 0.35s ease; border-top: 2px solid var(--gold); scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { padding: 36px 40px 28px; border-bottom: 1px solid rgba(184,151,58,0.15); position: sticky; top: 0; background: var(--charcoal-mid); z-index: 1; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; letter-spacing: 0.08em; color: var(--off-white); }
.modal-title-jp { font-family: 'Noto Serif JP', serif; font-size: 13px; font-weight: 300; color: var(--warm-gray); margin-top: 4px; display: block; }
.modal-close { position: absolute; top: 28px; right: 32px; background: none; border: none; color: var(--warm-gray); cursor: pointer; padding: 8px; transition: color 0.2s; line-height: 1; }
.modal-close:hover { color: var(--gold); }
.modal-body { padding: 32px 40px 40px; }
.form-section { margin-bottom: 28px; }
.form-section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-size: 11px; letter-spacing: 0.1em; color: var(--warm-gray); }
.form-label .required { color: var(--gold); margin-left: 3px; }
.form-input, .form-select, .form-textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,151,58,0.2); color: var(--off-white); font-family: 'Montserrat', sans-serif; font-size: 13px; padding: 12px 16px; outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; border-radius: 0; appearance: none; }
.form-select option { background: #2a2a2a; color: #f7f4ee; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(184,151,58,0.06); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(138,128,120,0.5); font-size: 12px; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8973A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.sns-row { display: grid; grid-template-columns: 140px 1fr; gap: 8px; }
.quiz-box { background: rgba(184,151,58,0.05); border: 1px solid rgba(184,151,58,0.15); padding: 20px 24px; margin-bottom: 28px; }
.quiz-question { font-size: 13px; color: var(--off-white); margin-bottom: 12px; line-height: 1.6; }
.btn-submit { width: 100%; background: var(--gold); border: none; color: var(--charcoal); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; padding: 18px; cursor: pointer; transition: background 0.2s, opacity 0.2s; }
.btn-submit:hover { background: var(--gold-light); }
.form-privacy { font-size: 10px; color: var(--warm-gray); text-align: center; margin-top: 14px; letter-spacing: 0.05em; line-height: 1.7; }
.opt-badge { font-size: 9px; letter-spacing: 0.1em; color: var(--warm-gray); border: 1px solid rgba(138,128,120,0.3); padding: 1px 6px; margin-left: 6px; vertical-align: middle; }
.field-error { display: block; font-size: 11px; color: #e57373; margin-top: 5px; min-height: 16px; font-family: 'Montserrat', sans-serif; letter-spacing: 0.04em; }
.form-input.has-error, .form-textarea.has-error { border-color: #e57373; }
.form-error-global { background: rgba(229,115,115,0.1); border: 1px solid rgba(229,115,115,0.4); color: #e57373; font-size: 12px; padding: 12px 16px; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; line-height: 1.7; }
.btn-submit.loading { opacity: 0.6; pointer-events: none; position: relative; }
.btn-submit.loading::after { content: ''; display: inline-block; width: 12px; height: 12px; border: 2px solid rgba(26,26,26,0.3); border-top-color: var(--charcoal); border-radius: 50%; animation: spin 0.6s linear infinite; margin-left: 10px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.image-upload-area { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.image-preview-grid { display: contents; }
.image-thumb { position: relative; width: 80px; height: 80px; flex-shrink: 0; border: 1px solid rgba(184,151,58,0.3); overflow: hidden; }
.image-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-thumb-remove { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; background: rgba(26,26,26,0.75); border: none; border-radius: 50%; color: #fff; font-size: 14px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; }
.image-thumb-remove:hover { background: rgba(229,115,115,0.9); }
.btn-add-image { width: 80px; height: 80px; border: 1px dashed rgba(184,151,58,0.5); background: transparent; color: var(--warm-gray); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; font-size: 10px; letter-spacing: 0.05em; font-family: 'Montserrat', sans-serif; transition: border-color 0.2s, color 0.2s; flex-shrink: 0; }
.btn-add-image:hover { border-color: var(--gold); color: var(--gold); }
.btn-add-image[style*="display:none"] { display: none !important; }
.form-hint { font-size: 11px; color: var(--warm-gray); margin-top: 6px; font-family: 'Montserrat', sans-serif; letter-spacing: 0.03em; line-height: 1.5; }
.modal-thanks { display: none; padding: 60px 40px; text-align: center; }
.modal-thanks.show { display: block; }
.thanks-icon { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold); }
.thanks-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--off-white); margin-bottom: 12px; }
.thanks-body { font-size: 13px; color: var(--warm-gray); line-height: 1.9; }
.comment-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 9999; align-items: center; justify-content: center; }
.comment-lightbox.open { display: flex; }
.comment-lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; box-shadow: 0 8px 40px rgba(0,0,0,0.6); }
.comment-lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; line-height: 1; opacity: 0.8; }
.comment-lightbox-close:hover { opacity: 1; }
.travel-period-row { grid-template-columns: 1fr 1fr; }

/* ----------------------------------------------------------
   レスポンシブ
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    #quote-banner { background-attachment: scroll; background-position: center center; padding: 5rem 1.5rem; }
    .founder-inner { grid-template-columns: 1fr; gap: 0; }
    .founder-img-wrap { display: none; }
    .founder-img-deco { display: none; }
    .founder-desktop-only { display: none !important; }
    .founder-mobile-row { display: grid; grid-template-columns: 110px 1fr; gap: 1.2rem; align-items: start; margin-top: 1.5rem; }
    .founder-mobile-portrait { aspect-ratio: 3/4; object-fit: cover; object-position: center top; width: 100%; border: 1px solid rgba(184,151,58,0.25); display: block; }
    .strength-item-a { gap: 1rem; }
    .strength-num { font-size: 2rem; width: 2rem; }
    .comment-card { padding: 28px 24px; }
    .modal-header { padding: 28px 24px 20px; }
    .modal-body { padding: 24px 24px 32px; }
    .form-row { grid-template-columns: 1fr; }
    .sns-row { grid-template-columns: 1fr; }
    .comments-cta-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}