/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-size: 16px;
    --background: #ffffff;
    --foreground: #000000;
}

html {
    font-size: var(--font-size);
}

/* main.css */
body {
    font-family: Roboto, Noto Sans JP, Hiragino Sans, "游ゴシチE��佁E, YuGothic, " 游ゴシチE��", Yu Gothic, sans-serif;
 background-color: var(--background);
    color: var(--foreground);
    line-height: 1.8;
}

.site-body {
    min-height: 100vh;
    background: #ffffff;
}

.hidden {
    display: none !important;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #f3f4f6;
}

.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .site-header__inner {
        padding: 0 32px;
    }
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
}

.site-header__logo-image {
    height: 48px;
    width: auto;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
}

.site-nav__link {
    font-size: 14px;
    color: #4b5563;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.site-nav__link:hover {
    color: var(--color-primary);
}

.site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 0;
    background: transparent;
    color: #111827;
}

@media (min-width: 768px) {
    .site-header__toggle {
        display: none;
    }
}

.site-header__icon {
    width: 24px;
    height: 24px;
}

.site-mobile {
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
    height: 100vh;
}

@media (min-width: 768px) {
    .site-mobile {
        display: none;
    }
}

.site-mobile__nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px 40px;
    text-align: center;
}

.site-mobile__link {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #111827;
    transition: color 0.3s ease;
}

.site-mobile__link:hover {
    color: var(--color-primary);
}

/* Typography */
h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.35;
}

h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 600;
    line-height: 1.35;
}

h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    font-weight: 600;
    line-height: 1.45;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
}

label,
button {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

input {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Utilities */
.object-50\%-50\% {
    object-position: 50% 50%;
}

.fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

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

/* Home Page Layout */
.page-home {
    overflow: hidden;
}

.page-home .section__title {
    font-size: 64px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .page-home .section__title {
        font-size: 40px;
    }
}

.page-home .section--about .section__title {
    letter-spacing: 0.12em;
}

.page-home .section__eyebrow,
.page-home .section__lead {
    font-size: 16px;
    line-height: 1.6;
}

.page-home .section__text {
    font-size: 16px;
    line-height: 2;
}

:root {
    --color-primary: #a10035;
    --color-dark: #111111;
    --color-text: #364153;
    --color-muted: #4a5565;
    --color-soft: #fdf2f5;
    --color-section: #fcfafa;
    --container: 1200px;
    --gutter: 24px;
}

@media (min-width: 1024px) {
    :root {
        --gutter: 48px;
    }
}

.section {
    padding: 96px 0;
    background: #ffffff;
}

@media (min-width: 1024px) {
    .section {
        padding: 160px 0;
    }
}

.section--services {
    background: var(--color-section);
}

.section--values {
    background: #ffffff;
}

.section--voice {
    background: #f9fafb;
}

.section__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section__grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.about__content {
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 80px;
    }
}

.section__heading {
    margin-bottom: 32px;
    position: relative;
}

.section__heading--center {
    text-align: center;
    margin-bottom: 48px;
}

.section__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: clamp(0.65rem, 1.4vw, 0.95rem);
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 1.2em;
}

/* .section__eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.8em;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%);
    opacity: 0.7;
} */

.section__ghost {
    position: absolute;
    top: -36px;
    left: -8px;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: clamp(4rem, 10vw, 10rem);
    color: #f7f7f7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: -1;
    user-select: none;
    opacity: 0.7;
    pointer-events: none;
}


@media (min-width: 1024px) {
    .section__ghost {
        font-size: clamp(6rem, 12vw, 12rem);
        top: -48px;
    }
}

.section__title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0.32em;
    color: #000000;
    line-height: 1.25;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .section__title {
        font-size: clamp(2rem, 3vw, 2.6rem);
    }
}

.section__rule {
    width: 64px;
    height: 1px;
    background: var(--color-primary);
    margin-top: 24px;
}

.section__lead {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 16px;
    line-height: 2.3;
    color: var(--color-muted);
}

.section__lead--narrow {
    max-width: 560px;
}

.section__text {
    font-size: clamp(0.85rem, 1.2vw, 1.05rem);
    line-height: 2.4;
    color: var(--color-text);
    letter-spacing: 0.06em;
}

.section__accent {
    width: 48px;
    height: 2px;
    background: var(--color-primary);
    margin: 32px auto 0;
}

.section__cta {
    margin-top: 64px;
    text-align: center;
}

.values__break {
    display: inline;
}

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

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

.hero__background {
    position: absolute;
    inset: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 80px;
    }

    .hero__background {
        top: 80px;
    }

    .hero__image {
        object-position: left 0%;
    }
}

.hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
}

.hero__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__eyebrow {
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: clamp(0.65rem, 1.3vw, 0.95rem);
    letter-spacing: 0.7em;
    text-transform: uppercase;
    color: var(--color-primary);
    opacity: 0.85;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .hero__eyebrow {
        font-size: 16px;
    }
}

.hero__rule {
    width: 48px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.4;
    margin-bottom: 32px;
}

.hero__title {
    margin-bottom: 40px;
    color: var(--color-primary);
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.theme-hero-neon .hero__title-line {
    color: #b0003a;
    text-shadow: 0 0 10px rgba(161, 0, 53, 0.35), 0 0 24px rgba(161, 0, 53, 0.22);
}

.theme-hero-neon .hero__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(161, 0, 53, 0.8), transparent);
    transform: translateX(-50%);
    opacity: 0.8;
}

.theme-hero-tech .hero__title-line {
    color: #7e002c;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    letter-spacing: clamp(0.04em, 0.28vw, 0.14em);
}

.theme-hero-tech .hero__title-left {
    font-weight: 400;
}

.theme-hero-tech .hero__title-right {
    font-weight: 700;
}

.theme-hero-frost .hero__title-line {
    color: rgba(255, 255, 255, 0.45);
    -webkit-text-stroke: 1px rgba(161, 0, 53, 0.5);
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 2px 0 rgba(255, 255, 255, 0.6);
    letter-spacing: clamp(0.1em, 0.4vw, 0.22em);
}

.theme-hero-frost .hero__title-left {
    font-weight: 400;
}

.theme-hero-frost .hero__title-right {
    font-weight: 600;
}

.theme-hero-soft .hero__content {
    align-items: flex-start;
    text-align: left;
    padding-left: clamp(32px, 8vw, 140px);
    padding-right: clamp(24px, 6vw, 80px);
    padding-top: clamp(72px, 10vh, 140px);
}

.theme-hero-soft .hero {
    overflow: visible;
}

.theme-hero-soft .hero__title {
    justify-content: flex-start;
}

.theme-hero-soft .hero__title-line {
    left: 0;
    transform: none;
    align-items: flex-start;
    text-align: left;
    max-width: 640px;
    color: #2d333a;
    text-shadow: none;
    -webkit-text-stroke: 0;
    letter-spacing: 0.02em;
}

.theme-hero-soft .hero__title-left,
.theme-hero-soft .hero__title-right {
    transform: none;
}

.theme-hero-soft .hero__title-left {
    font-weight: 600;
}

.theme-hero-soft .hero__title-right {
    font-weight: 700;
}

.page-home.theme-hero-soft .hero__title-left,
.page-home.theme-hero-soft .hero__title-right {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 2px 12px rgba(255, 255, 255, 0.6);
}

.theme-hero-soft .hero__eyebrow {
    color: rgba(45, 51, 58, 0.18);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 24px;
    margin-top: clamp(20px, 4vh, 56px);
}

@media (max-width: 1280px) {
    .theme-hero-soft .hero__eyebrow {
        font-size: clamp(1.8rem, 4.8vw, 3.6rem);
    }
}

@media (max-width: 1024px) {
    .theme-hero-soft .hero__content {
        align-items: center;
        text-align: center;
        padding-left: 24px;
        padding-right: 24px;
    }

    .theme-hero-soft .hero__title {
        justify-content: center;
    }

    .theme-hero-soft .hero__title-line {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
}

.hero__title-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: clamp(1.7rem, 4.2vw, 3.6rem);
    letter-spacing: clamp(0.05em, 0.35vw, 0.18em);
    line-height: 1.2;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    max-width: min(100%, 900px);
    margin: 0;
    width: 100%;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 1024px) {
    .hero__title-line {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        font-size: clamp(3.2rem, 7vw, 5.4rem);
        max-width: 680px;
        width: 100%;
    }
}

.hero__title-left {
    transform: translateY(-16px);
    white-space: nowrap;
    text-align: center;
}

.hero__title-right {
    text-align: center;
    transform: translateY(8px);
    white-space: nowrap;
    padding-left: 0;
}

@media (min-width: 768px) {
    .hero__title-left {
        transform: translate(-1.2ch, -16px);
    }

    .hero__title-right {
        transform: translate(1.2ch, 8px);
    }
}

@media (max-width: 1280px) {
    .hero__title-line {
        font-size: clamp(1.7rem, 5.4vw, 3.2rem);
        letter-spacing: clamp(0.05em, 0.3vw, 0.16em);
        max-width: min(100%, 720px);
    }

    .hero__title-right {
        padding-left: 0;
    }
}

