:root {
    --green: #334d37;
    --green-dark: #263b2a;
    --tatami: #89866a;
    --black: #20211f;
    --gray: #6e706c;
    --light: #f5f4ef;
    --white: #ffffff;

    --content-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--white);
    font-family:
        "Noto Sans JP",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        sans-serif;
    line-height: 1.8;
}

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

.container {
    width: min(90%, var(--content-width));
    margin-inline: auto;
}


/* ------------------------------
   共通
------------------------------ */

.section {
    padding: clamp(70px, 9vw, 130px) 0;
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
}

.eyebrow--light {
    color: #d8ddcf;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.35;
    letter-spacing: .04em;
}

.button {
    display: inline-flex;
    min-height: 58px;
    padding: 0 28px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid transparent;
    transition: .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--light {
    background: white;
    color: var(--black);
}

.button--green {
    background: var(--green);
    color: white;
}

.button--dark {
    background: var(--black);
    color: white;
}

.button--outline {
    border-color: rgba(255,255,255,.7);
    color: white;
}

.text-link {
    font-weight: 700;
    border-bottom: 1px solid;
}

/* ------------------------------
   HEADER
------------------------------ */

.site-header {
    position: relative;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.site-header__inner {
    width: min(94%, 1400px);
    min-height: 88px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    gap: 30px;
}

.site-logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    line-height: 1.2;
}

.site-logo__main {
    font-family: serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: .12em;
}

.site-logo__sub {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--gray);
}

.site-nav {
    margin-left: auto;
}

.site-nav__list {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);

    list-style: none;
}

.site-nav__list a {
    position: relative;
    display: block;

    padding: 32px 0;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
}

.site-nav__list a::after {
    content: "";
    position: absolute;

    left: 0;
    right: 100%;
    bottom: 23px;

    height: 1px;

    background: var(--green);

    transition: right .25s ease;
}

.site-nav__list a:hover::after {
    right: 0;
}

.header-contact {
    min-height: 88px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    gap: 28px;

    background: var(--green);
    color: white;

    font-size: 13px;
    font-weight: 700;
}

.header-contact:hover {
    background: var(--green-dark);
}

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 28px;
    height: 1px;

    margin: 7px auto;

    background: var(--black);

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.mobile-menu {
    display: none;
}


/* ------------------------------
   MOBILE MENU
------------------------------ */

@media (max-width: 1050px) {

    .site-header__inner {
        min-height: 72px;
    }

    .site-nav,
    .header-contact {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

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

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

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

    .mobile-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;

        display: block;

        max-height: 0;
        overflow: hidden;

        background: white;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height .45s ease,
            opacity .25s ease,
            visibility .25s ease;
    }

    .mobile-menu.is-open {
        max-height: 700px;
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu__nav {
        width: min(90%, 700px);
        margin-inline: auto;
        padding: 20px 0 35px;
    }

    .mobile-menu__list {
        margin: 0;
        padding: 0;

        list-style: none;
    }

    .mobile-menu__list li {
        border-bottom: 1px solid #ddd;
    }

    .mobile-menu__list a {
        display: flex;
        align-items: center;

        min-height: 62px;

        font-size: 16px;
        font-weight: 600;
    }

    .mobile-menu__contact {
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-top: 25px;
        padding: 20px 22px;

        background: var(--green);
        color: white;

        font-weight: 700;
    }

    body.menu-open {
        overflow: hidden;
    }

}

/* =========================================================
   HOME
========================================================= */

.section-label {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
}

.section-label--light {
    color: rgba(255,255,255,.65);
}


/* ------------------------------
   BUTTONS
------------------------------ */

.button {
    display: inline-flex;
    min-height: 60px;
    padding: 0 28px;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    border: 1px solid transparent;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--light {
    background: #fff;
    color: var(--black);
}

.button--dark {
    background: var(--black);
    color: #fff;
}

.button--glass {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.08);
    color: #fff;
    backdrop-filter: blur(5px);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
    position: relative;

    height: calc(100svh - 88px);
    min-height: 680px;
    max-height: 900px;

    overflow: hidden;
    display: flex;
    align-items: center;
    background: #222;
    color: #fff;
}

.home-hero__image {
    position: absolute;
    inset: 0;
}

.home-hero__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    /* 写真の見せたい位置 */
    object-position: center 55%;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 18, 16, .90) 0%,
            rgba(15, 18, 16, .74) 30%,
            rgba(15, 18, 16, .42) 52%,
            rgba(15, 18, 16, .12) 76%,
            rgba(15, 18, 16, .04) 100%
        );
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-hero__content {
    max-width: 790px;
}

