/* ==========================================================================
   MOMO ESTATE - TOP page
   Based on Figma: HIX1tab4WGFjufev5DFMjp / node 269:390 (20260428 TOP02)
   ========================================================================== */

/* CSS Custom Properties (Design Tokens) ------------------------------------ */
:root {
    --color-brown:        #ac8e5c;
    --color-brown-soft:   #a2956f;
    --color-text:         #000000;
    --color-text-soft:    #313131;
    --color-text-gray:    #707070;
    --color-text-light:   #898989;
    --color-text-mute:    #afafaf;
    --color-text-sub:     #6c6c6c;
    --color-text-line:    #848484;
    --color-bg:           #ffffff;
    --color-bg-dark:      #1c1c1c;
    --color-line:         #e5e5e5;

    --font-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN", serif;
    --font-gothic: "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    --font-en:     "Cinzel", "Cormorant Garamond", serif;

    --container: 1248px;
    --header-h: 100px;
}

/* Reset ------------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-mincho);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img,svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .7; }
ul,ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1,h2,h3,h4,p { margin: 0; }

/* Utilities --------------------------------------------------------------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.eyebrow {
    font-family: var(--font-en);
    font-weight: 400;
    color: var(--color-brown-soft);
    letter-spacing: .08em;
    text-transform: lowercase;
}
.section-title {
    font-family: var(--font-mincho);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: .04em;
    margin-bottom: 0;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 40px;
}
.section-head .title-wrap .eyebrow {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    height: 40px;
    border: none;
    background: #d9d9d9;
    font-family: var(--font-mincho);
    font-size: 16px;
    color: #707070;
    letter-spacing: .08em;
    transition: background .2s;
}
.read-more:hover { background: #c8c8c8; }
.read-more::after {
    content: "›";
    font-size: 16px;
    color: #707070;
    line-height: 1;
}

/* Header ------------------------------------------------------------------ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(6px);
    z-index: 50;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
    width: 100%;
    max-width: 1820px;
    margin-inline: auto;
    padding-inline: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
    font-family: var(--font-mincho);
    color: var(--color-brown);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: .12em;
}
.brand__sub {
    font-family: var(--font-mincho);
    color: var(--color-text-gray);
    font-size: 12px;
    letter-spacing: .12em;
}
.brand__logo {
    width: 350px;
    height: auto;
    display: block;
}
.gnav { display: flex; align-items: center; gap: 32px; }
.gnav__list { display: flex; gap: 20px; }
.gnav__list a {
    font-size: 15px;
    font-family: var(--font-mincho);
    letter-spacing: .08em;
}
.gnav__actions { display: flex; align-items: stretch; gap: 8px; }
.gnav__btn {
    height: auto;
    padding: 6px 0;
    width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mincho);
    font-size: 13px;
    letter-spacing: .08em;
    white-space: nowrap;
    background: linear-gradient(90deg, #bea973 0%, #e3d0a5 50%, #bea973 100%);
    color: #000;
}
.gnav__btn--dark   { background: linear-gradient(90deg, #4e215c 0%, #966aa4 50%, #4e215c 100%); color: #fff; }
.gnav__btn--accent { background: linear-gradient(90deg, #400014 0%, #9a0055 50%, #400014 100%); color: #fff; }
.gnav__toggle { display: none; }
.br-sp { display: none; }

/* ===== Drawer (mobile) ================================================== */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    transition: opacity .3s;
}
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
    position: absolute;
    top: 0; right: 0;
    width: 280px; height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    padding: 72px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0; background: none; border: none; cursor: pointer; padding: 0;
}
.drawer__close span {
    display: block;
    width: 22px; height: 1.5px;
    background: #333;
}
.drawer__close span:first-child { transform: rotate(45deg) translate(1px, 1px); }
.drawer__close span:last-child  { transform: rotate(-45deg) translate(1px, -1px); }
.drawer__nav { list-style: none; padding: 0; margin: 0; }
.drawer__nav li { border-bottom: 1px solid #f0ede8; }
.drawer__nav a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-mincho);
    font-size: 16px;
    letter-spacing: .06em;
    color: #000;
}
.drawer__btns { display: flex; flex-direction: column; gap: 10px; }
.drawer__btn {
    display: flex; align-items: center; justify-content: center;
    padding: 14px 0;
    font-family: var(--font-mincho);
    font-size: 15px;
    letter-spacing: .06em;
    color: #000;
    background: linear-gradient(90deg, #bea973 0%, #e3d0a5 50%, #bea973 100%);
}
.drawer__btn--dark   { background: linear-gradient(90deg, #4e215c 0%, #966aa4 50%, #4e215c 100%); color: #fff; }
.drawer__btn--accent { background: linear-gradient(90deg, #400014 0%, #9a0055 50%, #400014 100%); color: #fff; }

/* ===== Mobile bottom fixed CTA bar ====================================== */
.mobile-cta-bar {
    display: none;
}
@media (max-width: 999px) {
    .mobile-cta-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 60;
        background: #eeeeee;
        padding: 10px;
        gap: 8px;
    }
    .mobile-cta-bar__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        font-family: var(--font-mincho);
        font-size: 15px;
        letter-spacing: .04em;
        line-height: 1;
        text-align: center;
        color: #000;
        background: linear-gradient(90deg, #bea973 0%, #e3d0a5 50%, #bea973 100%);
    }
    .mobile-cta-bar__btn--dark { background: linear-gradient(90deg, #4e215c 0%, #966aa4 50%, #4e215c 100%); color: #fff; }
    .mobile-cta-bar__btn--accent {
        grid-column: 1 / -1;
        height: 40px;
        background: linear-gradient(90deg, #400014 0%, #9a0055 50%, #400014 100%);
        color: #fff;
    }
    .mobile-cta-bar__tel {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 4px 0 2px;
    }
    .mobile-cta-bar__tel-label {
        font-family: var(--font-mincho);
        font-size: 13px;
        line-height: 1.5;
        color: #333;
        white-space: nowrap;
    }
    .mobile-cta-bar__tel-number {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .mobile-cta-bar__tel-num {
        font-family: var(--font-en);
        font-size: 22px;
        color: #000;
        letter-spacing: .04em;
        line-height: 1;
    }
    .mobile-cta-bar__tel-hours {
        font-family: var(--font-mincho);
        font-size: 9px;
        color: #555;
        letter-spacing: .04em;
    }
    body { padding-bottom: 168px; }
}

/* Hero -------------------------------------------------------------------- */
.hero {
    position: relative;


}
/* Grid: side panel + media share the same row height */
.hero__stage {
    display: grid;
    grid-template-columns: 360px 1fr;
    /* media's aspect-ratio drives row height; side panel auto-stretches to match */
}
/* Hero left side panel (navy gradient with logo + vertical text) */
.hero__side {
    background: linear-gradient(180deg, #010e28 0%, #0b2753 50%, #010e28 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--header-h) 24px 24px;
    justify-content: center;
    overflow: hidden;
}
.hero__side-logo {
    width: 152px;
    height: auto;
    display: block;
	padding-bottom:20px;
}
.hero__side-sub {
    font-family: var(--font-mincho);
    font-size: 13px;
    letter-spacing: .14em;
    color: #fff;
    margin-top: 14px;
    margin-bottom: 36px;
}
.hero__side-copy {
    font-family: var(--font-mincho);
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 30px;
    letter-spacing: .1em;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}
.hero__media {
    position: relative;
    height: 980px;
    overflow: hidden;
    min-width: 0;
}
.hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero CTA overlay (5 cards) ---------------------------------------------- */
.hero-cta {
    position: absolute;
    /* cards sit INSIDE the hero image, slightly above its bottom edge */
    left: 360px;
    right: 0;
    bottom: 32px;
    padding: 0 36px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-cta__row {
    display: grid;
    gap: 20px;
}
.hero-cta__row--top    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-cta__row--bottom { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.hcta {
    position: relative;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 36px;
    align-items: center;
    min-height: 96px;
    overflow: hidden;
    color: inherit;
}
.hcta__thumb {
    width: 96px; height: 96px;
    background: #f0f0f0;
}
.hcta__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hcta__label {
    font-family: var(--font-mincho);
    font-size: 20px;
    letter-spacing: .04em;
    padding-left: 18px;
    white-space: nowrap;
}
.hcta__arrow {
    font-family: serif;
    color: #5a5a5a;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    padding-right: 14px;
}

/* Wide bottom cards (地主の方 / CASE STUDY) ------------------------------ */
.hcta--wide {
    grid-template-columns: auto minmax(0, 1fr) 36px;
    column-gap: 18px;
    min-height: 80px;
    padding: 0 0 0 20px;
    align-items: center;
}
.hcta-badge {
    padding: 4px 12px;
    font-family: var(--font-gothic);
    font-size: 11px;
    letter-spacing: .12em;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}
.hcta-badge--olive  { background: var(--color-brown-soft); color: #fff; }
.hcta-badge--white  { background: #fff; color: var(--color-brown-soft); }
.hcta__text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    min-width: 0;
}
.hcta__title {
    font-family: var(--font-mincho);
    font-size: 17px;
    letter-spacing: .04em;
    line-height: 1.3;
    white-space: nowrap;
}
.hcta__sub {
    font-family: var(--font-gothic);
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hcta__sub::before {
    content: "　｜　";
    font-family: var(--font-mincho);
    font-size: 14px;
    opacity: .5;
}
.hcta--light { background: #fff; color: var(--color-text); }
.hcta--light .hcta__sub { color: var(--color-text-line); }
.hcta--light .hcta__arrow { color: var(--color-brown-soft); }
.hcta--brown { background: var(--color-brown-soft); color: #fff; }
.hcta--brown .hcta__sub  { color: #fff; opacity: .95; }
.hcta--brown .hcta__arrow { color: #fff; }

/* Service heading --------------------------------------------------------- */
.service-title {
    text-align: center;
    margin: 120px auto 80px;
    font-family: var(--font-mincho);
    font-size: clamp(20px, 2vw, 30px);
    letter-spacing: .08em;
    line-height: 1.6;
    font-weight: 500;
}

/* Origin (photo on left + text on right) -------------------------------- */
.origin {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto 80px;
    padding: 0 24px;
    align-items: start;
}
.origin__media img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.origin__head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 100px;
}
.origin__head h2 {
    font-family: var(--font-mincho);
    font-size: clamp(28px, 3vw, 38px);
    color: var(--color-text);
    letter-spacing: .14em;
    font-weight: 500;
}
.origin__head .eyebrow {
    font-family: var(--font-en);
    color: var(--color-brown-soft);
    font-size: 16px;
    letter-spacing: .2em;
}
.origin__body p {
    font-family: var(--font-gothic);
    font-size: 15px;
    line-height: 2.2;
    color: var(--color-text);
}

/* Origin centered message (below the 2-column origin) ------------------- */
.origin-message {
    max-width: 900px;
    margin: 80px auto 120px;
    padding: 0 24px;
    text-align: center;
}
.origin-message__text {
    font-family: var(--font-mincho);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 2.4;
    letter-spacing: .06em;
    color: var(--color-text);
    margin: 0 0 36px;
}
.origin-message__name {
    font-family: var(--font-mincho);
    font-size: 15px;
    color: var(--color-text-gray);
    letter-spacing: .12em;
    margin: 0;
}

@media (max-width: 900px) {
    .origin { grid-template-columns: 1fr; gap: 32px; }
    .origin__head { margin-top: 0; }
    .origin-message { margin: 50px auto 80px; }
}

/* Resort decorative band (full-width image, no content) ----------------- */
.resort-band {
    width: 100%;
    aspect-ratio: 1920/500;
    background: url("http://momo-estate.com/wp-content/uploads/2026/06/img01.jpg") center/cover no-repeat;
    margin: 40px 0 80px;
}

/* President message ------------------------------------------------------- */
.message {
    position: relative;
    padding: 100px 24px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 120px;
}
.message::before {
    content: "";
    position: absolute; inset: 0;
    background: url("../assets/message-bg.png") center/cover no-repeat;
    filter: brightness(.55);
    z-index: -2;
}
.message__inner {
    max-width: var(--container);
    margin-inline: auto;
    text-align: center;
}
.message__text {
    font-family: var(--font-mincho);
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 2.4;
    letter-spacing: .08em;
    margin-bottom: 32px;
}
.message__sign {
    font-family: var(--font-mincho);
    font-size: 16px;
    color: #d6d2c8;
    letter-spacing: .12em;
}

/* Case study cards -------------------------------------------------------- */
.section { padding: 80px 0; }
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Case study slider ================================================ */
.case-slider {
    position: relative;
}
.case-slider__viewport {
    overflow: hidden;
}
.case-slider__track {
    display: flex;
    gap: 30px;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}
.case-slider__track .case-card {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
}
.case-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 22px;
    color: var(--color-text);
    transition: background .2s, box-shadow .2s;
    z-index: 2;
}
.case-slider__nav:hover { background: #f5f0e8; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.case-slider__nav:disabled { opacity: .3; cursor: default; }
.case-slider__nav--prev { left: -64px; }
.case-slider__nav--next { right: -64px; }
@media (max-width: 640px) {
    .case-slider__viewport { overflow: hidden !important; width: 100%; }
    .case-slider__track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
    }
    .case-slider__track .case-card { flex: 0 0 100% !important; max-width: 100%; }
    .case-slider__nav { display: none !important; }
}
.case-card {
    display: block;
    min-width: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.10);
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.case-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.16); }
.case-card__thumb {
    aspect-ratio: 380/220;
    background: #d9d9d9 url("../assets/placeholder-thumb.png") center/cover no-repeat;
    overflow: hidden;
    margin-bottom: 0;
}
.case-card__tag,
.case-card__title,
.case-card__location { padding-left: 16px; padding-right: 16px; }
.case-card__tag { padding-top: 14px; margin-bottom: 6px; }
.case-card__location { padding-bottom: 16px; }
.case-card__tag {
    display: inline-block;
    font-family: var(--font-gothic);
    font-size: 12px;
    color: var(--color-brown-soft);
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 8px;
}
.case-card__title {
    font-family: var(--font-mincho);
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 6px;
    letter-spacing: .04em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.case-card__location {
    font-family: var(--font-gothic);
    font-size: 12px;
    color: var(--color-text-gray);
}

/* Property listing -------------------------------------------------------- */
.prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.prop-card {
    display: block;
    min-width: 0;
    color: inherit;
}
.prop-card__thumb {
    position: relative;
    aspect-ratio: 380/220;
    background-color: #d9d9d9;
    background-image: url("../assets/placeholder-thumb.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 18px;
}
.prop-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.prop-card__badge {
    position: absolute;
    top: 12px; left: 12px;
    background: #c8a25c;
    color: #fff;
    font-family: "Hiragino Sans", var(--font-gothic);
    font-size: 13px;
    padding: 3px 14px;
    letter-spacing: .08em;
}
.prop-card__title {
    font-family: var(--font-mincho);
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: .04em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.prop-card__price {
    font-family: var(--font-mincho);
    font-size: 14px;
    margin-bottom: 6px;
}
.prop-card__price .num {
    color: var(--color-brown-soft);
    font-size: 24px;
    margin: 0 4px 0 12px;
    letter-spacing: .04em;
}
.prop-card__meta {
    font-family: var(--font-gothic);
    font-size: 12px;
    color: var(--color-text-gray);
}

/* Renovation/Case files --------------------------------------------------- */
.file-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.file-card {
    display: block;
    min-width: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.10);
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.file-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.16); }
.file-card__thumb {
    aspect-ratio: 380/220;
    background: #d9d9d9 url("../assets/placeholder-thumb2.png") center/cover no-repeat;
    margin-bottom: 0;
}
.file-card__tag {
    font-family: var(--font-gothic);
    font-size: 12px;
    color: var(--color-brown-soft);
    font-weight: 500;
    letter-spacing: .12em;
    display: block;
    margin-bottom: 6px;
    padding: 14px 16px 0;
}
.file-card__title {
    font-family: var(--font-mincho);
    font-size: 16px;
    margin-bottom: 6px;
    padding: 0 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.file-card__location {
    font-family: var(--font-gothic);
    font-size: 12px;
    color: var(--color-text-gray);
    padding: 0 16px 16px;
}

/* Section read-more (below content) --------------------------------------- */
.section-readmore {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

/* Section: News ----------------------------------------------------------- */
.section--news { padding: 100px 0; }
.head-center { text-align: center; margin-bottom: 50px; }
.head-center .eyebrow { font-size: 24px; display: block; margin-bottom: 6px; }
.head-center h2 {
    font-family: var(--font-mincho);
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 500;
    letter-spacing: .06em;
}
.news-list { max-width: var(--container); margin: 0 auto 40px; border-top: 1px solid var(--color-line); }
.news-list__item {
    display: grid;
    grid-template-columns: 120px 100px 1fr 20px;
    align-items: center;
    gap: 24px;
    padding: 20px 8px;
    border-bottom: 1px solid var(--color-line);
    font-family: var(--font-gothic);
    font-size: 16px;
    color: var(--color-text-soft);
}
.news-list__date { font-size: 14px; letter-spacing: .04em; }
.news-list__cat {
    display: inline-block;
    background: #b6a988;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 4px 0;
    letter-spacing: .12em;
    border-radius: 2px;
}
.news-list__title { font-size: 16px; }
.news-list__arrow::before {
    content: "›";
    color: var(--color-brown-soft);
    font-size: 18px;
}

/* View more button -------------------------------------------------------- */
.btn-viewmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 300px;
    height: 52px;
    padding: 0 32px;
    border: none;
    background: linear-gradient(90deg, #bea973 0%, #e3d0a5 50%, #bea973 100%);
    font-family: var(--font-mincho);
    font-size: 16px;
    letter-spacing: .12em;
    color: #000;
    margin: 0 auto;
    transition: opacity .2s ease;
}
.btn-viewmore:hover { opacity: .85; }
.btn-viewmore::after {
    content: "→";
    color: #000;
}
.center { display: flex; justify-content: center; }

/* Section: Column --------------------------------------------------------- */
.section--column { padding: 100px 0; background: #fafafa; }
.col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.col-card { display: block; min-width: 0; }
.col-card__thumb {
    aspect-ratio: 285/160;
    background: #cfcfcf center/cover no-repeat;
    margin-bottom: 12px;
}
.col-card__date {
    font-family: var(--font-gothic);
    font-size: 11px;
    color: var(--color-text-mute);
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.col-card__title {
    font-family: var(--font-gothic);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-soft);
    line-height: 1.6;
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.col-card__tag {
    display: inline-block;
    background: #bdbdbd;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    letter-spacing: .08em;
}

/* Service / Company twin promo -------------------------------------------- */
.twin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.twin::before {
    content: "";
    position: absolute; inset: 0;
    background: url("../assets/footer-bg.jpg") center 65%/cover no-repeat;
    filter: brightness(.5);
    z-index: 0;
}
.twin__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    z-index: 1;
}
.twin__panel > * { position: relative; z-index: 1; }
.twin__panel .eyebrow {
    font-family: var(--font-en);
    font-size: clamp(36px, 4.4vw, 56px);
    color: #fff;
    text-transform: lowercase;
    letter-spacing: .12em;
    margin-bottom: 24px;
}
.twin__panel p {
    font-family: var(--font-mincho);
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 36px;
}
.twin__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    justify-content: center;
    height: 52px;
    border: 1px solid #fff;
    color: #fff;
    font-family: var(--font-mincho);
    letter-spacing: .12em;
}

/* CTA strip --------------------------------------------------------------- */
.cta-strip {
    text-align: center;
    padding: 100px 24px;
    background: #333333;
    color: #fff;
}
.cta-strip h2 {
    font-family: var(--font-mincho);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.7;
    letter-spacing: .08em;
    margin-bottom: 40px;
    font-weight: 500;
}
.cta-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: var(--container);
    margin-inline: auto;
}
.cta-buttons__btn {
    height: 62px;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-mincho);
    font-size: 24px;
    letter-spacing: .08em;
    color: #fff;
}
.cta-buttons__btn:nth-child(1) {
    background: linear-gradient(90deg, #bea973 0%, #e3d0a5 50%, #bea973 100%);
    color: #2a2a2a;
}
.cta-buttons__btn:nth-child(2) {
    background: linear-gradient(90deg, #4e215c 0%, #966aa4 50%, #4e215c 100%);
}
.cta-buttons__btn:nth-child(3) {
    background: linear-gradient(90deg, #400014 0%, #9a0055 50%, #400014 100%);
}
.cta-buttons__btn::after { content: none; }

/* Footer ------------------------------------------------------------------ */
.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 24px 30px;
}
.site-footer__top {
    max-width: 880px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.site-footer .brand {
    display: block;
}
.site-footer .brand__mark {
    color: var(--color-brown);
    font-size: 26px;
    letter-spacing: .12em;
    font-family: var(--font-mincho);
    font-weight: 600;
    line-height: 1.2;
}
.site-footer .brand__sub  {
    color: #b9b3a3;
    font-size: 12px;
    letter-spacing: .12em;
    font-family: var(--font-mincho);
    margin-top: 4px;
}
.site-footer__contact {
    text-align: right;
}
.site-footer__tel {
    font-family: var(--font-en);
    font-size: 26px;
    letter-spacing: .08em;
    color: #fff;
}
.site-footer__hours {
    font-family: var(--font-mincho);
    font-size: 12px;
    color: #d9d2bf;
    margin-top: 4px;
    letter-spacing: .12em;
}
.site-footer__nav {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    padding: 24px 0;
    border-top: 1px solid #2f2f2f;
    border-bottom: 1px solid #2f2f2f;
}
.site-footer__nav a {
    font-family: var(--font-mincho);
    font-size: 11px;
    letter-spacing: .12em;
    color: #b9b3a3;
    white-space: nowrap;
}
.site-footer__bottom {
    text-align: center;
    font-family: var(--font-mincho);
    font-size: 11px;
    letter-spacing: .12em;
    color: #b9b3a3;
    margin-top: 20px;
}

/* =========================================================================
   沖縄県外ページ (v2 — Figma完全準拠)
   ========================================================================= */

/* ----- 共通ラベル ----- */
.out-lbl-en {
    display: block;
    font-family: var(--font-en);
    font-size: 24px;
    color: var(--color-brown);
    letter-spacing: .12em;
    margin-bottom: 8px;
}
.out-lbl-en--sm { font-size: 16px; }
.out-lbl-ja {
    font-family: var(--font-mincho);
    font-size: 48px;
    font-weight: 500;
    letter-spacing: .06em;
    color: #000;
    line-height: 1.2;
}
.out-lbl-ja--sm { font-size: 32px; }

/* ----- Hero ----- */
/* 構造: 画像エリア(600px) → 下にグラデフェード → タイトルが白背景に乗る */
.out-hero {
    position: relative;
}
.out-hero__img {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.out-hero__img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.out-hero__fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 327px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 47%, #fff 100%);
    pointer-events: none;
}
.out-hero__badge {
    position: absolute;
    top: 440px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(51deg, #010e28 0%, #0b2753 100%);
    color: #fff;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: .08em;
    padding: 16px 40px;
    white-space: nowrap;
    z-index: 2;
}
.out-hero__title {
    text-align: center;
    padding: 32px 24px 60px;
    background: #fff;
}
.out-hero__title h1 {
    font-family: var(--font-mincho);
    font-size: clamp(28px, 3.5vw, 56px);
    color: #000;
    line-height: 1.5;
    letter-spacing: .06em;
    font-weight: 500;
}

/* ----- Intro ----- */
.out-intro {
    text-align: center;
    padding: 60px 24px 80px;
    max-width: 1000px;
    margin-inline: auto;
}
.out-intro__catch {
    font-family: var(--font-mincho);
    font-size: 20px;
    color: var(--color-brown);
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.out-intro__subhead {
    font-family: var(--font-mincho);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: .06em;
    margin-bottom: 48px;
    color: #000;
}
.out-intro__body p {
    font-family: var(--font-gothic);
    font-size: 18px;
    line-height: 2.2;
    color: #000;
    margin-bottom: 0;
}

/* ----- Solution ----- */
/* 背景画像あり、ジグザグ配置 */
.out-solution {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: #F7F5F3;
}
.out-solution__head {
    text-align: left;
    max-width: var(--container);
    margin: 0 auto 80px;
    padding: 0 24px;
    position: relative;
}
/* ジグザグ行: 画像(中央大)+テキスト(左右交互) */
.out-sol-row {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: 24px;
    align-items: center;
    min-height: 500px;
}
.out-sol-row + .out-sol-row { margin-top: 80px; }
/* 通常: 画像左・テキスト右 */
.out-sol-row__img {
    grid-column: 1;
}
.out-sol-row__img img {
    width: 100%; height: 500px; object-fit: cover; display: block;
}
.out-sol-row__body {
    padding: 40px 60px;
    position: relative;
    z-index: 1;
}
/* 反転行: 画像右・テキスト左 — 画像列(右)を広く */
.out-sol-row--rev { grid-template-columns: 2fr 3fr; }
.out-sol-row--rev .out-sol-row__img { grid-column: 2; grid-row: 1; }
.out-sol-row--rev .out-sol-row__body { grid-column: 1; grid-row: 1; }

.out-sol-row__point {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
    line-height: 1;
}
.out-sol-row__point-label {
    font-family: var(--font-en);
    font-size: 16px;
    color: var(--color-brown);
    letter-spacing: .12em;
    padding-top: 10px;
}
.out-sol-row__point-num {
    font-family: var(--font-en);
    font-size: 56px;
    color: rgba(162,149,111,.3);
    font-weight: 500;
    line-height: 1;
}
.out-sol-row__title {
    font-family: var(--font-mincho);
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: .04em;
    color: #000;
    margin-bottom: 20px;
}
.out-sol-row__text {
    font-family: var(--font-gothic);
    font-size: 18px;
    line-height: 2;
    color: #000;
}

/* ----- Posts sections ----- */
.out-posts-section { padding: 80px 0; }
.out-posts-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.out-posts-head--center {
    display: block;
    text-align: center;
    margin-bottom: 48px;
}
.out-posts-head--center .out-lbl-en { display: block; text-align: center; }

/* ----- Divider ----- */
.out-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 24px;
}

/* ----- CTA block ----- */
.out-cta-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px;
    gap: 64px;
}
.out-cta-block__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130px;
    font-family: var(--font-mincho);
    letter-spacing: .06em;
    color: #fff;
    gap: 4px;
    text-decoration: none;
}
.out-cta-block__btn--dark { background: #676263; }
.out-cta-block__btn--gray { background: #949191; }
.out-cta-block__main { font-size: 28px; }
.out-cta-block__sub { font-size: 16px; }
.out-cta-block__arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

/* ----- Philosophy ----- */
.out-philos { padding: 60px 0 80px; }
.out-philos__inner { max-width: 1160px; }
.out-philos__row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    padding: 60px 0;
    align-items: start;
}
.out-philos__row + .out-philos__row { border-top: 1px solid var(--color-line); }
.out-philos__num {
    font-family: var(--font-en);
    font-size: 180px;
    color: rgba(162,149,111,.3);
    font-weight: 500;
    line-height: .85;
    letter-spacing: -.02em;
}
.out-philos__title {
    font-family: var(--font-mincho);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: .04em;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
}
.out-philos__body p {
    font-family: var(--font-gothic);
    font-size: 16px;
    line-height: 2;
    color: #000;
    margin-bottom: 16px;
}
.out-philos__body strong { font-weight: bold; }

/* ----- Banner ----- */
.out-banner {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
}
.out-banner__text {
    font-family: var(--font-mincho);
    font-size: clamp(20px, 2.2vw, 32px);
    color: #000;
    line-height: 1.8;
    letter-spacing: .06em;
    font-weight: 500;
}

/* ----- Finance table ----- */
.out-finance__lead {
    font-family: var(--font-gothic);
    font-size: 15px;
    line-height: 2;
    text-align: center;
    margin-bottom: 48px;
    color: #000;
}
.out-finance__table {
    display: grid;
    grid-template-columns: 200px 1fr;
    font-family: var(--font-gothic);
    font-size: 14px;
    line-height: 2;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}
.out-finance__cell {
    padding: 20px 16px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}
.out-finance__cell--label {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.out-finance__cell--content { padding: 20px 20px; }

/* ----- SOLD OUT badge ----- */
.prop-card__badge--sold {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    background: #333;
    font-size: 13px;
    padding: 4px 14px;
    letter-spacing: .1em;
}

/* =========================================================================
   沖縄県外 レスポンシブ
   ========================================================================= */
@media (max-width: 1024px) {
    .out-sol-row { grid-template-columns: 1fr; }
    .out-sol-row--rev .out-sol-row__img { grid-column: 1; grid-row: 1; }
    .out-sol-row--rev .out-sol-row__body { grid-column: 1; grid-row: 2; }
    .out-sol-row__img img { height: 300px; }
    .out-sol-row__body { padding: 32px 24px; }
    .out-cta-block { grid-template-columns: 1fr; }
    .out-cta-block__btn { height: 100px; }
}
@media (max-width: 640px) {
    .out-hero__img { height: 280px; }
    .out-hero__fade { height: 160px; }
    .out-hero__badge { top: 220px; font-size: 14px; padding: 10px 20px; }
    .out-hero__title { padding: 48px 20px 40px; }
    .out-hero__title h1 { font-size: 22px; }
    .out-intro { padding: 40px 20px 60px; }
    .out-intro__catch { font-size: 14px; }
    .out-intro__subhead { font-size: 22px; }
    .out-intro__body p { font-size: 15px; }
    .out-lbl-ja { font-size: 32px; }
    .out-sol-row__title { font-size: 22px; }
    .out-sol-row__text { font-size: 15px; }
    .out-philos__row { grid-template-columns: 1fr; gap: 8px; padding: 40px 0; }
    .out-philos__num { font-size: 80px; line-height: 1; }
    .out-philos__title { font-size: 20px; }
    .out-finance__table { grid-template-columns: 1fr; border-left: 1px solid #000; }
    .out-finance__cell--label { justify-content: flex-start; }
    .out-cta-block { padding: 0 0 60px; }
    .out-cta-block__main { font-size: 18px; }
    .out-posts-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Responsive: Header hamburger (nav links wrap) -------------------------- */
@media (max-width: 1490px) {
    .gnav__list { display: none; }
    .gnav__actions { order: 1; }
    .gnav__toggle {
        order: 2;
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        width: 32px; height: 32px;
        justify-content: center;
        align-items: center;
    }
    .gnav__toggle span {
        width: 24px; height: 1.5px;
        background: var(--color-text);
        display: block;
    }
}

/* Header: 1000px未満 → ハンバーガーのみ・下部CTAバー表示 --------------- */
@media (max-width: 999px) {
    :root { --header-h: 64px; }
    .site-header__inner { padding-inline: 16px; }
    .brand__logo { width: 180px; }
    .gnav { display: contents; }
    .gnav__actions { display: none; }
}

/* Responsive: Tablet ---------------------------------------------------- */
@media (max-width: 1024px) {
    .target-cta__grid { grid-template-columns: 1fr; max-width: 600px; }
    .origin { grid-template-columns: 1fr; gap: 40px; }
    .case-grid, .prop-grid, .file-grid { grid-template-columns: repeat(2, 1fr); }
    .col-grid { grid-template-columns: repeat(2, 1fr); }
    .twin { grid-template-columns: 1fr; }
    .cta-buttons { grid-template-columns: 1fr; }
    .site-footer__top { justify-content: center; text-align: center; }
    .site-footer__contact { text-align: center; }
}

/* Responsive: Mobile ---------------------------------------------------- */
@media (max-width: 640px) {
    :root { --header-h: 60px; }

    /* --- Header --- */
    .container { padding-inline: 16px; }
    .brand__mark { font-size: 18px; }
    .brand__sub { display: none; }

    /* --- Hero: 画像(390:245) → 紺パネル(ロゴ+横書きコピー) → CTAカード --- */
    .hero__stage {
        display: flex;
        flex-direction: column;
    }
    .hero__media {
        order: 1;
        height: auto;
        aspect-ratio: 390 / 245;
    }
    .hero__side {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 36px 24px 40px;
        text-align: center;
        gap: 20px;
    }
    .hero__side-logo { width: 84px; padding-bottom: 0; }
    .br-sp { display: inline; }
    .hero__side-copy {
        writing-mode: horizontal-tb;
        -webkit-writing-mode: horizontal-tb;
        font-size: 20px;
        letter-spacing: .06em;
        line-height: 1.8;
        text-align: center;
    }
    .hero-cta {
        position: static;
        left: auto; right: auto; bottom: auto;
        padding: 16px;
        gap: 10px;
        background: transparent;
    }
    .hero-cta__row { gap: 10px; }
    .hero-cta__row--top  { grid-template-columns: 1fr !important; }
    .hero-cta__row--bottom { grid-template-columns: 1fr !important; }
    .hcta {
        grid-template-columns: 72px minmax(0, 1fr) 32px;
        min-height: 72px;
    }
    .hcta__thumb { width: 72px; height: 72px; }
    .hcta__label { font-size: 15px; padding-left: 14px; }
    .hcta__arrow { font-size: 20px; padding-right: 10px; }
    .hcta--wide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
        padding: 16px;
        gap: 8px;
        text-align: center;
    }
    .hcta--wide .hcta__arrow { display: none; }
    .hcta__text { flex-direction: column; gap: 4px; }
    .hcta__title { font-size: 15px; white-space: normal; }
    .hcta__sub { white-space: normal; }
    .hcta__sub::before { content: none; }

    /* --- Service title --- */
    .service-title { margin: 56px auto 40px; font-size: 20px; }

    /* --- Origin --- */
    .origin { padding-inline: 16px; margin-bottom: 0; gap: 32px; }
    .origin__media { max-width: 240px; margin: 0 auto; }
    .origin__media img { aspect-ratio: 3/3.5; }
    .origin__head { margin-top: 0; margin-bottom: 20px; }
    .origin__head h2 { font-size: 32px; }
    .origin__body p { font-size: 16px; line-height: 2; }
    .origin-message { margin: 40px auto 56px; padding: 0 20px; }
    .origin-message__text { font-size: 16px; line-height: 2; letter-spacing: .04em; text-align: left; }

    /* --- Resort band --- */
    .resort-band { aspect-ratio: 390/204; margin: 40px 0; }

    /* --- Sections --- */
    .section { padding: 56px 0; }
    .section--news { padding: 56px 0; }
    .section--column { padding: 56px 0; }

    /* --- Section heads: 中央揃え --- */
    .section-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 28px;
    }
    .title-wrap { text-align: center; }
    .head-center { margin-bottom: 32px; }
    .head-center .eyebrow { font-size: 16px; }
    .head-center h2 { font-size: 28px; }
    .eyebrow { font-size: 16px; }
    .section-title { font-size: 28px; }

    /* --- Origin message: 署名右寄せ・2行 --- */
    .origin-message__name { text-align: right !important; }

    /* --- Grids: 1カラム (prop/file) --- */
    .case-grid, .prop-grid, .file-grid { grid-template-columns: 1fr !important; }

    /* --- Column grid: 2カラム --- */
    .col-grid { grid-template-columns: 1fr !important; gap: 16px; }
    .col-card__title { font-size: 13px; }
    .col-card__thumb { aspect-ratio: 163/90; }

    /* --- read more: コンテンツ下部・VIEW MOREと同幅 --- */
    .section-readmore .read-more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        width: 200px;
        height: 40px;
        font-size: 13px;
        letter-spacing: .08em;
    }

    /* --- News list: 日付+カテゴリー → タイトル 縦積み --- */
    .news-list { border-top: 1px solid var(--color-line); }
    .news-list__item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 12px;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-line);
        font-family: var(--font-gothic);
    }
    .news-list__date { flex: 0 0 auto; order: 1; font-size: 12px; color: var(--color-text-soft); }
    .news-list__cat  { flex: 0 0 auto; order: 2; font-size: 12px; }
    .news-list__title { flex: 0 0 100%; order: 3; font-size: 16px; white-space: normal; overflow: visible; }
    .news-list__arrow { display: none; }

    /* --- Twin panels: 縦積み、全幅 --- */
    .twin { min-height: auto; }
    .twin__panel { min-height: 200px; padding: 32px 16px; text-align: left; align-items: center; }
    .twin__panel .eyebrow, .twin__btn { text-align: center; }
    .twin__panel .eyebrow { font-size: 28px; margin-bottom: 16px; }
    .twin__panel p { font-size: 15px; line-height: 2; margin-bottom: 28px; white-space: normal; }
    .twin__panel p br { display: none; }
    .twin__panel--company { border-top: 1px solid rgba(255,255,255,.4); }

    /* --- CTA strip: 2ボタン横並び＋1ボタン全幅 --- */
    .cta-strip { padding: 40px 24px; }
    .cta-strip h2 { font-size: 18px; margin-bottom: 28px; }
    .cta-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cta-buttons__btn { height: 40px; font-size: 15px; padding: 0; }
    .cta-buttons__btn:nth-child(3) { grid-column: 1 / -1; }
    .cta-buttons__btn::after { content: none; }

    /* --- Message --- */
    .message { padding: 60px 16px; }
    .message__text { font-size: 14px; line-height: 2; }

    /* --- Footer --- */
    .site-footer { padding: 40px 24px 24px; }
    .site-footer__top { flex-direction: column; align-items: center; gap: 16px; }
    .site-footer__contact { text-align: center; }
    .site-footer__tel { font-size: 22px; }
    .site-footer__nav { gap: 8px 20px; }
}

/* Hero media height: fixed 980px on PC, aspect-ratio on mobile */
@media (max-width: 900px) {
    .hero__media { height: auto; aspect-ratio: 1560 / 980; }
}

/* Section head line position adjustments ---------------------------------- */
/* CASE STUDY / RENOVATION: 線を見出しの上に */
.section-head--case,
.section-head--works {
    border-bottom: none;
    padding-bottom: 0;
    border-top: 1px solid #d8d8d8;
    padding-top: 28px;
}

/* selling / 物件情報: 線を削除 */
.section-head--prop {
    border-bottom: none;
    padding-bottom: 0;
}

.site-footer__addr {
    font-family: var(--font-mincho);
    font-size: 12px;
    color: #d9d2bf;
    margin-top: 4px;
    letter-spacing: .06em;
}

/* ==========================================================================
   レスポンシブ補完 (v1.2.79)
   PC（1200px+）のデザインを完全維持しながら、タブレット・モバイル対応
   ========================================================================== */

/* ── タブレット中間帯（768px〜1024px）の補完 ── */
@media (min-width: 641px) and (max-width: 999px) {
    /* Section heads */
    .section-head {
        flex-wrap: wrap;
        gap: 12px;
    }
    /* Case/Prop 2カラム */
    .case-grid, .prop-grid, .file-grid { grid-template-columns: repeat(2, 1fr); }
    /* News list: date+cat+title縦積み */
    .news-list__item {
        grid-template-columns: 120px 80px 1fr 20px;
        gap: 12px;
    }
    /* Hero CTA overlay: 2列に */
    .hero-cta__row--top { grid-template-columns: repeat(2, 1fr); }
    .hero-cta__row--bottom { grid-template-columns: 1fr; }
    .hero-cta { padding: 0 20px; gap: 12px; }
    /* Out-CTA */
    .out-cta-block { gap: 32px; padding-inline: 24px; }
    .out-lbl-ja { font-size: 38px; }
    .out-lbl-ja--sm { font-size: 26px; }
    /* Origin */
    .origin { grid-template-columns: 1fr; gap: 32px; }
    /* Twin */
    .twin { grid-template-columns: 1fr; }
    /* CTA buttons */
    .cta-buttons { grid-template-columns: 1fr; gap: 12px; }
    .cta-buttons__btn { font-size: 18px; }
    /* Footer */
    .site-footer__top { justify-content: center; text-align: center; }
    .site-footer__contact { text-align: center; }
}

/* ── 768px: スマホ大・タブレット小 ── */
@media (max-width: 768px) {
    /* Section: padding調整 */
    .section { padding: 60px 0; }
    .section--news, .section--column { padding: 60px 0; }

    /* Service title */
    .service-title { font-size: 22px; margin: 64px auto 48px; }

    /* Hero CTA: position解除 → 全幅 */
    .hero-cta {
        position: static;
        left: auto; right: auto; bottom: auto;
        padding: 12px 20px;
        background: transparent;
    }
    .hero-cta__row--top  { grid-template-columns: 1fr; }
    .hero-cta__row--bottom { grid-template-columns: 1fr; }

    /* News list: 2列グリッド */
    .news-list__item {
        grid-template-columns: 100px 80px 1fr;
        gap: 10px;
    }
    .news-list__arrow { display: none; }

    /* Col grid: 641px以上なら2列 */

    /* Out-solution */
    .out-solution { padding: 60px 0 80px; }
    .out-sol-row { padding-inline: 16px; }
    .out-sol-row__title { font-size: 24px; }
    .out-sol-row__text { font-size: 16px; }

    /* Out-CTA */
    .out-cta-block { grid-template-columns: 1fr; gap: 20px; padding: 0 16px 60px; }
    .out-cta-block__btn { height: 100px; }
    .out-cta-block__main { font-size: 22px; }

    /* Out-philos */
    .out-philos__row { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
    .out-philos__num { font-size: 100px; }
    .out-philos__title { font-size: 24px; }

    /* Out-lbl */
    .out-lbl-ja { font-size: 32px; }
    .out-lbl-ja--sm { font-size: 24px; }

    /* Finance table */
    .out-finance__table { grid-template-columns: 1fr; }
    .out-finance__cell--label { justify-content: flex-start; }

    /* Message */
    .message { padding: 70px 24px; margin-bottom: 80px; }
    .message__text { font-size: 17px; line-height: 2.2; }

    /* Footer */
    .site-footer__top { flex-wrap: wrap; flex-direction: column; align-items: center; }
    .site-footer__tel { font-size: 24px; }
}

/* ── 480px: スマホ小 ── */
@media (max-width: 480px) {
    .out-lbl-ja { font-size: 26px; }
    .out-hero__title h1 { font-size: 20px; }
    .out-intro__subhead { font-size: 20px; }
    .out-cta-block__main { font-size: 18px; }
    .out-cta-block__sub { font-size: 14px; }
    .cta-buttons__btn { font-size: 15px; height: 44px; }
    .site-footer__tel { font-size: 20px; }
    .site-footer__addr { font-size: 11px; }
    .resort-band { aspect-ratio: 390/200; }
}
