/* ============================
   SUERTE — style.css
   ============================ */

/* ---------- Variables ---------- */
:root {
    --white:      #ffffff;
    --off-white:  #f7f7f5;
    --light-gray: #ebebeb;
    --text-dark:  #1c1c1c;
    --text-mid:   #555555;
    --text-light: #999999;
    --accent:     #c9a96e;
    --accent-dark:#a8874d;
    --header-h:   72px;
    --radius:     12px;
    --shadow-sm:  0 4px 20px rgba(0,0,0,0.06);
    --shadow-md:  0 12px 40px rgba(0,0,0,0.10);
    --shadow-lg:  0 24px 60px rgba(0,0,0,0.14);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3,
.section-title,
.story-heading,
.card-title,
.portfolio-info h3 {
    font-family: 'Shippori Mincho', serif;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Section Common ---------- */
.section { padding: 100px 0; }

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

.section-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.title-roman {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--text-light);
}

.section-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: var(--text-dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    border: 2px solid var(--text-dark);
    border-radius: 2px;
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-dark);
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   HEADER
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    display: block;
    height: 36px;
    width: auto;
}
.logo-text {
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    color: var(--text-dark);
}

/* Navigation */
.nav ul {
    display: flex;
    gap: 36px;
}

.nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-dark);
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--off-white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.45;
    filter: grayscale(20%);
    animation: heroBgZoom 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroBgZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(247,247,245,1) 35%, rgba(247,247,245,0.6) 65%, rgba(247,247,245,0.1) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 32px 80px;
    max-width: 680px;
}

.hero-logo-wrap {
    margin-bottom: 28px;
    animation: heroLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero-logo {
    height: 180px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.hero-logo-fallback {
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 0.2em;
    color: var(--text-dark);
}

.hero-en {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.title-main {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: var(--text-dark);
    white-space: nowrap;
}

.title-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.5;
    color: var(--text-mid);
}

.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 36px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hero-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
}

.hero-name-en {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--text-light);
}

.hero-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--text-light);
}

/* ---- Hero Animations ---- */
@keyframes heroLogoIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes heroWordUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroLineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* 単語ごとにずらして登場 */
.word {
    display: inline-block;
    opacity: 0;
    animation: heroWordUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.w1 { animation-delay: 0.45s; }
.w2 { animation-delay: 0.65s; }
.w3 { animation-delay: 0.85s; }

.anim-sub {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

.anim-profile {
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1.35s both;
}

/* profile内のボーダーラインを伸ばす演出 */
.hero-profile {
    transform-origin: center;
}
.hero-profile::before,
.hero-profile::after {
    transform-origin: left;
    animation: heroLineGrow 0.6s ease 1.3s both;
}

.anim-btn {
    opacity: 0;
    animation: heroFadeUp 0.7s ease 1.6s both;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-light);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ============================
   ABOUT
   ============================ */
.about { background: var(--white); }

.about-body {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-body p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 16px;
    text-wrap: balance;
}

.about-body p:last-child { margin-bottom: 0; }
.about-body strong { font-weight: 700; color: var(--text-dark); }

/* About 実績バー */
.about-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 48px 0 56px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    min-width: 110px;
    text-align: center;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-badge {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.stat-label small {
    font-size: 0.7rem;
    color: var(--text-light, #aaa);
}

.stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.overseas-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 48px auto 56px;
    max-width: 640px;
}

.overseas-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--text-mid);
}

.overseas-header svg {
    width: 18px;
    height: 18px;
    color: var(--text-mid);
}

.overseas-header span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-mid);
}

.overseas-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.overseas-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 28px;
}

.os-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 200;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.os-num em {
    font-style: normal;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-mid);
    margin-left: 2px;
    vertical-align: middle;
}