@media (min-width: 1281px) {
    .hero__title-line {
        font-size: clamp(1.7rem, 4vw, 3.2rem);
        letter-spacing: clamp(0.04em, 0.25vw, 0.14em);
        max-width: min(100%, 760px);
    }
}

@media (max-width: 1024px) {
    .hero__title-line {
        letter-spacing: clamp(0.08em, 0.45vw, 0.18em);
        max-width: 100%;
        left: 0;
        transform: none;
    }

    .hero__title-left,
    .hero__title-right {
        text-align: center;
    }

    .hero__title-right {
        padding-left: 0;
    }
}

.hero__lead {
    color: var(--color-primary);
    font-size: clamp(0.8rem, 1.4vw, 1.1rem);
    line-height: 2.4;
    letter-spacing: 0.18em;
    margin-bottom: 48px;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .hero__lead {
        font-size: 17px;
    }
}

.hero__actions {
    display: flex;
    justify-content: center;
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    z-index: 10;
    pointer-events: none;
}

.hero__scroll--inline {
    position: static;
    transform: none;
    margin-top: auto;
    margin-bottom: 24px;
}

.theme-hero-soft .hero__scroll--inline {
    position: absolute;
    left: clamp(32px, 8vw, 140px);
    bottom: -14px;
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 0;
}

.hero__scroll-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.6);
}

.hero__scroll-line {
    width: 1px;
    height: 56px;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
    transform-origin: top center;
    animation: scroll-line-grow 1.6s ease-in-out infinite;
}

@keyframes scroll-line-grow {
    0% {
        transform: scaleY(0.25);
        opacity: 0.4;
    }

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

    100% {
        transform: scaleY(0.25);
        opacity: 0.4;
    }
}

/* Home hero refresh (balanced with existing style) */
.page-home.theme-hero-soft .hero {
    min-height: 100vh;
    height: auto;
    padding: clamp(88px, 12vh, 130px) 0 clamp(72px, 10vh, 120px);
    background:
        radial-gradient(110% 80% at 50% 0, rgba(161, 0, 53, 0.1), transparent 60%),
        linear-gradient(180deg, #fdfbfd 0%, #f9f6f8 44%, #fdfbfd 100%);
}

.page-home.theme-hero-soft .hero__background {
    inset: clamp(104px, 14vh, 160px) clamp(20px, 5vw, 72px) clamp(80px, 11vh, 128px);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.14);
    overflow: hidden;
}

.page-home.theme-hero-soft .hero__overlay {
    background:
        linear-gradient(180deg, rgba(26, 20, 26, 0.14) 0%, rgba(26, 20, 26, 0.14) 100%),
        linear-gradient(90deg, rgba(24, 16, 22, 0.44) 0%, rgba(24, 16, 22, 0.34) 46%, rgba(24, 16, 22, 0.08) 62%, rgba(24, 16, 22, 0) 74%);
}

.page-home.theme-hero-soft .hero__image {
    filter: grayscale(4%) contrast(1.01) brightness(0.92) saturate(0.9);
    object-position: 72% 12%;
}

.page-home.theme-hero-soft .hero__content {
    inset: clamp(104px, 14vh, 160px) clamp(20px, 5vw, 72px) clamp(80px, 11vh, 128px);
    padding: clamp(24px, 4.6vw, 56px);
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.page-home.theme-hero-soft .hero__intro {
    width: min(100%, 640px);
    align-items: flex-start;
}

.page-home.theme-hero-soft .hero__eyebrow {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.6vw, 1.9rem);
    font-weight: 500;
    letter-spacing: clamp(0.18em, 0.45vw, 0.32em);
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.26);
}

.page-home.theme-hero-soft .hero__rule {
    width: 56px;
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}

.page-home.theme-hero-soft .hero__title {
    margin-bottom: 20px;
    color: #ffffff;
}

