@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ============================================================
   TOKENS
============================================================ */
:root {
    --cream: #F8F5F0;
    --cream-dark: #EDE9E3;
    --charcoal: #1A1A18;
    --charcoal-2: #2D2D2B;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gray: #8A8A86;
    --gray-light: #D4CFC9;
    --white: #FFFFFF;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* ============================================================
   UTILITY
============================================================ */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--charcoal);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid currentColor;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover::after {
    transform: translateX(6px);
}

.btn--dark {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn--dark:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.btn--light {
    color: var(--white);
    border-color: var(--white);
}

.btn--light:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn--gold {
    color: var(--gold);
    border-color: var(--gold);
}

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

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   HEADER
============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 80px;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.header.is-scrolled {
    background: rgba(248, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--gray-light);
}

.header__logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--charcoal);
}

.header__logo span {
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
}

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

.header__nav a {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 3px;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

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

.header__contact {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    transition: background 0.3s, color 0.3s;
}

.header__contact:hover {
    background: var(--charcoal);
    color: var(--cream);
}

/* nav内ContactはSPドロワー専用 */
.header__contact--nav {
    display: none;
}

/* ハンバーガー（PCでは非表示） */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--charcoal);
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    transform-origin: center;
}

.header__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
    background: var(--charcoal-2);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(26, 26, 24, 0.3) 0%, rgba(26, 26, 24, 0.7) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.25;
    z-index: 2;
}

.hero__line {
    position: absolute;
    top: 0;
    right: 18%;
    width: 1px;
    height: 45%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    z-index: 3;
}

.hero__content {
    position: relative;
    z-index: 4;
    padding: 0 80px;
    max-width: 1200px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(50px, 8vw, 110px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.1s var(--ease-out) 0.5s forwards;
}

.hero__title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero__subtitle {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(248, 245, 240, 0.65);
    max-width: 440px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(248, 245, 240, 0.4);
    writing-mode: vertical-rl;
}

.hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

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

/* ============================================================
   WORKS
============================================================ */
.works {
    padding: 140px 0 120px;
    background: var(--cream);
}

.works__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 80px;
    margin-bottom: 70px;
}

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

.works__card:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
}

.works__card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream-dark);
}

.works__card-img {
    aspect-ratio: 16/9;
    background: var(--cream-dark);
    overflow: hidden;
}

.works__card:first-child .works__card-img {
    aspect-ratio: 16/9;
}

.works__card-img-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--cream-dark) 100%);
    transition: transform 0.8s var(--ease-out);
}

.works__card:hover .works__card-img-inner {
    transform: scale(1.05);
}

.works__card-body {
    padding: 20px 24px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.works__card-tag {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.works__card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
}

.works__card-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--charcoal);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.works__card:hover .works__card-arrow {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--cream);
}

.works__more {
    text-align: center;
    margin-top: 60px;
}

/* ============================================================
   SERVICE
============================================================ */
.service {
    padding: 140px 80px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: 'SERVICE';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.service__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
}

.service__header .section-label {
    color: var(--gold);
}

.service__header .section-title {
    color: var(--cream);
}

.service__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.service__item {
    padding: 56px 40px;
    transition: background 0.4s;
}

.service__item:hover {
    background: rgba(201, 169, 110, 0.06);
}

.service__num {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.2);
    line-height: 1;
    margin-bottom: 32px;
    transition: color 0.4s;
}

.service__item:hover .service__num {
    color: rgba(201, 169, 110, 0.5);
}

.service__item-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service__item-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(248, 245, 240, 0.55);
}

.service__line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 24px 0;
    transition: width 0.4s var(--ease-out);
}

.service__item:hover .service__line {
    width: 64px;
}

.service .btn.sp {
    display: none;
}

/* ============================================================
   PROFILE
============================================================ */
.profile {
    padding: 140px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    background: var(--cream);
}

.profile__img-wrap {
    position: relative;
}

.profile__img {
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--cream-dark) 0%, var(--gray-light) 100%);
    overflow: hidden;
    object-fit: cover;
}

.profile__img-wrap::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--gold-light);
    z-index: -1;
}