.home-hero__eyebrow {
    margin: 0 0 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    color: rgba(255,255,255,.7);
}

.home-hero h1 {
    margin: 0 0 30px;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .07em;
}

.home-hero__lead {
    margin: 0;
    font-size: 16px;
    line-height: 2;
    letter-spacing: .05em;
}

.home-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.home-hero__scroll {
    position: absolute;
    z-index: 3;
    right: 38px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-hero__scroll span {
    font-size: 9px;
    letter-spacing: .2em;
    writing-mode: vertical-rl;
}

.home-hero__scroll i {
    display: block;
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,.6);
}


/* =========================================================
   INTRO
========================================================= */

.home-intro {
    padding: clamp(90px, 11vw, 170px) 0;
    background: #fff;
}

.home-intro__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(60px, 10vw, 160px);
}

.home-intro__year {
    margin: 40px 0 0;
    color: #aaa99f;
    font-family: serif;
    font-size: 20px;
    letter-spacing: .12em;
}

.home-intro__year strong {
    display: block;
    margin-top: -12px;
    color: var(--green);
    font-size: clamp(75px, 10vw, 145px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}

.home-intro__content {
    max-width: 650px;
}

.home-intro h2 {
    margin-bottom: 35px;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.5;
}

.home-intro__lead {
    margin-bottom: 25px;
    font-size: 19px;
    font-weight: 700;
}

.home-intro__content p {
    line-height: 2.2;
}


/* =========================================================
   TATAMI
========================================================= */

.home-tatami {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
    min-height: 760px;
    background: #f0efe8;
}

.home-tatami__photos {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.home-tatami__photo {
    margin: 0;
}

.home-tatami__photo--main {
    position: absolute;
    inset: 0 14% 0 0;
}

.home-tatami__photo--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-tatami__photo--sub {
    position: absolute;
    right: 0;
    bottom: 55px;
    width: 36%;
    height: 270px;
    border: 8px solid #f0efe8;
}

.home-tatami__photo--sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-tatami__content {
    max-width: 610px;
    padding: clamp(80px, 9vw, 145px)
             clamp(40px, 7vw, 110px);
    align-self: center;
}

.home-tatami h2 {
    margin-bottom: 30px;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(38px, 4.3vw, 58px);
    font-weight: 500;
    line-height: 1.5;
}

.home-tatami__lead {
    margin-bottom: 22px;
    font-size: 19px;
    font-weight: 700;
}

.home-tatami__content > p {
    line-height: 2.1;
}

.home-tatami__links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}


/* =========================================================
   SERVICE
========================================================= */

.home-services {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #fff;
}

.home-section-header {
    margin-bottom: 65px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
}

.home-section-header h2 {
    margin: 0;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.45;
}

.home-section-header > p {
    margin: 0 0 8px;
    color: var(--gray);
    font-size: 14px;
    line-height: 2;
}

/* =========================
   SERVICES - PHOTO CARDS
========================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #fff;
}

.service-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: block;
    color: #fff;
    text-decoration: none;
    background: #222;
}

.service-card__image {
    position: absolute;
    inset: 0;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(15, 18, 15, .12) 0%,
            rgba(15, 18, 15, .22) 40%,
            rgba(15, 18, 15, .78) 100%
        );
    transition: background .4s ease;
}

.service-card__number {
    position: absolute;
    top: 28px;
    left: 30px;
    z-index: 2;

    font-size: 11px;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .75);
}

.service-card__content {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 70px;
    bottom: 30px;
}

.service-card__en {
    margin: 0 0 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .65);
}

.service-card h3 {
    margin: 0 0 10px;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .06em;
    color: #fff;
}

.service-card__description {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .78);
}

.service-card__arrow {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 32px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;

    font-size: 17px;
    color: #fff;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

/* hover */

.service-card:hover .service-card__image img {
    transform: scale(1.04);
}

.service-card:hover .service-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(15, 18, 15, .08) 0%,
            rgba(15, 18, 15, .18) 40%,
            rgba(37, 67, 50, .88) 100%
        );
}

