@charset "UTF-8";
/*
Theme Name: ColourDoors
Description: ColourDoors コーポレートサイト
Version: 1.0
*/

/* ========================================
   変数
======================================== */
:root {
    --color-bg: #e7e5df;
    --color-text: #000;
    --color-text-sub: #6d6b64;
    --color-white: #fff;
    --color-black: #000;

    --gnavi-width: 80px;
    --gnavi-width-open: 230px;
    --sp-hamburger-size: 46px;

    --font-en: 'futura-pt', 'Futura', 'Helvetica Neue', Arial, sans-serif;
    --font-jp: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;

    --color-about: #b1bfc2;
    --color-concierge: #b4c7c1;
    --color-service: #908e85;
    --color-service-bg: #d7d2c4;
    --color-service-btn: #c2bdae;
    --color-service-marquee: #e7e5df;
    --color-works: #b1bfc2;
    --color-news: #b1bfc2;
    --color-tag-bg: #c2bdae;
}

/* ========================================
   リセット & ベース
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .3s ease;
}

a:hover {
    opacity: .7;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

button {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.main {
    display: block;
}

/* ========================================
   gnavi (PC ≥1024px: 左固定・ホバー展開)
======================================== */
.gnavi {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--gnavi-width);
    height: 100vh;
    z-index: 100;
    background-color: var(--color-bg);
    border-right: 1px solid var(--color-black);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 20px;
    transition: width .4s cubic-bezier(.4,0,.2,1), background-color .4s ease;
}

.gnavi:hover {
    width: var(--gnavi-width-open);
    background-color: var(--color-white);
}

.gnavi-nav {
    width: 100%;
}

.gnavi-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gnavi-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-black);
    transition: opacity .3s ease;
}

.gnavi-item a:hover {
    opacity: .65;
}

.gnavi-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gnavi-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gnavi-label {
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1;
    white-space: nowrap;
    color: var(--color-black);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s ease .15s, transform .3s ease .15s;
}

.gnavi:hover .gnavi-label {
    opacity: 1;
    transform: translateX(0);
}

/* gnavi 下部 (ロゴ縦書き + ライン + Instagram) */
.gnavi-bottom {
    width: 40px; /* アイコン幅と揃え、ホバー展開時も位置固定 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gnavi-brand-wrap {
    width: 25px;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.gnavi-brand {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .25em;
    line-height: 1;
    white-space: nowrap;
    color: var(--color-black);
    transform: rotate(-90deg);
    transform-origin: center;
}

.gnavi-divider {
    display: block;
    width: 1px;
    height: 48px;
    background-color: var(--color-black);
}

.gnavi-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--color-black);
}

.gnavi-sns img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1023px) {
    .gnavi {
        display: none;
    }
}

/* ========================================
   Hamburger (≤1023px: 右上固定)
======================================== */
.hamburger {
    display: none;
}

@media (max-width: 1023px) {
    .hamburger {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: var(--sp-hamburger-size);
        height: var(--sp-hamburger-size);
        background-color: var(--color-service-bg);
        border-bottom: 1px solid var(--color-black);
        border-left: 1px solid var(--color-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 110;
        transition: background-color .3s ease;
    }

    .hamburger-line {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--color-black);
        transition: transform .3s ease, opacity .3s ease;
    }

    .hamburger.is-active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ========================================
   SP Menu Overlay (≤1023px)
======================================== */
.sp-menu {
    display: none;
}

@media (max-width: 1023px) {
    .sp-menu {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 105;
        background-color: var(--color-service-bg);
        opacity: 0;
        visibility: hidden;
        transition: opacity .4s ease, visibility .4s ease;
        overflow-y: auto;
    }

    .sp-menu.is-open {
        opacity: 1;
        visibility: visible;
    }

    .sp-menu-inner {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 48px;
        padding: 80px 24px 48px;
    }

    .sp-menu-logo {
        width: 160px;
        height: 160px;
    }

    .sp-menu-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .sp-menu-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 32px 0;
        width: 100%;
    }

    .sp-menu-item {
        width: 160px;
        display: flex;
        justify-content: center;
    }

    .sp-menu-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--color-black);
        transition: opacity .3s ease;
    }

    .sp-menu-item a:hover {
        opacity: .65;
    }

    .sp-menu-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sp-menu-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .sp-menu-label {
        font-family: var(--font-jp);
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: .1em;
        color: var(--color-black);
        text-align: center;
    }

    .sp-menu-copy {
        font-family: var(--font-jp);
        font-size: 12px;
        font-weight: 400;
        letter-spacing: .2em;
        color: var(--color-black);
        text-align: center;
        margin: 0;
    }
}

