 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Noto Sans JP", sans-serif;
            background: #fff;
            color: #111;
        }

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

        /* =========================
           HEADER（RADIS風 2段構成）
        ========================== */
        header {
            ms-flex-preferred-size: 100%;
            flex-basis: 100%;
            -ms-flex-positive: 1;
            flex-grow: 1;
            -ms-flex-align: center;
            align-items: center;
            display: flex;
            /* position: relative; */
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-pack: justify;
            /* justify-content: space-between; */

            background-color: #073a5e;
            position: fixed;
            top: 0;
            max-width: 100%;
            left: 0;
            width: 100%;
            z-index: 100;
        }

        /* 上段：白＋ロゴ */
        .header-topbar {
            /*
            background: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            */
        }

        .header-top-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 8px 16px;
            display: flex;
            align-items: center;
        }

        .header-logo img {
            height: 75px;
            width: auto;
            display: block;
        }

        /* 下段：ネイビーメニュー＋オレンジTEL */
        .header-navbar {
            flex-grow: 1;
            -ms-flex-align: center;
            align-items: center;
            background: #053b60; /* 紺色 */
        }

        .header-nav-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr auto;
        }

        nav {
            display: flex;
        }

        nav a {
            flex: 1;
            text-align: center;
            padding: 14px 0 10px;
            font-size: 16px;
            color: #ffffff;
            position: relative;
        }

        nav a span {
            display: block;
            font-size: 10px;
            opacity: 0.8;
        }

        nav a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 3px;
            background: #f97316;
            transform: translateX(-50%);
            transition: width .25s;
        }

        nav a:hover::after {
            width: 70%;
        }

        .header-tel-block {
            display: flex;
            align-items: stretch;
            font-size: 13px;
            color: #ffffff;
        }

        .header-tel-label {
            background: #f39b17;
            padding: 10px 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .header-tel-number {
            background: #f97316;
            padding: 10px 18px;
            font-weight: 700;
            display: flex;
            flex-direction: column;
            justify-content: center;
            white-space: nowrap;
        }

        .header-tel-number span {
            font-size: 11px;
            font-weight: 400;
            opacity: 0.9;
        }

        /* =========================
           MAIN VISUAL
        ========================== */
        .main {
            width: 100%;
            height: 800px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-bottom: 40px; /* ↓下のfeatureと少し余白 */
        }

        .catchcopy {
            position: absolute;
            z-index: 10;
            top: 50%;
            left: 5vw;
            transform: translateY(-50%);
            color: #fff;
            max-width: 520px;
        }

        .catchcopy .txt-l {
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 700;
            letter-spacing: 0.18em;
            line-height: 1.1;
        }

        .catchcopy .txt-m {
            margin-top: 20px;
            font-size: 16px;
        }

        .catchcopy .txt-s {
            margin-top: 12px;
            font-size: 13px;
            line-height: 1.7;
        }

        /* Swiper 部分（右側の写真） */
        .main .inner {
            width: 60%;
            margin-left: auto;
            height: 100%;
            position: relative;
        }

        .top-swiper,
        .top-swiper .swiper-wrapper,
        .top-swiper .swiper-slide {
            width: 100%;
            height: 100%;
        }

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

        /* 左の背景（画像 or 色） */
        .main .bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 85%;
            height: 900px;
            background-position: top;
            background-image: url(../img-cambana/bg-img.png);
            z-index: -1;
        }

        /* =========================
           FEATURE STRIP（三つのポイント）
        ========================== */
        .feature-strip {
            background: #ffffff;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
        }

        .feature-strip-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 24px 16px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            font-size: 14px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            border: 1px solid #f97316;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            background: #fff7ed;
        }

        .feature-text b {
            display: block;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .feature-text span {
            font-size: 13px;
            color: #4b5563;
        }
/* =========================
   COMPANY PROFILE（会社案内）
========================== */
.company-hero {
    text-align: center;
    padding: 80px 16px 40px;
}

.company-hero-title {
    font-size: clamp(34px, 5vw, 52px);
    letter-spacing: 0.25em;
    color: #f39b17; /* オレンジ */
    font-weight: 500;
    margin-bottom: 6px;
}

.company-hero-sub {
    font-size: 16px;
    color: #374151;
}

/* 本文エリア（左：紺色プロフィール 右：ビル画像） */
.company-wrap {
    background: #0b3b57; /* 紺色帯 */
    color: #fff;
}

.company-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    min-height: 420px;
}

/* 左側：会社情報テーブル風 */
.company-left {
    padding: 56px 64px 64px;
    position: relative;
}

/* 上下の点線 */
.company-left::before {
    content: "";
    position: absolute;
    left: 56px;
    right: 56px;
    top: 32px;
    border-top: 1px dashed rgba(255,255,255,0.6);
}
.company-left::after {
    content: "";
    position: absolute;
    left: 56px;
    right: 56px;
    bottom: 32px;
    border-top: 1px dashed rgba(255,255,255,0.6);
}

.company-table {
    margin-top: 32px;
}

.company-row {
    display: flex;
    padding: 18px 0;
    border-top: 1px dashed rgba(255,255,255,0.35);
}

.company-row:first-child {
    border-top: none;
}

.company-label {
    width: 120px;
    font-size: 14px;
    opacity: 0.9;
}

.company-value {
    flex: 1;
    font-size: 14px;
}

/* 右側：ビル写真 */
.company-right {
    position: relative;
    overflow: hidden;
}

.company-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
        /* =========================
   BUSINESS（事業内容）
========================== */
.business-section {
    padding: 80px 16px 90px;
    background: #f9fafb;
}

