@charset "UTF-8";
/* ---------------------------------------------------
reset
--------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;vertical-align: bottom;}
body, html {padding:0;margin:0}h1,h2,h3,h4,p,figure,picture,blockquote,ul,li,dl,dd{margin:0;}
ul,ol{list-style:none}
h1,h2,h3,h4{text-align:left;font-size:inherit;}
i,s{font-style:normal;}
a:not([class]){color:currentColor}
img,figure,picture{display:block;max-width:100%;height:auto;margin-inline:auto;}
input,button,textarea,select{font:inherit}
textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}
button{all:unset;display:revert}
table {border-collapse:collapse}
textarea {white-space:revert}

:root {
    --primary-blue: #04046e;
    --accent-gold: #c5a059;
    --soft-blue: #f0f7ff;
    --text-color: #333;
    /* コーポレートカラー */
    --corporate-red: #c73648;
    --corporate-green: #387947;
    --corporate-orange: #cd693a;
    --corporate-blue: #037eb7;
    /* フォントサイズ */
    --text-xs: 15px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 40px;
    --text-4xl: 52px;
    /* 共通 */
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
    --radius-card: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fff;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    -webkit-text-size-adjust: 100%;
    @media (max-width: 768px) {
        font-size: var(--text-sm);
    }
}

.spOnly {
    display: none;
    @media (max-width: 768px) {
        display: block;
    }
}

/* ========== Global Navigation ========== */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, var(--primary-blue) 0%, color-mix(in srgb, var(--primary-blue) 95%, #000) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.35s ease-out;
    border-bottom: 2px solid var(--accent-gold);

    &.is-scrolled {
        transform: translateY(0);
    }
    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;
        max-width: 1200px;
        margin-inline: auto;
        li {
            margin: 0;
        }
        a {
            position: relative;
            display: block;
            padding: 18px 28px;
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            font-size: var(--text-base);
            font-weight: 500;
            letter-spacing: 0.12em;
            transition: color 0.25s ease, background 0.25s ease;
            &::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                height: 3px;
                background: var(--accent-gold);
                transition: width 0.25s ease;
            }
            &:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.08);
                &::after {
                    width: 100%;
                }
            }
            &.is-active {
                color: #fff;
                font-weight: 700;
                background: rgba(255, 255, 255, 0.1);
                &::after {
                    width: 100%;
                    height: 3px;
                }
            }
        }
    }
    @media (max-width: 1024px) {
        nav ul a {
            padding: 14px 20px;
            font-size: var(--text-xs);
            letter-spacing: 0.08em;
        }
    }
    @media (max-width: 768px) {
        border-bottom-width: 1px;
        nav ul {
            justify-content: flex-start;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-inline: 8px;
            scrollbar-width: none;
            &::-webkit-scrollbar {
                display: none;
            }
        }
        nav ul a {
            padding: 14px 18px;
            font-size: var(--text-sm);
            letter-spacing: 0.1em;
            white-space: nowrap;
        }
    }
}

/* ========== Fixed Contact Button ========== */
.contact-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 14px 24px;
    background: var(--accent-gold);
    color: #fff;
    font-weight: 700;
    font-size: var(--text-base);
    text-decoration: none;
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    &:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 24px rgba(197, 160, 89, 0.5);
    }
    @media (max-width: 768px) {
        bottom: 16px;
        right: 16px;
        min-width: 120px;
        padding: 12px 20px;
        font-size: var(--text-sm);
    }
}

#main {
    max-width: 1200px;
    margin-inline: auto;
    @media (max-width: 1240px) {
        padding-inline: 20px;
    }
    @media (max-width: 768px) {
        padding-inline: 16px;
    }
}

section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    scroll-margin-top: 80px;
    margin-inline: calc(50% - 50vw);
    max-width: 100vw;
    padding-inline: calc(50vw - 50%);
    @media (max-width: 1024px) {
        padding-top: 60px;
        padding-bottom: 60px;
        scroll-margin-top: 60px;
    }
    @media (max-width: 768px) {
        padding-top: 40px;
        padding-bottom: 40px;
        scroll-margin-top: 40px;
        padding-inline: 16px;
    }
}

