/* ================================
   footer
================================ */
.site-footer {
    background: #F3F6F3;
    padding-top: clamp(32px, 6vw, 80px);
}

.footer-inner {
    width: clamp(0px, calc(100% - 40px), 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: clamp(200px, 21.24vw, 290px) 1fr;
    gap: clamp(4px, 0.51vw, 7px) clamp(24px, 2.93vw, 40px);
}

/* 左カラム */
.footer-left {
    max-width: clamp(200px, 21.24vw, 290px);
}

.footer-logo {
    width: clamp(140px, 14.64vw, 200px);
    display: block;
}

.footer-company {
    margin-top: clamp(10px, 1.17vw, 16px);
    font-size: clamp(12px, 1.02vw, 14px);
    line-height: 1.6;
    color: #3A3A3A;
    letter-spacing: 0.05em;
}

.footer-company span {
    font-size: clamp(14px, 1.32vw, 18px);
    line-height: 1.6;
    color: #3A3A3A;
    font-weight: 600;
    letter-spacing: 0;
}


/* ================================
   右ナビ
================================ */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.54vw, 21px);
}

/* 見出し行 */
.footer-nav-head {
    position: relative;
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns:
        clamp(120px, 11.71vw, 160px) clamp(200px, 19.77vw, 270px) clamp(180px, 17.57vw, 240px) minmax(clamp(110px, 10.98vw, 150px), 1fr);
    padding-bottom: clamp(8px, 0.95vw, 13px);
}


.footer-nav .footer-nav-head a {
    display: inline-block;
    font-size: clamp(14px, 1.24vw, 17px);
    font-weight: 600;
    line-height: 1.6;
    color: #3A3A3A;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-nav .footer-nav-head a:hover {
    opacity: 0.8;
}

.footer-btn:hover {
    opacity: 0.8;
}

/* 見出し直下の一本線 */
.footer-nav-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #006E7C;
}

/* 本体 */
.footer-nav-body {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns:
        clamp(120px, 11.71vw, 160px) clamp(200px, 19.77vw, 270px) clamp(180px, 17.57vw, 240px) minmax(clamp(110px, 10.98vw, 150px), 1fr);
    gap: 1px;
    margin-top: clamp(6px, 1.54vw, 21px);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: clamp(4px, 0.51vw, 7px);
}

.footer-nav a {
    line-height: 1.6;
    color: #3A3A3A;
    font-size: clamp(13px, 1.10vw, 15px);
    text-decoration: none;
}

.footer-nav .footer-nav-body a:hover {
    text-decoration: underline;
    color: #4CBCBB;
}

/* ================================
   下段リンク
================================ */
.footer-bottom-links {
    position: relative;
    grid-column: 2 / 3;
    display: flex;
    gap: clamp(48px, 6.95vw, 95px);
    padding-bottom: clamp(8px, 1.02vw, 14px);
    width: fit-content;
    padding-right: clamp(24px, 3.37vw, 46px);
}

.footer-bottom-links::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #006E7C;
}

.footer-bottom-links a {
    font-size: clamp(14px, 1.24vw, 17px);
    font-weight: 600;
    line-height: 1.6;
    color: #3A3A3A;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-bottom-links a:hover {
    opacity: 0.8;
}

/* ================================
   コピーライト
================================ */
.footer-copy {
    margin-top: clamp(64px, 10.10vw, 138px);
    padding: clamp(14px, 1.46vw, 20px);
    text-align: center;
    background: #fff;
    font-size: clamp(14px, 1.24vw, 17px);
    line-height: 1.6;
    font-family: "ABeeZee", sans-serif;
    color: #3A3A3A;
}

/* ================================
   footer button（指定通り）
================================ */
.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 0.81vw, 11px);
    background: #006E7C;
    color: #fff;
    width: clamp(180px, 18.30vw, 250px);
    padding: clamp(6px, 0.66vw, 9px) 0;
    text-decoration: none;
    font-size: clamp(14px, 1.17vw, 16px);
    margin: clamp(64px, 9.52vw, 130px) 0 0;
    border-radius: 5px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.footer-btn img {
    width: clamp(18px, 1.83vw, 25px);
}