.page-home.theme-hero-soft .hero__title::before {
    content: "";
    position: absolute;
    inset: -16px -20px;
    background: rgba(34, 20, 28, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: -1;
}

.page-home.theme-hero-soft .hero__title::after {
    content: "ANTHURIUM LLC";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(2.2rem, 6vw, 6.8rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.08);
    line-height: 0.9;
    pointer-events: none;
}

.page-home.theme-hero-soft .hero__title-line {
    max-width: 900px;
    color: #ffffff;
    text-shadow: 0 10px 20px rgba(5, 12, 30, 0.34);
    letter-spacing: clamp(0.03em, 0.2vw, 0.07em);
    gap: 2px;
}

.page-home.theme-hero-soft .hero__title-left,
.page-home.theme-hero-soft .hero__title-right {
    font-weight: 700;
    transform: none;
    text-shadow: none;
}

.page-home.theme-hero-soft .hero__lead {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 2;
    letter-spacing: 0.12em;
    margin-bottom: 34px;
    text-shadow: 0 4px 10px rgba(5, 12, 30, 0.24);
}

.page-home.theme-hero-soft .hero__actions {
    justify-content: flex-start;
}

.page-home.theme-hero-soft .hero .button--primary {
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    border: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.page-home.theme-hero-soft .hero .button--primary:hover {
    transform: scale(1.04);
}

.page-home.theme-hero-soft .hero__scroll--inline {
    left: auto;
    right: clamp(20px, 4vw, 52px);
    bottom: 14px;
}

.page-home.theme-hero-soft .hero__scroll-label {
    color: rgba(17, 24, 39, 0.8);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.page-home.theme-hero-soft .hero__scroll-line {
    background: rgba(17, 24, 39, 0.65);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .page-home.theme-hero-soft .hero {
        padding: 92px 0 72px;
    }

    .page-home.theme-hero-soft .hero__background,
    .page-home.theme-hero-soft .hero__content {
        inset: 92px 16px 70px;
    }

    .page-home.theme-hero-soft .hero__content {
        padding: 22px 16px 24px;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }

    .page-home.theme-hero-soft .hero__intro,
    .page-home.theme-hero-soft .hero__title,
    .page-home.theme-hero-soft .hero__title-line {
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

    .page-home.theme-hero-soft .hero__title::before {
        inset: -10px -10px;
    }

    .page-home.theme-hero-soft .hero__title::after {
        font-size: clamp(1.8rem, 11vw, 4.2rem);
    }

    .page-home.theme-hero-soft .hero__title-line {
        font-size: clamp(2rem, 7.8vw, 2.8rem);
        max-width: 100%;
    }

    .page-home.theme-hero-soft .hero__eyebrow {
        font-size: clamp(0.82rem, 3.4vw, 1rem);
        letter-spacing: 0.22em;
    }

    .page-home.theme-hero-soft .hero__lead {
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 26px;
    }

    .page-home.theme-hero-soft .hero__overlay {
        background:
            linear-gradient(180deg, rgba(26, 20, 26, 0.18) 0%, rgba(26, 20, 26, 0.18) 100%),
            linear-gradient(90deg, rgba(24, 16, 22, 0.42) 0%, rgba(24, 16, 22, 0.3) 54%, rgba(24, 16, 22, 0.1) 76%, rgba(24, 16, 22, 0.02) 100%);
    }

    .page-home.theme-hero-soft .hero__image {
        object-position: 66% 14%;
    }

    .page-home.theme-hero-soft .hero__intro {
        width: min(100%, 560px);
    }

    .page-home.theme-hero-soft .hero__scroll--inline {
        left: auto;
        right: 14px;
        bottom: 12px;
    }

    .page-home.theme-hero-soft .hero__scroll-line {
        height: 44px;
    }
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    padding: 16px 48px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.button__icon svg {
    width: 20px;
    height: 20px;
}

.button--primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.button--primary:hover {
    transform: scale(1.05);
}

.button--outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: #ffffff;
}

.button--outline:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.button:hover .button__icon {
    transform: translateX(4px);
}

.button--light:hover {
    background: #ffffff;
    color: var(--color-primary);
}

/* About */
.about__image-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.about__image {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.about__image img {
    position: absolute;
    inset: -5% 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Services */
.service-cards {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card__title {
    font-size: clamp(1.2rem, 2.1vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-card__text {
    font-size: 16px;
    line-height: 2;
    color: var(--color-muted);
    margin-bottom: 0;
}

.service-card__link {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 32px;
}

/* Values */
.value-cards {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .value-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

.value-card__icon {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    background: var(--color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: background 0.5s ease;
}

.value-card__icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    transition: color 0.5s ease;
}

.value-card:hover .value-card__icon {
    background: var(--color-primary);
}

.value-card:hover .value-card__icon svg {
    color: #ffffff;
}

.value-card__title {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.value-card__text {
    color: var(--color-muted);
    line-height: 1.8;
}

/* Voice */
.voice-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
}

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

.voice-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.voice-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.voice-card__media {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.voice-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

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

.voice-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.voice-card__caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #ffffff;
}

.voice-card__badge {
    align-self: flex-start;
    background: #ffffff;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 6px 12px;
    border-radius: 999px;
}

.voice-card__meta {
    color: #ffffff;
}

.voice-card__meta h3 {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 4px;
}

.voice-card__meta p {
    font-size: 12px;
    color: #d1d5db;
    letter-spacing: 0.1em;
}

.voice-card__body {
    padding: 32px;
}

.voice-card__body p {
    font-size: clamp(0.8rem, 1.1vw, 0.98rem);
    line-height: 2;
    color: var(--color-muted);
}

/* CTA Band */
.cta-band {
    background: var(--color-dark);
    padding: 112px 0;
    position: relative;
    overflow: hidden;
}

.cta-band__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-band__title {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0.28em;
    margin-bottom: 32px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .cta-band__title {
        font-size: 32px;
    }
}

.cta-band__text {
    color: #9ca3af;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    line-height: 2.1;
    margin-bottom: 48px;
}

/* Company Page */
.page-company {
    background: #ffffff;
}

.company-hero {
    position: relative;
    padding: 112px 0 80px;
    background: #000000;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .company-hero {
        padding: 160px 0 112px;
    }
}

.company-hero__overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: linear-gradient(to bottom, rgba(161, 0, 53, 0.2), transparent);
}

.company-hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.company-hero__content {
    max-width: 680px;
}

.company-hero__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.company-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .company-hero__title {
        font-size: 48px;
    }
}

.company-hero__rule {
    width: 64px;
    height: 1px;
    background: var(--color-primary);
    margin-bottom: 24px;
}

.company-hero__lead {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
}

@media (min-width: 1024px) {
    .company-hero__lead {
        font-size: 18px;
    }
}

.company-section {
    padding: 96px 0;
}

@media (min-width: 1024px) {
    .company-section {
        padding: 160px 0;
    }
}

.company-section--message,
.company-section--access {
    background: var(--color-section);
}

.company-section__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.company-section__container--narrow {
    max-width: 900px;
}

.company-section__grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .company-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 80px;
    }
}

.company-section__heading {
    margin-bottom: 32px;
}

.company-section__heading--center {
    text-align: center;
    margin-bottom: 48px;
}

.company-section__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.company-section__title {
    font-size: clamp(2.3rem, 4.2vw, 3.9rem);
    font-weight: 700;
    letter-spacing: 0.15em;
}

@media (min-width: 1024px) {
    .company-section__title {
        font-size: clamp(3.1rem, 3.8vw, 4.5rem);
    }
}

.company-section__rule {
    width: 64px;
    height: 1px;
    background: var(--color-primary);
    margin-top: 20px;
}

.company-philosophy__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.company-philosophy__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-philosophy__headline {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
}

@media (min-width: 1024px) {
    .company-philosophy__headline {
        font-size: 20px;
    }
}

.company-philosophy__text {
    font-size: 16px;
    line-height: 2.2;
    color: var(--color-text);
    margin-top: 24px;
}

.company-message {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
    .company-message {
        padding: 80px;
    }
}

.company-message__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--color-primary);
}

.company-message__text {
    font-size: 16px;
    line-height: 2.4;
    color: var(--color-text);
    margin-bottom: 48px;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .company-message__text {
        font-size: 18px;
    }
}

.company-message__signature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 1px solid #e5e7eb;
    padding-top: 40px;
}

.company-message__label {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.company-message__name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
    .company-message__name {
        font-size: 24px;
    }
}

.company-message__name span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 8px;
}

.company-overview {
    border-top: 1px solid #f3f4f6;
}

.company-overview__row {
    display: grid;
    gap: 12px;
    padding: 32px 0;
    border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 1024px) {
    .company-overview__row {
        grid-template-columns: 250px 1fr;
        align-items: baseline;
        padding: 40px 0;
    }
}

.company-overview__label {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.2em;
}

@media (min-width: 1024px) {
    .company-overview__label {
        font-size: 16px;
    }
}

.company-overview__value {
    font-size: 15px;
    color: var(--color-text);
    line-height: 2;
}

@media (min-width: 1024px) {
    .company-overview__value {
        font-size: 16px;
    }
}

.company-access {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .company-access {
        grid-template-columns: 1fr 400px;
        gap: 80px;
        align-items: start;
    }
}

.company-access__map {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.company-access__map:hover {
    filter: grayscale(0%);
}

@media (min-width: 1024px) {
    .company-access__map {
        height: 600px;
    }
}

.company-access__frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.company-access__details {
    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: center;
}

.company-access__item {
    display: flex;
    gap: 24px;
}

.company-access__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.company-access__icon svg {
    width: 24px;
    height: 24px;
}

.company-access__item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.company-access__item p,
.company-access__item ul {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
}

.company-access__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.company-access__muted {
    font-size: 13px;
    opacity: 0.7;
}

.company-access__email {
    font-weight: 600;
}

/* Business Page */
.page-business {
    background: #ffffff;
}

.business-hero {
    position: relative;
    padding: 112px 0 80px;
    background: #000000;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .business-hero {
        padding: 160px 0 112px;
    }
}

.business-hero__overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: linear-gradient(to bottom, rgba(161, 0, 53, 0.2), transparent);
}

