body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #2C2A25;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ヘッダーの高さ分、スクロール位置をずらす */
:root {
    --header-height: 120px;
}

html {
    scroll-padding-top: var(--header-height);
}

a {
    text-decoration: none;
}

.inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.block-1024,
.block-767,
.block-450 {
    display: none;
}


/* ========================================
ヘッダー
======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scroll {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.site-header__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

/* ロゴ */
.site-header__title {
    margin: 0;
}

.site-header__title a {
    display: block;
    color: #fff;
}

.site-header__title-main {
    display: block;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.site-header__title-main span {
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.site-header__title-sub {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.site-header.is-scroll .site-header__title a {
    color: #46433B;
}

.site-header.is-scroll .site-header__title-main,
.site-header.is-scroll .site-header__title-main span,
.site-header.is-scroll .site-header__title-sub {
    text-shadow: none;
}

/* グロナビ */
.pc-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header__menu li a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
}

.site-header.is-scroll .site-header__menu a {
    color: #46433B;
}

.site-header.is-scroll .site-header__menu li a::after {
    background: #46433B;
}

.site-header__menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.site-header__menu li a:hover::after {
    width: 100%;
}

/* CONTACTボタン */
.site-header__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 160px;
    background: #fff;
    color: #003E83;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    border-radius: 2px;
}

.site-header__contact:hover {
    opacity: 0.85;
}

.site-header.is-scroll .site-header__contact {
    background: #003E83;
    color: #fff;
}

/* ハンバーガー */
.site-header__toggle {
    display: none;
}

/* モバイルナビ */
.mobile-nav {
    display: none;
}

/* OPEN時 */
.site-header.is-open {
    background: #fff;
}

.site-header.is-open .site-header__title a {
    color: #46433B;
}

/* text-shadow消す（白背景） */
.site-header.is-open .site-header__title-main,
.site-header.is-open .site-header__title-main span,
.site-header.is-open .site-header__title-sub {
    text-shadow: none;
}



/* ========================================
フッター
======================================== */

/* =========================
お問い合わせ
========================= */

.footer-contact {
    position: relative;
    padding: 77px 0 79px;
    overflow: hidden;
    margin-bottom: 160px;
}

.footer-contact__head h2 {
    margin: 0 0 30px;
    font-size: 50px;
    font-weight: 300;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.footer-contact__head h2 span {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #fff;
}

.footer-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 550px - 150px);
    width: calc(50vw + 550px + 150px);
    height: 100%;
    background: url("../img/footer-contact_bg.jpg") no-repeat center center / cover;
    z-index: 0;
    border-radius: 2px 0 0 2px;
}

.footer-contact__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-contact__head {
    margin-bottom: 40px;
}

.footer-contact__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact__content {
    width: fit-content;
    color: #fff;
}

.footer-contact__lead {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 500;
}

.footer-contact__text {
    margin: 0 0 30px;
    font-size: 32px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
}

.footer-contact__tel {
    font-weight: 500;
}

.footer-contact__tel a {
    margin-left: 6px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
}

.footer-contact__document {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.footer-contact__cta {
    width: 45%;
    max-width: 500px;
}

.footer-contact__cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 104px;
    padding: 20px 72px 20px 24px;
    background: linear-gradient(to right, #DEE6F0 0%, #AEC5E0 100%);
    color: #183b72;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 2px;
}

.footer-contact__cta-main::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    color: #003E83;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    border-radius: 2px;
}

.footer-contact__cta-sub {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.footer-contact__cta-sub a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 60px;
    padding: 10px 38px 10px 14px;
    background: #EFE4D3;
    color: #644416;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 2px;
}

.footer-contact__cta-sub a::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    color: #003E83;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    border-radius: 2px;
}

/* =========================
フッター情報
========================= */

.site-footer {
    border-top: 1px solid #D3D1CB;
}

.site-footer__inner {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.9fr;
}

.site-footer__company,
.site-footer__sitemap,
.site-footer__links {
    padding: 80px 84px 100px;
    min-height: 460px;
    box-sizing: border-box;
}

.site-footer__sitemap,
.site-footer__links {
    border-left: 1px solid #D3D1CB;
}

/* 会社情報 */
.site-footer__logo {
    display: inline-block;
}

.site-footer__logo img {
    display: block;
    width: 170px;
    height: auto;
}

.site-footer__company-name {
    margin: 50px 0 30px;
    font-size: 20px;
    font-weight: 500;
    /* line-height: 1.8; */
}

.site-footer__address {
    margin: 0 0 16px;
}

.site-footer__info-list {
    margin: 0;
}

/* 共通 */
.site-footer__info-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.site-footer__info-row dt {
    flex-shrink: 0;
    min-width: 80px;
    font-size: 16px;
    font-weight: 500;
}

/* TEL */
.site-footer__info-row--tel {
    color: #906D3B;
    font-weight: 500;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
}

.site-footer__info-row--tel dt {
    font-size: 16px;
}

.site-footer__info-row--tel dd {
    font-size: 26px;
}

.site-footer__info-row--tel dd a {
    color: inherit;
}

/* FAX */
.site-footer__info-row--fax {
    font-weight: 500;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: 20px;
}

.site-footer__info-row--fax dt {
    font-size: 16px;
}

.site-footer__info-row--fax dd {
    font-size: 16px;
    color: inherit;
}

.site-footer__info-row--fax dd a {
    color: #2C2A25;
}

/* 営業時間・定休日 */
.site-footer__info-row--time,
.site-footer__info-row--holiday {
    align-items: flex-start;
}

.site-footer__info-row--time {
    margin-bottom: 5px;
}

/* 中央・右 */
.site-footer__title {
    margin: 0 0 70px;
    color: #A8A397;
    font-size: 30px;
    font-weight: 300;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
}