.service-card:hover .service-card__arrow {
    background: #fff;
    color: var(--green);
    transform: translateX(4px);
}

/* =========================================================
   WORKS
========================================================= */

.home-works {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #f5f4ef;
}

.home-section-header--works {
    align-items: end;
}

.works-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.work-card a {
    display: block;
}

.work-card__image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #ddd;
}

.work-card--large .work-card__image {
    aspect-ratio: 4 / 4.5;
}

.work-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.work-card:hover .work-card__image img {
    transform: scale(1.035);
}

.work-card__meta {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.work-card__meta span:first-child {
    color: var(--green);
    font-weight: 700;
    letter-spacing: .12em;
}


/* =========================================================
   BUSINESS
========================================================= */

.home-business {
    padding: clamp(100px, 11vw, 170px) 0;
    background: var(--green-dark);
    color: #fff;
}

.home-business__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 10vw, 150px);
}

.home-business h2 {
    margin: 0;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.5;
}

.home-business__content {
    padding-top: 40px;
}

.home-business__content h3 {
    margin-bottom: 28px;
    font-size: clamp(24px, 3vw, 35px);
    font-weight: 500;
    line-height: 1.6;
}

.home-business__content p {
    max-width: 540px;
    margin-bottom: 40px;
    color: rgba(255,255,255,.75);
    line-height: 2.1;
}


/* =========================================================
   HISTORY
========================================================= */

.home-history {
    padding: clamp(100px, 12vw, 180px) 0;
    overflow: hidden;
    background: #fff;
}

.home-history__inner {
    position: relative;
}

.home-history__year {
    position: absolute;
    top: -70px;
    right: -20px;
    z-index: 0;
    color: #f0efe9;
    font-family: serif;
    font-size: clamp(150px, 24vw, 350px);
    line-height: 1;
    letter-spacing: -.07em;
    pointer-events: none;
}

.home-history h2,
.home-history p,
.home-history .arrow-link,
.home-history .section-label {
    position: relative;
    z-index: 1;
}

.home-history h2 {
    margin-bottom: 30px;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
}

.home-history p {
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 2.2;
}


/* =========================================================
   CONTACT
========================================================= */

.home-contact {
    padding: clamp(80px, 9vw, 130px) 0;
    background: var(--green);
    color: #fff;
}

.home-contact__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.home-contact h2 {
    margin-bottom: 20px;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(35px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.5;
}

.home-contact p {
    margin-bottom: 0;
    color: rgba(255,255,255,.75);
}

.home-contact__button {
    width: min(360px, 100%);
    min-height: 150px;
    padding: 35px;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: var(--black);
    transition: transform .25s ease;
}

.home-contact__button:hover {
    transform: translateY(-4px);
}

.home-contact__button > span {
    font-size: 18px;
    font-weight: 700;
}

.home-contact__button small {
    margin-top: 7px;
    display: block;
    color: #888;
    font-size: 9px;
    letter-spacing: .18em;
}

.home-contact__button strong {
    font-size: 25px;
    font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-hero {
        min-height: 680px;
    }

    .home-intro__grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 60px;
    }

    .home-tatami {
        grid-template-columns: 1fr 1fr;
    }

    .home-tatami__content {
        padding: 80px 45px;
    }

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

    .service-item:nth-child(3) {
        border-left: 1px solid #ddd;
    }

    .works-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .work-card:last-child {
        grid-column: 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home-hero {
        min-height: calc(100svh - 72px);
    }

    .home-hero__image img {
        object-position: 60% center;
    }

    .home-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(20,22,20,.82),
                rgba(20,22,20,.42)
            );
    }

    .home-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: .03em;
    }

    .home-hero__lead {
        font-size: 14px;
    }

    .home-hero__buttons {
        display: grid;
        max-width: 320px;
    }

    .home-hero__scroll {
        display: none;
    }


    .home-intro__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-intro__year strong {
        font-size: 100px;
    }


    .home-tatami {
        display: block;
        min-height: auto;
    }

    .home-tatami__photos {
        min-height: 480px;
    }

    .home-tatami__photo--main {
        right: 12%;
    }

    .home-tatami__photo--sub {
        width: 42%;
        height: 190px;
        bottom: 25px;
    }

    .home-tatami__content {
        max-width: none;
        padding: 70px 7%;
    }


    .home-section-header {
        display: block;
        margin-bottom: 45px;
    }

    .home-section-header > p,
    .home-section-header > .arrow-link {
        margin-top: 25px;
    }


    .service-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .service-card {
        min-height: 330px;
    }

    .service-card__number {
        top: 22px;
        left: 22px;
    }

    .service-card__content {
        left: 22px;
        right: 65px;
        bottom: 24px;
    }

    .service-card h3 {
        font-size: 26px;
    }

    .service-card__arrow {
        right: 22px;
        bottom: 24px;
        width: 38px;
        height: 38px;
    }


    .works-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .work-card:last-child {
        grid-column: auto;
    }

    .work-card__image,
    .work-card--large .work-card__image {
        aspect-ratio: 4 / 3;
    }


    .home-business__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .home-business__content {
        padding-top: 0;
    }


    .home-history__year {
        top: 0;
        right: -15px;
        font-size: 150px;
    }


    .home-contact__inner {
        display: block;
    }

    .home-contact__button {
        margin-top: 45px;
        min-height: 120px;
    }

}