/* ========== Section heading (common) ========== */
.head {
    text-align: center;
    margin-bottom: 50px;
    font-size: var(--text-4xl);
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    span {
        display: block;
        font-size: var(--text-xs);
        color: var(--accent-gold);
        letter-spacing: 0.2em;
    }
    @media (max-width: 1024px) {
        margin-bottom: 40px;
        font-size: var(--text-3xl);
    }
    @media (max-width: 768px) {
        margin-bottom: 28px;
        font-size: 22px;
        letter-spacing: 0.05em;
        span {
            font-size: 12px;
        }
    }
}
.subHead {
    font-size: var(--text-xl);
    margin-bottom: 8px;
    @media (max-width: 768px) {
        font-size: var(--text-base);
    }
}
.ttl {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    @media (max-width: 768px) {
        font-size: var(--text-base);
    }
}

.center {
    text-align: center;
}
/* ========== Animations ========== */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Hero Section ========== */
#hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--soft-blue);
    background-image:
        radial-gradient(ellipse 180% 180% at -20% -20%, color-mix(in srgb, var(--corporate-blue) 24%, transparent) 0%, transparent 70%),
        radial-gradient(ellipse 180% 180% at 120% -20%, color-mix(in srgb, var(--corporate-orange) 24%, transparent) 0%, transparent 70%),
        radial-gradient(ellipse 180% 180% at 120% 120%, color-mix(in srgb, var(--corporate-red) 24%, transparent) 0%, transparent 70%),
        radial-gradient(ellipse 180% 180% at -20% 120%, color-mix(in srgb, var(--corporate-green) 24%, transparent) 0%, transparent 70%);
    background-size: 100% 100%;
    background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
    background-repeat: no-repeat;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image:
            radial-gradient(ellipse 220% 220% at -25% -25%, color-mix(in srgb, var(--corporate-blue) 18%, transparent) 0%, transparent 65%),
            radial-gradient(ellipse 220% 220% at 125% -25%, color-mix(in srgb, var(--corporate-orange) 18%, transparent) 0%, transparent 65%),
            radial-gradient(ellipse 220% 220% at 125% 125%, color-mix(in srgb, var(--corporate-red) 18%, transparent) 0%, transparent 65%),
            radial-gradient(ellipse 220% 220% at -25% 125%, color-mix(in srgb, var(--corporate-green) 18%, transparent) 0%, transparent 65%);
        background-size: 120% 120%;
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
        background-repeat: no-repeat;
        animation: heroGradientShift 22s ease-in-out infinite;
        pointer-events: none;
    }
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255, 255, 255, 0.9) 0%, transparent 90%);
        pointer-events: none;
    }
    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }
    .hero-bg-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
    }
    .hero-inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        h1 {
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            @media (max-width: 768px) {
                flex-direction: column;
                gap: 16px;
                margin-bottom: 28px;
            }
            img {
                height: 48px;
                width: auto;
                display: block;
                @media (max-width: 768px) {
                    height: 40px;
                }
            }
            span {
                &:first-of-type {
                    display: block;
                    font-weight: 500;
                    letter-spacing: 0.02em;
                    text-align: left;
                    @media (max-width: 768px) {
                        font-size: var(--text-xs);
                    }
                }
                &:last-of-type {
                    display: block;
                    font-size: var(--text-2xl);
                    color: var(--primary-blue);
                    font-weight: 700;
                    line-height: 1.2;
                    @media (max-width: 1024px) {
                        font-size: 26px;
                    }
                    @media (max-width: 768px) {
                        font-size: var(--text-base);
                        text-align: center;
                    }
                }
            }
        }
        figure {
            margin: 0;
            width: 100%;
            max-width: 600px;
            margin-bottom: 24px;
            animation: float 5s ease-in-out infinite;
            @media (max-width: 768px) {
                max-width: 100%;
            }
            img {
                width: 100%;
                height: auto;
                display: block;
            }
        }
        p {
            &:first-of-type {
                font-size: var(--text-4xl);
                color: var(--corporate-blue);
                margin-bottom: 15px;
                font-family: YakuHanMP, 'Noto Serif JP', serif;
                letter-spacing: 0.08em;
                @media (max-width: 1024px) {
                    font-size: var(--text-3xl);
                }
                @media (max-width: 768px) {
                    font-size: var(--text-xl);
                }
            }
            &:nth-of-type(2),
            &:nth-of-type(3) {
                font-size: var(--text-lg);
                margin-bottom: 30px;
                color: var(--text-color);
                @media (max-width: 768px) {
                    font-size: var(--text-base);
                }
            }
            strong {
                color: var(--corporate-blue);
                font-family: YakuHanMP, 'Noto Serif JP', serif;
                letter-spacing: 0.1em;
                font-weight: 400;
                font-size: var(--text-2xl);
                @media (max-width: 1024px) {
                    font-size: 26px;
                }
                @media (max-width: 768px) {
                    font-size: var(--text-lg);
                }
            }
        }
    }
}