/* SITE MAP */
.site-footer__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav-list li {
    border-bottom: 1px solid #ddd9d2;
    width: 100%;
    max-width: 300px;
}

.site-footer__nav-list li a {
    position: relative;
    display: block;
    padding: 18px 54px 18px 0;
    color: #2C2A25;
    font-size: 18px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
}

.site-footer__nav-list li a::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #DEE6F0;
    color: #003E83;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.site-footer__nav-list li a:hover::after {
    background: #003E83;
    color: #fff;
}

.site-footer__copyright {
    display: block;
    margin-top: 30px;
    font-size: 14px;
}

/* LINKS */
.site-footer__link-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__link-list li a {
    font-weight: 500;
    display: block;
    padding: 20px 0;
    color: #7A7466;
    text-decoration: underline;
    text-decoration-color: #D3D1CB;
    text-underline-offset: 10px;
}

.site-footer__link-list li a:hover {
    opacity: 0.7;
}

/* =========================
追従ボタン
========================= */
.fixed-side {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 999;
}

/* 資料請求 追従ボタン */
.fixed-side__request {
    position: relative;
    margin-bottom: 50px;
}

.fixed-side__btn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    padding: 20px 12px;
    background: linear-gradient(to bottom, #F8F4ED 0%, #CFDCEB 100%);
    border: 3px solid #648DBE;
    color: #644416;
    font-weight: 500;
    text-decoration: none;
}

.fixed-side__main {
    color: #003E83;
    font-size: 24px;
}

.fixed-side__sub {
    font-size: 18px;
}

/* ×ボタン */
.fixed-side__close {
    position: absolute;
    top: -16px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #D3D1CB;
    color: #605B51;
    font-size: 30px;
    cursor: pointer;


    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* TOP 追従ボタン */
.fixed-side__top {
    display: block;
    width: 60px;
    height: 60px;
    background: #928C7E;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    padding-top: 10px;
    box-sizing: border-box;
    border-radius: 2px;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.fixed-side__top.is-show {
    opacity: 1;
    visibility: visible;
}


/* ========================================
トップページ
======================================== */

/* =========================
ファーストビュー
========================= */
.fv {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* スライダー */
.fv-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv-slider__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.fv-slider__item.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* 背景画像 */
.fv-slider__image {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: calc(100vh - 80px);
}

/* 黒フィルター */
.fv-slider__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
}

/* テキスト */
.fv__inner {
    position: relative;
    z-index: 2;
    max-width: 1700px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 40px 150px;
    box-sizing: border-box;
}

.fv__content {
    color: #fff;
}

/* 上段コピー */
.fv__lead {
    font-family: 'Shippori Mincho', serif;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 35px;
}

/* 中段コピー */
.fv__sub {
    font-family: 'Shippori Mincho', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* メインタイトル */
.fv__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 90px;
    line-height: 1;
}

/* 右下テキスト（スライド連動） */
.fv-slider__caption {
    display: none;
}

.fv-slider__footer {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    height: 80px;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    background-color: #fff;
}

/* 左側コピー */
.fv-slider__footer-copy {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

/* 右側まとめ */
.fv-slider__footer-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* タイトル */
.fv-slider__current-caption {
    margin: 0;
    font-size: 17px;
    font-family: 'Shippori Mincho', serif;
    line-height: 1.4;
}

/* ページャー */
.fv-slider__pager {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 数字 */
.fv-slider__pager-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 2px;
    color: #A8A397;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

/* アクティブ */
.fv-slider__pager-btn.is-active {
    background: #F0F0EE;
    color: #906D3B;
}


/* =========================
東海3県エリア（愛知・岐阜・三重）で注文住宅を検討されている方へ。
========================= */
.top-prologue {
    padding: 120px 0;
    background: url('../img/top-prologue_bg__01.png') center center / cover no-repeat;
    position: relative;
}

.top-prologue::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

.top-prologue__inner {
    width: 90%;
    max-width: 1840px;
    margin: 0 auto;
    background: url(../img/top-prologue_bg__02.png) center center / cover no-repeat;
    padding: 110px 0;
}

/* テキストボックス */
.top-prologue dl {
    background: #fff;
    padding: 60px 58px 50px 48px;
    max-width: 600px;
    margin: 0 auto 0 15%;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* タイトル */
.top-prologue dt {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.7;
    color: #123255;
    font-family: "Noto Serif JP", serif;
}

.top-prologue dt span {
    font-size: 24px;
}

/* 説明文 */
.top-prologue dd {
    margin: 20px 0 0;
    font-size: 18px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: 2;
}


/* =========================
アロックホームの家づくり
========================= */
.top-about {
    padding: 120px 0 100px;
    position: relative;
}

.top-about::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

.top-about__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 130px;
    max-width: 1350px;
    margin: 0 auto;
}

.top-about__text {
    width: fit-content;
    flex-shrink: 0;
}

.top-page h2 {
    margin: 0 0 60px;
    font-size: 50px;
    font-weight: 300;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    color: #A8A397;
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.top-page h2 span {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #2C2A25;
}

.top-about__text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #7C5C2E;
}

.top-about__image {
    flex: 1;
}

.top-about__image img {
    width: 100%;
    height: auto;
    display: block;
}

.top-about h3 {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
}

.top-about__concept {
    padding: 80px 20px 85px;
    background: linear-gradient(90deg, #F8F7F6 0%, #EFE4D3 50%, #F8F7F6 100%);
    max-width: 1400px;
    margin: 100px auto 0;
}

/* アロックホームの注文住宅の強み */
.top-about__lead {
    text-align: center;
    margin-bottom: 40px;
}

.top-about__concept-box {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 100px;
    margin: 100px auto 0;
}

.top-about__concept-item {
    position: relative;
    width: 22%;
}

/* 背景のぼかし画像 */
.top-about__concept-item::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    background: url('../img/blur_bg.png') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

.top-about__concept-item dl {
    position: relative;
    z-index: 1;
}

.top-about__concept-item dt {
    font-size: 40px;
    font-weight: 500;
    color: #123255;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    margin-bottom: 20px;
}

.top-about__concept-item dd {
    font-size: 16px;
    line-height: 1.8;
}

.top-about__concept-box img {
    width: 80px;
    height: auto;
}

/* 家づくりのよくあるお悩み */
.top-about__worries {
    margin-top: 120px;
}

.top-about__worries-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
    width: fit-content;
    margin: 0 auto;
}

.top-about__worries h2 {
    text-align: left;
}

.top-about__worries-title {
    position: relative;
    padding-right: 60px;
    min-width: 180px;
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* 縦線 */
.top-about__worries-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 90%;
    background: #D3D1CB;
    transform: translateY(-50%);
}

/* リスト */
.top-about__worries-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 80px;
    row-gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-about__worries-list li {
    position: relative;
    padding-left: 22px;
    font-size: 20px;
    font-weight: 500;
    /* line-height: 1.8; */
    color: #7A7466;
}

/* 丸 */
.top-about__worries-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 16px;
    height: 16px;
    background: #DECDB2;
    border-radius: 50%;
}

/* 不動産のプロと直接話す家づくり */
.top-about__strength {
    margin-top: 120px;
    width: 90%;
    max-width: 700px;
    margin: 120px auto 0;
}

.top-about__strength dl {
    position: relative;
    margin: 0;
    padding: 40px 60px;
    box-sizing: border-box;
    width: 100%;
    background: linear-gradient(90deg, #F8F4ED 0%, #ECF1F8 100%);
    overflow: hidden;
}

.top-about__strength dl+dl {
    margin-top: 10px;
}

/* 右上三角 */
.top-about__strength dl::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 48px solid #89A9CE;
    border-left: 48px solid transparent;
}

.top-about__strength dt,
.top-about__strength dd {
    position: relative;
    z-index: 1;
}

.top-about__strength dt {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #7C5C2E;
}

.top-about__strength dd {
    font-size: 16px;
    line-height: 1.5;
}

/* 失敗しない家づくりの順番 */
.top-about__step {
    margin: 120px auto 0;
}

.top-about__step-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.top-about__step-flow dl {
    position: relative;
    margin: 0;
    width: 320px;
    height: 190px;
    padding: 24px 20px;
    box-sizing: border-box;
    background: #F8F7F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2px;
}

.top-about__step-flow dl:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -54px;
    transform: translateY(-50%);
    width: 32px;
    height: 28px;
    background: url(../img/step-arrow.svg) center center / contain no-repeat;
}

.top-about__step-flow dt {
    font-size: 30px;
    font-weight: 300;
    font-family: 'Jost', sans-serif;
    color: #A8A397;
}

.top-about__step-flow dd {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123255;
}

/* 無料の見学・ご相談 随時受付中！まずはお気軽にお問い合わせください！ */
.top-about__contact {
    margin-top: 120px;
    text-align: center;
    width: 1100px;
    margin: 100px auto 0;
}

.top-about__contact-box {
    padding: 60px;
    background: #4072AC;
    border-radius: 2px;
}

.top-about__contact-lead {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.top-about__contact-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 0;
}

.top-about__contact-list li {
    width: 100%;
    max-width: 398px;
}

.top-about__contact-list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 74px 0 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 2px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #644416;
}

/* 右側の四角 */
.top-about__contact-list a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    border-radius: 2px;
    background: #DEE6F0;
}