.profile__img-label {
    position: absolute;
    bottom: -20px;
    right: -40px;
    background: var(--charcoal);
    color: var(--cream);
    padding: 20px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.profile__content {
    padding-left: 20px;
}

.profile__content .section-label {
    margin-bottom: 32px;
}

.profile__name {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.profile__name span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gray);
    font-family: var(--font-body);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.profile__divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
}

.profile__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
    margin-bottom: 40px;
}

.profile__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.profile__skill-tag {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    padding: 6px 16px;
    border: 1px solid var(--gray-light);
    color: var(--gray);
    text-transform: uppercase;
}

/* ============================================================
   NEWS
============================================================ */
.news {
    padding: 140px 80px;
    background: var(--cream-dark);
}

.news__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.news__list {
    border-top: 1px solid var(--gray-light);
}

.news__item {
    display: grid;
    grid-template-columns: 140px 120px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: background 0.3s;
    cursor: pointer;
}

.news__item:hover {
    background: rgba(201, 169, 110, 0.04);
}

.news__date {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--gray);
}

.news__tag {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 4px 12px;
    display: inline-block;
}

.news__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    transition: color 0.3s;
}

.news__item:hover .news__title {
    color: var(--gold);
}

.news__arrow {
    font-size: 16px;
    color: var(--gray-light);
    transition: color 0.3s, transform 0.3s;
}

.news__item:hover .news__arrow {
    color: var(--charcoal);
    transform: translateX(6px);
}

/* ============================================================
   CTA
============================================================ */
.cta {
    padding: 160px 80px;
    text-align: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-light);
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta__label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.cta__title em {
    font-style: italic;
    color: var(--gold);
}

.cta__sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.05em;
    margin-bottom: 56px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--charcoal);
    padding: 80px 80px 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer__logo span {
    font-style: italic;
    color: var(--gold);
}

.footer__tagline {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(248, 245, 240, 0.45);
}

.footer__nav-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-list a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(248, 245, 240, 0.55);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.footer__nav-list a:hover {
    color: var(--cream);
}

.footer__sns {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer__sns a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(248, 245, 240, 0.5);
    transition: border-color 0.3s, color 0.3s;
}

.footer__sns a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copy {
    font-size: 11.5px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(248, 245, 240, 0.25);
}

.footer__policy {
    font-size: 11.5px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(248, 245, 240, 0.25);
    transition: color 0.2s;
}

.footer__policy:hover {
    color: rgba(248, 245, 240, 0.6);
}

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
    margin-top: 80px;
    padding: 16px 80px;
    background: var(--cream);
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb__sep {
    color: var(--gray-light);
}

.breadcrumb__current {
    color: var(--charcoal);
}

/* ============================================================
   PAGE HEADER（下層共通）
============================================================ */
.page-hero {
    padding: 160px 80px 80px;
    background: var(--cream);
    border-bottom: 1px solid var(--gray-light);
}