.business-header {
    text-align: center;
    max-width: 1180px;
    margin: 0 auto 36px;
    position: relative;
}

.business-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    border: 2px solid #f39b17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0ea5e9;
    margin: 0 auto 14px;
}

.business-title {
    font-size: clamp(24px, 4vw, 32px);
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}

.business-sub {
    font-size: 14px;
    color: #4b5563;
}

/* タイトルの下の点線 */
.business-divider {
    max-width: 1180px;
    margin: 22px auto 0;
    border-top: 2px dotted #053b60;
}

/* 本文ボックス */
.business-card {
    max-width: 980px;
    margin: 40px auto 0;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px 30px;
    box-shadow: 0 14px 40px rgba(15,23,42,0.08);
    font-size: 15px;
    line-height: 1.9;
}

.business-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.business-card p.lead {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 18px;
}

/* 番号付きリスト */
.business-list {
    margin: 0;
    padding-left: 1.2em;
    font-size: 14px;
    color: #111827;
}

.business-list li + li {
    margin-top: 4px;
}
       /* =========================
   HOTELS HERO（Business風レイアウト）
========================== */
.hotel-hero {
    padding: 80px 0 110px;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}

.hotel-hero-inner {
/*    max-width: 1180px;*/
    margin: 0 auto;
/*    padding: 0 16px;*/
}

/* 大きな箱（左が写真、右がカード） */
.hotel-hero-frame {
    position: relative;
margin-top: 100px;
/*    overflow: hidden;*/
    background: #f3f4f6;
}

/* ▼▼ 背景スクロール英字（OUR HOTEL） ▼▼ */
.hotel-scroll-bg {
     position: absolute;
     top: 9%; 
    left: 0;
    width: 50%;
    transform: translateY(-33%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.hotel-scroll-text {
    font-size: 11em;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    padding: 0 30px;
    display: inline-block;
    animation: hotelScroll 25s linear infinite;
}

@keyframes hotelScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3%); }
}

/* 左側：写真 */
.hotel-hero-photo {
    position: relative;
    z-index: 2;
    width: 60%;
    height: 440px;
    overflow: hidden;
}

.hotel-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 右側：白いカード（Businessのカード部分） */
.hotel-hero-card {
    position: absolute;
    z-index: 3;
    right: 63px;
    top: 50%;
    transform: translateY(-32%);
    width: min(540px, 42%);
    background: #ffffff;
    border-radius: 48px;
    padding: 40px 48px 40px 52px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

/* 見出し */
.hotel-hero-kicker {
    font-size: 14px;
    color: #f39b17;
    font-weight: 600;
    margin-bottom: 10px;
}

.hotel-hero-title {
    font-size: clamp(26px, 4vw, 34px);
    margin-bottom: 18px;
}

.hotel-hero-divider {
    width: 42px;
    height: 3px;
    background: #f39b17;
    border-radius: 999px;
    margin: 18px 0 22px;
}

.hotel-hero-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.9;
}

/* More ボタン */
.hotel-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    padding: 10px 26px;
    border-radius: 999px;
    background: #f39b17;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.hotel-hero-btn span {
    margin-left: 6px;
}
        /* ================================
   CONTACT SECTION（お問い合わせ）
================================ */
.contact-section {
    background: #1b232d; /* 上部：濃いネイビー */
    text-align: center;
    padding: 110px 16px 90px;
    color: #fff;
}

.contact-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 15px;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 36px;
}

/* ボタン配置 */
.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

/* メールボタン */
.contact-btn-mail {
    background: #fbbf24;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 16px;
    color: #111827;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(251,191,36,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 電話ボタン */
.contact-btn-tel {
    padding: 14px 32px;
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: 16px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   FOOTER（コピーライト）
================================ */
.footer {
    background: #111827; /* より濃いネイビー */
    text-align: center;
    padding: 22px 16px;
    color: #9ca3af;
    font-size: 13px;
}


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

    .hotel-scroll-text {
        font-size: 6em;
        animation-duration: 18s;
    }

    .hotel-hero-photo {
        width: 100%;
        height: 260px;
    }

    .hotel-hero-card {
        position: static;
        transform: none;
        width: 100%;
        border-radius: 0 0 32px 32px;
        padding: 26px 22px 30px;
        box-shadow: none;
        z-index: 5;
    }
}

/* スマホ調整 */
@media (max-width: 640px) {
    .business-card {
        padding: 26px 20px 24px;
    }
}


/* SP レイアウト */
@media (max-width: 960px) {
    .company-inner {
        grid-template-columns: 1fr;
    }
    .company-left {
        padding: 40px 20px 48px;
    }
    .company-left::before,
    .company-left::after {
        left: 20px;
        right: 20px;
    }
}

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

            .header-top-inner,
            .header-nav-inner {
                max-width: 100%;
                padding-inline: 10px;
            }

            nav {
                display: none; /* シンプルにSPでは非表示 */
            }

            .header-tel-block {
                grid-column: 1 / -1;
                justify-content: flex-end;
            }

            .main {
                height: 520px;
                margin-top: 110px;
            }

            .main .bg {
                width: 100%;
                height: 60%;
            }

            .catchcopy {
                top: 18%;
                left: 6vw;
                transform: translateY(0);
                max-width: 85%;
            }

            .catchcopy .txt-l {
                font-size: clamp(30px, 8vw, 40px);
            }

            .main .inner {
                width: 100%;
            }

            .feature-strip-inner {
                grid-template-columns: 1fr;
            }
        }