/* 矢印 */
.top-about__contact-list a::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-52%);
    font-size: 20px;
    font-weight: 700;
    color: #003E83;
}

.top-about__contact-list a:hover::before {
    background: #A8A397;
}

.top-about__contact-list a:hover::after {
    color: #fff;
}

.top-about__contact-list a::before,
.top-about__contact-list a::after {
    transition: 0.3s;
}

.top-about__contact-note {
    margin: 28px 0 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #7C5C2E;
}


/* =========================
施工事例
========================= */
.top-works {
    margin-top: 160px;
    position: relative;
    background: linear-gradient(to bottom, transparent, #F0F0EE);
}

.top-works::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

/* 横並び */
.top-works__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.top-works__text p {
    line-height: 1.8;
    margin: 40px 0;
}

/* テキスト側 */
.top-works__text {
    max-width: 720px;
}

/* リンクボタン */
.link-btn .link-text {
    position: relative;
}

.link-btn .link-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #D3D1CB;
}

.link-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 80px 18px 24px;
    text-decoration: none;
    color: #2C2A25;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    max-width: 170px;
}

/* 四角 */
.link-btn .link-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 2px;
    background: #648DBE;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 矢印 */
.link-btn .arrow {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.link-btn:hover .link-icon {
    background: #A8A397;
}

.link-btn:hover .link-icon {
    background: #A8A397;
}

/* スライダー */
.top-works__slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.top-works-swiper {
    overflow: visible;
}

.top-works-swiper .swiper-slide {
    width: 35%;
}

.top-works__slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.top-works__slide-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 20px;
}

.top-works__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.top-works__slide-link:hover .top-works__slide-img img {
    transform: scale(1.04);
}

.top-works__slide-body {
    border-left: 1px solid #003E83;
    padding-left: 16px;
}

.top-works__slide-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;

    min-width: 0;
}

.top-works__slide-case {
    color: #A8A397;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.top-works__slide-title {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    /* margin-bottom: 0 !important; */

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
}

.top-works__slide-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.top-works__slide-tag {
    font-size: 16px;
    padding: 2px 8px;
    color: #7C5C2E;
    background-color: #fff;
    border-radius: 2px;
}