/* =========================================================
   HERO - MOBILE
========================================================= */

@media (max-width: 767px) {

    .home-hero {
        height: calc(100svh - 70px);
        min-height: 620px;
        max-height: 760px;
        align-items: flex-end;
    }

    .home-hero__image img {
        object-position: 58% center;
    }

    .home-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(15, 18, 16, .10) 0%,
                rgba(15, 18, 16, .24) 30%,
                rgba(15, 18, 16, .78) 68%,
                rgba(15, 18, 16, .94) 100%
            );
    }

    .home-hero__inner {
        padding-bottom: 54px;
    }

    .home-hero__content {
        max-width: 100%;
    }

    .home-hero__eyebrow {
        margin-bottom: 16px;
        font-size: 9px;
        letter-spacing: .2em;
    }

    .home-hero h1 {
        margin-bottom: 20px;
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.4;
        letter-spacing: .04em;
    }

    .home-hero__lead {
        font-size: 14px;
        line-height: 1.9;
    }

    .home-hero__buttons {
        margin-top: 28px;
        gap: 8px;
    }

    .home-hero__buttons .button {
        width: 100%;
        justify-content: space-between;
    }

    .home-hero__scroll {
        display: none;
    }
}

/* =========================================================
   WORKS ARCHIVE
========================================================= */

.works-archive {
    background: #f6f5f1;
}

.works-archive__hero {
    padding: 120px 0 90px;
}

.works-archive__hero h1 {
    margin: 22px 0 30px;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: .08em;
}

.works-archive__lead {
    margin: 0;

    color: var(--gray);
    font-size: 14px;
    line-height: 2;
    letter-spacing: .04em;
}


/* LIST */

.works-archive__body {
    padding: 0 0 140px;
}

.works-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 28px;
}


/* CARD */

.works-archive-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.works-archive-card__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #ddd;
}

.works-archive-card__image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}

.works-archive-card:hover .works-archive-card__image img {
    transform: scale(1.035);
}


.works-archive-card__meta {
    margin-top: 18px;

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

.works-archive-card__category {
    color: var(--green);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;
}

.works-archive-card__arrow {
    font-size: 17px;

    transition: transform .3s ease;
}

.works-archive-card:hover .works-archive-card__arrow {
    transform: translateX(5px);
}


.works-archive-card h2 {
    margin: 9px 0 0;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 22px;
    font-weight: 500;

    line-height: 1.6;
    letter-spacing: .04em;
}


/* PAGINATION */

.works-pagination {
    margin-top: 90px;
}

.works-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.works-pagination .page-numbers {
    min-width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ccc;

    color: #222;
    text-decoration: none;

    font-size: 12px;
}

.works-pagination .page-numbers.current,
.works-pagination a.page-numbers:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}


/* EMPTY */

.works-archive__empty {
    padding: 80px 0;

    color: var(--gray);
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 767px) {

    .works-archive__hero {
        padding: 75px 0 60px;
    }

    .works-archive__hero h1 {
        margin-top: 16px;
        font-size: 42px;
    }

    .works-archive__lead br {
        display: none;
    }

    .works-archive__body {
        padding-bottom: 90px;
    }

    .works-archive__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .works-archive-card__image {
        aspect-ratio: 4 / 3;
    }

    .works-archive-card h2 {
        font-size: 20px;
    }

}