/* ========================================
   sec-main / メインビジュアル
======================================== */
.sec-main {
    position: relative;
    width: 100%;
    height: 1056px;
    max-height: 100vh;
    min-height: 600px;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-black);
    overflow: hidden;
}

.sec-main-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.sec-main-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.sec-main-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    gap: 32px;
}

.sec-main-logo {
    width: 220px;
    height: 220px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.sec-main-logo img {
    width: 190px;
    height: 190px;
    object-fit: contain;
}

.sec-main-catch {
    width: 100%;
    max-width: 438px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.sec-main-catch-en {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: .06em;
    color: var(--color-black);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sec-main-catch-en .line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.sec-main-catch-en .stroke-white {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-white);
}

.sec-main-catch-en .fill-white {
    color: var(--color-white);
}

.sec-main-catch-jp {
    font-family: var(--font-jp);
    font-weight: 500;
    font-size: 32px;
    color: var(--color-black);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.sec-main-catch-jp .accent {
    color: var(--color-text-sub);
}

/* sec-main: 1023px以下 */
@media (max-width: 1023px) {
    .sec-main {
        height: 880px;
    }
    .sec-main-catch {
        max-width: 306px;
    }
    .sec-main-logo {
        width: 200px;
        height: 200px;
    }
    .sec-main-logo img {
        width: 170px;
        height: 170px;
    }
    .sec-main-catch-en {
        font-size: 64px;
    }
    .sec-main-catch-jp {
        font-size: 26px;
        letter-spacing: .25em;
    }
}

/* sec-main: 959px以下 (タブレット) */
@media (max-width: 959px) {
    .sec-main {
        height: 760px;
    }
    .sec-main-catch-en {
        font-size: 56px;
    }
    .sec-main-catch-jp {
        font-size: 22px;
    }
}

/* sec-main: 767px以下 (スマホ) */
@media (max-width: 767px) {
    .sec-main {
        height: auto;
        min-height: 100vh;
    }
    .sec-main-bg {
        width: 100%;
        height: 50%;
        top: 0;
        bottom: auto;
    }
    .sec-main-inner {
        position: absolute;
        inset: 0;
        padding: 48px 24px;
        gap: 24px;
        justify-content: center;
        margin-top: 3vh;
    }
    .sec-main-catch {
        max-width: 260px;
    }
    .sec-main-logo {
        width: 160px;
        height: 160px;
    }
    .sec-main-logo img {
        width: 130px;
        height: 130px;
    }
    .sec-main-catch-en {
        font-size: 48px;
        gap: 8px;
    }
    .sec-main-catch-jp {
        font-size: 18px;
        letter-spacing: .2em;
    }
}

/* sec-main: 559px以下 */
@media (max-width: 559px) {
    .sec-main-catch-en {
        font-size: 40px;
    }
    .sec-main-catch-jp {
        font-size: 16px;
    }
}

/* ========================================
   共通: セクションタイトル
======================================== */
.sec-title {
    --section-accent: var(--color-text-sub);
}

.sec-title-main {
    position: relative;
    display: inline-block;
}

.sec-title-en {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: .02em;
    color: var(--color-black);
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.sec-title-en .line {
    display: block;
    white-space: nowrap;
}

.sec-title-en .char-accent {
    color: var(--section-accent);
}

.sec-title-en .outlined {
    color: transparent;
    -webkit-text-stroke: 1.5px #B5C3C6;
}

.sec-title-num {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-22%, -10%);
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 200px;
    line-height: 1.1;
    color: var(--section-accent);
    opacity: .3;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

.sec-title-sub {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.sec-title-sub-line {
    display: block;
    width: 80px;
    height: 1px;
    background-color: var(--color-black);
}

.sec-title-sub-text {
    font-family: var(--font-jp);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .15em;
    color: var(--color-black);
}

/* ========================================
   sec-about / COLOUR DOORSとは
======================================== */
.sec-about {
    display: flex;
    align-items: center;
    height: 1056px;
    border-bottom: 1px solid var(--color-black);
    overflow: hidden;
}

.sec-about .sec-title {
    --section-accent: var(--color-about);
}

.sec-about-image {
    flex: 0 0 50%;
    height: 100%;
}

.sec-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-about-contents {
    flex: 0 0 50%;
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.sec-about-message {
    max-width: 540px;
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .05em;
    color: var(--color-black);
}

.sec-about-message p {
    margin: 0;
}

.sec-about-message p + p {
    margin-top: 1.8em;
}

/* ========================================
   sec-concierge / PAINT CONCIERGE
======================================== */
.sec-concierge {
    display: flex;
    align-items: center;
    height: 1056px;
    border-bottom: 1px solid var(--color-black);
    overflow: hidden;
}

.sec-concierge .sec-title {
    --section-accent: var(--color-concierge);
}

.sec-concierge .sec-title-num {
    left: 75%;
}

.sec-concierge-contents {
    flex: 0 0 50%;
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
}

.sec-concierge-contents > * {
    width: 100%;
    max-width: 543px;
}

.sec-concierge-image {
    flex: 0 0 50%;
    height: 100%;
}

.sec-concierge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-concierge-message {
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .05em;
    color: var(--color-black);
}

.sec-concierge-message p {
    margin: 0;
}

.sec-concierge-message p + p {
    margin-top: 1.8em;
}

.concierge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

.concierge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100px;
}

.concierge-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.concierge-icon-svg {
    display: block;
    width: 60px;
    height: 60px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.concierge-icon-svg[data-icon="color-fill"] {
    background-color: #D8643E;
    -webkit-mask-image: url('images/icon-color-fill.svg');
    mask-image: url('images/icon-color-fill.svg');
}

.concierge-icon-svg[data-icon="note"] {
    background-color: #AFB83B80;
    -webkit-mask-image: url('images/icon-note.svg');
    mask-image: url('images/icon-note.svg');
}

.concierge-icon-svg[data-icon="paint-roller"] {
    background-color: #4EA39E80;
    -webkit-mask-image: url('images/icon-paint-roller.svg');
    mask-image: url('images/icon-paint-roller.svg');
}

.concierge-icon-svg[data-icon="hand-heart"] {
    background-color: #A2CCE2;
    -webkit-mask-image: url('images/icon-hand-heart.svg');
    mask-image: url('images/icon-hand-heart.svg');
}

/* ========================================
   sec-service / SERVICE
======================================== */
.sec-service {
    position: relative;
    background-color: var(--color-service-bg);
    border-bottom: 1px solid var(--color-black);
    overflow: hidden;
    padding-top: 220px;
    padding-bottom: 0;
}

.sec-service .sec-title {
    --section-accent: var(--color-service);
}

/* 03 を中央タイトルの右に配置・アウトライン化 */
.sec-service .sec-title-num {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--section-accent);
    top: -20%;
}

/* マーキー */
.sec-service-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.sec-service-marquee-track {
    display: flex;
    width: max-content;
    margin-top: -50px;
    animation: service-marquee 40s linear infinite;
}

.sec-service-marquee-text {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 200px;
    line-height: 1.1;
    color: var(--color-service-marquee);
    white-space: nowrap;
    padding-right: 80px;
    letter-spacing: .02em;
}

@keyframes service-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* 中央タイトル */
.sec-title-center {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 90px;
}

/* サービスリスト */
.service-list {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--color-black);
}

.service-item {
    display: flex;
    align-items: center;
    height: 600px;
    border-bottom: 1px solid var(--color-black);
}

.service-item.is-reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 50%;
    height: 100%;
}

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

.service-contents {
    flex: 0 0 50%;
    padding-left: 48px;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-item.is-reverse .service-contents {
    padding-left: 0;
    padding-right: 48px;
    justify-content: flex-end;
}

.service-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}

.service-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-title-en {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px #908E85;
    margin: 0;
}

.service-title-en .line {
    display: block;
    white-space: nowrap;
}

.service-message {
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .1em;
    color: var(--color-black);
    margin: 0;
}

/* MORE ボタン (共通) */
.sec-more {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding: 48px;
}

.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 54px;
    background-color: var(--color-service-btn);
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--color-black);
    transition: opacity .3s ease;
}

.btn-more:hover {
    opacity: .85;
}

/* ========================================
   sec-paints / 取り扱いペイント
======================================== */
.sec-paints {
    position: relative;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-black);
    padding-top: 135px;
}