/* 家づくりの失敗例 */
.top-works__failure {
    margin-top: 80px;
    padding-bottom: 130px;
}

.top-works__failure-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
    width: fit-content;
    margin: 0 auto;
}

.top-works__failure h2 {
    text-align: left;
}

/* 左タイトル */
/* .top-works__failure-title {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
} */


.top-works__failure-title {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    position: relative;
    padding-right: 60px;
    min-width: 180px;
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* 縦線 */
.top-works__failure-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 130%;
    background: #D3D1CB;
    transform: translateY(-50%);
}

/* リスト */
.top-works__failure-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 75px;
    row-gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 各項目 */
.top-works__failure-list li {
    position: relative;
    padding-left: 22px;
    font-size: 20px;
    font-weight: 500;
    color: #7A7466;
}

/* 丸 */
.top-works__failure-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 16px;
    height: 16px;
    background: #DECDB2;
    border-radius: 50%;
}


/* =========================
こだわりの住宅性能
========================= */

.top-performance {
    padding: 160px 0;
    /* background: linear-gradient(to bottom,
            #F0F0EE 0%,
            rgba(240, 240, 238, 0) 100%); */
    background: linear-gradient(to bottom, #F0F0EE 0%, #F0F0EE 90%, rgba(240, 240, 238, 0) 100%);
    position: relative;
}

.top-performance::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

.top-performance__wrap {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}

/* 左テキスト */
/* .top-performance__text {
    width: 45%;
} */
.top-performance__text {
    width: 50%;
}

.top-performance__text h2 {
    margin: 0 0 30px;
    font-size: 50px;
    font-weight: 300;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    color: #A8A397;
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-performance__text h2 span {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #2C2A25;
}

/* .top-performance__text h3 {
    margin: 0 0 24px;
    font-size: 28px;
    font-family: 'Shippori Mincho', serif;
    color: #8A6733;
    line-height: 1.6;
} */

.top-performance__text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #906D3B;
    margin: 0 0 24px;
}

.top-performance__text p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.9;
    color: #2C2A25;
    width: 92%;
}

.top-performance__wrap .link-btn {
    display: block;
    margin-bottom: 20px;
}

/* 右リスト */
.top-performance__list {
    width: 40%;
}

.top-performance__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 各項目 */
.top-performance__list a {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 10px 60px 10px 0;
    text-decoration: none;
    color: #644416;
    border-bottom: 1px solid #D3D1CB;
    transition: color 0.3s;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
}

/* アイコン */
.top-performance__list a img {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

/* 右の四角 */
.top-performance__list a::before {
    content: "";
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s;
}

.top-performance__list a::after {
    content: "→";
    position: absolute;
    right: 9px;
    font-size: 23px;
    color: #003E83;
    transition: color 0.3s;
}

.top-performance__list a:hover::before {
    background: #003E83;
}

.top-performance__list a:hover::after {
    color: #fff;
}


/* =========================
よくある質問
========================= */

.top-faq {
    padding: 160px 0;
    position: relative;
}

.top-faq::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

/* 上部 */
.top-faq__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.top-faq__text h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 300;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    color: #A8A397;
    display: flex;
    align-items: center;
    gap: 30px;
    line-height: 1.2;
}

.top-faq__text h2 span {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #2C2A25;
}

/* 一覧リンク */
/* .top-faq__link .link-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 80px 18px 0;
    text-decoration: none;
    color: #2C2A25;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
}

.top-faq__link .link-text {
    position: relative;
}

.top-faq__link .link-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #D3D1CB;
}

.top-faq__link .link-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 2px;
    background: #648DBE;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.top-faq__link .arrow {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.top-faq__link .link-btn:hover .link-icon {
    background: #A8A397;
} */

/* FAQ一覧 */
.faq__list dl {
    display: grid;
    row-gap: 10px;
    margin: 0;
    padding: 20px 0 20px;
    border-bottom: 1px dashed #D3D1CB;
}

.faq__list dt,
.faq__list dd {
    margin: 0;
}

.faq__list dt {
    grid-column: 2;
    position: relative;
    font-weight: 700;
    padding-left: 50px;
}

.faq__list dt::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 28px;
    font-weight: 300;
    color: #A8A397;
    font-family: 'Jost', sans-serif;
}

.faq__list dd {
    grid-column: 2;
    position: relative;
    line-height: 1.8;
    padding-left: 50px;
}

.faq__list dd::before {
    content: "A";
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 28px;
    font-weight: 300;
    color: #A8A397;
    font-family: 'Jost', sans-serif;
}

