@charset "UTF-8";

:root {
    --main-color: #006E42;
    --white-color: #FFFFFF;

    /* テキストフォント */
    /* 日本語ベース */
    --font-base-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    /* 英語見出し */
    --font-base-family-en: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    --font-base-size: 1rem; /* 16px */
    --font-base-weight-medium: 500;
    --font-base-weight-regular: 400;
    --font-base-weight-semibold: 600;
    --font-base-weight-bold: 700;
    --font-base-weight-black: 900;
    --font-base-line-height: 1.8;

    /* テキストカラー */
    --base-text-color: #000000;
    --white-text: #FFFFFF;
}

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

html {
    font-family: var(--font-base-family);
    font-size: var(--font-base-size);
    font-weight: var(--font-base-weight-medium);
    line-height: var(--font-base-line-height);
    background: var(--white-color);
    color: var(--base-text-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 106px 0 0 0;
    padding: 0;
    position: relative;
}

nav ol, nav ul {
    margin: 0;
}

:is(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:is(:link, :visited) {
    color: inherit;
}

address {
    font-style: normal;
}

:where(ol, ul) {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* ===========================================================================
*  スクロール制御
=========================================================================== */

/* UIロック状態（スクロール禁止） */
html.ui-lock{
    overflow: hidden;
}

/* ===========================================================================
*  丸角ページリンクボタン
=========================================================================== */

/* 共通ボタン（PC基準） */
/* 丸角緑ボタン背景グラデーション */
.common-button > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.846em  1.0769em 0.846em  2.0769em;

    border-radius: 10px;

    cursor: pointer;
    overflow: hidden;

    gap: 1.3846em;

    font-weight: var(--font-base-weight-medium);
    font-size: 0.8125rem;
    color: var(--white-text);
    font-style: normal;
    line-height: 2.538;
    white-space: nowrap;

    background: var(--main-color);
}

/* 矢印アイコン */
.common-button > a::after {
    content: "";
    display: inline-block;

    width: 27px;
    height: 22px;

    mask-image: url("../../image/basic/migiyajirushi.webp");
    background-color: #FFFFFF;
    mask-repeat: no-repeat;
    mask-size: contain;
}

/* hover できるデバイス（PCなど）だけ hover を適用 */
@media (any-hover: hover) {
    .common-button > a:hover {
        opacity: 0.8;
    }
}

/* ===========================================================================
*  ユーザーアクションボタン（買取査定/お問い合わせ/仲介業者様専用サイト）
=========================================================================== */

.action-button > a {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 30px;

    border: 1px solid #B5B5B5;
    border-radius: 5px;

    cursor: pointer;

    font-size: 0.8125rem;
    font-weight: var(--font-base-weight-medium);
    line-height: 1.4;
    color: var(--base-text-color);
    white-space: nowrap;

    background: #FFFFFF;
}

.action-button > a::before {
    content: "";
    display: inline-block;
    
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}

/* ヘッダーアイコン */
header .action-button--building > a::before {
    mask-image: url("../../image/basic/icon-building.svg");

    width: 16px;
    height: 18px;
}

header .action-button--building > a,
header .action-button--tell > a {
    gap: 7px;
}

header .action-button--calculator > a::before {
    mask-image: url("../../image/basic/icon-calculator-search.svg");
    background-color: var(--main-color);

    width: 19px;
    height: 19px;
}

header .action-button--calculator > a {
    gap: 15px;
    padding-left: 1.21em;
    padding-right: 1.93em;
}

header .action-button--mail > a::before {
    mask-image: url("../../image/basic/icon-mail.svg");
    background-color: var(--main-color);

    width: 20px;
    height: 14px;
}

header .action-button--mail > a {
    gap: 7px;
    padding: 0 1em;
}

/* タブレット～スマホ */
.responsive-header .action-button > a {
    color: var(--white-text);
    background-color: var(--main-color);
    border: none;

    padding: 0.538em 0.769em;

    height: auto;

    font-size: 0.9286rem;
    line-height: 1.2;
}

/* hover できるデバイス（PCなど）だけ hover を適用 */
@media (any-hover: hover) {
    .responsive-header .action-button > a:hover {
        opacity: 0.8;
    }
}

header .responsive-header .action-button--building > a::before {
    mask-image: url("../../image/basic/icon-building.svg");
    background-color: var(--white-color);

    width: 14px;
    height: 15.65px;
}

/* フッターアクションボタン */
footer .action-button > a {
    border-radius: 10px;
    height: auto;
    padding: 1em;
}

/* お問い合わせ */
footer .action-button--mail > a::before {
    mask-image: url("../../image/basic/icon-mail.svg");
    background-color: var(--main-color);

    width: 20px;
    height: 14px;
}

footer .action-button--mail > a {
    gap: 7px;
}

/* 買取査定 */
footer .action-button--calculator > a::before {
    mask-image: url("../../image/basic/icon-calculator-search.svg");
    background-color: var(--main-color);

    width: 19px;
    height: 19px;
}

footer .action-button--calculator > a {
    gap: 15px;
}

/* 業者様専用サイト */
footer .action-button--building > a::before {
    mask-image: url("../../image/basic/icon-building.svg");
    background-color: var(--main-color);

    width: 17px;
    height: 19px;
}

footer .action-button--building > a {
    gap: 7px;
}

/* ==========================================================================
*  h3 見出し・アルファベット見出しテキスト
===========================================================================*/

h3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;

    font-size: 1rem;
    font-weight: var(--font-base-weight-medium);
    line-height: 1;
}

.h3-en {
    font-size: 4.375rem;
    font-family: var(--font-base-family-en);
    font-weight: var(--font-base-weight-semibold);
    line-height: 1.114;
    color: var(--main-color);

    white-space: nowrap;
}

/* ==========================================================================
*  header
===========================================================================*/

.responsive-header,
.responsive-drawer {
    display: none;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.site-logo {
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;

    padding: 20px 24px 20px 56px;

    background-color: #FFFFFF;

    font-size: 0.875rem;
    font-weight: var(--font-base-weight-medium);
    line-height: 1;

    z-index: 10000;
}

.header-nav {
    margin-left: auto;

    color: var(--base-text-color);
}

/* ===============================
*  ナビ全体
=============================== */

.nav-list {
    display: flex;
    flex-direction: row;
    justify-content: end;
    flex-wrap: wrap;

    margin: 0;
    padding: 0;

    align-items: center;

    gap: 1.4285em;
}

/* =============================
*  メインナビ ブロック
============================= */

.nav-block.nav-block--main {
    display: flex;
    flex-direction: column;
    align-items: end;

    gap: 1.5em;
}

.nav-block.nav-block--main .nav-main {
    display: flex;
    flex-direction: row;

    gap: 2.571em;
}

/* コーポレート専用スタイル */
.nav-block.nav-block--main .nav-corporate {
    position: relative;

    width: fit-content;
    padding-left: 12px;

    text-align: end;
    font-size: 0.8125rem;
    font-weight: var(--font-base-weight-regular);
}

.nav-block.nav-block--main .nav-corporate::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    width: 5px;
    height: 5px;

    background: #006E42;
    border-radius: 50%;
}

.nav-main {
  display: flex;
  gap: 30px;
}

/* メインナビ 縦線 */
.nav-main li {
  position: relative;
}

/* 2番目以降に縦線を入れる */
.nav-main li:not(:first-child)::before {
  content: "";
  position: absolute;

  left: -18px;          /* gap(36px)の半分 */
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 1em;

  background-color: #C1C1C1;
}

.nav-list .nav-block.nav-block--bottom {
    display: flex;
    flex-direction: row;
    gap: 1.4285em;
}

/* =============================
*  CTA ブロック
============================= */

.nav-list .nav-block.nav-block--cta {
    display: flex;
    flex-direction: column;

    gap: 6px;

    align-items: stretch;
}

/* 下2つ */
.nav-list .nav-block.nav-block--cta .row {
    display: flex;
    flex-direction: row;

    gap: 6px;
}

.nav-list .nav-block.nav-block--cta .action-button > a {    
    display: flex;

    font-size: 0.875rem;
}

.nav-list .nav-block.nav-block--cta .top .action-button  > a  {
    color: var(--white-text);
    background-color: var(--main-color);
    border: none;
}

.nav-list .nav-block.nav-block--cta .top .action-button  > a::before  {
    background-color: var(--white-text);
}

/* =============================
*  電話問い合わせ ブロック
============================= */

.nav-list .nav-block.nav-block--otoiawase {
    position: relative;

    width: 66px;
    height: 66PX;
    /* align-self: stretch; */

    background: #FFFFFF;
    border: 1px solid #B5B5B5;
    border-radius: 5px;
}

.nav-list .nav-block.nav-block--otoiawase::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 27.89px;
    height: 28.53px;

    mask-image: url(../../image/basic/phone.svg);
    background-color: var(--main-color);
    mask-repeat: no-repeat;
    mask-size: contain;
}