/* =========================================================
   WORKS SINGLE
========================================================= */

.work-single {
    background: #f6f5f1;
}


/* HEADER */

.work-single__header {
    padding: 90px 0 70px;
}

.work-single__back {
    display: inline-block;
    margin-bottom: 70px;

    color: var(--gray);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-decoration: none;

    transition: color .3s ease;
}

.work-single__back:hover {
    color: var(--green);
}

.work-single__header .section-label {
    margin-bottom: 20px;
}

.work-single__header h1 {
    max-width: 1100px;
    margin: 0;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .06em;
}

/* PROJECT INFORMATION */

.work-single__project {
    min-width: 0;
}

.work-single__info {
    margin: 0;
}

.work-single__info > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;

    padding: 18px 0;

    border-bottom: 1px solid #ddd;
}

.work-single__info > div:first-child {
    padding-top: 0;
}

.work-single__info dt {
    color: var(--gray);

    font-size: 11px;
    font-weight: 500;

    letter-spacing: .08em;
}

.work-single__info dd {
    margin: 0;

    font-size: 14px;
    line-height: 1.8;
}

.work-single__description {
    margin-top: 45px;

    font-size: 15px;
    line-height: 2.2;
}

.work-single__description p {
    margin: 0 0 22px;
}

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


/* MAIN IMAGE */

.work-single__visual {
    padding-bottom: 100px;
}

.work-single__main-image {
    max-width: 1100px;
    margin: 0 auto;
}

.work-single__main-image img {
    width: 100%;
    max-height: 780px;

    display: block;

    object-fit: contain;
}


/* CONTENT */

.work-single__content {
    padding: 0 0 110px;
}

.work-single__content-inner {
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;

    padding-top: 55px;
    border-top: 1px solid #ccc;
}

.work-single__content-label p {
    margin: 0 0 10px;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
}

.work-single__content-label span {
    font-size: 13px;
}

/* FOOTER LINK */

.work-single__footer {
    padding: 55px 0 120px;
    border-top: 1px solid #ddd;
}

.work-single__footer .container {
    display: flex;
    justify-content: flex-end;
}

/* WORK GALLERY */

.work-single__gallery {
    padding: 20px 0 120px;
}

.work-single__gallery-header {
    margin-bottom: 45px;
}

.work-single__gallery-header h2 {
    margin: 14px 0 0;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 36px;
    font-weight: 500;
    letter-spacing: .06em;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.work-gallery__item {
    margin: 0;
    overflow: hidden;
    background: #eee;
}

.work-gallery__item img {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: cover;
}

/* MOBILE */

@media (max-width: 767px) {

    .work-single__header {
        padding: 55px 0 45px;
    }

    .work-single__back {
        margin-bottom: 45px;
    }

    .work-single__header h1 {
        font-size: 38px;
    }

    .work-single__visual {
        padding-bottom: 65px;
    }

    .work-single__main-image img {
        max-height: none;
    }

    .work-single__content {
        padding-bottom: 70px;
    }

    .work-single__content-inner {
        grid-template-columns: 1fr;
        gap: 35px;

        padding-top: 35px;
    }

    .work-single__footer {
        padding: 40px 0 80px;
    }

    .work-single__info > div {
        grid-template-columns: 90px 1fr;
        gap: 15px;
    }

    .work-single__description {
        margin-top: 35px;
    }

    .work-single__gallery {
        padding: 10px 0 80px;
    }

    .work-single__gallery-header {
        margin-bottom: 30px;
    }

    .work-single__gallery-header h2 {
        font-size: 28px;
    }

    .work-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .work-gallery__item img {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
    }

}

/* =========================================================
   TATAMI PAGE
========================================================= */

.tatami-page {
    background: #f6f5f1;
}


/* HERO
--------------------------------------------------------- */

.tatami-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;
    background: #222;
}

.tatami-hero__image {
    position: absolute;
    inset: 0;
}

.tatami-hero__image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

.tatami-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(19, 25, 18, .90) 0%,
            rgba(19, 25, 18, .70) 42%,
            rgba(19, 25, 18, .20) 75%,
            rgba(19, 25, 18, .08) 100%
        );
}