@keyframes heroGradientShift {
    0%, 100% {
        opacity: 0.5;
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
    }
    25% {
        opacity: 0.72;
        background-position: 5% 5%, 95% 5%, 95% 95%, 5% 95%;
    }
    50% {
        opacity: 0.45;
        background-position: -3% 2%, 103% 2%, 103% 98%, -3% 98%;
    }
    75% {
        opacity: 0.65;
        background-position: 2% -2%, 98% -2%, 98% 102%, 2% 102%;
    }
}

/* ========== History Section ========== */
#history {
    position: relative;
    background-image: url("../img/bg_history01.webp");
    background-size: 100% auto;
    background-position: center bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.52);
        z-index: 0;
    }
    .head,
    .timeline,
    > p.timeline-message {
        position: relative;
        z-index: 1;
    }
    .timeline {
        list-style: none;
        padding: 0;
        margin: 0;
        max-width: 900px;
        margin-inline: auto;
        position: relative;

        &.fade-in-group > li {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }
        &.fade-in-group.visible > li {
            opacity: 1;
            transform: translateY(0);
            &:nth-child(1) { transition-delay: 0s; }
            &:nth-child(2) { transition-delay: 0.12s; }
            &:nth-child(3) { transition-delay: 0.24s; }
            &:nth-child(4) { transition-delay: 0.36s; }
            &:nth-child(5) { transition-delay: 0.48s; }
        }
        &::before {
            content: '';
            position: absolute;
            left: 50%;
            width: 4px;
            height: 100%;
            background: color-mix(in srgb, var(--soft-blue) 50%, var(--accent-gold) 50%);
            transform: translateX(-50%);
            @media (max-width: 768px) {
                left: 20px;
            }
        }
        > li {
            margin-bottom: 10px;
            width: 45%;
            position: relative;
            &::before {
                content: '';
                position: absolute;
                top: 2em;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--accent-gold);
                border: 2px solid #fff;
                box-shadow: 0 0 0 2px var(--accent-gold);
                z-index: 1;
            }
            &:nth-child(even) {
                margin-left: auto;
                text-align: left;
                &::before {
                    left: -11.11%;
                    transform: translateX(-50%);
                }
            }
            &:nth-child(odd) {
                text-align: right;
                &::before {
                    left: 111.11%;
                    transform: translateX(-50%);
                }
                .subHead {
                    text-align: left;
                }
            }
            .subHead {
                margin-bottom: 6px;
            }
            p {
                line-height: 1.75;
                text-align: left;
            }
            > span {
                font-size: var(--text-3xl);
                font-weight: 700;
                color: var(--accent-gold);
                display: block;
                @media (max-width: 1024px) {
                    font-size: var(--text-2xl);
                }
                @media (max-width: 768px) {
                    font-size: var(--text-xl);
                }
            }
            @media (max-width: 768px) {
                width: 100%;
                text-align: left !important;
                padding-left: 45px;
                &:nth-child(odd)::before,
                &:nth-child(even)::before {
                    left: 20px;
                    transform: translateX(-50%);
                }
            }
        }
    }
    > p.timeline-message {
        width: 100%;
        margin-inline: auto;
        margin-top: 72px;
        padding-top: 32px;
        text-align: center;
        font-weight: 500;
        color: var(--corporate-blue);
        font-family: YakuHanMP, 'Noto Serif JP', serif;
        letter-spacing: 0.08em;
        line-height: 1.5;
        font-size: var(--text-3xl);
        @media (max-width: 1024px) {
            margin-top: 56px;
            font-size: var(--text-2xl);
        }
        @media (max-width: 768px) {
            margin-top: 40px;
            padding: 0 16px;
            font-size: var(--text-lg);
        }
    }
}