.nav-list .nav-block.nav-block--otoiawase .nav-otoiawase-btn{
    position:absolute;
    inset:0;

    border:none;
    background:none;
    cursor:pointer;
}

/* hover できるデバイス（PCなど）だけ hover を適用 */
@media (any-hover: hover) {
    .nav-block a:hover,
    .nav-list .nav-block.nav-block--otoiawase:hover {
        opacity: 0.8;
    }
}

/* =============================
*  電話問い合わせ ブロック クリック時のオーバーレイ
============================= */

.overlay-bg{
    position: fixed;
    inset: 0;

    background: #0F0F0F;

    z-index: 11000; /* site-header(10000)より上 */

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .3s ease;
}

/* htmlにoverlayクラスが付いたら表示 */
html.overlay .overlay-bg{
    opacity: 0.62;
    visibility: visible;
    pointer-events: auto;

    height: calc(100dvh + 1px);

    overflow: auto;
    overscroll-behavior-y: contain;
}

/* 背景スクロール防止 */
html.overlay body{
    overflow: hidden;
}

/* =============================
*  電話問い合わせモーダル
============================= */

.overlay-content-wrap {
    position: fixed;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 11010; /* overlay-bgより上 */

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .3s ease;
}

/* 表示状態 */
html.overlay .overlay-content-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