.faq__list dd a {
    color: #2C2A25;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================
家づくりの流れ
========================= */

.top-flow {
    padding: 160px 0;
    position: relative;
}

.top-flow::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

.top-flow .inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* .top-flow__head h2 {
    margin: 0 0 60px;
} */

.top-flow__head h2 span {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #2C2A25;
}

.top-flow__wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

/* 左テキスト */
.top-flow__text {
    width: 32%;
}

.top-flow__lead {
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 500;
    color: #906D3B;
}

.top-flow__desc {
    line-height: 1.8;
}

/* 右フロー */
.top-flow__chart {
    width: 62%;
    padding: 45px 36px 35px;
    background: #EFE4D3;
    box-sizing: border-box;
    position: relative;
}

/* 背景の横棒 */
.top-flow__chart::before {
    content: "";
    position: absolute;
    left: 58px;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    background: #B7B0A3;
    z-index: 0;
}

.top-flow__list {
    display: flex;
    justify-content: space-between;
    /* gap: 10px; */
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-flow__list li {
    position: relative;
    width: 68px;
    height: 190px;
    background: #fff;
    color: #906D3B;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 18px 0 12px;
}

/* 番号丸 */
.top-flow__list li span {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #906D3B;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    writing-mode: horizontal-tb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 下リンク */
.top-flow__link {
    margin-top: 10px;
}

.top-flow__link-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 16px 90px 16px 24px;
    box-sizing: border-box;
    background: #EFE4D3;
    border-radius: 2px;
    text-decoration: none;
}

.top-flow__link-text {
    color: #906D3B;
    font-size: 20px;
    font-weight: 500;
}

.top-flow__link-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.top-flow__arrow {
    color: #003E83;
    font-size: 20px;
    line-height: 1;
    transition: color 0.3s;
}

.top-flow__link-btn:hover .top-flow__link-icon {
    background: #003E83;
}

.top-flow__link-btn:hover .top-flow__arrow {
    color: #fff;
}

/* アコーディオン */
.top-flow__toggle {
    width: 100%;
    padding: 16px 80px;
    border: none;
    background: #EFE4D3;
    position: relative;
    cursor: pointer;
    text-align: center;
    border-radius: 2px 2px 0 0;
}

.top-flow__toggle-text {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #906D3B;
}

.top-flow__toggle-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 40px;
    border-radius: 2px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 矢印 */
.top-flow__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transform: rotate(90deg);
    /* transform: rotate(90deg) translateY(1px); */
    transition: transform 0.3s;
    font-family: 'Shippori Mincho', serif;
}

/* 開いた時 */
.top-flow__toggle.is-open .top-flow__arrow {
    transform: rotate(-90deg);
}

.top-flow__detail {
    display: none;
    margin-top: 0;
    padding: 40px 50px 50px;
    border: 1px solid #DECDB2;
    border-top: none;
    border-radius: 0 0 2px 2px;
}

.top-flow__detail.is-open {
    display: block;
}

/* 1行分 */
.top-flow__detail dl {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 28px;
    margin: 0;
    padding: 0 0 42px;
}

/* 縦線 */
.top-flow__detail dl::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 0;
    width: 4px;
    background: #DECDB2;
}

.top-flow__detail dl:last-child {
    padding-bottom: 0;
}

.top-flow__detail dl:last-child::before {
    display: none;
}

.top-flow__detail dt,
.top-flow__detail dd {
    margin: 0;
}

/* タイトル行 */
.top-flow__detail dt {
    grid-column: 2;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    color: #644416;
    font-family: 'Shippori Mincho', serif;
}

/* 数字ボックス */
.top-flow__detail dt span {
    position: absolute;
    left: -88px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #F7F2E8;
    color: #644416;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 300;
    font-family: 'Jost', sans-serif;
    line-height: 1;
}

/* 本文 */
.top-flow__detail dd {
    grid-column: 2;
    padding-top: 12px;
    line-height: 1.8;
}


/* =========================
お客様の声
========================= */

.top-voice {
    padding: 160px 0;
    position: relative;
}

.top-voice ::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

.top-voice__list {
    display: flex;
    justify-content: space-between;
}

.top-voice__item {
    width: 48%;
    margin: 0;
    padding: 45px 40px 35px;
    box-sizing: border-box;
    background: #F8F4ED;
    border-radius: 2px;
}

.top-voice__item dt {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 500;
    /* line-height: 1.4; */
    color: #906D3B;
}

.top-voice__item dt span {
    margin-right: 16px;
    font-size: 20px;
}

.top-voice__item dd {
    line-height: 2;
}

.top-voice img {
    width: 90%;
    height: auto;
    margin: 100px auto 0;
    display: block;
}


/* =========================
会社概要
========================= */

.top-company {
    padding: 160px 0;
}

.top-company__list {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-top: 1px solid #D3D1CB;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.top-company__list dt,
.top-company__list dd {
    margin: 0;
    padding: 30px 0;
    border-bottom: 1px solid #D8D5CF;
    box-sizing: border-box;
}

.top-company__list dt {
    padding-left: 46px;
    font-weight: 700;
    line-height: 1.8;
}

.top-company__list dd {
    line-height: 1.8;
}

.top-company__list dd a {
    color: #2C2A25;
}



/* ========================================
下層ページ共通
======================================== */

.sub-fv {
    height: 400px;
}

.performance-page .sub-fv {
    background: url('../img/sub-fv-performance.jpg') center / cover no-repeat;
}

.works-page .sub-fv {
    background: url('../img/sub-fv-works.jpg') center / cover no-repeat;
}

.specification-page .sub-fv {
    background: url('../img/sub-fv-specification.jpg') center / cover no-repeat;
}

.contact-page .sub-fv {
    background: url('../img/sub-fv-contact.jpg') center / cover no-repeat;
}

.privacy-page .sub-fv {
    background: url('../img/sub-fv-contact.jpg') center / cover no-repeat;
}

.none-page .sub-fv {
    background: url('../img/sub-fv-contact.jpg') center / cover no-repeat;
}

.sub-fv__inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    padding-top: 170px;
}

.sub-fv__content {
    color: #fff;
}

.sub-fv__title {
    /* margin: 0 0 10px; */
    font-size: 80px;
    font-weight: 300;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    line-height: 1;
}

.sub-fv__title span {
    display: block;
    font-size: 28px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    margin-top: 10px;
}

.lower-title {
    font-size: 28px;
    font-weight: 500;
    color: #906D3B;
    margin-bottom: 60px;
}

.lower-title span {
    font-size: 16px;
    font-weight: 500;
    color: #605B51;
}


/* ========================================
PERFORMANCE こだわりの住宅性能
======================================== */

/* =========================
在来軸組工法 × パネル工法を組み合わせた「ハイブリッドパネル工法」
========================= */

.hybrid {
    padding: 100px 0;
}

.hybrid__title {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.6;
    font-weight: 500;
    color: #8B6B3E;
}