.os-place {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.os-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* About 3カラム */
.about-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.about-col {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-col:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.about-col-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.about-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.about-col:hover .about-col-img img { transform: scale(1.05); }

.about-col:first-child .about-col-img img {
    object-position: center 22%;
}

.about-col:last-child .about-col-img img {
    object-position: center top;
}

.about-col-body {
    padding: 24px 22px 28px;
}

.about-col-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.about-col:nth-child(2) .about-col-body h3 {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.h3-right {
    display: block;
    text-align: right;
}

.about-col-body p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.9;
}

@media (max-width: 900px) {
    .about-cols { grid-template-columns: 1fr; gap: 16px; }
    .about-col-img { height: 220px; }
}

/* ============================
   BRAND STORY
   ============================ */
.brand { background: var(--text-dark); }

.brand .section-en,
.brand .section-title,
.brand .section-line { color: var(--white); }

.brand .section-line { background: var(--accent); }

.brand-intro {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 2;
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
}

.brand-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 56px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-word {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    line-height: 1;
}

.brand-lang {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand-col p {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    line-height: 2.2;
    text-wrap: balance;
}

@media (max-width: 640px) {
    .brand-cols { grid-template-columns: 1fr; gap: 40px; }
    .brand-word  { font-size: 1.6rem; }
}

/* ============================
   HIGHLIGHT VIDEO
   ============================ */
.highlight { background: var(--text-dark); }

.highlight .section-en  { color: var(--accent); }
.highlight .section-title { color: var(--white); }
.highlight .section-line  { background: var(--accent); }

.hl-movie-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hl-movie-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.hl-movie-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hl-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    color: var(--white);
    transition: background var(--transition);
    cursor: pointer;
}

.hl-overlay:hover { background: rgba(0,0,0,0.2); }
.hl-overlay.hidden { display: none; }

/* ============================
   SERVICES / LESSON
   ============================ */
.services-lead,
.services-note {
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto 40px;
}

.services-note {
    margin-top: 36px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}


.services {
    position: relative;
    background: linear-gradient(135deg, #eeeeec 0%, #e4e4e2 100%);
    overflow: hidden;
}

/* 背景の装飾円 */
.services-bg-layer::before,
.services-bg-layer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.services-bg-layer::before {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.services-bg-layer::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
}

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

/* ── Service Card (ガラスモーフィズム) ── */
.service-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius);
    padding: 40px 32px 36px;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.78);
}

.card-icon {
    width: 52px;
    height: 52px;
    color: var(--accent);
    margin-bottom: 22px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card-title small {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.price-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.price-menu-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-menu-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.price-menu-dots {
    flex: 1;
    border-bottom: 1px dotted var(--light-gray);
    margin-bottom: 3px;
}

.price-menu-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 24px;
    text-wrap: balance;
}

.card-price {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-dark);
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

/* ============================
   MEMBERSHIP
   ============================ */
.membership { background: var(--off-white); }

.membership-lead {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 48px;
}

.membership-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.membership-card-left {
    background: var(--text-dark);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.mem-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 10px;
    border-radius: 2px;
}

.mem-main-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-top: 8px;
}

.mem-main-price span {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    margin-left: 2px;
}

.mem-main-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.mem-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 2px;
    transition: background var(--transition);
    margin-top: 8px;
}

.mem-cta:hover { background: var(--accent-dark); }

.mem-cta-note {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    width: 100%;
}

.membership-card-right {
    background: var(--white);
    padding: 40px 40px;
}

.mem-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mem-benefits li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mem-benefit-icon {
    color: var(--accent);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.mem-benefits strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mem-benefits p {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.mem-benefits del {
    color: var(--text-light);
    font-size: 0.75rem;
}

.mem-benefits em {
    font-style: normal;
    font-weight: 700;
    color: var(--accent);
}

@media (max-width: 640px) {
    .membership-card { grid-template-columns: 1fr; }
    .membership-card-left { padding: 36px 28px; }
    .membership-card-right { padding: 32px 28px; }
}

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

.mem-plan {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.mem-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mem-plan--gold {
    background: var(--text-dark);
    border-color: var(--accent);
}

.mem-plan-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--text-light);
}

.mem-plan--gold .mem-plan-label { color: rgba(255,255,255,0.4); }

.mem-plan-fee {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.mem-plan-fee span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 2px;
}

.mem-plan--gold .mem-plan-fee { color: var(--accent); }
.mem-plan--gold .mem-plan-fee span { color: rgba(255,255,255,0.35); }

.mem-plan-catch {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.8;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.mem-plan--gold .mem-plan-catch {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.1);
}

.mem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.mem-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-mid);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--light-gray);
}