html.overlay .overlay-content{
    display: flex;
    flex-direction: row;
    text-align: center;
    gap: 41px;
}

html.overlay .overlay-content .content {
    width: 502px;
    padding: 55px 0 60px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

html.overlay .overlay-content .otoiawase-company {
    font-size: 1.5625rem;
    font-weight: var(--font-base-weight-bold);
    line-height: 1.32;
    color: var(--main-color);
}

html.overlay .overlay-content .otoiawase-tel {
    position: relative;
    display: inline-block;

    font-size: 3.4375rem;
    font-weight: var(--font-base-weight-black);
    line-height: 1;

    padding: 0.618em 0 0.545em 0.945em;

    width: fit-content;
    margin: 0 auto;
}

html.overlay .overlay-content .otoiawase-tel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-40%);
    width: 40px;
    height: 41px;
    mask-image: url(../../image/basic/phone.svg);
    background-color: var(--main-color);
    mask-repeat: no-repeat;
    mask-size: contain;
}

html.overlay .overlay-content .otoiawase-business-info {
    display: flex;
    flex-direction: column;
    gap: 0.7142em;

    font-size: 0.875rem;
    font-weight: var(--font-base-weight-medium);
    line-height: 1;
}

html.overlay .overlay-content .otoiawase-business-info .otoiawase-business-days-hours,
html.overlay .overlay-content .otoiawase-business-info .otoiawase-holiday {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.642em;
}

html.overlay .overlay-content .otoiawase-business-info .breen-bg {
    background-color: var(--main-color);
    color: var(--white-text);
    padding: 0.2857em 0;
    width: 68px;
}