.hybrid__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hybrid__text {
    width: 30%;
    line-height: 2;
}

.hybrid__image {
    width: 65%;
}

.hybrid__image img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================
生活を支えるこだわりの5つの住宅性能
========================= */

.performance {
    padding: 100px 0;
    background-color: #F0F0EE;
}

.performance__lead {
    margin-bottom: 60px;
    line-height: 2;
}

.performance__items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
}

.performance__item {
    width: calc((100% - 120px) / 3);
    box-sizing: border-box;
}

.performance__link {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #644416;
    border-bottom: 1px solid #D3D1CB;
    padding: 10px 60px 10px 0;
}

.performance__link-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.performance__icon {
    width: 80px;
    height: auto;
}

.performance__text {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
}

/* 矢印 */
.performance__link::after {
    content: "↓";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #003E83;
    transition: color 0.3s;
}

.performance__link:hover::after {
    background: #0B3A75;
    color: #fff;
}


/* =========================
各住宅性能 説明
========================= */

.feature {
    padding: 100px 0;
}

.feature-durability,
.feature-zeh {
    background-color: #F8F7F6;
}

.feature:last-child {
    margin-bottom: 300px;
    padding-bottom: 0;
}

.feature__wrap {
    display: flex;
    align-items: flex-start;
    gap: 120px;
}

.feature__heading {
    flex-shrink: 0;
    width: 153px;
    font-size: 36px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
}

.feature__content {
    flex: 1;
    min-width: 0;
}

.feature__group+.feature__group {
    margin-top: 100px;
}

.feature__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 0 0 30px;
    border-bottom: 1px solid #D3D1CB;
}

.feature__item:last-child {
    border-bottom: none;
    padding: 0;
}

.feature__item+.feature__item {
    margin-top: 30px;
}

.feature__text {
    width: 50%;
    flex-shrink: 0;
}

.feature__item--full .feature__text {
    width: 100%;
}

.feature__subtitle {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #644416;
}

.feature__subtitle span {
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #605B51;
}

.feature__desc {
    margin: 0;
    font-size: 16px;
    line-height: 2;
}

.feature__desc span {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
}

/* 番号リスト */
.feature__text ol {
    margin: 20px 0 20px;
    padding: 0;
    list-style: none;
    counter-reset: number;
}

.feature__text ol li {
    position: relative;
    padding-left: 28px;
    font-weight: 500;
}

.feature__text ol li+li {
    margin-top: 10px;
}