.pc-only3 {
    display: block;
}

.sp-only3 {
    display: none;
}

@media screen and (max-width: 906px) {
    .pc-only3 {
        display: none;
    }

    .sp-only3 {
        display: block;
    }

    /* ================================
   footer SP nav
================================ */
    .site-footer {
        padding-top: 50px;
    }

    /* ブロック */
    .footer-sp-block {
        border-top: 1px solid #006E7C;
        padding: 20px 0 25px;
    }

    /* 見出し */
    .footer-sp-title {
        font-size: 17px;
        font-weight: 600;
        color: #000;
        line-height: 1.6;
        margin-bottom: 13px;
    }

    .footer-sp-title a {
        color: inherit;
        text-decoration: none;
    }

    /* リスト */
    .footer-nav-sp ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav-sp li {
        margin-bottom: 6px;
    }

    .footer-nav-sp li a {
        font-size: 16px;
        line-height: 1.6;
        color: #000;
        text-decoration: none;
    }

    .footer-nav-sp li a:hover {
        text-decoration: underline;
    }

    .footer-sp-title a {
        display: block;
        width: 100%;
    }

    .footer-inner {
        display: block;
    }

    .footer-bottom-links {
        display: block;
        margin-top: 0;
        padding: 0;
        width: 100%;
        border-top: 1px solid #006E7C;
    }

    .footer-bottom-links::after {
        display: none;
    }

    .footer-bottom-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid #006E7C;
        font-size: 17px;
        font-weight: 600;
        color: #000;
    }

    .footer-company-sp {
        margin: 47px auto 44px;
        width: 80%;
    }

    .footer-company-sp .footer-btn {
        margin: 0 0 18px;
        padding: 20px 0;
        width: 100%;
    }

    .footer-company-sp .footer-company {
        font-size: 13px;
        line-height: 1.6;
        letter-spacing: 0.02em;
    }

    .footer-company-sp .footer-company span {
        font-size: 17px;
        color: #3A3A3A;
        line-height: 1.6;
        letter-spacing: 0.07em;
        font-weight: 600;
    }

    .footer-nav-sp .footer-sp-block:first-child {
        border-top: none;
        padding-top: 0;
    }

    .footer-copy {
        font-size: 11px;
        letter-spacing: 0.14em;
        line-height: 1.6;
    }
}

/* ================================
　　　CTA
   ================================ */
.cta-contact-section {
    background: #006E7C;
    padding: clamp(30px, 4.03vw, 55px) 0;
    position: relative;
    margin-bottom: clamp(17px, 4.54vw, 62px);
    margin-top: clamp(20px, 5.27vw, 72px);
}

.cta-contact-inner {
    gap: clamp(20px, 2.93vw, 40px);
    width: clamp(320px, 79.06vw, 1080px);
    margin: 0 auto;
    background: #ffffff;
    padding: clamp(30px, 4.39vw, 60px) 0 0;
    display: flex;
    align-items: stretch;
    position: relative;
}

.cta-contact-title {
    position: absolute;
    font-family: "ABeeZee", sans-serif;
    top: -83px;
    left: 14px;
    font-size: clamp(40px, 7.32vw, 100px);
    font-weight: 400;
    color: #BFD1C6;
    z-index: 3;
    pointer-events: none;
    line-height: 1.6;
    letter-spacing: 0em;
}

.cta-contact-left {
    width: 55%;
    text-align: center;
    padding-left: clamp(40px, 7.69vw, 105px);
}

.cta-contact-lead {
    font-family: "Inter", sans-serif;
    font-size: clamp(14px, 1.17vw, 16px);
    margin-bottom: clamp(6px, 0.73vw, 10px);
    line-height: 1.6;
}