html.overlay .overlay-content .otoiawase-business-info .text {
    font-size: 1.125rem;
}

/* 閉じる */
.overlay-content-wrap .close {
    position: relative;

    display: inline-flex;
    align-items: center;

    font-size: 1.125rem;
    font-weight: var(--font-base-weight-bold);
    color: var(--white-text);

    padding-right: 26px; /* ×のスペース */

    margin-left: auto;
    cursor: pointer;
}

/* ×の共通線 */
.overlay-content-wrap .close::before,
.overlay-content-wrap .close::after {
    content: "";
    position: absolute;

    width: 20px;
    height: 2px;

    background: var(--white-text);

    top: 50%;
    right: 0;
    transform-origin: center;

    transform-origin: center;
}

/* ／ */
.overlay-content-wrap .close::before {
    transform: translateY(-50%) rotate(45deg);
}

/* ＼ */
.overlay-content-wrap .close::after {
    transform: translateY(-50%) rotate(-45deg);
}

/* ==========================================================================
*  footer
===========================================================================*/

.site-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    background: var(--main-color);
    color: var(--white-text);

    font-weight: var(--font-base-weight-regular);

    padding: 4.6875em 6.25em 3.125em;
}

.site-footer .site-logo {
    width: 218px;
    height: auto;
}

/* フッター左 */
.footer-inner-left {
    display: flex;
    flex-direction: column;
}

.footer-inner-left > *:not(:first-child) {
    margin-top: 66px;
}

.footer-inner-left > :nth-child(2) {
    margin-top: 26px;
}

.footer-inner-left .real-estate-license {
    font-size: 0.8125rem;
}

.footer-inner-left .address-wrap {
    display: flex;
    flex-direction: column;

    line-height: 1;

    gap: 40px;
}

.footer-inner-left .address-wrap .address {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
}

.footer-inner-left .address-wrap .address .company-name {
    font-size: 0.875rem;
    font-weight: var(--font-base-weight-medium);
    line-height: 1;
}

.footer-cta {
    display: flex;
    flex-direction: row;

    gap: 7px;
}

/* フッター右 */
.footer-inner-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-nav {
    display: flex;
    flex-direction: column;

    font-weight: var(--font-base-weight-medium);
    line-height: 1;
    text-align: end;

    gap: 37px;
}

/* コーポレートサイト・プライバシーポリシー */
.footer-legal-links {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

    font-size: 0.875rem;
}

.footer-legal-links li {
    position: relative;
    padding-left: 12px;
}

.footer-legal-links li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    width: 5px;
    height: 5px;

    background: #FFFFFF;
    border-radius: 50%;
}

/* hover できるデバイス（PCなど）だけ hover を適用 */
@media (any-hover: hover) {

    footer a:hover {
        opacity: 0.8;
    }
}

/* コピーライト */

.copyright {
    padding: 2em 0;

    font-size: 0.875rem;
    font-weight: var(--font-base-weight-regular);
    text-align: center;
    color: var(--white-text);
    line-height: 1;

    background-color: #255743;
}

/* ===========================================================================
*  main
===========================================================================*/
main {
    width: 100%;
}

section {
    padding: 0 6.25rem 0 6.25rem;
}

@media screen and (max-width: 1200px) {

    body {
        margin: 173px 0 0 0;
        padding: 0;
        position: relative;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: end;
    }

}

@media screen and (max-width: 1100px) {
    html.overlay .overlay-content {
    flex-direction: column;
}
}

@media screen and (max-width: 1000px) {

    .site-footer {
        padding: 4.6875em 3.125em 3.125em;
    }

}