.business-hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.business-hero__content {
    max-width: 720px;
}

.business-hero__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.business-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-family: "Playfair Display", "Noto Serif JP", serif;
}

@media (min-width: 1024px) {
    .business-hero__title {
        font-size: 48px;
    }
}

.business-hero__rule {
    width: 64px;
    height: 1px;
    background: var(--color-primary);
    margin-bottom: 24px;
}

.business-hero__lead {
    color: #d1d5db;
    font-size: 16px;
    line-height: 2;
}

@media (min-width: 1024px) {
    .business-hero__lead {
        font-size: 18px;
    }
}

.business-section {
    padding: 96px 0;
}

@media (min-width: 1024px) {
    .business-section {
        padding: 160px 0;
    }
}

.business-section--secondary,
.business-section--flow {
    background: var(--color-section);
}

.business-section__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.business-section__container--narrow {
    max-width: 900px;
}

.business-section__grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .business-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 96px;
    }
}

@media (min-width: 1024px) {
    .business-section__grid--reverse {
        grid-template-areas: "media content";
    }
}

.business-section__grid--reverse .business-media {
    order: 1;
}

.business-section__grid--reverse .business-card {
    order: 2;
}

@media (min-width: 1024px) {
    .business-section__grid--reverse .business-media {
        order: 1;
    }

    .business-section__grid--reverse .business-card {
        order: 2;
    }
}

