@charset "UTF-8";

main {
	padding-top: 0%;
}


.bottom_banners {
    display: none;
}

.body {
    min-width: 1440px;
}

.top-hero {
    position: relative;
    overflow: hidden;
    min-height: 980px;
    background-image: url('../asset/top/hero_bg.png');
    background-size: contain;
    aspect-ratio: 1440 / 980;
}

/* loading 背景を疑似要素で管理 */
.top-hero::before,
.top-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.top-hero::before {
    background-image: url('../asset/top/hero-loading1.png');
    z-index: 21;
    animation: heroLoading1 3.5s forwards;
    background-size: contain;
    aspect-ratio: 1440 / 980;
}

.top-hero::after {
    background-image: url('../asset/top/hero-loading2.png');
    z-index: 20;
    animation: heroLoading2 3.5s forwards;
    background-size: contain;
    aspect-ratio: 1440 / 980;
}

@keyframes heroLoading1 {

    /* loading2 が opacity:1 に達する 20% まで全体を覆い続け、その後フェードアウト */
    0%,
    20% {
        opacity: 1;
    }

    26% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes heroLoading2 {

    /* loading1 がまだ全体を覆っている間にフェードイン → 20% で opacity:1 に到達 */
    0%,
    14% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    76% {
        opacity: 1;
    }

    86% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-load-phrase {
    position: absolute;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
    pointer-events: none;
    animation: heroPhraseFadeOut 0.5s forwards;
    animation-delay: 5.3s;
}

@keyframes heroPhraseFadeOut {
    to {
        opacity: 0;
    }
}

.hero-load-phrase__line,
.hero-load-phrase__sub-line {
    display: block;
    width: fit-content;
    color: #1a2a4a;
    background: rgba(255, 255, 255, 0.88);
    clip-path: inset(0 0 100% 0);
    padding: 0.2em 0.3em;
    border-radius: 6px;
    animation: heroWipeIn 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-fill-mode: both;
    animation-delay: 0.3s;
}

.hero-load-phrase__line {
    font-weight: 700;
    font-size: 28px;
}

.hero-load-phrase__sub-line {
    font-weight: 400;
    font-size: 20px;
}

@keyframes heroWipeIn {
    to {
        clip-path: inset(0 0 0% 0);
    }
}

/* ヒーローコンテンツ: ローディング完了後にフェードイン */
.top-hero__text,
.top-hero__actions {
    z-index: 25;
    opacity: 0;
    animation: heroContentFadeIn 0.8s forwards;
    animation-delay: 6s;
}

@keyframes heroContentFadeIn {
    to {
        opacity: 1;
    }
}


/* ==========================================================================
   TOPページ (top_dev) — 新デザイン対応CSS
   ========================================================================== */

.top-dev-page {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    color: #3C3C43;
    overflow-x: hidden;
}

/* ==========================================================================
   ヒーローセクション
   ========================================================================== */
.top-hero__text {
    position: absolute;
    top: 20%;
    right: 10%;
    width: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.top-hero__text p {
    font-family: Zen Kaku Gothic New;
    font-weight: 700;
    font-size: 26px;
    background-color: #ffffff;
    padding: 0.2em 0.3em;
    border-radius: 6px;
    margin-top: 5px;
    clip-path: inset(0 0 100% 0);
    animation: heroWipeIn 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-fill-mode: both;
    animation-delay: 6s;
}

.top-hero__actions {
    width: 95%;
    position: absolute;
    bottom: 1%;
    display: flex;
    justify-content: center;
    gap: 24px;
    background: white;
    padding: 10px 50px;
    border-radius: 0px 30px 30px 0px;
}

.btn-hero {
    position: relative;
    gap: 12px;
    border-radius: 46px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    height: 92px;
    width: 30%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-hero__icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
}

.btn-hero span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-wrap: noWrap;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-hero__arrow {
    height: 15px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero--green {
    background-color: #8EBA43;
}

.btn-hero--orange {
    background-color: #EB8A44;
}

.btn-hero--yellow {
    background-color: #D7C024;
}

/* ==========================================================================
   Aboutセクション
   ========================================================================== */
.top-about {
    position: relative;
    overflow: hidden;
}

.top-about__bg {
    background-image: url('../asset/top/about-bg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    aspect-ratio: 1440 / 2937;
}

/* 雲の装飾 */
.top-about__clouds {
    position: relative;
    height: 80px;
    pointer-events: none;
}

.top-about__cloud {
    position: absolute;
    top: 0;
    width: 280px;
    height: auto;
}

.top-about__cloud--left {
    left: 0;
}

.top-about__cloud--right {
    right: 0;
    transform: scaleX(-1);
}

/* セクションヘッダー */
.top-about__header {
    text-align: center;
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
}

.top-about__sub {
    font-size: 16px;
    font-weight: 700;
    color: #00AAD4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.top-about__title {
    font-family: Zen Maru Gothic;
    font-weight: 500;
    font-style: Medium;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.top-about__title span {
    display: block;
}

/* ストーリーエリア */
.top-about__inner {
    width: 100%;
    height: 100%;
    min-width: 1440px;
}

/* リング装飾 */
.top-about__ring {
    position: absolute;
    width: 100px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.top-about__ring--left {
    left: -20px;
    top: 10%;
}

.top-about__ring--right {
    right: -20px;
    top: 55%;
}

/* ストーリーステップ共通 */
.about-step {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}


.about-step__content {
    flex: 1;
    background: #FFFFFF;
    border-radius: 100%;
    height: 100%;
    width: 100%;
    position: relative;
}

.about-step--1 {
    left: 7.7%;
    top: 9.16%;
    width: 70px;
    height: 476px;
}

.about-step--1 .about-step__title {
    color: #D66668;
    top: 0%;
    right: 0%;
}

.about-step--2 {
    width: 37.5%;
    aspect-ratio: 1 / 1;
    left: 56.68%;
    top: 11.09%;
}

.about-step--2 .about-step__imgs {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
}


.about-step--2 .about-step__title {
    color: #EB8A44;
    top: 5%;
    right: -10%;
}

.about-step--3 {
    width: 37.5%;
    aspect-ratio: 1 / 1;
    left: 8.52%;
    top: 31.5%;
}

.about-step--3 .about-step__imgs {
    position: absolute;
    bottom: 0%;
    left: 25%;
    transform: translateX(-50%);
    width: 193px;
    height: 232px;
}

.about-step--3 .about-step__title {
    color: #00AAD4;
    top: 10%;
    left: -10%;
}

.about-step--3 .about-step__desc {
    top: 35%;
}

.about-step--3 .about-step__btn {
    bottom: 30%;
    left: 65%;
}

.about-step--4 {
    width: 37.5%;
    aspect-ratio: 1 / 1;
    left: 52.15%;
    top: 41.43%;
}

.about-step--4 .about-step__imgs {
    position: absolute;
    bottom: 5%;
    left: 40%;
    transform: translateX(-50%);
    width: 69%;
}

.about-step--4 .about-step__ring {
    position: absolute;
    bottom: 48%;
    right: 0%;
    transform: translateX(-50%);
    width: 22%;
}

.about-step--4 .about-step__title {
    color: #8EBA43;
    top: -20%;
    right: -10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 384px;
}

.about-step--4 .about-step__desc {
    top: 25%;
}

.about-step--4 .about-step__title span:first-child {
    text-align: left;
    width: 100%;
}

.about-step--4 .about-step__title span:last-child {
    text-align: right;
}

.about-step--5 {
    height: 703px;
    width: 140px;
    aspect-ratio: 1 / 1;
    left: 5.21%;
    top: 54.81%;
}

.about-step--5 .about-step__title {
    height: 100%;
    color: #2EAE8C;
    top: 0%;
    right: 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-step--5 .about-step__title span:first-child {
    text-align: left;
    width: 100%;
}

.about-step--5 .about-step__title span:last-child {
    text-align: right;
}

.about-step--6 {
    left: 50%;
    transform: translateX(-50%);
    top: 77.5%;
}

.about-step--6 .about-step__message {
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0%;
    text-align: center;
}

.about-step__title {
    position: absolute;
    font-family: Zen Kaku Gothic New;
    font-weight: 500;
    font-size: 64px;
    line-height: 68px;
    letter-spacing: 0%;
    text-shadow: 2px 2px 2.4px #00000040;
    writing-mode: vertical-rl;
}

.about-step__curve {
    position: absolute;
    width: 105%;
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
}

.about-step__curve text {
    font-size: x-large;
}

.about-step__desc {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-step__accent {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 32px;
    margin: 0px -20px;
}

.about-step__accent::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 90%;
    height: 10px;
    background-color: #FFCF82;
    border-radius: 5px;
    z-index: -1;
}

.about-step__superscript {
    display: flex;
    margin: auto;
    justify-content: space-around;
    width: 85%;
    font-size: 14px;
    line-height: normal;
}

.about-step__comment--left {
    position: absolute;
    top: 41%;
    left: 23%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.about-step__comment--right {
    position: absolute;
    top: 55%;
    right: -15%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.about-step__accent--blue::after {
    background-color: #A8E7E7;
}

.about-step__accent--yellow::after {
    background-color: #FDF07A;
}

.about-step__text {
    font-family: Zen Maru Gothic;
    font-weight: 500;
    font-size: 20px;
    line-height: 41px;
    letter-spacing: 0%;
    text-align: center;
}

.about-step__btn {
    border-radius: 21.5px;
    background: #FDF07A;
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 15px;
    text-decoration: none;
    color: #3C3C43;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: max-content;
}

.about-step__btn::after {
    content: "";
    background-image: url(../asset/top/right_arrow.png);
    width: 15px;
    height: 15px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* イラスト群 */
.about-step__imgs {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.about-step__imgs img {
    height: auto;
    object-fit: contain;
}


/* フッターメッセージ */
.top-about__message {
    text-align: center;
    padding: 60px 5% 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.7;
    color: #3C3C43;
}

.top-about__message img {
    display: block;
    margin: 30px auto 0;
    max-width: 160px;
    height: auto;
}

/* ==========================================================================
   住民の声セクション
   ========================================================================== */
.top-voices {
    background-color: #FFFFFF;
    overflow: visible;
    position: relative;
    margin-bottom: 5%;
}

/* voices-header.png（建物＋双眼鏡）*/
.top-voices__header-wrap {
    position: absolute;
    top: -4.38%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../asset/top/voices-header.png);
    background-size: 1028px 218px;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
}

/* タイトルバッジ */
.top-voices__title-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.top-voices__title-sub {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    background: #FFFFFF;
    border: 3px solid #3C3C43;
    border-radius: 23.5px;
    padding: 12px 18px;
    width: fit-content;
}

.top-voices__title {
    font-weight: 700;
    font-size: 36px;
    text-align: center;
}


.top-voices__circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 143px;
    height: 143px;
    border: 3px solid #000000;
    border-radius: 50%;
    font-weight: 500;
    font-size: 96px;
}

.top-voices__circle--yellow {
    background-color: #FDF07A;
}

.top-voices__circle--blue {
    background-color: #C6EDFD;
}

.top-voices__circle--small {
    width: 117px;
    height: 117px;
}

/* タブ */
.top-voices__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    padding-top: 10%;
}

.tab-btn {
    width: 630px;
    height: 90px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    background: #FDF07A;
    color: #000000;
    transition: background 0.2s, color 0.2s;
    /*box-shadow: 6px -6px 8px -4px #00000040;*/
    font-weight: 500;
    font-size: 20px;
}

.tab-btn__area-text {
    font-size: 30px;
}

.tab-btn.active {
    background: #FFFFFF;
    color: #000000;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    clip-path: inset(-20px -20px 0px -20px);
}

.tab-btn.active::after {
    background: #FFFFFF;
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 20%;
    width: 40%;
    height: 6px;
    background-color: #059FC1;
    border-radius: 3px;
    z-index: -1;
}

/* タブパネル */
.top-voices__content {
    width: 1260px;
    margin: auto;
    z-index: 1;
    position: relative;
    border-radius: 0px 0px 16px 16px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}

.tab-panel {
    display: none;
    background: #FFFFFF;
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);*/
    border-radius: 0px 0px 16px 16px;
    padding: 40px;
}

.tab-panel.active {
    display: block;
    z-index: 3;
}

/* スライダーラッパー */
.voices-slider-wrap {
    position: relative;
    padding: 0 50px;
}

/* スライダー */
.condo-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.condo-slider::-webkit-scrollbar {
    display: none;
}

/* スライダーカード */
.condo-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #3C3C43;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.condo-card:hover {
    transform: translateY(-4px);
}

.condo-card__thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.condo-card__info {
    padding: 16px 20px;
}

.condo-card__name {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    height: 56px;
    margin-bottom: 10px;
    border-bottom: 2px solid #F0ECE4;
    padding-bottom: 10px;
}

.condo-card__link {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #00AAD4;
    text-align: right;
}

.suggest-condo__line {
    display: flex;
    gap: 5px;
}

.suggest-condo__info {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.suggest-condo__term {
    background: #059FC1;
    padding: 0 9px;
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    width: 73px;
    min-width: 73px;
    height: 18px;
    border-radius: 14px;
    white-space: nowrap;
    word-break: keep-all;
    text-align: center;
    color: #FFFFFF;
}

.suggest-condo__data {
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* スライダー前後ボタン */
.suggest-prev,
.suggest-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #049FC1;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

.suggest-prev {
    left: 0;
}

.suggest-next {
    right: 0;
}

/* ==========================================================================
   検索セクション
   ========================================================================== */
.top-search {
    padding-bottom: 5%;
    text-align: center;
    background-color: #FFFFFF;
}

.top-search__sub {
    font-size: 14px;
    font-weight: 700;
    color: #00AAD4;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.top-search__title {
    font-family: Zen Maru Gothic;
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    display: flex;
    flex-flow: column;
    color: #51656F;
    justify-content: space-around;
    margin-bottom: 23px
}

.top-search__form {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.top-search__form input {
    font-size: 18px;
    outline: none;
    font-family: inherit;
    width: 906px;
    height: 74px;
    display: flex;
    border: 1px solid #05A4C1;
    padding: 11px;
    border-radius: 65px;
    margin: auto
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 42px;
    height: 42px;
    border: none;
    background: #00AAD4;
    border-radius: 100%;
    border: none;
    background: #00AAD4 url(../asset/common/search_icon.svg) no-repeat center/contain;
    background-size: 22px 24px;
    padding: 0;
    margin: 0;
    color: transparent;
    cursor: pointer;
}

.sp-br {
    display: none;
}

/* ==========================================================================
   レスポンシブ (SP: max-width 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* デスクトップ固定幅(min-width:1440px)の解除。SPでは画面幅に追従させる。
       ヒーロー / About は背景イラストに密結合した絶対配置レイアウトのため、
       PCの px 値を vw(= px ÷ 14.4)へ置き換えて画面幅に「比例縮小」する。 */
    .body {
        min-width: 0;
    }

    .sp-br {
        display: block;
    }

    /* ==========================================================================
       ヒーロー (SP) — PCレイアウトを比例縮小
       ========================================================================== */
    .top-hero {
        min-height: 0;
        background-image: url(../asset/top/hero-bg-sp.png);
        aspect-ratio: 390 / 589;
    }

    .top-hero::before,
    .top-hero::after {
        display: none;
    }

    .hero-load-phrase,
    .hero-load-phrase__sub-line {
        display: none;
    }

    .hero-load-phrase__line {
        animation: none;
    }

    .top-hero__text {
        opacity: 1;
        animation: none;
    }

    .top-hero__actions {
        height: 18%;
        width: 98vw;
        border-radius: 8px;
        left: 1vw;
        opacity: 1;
        animation: none;
    }

    .top-hero__text p {
        font-size: 4vw;
        border-radius: 1vw;
        margin-top: 1vw;
        clip-path: none;
        animation: none;
    }

    .btn-hero {
        height: 100%;
        width: auto;
        aspect-ratio: 1 / 1;
        font-size: 3.2vw;
        border-radius: 3.2vw;
        box-shadow: 0 0.28vw 0.69vw rgba(0, 0, 0, 0.15);
        display: flex;
        align-content: center;
        justify-content: center;
        flex-direction: column;
        gap: 0px;
    }

    .btn-hero__icon {
        top: 10%;
        height: 35%;
        width: auto;
        margin: auto;
    }

    .btn-hero span {
        top: 65%;
        display: inline;
        height: auto;
        width: 100%;
        text-wrap: auto;
    }

    .btn-hero__arrow {
        display: none;
    }

    /* ==========================================================================
       About (SP) — PCレイアウトを比例縮小
       ========================================================================== */
    .top-about__bg {
        background-image: url(../asset/top/about-bg-sp.png);
        aspect-ratio: 1546 / 10030;
        width: 100%;
    }

    .top-about__inner {
        min-width: 0;
    }

    .top-about__clouds {
        display: none;
    }

    .top-about__header {
        top: 2%;
    }

    .top-about__sub {
        font-size: 3vw;
        margin-top: 1vw;
    }

    .top-about__title {
        font-size: 4vw;
    }

    .about-step {
        gap: 2.78vw;
    }

    .about-step--1 {
        top: 7%;
        width: 4.86vw;
        height: 45vw;
    }

    .about-step--2 {
        width: 105%;
        left: 10%;
        top: 13%;
    }

    .about-step--2 .about-step__title {
        top: 0%;
        right: auto;
        left: 75%;
    }

    .about-step--2 .about-step__desc {
        width: 85%;
        left: 50%;
    }

    .about-step--2 .about-step__imgs {
        width: 39.23vw;
        bottom: -15%;
        left: 25%;
    }

    .about-step--3 {
        width: 105%;
        left: -20%;
        top: 38%;
    }

    .about-step--3 .about-step__title {
        top: -10%;
        left: 21%;
    }

    .about-step--3 .about-step__desc {
        left: 65%;
    }

    .about-step--3 .about-step__btn {
        left: 70%;
    }

    .about-step--3 .about-step__imgs {
        width: 30vw;
        height: auto;
        left: 35%;
    }

    .about-step--4 {
        width: 105%;
        left: 10%;
        top: 56.5%;
    }

    .about-step--4 .about-step__title {
        height: 36vw;
        right: 20%;
    }

    .about-step--4 .about-step__desc {
        top: 30%;
    }

    .about-step--4 .about-step__imgs {
        width: 52%;
        left: 53%;
        bottom: 3%;
    }

    .about-step--4 .about-step__ring {
        right: 60%;
        bottom: 45%;
        width: 20%;
    }

    .about-step--5 {
        width: 105%;
        left: -85%;
        top: 77.5%;
        height: 10.5%;
    }

    .about-step--6 {
        top: 92%;
    }

    .about-step--6 .about-step__message {
        font-size: 4vw;
        line-height: 5vw;
        width: max-content;
    }

    .about-step__title {
        font-size: 6vw;
        line-height: 6.2vw;
        -webkit-text-stroke: 1px #FFFFFF;
    }

    .about-step__desc {
        gap: 10vw;
    }

    .about-step__text {
        font-size: 3.55vw;
        text-align: start;
        line-height: 5.5vw;
    }

    .about-step__accent {
        font-size: 5vw;
    }

    .about-step__accent::after {
        height: 10px;
        border-radius: 5px;
    }

    .about-step__superscript {
        font-size: 3vw;
        width: 75%;
    }

    .about-step__comment--left {
        font-size: 3vw;
        left: 55%;
        top: 50%;
        text-wrap-mode: nowrap;
    }

    .about-step__comment--right {
        font-size: 3vw;
        left: 40%;
        top: 70%;
    }

    .about-step__imgs {
        gap: 0.83vw;
    }

    .about-step__curve text {
        font-size: 3vw;
    }

    /* ==========================================================================
       住民の声 (SP) — 読みやすさ重視のモバイル再構成
       ========================================================================== */
    /* ヘッダー(建物＋双眼鏡)はSPでは通常フローに戻して重なりを防ぐ */
    .top-voices__header-wrap {
        position: static;
        transform: none;
        background-size: 92vw auto;
        padding-top: 24px;
    }

    .top-voices__title-badge {
        gap: 14px;
        padding-bottom: 14px;
    }

    .top-voices__title-sub {
        font-size: 13px;
        border-width: 2px;
        border-radius: 18px;
        padding: 8px 14px;
        max-width: 90%;
        line-height: 1.4;
    }

    .top-voices__title {
        font-size: 22px;
    }

    .top-voices__circle {
        width: 52px;
        height: 52px;
        font-size: 34px;
        border-width: 2px;
    }

    .top-voices__circle--small {
        width: 44px;
        height: 44px;
    }

    .top-voices__tabs {
        width: 92vw;
        padding-top: 16px;
        margin: auto;
    }

    .tab-btn {
        flex: 1;
        width: auto;
        height: auto;
        padding: 14px 8px;
        font-size: 13px;
        border-radius: 10px 10px 0 0;
    }

    .tab-btn__area-text {
        font-size: 18px;
    }

    .top-voices__content {
        width: 92vw;
    }

    .tab-panel {
        padding: 16px;
    }

    .voices-slider-wrap {
        padding: 0 28px;
    }

    .condo-slider {
        gap: 16px;
    }

    /* カードは画像(左)＋情報(右)の横並びにし、1枚ずつ大きく見せる */
    .condo-card {
        display: flex;
        align-items: stretch;
        border-radius: 10px;
        flex-direction: column;
    }

    .condo-card__thumb {
        width: 100%;
        flex-shrink: 0;
    }

    .condo-card__thumb img {
        height: 100%;
        min-height: 150px;
    }

    .condo-card__info {
        flex: 1;
        padding: 12px 14px;
    }

    .condo-card__name {
        font-size: 15px;
        height: auto;
        line-height: 1.3;
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .suggest-condo__line {
        align-items: flex-start;
    }

    .suggest-condo__term {
        font-size: 11px;
        width: 60px;
        min-width: 60px;
        height: 18px;
        line-height: 18px;
        padding: 0 8px;
    }

    .suggest-condo__data {
        font-size: 12px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .condo-card__link {
        font-size: 12px;
    }

    .suggest-prev,
    .suggest-next {
        width: 60px;
        height: 60px;
        font-size: 50px;
        padding-bottom: 15px;
    }

    .suggest-prev {
        left: 20%;
        top: 110%;
    }

    .suggest-next {
        right: 20%;
        top: 110%;
    }

    /* 検索 */
    .top-search {
        margin: 12% 10% 0% 10%;
    }

    .top-search__sub {
        font-size: 13px;
    }

    .top-search__title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .top-search__form {
        max-width: 90vw;
    }

    .top-search__form input {
        font-size: 15px;
        padding: 15px 90px 15px 20px;
        border-width: 2px;
    }

    .search-btn {
        right: 6px;
        height: 40px;
    }
}