/* 丸付き番号 */
.feature__text ol li::before {
    counter-increment: number;
    content: counter(number);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #9F7C4A;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* h5（小見出し） */
.feature__text h5 {
    margin: 25px 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.feature__text h5 span {
    margin-left: 16px;
    font-size: 14px;
    font-weight: 400;
}

/* dl全体 */
.feature__text dl {
    margin: 0 0 20px;
}

.feature__text dl>div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.feature__text dt {
    position: relative;
    padding-left: 16px;
    padding: 0 20px 0 16px;
    font-weight: 500;
    flex-shrink: 0;
}

.feature__text dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9F7C4A;
}

.feature__image {
    /* width: 47%; */
    flex: 1;
}

.feature__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* ZEH説明文 */
.feature__definition {
    background-color: #fff;
    border-radius: 2px;
    padding: 36px 50px 40px;
    margin: 0 0 60px;
}

.feature__definition dt {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #123255;
}

.feature__definition dd {
    font-size: 15px;
    line-height: 2;
}

.feature-note {
    font-size: 14px;
    margin: 100px 0 0;
}


/* ========================================
SPECIFICATION 設備・仕様
======================================== */

.spec-section {
    padding: 100px 0 80px;
}

.spec-skybalcony {
    padding-top: 200px !important;
}

.spec-skybalcony,
.spec-kitchen,
.spec-storage,
.spec-toilet,
.spec-facade {
    background: #F0F0EE;
}

.spec-section .inner {
    max-width: 1180px;
    width: 90%;
    margin: 0 auto;
}

/* 見出し */
.spec__head {
    position: relative;
    margin: 0 0 30px;
    line-height: 1;
}

/* 日本語（前面） */
.spec__ja {
    display: block;
    font-size: 28px;
    font-weight: 500;
    color: #906D3B;
    position: relative;
    z-index: 2;
    transform: translateY(17px);
}

/* 英語（背景） */
.spec__en {
    display: block;
    font-size: 80px;
    color: #DECDB2;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1;
}

.spec-living .spec__en,
.spec-bathroom .spec__en,
.spec-powder .spec__en,
.spec-furnture .spec__en,
.spec-appearance .spec__en {
    color: #DEE6F0;
}

/* 上段 */
.spec__intro {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.spec__main-image {
    width: 60%;
}

.spec__main-image img {
    width: 100%;
    display: block;
}

.spec__intro-text {
    width: 34%;
}

.spec-storage .spec__intro-text,
.spec-powder .spec__intro-text,
.spec-toilet .spec__intro-text,
.spec-furnture .spec__intro-text,
.spec-facade .spec__intro-text {
    width: 100%;
}

.spec__intro-text--full {
    width: 100%;
}

.spec__intro-text h3 {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 500;
    color: #644416;
    font-family: 'Shippori Mincho', serif;
}

.spec__intro-text p {
    line-height: 1.8;
}

/* 下段 */
.spec__features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 40px;
}

.spec__item {
    width: 49%;
    display: flex;
    justify-content: space-between;
}

.spec__item-image {
    width: 48%;
}

.spec__item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.spec__item-text {
    width: 47%;
}

.spec__item-text dt {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #644416;
    font-family: 'Shippori Mincho', serif;
}

.spec__item-text dd {
    line-height: 1.8;
}


/* =========================
外観デザイン
========================= */

.spec-appearance {
    margin-bottom: 200px;
}

/* 耐震性 */
.spec-seismic {
    margin-top: 70px;
}

.spec-appearance__title {
    margin: 0 0 30px;
    font-size: 36px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
}

.spec-seismic__box {
    background: linear-gradient(to bottom, #F8F4ED 0%, #F3EEE6 40%, #ECF1F8 100%);
    padding: 90px 90px 70px;
    border-radius: 2px;
}

/* 上段・下段 共通 */
.spec-seismic__top,
.spec-seismic__bottom {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.spec-seismic__image {
    width: 30%;
}

.spec-seismic__image img {
    display: block;
    width: 100%;
    height: auto;
}

.spec-seismic__content {
    flex: 1;
}

.spec-seismic__content h4 {
    margin: 0 0 10px;
    color: #644416;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
}

.spec-seismic__content>p {
    line-height: 1.8;
}

/* OR部分 */
.spec-seismic__or {
    position: relative;
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
}

.spec-seismic__or span {
    display: block;
    color: #EFE4D3;
    font-size: 60px;
    font-weight: 300;
    font-family: 'Jost', sans-serif;
    line-height: 1;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

/* テキスト行 */
.spec-seismic__or p {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 20px;
    color: #644416;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    line-height: 1.6;
}

/* 左右ライン */
.spec-seismic__or p::before,
.spec-seismic__or p::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: #D3D1CB;
}

.spec-seismic__or p::before {
    right: 100%;
    width: 100vw;
}

.spec-seismic__or p::after {
    left: 100%;
    width: 100vw;
}

/* ポイント一覧 */
.spec-seismic__points {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

/* 各項目 */
.spec-seismic__point {
    margin: 0;
}

/* 見出し */
.spec-seismic__point dt {
    position: relative;
    margin: 0 0 5px;
    padding-left: 70px;
    color: #7C5C2E;
    font-weight: 500;
}

.spec-seismic__point dd {
    padding-left: 70px;
    line-height: 1.8;
}

/* アイコン */
.spec-seismic__point dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    width: 63px;
    height: 63px;
    background-image: url(../img/icon-bousai.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.spec-seismic__point:nth-child(2) dt::before {
    background-image: url('../img/icon-taikyu.svg');
}

.spec-seismic__point:nth-child(3) dt::before {
    background-image: url('../img/icon-hosho.svg');
}

/* 断熱性 */
.spec-insulation {
    margin-top: 90px;
}

.spec-insulation__group--top {
    padding-bottom: 60px;
    border-bottom: 1px solid #D3D1CB;
}

.spec-insulation__group--bottom {
    padding-top: 60px;
}

.spec-insulation__box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.spec-insulation__image {
    width: 40%;
}

.spec-insulation__image img {
    display: block;
    width: 100%;
    height: auto;
}

.spec-insulation__box .spec__item-text {
    flex: 1;
}

.spec-insulation .spec__features {
    justify-content: space-between;
}

.spec-insulation .spec__item {
    width: 31%;
    flex-direction: column;
    gap: 36px;
}

.spec-insulation .spec__item-image {
    width: 100%;
}

.spec-insulation .spec__item-text {
    width: 100%;
}

.spec-insulation .spec__item-label {
    display: inline-block;
    margin-bottom: 5px;
    padding: 2px 8px;
    background-color: #F8F4ED;
    color: #906D3B;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    width: fit-content;
}

.spec-insulation .spec__item-text dt {
    display: flex;
    flex-direction: column;
}

/* 保証 */
.spec-guarantee {
    margin-top: 90px;
}

.spec-guarantee__inspection {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.spec-guarantee__inspection-left {
    width: 29%;
}

.spec-guarantee__inspection-left img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.spec-guarantee__inspection h4 {
    font-size: 20px;
    font-weight: 700;
    color: #4072AC;
    margin-bottom: 8px;
}

.spec-guarantee__inspection p {
    line-height: 1.8;
}

.spec-guarantee__inspection-right {
    flex: 1;
}

.spec-guarantee__inspection-right img {
    display: block;
    width: 100%;
    height: auto;
}

.spec-guarantee__ground {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px 90px;
    background-color: #F8F4ED;
    border-radius: 2px;
}

.spec-guarantee__ground-image {
    width: 30%;
    max-width: 190px;
}

.spec-guarantee__ground-image img {
    display: block;
    width: 100%;
    height: auto;
}

.spec-guarantee__ground .spec__item-text {
    width: 100%;
}


/* ========================================
お問い合わせ
======================================== */

.contact {
    padding: 60px 0;
    position: relative;
}

.contact::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #D3D1CB;
}

.contact__title {
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 500;
    color: #906D3B;
}

.contact__info {
    margin-top: 120px;
}

.contact__info-text {
    margin-bottom: 16px;
}

.contact__tel {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 20px;
    background-color: #F8F7F6;
    border-radius: 2px;
    padding: 12px 30px;
    width: fit-content;
    box-sizing: border-box;
}

.contact__tel dt {
    font-weight: 500;
}

.contact__tel dd {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
}

.contact__tel dd a {
    font-size: 26px;
    color: inherit;
}

/* =========================
フォーム
========================= */

.form {
    padding-top: 100px;
}

.contact-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* 各行 */
.contact-form__row {
    margin-bottom: 40px;
}

.contact-form__row--half {
    max-width: 450px;
}

/* ラベル */
.contact-form__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #644416;
}

/* 必須 */
.required {
    display: inline-block;
    padding: 0 6px;
    background-color: #906D3B;
    color: #fff;
    font-size: 14px;
    border-radius: 2px;
}

/* テキスト・メール・TEL入力 */
.contact-form__input {
    width: 100%;
    padding: 14px 20px;
    background-color: #F8F7F6;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #2C2A25;
    box-sizing: border-box;
}

.contact-form__input::placeholder {
    color: #7A7466;
}

/* テキストエリア */
.contact-form__textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: #F8F7F6;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #2C2A25;
    height: 300px;
    resize: vertical;
    box-sizing: border-box;
}

.contact-form__textarea::placeholder {
    color: #7A7466;
}

/* チェックボックス */
.wpcf7-list-item {
    margin: 0;
}

.contact-form__check {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.contact-form__check label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

.contact-form__check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4A6FA5;
    cursor: pointer;
}

.contact-form__postcode p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form__postcode p span:first-child {
    flex-shrink: 0;
}

.contact-form__postcode .wpcf7-form-control-wrap {
    flex: 1;
}

.contact-form__postcode .contact-form__input {
    width: 100%;
    display: block;
}

/* プライバシーポリシー同意 */
.contact-form__submit {
    margin-top: 40px;
    text-align: center;
}

.wpcf7-acceptance label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 30px;
}

.wpcf7-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.wpcf7-acceptance a {
    color: #333;
    text-decoration: underline;
}

/* 送信ボタン */
.contact-form__button {
    display: block;
    width: 240px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #4072AC;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    /* letter-spacing: 0.1em; */
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-form__button:hover {
    opacity: 0.8;
}

/* プライバシーポリシーの注記テキスト */
.contact-form__submit-note {
    line-height: 1.8;
    margin-bottom: 40px;
}

.wpcf7-acceptance label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 60px;
}

.cf-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.wpcf7-acceptance a {
    color: #003E83;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wpcf7-acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* =========================
よくある質問
========================= */

.faq {
    margin-bottom: 200px;
    padding-top: 170px;
}



/* ========================================
お問い合わせ完了 サンクスページ
======================================== */

.thanks {
    margin: 200px auto 210px;
}

.thanks p {
    line-height: 2;
}

.contact-thanks__link {
    width: fit-content;
    margin: 10px 0 0 auto;
}



/* ========================================
施行実績 一覧
======================================== */

.works-archive {
    margin: 200px auto 300px;
}

.works-archive__desc {
    line-height: 2;
    margin-bottom: 80px;
}

.works-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 100px;
}

.works-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.works-card__img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 16px;
}

.works-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.works-card__link:hover .works-card__img img {
    transform: scale(1.04);
}

.works-card__body {
    border-left: 2px solid #003E83;
    padding-left: 16px;
}

.works-card__header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px;
}