/* ▼ ～768px：スマホ～タブレット */
@media screen and (max-width: 768px) {

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    html {
        font-size: 14px;
    }

    body {
        margin: 70.22px 0 0 0;
        /* iPhone Safari のタブ上下設定に対応するため */
        margin-top: env(safe-area-inset-bottom);
    }

    /* ===========================================================================
    *  丸角ページリンクボタン
    =========================================================================== */

    /* 共通ボタン（PC基準） */
    /* 丸角緑ボタン背景グラデーション */
    .common-button > a {
        padding: 0.846em  0.916em 0.846em  1.3333em;

        border-radius: 10px;

        cursor: pointer;
        overflow: hidden;

        gap: 1em;

        font-size: 0.8571rem;
        line-height: 1;
    }

    /* ===========================================================================
    *  ユーザーアクションボタン（お問い合わせ/仲介業者様専用サイト）
    =========================================================================== */

    .action-button > a {
        height: auto;

        border-radius: 10px;

        font-size: 1rem;
        line-height: 1;
    }

    /*===========================================================================
    *  header
    ===========================================================================*/

    /* ----------------------------
        追従アクションエリア
    ---------------------------- */

    .fixed-action-area {
        /* height: calc(87px + env(safe-area-inset-bottom)); */
        height: 87px;

        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1.14em 0.7143rem;
        /* padding-bottom: calc(1.14em + env(safe-area-inset-bottom)); */
        /* padding-bottom: calc(env(safe-area-inset-bottom) + 1.14em); */

        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;

        background-color: var(--white-color);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity .35s ease,
            visibility 0s linear .35s;

        z-index: 10000;
    }

    html.is-mobile.is-scrolled .fixed-action-area {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transition:
            opacity .35s ease,
            visibility 0s;
        
        background-color: rgba(255, 255, 255, 0.9);
    }

    /* スマホメニューが開かれているときは非表示 */
    html.is-mobile.is-scrolled.menu-open .fixed-action-area {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .fixed-action-area .action-button {
        flex: 1;
    }

    .fixed-action-area .action-button > a  {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.538em;

        font-size: 0.9286rem;
        font-weight: var(--font-base-weight-bold);
        line-height: 1.3;
        font-family: 'Noto Sans JP', sans-serif;

        padding: 1.0769em;

        background-color: var(--main-color);
        color: var(--white-text);
    }

    /* hover できるデバイス（PCなど）だけ hover を適用 */
    @media (any-hover: hover) {
        .fixed-action-area .action-button > a:hover {
            background-color: rgba(0, 110, 66, 0.9);
        }
    }

    .fixed-action-area .action-button > a::before {
        background-color: var(--white-color);
        width: 21px;
        height: 21px;
    }

    .action-button.action-button--tell > a::before {
        mask-image: url(../../image/basic/phone.svg);
    }

    /* ----------------------------
        ヘッダー配置管理
    ---------------------------- */

    .site-header {
        justify-content: space-between;
        padding: 15px 23px 10px 18px;
    }

    .site-logo {
        width: 125px;
        height: auto;
    }

    /* ----------------------------
        ヘッダー背景色管理
    ---------------------------- */
    /* スクロール後（白ヘッダー） */
    html.is-scrolled .site-header {
        background-color: #FFFFFF;
    }

    html.is-scrolled .nav-list {
        color: var(--base-text-color);
    }

    /* PC用ヘッダー */
    html.is-mobile .header-nav {
        display: none;
    }

    /* スマホ画面用ヘッダー */
    html.is-mobile .responsive-header {
        display: flex;
        justify-content: end;
        align-items: center;

        gap: 15px;
    }

    /* ハンバーガー */
    html.is-mobile .hamburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    html.is-mobile .hamburger .spam-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;

        gap: 4px;
    }

    html.is-mobile .hamburger .spam-wrap span {
        display: block;
        width: 40px;
        height: 2.5px;

        background: #000000;

        transform-origin: center;
    }

    html.is-mobile .hamburger .text {
        font-family: 'Josefin Sans';
        font-style: normal;
        font-size: 1rem;
        font-weight: var(--font-base-weight-semibold);
        line-height: 1;
        transform: translateY(3px); /* g, y, p などの**下に伸びる文字用の余白（descender）分少し下げる */
    }

    /* バツ状態 */
    html.is-mobile.menu-open .hamburger span:nth-child(1) {
        transform: translateY(6.5px) rotate(26.53deg);
    }
    
    html.is-mobile.menu-open .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    html.is-mobile.menu-open .hamburger span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-26.53deg);
    }

    /* スマホメニュー表示時のヘッダー色変更 */
    html.is-mobile.menu-open .site-header {
        color: var(--white-text);
        background-color: var(--main-color);
        height: 84px;
    }

    /* スマホメニュー表示時のロゴ変更 */
    html.menu-open .site-logo{
        content: url("../../image/basic/sub-logo.svg");
    }

    html.is-mobile.menu-open .site-header .responsive-header .action-button > a {
        display: none;
    }

    /* バツマーク白色変更 */
    html.is-mobile.menu-open .hamburger .spam-wrap span {
        background: var(--white-text);
    }

    /* スマホメニュー表示 */
    .responsive-drawer {
        display: flex;

        position: fixed;
        inset: 0;
        top: 77.34px; /* ヘッダーの高さ分 */
        left: 0;

        background-color: var(--main-color);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: scale(1.03);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0s linear 0.25s;
        
        color: var(--white-text);

        overflow-y: auto;
        scrollbar-width: none;    /* Firefox */
        -ms-overflow-style: none; /* IE, Edgeレガシー */

        /* 背景をスクロールさせないようにする */
        overflow: auto;
        overscroll-behavior-y: contain;
        
        z-index: 1000;
    }

    .responsive-drawer::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    html.menu-open.is-mobile .responsive-drawer {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: scale(1);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0s;
    }

    /* スマホメニューが開いた時に表示されている[position: absolute]などの要素を見えなくさせるため */
    html.menu-open main * {
        z-index: 0;
    }

    .drawer-menu-wrap {
        position: relative;
        z-index: 1;

        display: flex;
        flex-direction: column;
        align-items: center;

        width: 100%;
        height: calc(100dvh + 1px);

        text-align: center;
    }

    /* メニューリスト */
    .drawer-menu {
        list-style: none;
        
        display: flex;
        flex-direction: column;
        gap: 29px;

        padding: 45px 0;

        font-size: clamp(1rem, 0.463rem + 2.29vw, 1.563rem);
    }

    /* CTAボタン */
    .responsive-header-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 6px;
    }

    .responsive-header-cta .action-button:nth-child(3),
    .responsive-header-cta .action-button:nth-child(4) {
        grid-column: 1 / -1;
    }

    .responsive-header-cta .action-button > a {
        font-size: 1rem;
        padding: 1.375em 1.6875em;

        height: auto;

        border-radius: 10px;

        line-height: 1;
    }

    /* CTAボタンアイコン */
    header .responsive-drawer .action-button--building > a::before {
        background-color: var(--main-color);

        width: 17px;
        height: 19px;
    }

    header .responsive-drawer .action-button--building > a,
    header .responsive-drawer .action-button--tell > a {
        height: 66px;
        padding: 0;
    }

    header .responsive-drawer .action-button--calculator > a::before {
        background-color: var(--main-color);

        width: 17px;
        height: 17px;
    }

    header .responsive-drawer .action-button--calculator > a {
        width: 178px;
        height: 56px;
        gap: 5px;
        padding: 0;
    }

    header .responsive-drawer .action-button--mail > a::before {
        background-color: var(--main-color);

        width: 20px;
        height: 14px;
    }

    header .responsive-drawer .action-button--mail > a {
        width: 178px;
        height: 56px;
        gap: 7px;
        padding: 0;
    }

    header .responsive-drawer .action-button.action-button--tell > a::before {
        mask-image: url(../../image/basic/phone.svg);
        background-color: var(--main-color);

        width: 15px;
        height: 16px;
    }

    header .responsive-drawer .footer-legal-links {
        padding: 35px  0 41px 0;
        margin: 0;
    }

    /* =============================
    *  SP用電話問い合わせモーダル
    ============================= */

    html.overlay .overlay-content {
        flex-direction: column;
        gap: 19px;
    }

    html.overlay .overlay-content .content {
        width: 324px;
        padding: 33px 0 35px;
    }

    html.overlay .overlay-content .otoiawase-company {
        font-size: 1.4286rem;
        line-height: 1.45;
    }

    html.overlay .overlay-content .otoiawase-tel {
        font-size: 2.7143rem;
        padding: 0.684em 0 0.631em 0.921em;
    }

    html.overlay .overlay-content .otoiawase-tel::before {
        width: 28.07px;
        height: 28.72px;
    }

    html.overlay .overlay-content .otoiawase-business-info .text {
        font-size: 1rem;
    }

    html.overlay .overlay-content .otoiawase-business-info .text {
        font-size: 1.2857rem;
    }

    /* ==========================================================================
    *  footer
    ===========================================================================*/

    .site-footer {
        flex-direction: column;
        justify-content: center;
        
        text-align: center;

        padding: 60px 26px 40px 26px;
    }

    .footer-inner-left {
        padding-bottom: 3.0714em;
    }

    .footer-inner-left .logo {
        text-align: -webkit-center;
    }

    .footer-inner-left > *:not(:first-child) {
        margin-top: 2.85em;
    }

    .footer-inner-left .address-wrap .address {
        gap: 0.75rem;
    }

    .footer-inner-left .real-estate-license {
        font-size: 0.7857rem;
    }

    .footer-inner-left .address-wrap {
        gap: 3.214em;
    }

    .footer-inner-left .address-wrap .address .company-name {
        font-size: 1rem;
    }

    .footer-inner-left .address-wrap .address .sp {
        line-height: 1.428;
    }

    .footer-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.7857em;
    }

    .footer-cta .action-button > a {
        width: 232px;
        height: 48px;
    }

    .footer-nav {
        position: relative;

        display: grid;
        grid-template-columns: 1fr 1fr;
        width: fit-content;
        margin: 0 auto;

        gap: 20px 0;

        padding: 2.5em 0;
    }

    /* 左列 */
    .footer-nav-item:nth-child(odd){
        text-align:left;
    }

    /* 右列 */
    .footer-nav-item:nth-child(even){
        text-align:right;
    }

    /* 上の線 */
    .footer-nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 1px;
        background: #fff;
    }

    /* 下の線 */
    .footer-nav::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 1px;
        background: #fff;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;

        /* テキスト量が違っても「・」の開始位置を揃えるため */
        margin: 2.5em auto;
        margin-bottom: 0;
    }
    
    .copyright {
        padding: 30px 0 215px 0;
    }

    /* ==========================================================================
    *  main
    ===========================================================================*/

    section {
        padding-left: 3.5714rem;
        padding-right: 3.5714rem;
    }    

}

/* ▼ ～480px：スマホ */
@media screen and (max-width: 480px) {

    /* ==========================================================================
    *  main
    ===========================================================================*/

    section {
        padding-left: 1.4286rem;
        padding-right: 1.4286rem;
    }
}

/* ==========================================================================
*  0330追加
===========================================================================*/

/* ロゴ横のPC用テキスト */
.header-logo-text {
    font-size: 0.75rem;
    margin-left: 16px;
    font-weight: var(--font-base-weight-medium);
        align-self: flex-end; 
    margin-bottom: 8px;  
}
/* タブレットサイズ以下でロゴ横テキストを非表示にする */
@media screen and (max-width: 1314px) {
    .header-logo-text {
        display: none !important;
    }
}
/* 注釈テキスト（※一部除く） */
.note-text {
    display: block; /* 改行させる */
    font-size: 0.75rem; /* 小さめの文字サイズ（約12px） */
    font-weight: var(--font-base-weight-regular); /* 見出し内でも太字にならないようにする */
    margin-top: 4px; /* 上のテキストとの余白 */
    line-height: 1.4;
}