.mem-list li:last-child { border-bottom: none; padding-bottom: 0; }

.mem-plan--gold .mem-list li {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.08);
}

.mem-list li span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    white-space: nowrap;
}

.mem-plan--gold .mem-list li span:last-child { color: var(--white); }

.mem-list li em {
    font-style: normal;
    color: var(--accent);
}

.mem-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid var(--text-dark);
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    transition: background var(--transition), color var(--transition);
}

.mem-btn:hover { background: var(--text-dark); color: var(--white); }

.mem-btn--gold {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.mem-btn--gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.membership-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 32px;
    line-height: 2;
}

@media (max-width: 640px) {
    .membership-plans { grid-template-columns: 1fr; }
    .mem-plan { padding: 28px 24px; }
}

/* ============================
   VOICE
   ============================ */
.voice { background: var(--off-white); }

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.voice-card {
    background: var(--white);
    border-radius: 8px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.voice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.voice-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.voice-photo img,
.voice-photo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.voice-photo--left img {
    width: 280%;
    height: auto;
    max-width: none;
    position: relative;
    left: -5%;
    top: -45%;
}

.voice-text {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
    flex: 1;
    position: relative;
    padding-top: 20px;
}

.voice-text::before {
    content: '\201C';
    font-family: 'Shippori Mincho', serif;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.4;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.voice-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
    width: 100%;
}

.voice-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.voice-attr {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

/* ============================
   MOVIE
   ============================ */
.movie { background: var(--white); }

.movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.movie-card { display: flex; flex-direction: column; gap: 12px; }

.movie-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    background: var(--text-dark);
}

.movie-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.movie-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: color var(--transition);
}

.movie-placeholder:hover { color: rgba(255,255,255,0.6); }

.movie-label {
    font-size: 0.82rem;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    text-align: center;
}

.v-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #111;
    border-radius: 0 0 6px 6px;
}