.cta-contact-btn {
    font-size: clamp(14px, 1.46vw, 20px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #006E7C;
    width: clamp(280px, 33.7vw, 460px);
    height: clamp(48px, 4.47vw, 61px);
    color: #ffffff;
    border-radius: clamp(20px, 2.2vw, 30px);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.6;
}

.cta-contact-arrow {
    margin-left: clamp(6px, 0.73vw, 10px);
}

.cta-contact-tel-number {
    gap: clamp(6px, 0.8vw, 11px);
    margin-top: clamp(6px, 0.73vw, 10px);
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: #006E7C;
    font-size: clamp(22px, 2.64vw, 36px);
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-contact-tel-icon {
    width: clamp(18px, 1.76vw, 24px);
    height: auto;
    flex-shrink: 0;
}

.cta-contact-tel-note {
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    font-size: clamp(14px, 1.17vw, 16px);
    margin: clamp(-3px, -0.37vw, -5px) 0 clamp(10px, 1.24vw, 17px);
}

.cta-contact-tel-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.cta-contact-right {
    width: 40%;
    position: relative;
}

.cta-contact-copy {
    position: absolute;
    top: clamp(40px, 4.76vw, 65px);
    left: -10px;
    z-index: 2;
    font-size: clamp(12px, 1.17vw, 16px);
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.cta-contact-right img {
    width: clamp(200px, 23vw, 314px);
    position: absolute;
    bottom: -7px;
    right: 0;
    max-width: 100%;
    height: auto;
    z-index: 1;
}

.cta-contact-section {
    transition: opacity 0.2s ease;
}

.cta-contact-section:hover,
.cta-contact-section:active {
    opacity: 0.8;
}

/* ================================
   CTA（SP専用）
================================ */

@media screen and (max-width: 819px) {
    .cta-contact-section {
        margin: 0;
    }

    .cta-contact-inner {
        display: block;
        background: unset;
        padding: 18px 0 0;
    }

    /* 上部コピー */
    .cta-contact-sp-head {
        margin-bottom: 27px;
    }

    .cta-contact-sp-copy {
        color: #fff;
        font-size: 14px;
        line-height: 1.33;
        padding: 0 28px;
        font-weight: 300;
        font-family: "Inter", sans-serif;
    }

    /* 白カード */
    .cta-contact-sp-card {
        background: #fff;
        border-radius: 24px;
        padding: 8px 15px 36px;
        position: relative;
        /* text-align: center; */
    }

    /* Contact文字 */
    .cta-contact-sp-title {
        font-size: 40px;
        font-weight: 500;
        color: #BFD1C6;
        padding-left: 6px;
        line-height: 1.6;
    }

    /* リード文 */
    .cta-contact-sp-lead {
        font-size: 16px;
        line-height: 1.51;
        margin: 21px 0 26px;
        text-align: center;
        color: #3A3A3A;
        font-family: "Inter", sans-serif;
    }

    /* ボタン */
    .cta-contact-sp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        background: #006E7C;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.6;
        height: 74px;
        border-radius: 100px;
    }

    .cta-contact-sp-btn img {
        width: 20px;
    }

    /* 電話番号 */
    .cta-contact-sp-tel {
        margin-top: 20px;
        font-size: 32px;
        font-weight: 500;
        color: #006E7C;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        letter-spacing: 0.05em;
        line-height: 1.6;
        font-family: "ABeeZee", sans-serif;
    }

    .cta-contact-sp-tel img {
        width: 20px;
    }

    .cta-contact-sp-tel-link {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .cta-contact-sp-note {
        font-size: 13px;
        font-family: "Inter", sans-serif;
        text-align: center;
        line-height: 0;
        font-weight: 400;
    }

    /* イラスト */
    .cta-contact-sp-img {
        position: absolute;
        top: -42px;
        right: -4px;
        width: 124px;
        height: auto;
    }
}

.pc-only2 {
    display: block;
}

.sp-only2 {
    display: none;
}

@media screen and (max-width: 819px) {
    .pc-only2 {
        display: none;
    }

    .sp-only2 {
        display: block;
    }
}