@charset "UTF-8";
@import "reset.css";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&family=Noto+Serif+JP:wght@400..900&family=Zen+Kaku+Gothic+New&display=swap");

:root {
    --font-noto-sans: "Noto Sans JP", sans-serif;
    --font-noto-serif: "Noto Serif JP", serif;
    --font-zen: "Zen Kaku Gothic New", sans-serif;
    --color-base: #000;
    --color-brown: #2b1a06;
    --color-brown-light: #d2c7b2;
    --color-red: #840000;
    --color-red-light: #940000;
    --color-link: #419ba5;
    --color-gold: #c19130;
    --color-gold-dark: #9c731f;
    --color-green: #1c481d;
    --color-blue: #1C3E48;
    --width-ratio-1920: 100vw / 1920;
    --width-ratio: 1px / 1;
}

@media screen and (max-width: 768px) {
    :root {
        --width-ratio-1920: 100vw / 390;
        --width-ratio: 100vw / 390;
    }
}

html {
    overflow-x: hidden;
}
body {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--color-base);
    background-color: #fff;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--color-base);
    text-decoration: none;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.7;
}

/* utility */
.pc-only {
    display: block;
}
.pc-only-ib {
    display: inline-block;
}
.sp-only {
    display: none;
}
.sp-only-ib {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }
    .pc-only-ib {
        display: none;
    }
    .sp-only {
        display: block;
    }
    .sp-only-ib {
        display: none;
    }
}

/* セクションタイトル */
.c-secttl {
    font-size: calc(90 * var(--width-ratio-1920));
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.44;
    color: var(--color-brown);
    text-align: center;
    position: relative;
    padding-bottom: 0.1em;
    margin-bottom: calc(100 * var(--width-ratio-1920));
}
.c-secttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: calc(222 * var(--width-ratio-1920));
    height: calc(8 * var(--width-ratio-1920));
    background-color: var(--color-red);
    transform: translateX(-50%);
}
.c-secttl--gold {
    color: #fff;
}
.c-secttl--gold::after {
    background-color: var(--color-gold);
}
.c-secttl__sub {
    display: block;
    font-size: calc(40 * var(--width-ratio-1920));
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    padding-bottom: 0.9em;
}