.sec-paints .sec-title {
    --section-accent: var(--color-text-sub);
}

.sec-paints .sec-title-num {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--section-accent);
    top: -20%;
}

.sec-paints .sec-title-center {
    padding-bottom: 121px;
}

.paints-list {
    border-bottom: 1px solid var(--color-black);
}

.paint-item {
    position: relative;
    height: 400px;
    border-top: 1px solid var(--color-black);
    overflow: hidden;
}

.paint-item-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0);
    transform: scale(1);
    transition: filter .8s ease, transform .8s ease;
}

.paint-item-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .4);
}

.paint-item:hover .paint-item-bg {
    filter: saturate(1);
    transform: scale(1.06);
}

.paint-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.paint-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.paint-name {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 24px;
    gap: 12px;
}

.paint-brand {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .02em;
    margin: 0;
}

.paint-desc {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .1em;
    margin: 0;
}

/* ========================================
   sec-works / 施工事例
======================================== */
.sec-works {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    height: 1055px;
    border-bottom: 1px solid var(--color-black);
    background-color: var(--color-bg);
    overflow: hidden;
}

.sec-works .sec-title {
    --section-accent: var(--color-works);
}

.sec-works .sec-title-num {
    left: 75%;
}

.sec-works-contents {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 48px;
}

.sec-works-block {
    width: 542px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
}