.page-hero__label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-hero__label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--charcoal);
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /* --- HEADER --- */
    .header {
        padding: 0 24px;
        height: 64px;
    }

    .header__contact--pc {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: var(--cream);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 150;
        min-height: 100vh;
    }

    .header__nav.is-open {
        transform: translateX(0);
    }

    .header__nav a {
        font-family: var(--font-display);
        font-size: 32px;
        font-weight: 300;
        letter-spacing: 0.08em;
        text-transform: none;
        color: var(--charcoal);
    }

    .header__nav a::after {
        display: none;
    }

    .header__contact.header__contact--nav {
        display: block;
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 14px 40px;
        border: 1px solid var(--charcoal);
        color: var(--charcoal);
        margin-top: 16px;
    }

    /* --- HERO --- */
    .hero {
        min-height: 100svh;
        padding-bottom: 70px;
    }

    .hero__content {
        padding: 0 24px;
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(40px, 11vw, 60px);
        word-break: keep-all;
    }

    .hero__subtitle {
        font-size: 13.5px;
        max-width: 100%;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero__actions .btn {
        width: fit-content;
    }

    .hero__line, .hero__scroll {
        display: none;
    }

    /* --- WORKS --- */
    .works {
        padding: 80px 0 60px;
    }

    .works__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 0 24px;
        margin-bottom: 40px;
    }

    .works__grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 16px;
    }

    .works__card:first-child {
        grid-column: 1;
    }

    .works__card:first-child .works__card-img {
        aspect-ratio: 4/3;
    }

    .works__more {
        margin-top: 40px;
    }

    /* --- SERVICE --- */
    .service {
        padding: 80px 24px;
    }

    .service::before {
        display: none;
    }

    .service__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 48px;
    }

    .service__grid {
        grid-template-columns: 1fr;
        background: none;
        gap: 1px;
    }

    .service__item {
        padding: 40px 0;
    }

    .service .btn.sp {
        display: inline-flex;
        margin-top: 40px;
    }

    .service__num {
        font-size: 48px;
        margin-bottom: 20px;
    }

    /* --- PROFILE --- */
    .profile {
        display: block;
        padding: 80px 24px;
    }

    .profile__img-wrap {
        margin-bottom: 56px;
    }

    .profile__img-wrap::before {
        display: none;
    }

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

    .profile__img-label {
        right: 0;
        bottom: -16px;
        font-size: 13px;
        padding: 14px 20px;
    }

    .profile__content {
        padding-left: 0;
    }

    .profile__name {
        font-size: 48px;
    }

    .profile__skills {
        gap: 8px;
    }

    /* --- NEWS --- */
    .news {
        padding: 80px 24px;
    }

    .news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 32px;
    }

    .news__item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 12px;
        padding: 20px 0;
    }

    .news__date {
        font-size: 12px;
        flex-shrink: 0;
    }

    .news__tag {
        flex-shrink: 0;
    }

    .news__title {
        width: 100%;
        font-size: 16px;
        order: 3;
    }

    .news__arrow {
        margin-left: auto;
    }

    /* --- CTA --- */
    .cta {
        padding: 100px 24px;
    }

    .cta__title {
        font-size: clamp(32px, 9vw, 56px);
    }

    .cta::before {
        width: 360px;
        height: 360px;
    }

    /* --- FOOTER --- */
    .footer {
        padding: 60px 24px 32px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
        margin-bottom: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* --- UTILITY --- */
    .btn {
        font-size: 11px;
        padding: 14px 28px;
    }

    .breadcrumb {
        margin-top: 64px;
        padding: 14px 24px;
    }

    .page-hero {
        padding: 120px 24px 60px;
    }
}

/* ============================================================
   WORKS PAGE
============================================================ */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.filter-tab {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid var(--gray-light);
    color: var(--gray);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    background: none;
    font-family: var(--font-body);
}

.filter-tab:hover,
.filter-tab.is-active {
    border-color: var(--charcoal);
    color: var(--charcoal);
    background: var(--charcoal);
    color: var(--cream);
}

.works-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pagination__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-family: var(--font-body);
    border: 1px solid var(--gray-light);
    color: var(--gray);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    background: none;
}

.pagination__btn.is-active,
.pagination__btn:hover {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--cream);
}

.pagination__btn--arrow {
    width: auto;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.1em;
}

/* ============================================================
   SERVICE PAGE
============================================================ */
.service-detail {
    padding: 100px 80px;
    background: var(--cream);
}

.service-detail__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-detail__item:first-child {
    padding-top: 0;
}

.service-detail__item:last-child {
    border-bottom: none;
}

.service-detail__item--reverse {
    direction: rtl;
}

.service-detail__item--reverse>* {
    direction: ltr;
}

.service-detail__img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--gray-light) 100%);
}

.service-detail__label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.service-detail__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.service-detail__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
    margin-bottom: 32px;
}

.service-detail__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.service-detail__list li {
    font-size: 14px;
    font-weight: 300;
    color: var(--charcoal-2);
    padding-left: 20px;
    position: relative;
}

.service-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

/* 料金表 */
.price-section {
    padding: 100px 80px;
    background: var(--cream-dark);
}

.price-section__head {
    text-align: center;
    margin-bottom: 64px;
}