/* ========== Services Section ========== */
#services {
    background: var(--soft-blue);
    .head {
        margin-bottom: 0;
    }
    .section-lead {
        position: relative;
        text-align: center;
        margin-bottom: 44px;
        font-size: var(--text-xl);
        color: var(--primary-blue);
        font-family: YakuHanMP, 'Noto Serif JP', serif;
        letter-spacing: 0.08em;
        line-height: 1.4;
        font-weight: 700;
        @media (max-width: 1024px) {
            margin-bottom: 36px;
            font-size: 22px;
        }
        @media (max-width: 768px) {
            margin-bottom: 32px;
            font-size: var(--text-sm);
        }
    }
    >.subHead {
        text-align: center;
        margin-bottom: 24px;
        font-size: var(--text-2xl);
        color: var(--primary-blue);
        letter-spacing: 0.08em;
        line-height: 1.4;
        @media (max-width: 1024px) {
            font-size: 28px;
        }
        @media (max-width: 768px) {
            margin-bottom: 18px;
            font-size: var(--text-lg);
        }
    }
    nav {
        > ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            margin-inline: auto;
            @media (max-width: 1024px) {
                gap: 24px;
            }
            @media (max-width: 768px) {
                gap: 12px;
            }
            li {
                margin: 0;
                width: calc((100% - 120px) / 3);
                display: flex;
                min-width: 0;
                @media (max-width: 1024px) {
                    width: calc((100% - 48px) / 3);
                }
                @media (max-width: 768px) {
                    width: calc((100% - 24px) / 3);
                }
                a {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    width: 100%;
                    min-height: 100%;
                    border-radius: 15px;
                    transition: transform 0.3s ease;
                    cursor: pointer;
                    text-decoration: none;
                    color: inherit;
                    padding-bottom: 20px;
                    @media (max-width: 768px) {
                        padding-bottom: 12px;
                        gap: 4px;
                    }
                    &::before {
                        content: '';
                        position: absolute;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        margin: auto;
                        width: 28px;
                        height: 28px;
                        border-left: 3px solid var(--accent-gold);
                        border-bottom: 3px solid var(--accent-gold);
                        transform: rotate(-45deg);
                        z-index: 1;
                        transition: ease-in-out 0.3s;
                    }
                    .catch {
                        text-align: center;
                        font-family: YakuHanMP, 'Noto Serif JP', serif;
                        letter-spacing: 0.08em;
                        font-weight: 700;
                        font-size: var(--text-xl);
                        color: var(--corporate-blue);
                        @media (max-width: 1024px) {
                            font-size: var(--text-lg);
                        }
                        @media (max-width: 768px) {
                            font-size: var(--text-xs);
                        }
                    }
                    figure {
                        position: relative;
                        width: 100%;
                        flex-shrink: 0;
                        border-radius: 20px;
                        overflow: hidden;
                        aspect-ratio: 1 / 1;
                        transition: ease-in-out 0.3s;
                        &::before {
                            content: '';
                            position: absolute;
                            inset: 0;
                            background: rgba(0, 0, 0, 0.3);
                            transition: ease-in-out 0.3s;
                            z-index: 2;
                        }
                        img {
                            transition: ease-in-out 0.3s;
                            z-index: 1;
                        }
                        figcaption {
                            position: absolute;
                            inset: 0;
                            margin: auto;
                            height: 1em;
                            line-height: 1;
                            z-index: 3;
                            font-size: var(--text-2xl);
                            color: #fff;
                            text-align: center;
                            letter-spacing: 0.08em;
                            font-family: YakuHanMP, 'Noto Serif JP', serif;
                            font-weight: 400;
                            @media (max-width: 1024px) {
                                font-size: var(--text-xl);
                            }
                            @media (max-width: 768px) {
                                font-size: var(--text-base);
                            }
                        }
                    }
                    .ttl {
                        text-align: center;
                        font-size: var(--text-lg);
                        color: var(--primary-blue);
                        margin-bottom: 0;
                        @media (max-width: 768px) {
                            font-size: 12px;
                            line-height: 1.3;
                        }
                    }
                    p {
                        font-size: var(--text-xs);
                        @media (max-width: 768px) {
                            font-size: 11px;
                            display: none;
                        }
                    }
                    &:hover {
                        &::before {
                            bottom: -10px;
                        }
                        figure {
                            border-radius: 50%;
                            img {
                                transform: scale(1.1);
                            }
                        }
                    }
                }
            }
        }
    }
    > p:last-of-type {
        text-align: center;
        margin: 40px auto 0;
        max-width: 1200px;
        color: var(--text-color);
        line-height: 1.9;
        span:nth-child(2),
        span:nth-child(4) {
            margin: 0 8px;
            color: var(--accent-gold);
        }
        span:last-of-type {
            display: block;
            text-align: center;
            font-weight: 500;
            color: var(--corporate-blue);
            font-family: YakuHanMP, 'Noto Serif JP', serif;
            letter-spacing: 0.08em;
            line-height: 1.5;
            font-size: var(--text-3xl);
            @media (max-width: 1024px) {
                font-size: var(--text-2xl);
            }
            @media (max-width: 768px) {
                font-size: var(--text-xl);
            }
        }
    }
}