.sec-works-message {
    width: 100%;
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .05em;
    color: var(--color-black);
}

.sec-works-message p {
    margin: 0;
}

.sec-works-message p + p {
    margin-top: 1.8em;
}

.works-item {
    min-width: 0;
    max-width: 100%;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--color-black);
    transition: opacity .3s ease;
    overflow: hidden;
}

a.works-item:hover {
    opacity: .9;
}

.works-thumb {
    flex: 1;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

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

.works-meta {
    flex-shrink: 0;
    height: 118px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.works-tag {
    align-self: flex-start;
    background-color: var(--color-tag-bg);
    color: var(--color-white);
    padding: 6px 12px;
    font-family: var(--font-jp);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .1em;
}

.works-title {
    font-family: var(--font-jp);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: .1em;
    color: var(--color-black);
    margin: 0;
}

.works-desc {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .1em;
    color: var(--color-black);
    margin: 0;
}

/* ========================================
   sec-news / お知らせ
======================================== */
.sec-news {
    display: flex;
    align-items: center;
    height: 1056px;
    border-bottom: 1px solid var(--color-black);
    overflow: hidden;
}

.sec-news .sec-title {
    --section-accent: var(--color-news);
}

.sec-news-image {
    flex: 0 0 50%;
    height: 100%;
}

.sec-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-news-contents {
    flex: 0 0 50%;
    padding-left: 50px;
    display: flex;
    align-items: center;
}

.sec-news-block {
    width: 596px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
}

.news-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-item a {
    display: flex;
    align-items: baseline;
    gap: 1.5em;
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .1em;
    color: var(--color-black);
    transition: opacity .3s ease;
}

.news-item a:hover {
    opacity: .65;
}

.news-date {
    flex-shrink: 0;
    font-feature-settings: "tnum";
}

.news-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========================================
   sec-cta / CONTACT US
======================================== */
.sec-cta {
    position: relative;
    height: 528px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-black);
}

.sec-cta-bg {
    position: absolute;
    inset: 0;
}

.sec-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-cta-contents {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
    padding: 0 24px;
}

.cta-title {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: .04em;
    color: var(--color-white);
    margin: 0;
}

.cta-title .cta-c {
    color: var(--color-tag-bg);
}

.cta-title .cta-us {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-white);
}

.cta-desc {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .05em;
    color: var(--color-white);
    margin: 0;
}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--color-service-bg);
    padding: 48px 24px;
}