.business-section__heading {
    margin-bottom: 48px;
}

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

.business-section__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.business-section__title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.business-section--flow .business-section__title {
    font-size: clamp(2.3rem, 4.2vw, 3.9rem);
}

@media (min-width: 1024px) {
    .business-section__title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .business-section--flow .business-section__title {
        font-size: clamp(3.1rem, 3.8vw, 4.5rem);
    }
}

.business-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--color-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.business-card__eyebrow {
    display: block;
    color: var(--color-primary);
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.business-card__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .business-card__title {
        font-size: 30px;
    }
}

.business-card__break {
    display: none;
}

@media (min-width: 1024px) {
    .business-card__break {
        display: inline;
    }
}

.business-card__subtitle {
    font-size: 18px;
    opacity: 0.6;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .business-card__subtitle {
        font-size: 20px;
    }
}

.business-card__text {
    font-size: 16px;
    line-height: 2.2;
    color: var(--color-text);
    margin-bottom: 40px;
}

.business-card__list {
    background: #f9fafb;
    padding: 32px;
    border-radius: 20px;
}

.business-card__list--light {
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.business-card__list h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-card__list h3 span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-primary);
    display: inline-block;
}

.business-card__list ul {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .business-card__list ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.business-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text);
}

.business-card__list li span {
    color: var(--color-primary);
    font-weight: 700;
}

.business-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
}

@media (min-width: 1024px) {
    .business-media {
        aspect-ratio: 4 / 3;
    }
}

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

.business-flow {
    display: grid;
    gap: 24px;
}

.business-flow__card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.business-flow__card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .business-flow__card {
        flex-direction: row;
        align-items: center;
    }
}

.business-flow__number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 700;
}

.business-flow__content {
    flex: 1;
    text-align: center;
}

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

.business-flow__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.business-flow__content p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 15px;
}

@media (min-width: 1024px) {
    .business-flow__content h3 {
        font-size: 20px;
    }

    .business-flow__content p {
        font-size: 16px;
    }
}

/* Info Page */
.page-info {
    background: #ffffff;
}

.info-hero {
    position: relative;
    padding: 112px 0 144px;
    background: #1a1a1a;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .info-hero {
        padding: 144px 0 160px;
    }
}

.info-hero__shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: rgba(161, 0, 53, 0.1);
    transform: skewX(-15deg) translateX(50%);
}

.info-hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.info-hero__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.info-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .info-hero__title {
        font-size: 42px;
    }
}

.info-hero__lead {
    max-width: 640px;
    color: #d1d5db;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.04em;
}

@media (min-width: 1024px) {
    .info-hero__lead {
        font-size: 16px;
    }
}