/* ========== Service Detail Sections ========== */
#scanner,
#drone,
#matterport {
    header {
        margin-bottom: 24px;
        @media (max-width: 768px) {
            margin-bottom: 20px;
        }
        h2 {
            text-align: center;
            font-size: var(--text-4xl);
            color: var(--primary-blue);
            margin-bottom: 8px;
            border-bottom: 3px solid var(--accent-gold);
            @media (max-width: 1024px) {
                font-size: 36px;
            }
            @media (max-width: 768px) {
                font-size: var(--text-lg);
                margin-bottom: 6px;
            }
        }
        p {
            font-size: var(--text-lg);
            color: var(--text-color);
            margin: 0;
            line-height: 1.8;
            @media (max-width: 768px) {
                font-size: var(--text-sm);
            }
        }
    }
    > figure img {
        width: 100%;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-card);
    }
    > div {
        line-height: 1.9;
    }
    .subHead {
        text-align: center;
        color: var(--primary-blue);
        font-size: var(--text-2xl);
        margin-top: 24px;
        margin-bottom: 8px;
        @media (max-width: 1024px) {
            font-size: 28px;
        }
        @media (max-width: 768px) {
            font-size: var(--text-base);
            margin-top: 20px;
        }
        &.lightBlue {
            color: var(--corporate-blue);
            margin-top: 60px;
            @media (max-width: 1024px) {
                margin-top: 48px;
            }
            @media (max-width: 768px) {
                margin-top: 40px;
            }
        }
        + p.center {
            @media (max-width: 768px) {
                text-align: left;
                font-size: var(--text-sm);
                br {
                    display: none;
                }
            }
        }
    }
    ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 16px;
        li {
            position: relative;
            padding-left: 19px;
            margin-bottom: 8px;
            &::before {
                content: '・';
                position: absolute;
                left: 0;
                color: var(--accent-gold);
            }
        }
    }
    .icon-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 16px;
        margin-bottom: 32px;
        @media (max-width: 1024px) {
            gap: 20px;
            margin-bottom: 28px;
        }
        @media (max-width: 768px) {
            gap: 8px;
            margin-top: 12px;
            margin-bottom: 20px;
        }
    }
    .scene-list.swiper {
        margin-top: 16px;
        margin-bottom: 32px;
        @media (max-width: 768px) {
            margin-inline: -16px;
            padding-inline: 16px;
            margin-bottom: 20px;
        }
        .swiper-pagination {
            display: none;
            @media (max-width: 768px) {
                display: block;
                position: relative;
                margin-top: 16px;
            }
        }
    }
    .scene-list .swiper-slide {
        padding-left: 0;
        margin-bottom: 0;
        min-width: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        background: var(--corporate-blue);
        color: #fff;
        border-radius: var(--radius-card);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        &::before { content: none; }
        figure {
            margin: 0;
            aspect-ratio: 3 / 2;
            overflow: hidden;
            background: #e8eef5;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                border-radius: 0;
                box-shadow: none;
            }
            @media (max-width: 768px) {
                aspect-ratio: 26 / 9;
            }
        }
        .ttl {
            padding: 16px 19px 4px;
            font-size: var(--text-lg);
            font-weight: 700;
            color: #fff;
            @media (max-width: 768px) {
                padding: 8px 12px 4px;
                font-size: var(--text-base);
            }
        }
        p {
            margin: 0;
            padding: 0 19px 22px;
            line-height: 1.75;
            @media (max-width: 768px) {
                padding: 0 12px 12px;
                font-size: 12px;
                line-height: 1.4;
            }
        }
    }
    .icon-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        max-width: 900px;
        margin-inline: auto;
        border: 3px solid var(--primary-blue);
        border-radius: var(--radius-card);
        padding: 24px;
        box-shadow: var(--shadow-card);
        @media (max-width: 768px) {
            padding: 12px;
            gap: 16px;
        }
        li {
            padding-left: 0;
            margin-bottom: 0;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            &::before { content: none; }
            figure {
                margin: 0;
                padding: 16px 0 0;
                line-height: 1;
                width: 100px;
                height: 100px;
                @media (max-width: 768px) {
                    width:  70px;
                    height: 70px;
                    padding: 8px 0 0;
                }
                img {
                    max-width: 100px;
                    max-height: 100px;
                    box-shadow: none;
                    @media (max-width: 768px) {
                        max-width: 70px;
                        max-height: 70px;
                    }
                }
            }
            .ttl {
                margin-top: 24px;
                padding: 8px 19px 4px;
                font-size: var(--text-lg);
                font-weight: 700;
                color: var(--primary-blue);
                @media (max-width: 768px) {
                    margin-top: 4px;
                    padding: 4px 4px 0;
                    font-size: var(--text-base);
                }
            }
            p {
                margin: 0;
                padding: 0 19px;
                line-height: 1.75;
                @media (max-width: 768px) {
                    padding: 0 4px;
                    font-size: var(--text-xs);
                    line-height: 1.3;
                }
            }
            &:nth-child(1) {
                flex: 0 0 100%;
            }
            &:nth-child(2),
            &:nth-child(3) {
                flex: 0 0 calc((100% - 24px) / 2);
                max-width: 280px;
            }
        }
    }
    > div > p:last-of-type {
        margin-top: 24px;
        text-align: center;
        font-weight: 500;
        color: var(--corporate-blue);
        font-family: YakuHanMP, 'Noto Serif JP', serif;
        letter-spacing: 0.08em;
        line-height: 1.5;
        font-size: var(--text-3xl);
        @media (max-width: 1024px) {
            font-size: var(--text-2xl);
        }
        @media (max-width: 768px) {
            margin-top: 18px;
            font-size: var(--text-base);
        }
    }
}