@media screen and (max-width: 768px) {
    .c-secttl {
        width: 103%;
        font-size: 50px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 75px;
    }
    .c-secttl::after {
        bottom: -12px;
        width: 144px;
        height: 10px;
    }
    .c-secttl--sp44 {
        font-size: 44px;
    }
    .c-secttl--sp44::after {
        bottom: -12px;
        width: 108px;
        height: 8px;
    }
    .c-secttl__sub {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .c-secttl__sub {
        font-size: 16px;
    }
}

/* FV */
.l-fv {
    position: relative;
    padding-top: calc(785 * var(--width-ratio-1920));
}
.l-fv__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: -1;
}
.l-fv__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: calc(34 * var(--width-ratio-1920));
}
.l-fv__btns.sp-only {
    display: none;
}
.l-fv__btns-item {
    position: relative;
}
.l-fv__btns-link {
    width: max(calc(583 * var(--width-ratio-1920)), 380px);
    height: max(calc(113 * var(--width-ratio-1920)), 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: max(calc(57 * var(--width-ratio-1920)), 40px);
    font-size: max(calc(37 * var(--width-ratio-1920)), 27px);
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.l-fv__btns-link--red {
    background-color: var(--color-red-light);
    border: 5px solid var(--color-red);
}
.l-fv__btns-link--red:hover {
    background-color: #7a0000;
    transform: translateY(-2px);
    opacity: 1;
}
.l-fv__btns-link--gold {
    flex-direction: column;
    row-gap: 0;
    background-color: var(--color-gold);
    border: 5px solid var(--color-gold-dark);
}
.l-fv__btns-link--gold:hover {
    background-color: #a67c00;
    transform: translateY(-2px);
    opacity: 1;
}
.l-fv__btns-link--gold span {
    font-size: max(calc(14 * var(--width-ratio-1920)), 12px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    color: #fff;
}
.l-fv__btns-link--tel {
    font-size: max(calc(56 * var(--width-ratio-1920)), 40px);
    column-gap: calc(17 * var(--width-ratio-1920));
}
.l-fv__btns-link--tel:before {
    content: "";
    display: block;
    width: calc(51 * var(--width-ratio-1920));
    height: calc(48 * var(--width-ratio-1920));
    background-image: url(../img/icon_phone_gold2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* .l-fv__btns-link::after {
    content: '';
    display: block;
    width: max(calc(20 * var(--width-ratio-1920)), 14px);
    height: max(calc(20 * var(--width-ratio-1920)), 14px);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    right: calc(49 * var(--width-ratio-1920));
    transform: translateY(-50%) rotate(45deg);
} */
.l-fv__item-balloon {
    width: max(calc(439 * var(--width-ratio-1920)), 313px);
    height: max(calc(67 * var(--width-ratio-1920)), 53px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: max(calc(34 * var(--width-ratio-1920)), 32px);
    font-size: max(calc(25 * var(--width-ratio-1920)), 16px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: calc(100% - 14px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.l-fv__item-balloon::after {
    content: "";
    display: block;
    width: max(calc(28 * var(--width-ratio-1920)), 22px);
    height: max(calc(24 * var(--width-ratio-1920)), 19px);
    background-color: #000;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: max(calc(-15 * var(--width-ratio-1920)), -11px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.l-fv__bottom {
    width: 100%;
    /* background: url(../img/bg_top.webp) no-repeat center center / cover; */
    padding-top: calc(198 * var(--width-ratio-1920));
    padding-bottom: calc(94 * var(--width-ratio-1920));
    position: relative;
    z-index: -2;
}
.l-fv__lead {
    width: calc(1116 * var(--width-ratio-1920));
    margin: 0 auto;
    margin-bottom: calc(50 * var(--width-ratio-1920));
}
.l-fv__lead img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.l-fv__lead p {
    display: none;
}
.l-fv__value {
    width: max(calc(1231 * var(--width-ratio-1920)), 247px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 8px;
    margin: 0 auto;
}
.l-fv__value-item {
    /* width: max(calc(1231 * var(--width-ratio-1920)), 247px);
    height: max(calc(136 * var(--width-ratio-1920)), 95px); */
    width: calc(1231 * var(--width-ratio-1920));
    height: calc(136 * var(--width-ratio-1920));
    display: flex;
    justify-content: center;
    /* font-size: max(calc(34 * var(--width-ratio-1920)), 24px); */
    font-size: calc(34 * var(--width-ratio-1920));
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.41;
    text-align: center;
    color: #fff;
    /* padding-top: max(calc(34 * var(--width-ratio-1920)), 10px); */
    padding-top: calc(34 * var(--width-ratio-1920));
}
.l-fv__value-item:nth-of-type(2n + 1) {
    background: url(../img/sec01-btn-bg01.webp) no-repeat center center / cover;
}
.l-fv__value-item:nth-of-type(2n) {
    background: url(../img/sec01-btn-bg02.webp) no-repeat center center / cover;
}
.l-fv__value-item:nth-of-type(4) {
    /* padding-top: max(calc(27 * var(--width-ratio-1920)), 20px); */
}
.l-fv__value-item:nth-of-type(3) {
    /* font-size: max(calc(19 * var(--width-ratio-1920)), 14px);
    padding-top: max(calc(32 * var(--width-ratio-1920)), 24px); */
}

@media screen and (max-width: 1020px) {
    .l-fv__value {
        width: calc(1440 * var(--width-ratio-1920));
        align-items: flex-start;
        justify-content: space-between;
        column-gap: unset;
        row-gap: calc(9 * var(--width-ratio-1920));
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .l-fv__value-item {
        width: 100%;
        font-size: calc(42 * var(--width-ratio-1920));
        height: calc(172 * var(--width-ratio-1920));
        padding-top: calc(44 * var(--width-ratio-1920));
        /* width: calc(714 * var(--width-ratio-1920));
        height: calc(268 * var(--width-ratio-1920));
        font-size: calc(44 * var(--width-ratio-1920));
        padding-top: calc(20 * var(--width-ratio-1920)); */
    }
    .l-fv__value-item:nth-of-type(3) {
        background: url(../img/sec01-btn-bg02.webp) no-repeat center center /
            cover;
    }
    .l-fv__value-item:nth-of-type(4) {
        background: url(../img/sec01-btn-bg01.webp) no-repeat center center /
            cover;
    }
}

@media screen and (max-width: 768px) {
    .l-fv {
        padding-top: 88px;
    }
    .l-fv__img {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        height: auto;
        object-fit: contain;
        z-index: -1;
    }
    .l-fv__top {
        position: absolute;
        top: calc(494 * var(--width-ratio));
        left: 50%;
        transform: translateX(-50%);
    }
    .l-fv__btns {
        flex-direction: column;
        column-gap: unset;
        row-gap: 40px;
    }
    .l-fv__btns.sp-only {
        display: flex;
    }
    .l-fv__btns.pc-only {
        display: none;
    }
    .l-fv__btns-link {
        width: 418px;
        height: 81px;
        border-radius: 68px;
        font-size: 21px;
    }
    .l-fv__btns-link::before {
        display: none;
    }
    .l-fv__btns-link--tel {
        font-size: 40px;
        column-gap: 10px;
        padding-bottom: 2px;
    }
    .l-fv__btns-link--gold span {
        font-size: 16px;
    }
    .l-fv__item-balloon {
        width: 367px;
        height: 62px;
        background-color: #fff;
        border-radius: 41px;
        font-size: 17px;
        color: #000;
        top: -56px;
    }
    .l-fv__item-balloon::after {
        width: 27px;
        height: 21px;
        background-color: #fff;
        bottom: -13px;
    }
    .l-fv__bottom {
        width: 100%;
        /* background: url(../img/bg_top_sp.webp) no-repeat center center / cover; */
        padding-top: calc(33 * var(--width-ratio-1920));
        padding-bottom: calc(36.6 * var(--width-ratio-1920));
        padding-left: calc(20 * var(--width-ratio-1920));
        padding-right: calc(20 * var(--width-ratio-1920));
        margin-top: calc(-10 * var(--width-ratio));
    }
    .l-fv__lead {
        width: 100%;
        margin-bottom: calc(30 * var(--width-ratio-1920));
    }
    .l-fv__lead img {
        display: none;
    }
    .l-fv__lead p {
        display: block;
        font-size: calc(26 * var(--width-ratio));
        font-weight: 900;
        letter-spacing: -0.05em;
        line-height: 1.45;
        text-align: center;
        color: #000;
        position: relative;
    }
    .l-fv__lead p::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -0.1em;
        left: 0;
        width: 100%;
        height: calc(3 * var(--width-ratio));
        background-image: url(../img/dot.png);
        background-repeat: repeat;
        background-position: left bottom;
        background-size: contain;
    }
    .l-fv__lead p .red {
        color: #c60000;
    }
    .l-fv__value {
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
        column-gap: unset;
        row-gap: calc(9 * var(--width-ratio));
        flex-wrap: wrap;
    }
    .l-fv__value-item {
        width: calc(175 * var(--width-ratio));
        height: calc(67 * var(--width-ratio));
        font-size: calc(11 * var(--width-ratio));
        padding-top: calc(5 * var(--width-ratio));
    }
    .l-fv__value-item:nth-of-type(3) {
        background: url(../img/sec01-btn-bg02.webp) no-repeat center center /
            cover;
    }
    .l-fv__value-item:nth-of-type(4) {
        background: url(../img/sec01-btn-bg01.webp) no-repeat center center /
            cover;
    }
    .l-fv__value-item:nth-of-type(3),
    .l-fv__value-item:nth-of-type(4) {
        font-size: calc(11 * var(--width-ratio));
        padding-top: calc(14 * var(--width-ratio));
    }
}

@media screen and (max-width: 480px) {
    .l-fv {
        padding-top: 88px;
    }
    .l-fv__img {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        height: auto;
        object-fit: contain;
        z-index: -1;
    }
    .l-fv__top {
        position: absolute;
        top: calc(494 * var(--width-ratio));
        left: 50%;
        transform: translateX(-50%);
    }
    .l-fv__btns {
        flex-direction: column;
        column-gap: unset;
        row-gap: calc(27 * var(--width-ratio));
        margin-top: 20px;
    }
    .l-fv__btns-link {
        width: calc(349 * var(--width-ratio));
        height: calc(68 * var(--width-ratio));
        border-radius: calc(57 * var(--width-ratio));
        font-size: calc(18 * var(--width-ratio));
    }
    .l-fv__btns-link::after {
        width: calc(10 * var(--width-ratio));
        height: calc(10 * var(--width-ratio));
        border-top: 4px solid #fff;
        border-right: 3px solid #fff;
        border-radius: 3px;
        position: absolute;
        top: 50%;
        right: calc(29 * var(--width-ratio));
        transform: translateY(-50%) rotate(45deg);
    }
    .l-fv__btns-link--gold span {
        font-size: calc(12 * var(--width-ratio));
    }
    .l-fv__item-balloon {
        width: calc(306 * var(--width-ratio));
        height: calc(52 * var(--width-ratio));
        background-color: #fff;
        border-radius: calc(34 * var(--width-ratio));
        font-size: calc(14 * var(--width-ratio));
        color: #000;
        top: calc(-47 * var(--width-ratio));
    }
    .l-fv__item-balloon::after {
        width: calc(23 * var(--width-ratio));
        height: calc(18 * var(--width-ratio));
        background-color: #fff;
        bottom: calc(-11 * var(--width-ratio));
    }
    .l-fv__bottom {
        width: 100%;
        /* background: url(../img/bg_top_sp.webp) no-repeat center center / cover; */
        padding-top: calc(33 * var(--width-ratio-1920));
        padding-bottom: calc(36.6 * var(--width-ratio-1920));
        padding-left: calc(20 * var(--width-ratio-1920));
        padding-right: calc(20 * var(--width-ratio-1920));
    }
    .l-fv__lead {
        width: 100%;
        margin-bottom: calc(30 * var(--width-ratio-1920));
    }
    .l-fv__lead img {
        display: none;
    }
    .l-fv__lead p {
        display: block;
        font-size: calc(26 * var(--width-ratio));
        font-weight: 900;
        letter-spacing: -0.05em;
        line-height: 1.45;
        text-align: center;
        color: #000;
        position: relative;
    }
    .l-fv__lead p::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -0.1em;
        left: 0;
        width: 100%;
        height: calc(3 * var(--width-ratio));
        background-image: url(../img/dot.png);
        background-repeat: repeat;
        background-position: left bottom;
        background-size: contain;
    }
    .l-fv__lead p .red {
        color: #c60000;
    }
    .l-fv__value {
        align-items: flex-start;
        justify-content: space-between;
        column-gap: unset;
        row-gap: calc(9 * var(--width-ratio));
        flex-wrap: wrap;
    }
    .l-fv__value-item {
        width: calc(175 * var(--width-ratio));
        height: calc(67 * var(--width-ratio));
        font-size: calc(11 * var(--width-ratio));
        padding-top: calc(5 * var(--width-ratio));
    }
    .l-fv__value-item:nth-of-type(3) {
        background: url(../img/sec01-btn-bg02.webp) no-repeat center center /
            cover;
    }
    .l-fv__value-item:nth-of-type(4) {
        background: url(../img/sec01-btn-bg01.webp) no-repeat center center /
            cover;
    }
    .l-fv__value-item:nth-of-type(3),
    .l-fv__value-item:nth-of-type(4) {
        font-size: calc(11 * var(--width-ratio));
        padding-top: calc(14 * var(--width-ratio));
    }
}

/* CTA */
.c-cta {
    width: 100%;
    background: url(../img/bg_cta2.webp) no-repeat top left / cover;
    padding-top: calc(67 * var(--width-ratio-1920));
    padding-bottom: calc(84 * var(--width-ratio-1920));
    position: relative;
    background-color: var(--color-brown);
}
.c-cta__inner {
    width: calc(1440 * var(--width-ratio-1920));
    padding-left: calc((1440 * var(--width-ratio-1920)) / 2 - 45px);
    margin: 0 auto;
}
.c-cta h2 {
    font-size: calc(48 * var(--width-ratio-1920));
    font-weight: 700;
    letter-spacing: 0;
    line-height: calc(85 * var(--width-ratio-1920));
    color: #fff;
    margin-bottom: calc(32 * var(--width-ratio-1920));
}
.c-cta h2 span {
    display: inline-block;
    font-size: calc(70 * var(--width-ratio-1920));
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}
.c-cta h2 span::after {
    content: "";
    display: block;
    width: 101%;
    height: calc(17.36 * var(--width-ratio-1920));
    background-color: #604b20;
    position: absolute;
    bottom: calc(-12 * var(--width-ratio-1920));
    left: 0;
    z-index: -1;
}
.c-cta__email {
    width: max(calc(719 * var(--width-ratio-1920)), 380px);
    margin-top: calc(100 * var(--width-ratio-1920));
    margin-bottom: calc(30 * var(--width-ratio-1920));
    position: relative;
}
.c-cta__email-link {
    width: max(calc(719 * var(--width-ratio-1920)), 380px);
    height: max(calc(139 * var(--width-ratio-1920)), 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: max(calc(57 * var(--width-ratio-1920)), 40px);
    font-size: calc(45 * var(--width-ratio-1920));
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    text-decoration: none;
    background-color: var(--color-red-light);
    border: 5px solid var(--color-red);
    position: relative;
    transition: all 0.3s ease;
}
.c-cta__email-balloon {
    width: max(calc(541 * var(--width-ratio-1920)), 313px);
    height: max(calc(83 * var(--width-ratio-1920)), 53px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: max(calc(34 * var(--width-ratio-1920)), 32px);
    font-size: max(calc(25 * var(--width-ratio-1920)), 16px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: calc(100% - 19px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.c-cta__email-balloon::after {
    content: "";
    display: block;
    width: max(calc(28 * var(--width-ratio-1920)), 22px);
    height: max(calc(24 * var(--width-ratio-1920)), 19px);
    background-color: #000;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: max(calc(-15 * var(--width-ratio-1920)), -11px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.c-cta__flow-item {
    width: calc(368 * var(--width-ratio-1920));
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: calc(16 * var(--width-ratio-1920));
}
.c-cta__flow-item-txt {
    font-family: var(--font-noto-sans);
    font-size: calc(26 * var(--width-ratio-1920));
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    text-align: center;
    color: #fff;
}
.c-cta__flow-item-btn {
    width: 100%;
    height: calc(102 * var(--width-ratio-1920));
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border-radius: 10px;
    font-family: var(--font-noto-sans);
    font-size: calc(25 * var(--width-ratio-1920));
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    color: #fff;
    transition: all 0.3s ease;
}
.c-cta__flow-item-btn:hover {
    opacity: 1;
}
.c-cta__flow-item:nth-of-type(1) .c-cta__flow-item-btn {
    background-color: var(--color-red);
}
.c-cta__flow-item:nth-of-type(1) .c-cta__flow-item-btn:hover {
    background-color: #7a0000;
    transform: translateY(-2px);
}
.c-cta__flow-item:nth-of-type(2) .c-cta__flow-item-btn {
    background-color: var(--color-gold);
}
.c-cta__flow-item:nth-of-type(2) .c-cta__flow-item-btn:hover {
    background-color: #a67c00;
    transform: translateY(-2px);
}
.c-cta__info {
    width: 100%;
}
.c-cta__info-txt {
    font-size: calc(25 * var(--width-ratio-1920));
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    color: #fff;
    margin-bottom: calc(7 * var(--width-ratio-1920));
}
.c-cta__info-tel {
    display: flex;
    align-items: baseline;
    justify-content: ;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-left: calc(8 * var(--width-ratio-1920));
    padding-top: calc(10 * var(--width-ratio-1920));
    padding-bottom: calc(14 * var(--width-ratio-1920));
    margin-bottom: calc(11 * var(--width-ratio-1920));
}
.c-cta__info-tel-link {
    font-family: var(--font-noto-sans);
    font-size: calc(59 * var(--width-ratio-1920));
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    text-decoration: none;
}
.c-cta__info-tel-time {
    font-size: calc(25 * var(--width-ratio-1920));
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    color: #fff;
    margin-left: calc(-8 * var(--width-ratio-1920));
}
.c-cta__to-faq {
    font-size: calc(25 * var(--width-ratio-1920));
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.36;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
    .c-cta {
        background: var(--color-brown);
        padding-top: 0;
        padding-bottom: 0;
    }
    .c-cta > img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .c-cta__inner {
        width: 100%;
        padding: calc(20 * var(--width-ratio)) calc(20 * var(--width-ratio))
            calc(40 * var(--width-ratio));
        margin: 0 auto;
    }
    .c-cta h2 {
        position: absolute;
        top: calc(55 * var(--width-ratio));
        left: calc(144 * var(--width-ratio));
        font-size: calc(14 * var(--width-ratio));
        line-height: 1.8;
        text-align: left;
    }
    .c-cta h2 span {
        font-size: calc(21 * var(--width-ratio));
    }
    .c-cta h2 span::after {
        width: 100%;
        height: 12px;
        bottom: -0.4em;
    }
    .c-cta__email {
        display: none;
    }
    .c-cta__info {
        display: none;
    }
    .c-cta__btns {
        margin: 0 auto 38px;
    }
    .c-cta__btns-baloon {
        font-family: var(--font-noto-sans);
        font-size: 21px;
        font-weight: 700;
        text-align: center;
        color: #000;
        width: 398px;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        border-radius: 44px;
        margin: 0 auto 32px;
        position: relative;
    }
    .c-cta__btns-baloon::after {
        content: "";
        display: block;
        width: 29px;
        height: 23px;
        background-color: #fff;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
    }
    .c-cta__btn1 {
        width: 457px;
        height: 89px;
    }
    .c-cta__btn2 {
        width: 457px;
        height: 89px;
    }
    .c-cta__btn1 {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        border-radius: 13px;
        background-color: var(--color-red-light);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 457px;
        height: 98px;
        margin: 0 auto 25px;
        transition: all 0.3s ease;
    }
    .c-cta__btn1:hover {
        background-color: #7a0000;
        transform: translateY(-2px);
    }
    .c-cta__btn2 {
        display: block;
        width: 457px;
        height: 98px;
        text-decoration: none;
        border-radius: 13px;
        background-color: var(--color-gold);
        padding-top: 8px;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
    .c-cta__btn2:hover {
        background-color: #a67c00;
        transform: translateY(-2px);
    }
    .c-cta__btn2 .upper {
        font-family: var(--font-noto-sans);
        font-size: 38px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: calc(8 * var(--width-ratio));
    }
    .c-cta__btn2 .upper img {
        width: min(calc(36 * var(--width-ratio)), 47px);
        height: auto;
        object-fit: contain;
    }
    .c-cta__btn2 .lower {
        display: block;
        width: 100%;
        font-family: var(--font-noto-sans);
        font-size: min(calc(16 * var(--width-ratio)), 21px);
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        text-align: center;
        margin-top: calc(-6 * var(--width-ratio));
    }
    .c-cta__to-faq {
        display: block;
        width: fit-content;
        font-size: calc(15 * var(--width-ratio-1920));
        text-align: center;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .c-cta h2 {
        line-height: calc(36 * var(--width-ratio));
    }
    .c-cta h2 span {
    }
    .c-cta h2 span::after {
        width: 100%;
        height: calc(8.68 * var(--width-ratio));
        bottom: -0.7em;
    }

    .c-cta__btns {
        margin: 0 auto calc(29 * var(--width-ratio));
    }
    .c-cta__btns-baloon {
        font-family: var(--font-noto-sans);
        font-size: calc(16 * var(--width-ratio));
        font-weight: 700;
        text-align: center;
        color: #000;
        width: calc(306 * var(--width-ratio));
        height: calc(52 * var(--width-ratio));
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        border-radius: calc(34 * var(--width-ratio));
        margin: 0 auto calc(24.4 * var(--width-ratio));
        position: relative;
    }
    .c-cta__btns-baloon::after {
        content: "";
        display: block;
        width: calc(23 * var(--width-ratio));
        height: calc(18 * var(--width-ratio));
        background-color: #fff;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        position: absolute;
        bottom: calc(-11 * var(--width-ratio));
        left: 50%;
        transform: translateX(-50%);
    }
    .c-cta__btn1 {
        width: calc(349 * var(--width-ratio));
        height: calc(68 * var(--width-ratio));
    }
    .c-cta__btn2 {
        width: calc(349 * var(--width-ratio));
        height: calc(68 * var(--width-ratio));
    }
    .c-cta__btn1 {
        font-size: calc(20 * var(--width-ratio));
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        border-radius: calc(10 * var(--width-ratio));
        background-color: var(--color-red-light);
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(350 * var(--width-ratio));
        height: calc(75 * var(--width-ratio));
        margin: 0 auto calc(19 * var(--width-ratio));
        transition: all 0.3s ease;
    }
    .c-cta__btn1:hover {
        background-color: #7a0000;
        transform: translateY(-2px);
    }
    .c-cta__btn2 {
        display: block;
        width: calc(350 * var(--width-ratio));
        height: calc(75 * var(--width-ratio));
        text-decoration: none;
        border-radius: calc(10 * var(--width-ratio));
        background-color: var(--color-gold);
        padding-top: calc(6 * var(--width-ratio));
        transition: all 0.3s ease;
    }
    .c-cta__btn2:hover {
        background-color: #a67c00;
        transform: translateY(-2px);
    }
    .c-cta__btn2 .upper {
        font-family: var(--font-noto-sans);
        font-size: calc(29 * var(--width-ratio));
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: calc(8 * var(--width-ratio));
    }
    .c-cta__btn2 .upper img {
        width: calc(36 * var(--width-ratio));
        height: auto;
        object-fit: contain;
    }
    .c-cta__btn2 .lower {
        display: block;
        width: 100%;
        font-family: var(--font-noto-sans);
        font-size: calc(16 * var(--width-ratio));
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        text-align: center;
        margin-top: calc(-6 * var(--width-ratio));
    }
    .c-cta__to-faq {
        display: block;
        width: fit-content;
        font-size: calc(15 * var(--width-ratio-1920));
        text-align: center;
        margin: 0 auto;
    }
}

/* トップへ戻る */
.c-toTop {
    position: fixed;
    bottom: calc(43 * var(--width-ratio-1920));
    right: calc(43 * var(--width-ratio-1920));
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-toTop:hover {
    transform: translateY(-4px) !important;
}
.c-toTop__link {
    width: calc(128 * var(--width-ratio-1920));
    height: calc(128 * var(--width-ratio-1920));
    cursor: pointer;
}
.c-toTop__link img {
    width: calc(128 * var(--width-ratio-1920));
    height: auto;
    object-fit: contain;
}
.c-toTop__link:hover {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .c-toTop {
        display: none;
    }
}

/* フローティングボタン */
.c-floatbtn {
    display: none;
}

@media screen and (max-width: 768px) {
    .c-floatbtn {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        padding: 0;
        z-index: 100;
    }
    .c-floatbtn__link {
        width: 50%;
        height: 84px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .c-floatbtn__link.tel {
        background-color: var(--color-green);
    }
    .c-floatbtn__link.tel:hover {
        background-color: #0f2f0f;
        transform: translateY(-2px);
    }
    .c-floatbtn__link.contact {
        font-family: var(--font-noto-sans);
        font-size: 16px;
        font-weight: 900;
        letter-spacing: 0;
        line-height: 1.5;
        color: #fff;
        text-align: center;
        text-decoration: none;
        background-color: var(--color-red-light);
    }
    .c-floatbtn__link.contact:hover {
        background-color: #7a0000;
        transform: translateY(-2px);
    }
    .c-floatbtn__link.tel img {
        width: 36px;
        height: auto;
        object-fit: contain;
    }
    .c-floatbtn__link.tel span {
        display: block;
        font-family: var(--font-noto-sans);
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 0;
        line-height: 1;
        color: #fff;
        margin-top: 4px;
    }
}