.tatami-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.tatami-hero__content {
    max-width: 780px;
}

.tatami-hero__eyebrow {
    margin: 0 0 25px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;

    color: rgba(255,255,255,.7);
}

.tatami-hero h1 {
    margin: 0 0 30px;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .08em;
}

.tatami-hero__lead {
    margin: 0;

    font-size: 16px;
    line-height: 2;
    letter-spacing: .05em;
}

.tatami-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 40px;
}

.tatami-hero__since {
    position: absolute;
    z-index: 2;

    right: 38px;
    bottom: 35px;

    font-size: 9px;
    letter-spacing: .22em;

    color: rgba(255,255,255,.6);
}


/* INTRO
--------------------------------------------------------- */

.tatami-intro {
    padding: 140px 0;
}

.tatami-intro__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 120px;
}

.tatami-intro__heading h2 {
    margin: 22px 0 0;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .06em;
}

.tatami-intro__text {
    padding-top: 38px;

    color: #555;

    font-size: 15px;
    line-height: 2.2;
}

.tatami-intro__text p {
    margin: 0 0 28px;
}

.tatami-intro__lead {
    color: #222;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 20px;
    line-height: 1.9;
}


/* TATAMI MENU
--------------------------------------------------------- */

.tatami-menu {
    padding: 130px 0;

    background: #e9e7df;
}

.tatami-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;

    margin-bottom: 70px;
}

.tatami-section-header h2 {
    margin: 20px 0 0;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .06em;
}

.tatami-section-header > p {
    margin: 0 0 8px;

    color: #666;

    font-size: 13px;
    line-height: 2;
}


/* CARDS */

.tatami-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #c9c7be;
    border-bottom: 1px solid #c9c7be;
}

.tatami-menu-card {
    position: relative;

    min-height: 410px;
    padding: 35px;

    border-right: 1px solid #c9c7be;
}

.tatami-menu-card:first-child {
    border-left: 1px solid #c9c7be;
}

.tatami-menu-card__number {
    display: block;

    margin-bottom: 70px;

    color: #999;

    font-size: 11px;
    letter-spacing: .18em;
}

.tatami-menu-card__en {
    margin: 0 0 12px;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
}

.tatami-menu-card h3 {
    margin: 0 0 25px;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 32px;
    font-weight: 500;
    letter-spacing: .08em;
}

.tatami-menu-card > p:not(.tatami-menu-card__en) {
    margin: 0;

    color: #555;

    font-size: 13px;
    line-height: 2;
}

.tatami-menu-card__note {
    position: absolute;

    left: 35px;
    bottom: 30px;

    color: #777;

    font-size: 10px;
    letter-spacing: .08em;
}


/* CONTACT TEMP
--------------------------------------------------------- */

.tatami-contact {
    padding: 140px 0;

    text-align: center;

    background: #263b2e;
    color: #fff;
}

.tatami-contact .section-label {
    color: rgba(255,255,255,.55);
}

.tatami-contact h2 {
    margin: 25px 0;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .06em;
}

.tatami-contact > .container > p:last-child {
    margin: 0;

    color: rgba(255,255,255,.7);

    font-size: 14px;
}


/* MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .tatami-hero {
        min-height: 680px;
    }

    .tatami-hero h1 {
        font-size: 44px;
    }

    .tatami-hero__lead {
        font-size: 14px;
    }

    .tatami-hero__since {
        right: 20px;
        bottom: 20px;
    }


    .tatami-intro {
        padding: 85px 0;
    }

    .tatami-intro__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tatami-intro__heading h2 {
        font-size: 36px;
    }

    .tatami-intro__text {
        padding-top: 0;
    }


    .tatami-menu {
        padding: 85px 0;
    }

    .tatami-section-header {
        display: block;
        margin-bottom: 45px;
    }

    .tatami-section-header h2 {
        font-size: 36px;
    }

    .tatami-section-header > p {
        margin-top: 30px;
    }

    .tatami-menu__grid {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .tatami-menu-card,
    .tatami-menu-card:first-child {
        min-height: 350px;

        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #c9c7be;
    }

    .tatami-menu-card__number {
        margin-bottom: 45px;
    }


    .tatami-contact {
        padding: 90px 0;
    }

    .tatami-contact h2 {
        font-size: 32px;
    }

}