/* ========== Company Info ========== */
#company {
    table.company-info {
        width: 100%;
        max-width: 900px;
        margin-inline: auto;
        border-collapse: collapse;
        tbody tr {
            @media (max-width: 768px) {
                display: block;
                border-bottom: 1px solid #eee;
            }
        }
        th {
            width: 30%;
            padding: 15px 15px 8px 0;
            border-bottom: 1px solid #eee;
            color: var(--primary-blue);
            font-weight: 500;
            text-align: left;
            vertical-align: top;
            @media (max-width: 768px) {
                width: 100%;
                display: block;
                padding-bottom: 4px;
                border-bottom: none;
            }
        }
        td {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            line-height: 1.8;
            vertical-align: top;
            @media (max-width: 768px) {
                display: block;
                padding-top: 8px;
                border-bottom: none;
            }
            a {
                color: var(--primary-blue);
                text-decoration: underline;
                &:hover {
                    color: var(--corporate-blue);
                }
            }
        }
    }
    address {
        font-style: normal;
    }
    > .company-map {
        margin: 80px auto 0;
        padding: 0;
        max-width: 900px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        @media (max-width: 768px) {
            margin-top: 48px;
        }
        iframe {
            display: block;
            width: 100%;
            height: 320px;
            border: 0;
            @media (max-width: 768px) {
                height: 260px;
            }
        }
    }
}

/* ========== Footer ========== */
footer {
    background: linear-gradient(135deg,
        var(--primary-blue) 0%,
        color-mix(in srgb, var(--primary-blue) 92%, var(--corporate-blue) 8%) 50%,
        var(--primary-blue) 100%);
    color: #fff;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    @media (max-width: 1024px) {
        padding: 32px 24px;
        margin-top: 48px;
    }
    @media (max-width: 768px) {
        padding: 24px 16px;
        margin-top: 40px;
        font-size: 10px;
    }
}