.info-hero__break {
    display: none;
}

@media (min-width: 1024px) {
    .info-hero__break {
        display: inline;
    }
}

.info-section {
    background: #fcfcfc;
    padding: 80px 0 128px;
}

@media (min-width: 1024px) {
    .info-section {
        padding: 128px 0 160px;
    }
}

.info-section__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.info-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 64px 32px;
    }
}

.info-card {
    cursor: pointer;
}

.info-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 24px;
}

.info-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.info-card:hover .info-card__media img {
    transform: scale(1.05);
}

.info-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(6px);
}

.info-card__date {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
    font-family: "Playfair Display", "Noto Serif JP", serif;
}

.info-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .info-card__title {
        font-size: 20px;
    }
}

.info-card:hover .info-card__title {
    color: var(--color-primary);
}

.info-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.info-card__desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.info-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid #e5e7eb;
    padding-top: 48px;
    flex-wrap: wrap;
}

.info-pagination__arrow,
.info-pagination__link,
.info-pagination__current {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.info-pagination__prev,
.info-pagination__next {
    padding: 0 20px;
    min-width: 72px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-pagination__prev:hover,
.info-pagination__next:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.info-pagination__arrow,
.info-pagination__link {
    border: 1px solid #e5e7eb;
    color: #6b7280;
}

.info-pagination__arrow:hover,
.info-pagination__link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.info-pagination__current {
    background: var(--color-primary);
    color: #ffffff;
    border: 1px solid var(--color-primary);
}

.info-article {
    background: #ffffff;
    padding: 72px 0 128px;
}

@media (min-width: 1024px) {
    .info-article {
        padding: 96px 0 160px;
    }
}

.info-article__container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.info-article__card {
    display: grid;
    gap: 32px;
}

.info-article__media {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #f3f4f6;
}

.info-article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-article__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(6px);
}

.info-article__date {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
    font-family: "Playfair Display", "Noto Serif JP", serif;
}

.info-article__title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .info-article__title {
        font-size: 28px;
    }
}

.info-article__desc {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.info-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.info-article__body {
    color: #374151;
    font-size: 15px;
    line-height: 2;
    margin-top: 28px;
}

.info-article__body p {
    margin-bottom: 16px;
}

.info-article__body h2,
.info-article__body h3 {
    margin: 24px 0 12px;
    font-weight: 700;
    color: #111827;
    line-height: 1.6;
}

/* Recruit Page */
.page-recruit {
    background: #ffffff;
}

.recruit-hero {
    position: relative;
    padding: 112px 0 80px;
    background: #000000;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .recruit-hero {
        padding: 160px 0 112px;
    }
}

.recruit-hero__overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: linear-gradient(135deg, rgba(161, 0, 53, 0.3), transparent);
}

.recruit-hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.recruit-hero__content {
    max-width: 720px;
}

.recruit-hero__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.recruit-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-family: "Playfair Display", "Noto Serif JP", serif;
}

@media (min-width: 1024px) {
    .recruit-hero__title {
        font-size: 48px;
    }
}

.recruit-hero__rule {
    width: 64px;
    height: 1px;
    background: var(--color-primary);
    margin-bottom: 24px;
}

.recruit-hero__lead {
    color: #d1d5db;
    font-size: 16px;
    line-height: 2;
}

@media (min-width: 1024px) {
    .recruit-hero__lead {
        font-size: 18px;
    }
}

.recruit-intro {
    padding: 96px 0;
    border-bottom: 1px solid #f3f4f6;
}

.recruit-intro__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
}

.recruit-intro__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 0.2em;
}

@media (min-width: 1024px) {
    .recruit-intro__title {
        font-size: 32px;
    }
}