.table-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll-hint {
    display: none;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.price-table th,
.price-table td {
    padding: 20px 28px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
    font-weight: 300;
}

.price-table thead th {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--charcoal);
    border-bottom: none;
}

.price-table tbody tr:hover td {
    background: rgba(201, 169, 110, 0.04);
}

.price-table .price-amount {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
}

/* 制作の流れ */
.flow-section {
    padding: 100px 80px;
    background: var(--cream);
}

.flow-section__head {
    text-align: center;
    margin-bottom: 64px;
}

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

.flow-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--gray-light);
    z-index: 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.flow-step__num {
    width: 72px;
    height: 72px;
    border: 1px solid var(--gray-light);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.flow-step:hover .flow-step__num {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--cream);
}

.flow-step__label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    text-align: center;
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    padding: 100px 80px;
    background: var(--cream-dark);
}

.faq-section__head {
    text-align: center;
    margin-bottom: 64px;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.4;
}

.faq-question__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-question__icon::before,
.faq-question__icon::after {
    content: '';
    position: absolute;
    background: var(--charcoal);
    transition: transform 0.3s, opacity 0.3s;
}

.faq-question__icon::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-question__icon::after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.is-open .faq-question__icon::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 0 24px;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* ============================================================
   PROFILE PAGE
============================================================ */
.profile-intro {
    padding: 80px 80px 100px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: start;
    background: var(--cream);
}

.profile-intro__img {
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--cream-dark) 0%, var(--gray-light) 100%);
    position: sticky;
    top: 100px;
}

.profile-intro__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-intro__name {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.profile-intro__role {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-intro__role::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.profile-intro__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
    margin-bottom: 48px;
}

.profile-intro__divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 48px 0;
}

/* スキル */
.skills-section {
    padding: 80px 80px;
    background: var(--cream-dark);
}

.skills-section__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 40px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--gray-light);
    color: var(--gray);
    transition: border-color 0.2s, color 0.2s;
}

.skill-tag:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

/* 経歴 */
.history-section {
    padding: 80px 80px;
    background: var(--cream);
}

.history-section__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 48px;
}

.history-list {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid var(--gray-light);
    padding-left: 40px;
}

.history-item {
    position: relative;
    padding-bottom: 40px;
}

.history-item:last-child {
    padding-bottom: 0;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--cream);
    outline: 1px solid var(--gold);
}

.history-item__year {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.history-item__text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.4;
}

/* ============================================================
   NEWS PAGE
============================================================ */
.news-page {
    padding: 60px 80px 100px;
    background: var(--cream);
}

.news-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.news-card {
    cursor: pointer;
    transition: opacity 0.3s;
}

.news-card:hover {
    opacity: 0.8;
}

.news-card__img {
    aspect-ratio: 16/9;
    background: var(--cream-dark);
    overflow: hidden;
    margin-bottom: 16px;
}

.news-card__img img {
    height: 100%;
    object-fit: cover;
}

.news-card__img-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--cream-dark) 100%);
    transition: transform 0.6s var(--ease-out);
}

.news-card:hover .news-card__img-inner {
    transform: scale(1.04);
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.news-card__date {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
}

.news-card__tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 3px 10px;
}

.news-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--charcoal);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section {
    padding: 80px 80px 100px;
    background: var(--cream);
}

.contact-section__lead {
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
}

.wpcf7-form {
    max-width: 760px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.form-label span {
    color: var(--gold);
    margin-left: 4px;
    font-size: 11px;
}

.form-input,
.form-select,
.form-textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: var(--gold);
}

.form-textarea,
.wpcf7 textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.8;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.form-note {
    font-size: 12px;
    font-weight: 300;
    color: var(--gray);
    text-align: center;
    margin-top: 20px;
    line-height: 1.8;
}