.works-card__case {
    font-weight: 500;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    color: #A8A397;
    white-space: nowrap;
}

.works-card__title {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 0;
}

.works-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.works-card__tag {
    font-size: 16px;
    padding: 3px 8px;
    color: #7C5C2E;
    background-color: #F8F6F1;
    border-radius: 2px;
}

/* ページネーション */
.works-paginate {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 100px;
}

.works-paginate .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background: #DEE6F0;
    color: #003E83;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
}

.works-paginate .page-numbers.current {
    background: #003E83;
    color: #fff;
}

.works-paginate .page-numbers.dots {
    background: transparent;
    color: #003E83;
}


/* 画像一覧 */
.works-images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 40px;
}

.works-images img {
    display: block;
    width: 48%;
    height: auto;
}


/* ========================================
施行実績 投稿
======================================== */

/* タイトル */
.works-detail__header {
    margin: 200px auto 80px;
}

.works-detail__case {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    color: #A8A397;
}

.works-detail__title {
    font-size: 36px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    margin-bottom: 20px;
}

.works-detail__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.works-detail__tag {
    font-size: 16px;
    padding: 2px 10px;
    color: #7C5C2E;
    background-color: #F8F6F1;
}

/* スライダー */
.works-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.works-swiper {
    width: 100%;
    overflow: hidden;
}

.works-swiper .swiper-slide {
    width: 60%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 2px;
}

.works-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.works-swiper .swiper-slide:not(.swiper-slide-active) img {
    opacity: 0.6;
}

/* サムネイル */
.works-thumbs {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.works-thumbs__swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    transform: none !important;
    margin-top: 60px;
}

.works-thumbs__slide {
    width: calc((100% - 6px * 7) / 8) !important;
    aspect-ratio: 3 / 2;
    background: #f0f0f0;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    border-radius: 2px;
}

.works-thumbs__slide:hover,
.works-thumbs__slide.is-active {
    opacity: 1;
}

.works-thumbs__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* セクション共通 */
.works-detail {
    padding: 60px 0 80px;
}

/* 説明文 */
.works-detail__description {
    line-height: 2;
    margin-bottom: 60px;
}

/* スペック情報 */
.works-detail__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 160px;
    column-gap: 80px;
}

.works-detail__spec-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 15px;
    margin: 0;
    border-bottom: 1px solid #D3D1CB;
}

.works-detail__spec-item:nth-child(1),
.works-detail__spec-item:nth-child(2) {
    border-top: 1px solid #D3D1CB;
}

.works-detail__spec-item dt {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #644416;
    min-width: 72px;
}

.works-detail__spec-item dd {
    font-weight: 500;
}

/* ── 詳細画像グリッド ── */
.works-detail__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.works-detail__grid-item {
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 2px;
}

.works-detail__grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ナビゲーション */
.works-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 200px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.works-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #2C2A25;
}

.works-nav__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #DEE6F0;
    font-size: 16px;
    color: #003E83;
    border-radius: 2px;
}

.works-nav__center a {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: #D3D1CB;
}

.works-nav__prev,
.works-nav__next {
    min-width: 80px;
}

.works-nav__next a {
    justify-content: flex-end;
}



/* ========================================
施行実績 投稿
======================================== */

.none-page__link {
    width: fit-content;
    margin: 10px 0 0 auto;
}