.v-play {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.v-progress-wrap {
    flex: 1;
    cursor: pointer;
}

.v-progress-bar {
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.v-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.v-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.v-mute {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color var(--transition);
}

.v-mute:hover { color: #fff; }

.v-volume {
    width: 64px;
    height: 3px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.v-full {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color var(--transition);
}

.v-full:hover { color: #fff; }

/* ============================
   PORTFOLIO
   ============================ */
.portfolio { background: var(--off-white); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.portfolio-img {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img img { transform: scale(1.06); }

.portfolio-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio-info {
    padding: 20px 24px;
}

.portfolio-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.portfolio-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

/* ============================
   FLOW
   ============================ */
.flow { background: var(--off-white); }

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.flow-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
}

.flow-connector {
    position: absolute;
    top: 52px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 1px;
    background: linear-gradient(to right, var(--accent), rgba(201,169,110,0.3));
}

.flow-connector.none { display: none; }

.flow-icon {
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: background var(--transition), color var(--transition);
}

.flow-icon svg { width: 22px; height: 22px; }

.flow-step:hover .flow-icon {
    background: var(--accent);
    color: var(--white);
}

.flow-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.85;
}

@media (max-width: 900px) {
    .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .flow-connector { display: none; }
}

@media (max-width: 640px) {
    .flow-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================
   CONTACT
   ============================ */
.contact { background: var(--white); }

.contact-lead {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 24px;
}

.contact-options {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06C755;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-line:hover { opacity: 0.85; }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.required {
    color: var(--accent-dark);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
    background: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 0.88rem;
    border-radius: 4px;
    letter-spacing: 0.2em;
}

/* LINE Contact Guide */
.contact-line-guide {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.line-guide-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.06em;
    text-align: center;
}

.line-guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 28px 32px;
}

.line-guide-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.guide-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--white);
    background: var(--accent);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-line-large {
    font-size: 1.05rem;
    padding: 18px 48px;
    border-radius: 4px;
}

.line-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #06C755;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.line-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* LINE Modal */
.line-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.line-modal-overlay.show { display: flex; }

.line-modal {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.line-modal-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: center;
}

.line-modal-text {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--off-white);
    resize: none;
    line-height: 1.9;
}

.line-modal-copy {
    padding: 12px;
    background: var(--text-dark);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.line-modal-copy:hover { opacity: 0.8; }

.line-modal-step {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.line-modal-open {
    justify-content: center;
    text-decoration: none;
}

.line-modal-close {
    background: none;
    border: none;
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    text-align: center;
    padding: 4px;
}

.line-modal-close:hover { color: var(--text-dark); }

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 32px;
    filter: invert(1);
    mix-blend-mode: lighten;
}
.footer-logo-text {
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.18em;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-links span {
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
}

.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.45);
}

/* ============================
   RESPONSIVE — Tablet
   ============================ */
@media (max-width: 900px) {
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   RESPONSIVE — Mobile
   ============================ */
@media (max-width: 900px) {
    .voice-grid  { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .movie-grid  { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .overseas-row { gap: 0; flex-wrap: wrap; }
    .overseas-item { padding: 0 16px; }
    .os-divider { height: 28px; }
}

@media (max-width: 640px) {
    :root { --header-h: 60px; }

    .container { padding: 0 20px; }
    .section    { padding: 72px 0; }

    /* Nav */
    .hamburger { display: flex; }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-h));
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .nav.open { transform: translateX(0); }

    .nav ul {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .nav a { font-size: 1rem; letter-spacing: 0.2em; }

    /* Hero */
    .hero-content {
        padding: calc(var(--header-h) + 24px) 24px 60px;
        max-width: 100%;
    }
    .hero-logo-wrap { margin-bottom: 20px; }
    .hero-logo      { height: 100px; }
    .title-main     { font-size: clamp(0.95rem, 4vw, 1.65rem); white-space: nowrap; }
    .title-sub      { font-size: 0.97rem; letter-spacing: 0.08em; }
    .hero-title     { gap: 8px; margin-bottom: 20px; }
    .hero-profile   { padding: 14px 0; margin-bottom: 24px; gap: 4px; }
    .hero-name      { font-size: 1.05rem; }
    .hero-role      { font-size: 0.65rem; }
    .btn-primary    { padding: 14px 32px; font-size: 0.8rem; }
    .hero-bg-img    { object-position: right center; opacity: 0.35; }
    .title-main     { text-shadow: 0 2px 12px rgba(247,247,245,0.9), 0 0 24px rgba(247,247,245,0.8); }
    .title-sub      { text-shadow: 0 1px 8px rgba(247,247,245,0.95); }
    .hero-name      { text-shadow: 0 1px 6px rgba(247,247,245,0.9); }
    .hero-role      { text-shadow: 0 1px 6px rgba(247,247,245,0.9); }

    /* About */
    .section-title { font-size: 1.4rem; }
    .about-body { max-width: 100%; }
    .overseas-stats { margin: 32px auto 40px; }
    .overseas-row { flex-wrap: wrap; gap: 0; }
    .overseas-item { padding: 8px 14px; }
    .os-num { font-size: 1.5rem; }
    .os-divider { display: none; }

    /* Photos — bigger on mobile */
    .about-col-img           { height: 300px; }
    .about-col:last-child .about-col-img { height: 300px; }
    .portfolio-img           { height: 260px; }
    .voice-photo             { width: 90px; height: 90px; }

    /* Grids */
    .services-grid,
    .portfolio-grid,
    .voice-grid,
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .service-card { padding: 32px 24px 28px; }

    /* Video controls */
    .v-volume { width: 48px; }
    .v-time   { font-size: 0.65rem; }

    /* Voice */
    .voice-card { padding: 28px 20px 24px; }
}