/* チェックボックス */
.form-group--checkbox {
    margin-bottom: 40px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: fit-content;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.form-checkbox__box::after {
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    border-left: 1.5px solid var(--white);
    border-bottom: 1.5px solid var(--white);
    transform: rotate(-45deg) translateY(-2px);
    opacity: 0;
    transition: opacity 0.2s;
}

.form-checkbox input:checked~.form-checkbox__box {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.form-checkbox input:checked~.form-checkbox__box::after {
    opacity: 1;
}

.form-check {
    font-size: 14px;
    font-weight: 300;
    color: var(--charcoal-2);
    line-height: 1.6;
}

.form-check a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.form-check a:hover {
    opacity: 0.7;
}

.wpcf7-spinner {
    display: none !important;
}

/* ============================================================
   THANKS PAGE
============================================================ */
.thanks-section {
    padding: 120px 80px 160px;
    text-align: center;
    background: var(--cream);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 28px;
    color: var(--gold);
}

.thanks-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.thanks-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 32px auto;
}

.thanks-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
    max-width: 560px;
    margin: 0 auto 16px;
}

.thanks-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 56px;
}

/* ============================================================
   RESPONSIVE — 下層ページ 768px
============================================================ */
@media (max-width: 768px) {

    /* Works */
    .works-page__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter-tabs {
        gap: 6px;
    }

    /* Service */
    .service-detail {
        padding: 60px 24px;
    }

    .service-detail__item {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .service-detail__item--reverse {
        direction: ltr;
    }

    .price-section {
        padding: 60px 24px;
    }

    .table-scroll-hint {
        display: block;
        text-align: center;
        font-size: 11px;
        letter-spacing: 0.1em;
        color: var(--gray);
        margin-bottom: 10px;
    }

    .price-table {
        min-width: 560px;
    }

    .price-table th, .price-table td {
        padding: 14px 16px;
        font-size: 13px;
    }

    .flow-section {
        padding: 60px 24px;
    }

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 0;
        border-left: 1px solid var(--gray-light);
        padding-left: 24px;
        margin-left: 20px;
    }

    .flow-steps::before {
        display: none;
    }

    .flow-step {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 0 0 32px;
    }

    .flow-step__num {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .flow-step__label {
        text-align: left;
    }

    .faq-section {
        padding: 60px 24px;
    }

    /* Profile */
    .profile-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 80px;
    }

    .profile-intro__img {
        position: static;
        aspect-ratio: 3/2;
    }

    .skills-section {
        padding: 60px 24px;
    }

    .history-section {
        padding: 60px 24px;
    }

    /* News */
    .news-page {
        padding: 40px 24px 80px;
    }

    .news-page__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 24px 80px;
    }

    .contact-section__lead {
        margin-bottom: 48px;
    }

    /* Thanks */
    .thanks-section {
        padding: 80px 24px 120px;
    }
}

/* ============================================================
   NEWS SINGLE PAGE
============================================================ */
.news-single {
    padding: 60px 80px 100px;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

/* ---- Article ---- */
.article__head {
    margin-bottom: 40px;
}

.article__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.article__date {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--gray);
}

.article__tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 4px 12px;
}

.article__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.article__divider {
    width: 100%;
    height: 1px;
    background: var(--gray-light);
}

/* アイキャッチ */
.article__eyecatch {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--gray-light) 100%);
    margin-bottom: 48px;
    overflow: hidden;
}

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

/* 本文 */
.article__body {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
}

.article__body p {
    margin-bottom: 28px;
}

.article__body p:last-child {
    margin-bottom: 0;
}

.article__body h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 48px 0 16px;
    padding: 14px 20px;
    background: var(--cream-dark);
    border-left: 4px solid var(--gold);
    line-height: 1.4;
}

.article__body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-light);
}

.article__body ul,
.article__body ol {
    margin: 0 0 28px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article__body ul li,
.article__body ol li {
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.article__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.article__body ol {
    counter-reset: ol-counter;
}

.article__body ol li::before {
    content: counter(ol-counter) '.';
    counter-increment: ol-counter;
    position: absolute;
    left: 0;
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold);
}

/* まとめボックス */
.article__summary {
    margin: 48px 0;
    padding: 32px 36px;
    background: var(--cream-dark);
    border-radius: 2px;
}

.article__summary-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.article__summary-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
}

/* シェアボタン */
.article__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 48px 0 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.article__share-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.article__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border: 1px solid var(--gray-light);
    color: var(--gray);
    transition: border-color 0.2s, color 0.2s;
}