.footer-inner {
    max-width: 1328px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.footer-logo {
    display: block;
    width: 250px;
    height: 250px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    width: 100%;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 24px 0;
}

.footer-item {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity .3s ease;
}

.footer-item a:hover {
    opacity: .65;
}

.footer-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-label {
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .1em;
    color: var(--color-black);
    text-align: center;
}

.footer-copy {
    font-family: var(--font-jp);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .2em;
    color: var(--color-black);
    text-align: center;
    margin: 0;
}

.concierge-label {
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: .1em;
    color: var(--color-black);
    text-align: center;
    margin: 0;
}

/* ========================================
   PC (≥1024px): .main 全体を gnavi 分シフトして
   各セクション内で純粋な 50/50 を実現
   コンテンツの breathing room は各セクション内側で確保
======================================== */
@media (min-width: 1024px) {
    .main {
        padding-left: var(--gnavi-width);
    }
    /* 左側コンテンツに内側余白を追加 (gnavi との視覚的なゆとり) */
    .sec-concierge-contents {
        padding-left: 20px;
    }
    .sec-works-contents {
        padding-left: 20px;
    }
    .service-item.is-reverse .service-contents {
        padding-left: 20px;
    }
    /* footer は .main の外にあるため、gnavi 分を左パディングで吸収して中央配置のバランスを取る */
    .footer {
        padding-left: calc(24px + var(--gnavi-width));
    }
}

/* ========================================
   PC narrow (1024-1280px): コンテンツが gnavi に
   隠れないよう font-size / 余白を縮小
======================================== */
@media (min-width: 1024px) and (max-width: 1280px) {
    .sec-title-en {
        font-size: 64px;
    }
    .sec-title-num {
        font-size: 160px;
    }
    .service-title-en {
        font-size: 52px;
    }
    .cta-title {
        font-size: 64px;
    }
    .sec-service-marquee-text {
        font-size: 160px;
    }
    .sec-service-marquee {
        height: 150px;
    }
    .sec-service-marquee-track {
        margin-top: -40px;
    }
}

/* ========================================
   レスポンシブ: タブレット (≤1023px)
   2分割レイアウトを維持しつつテキスト・余白を縮小
======================================== */
@media (max-width: 1023px) {
    /* 共通: セクションタイトル縮小 */
    .sec-title-en {
        font-size: 56px;
    }
    .sec-title-num {
        font-size: 140px;
    }

    /* sec-about */
    .sec-about {
        height: 720px;
    }
    .sec-about-contents {
        padding-left: 24px;
        padding-right: 16px;
        gap: 40px;
    }
    .sec-about-message {
        max-width: none;
        font-size: 14px;
    }

    /* sec-concierge */
    .sec-concierge {
        height: auto;
        min-height: 720px;
        padding: 0; /* 余白は中身に持たせて、image が全高さに伸びるように */
    }
    .sec-concierge-contents {
        padding: 60px 24px 60px 16px;
        gap: 40px;
    }
    .sec-concierge-image {
        align-self: stretch;
        height: auto;
    }
    .sec-concierge-contents > * {
        max-width: none;
    }
    .sec-concierge-message {
        font-size: 14px;
    }
    .concierge-list {
        flex-wrap: wrap;
        gap: 24px 16px;
        justify-content: flex-end;
    }
    .concierge-item {
        width: calc(50% - 8px);
    }

    /* sec-service */
    .sec-service {
        padding-top: 160px;
    }
    .sec-service-marquee {
        height: 140px;
    }
    .sec-service-marquee-text {
        font-size: 140px;
    }
    .sec-service-marquee-track {
        margin-top: -36px;
    }
    .sec-title-center {
        padding-bottom: 60px;
    }
    .service-item {
        height: 440px;
    }
    .service-contents {
        padding-left: 24px;
        padding-right: 16px;
        gap: 32px;
    }
    .service-item.is-reverse .service-contents {
        padding-left: 16px;
        padding-right: 24px;
    }
    .service-title-en {
        font-size: 44px;
    }
    .service-message {
        font-size: 14px;
    }

    /* sec-paints */
    .sec-paints {
        padding-top: 100px;
    }
    .sec-paints .sec-title-center {
        padding-bottom: 80px;
    }
    .paints-list {
        padding-left: 0; /* gnaviスペース不要 */
    }
    .paint-item {
        height: 300px;
    }
    .paint-logo,
    .paint-logo img {
        width: 120px;
        height: 120px;
    }
    .paint-brand {
        font-size: 36px;
    }
    .paint-desc {
        font-size: 14px;
    }

    /* sec-works */
    .sec-works {
        height: 720px;
    }
    .sec-works-contents {
        padding-right: 24px;
        padding-left: 16px;
    }
    .sec-works-block {
        width: 100%;
        max-width: none;
        gap: 32px;
    }
    .sec-works-message {
        font-size: 14px;
    }
    .works-meta {
        height: auto;
        min-height: 100px;
    }
    .works-title {
        font-size: 16px;
    }
    .works-desc {
        font-size: 13px;
    }

    /* sec-news */
    .sec-news {
        height: 720px;
    }
    .sec-news-contents {
        padding-left: 24px;
        padding-right: 16px;
    }
    .sec-news-block {
        width: 100%;
        max-width: none;
        gap: 40px;
    }
    .news-item a {
        font-size: 13px;
        gap: 1em;
        letter-spacing: .05em;
    }

    /* sec-cta */
    .cta-title {
        font-size: 56px;
    }

    /* footer */
    .footer-item {
        width: 25%;
        min-width: 80px;
    }
}

/* ========================================
   レスポンシブ: SP (≤767px)
   1023 ブロックより後に書いて、確実に上書き
======================================== */
@media (max-width: 767px) {
    /* 共通: セクションタイトル */
    .sec-title-en {
        font-size: 38px;
    }
    .sec-title-num {
        font-size: 120px;
        left: 65%;
    }
    .sec-concierge .sec-title-num,
    .sec-works .sec-title-num {
        left: 65%;
    }
    .sec-title-sub-line {
        width: 40px;
    }

    /* sec-about: 高さを min-height ベースに */
    .sec-about {
        height: auto;
        min-height: 720px;
    }
    .sec-about-image {
        align-self: stretch;
        height: auto;
    }

    /* sec-concierge: 左寄せに統一 */
    .sec-concierge-contents {
        align-items: stretch;
    }
    .concierge-list {
        justify-content: flex-start;
    }

    /* sec-service */
    .service-title-en {
        font-size: 34px;
    }
    .sec-service-marquee-text {
        font-size: 100px;
    }
    .sec-service-marquee {
        height: 110px;
    }
    .sec-service-marquee-track {
        margin-top: -28px;
    }

    /* sec-paints */
    .paint-logo,
    .paint-logo img {
        width: 100px;
        height: 100px;
    }

    /* sec-cta */
    .cta-title {
        font-size: 40px;
    }

    /* MORE ボタンは中央配置に */
    .sec-more {
        justify-content: center;
    }

    /* SP menu overlay */
    .sp-menu-item {
        width: 130px;
    }
    .sp-menu-label {
        font-size: 12px;
    }
}

/* ========================================
   レスポンシブ: 小型SP (≤559px)
   左右分割セクションを上下分割 (stack) に変更
======================================== */
@media (max-width: 559px) {
    /* sec-main */
    .sec-main-catch {
        max-width: 220px;
    }

    /* sec-title-num の位置調整 */
    .sec-title-num,
    .sec-concierge .sec-title-num,
    .sec-works .sec-title-num {
        left: 80%;
    }

    /* セクションを縦並びに */
    .sec-about,
    .sec-news {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }
    /* sec-concierge は image を上に */
    .sec-concierge {
        flex-direction: column-reverse;
        height: auto;
        min-height: 0;
    }
    .sec-works {
        grid-template-columns: 1fr;
        height: auto;
    }
    .service-item,
    .service-item.is-reverse {
        flex-direction: column;
        height: auto;
    }

    /* 画像エリアは全幅・固定高さ (service-image と揃える) */
    .sec-about-image,
    .sec-concierge-image,
    .sec-news-image,
    .service-image,
    .works-thumb {
        flex: none;
        width: 100%;
        height: 240px;
        align-self: auto;
    }
    .sec-about-image img,
    .sec-concierge-image img,
    .sec-news-image img,
    .service-image img,
    .works-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* コンテンツ側も全幅・モバイル余白 */
    .sec-about-contents,
    .sec-concierge-contents,
    .sec-news-contents,
    .sec-works-contents,
    .service-contents,
    .service-item.is-reverse .service-contents {
        flex: none;
        width: 100%;
        padding: 40px 24px;
        justify-content: flex-start;
    }

    /* service-inner gap */
    .service-inner {
        gap: 24px;
    }

    .works-item {
        width: 100%;
    }

    /* sec-works / sec-news の MORE ボタンを中央寄せ */
    .sec-works .btn-more,
    .sec-news .btn-more {
        align-self: center;
    }

    /* sec-paints */
    .paint-logo,
    .paint-logo img {
        width: 80px;
        height: 80px;
    }
    .paint-item {
        height: 240px;
    }
    .paint-brand {
        font-size: 30px;
    }
    .paint-name {
        padding-top: 24px;
    }

    /* sec-cta */
    .sec-cta {
        height: 368px;
    }

    /* btn-more */
    .btn-more {
        width: 130px;
        height: 40px;
        font-size: 14px;
    }

    /* footer */
    .footer-logo {
        width: 160px;
        height: 160px;
    }
    .footer-inner {
        gap: 32px;
    }
    .footer-menu {
        gap: 24px 16px;
    }
    .footer-label {
        font-size: 12px;
    }
}