.recruit-intro__copy {
    display: grid;
    gap: 16px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

@media (min-width: 1024px) {
    .recruit-intro__copy {
        font-size: 18px;
    }
}

.recruit-section {
    padding: 96px 0;
}

@media (min-width: 1024px) {
    .recruit-section {
        padding: 160px 0;
    }
}

.recruit-section--environment,
.recruit-section--jobs {
    background: var(--color-section);
}

.recruit-section__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.recruit-section__container--narrow {
    max-width: 900px;
}

.recruit-section__heading {
    margin-bottom: 48px;
}

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

.recruit-section__eyebrow {
    display: block;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.recruit-section__title {
    font-size: clamp(2.3rem, 4.2vw, 3.9rem);
    font-weight: 700;
    letter-spacing: 0.15em;
}

.recruit-section__title--voice {
    letter-spacing: 0.08em;
    line-height: 1.3;
    max-width: 20ch;
    margin: 0 auto;
    text-wrap: balance;
}

.recruit-section__title--voice .recruit-section__title-line {
    display: block;
}

@media (min-width: 1024px) {
    .recruit-section__title {
        font-size: clamp(3.1rem, 3.8vw, 4.5rem);
    }
}

@media (min-width: 768px) {
    .recruit-section__title--voice {
        max-width: 24ch;
    }
}

.recruit-section__accent {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin: 16px auto 0;
}

.recruit-env-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .recruit-env-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.recruit-env-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruit-env-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.recruit-env-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--color-soft);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.recruit-env-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.recruit-env-card p {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.8;
}

.recruit-wellbeing {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .recruit-wellbeing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.recruit-wellbeing__card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .recruit-wellbeing__card {
        padding: 48px;
    }
}

.recruit-wellbeing__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.recruit-wellbeing__heading span {
    width: 32px;
    height: 1px;
    background: var(--color-primary);
}

.recruit-wellbeing__heading h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-family: "Playfair Display", "Noto Serif JP", serif;
}

.recruit-wellbeing__card ul {
    display: grid;
    gap: 16px;
    color: var(--color-text);
    font-size: 15px;
}

.recruit-wellbeing__card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.recruit-wellbeing__card li span {
    color: var(--color-primary);
}

.recruit-section--voice {
    background: #ffffff;
}

.recruit-voice-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .recruit-voice-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.recruit-voice-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recruit-voice-card__media {
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.recruit-voice-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.recruit-voice-card:hover .recruit-voice-card__media img {
    transform: scale(1.05);
}

.recruit-voice-card__badge {
    display: inline-block;
    background: var(--color-soft);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.recruit-voice-card__body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.6;
}

.recruit-voice-card__name {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.recruit-voice-card__text {
    position: relative;
    color: var(--color-text);
    font-size: 15px;
    line-height: 2;
}

.recruit-voice-card__quote {
    position: absolute;
    top: -12px;
    left: -8px;
    width: 32px;
    height: 32px;
    color: rgba(161, 0, 53, 0.08);
}

.recruit-jobs {
    display: grid;
    gap: 32px;
}

.recruit-job-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: border-color 0.3s ease;
}

.recruit-job-card:hover {
    border-color: rgba(161, 0, 53, 0.3);
}

@media (min-width: 768px) {
    .recruit-job-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.recruit-job-card__content {
    flex: 1;
}

.recruit-job-card__badge {
    display: inline-block;
    background: var(--color-soft);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 4px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.recruit-job-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .recruit-job-card h3 {
        font-size: 26px;
    }
}

.recruit-job-card__arrow {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.recruit-job-card:hover .recruit-job-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.recruit-job-card__content p {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.recruit-job-card__aside {
    background: #f9fafb;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #f3f4f6;
    width: 100%;
}

@media (min-width: 768px) {
    .recruit-job-card__aside {
        width: 33%;
    }
}

.recruit-job-card__aside h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recruit-job-card__aside h4 span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-primary);
}

.recruit-job-card__aside p {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.7;
}

.recruit-flow {
    display: grid;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 80px;
}

.recruit-flow__card {
    display: flex;
    gap: 24px;
    align-items: center;
    background: #fcfafa;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 24px;
}

.recruit-flow__number {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-weight: 700;
}

.recruit-flow__body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.recruit-flow__body p {
    color: var(--color-text);
    font-size: 14px;
}

.recruit-cta {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 40px;
    padding: 40px;
    text-align: center;
}

@media (min-width: 1024px) {
    .recruit-cta {
        padding: 56px;
    }
}

.recruit-cta p {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 32px;
    letter-spacing: 0.08em;
}

.recruit-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 16px 30px rgba(161, 0, 53, 0.2);
}

.recruit-cta__button:hover {
    background: #700e28;
    transform: translateY(-2px);
}

.site-footer {
    background: #0b0b0b;
    color: #ffffff;
    border-top: 1px solid #1f2937;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.site-footer__grid {
    display: grid;
    gap: 48px;
}

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

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__logo {
    height: 48px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.site-footer__text {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.9;
}

.site-footer__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.site-footer__list a {
    color: #d1d5db;
    font-size: 14px;
    transition: color 0.3s ease;
}

.site-footer__list a:hover {
    color: var(--color-primary);
}

.site-footer__address {
    font-style: normal;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.8;
}

.site-footer__spacer {
    margin-top: 12px;
}

.site-footer__bottom {
    border-top: 1px solid #1f2937;
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

.split-char {
    display: inline-block;
    will-change: transform, opacity;
}