.article__share-btn:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

/* 前後ナビ */
.article__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.article__nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--cream-dark);
    transition: background 0.3s;
}

.article__nav-link:hover {
    background: var(--gray-light);
}

.article__nav-link--next {
    text-align: right;
}

.article__nav-direction {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.article__nav-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.5;
}

/* ---- Sidebar ---- */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: var(--white);
}

.sidebar-widget__title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 16px 20px;
    border-bottom: 1px solid var(--cream-dark);
    background: var(--cream-dark);
}

/* プロフィールウィジェット */
.sidebar-profile {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.sidebar-profile__img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--cream-dark) 0%, var(--gray-light) 100%);
    background-size: cover;
    background-image: url('../images/sidebar.png');
    flex-shrink: 0;
}

.sidebar-profile__name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
}

.sidebar-profile__text {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray);
}

.sidebar-profile .btn {
    font-size: 10px;
    padding: 10px 24px;
    margin-top: 4px;
}

/* カテゴリーウィジェット */
.sidebar-cat__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 13px;
    font-weight: 300;
    color: var(--charcoal-2);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.sidebar-cat__item:last-child {
    border-bottom: none;
}

.sidebar-cat__item:hover {
    background: var(--cream-dark);
    color: var(--charcoal);
}

.sidebar-cat__count {
    font-size: 11px;
    color: var(--gray);
}

/* 新着記事ウィジェット */
.sidebar-recent__item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--cream-dark);
    align-items: center;
    transition: background 0.2s;
    cursor: pointer;
}

.sidebar-recent__item:last-child {
    border-bottom: none;
}

.sidebar-recent__item:hover {
    background: var(--cream-dark);
}

.sidebar-recent__img {
    width: 56px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--cream-dark) 100%);
}

.sidebar-recent__title {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--charcoal);
}

/* ============================================================
   RESPONSIVE — news single 768px
============================================================ */
@media (max-width: 768px) {
    .news-single {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 24px 80px;
    }

    .sidebar {
        position: static;
    }

    .article__body h2 {
        font-size: 18px;
        padding: 12px 16px;
    }

    .article__nav {
        grid-template-columns: 1fr;
    }

    .article__summary {
        padding: 24px;
    }

    .article__share {
        flex-wrap: wrap;
    }
}

/* ============================================================
   TOP FAQ セクション（AIO対応）
============================================================ */
.top-faq {
    padding: 100px 80px;
    background: var(--cream-dark);
}

.top-faq__inner {
    max-width: 860px;
    margin: 0 auto;
}

.top-faq__head {
    margin-bottom: 56px;
}

.top-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--gray-light);
}

.top-faq__item {
    border-bottom: 1px solid var(--gray-light);
    padding: 32px 0;
}

.top-faq__q {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.top-faq__q::before {
    content: 'Q';
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    color: var(--gold);
    width: 28px;
    line-height: 1.5;
}

.top-faq__a {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
    padding-left: 44px;
}

.top-faq__a strong {
    font-weight: 500;
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .top-faq {
        padding: 80px 24px;
    }

    .top-faq__q {
        font-size: 17px;
    }

    .top-faq__a {
        padding-left: 0;
        margin-top: 12px;
    }
}

.policy-section {
    padding: 80px 80px 120px;
    background: var(--cream);
}

.policy-body {
    max-width: 800px;
    margin: 0 auto;
}

.policy-lead {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-light);
}

.policy-item {
    margin-bottom: 48px;
}

.policy-item__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}

.policy-item__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--charcoal-2);
}

.policy-item__list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-item__list li {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--charcoal-2);
    padding-left: 20px;
    position: relative;
}

.policy-item__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.policy-contact {
    margin-top: 64px;
    padding: 40px;
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
}

.policy-contact__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.policy-contact__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-contact__list li {
    font-size: 14px;
    font-weight: 300;
    color: var(--charcoal-2);
}

.policy-contact__list a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 24px 80px;
    }

    .policy-contact {
        padding: 28px 24px;
    }
}