@import url(./base.css);

/*メイン*/
.main-content {
    padding-top: 30px;
    margin: 0 auto;
    /* background-color: #FFFBF6; */

    @media screen and (max-width: 1024px) {
        margin: 0;
        padding-top: 0;
    }
}

/*トップページ　メインビジュアル*/
.fv-section {
    border-radius: 20px 20px 0 0;
    overflow: hidden;

    @media screen and (max-width: 768px) {
        margin: 0 !important;
        border-radius: 0;
    }
}

/* トップページ　お急ぎの方はこちら */
.top-hurry-section {
    background-color: #FFEFE8;
    border-left: 3px solid #F15924;
    border-right: 3px solid #F15924;
    border-bottom: 3px solid #F15924;
    padding: 20px 0 24px;
    border-radius: 0 0 20px 20px;

    @media screen and (max-width: 1024px) {
        padding: 16px 12px 24px;
    }

    @media screen and (max-width: 768px) {
        margin: 0 !important;
        border-radius: 0;
    }
}

.top-hurry-section-ttl {
    text-align: center;
    font-size: 28px;
    position: relative;
    width: fit-content;
    margin: 0 auto;

    @media screen and (max-width: 1024px) {
        font-size: 16px;
    }
}

.top-hurry-section-ttl:after,
.top-hurry-section-ttl:before {
    content: "";
    display: block;
    width: 4px;
    height: 40px;
    background-color: #EC1515;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -24px;
    transform: rotate(-30deg);

    @media screen and (max-width: 1024px) {
        width: 3px;
        height: 20px;
        left: -15px;
    }
}

.top-hurry-section-ttl:after {
    left: auto;
    right: -12px;
    transform: rotate(30deg);

    @media screen and (max-width: 1024px) {
        left: auto;
        right: -8px;
    }
}

.top-hurry-section-bold {
    color: #EC1515;
}

.top-hurry-section-btnList {
    display: flex;
    justify-content: center;
    gap: 0 20px;
    margin-top: 16px;

    @media screen and (max-width: 1024px) {
        display: grid;
        justify-content: normal;
        width: 90%;
        margin: 16px auto 0;
        gap: 20px 0;
    }
}

.top-hurry-section-btnList-btn {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    background-image: linear-gradient(90deg, #e91f1f, #e2712e);
    padding: 20px 60px;
    border-radius: 10px;
    box-shadow: 0 6px 0 #b11010;

    &::before {
        content: "";
        display: inline-block;
        height: 30px;
        width: 30px;
        background: url(/images/form_02.svg) center center / contain;
        position: relative;
        top: 6px;
        margin-right: 5px;

        @media screen and (max-width: 1024px) {
            width: 24px;
            height: 24px;
        }
    }

    @media screen and (max-width: 1024px) {
        font-size: 18px;
        width: 100%;
        padding: 10px 16px 16px;
        text-align: center;
    }
}

.top-hurry-section-btnList-btn--phone {
    &::before {
        background: url(/images/icon_phone.png) center center / contain;
    }
}

/* トップページ　記事一覧 */
.top-article-section {
    /* margin-top: 50px; */
    background: #fff6e9;
    padding: 24px 30px 32px;
}

.top-article-title {
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.top-article-title::before {
    content: "";
    display: block;
    width: 3px;
    height: 30px;
    background-color: #f56828;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    margin: auto;
    rotate: -40deg;
}

.top-article-title::after {
    content: "";
    display: block;
    width: 3px;
    height: 30px;
    background-color: #f56828;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    margin: auto;
    rotate: 40deg;
}

.top-article-container {
    margin-top: 16px;
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 12px 2%;
}

.top-article-content {
    width: 32%;
    border: 1px solid #e57c1e;
    padding: 8px 24px 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /*box-shadow: 3px 3px 0 #ffd7b3;*/
    background-color: #fff;
    border-radius: 6px;
}

.top-article-content::after {
    content: "";
    display: block;
    width: 14px;
    height: 12px;
    background: #e57c1e;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6px;
    margin: auto;
    clip-path: polygon(0 0, 0% 100%, 64% 50%);
}

.top-article-link {
    margin: 24px auto 0;
    text-decoration: underline;
    display: block;
    width: fit-content;
    color: #000;
}

.article-content-img-area {
    width: 8%;
}

.article-content-text-area {
    width: 90%;
    color: #000;
}

.article-content-title {
    font-weight: 600;
}

.article-content-text {
    margin-top: 6px;
}

/* トップページ　商品カテゴリ */
.top-cat-section {
    position: relative;
    margin-bottom: 60px;

    @media screen and (max-width: 1024px) {
        margin-bottom: 40px;
    }
}

.top-cat-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.top-cat-section-bg {
    position: absolute;
    top: 0;
    width: 100%;
}

.top-title {
    font-size: 28px;
    text-align: center;
    width: fit-content;
    margin: 0 auto 24px;
    position: relative;
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 0.03em;

    @media screen and (max-width: 1024px) {
        font-size: 22px;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
}

.top-title::after,
.top-title::before {
    content: "";
    position: absolute;
    bottom: 30px;
    right: -180px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 160px;
    height: 6px;
    background: url("/images/doce_ttl.svg") no-repeat;
    background-size: contain;

    @media screen and (max-width: 1024px) {
        display: none;
    }
}

.top-title::before {
    right: auto;
    left: -228px;
    transform: rotate(180deg);

    @media screen and (max-width: 1024px) {
        display: block;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        background: none;
        width: 40px;
        height: 3px;
        background-color: #e45d2b;
    }

}

.top-title-img {
    position: absolute;
    height: 30px;
    left: -40px;
    top: 0;
    bottom: -3px;
    margin: auto;

    @media screen and (max-width: 768px) {
        bottom: auto;
        top: 4px;
        height: 26px;
        left: -34px;
    }
}

.top-title-closely {
    text-align: center;
    margin-bottom: 24px;

    &::after,
    &::before {
        display: none;
    }

    @media screen and (max-width:1024px) {
        margin-bottom: 0;
    }
}

/* 地域密着型ならではの迅速な対応 */
.top-closely-section {
    /* background-color: #fff; */
    padding: 56px 0;
    background-color: #FFFBF6;

    @media screen and (max-width: 1024px) {
        padding: 40px 4vw;
    }
}

.top-closely-wrapper {
    margin-bottom: 56px;
    display: flex;
    justify-content: center;
    gap: 0 70px;

    @media screen and (max-width: 1024px) {
        flex-direction: column-reverse !important;
        margin: 0 !important;
    }
}

.top-closely-wrapper:last-of-type {
    margin-bottom: 0;
    flex-direction: row-reverse;
    margin-top: 64px;

    @media screen and (max-width: 1024px) {
        margin-top: 64px !important;
    }
}

.top-closely-l-inner {
    margin-top: 54px;

    @media screen and (max-width:1024px) {
        margin-top: 24px;
    }
}


.top-closely-img {
    box-shadow: 0 3px 20px #F3E1D8;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;

    @media screen and (max-width:1024px) {
        display: none;
    }
}

.top-closely-r-inner {
    width: 580px;

    @media screen and (max-width: 1024px) {
        width: 100%;
    }
}

.top-closely-overview {
    text-align: left;
    line-height: 2.2;
    margin-top: -12px;

    @media screen and (max-width: 1024px) {
        margin-top: 0;
        font-size: 14px;
        text-align: left;
        line-height: 1.8;
    }
}

.top-closely-overview--reason {
    text-align: center;
}

.top-closely-feature {
    max-width: 880px;
    width: 100%;
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
    gap: 0 20px;

    @media screen and (max-width: 1024px) {
        flex-direction: row;
        align-items: center;
        gap: 32px 0;
        justify-content: space-around;
        margin-top: 16px;
    }
}

.top-closely-feature-item {
    width: 40%;
}

.top-closely-feature-inner {
    border: 4px solid #f56828;
    border-radius: 10px;
    padding: 24px 8px;
    text-align: center;
    box-shadow: 5px 5px #F56829;
    background-color: #fff;

    @media screen and (max-width: 1024px) {
        padding: 16px 0;
        box-shadow: none;
        border: 2px solid #f56828;
    }
}

.top-closely-feature-img {
    display: inline-block;
    object-fit: scale-down;
    width: 80px;
    height: 80px;
    /* background-color: #fff; */
    /* padding: 12px; */
    /* border-radius: 999px;
    border: 4px solid #ffa074; */

    @media screen and (max-width: 1024px) {
        padding: 0;
        width: 60px;
        height: 60px;
    }
}

.top-closely-feature-ttl {
    font-size: 26px;
    margin-top: 6px;

    @media screen and (max-width: 1024px) {
        font-size: 16px;
        margin-top: 4px;
    }
}

.top-closely-feature-txt {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    margin-top: 8px;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
        margin-bottom: 14px;
    }
}

.top-closely-feature-subttl {
    font-size: 20px;
    margin: 12px 0;

    @media screen and (max-width: 1024px) {
        margin: 6px 0;
    }
}

.top-closely-feature-attention {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }
}

.top-closely-feature-subtxt {
    text-align: left;
}

.top-closely-select {
    max-width: 1080px;
    margin: 24px auto 32px;
    display: flex;
    justify-content: space-between;

    @media screen and (max-width: 1024px) {
        flex-wrap: wrap;
        gap: 20px 0;
        justify-content: center;
    }
}

.top-closely-select-item {
    /* background-color: #fff; */
    text-align: center;
    width: 24%;
    padding: 38px 16px;
    border: 1px solid #f56828;

    /* border-radius: 8px; */
    /* box-shadow: 4px 4px 0 #f56828; */
    @media screen and (max-width: 1024px) {
        width: 95%;
        font-size: 14px;
        padding: 12px;
    }
}

.title-span {
    color: #f56828;
    display: inline-block;
    position: relative;
}

.title-span-reason {
    font-size: 36px;
    color: #f56828;
    display: inline-block;
    position: relative;

    &::after {
        content: "";
        display: block;
        position: absolute;
        width: 36px;
        height: 27px;
        background: url("/images/icon_title-em.png") no-repeat center center;
        background-size: contain;
        top: -10px;
        right: -20px;

        @media screen and (max-width:1024px) {
            width: 32px;
            height: 20px;
            top: -4px;
            right: 63px;
        }
    }

    @media screen and (max-width:1024px) {
        display: block;
        font-size: 22px;
    }
}

.title-span-reason--left {
    &::after {
        transform: rotate(290deg);
        top: -10px;
        right: auto;
        left: -20px;
    }
}

.top-closely-reason-img {
    margin: 24px auto 0;

    @media screen and (max-width:1024px) {
        width: 80%;
    }
}

.flow-title-span {
    text-shadow: 0.01em 0.01em #C81919;
    color: #C81919;
}

.top-cat-container {
    /*width: 1190px;*/
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 40px 2%;

    @media screen and (max-width: 1024px) {
        justify-content: flex-start;
        gap: 40px 4%;
    }
}

.top-cat-content {
    width: 23.5%;
    position: relative;
    border-radius: 10px;
    border: 1px solid #d9d9d9;

    @media screen and (max-width:1024px) {
        width: 48%;
        height: auto;
        margin-bottom: 5px;
    }
}

.top-cat-content-sale {
    position: absolute;
    top: -30px;
    left: -13px;
    width: 90px;
    height: 90px;
    padding-top: 10px;
    background-color: #FFE81D;
    font-weight: 900;
    border-radius: 999px;
    text-align: center;
    padding-top: 15px;
    color: #D13B19;
    line-height: 1;
    font-family: "Roboto", sans-serif;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
        width: 70px;
        height: 70px;
        padding-top: 10px;
        top: -20px;
        left: -10px;
    }
}

.top-cat-content-sale-bold {
    display: block;
    font-size: 32px;

    @media screen and (max-width: 1024px) {
        font-size: 26px;
    }
}

.top-cat-content-img {
    width: 100%;
    background: #EEF8F4;
    border-radius: 10px 10px 0 0;
}

.top-cat-content-text {
    text-align: center;
    padding: 4px 0 9px 0;
    font-size: 18px;
    font-weight: bold;
    background: #fff;
    color: #333;
    border-radius: 0 0 10px 10px;
}

/* トップページ　選ばれるポイント */
.top-point-section {
    width: 100%;
    height: 1137px;
    height: auto;
    background-image: url(/images/top-point-bg.png);
    background-size: contain;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.top-point-sub-title {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.top-point-wrapper {
    overflow: hidden;
}

.orange-circle {
    width: 180%;
    height: 200%;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 101, 36, 1) 0%, rgba(252, 176, 69, 1) 100%);
    /* width: 1440px; */
    position: absolute;
    top: 20%;
    left: -40%;
    right: 0;
}

.top-point-container {
    margin: 0 auto;
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}

.top-point-content {
    width: 280px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.top-point-content-img {
    width: 80%;
    /* height: 239px; */
    height: auto;
}

.top-point-content-title-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    /*height: 100px;*/
    /* padding-top: 20px; */
    /* padding: 44px 0 33px 0; */
}

.top-point-content-title {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4em;
    color: #fff;
    /* padding: 80px 20px 0 40px; */
    /* padding-top: 80px; */
}

.top-point-content-title-img {
    width: 70px;
    position: absolute;
    top: -50px;
    left: -90px;
}

.top-point-content-text {
    line-height: 1.8em;
    border-top: 3px dotted #fff;
    padding-top: 20px;
    margin-top: 0px;
    font-size: 16px;
    color: #fff;
}

.top-point-btn {
    display: block;
    position: relative;
    width: 480px;
    margin: 50px auto;
}

/*トップページ　エコキュート*/
.top-ecocute-wrapper {
    width: 90%;
    max-width: 750px;
    margin: 60px auto;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #1659a4;
}

@media screen and (max-width: 1300px) {
    .top-ecocute-wrapper {
        margin: 0px auto 40px;
    }
}

/* トップページ　ラインナップセクション */
.top-lineup-section {
    /* height: 1420px; */
    height: auto;
    background-image: url(/images/top-lineup-bg.png);
    background-size: cover;
    padding: 20px 40px 40px;
}

.top-lineup-wrapper {
    padding: 0 30px;
}

.lineup-span {
    /*padding-right: 10px;*/
    color: #333;
}

.top-lineup-container {
    display: flex;
    /*width: 1356px;*/
    margin: 0 auto;
}

.top-lineup-container-first {
    justify-content: center;
    /*margin-top: 40px;*/
}

.top-lineup-container-second {
    justify-content: center;
}

.top-lineup-sp {
    display: none;
}

.top-lineup-first-content {
    width: 480px;
}

.top-lineup-first-content img {
    width: 100%;
    height: 100%;
}

.top-lineup-second-content {
    width: 384px;
}

.top-lineup-second-content img {
    width: 100%;
    height: 100%;
}

/* トップページ　お客様の声 */
.top-voice-section {
    /* height: 1353px; */
    height: auto;
    padding-bottom: 97px;
    position: relative;
}

.top-voice-bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.top-voice-bg-sp {
    display: none;
}

.top-voice-title-text {
    font-size: 16px;
    color: #333;
    max-width: 618px;
    margin: 44px auto 61px auto;
    text-align: center;
    line-height: 1.75em;
}

.top-voice-container {
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 32px;
    gap: 20px 2%;

    @media screen and (max-width: 1024px) {
        width: 90%;
    }
}

.top-voice-content {
    display: block;
    width: 23.5%;
    background: #fff;
    padding: 12px;
    border: 1px solid #d9d9d9;

    @media screen and (max-width: 1024px) {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 3vw;
        justify-content: space-between;
    }
}

.voice-inner-img {
    @media screen and (max-width: 1024px) {
        width: 25%;
    }
}

.voice-inner-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;

    @media screen and (max-width: 1024px) {
        height: auto;
    }
}

.voice-inner-top-text-area {
    font-size: 14px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #cbcbcb;
}

.voice-inner-top {
    @media screen and (max-width: 1024px) {
        width: 70%;
    }
}

.voice-label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 180px;
    height: 30px;
    color: #fff;
    background: #C81919;
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
}

.voice-address {
    font-size: 14px;
    color: #999;
    text-align: right;
}

.voice-date {
    color: #333;
    text-align: right;
    font-size: 14px;
    color: #9f9f9f;
}

.voice-client-data {
    font-size: 14px;
    color: #999;
    text-align: right;
}

.voice-client-data img {
    width: 25px;
    height: 25px;
}

.voice-inner-center {
    color: #333;
    margin-top: 8px;
    line-height: 1.3;
    height: 74px;
    font-size: 14px;
    margin-top: 16px;

    @media screen and (max-width: 1024px) {
        margin-top: 0;
        height: auto;
        font-size: 14px;
    }
}

.voice-inner-bottom {
    color: #7B442B;
    font-size: 14px;
}

.voice-manager {
    font-size: 13px;
    text-align: right;
}

.top-voice-btn {
    display: block;
    width: 455px;
    height: 92px;
    margin: 70px auto 0 auto;
    padding: 0;
}

/* トップページ　施工事例・お客様の声 */
.top-case-voice-container {
    padding: 64px 0;
    background: url("/images/top-voice-case-bg.png?test") center center;
    /* background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten; */
    display: grid;
    gap: 56px 0;

    @media screen and (max-width: 1024px) {
        padding: 40px 0;
    }
}

.top-case-section {
    position: relative;
}

.top-case-section-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.top-case-container {
    max-width: 1080px;
    margin: 0 auto 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;

    @media screen and (max-width: 1024px) {
        width: 90%;
        gap: 20px 0;
    }
}

.top-case-content {
    display: block;
    width: 23.5%;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    background-color: #fff;
    padding: 12px;

    @media screen and (max-width: 1024px) {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 2vw;
        justify-content: space-between;
    }
}

.case-content-img-area {

    /* background-color: #EEF8F4; */
    @media screen and (max-width: 1024px) {
        width: 25%;
        background-color: #fff;
    }
}

.case-content-img-area img {
    width: 100%;
    height: 160px;
    margin: 0 auto;
    object-fit: cover;

    @media screen and (max-width: 1024px) {
        height: auto;
    }
}

.case-content-text-area {
    margin-top: 8px;

    @media screen and (max-width: 1024px) {
        width: 70%;
        padding: 0;
        margin: 0;
    }
}

.case-content-title {
    font-weight: 700;
    color: #333;
    height: 50px;
    margin-top: 4px;
    font-size: 15px;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
        height: auto;
    }
}

.case-content-model {
    font-size: 14px;
    color: #333;
}

.case-content-address {
    font-size: 14px;
    color: #999;
    text-align: right;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #cbcbcb;
}

.case-content-client {
    font-size: 14px;
    color: #999;
    text-align: right;
}

.case-content-text {
    padding: 4px 0;
    font-size: 14px;
    color: #333;
    height: 120px;

    @media screen and (max-width: 1024px) {
        height: auto;
        padding: 0;
        margin-top: 6px;
    }
}

.case-content-date {
    font-size: 14px;
    color: #333;
    text-align: right;

    @media screen and (max-width: 1024px) {
        margin-top: 4px;
    }
}

/* トップページ　ご利用案内 */
.top-guidance-section {
    position: relative;
    margin-top: 64px;

    @media screen and (max-width:1024px) {
        margin-top: 0;
    }
}

.top-guidance-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.top-guidance-container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    @media screen and (max-width: 1024px) {
        width: 90%;
    }
}

.top-guidance-content {
    width: 330px;
    display: block;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-bottom: 4px solid #FF6524;
    border-radius: 10px;
    /*box-shadow: 0 0 10px 0 #a5a5a5;*/
    padding: 24px;
    margin-bottom: 40px;

    @media screen and (max-width: 1024px) {
        width: 48%;
        padding: 12px;
        margin-bottom: 20px;
    }
}

.top-guidance-content-img {
    width: 340px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto;
}

.top-guidance-content-title {
    padding: 22px 0 27px 0;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    position: relative;
    color: #333;

    @media screen and (max-width: 1024px) {
        font-size: 16px;
    }
}

.top-guidance-content-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #FF6524;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.top-guidance-content-text {
    font-size: 15px;
    color: #333;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }
}

/* トップページ　よくある質問 */
.question-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 3%;
    margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
    .question-nav {
        margin-top: 48px;
    }
}

.question-nav-item {
    width: 26%;
    text-align: center;
    border: 1px solid #000;
    border-radius: 4px;
    position: relative;

    @media screen and (max-width: 1024px) {
        width: 48%;
    }
}

.question-nav-item a {
    color: #000;
    display: block;
    padding: 8px 16px;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }
}

.question-nav-item::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 3px;
    bottom: 0;
    margin: auto 0;
    clip-path: polygon(50% 70%, 0 0, 100% 0);
    background-color: #000;

    @media screen and (max-width: 1024px) {
        right: 6px;
    }
}

.question-container {
    margin-bottom: 60px;
}

.question-container:last-of-type {
    margin-bottom: 0;
}

.top-question-section {
    position: relative;
    height: auto;
    overflow: hidden;

    @media screen and (max-width: 1024px) {
        padding: 40px 5%;
    }
}

.top-question-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 64px;

    @media screen and (max-width:1024px) {
        margin-top: 0;
    }
}

.top-question-container {
    /* max-width: 1000px; */
    margin: 0 auto;
    background: #fff;
    padding: 30px 30px 50px 30px;
    border-radius: 10px;
    border: 1px solid #c7c4bf;

    @media screen and (max-width:1024px) {
        padding: 16px 16px 32px;
    }
}

.top-question-content {
    /*padding-bottom: 5px;*/
    border-bottom: 1px solid #ddd;
}

.question-content-top,
.question-content-bottom {
    display: flex;
    /*background: #FFCB6A;*/
    border-radius: 5px;
    padding: 20px 16px;
    align-items: center;
}

.question-content-top {
    position: relative;
}

.question-content-top:hover {
    cursor: pointer;
}

.question-open-btn {
    width: 26px;
    height: 26px;
    color: #fff;
    background: #FF6524;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 32px;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;

    @media screen and (max-width:1024px) {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 10px;
    }
}

.question-open-btn:hover {
    cursor: pointer;
}

.question-close-btn {
    width: 26px;
    height: 26px;
    color: #fff;
    background: #FF6524;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: 32px;
    right: 32px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;

    @media screen and (max-width:1024px) {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 10px;
    }
}

.question-close-btn:hover {
    cursor: pointer;
}

.question-content-bottom {
    position: relative;
    overflow-y: hidden;
    height: 0;
    max-height: 0vh;
    padding-top: 0;
    padding-bottom: 0;
    transition: all 0.5s;
}

.question-content-bottom::before {
    content: "";
    border-top: 1px solid #fff;
    position: absolute;
    /* width: 870px; */
    width: 80%;
    top: 0;
    left: 35px;
}

.question-left,
.answer-left {
    color: #333;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    margin-right: 12px;
}

.question-right {
    color: #333;
    font-size: 18px;
    /* font-weight: bold; */
}

.answer-right {
    display: flex;
    align-items: center;
    font-size: 16px;
    /* font-weight: bold; */
}

.question-left {
    color: #FF6524;
    font-weight: bold;
    font-size: 20px;
}

.answer-left {
    font-weight: bold;
    color: #C81919;
    text-shadow: 0.01em 0.01em #C81919;
    font-size: 27px;
    flex-shrink: 0;
}

.answer-right-phone-number {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
}

.answer-right-number,
.answer-right-number a {
    display: inline-block;
}

/* アコーディオン開閉 */
.question-open-btn.is-active {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.question-close-btn.is-active {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}

.question-content-top.is-active {
    border-radius: 5px 5px 0 0;
}

.question-content-bottom.is-active {
    /* height: 90px; */
    max-height: 9999px;
    height: auto;
    opacity: 1;
    padding: 16px 80px 16px 16px;
    overflow-y: visible;
    transition: all 0.5s;
    border-radius: 0 0 5px 5px;
}

.top-area-section {
    margin-top: 20px;
    max-width: 1080px;
    margin: 40px auto 0;

    @media screen and (max-width: 768px) {
        width: 90%;
        margin: 0 auto;
    }
}

.top-area-ttl {
    display: inline-block;
    background: #555;
    color: #fff;
    padding: 6px 12px;
}

.top-area-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    border: 1px solid #ddd;
    padding: 16px;

    li {
        line-height: 1.8;
        color: #333;

        &::after {
            content: "、";
            display: inline-block;
        }

        &:last-of-type {
            &:after {
                display: none;
            }
        }

        a {
            color: #333;
            text-decoration: underline;
        }
    }

    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

/*トップページ　給湯器のことなら～ */
.top-advertisement-section {
    background-image: url(/images/top-advertisement-bg.png);
    background-size: cover;
    padding: 40px 0;
}

.top-advertisement-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-advertisement-content {
    width: 320px;
}

.top-advertisement-img {
    width: 200px;
    height: auto;
    margin: 0 auto;
}

.top-advertisement-title {
    height: 53px;
    /* padding: 22px 0 21px 0; */
    margin-top: 22px;
    padding: 0 0 21px 0;
    color: #333;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

.top-advertisement-text {
    color: #333;
    font-size: 16px;
    padding-top: 20px;
    margin-bottom: 71px;
    height: 125px;
    border-top: 3px dotted #FF6524;
    font-weight: bold;
}

.top-advertisement-btn {
    display: block;
    width: 220px;
    height: 60px;
    margin: 0 auto;
}

/* footer */
.footer {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid #d1d1d1;
    margin-top: 16px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 36px;
}

.footer-logo {
    display: block;
    width: 130px;
    margin: 0 auto;
}

.footer-logo-text {
    margin-top: 16px;
    line-height: 1.8;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.footer-list {
    width: 648px;
    padding: 0;
    /*margin-right: -45px;*/
    list-style: none;
    display: flex;
    flex-wrap: wrap;

    @media screen and (max-width: 1024px) {
        width: 100%;
        padding: 0;
        margin-top: 32px;
        border-top: 1px solid #ddd;
    }
}

.footer-item {
    width: 125px;
    padding-bottom: 23px;
    /* display: inline-block; */
    /* margin: 0 38px; */
    text-align: center;

    @media screen and (max-width: 1024px) {
        width: 50%;
        padding: 0;
        margin: 0;
    }
}

.footer-item a {
    color: #333;
    font-weight: bold;
    display: block;

    @media screen and (max-width: 1024px) {
        padding: 16px 0;
        border-bottom: 1px solid #ddd;

        &:nth-last-of-type(odd) {
            border-right: 1px solid #ddd;
        }
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

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

.footer-bottom-left {
    display: flex;
    align-items: end;
}

.footer-bottom-left img {
    width: 568px;
    /*height: 63px;*/
}

.footer-bottom-right {
    display: flex;
}

.footer-text {
    font-size: 13px;
    color: #fff;
    background: #333;
    text-align: center;
    padding: 17px 0 16px 0;
}

/* サイドバー */
.sidebar {
    margin: 0 40px 0 0;
    width: 238px;
}

.sidebar-content {
    /*position: sticky;*/
    left: 0;
    top: 0px;
    padding-bottom: 50px;
    /* z-index: -1; */
}

.sidebar-nav {
    width: 238px;
    border: 2px solid #F86526;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 0px;
}

.sidebar-nav-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: #F86526;
    line-height: 1.2;
    padding: 10px 0;
}

.sidebar-item:first-of-type {
    margin-top: 10px;
}

.sidebar-item {
    display: block;
    background: #FFD1B2;
    width: 220px;
    height: 60px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    font-weight: bold;
    border-radius: 10px;
}

.sidebar-item img {
    width: 30px;
    margin: 0px 15px 0px 10px;
}

.sidebar-item p {
    /* white-space: nowrap; */
    font-size: 15px;
    color: #333;
    margin: 0px 10px 0px 0;
}

.sidebar-banner {
    display: block;
    /* background: #777; */
    width: 238px;
    /* height: 96px; */
    /* margin: 24px 0 14px 0; */
    margin: 10px 0 0 0;
}

.sidebar-btn {
    display: block;
    width: 238px;
    /* height: 96px; */
    height: auto;
    margin-top: px;
}

.sidebar-foot-text {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #333;
    margin-top: 0px;
}

/* サイドバーのある子ページ設定*/
.main {
    display: flex;
    max-width: 1200px;
    margin: 40px auto 0;
}

@media screen and (max-width:1024px) {
    .main {
        display: block;
        margin: 0 auto;
        padding: 32px 16px 0;
    }
}

.child-page {
    width: 100%;
    /* margin-left: 430px; */
}

/* page-company */
.company-first-content {
    margin-top: 35px;
}

.company-sub-title {
    font-size: 40px;
    font-weight: 900;
    text-shadow: 0.01em 0.01em #333;
}

.company-sub-title-span {
    color: #FF6500;
    text-shadow: 0.01em 0.01em #FF6500;
}

.company-second-content {
    margin-top: 16px;
}

.page-company-text {
    color: #333;
    text-align: center;

    @media screen and (max-width:1024px) {
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 8px;
    }
}

.page-company-company-section-second {
    margin-top: 24px;
}

.company-tr {
    @media screen and (max-width:1024px) {
        display: flex;
        flex-direction: column;
        margin-bottom: 12px;
    }
}

.company-th {
    text-align: left;
    padding: 27px 0 35px 25px;
    color: #333;
    font-size: 16px;
    width: 20%;
    border-bottom: 1px solid #FF6524;
    font-weight: 700;

    @media screen and (max-width:1024px) {
        width: 100%;
        padding: 6px 6px 0 0;
        border-bottom: none;
    }
}

.company-td {
    padding: 27px 0 35px 30px;
    font-size: 15px;
    color: #333;
    width: 80%;
    border-bottom: 1px solid #C4C4C4;

    @media screen and (max-width:1024px) {
        width: 100%;
        padding: 6px 6px 6px 0;
    }
}

.company-td a {
    text-decoration-line: underline;
}

.company-section-img {
    margin-top: 76px;
    width: 100%;
}

.cash-img {
    width: 60%;
}

.cash-btm-img {
    width: 100%;
    margin: 80px 0;
}

.page-company-company-section-third {
    padding-bottom: 164px;
}

.company-third-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.company-third-content {
    width: 210px;
    height: 295px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0 #c5c5c5;
    /* border-image: linear-gradient(to right,#F9D208,#FE7820)1; */
    background: linear-gradient(to right, #F9D208, #FE7820);
    /* border-bottom: 8px solid; */
}

.company-third-content-inner {
    height: 312px;
    background: #ffffff;
    border-radius: 10px;
    /* padding-bottom: 75px; */
}

.company-third-content-img {
    width: 113px;
    height: 113px;
    margin: -25px auto 0 auto;
}

.company-third-content-title {
    margin-top: 34px;
    font-size: 19px;
    color: #333;
    text-align: center;
}

.company-third-content-title-last {
    padding-top: 15px;
}

.company-third-content-title span {
    font-size: 27px;
    font-weight: bold;
    color: #FF6500;
}

.company-third-content-text-area {
    position: relative;
}

.company-third-content-text-area::after {
    content: "";
    width: 83px;
    border-bottom: 4px dotted #F7C500;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.company-third-content-text {
    margin-top: 34px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.info-section {
    width: 1440px;
    margin-left: -430px;
}

/*page-guarantee*/
.guarantee-mv-wrapper {
    margin-bottom: 56px;
}

.guarantee-fv-img {
    width: 90%;
    margin: 0px auto 31px auto;
}

.guarantee-fv-text {
    color: #333;
}

.guarantee-fv-text:nth-of-type(4) {
    padding-top: 30px;
}

.guarantee-fv-text:last-of-type {
    font-size: 18px;
    font-weight: bold;
    color: #C81919;
}

.guarantee-info-img {
    width: 90%;
    margin: 40px auto 0;
}

.guarantee-table {
    margin: 20px 0;
}

.guarantee-th {
    width: 326px;
    text-shadow: 0.01em 0.01em #333;
    color: #333;
    background: #FFF4ED;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
    padding: 8px 16px;
}

.guarantee-th-bottom,
.guarantee-td-bottom {
    border-bottom: 1px solid #D6D6D6;
}

.guarantee-td {
    width: 564px;
    color: #333;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    font-weight: normal;
    text-align: left;
    padding: 8px 16px;
}

.guarantee-td p:first-of-type {
    padding-bottom: 30px;
}

.guarantee-fv-foot-text {
    font-size: 16px;
    color: #333;
}

.guarantee-second-wrapper {
    margin-bottom: 56px;
}

.guarantee-second-wrapper-text {
    font-size: 16px;
    color: #333;
    text-align: center;
}

.guarantee-second-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.guarantee-second-content {
    /* width: 149px; */
    width: 190px;
    margin-top: 50px;
}

.guarantee-second-content-img {
    width: 120px;
    margin: 0 auto;
}

.guarantee-second-content-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 63px;
    position: relative;
}

.guarantee-second-content-text p {
    white-space: nowrap;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.guarantee-second-content-text::after {
    content: "";
    width: 50px;
    border-bottom: 2px solid #FF6524;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.guarantee-second-list {
    margin-top: 60px;
}

.guarantee-second-list-title {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.guarantee-second-list-text {
    font-size: 16px;
    color: #333;
}

.guarantee-second-list-text:nth-of-type(2) {
    margin-bottom: 20px;
}

.guarantee-second-list-text:nth-of-type(10) {
    margin-bottom: 20px;
}

.work-flow-img {
    width: 890px;
    height: 241px;
    margin-bottom: 20px;
}

.work-flow-banner-container {
    margin: 78px 0 0;
}

.work-flow-banner {
    width: 839px;
    height: 270px;
    margin: 0 auto;
}

/* page-area */
.page-area-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 24px;
}

.page-area-inner {
    width: 100%;
}

.page-area-map {
    width: 52%;
}

.area-sp-img {
    display: none;
}

.area-wrapper-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.area-sub-title {
    width: 100%;
    margin-top: 40px;
    padding: 8px 0px 7px 10px;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0.01em 0.01em #333;
    background: #fdf1da;
    border-left: 5px solid #FF6524;
    color: #333;
}

.area-content {
    margin-bottom: 50px;
}

.area-content-first {
    position: relative;
}

.area-content-map {
    width: 60%;
    margin: 40px auto;

    @media screen and (max-width: 768px) {
        width: 80%;
        margin: 0px auto 30px;
    }
}

.area-content-second {
    margin-top: 50px;

    @media screen and (max-width:1024px) {
        margin-top: 30px;
    }
}

.area-content-title-box {
    margin-bottom: 16px;
}

.area-content-title-box div {
    display: flex;
}

.area-content-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #FF6524;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.area-content-title--quick {
    &::before {
        content: "■";
        display: inline-block;
        color: #ffbf66;
        margin-right: 6px;
    }
}

.area-content-title--normal {
    &::before {
        content: "■";
        display: inline-block;
        color: #ffe6c2;
        margin-right: 6px;
    }
}

.area-content-sub-title {
    font-size: 14px;
    color: #333;
    margin-top: 16px;
}

.area-content-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }

    a {
        color: #333;
        text-decoration: underline;
    }
}

.case-list-case-list {
    margin: 0 auto 16px !important;
}

.area-content-case-link {
    text-align: right;

    a {
        text-decoration: underline;
    }
}

.area-content-case-list {
    margin: 0px auto 16px;

    a {
        font-size: 15px;
    }
}

.page-area-flow-wrapper-sp {
    display: none;
}

.page-area-flow-container {
    margin-top: 8px;
}

.page-area-flow-content {
    display: flex;
    height: 232px;
    margin-bottom: 20px;
}

.area-flow-left-img {
    width: 110px;
    height: 180px;
    margin: 0 auto;
    margin-right: -25px;
    z-index: 1;
    flex-shrink: 0;
    object-fit: contain;
}

.area-flow-left-bottom-img {
    width: 110px;
    height: 80px;
    margin-right: -35px;
    flex-shrink: 0;
    z-index: 1;
    object-fit: contain;
}

.page-area-flow-text-area {
    background: #f5f5f5;
    /* background: #777; */
    display: flex;
    justify-content: space-between;
    padding: 32px;
    width: 100%;
}

.page-area-flow-text-area-inner {
    /* padding-right: 20px; */
    width: 70%;
}

.page-area-flow-title {
    font-size: 24px;
    font-weight: bold;
    color: #FF6524;
    margin-bottom: 12px;
    text-shadow: 0.01em 0.01em #FF6524;
}

.page-area-flow-text {
    font-size: 16px;
    color: #333;
}

.area-flow-right-img {
    margin-top: 16px;
    width: 25%;
}

@media screen and (max-width: 768px) {
    .page-area-wrapper {
        flex-flow: column-reverse;
        align-items: center;
    }

    .page-area-inner {
        width: 100%;
    }

    .page-area-map {
        width: 80%;
        margin: 32px 0;
    }

    .page-area-flow-text {
        font-size: 15px;
    }

    .page-area-flow-text-area {
        padding: 20px;
    }
}

/* page-cost */
.page-cost-top-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 0 34px;
}

.page-cost-top-content {
    margin: 54px 0 55px 0;
    width: 890px;
    height: 336px;
    border-radius: 8px;
    border-top: 8px solid #FF6524;
    box-shadow: 0px 5px 10px 0 #c5c5c5;
}

.page-cost-title {
    font-size: 35px;
    /*padding: 43px 0 77px 0;*/
}

.page-cost-table {
    margin-top: 20px;
    border-collapse: collapse;
}

.page-cost-title-th {
    color: #333;
    width: 564px;
    background: #FFEDE5;
    padding: 5px 0;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
}

.page-cost-text-th {
    color: #333;
    width: 326px;
    background: #FFEDE5;
    padding: 5px 16px;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
}

.page-cost-th {
    color: #333;
    font-weight: normal;
    width: 564px;
    padding: 4px 6px;
    text-align: left;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }
}

.page-cost-td {
    color: #333;
    width: 326px;
    padding: 5px 16px;
    text-align: right;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }
}

.page-cost-th-bottom,
.page-cost-td-bottom {
    border-bottom: 1px solid #D6D6D6;
}

.page-cost-top-section-img {
    width: 80%;
    margin: 32px auto 0;
}

@media screen and (max-width: 500px) {
    .page-cost-top-section-img {
        width: 60%;
    }
}

/* page-main-form */
.confirm-input-text {
    color: red;
    text-align: center;
    text-decoration-line: underline;
    font-size: 18px;
    margin: 20px 0;
}

.form-sub-text {
    font-size: 16px;
    text-align: center;
    color: #333;
    margin: 0 0 30px;
}

.main-form-info {
    width: 1200px;
    margin: 0 auto;
}

/* cf7 */
.main-form-wrapper {
    width: 998px;
    margin: 91px auto 0 auto;
    box-shadow: 2px 2px 10px 0 #C4C4C4;
}

.main-form-content {
    padding: 70px 0;
}

.required {
    font-size: 0.8em;
    padding: 3px;
    background: #FF6524;
    color: #ffffff;
    border-radius: 2px;
    margin-left: 10px;
    margin-bottom: 2px;
    display: inline-block;
}

.form-cat {
    /* width: 838px; */
    width: 90%;
    border-radius: 5px;
    background: #F8F9FA;
    margin: 20px auto 20px auto;
}

.name-cat {
    background: #fff;
    margin: 70px auto 20px auto;
    width: 90%;
}

.form-cat input,
textarea {
    border: 1px solid #DEE2E6;
    padding: 10px;
    width: 100%;
    /* color: #B5B5B5; */
}

.form-cat label {
    display: block;
    font-weight: bold;
    padding: 20px 0 0 20px;
    font-size: 22px;
}

.form-input {
    /* width: 778px; */
    width: 90%;
    padding: 10px 0 20px 20px;
}

.form-input p {
    margin-top: 0px;
}

.form-input a {
    text-decoration-line: underline;
}

.form-input-radio p {
    margin-top: -5px;
}

.name-input,
.address-input {
    /* width: 778px; */
    width: 100%;
    padding: 10px 0 20px 20px;
}

.name-input input {
    width: 44%;
}

.address-input input {
    width: 30%;
}

.address-number-bar {
    font-size: 20px;
    font-weight: bold;
    margin: 0 20px 0 0;
}

.first-name {
    margin-right: 15px;
}

.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
}

.radio-colum {
    flex-direction: column;
    align-items: baseline;
}

.radio-colum-2 {
    justify-content: space-between;
}

.wpcf7-list-item {
    width: 100%;
    margin: 0 !important;

    @media screen and (max-width: 768px) {
        border: 1px solid #d1d1d1;
        padding: 16px 6px;
        border-radius: 6px;
        width: fit-content;
        min-width: 48%;
    }

    &:has(input[type="checkbox"]) {
        border: none;
        width: auto;
        min-width: 100%;
        padding: 0;
    }
}

.wpcf7-list-item input {
    width: 30px;
    margin: 0;
}

.wpcf7-list-item label {
    width: 100%;
    display: flex;
    /* justify-content: left; */
    /* flex-wrap: wrap; */
    align-items: center;
    margin: 0px;

    @media screen and (max-width:1024px) {
        margin-bottom: 0px;
    }
}

.privacy-text {
    margin: 50px auto;
    padding: 10px;
    border: 1px solid #333;
    width: 754px;
    height: 185px;
    overflow-y: scroll;
}

.privacy-check-content {
    /* display: flex; */
    /* align-items: center; */
    width: 778px;
    margin: 0 auto 100px auto;
}

.privacy-check {
    width: 370px;
    margin: 0 auto;
    /* display: flex; */
    /* align-items: center; */
}

.form-submit {
    background: #fff;
}

.submit-input {
    position: relative;
}

.submit-input img {
    width: 455px;
    margin: 0 auto;
}

.submit-input input {
    width: 430px;
    height: 90px;
    border-radius: 50px;
    opacity: 0;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.main-form-title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    /* margin: 60px 0 0 0px; */
}

.checkbox-input label {
    margin-left: -40px;
    margin-bottom: 10px;
}

.checkbox-input {
    margin-left: 20px;
}

/* page-confirm */

.confirm-btn {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.confirm-back-btn {
    width: 40%;
}

.confirm-prev-btn {
    width: 40%;
}

/* page-complete */
.complete-section {
    /* width: 544px; */
    margin: 0 auto;
}

.complete-btn {
    display: block;
    width: 455px;
    height: 92px;
    /* margin: 50px auto 155px auto; */
    margin: 0 auto 155px auto;
}

.form-complete-btn {
    display: block;
    width: 455px;
    height: 92px;
    margin: 70px auto;
}

.form-complete-btn img {
    width: 100%;
}

/* page-question */
.question-wrapper {
    margin: 0 auto;
    width: 100%;
}

.page-question-sub-title {
    margin-bottom: 8px;
    margin-top: 20px;
}

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

/* page-guide */
.guide-top-section {
    width: 100%;
}

.guide-top-wrapper {
    margin: 0 auto;
}

.guide-top-text {
    text-align: center;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 24px;
}

.guide-content-img {
    width: 49px;
    height: 49px;
}

.guide-answer-left {
    opacity: 0;
}

.guide-content-top.is-active,
.guide-content-bottom.is-active {
    border-radius: 5px;
}

.guide-question-close-btn {
    top: 32px;
}

.guide-list-text {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.guide-list {
    list-style: none;
}

.guide-item {
    font-size: 16px;
    color: #333;
}

.guide-foot-text {
    font-size: 16px;
    color: #333;
}

.text-p {
    margin-top: 20px;
    font-size: 18px;
    color: #FF6524;
}

.guide-center-text {
    margin: 20px 0;
}

.guide-foot-link {
    margin-top: 20px;
}

.guide-cash-title {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.guide-cash-text {
    color: #333;
    font-size: 16px;
}

.guide-cash-text span {
    color: #333;
    font-weight: bold;
}

.guide-cash-inner-title {
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.guide-cash-img-first {
    /* padding: 51px 0 41px 0; */
    width: 862px;
}

.top-question-content a {
    text-decoration-line: underline;
}

/* page-Product warranty */
.product-text-area {
    margin-top: 60px;
}

.product-img-banner {
    width: 90%;
    margin: 40px auto;
}

.product-text-title {
    /* width: 295px; */
    /* margin: 0 auto; */
    font-size: 22px;
    font-weight: bold;
    color: #333;
    text-align: center;
    /* position: relative; */
}

.product-text-title span {
    color: #C81919;
}

.product-inner-content {
    margin-top: 12px;
}

.product-inner-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.75em;
}

.product-center-text {
    line-height: 2.25em;
}

.product-center-text span {
    font-size: 18px;
    font-weight: bold;
}

.product-orange {
    color: #FF6524;
}

.product-red {
    color: #C81919;
}

.product-inner-p {
    margin-bottom: 18px;
}

.product-text-second-content {
    margin-bottom: 56px;
}

.product-center-container {
    margin: 20px 0 0px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 5%;
}

.product-center-content {
    width: 30%;
    height: 335px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0 #c5c5c5;
    border-bottom: 3px solid #FF6524;
    padding: 11px 15px 0 15px;
}

@media screen and (max-width: 768px) {
    .product-center-content {
        width: 47.5%;
    }
}

.product-center-content-text {
    color: #333;
    line-height: 1.75em;
    padding-top: 25px;
    font-size: 14px;
}

.product-center-content-text-bottom {
    padding-left: 30px;
}

.product-img-first-content {
    width: 890px;
    height: 336px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0 #c5c5c5;
    border-top: 8px solid #FF6524;
    margin: 169px 0 105px 0;
}

.product-img-first-content img {
    width: 838px;
    margin: 0 auto;
    margin-bottom: 51px;
}

.product-img-second-content {
    width: 80%;
    margin: 30px auto 0;
}

.product-img-third-content {
    margin-top: 64px;
}

.product-img-third-content img {
    width: 80%;
    margin: 24px auto 0;
}

/* page-campaign */
.campaign-first-content {
    width: fit-content;
    margin: 0 auto;
}

.campaign-banner {
    width: 70%;
    margin: 0 auto;

    @media screen and (max-width: 1024px) {
        width: 80%;
    }
}

/* page-sitemap */
.sitemap-first-container {
    margin-top: 65px;
}

.sitemap-second-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
}

.sitemap-section {
    width: 32%;

    @media screen and (max-width: 1024px) {
        width: 49%;
    }
}

.sitemap-section-ttl {
    border-bottom: 1px solid #ccc;
    padding: 8px;
    margin-bottom: 8px;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }
}

.sitemap-content {
    margin-bottom: 8px;
    padding-left: 8px;
    display: block;

    @media screen and (max-width: 1024px) {
        font-size: 14px;
    }
}

.sitemap-top-content {
    background: #F69971;
    margin-bottom: 20px;
}

.sitemap-top-content p {
    color: #fff;
}


.sitemap-top-content-right {
    border: 3px solid #fff;
}


/* page-flow */
.flow-main-container {
    margin-top: 75px;
}

.flow-main-content {
    margin-bottom: 70px;
}

.flow-top-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.flow-content-title-area {
    background: #FFF4ED;
    display: flex;
    align-items: center;
}

.flow-title {
    font-size: 26px;
    color: #333;
}

.flow-title-img {
    margin: 0 20px 0 35px;
}

.flow-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 30px;
}

.flow-content-inner img {
    width: 310px;
    height: 275px;
}

.flow-content-text-area {
    width: 616px;
    margin: 27px 0 0 44px;
}

.flow-content-text {
    font-size: 16px;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.75em;
}

.flow-center-content {
    margin-top: 40px;
}

.flow-p {
    margin-bottom: 20px;
}


.center-text {
    text-align: center;
    letter-spacing: 0em;
}

.flow-center-title {
    font-size: 18px;
    color: #333;
    background: #FFF4ED;
    padding: 23px 25px 25px 30px;
}

.flow-center-title span {
    font-weight: bold;
    font-size: 18px;
}

.flow-center-img {
    border-right: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
}

.flow-center-img img {
    width: 70%;
    margin: 0 auto;
}

.flow-table {
    width: 759px;
    height: 577px;
    margin: 0 auto 130px auto;
}

.flow-th {
    width: 278px;
    background: #FFF4ED;
    font-size: 18px;
    color: #333;
    font-weight: normal;
    padding: 56px 0 58px 0;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
}

.flow-td {
    width: 483px;
    padding: 28px;
    font-size: 18px;
    color: #333;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
}

.flow-th-bottom,
.flow-td-bottom {
    border-bottom: 1px solid #D6D6D6;
}

.flow-td img {
    margin-top: 13px;
}

/* page-features */
.features-top-container-sp {
    display: none;
}

.features-top-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;

    @media screen and (max-width: 768px) {
        gap: 40px 2%;
        margin-bottom: 56px;
    }
}

.features-top-content {
    border: 1px solid #ff6524;
    border-bottom: 8px solid #FF6524;
    width: 23.5%;
    padding: 36px 16px 16px 16px;
    position: relative;

    @media screen and (max-width: 768px) {
        width: 49%;
    }
}

.features-top-content img {
    width: 55px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -28px;
}

.features-content-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-bottom: 3px dotted #FF6524;
    padding-bottom: 18px;
    margin-bottom: 18px;

    @media screen and (max-width: 768px) {
        font-size: 16px;
    }
}

.features-content-text {
    color: #333;
    font-size: 15px;

    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

.features-img-content {
    width: 890px;
    height: 563px;
    margin: 140px 0 167px 0;
}

.sp-scroll {
    width: 90%;
}

.feature-comparison-content img {
    margin: 60px auto 150px auto;
    /* width: 90%; */
}

.features-area-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.features-area-text-content {
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
}

.features-area-content-text {
    font-weight: bold;
    color: #333;
    padding-top: 20px;
}

.features-area-img-content {
    flex-shrink: 0;
    width: 400px;
}

.features-area-img-content img {
    width: 305px;
    height: 340px;
}

.features-achievements-content {
    margin-bottom: 167px;
}

.features-achievements-text {
    font-weight: bold;
    color: #333;
    text-align: center;
}

.features-achievements-content img {
    width: 839px;
    /* height: 270px; */
    margin: 30px auto 0 auto;
}

.feature-flow-text {
    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

.followup-title {
    margin-bottom: 50px;
}

.feature-followup-container {
    width: 890px;
    margin: 40px auto 0 auto;
}

.features-followup-btn img {
    width: 445px;
    margin: 54px auto 170px auto;
}

.evaluation-container {
    width: 890px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.evaluation-content {
    width: 242px;
    margin: 30px 0 0 0;
}

.evaluation-content img {
    width: 149px;
    height: 149px;
    margin: 0 auto;
}

.evaluation-content-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    color: #333;
    height: 70px;
    position: relative;
    white-space: nowrap;
}

.evaluation-content-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #FF6524;
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.evaluation-content-text {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.features-voice-container {
    margin: 70px 0 180px 0;
}

.features-voice-content {
    display: flex;
    padding: 30px;
    width: 890px;
    height: 250px;
    margin: 0 auto 30px auto;
    box-shadow: 2px 2px 10px 0 #C4C4C4;
    border-radius: 10px;
}

.features-voice-content:hover {
    opacity: 0.7;
}

.features-voice-img {
    flex-shrink: 0;
    width: 170px;
    margin-right: 20px;
}

.features-voice-text-area {
    color: #333;
}

.features-voice-title {
    font-size: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    border-bottom: 3px dotted #7B442B;
}

.features-voice-date {
    font-size: 18px;
    margin: 10px 0 16px 0;
}

.features-voice-text {
    font-size: 16px;
}

/* page-notation */
.notation-table-wrapper {
    margin: 56px 0 0;
}

.notation-table {
    margin: 0 auto;
}

.notation-th {
    width: 30%;
    color: #333;
    background: #FFF4ED;
    text-align: left;
    padding: 8px;
    font-weight: bold;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
}

.notation-td {
    width: 70%;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    color: #333;
    padding: 8px;
}

.notation-td p {
    margin-bottom: 20px;
}

.notation-th-bottom {
    border-bottom: 1px solid #D6D6D6;
}

.notation-th-bottom p {
    margin: 0;
}

/* page-termsofuse */
.termsofuse-wrapper {
    margin: 20px 0 0;
}

.termsofuse-content a {
    text-decoration-line: underline;
}

.terms-sub-title {
    background: #F69971;
    color: #fff;
    font-weight: bold;
    text-shadow: 0.01em 0.01em 7px #777;
}

.termsofuse-text-area {
    padding: 0 30px;
}

.termsofuse-inner {
    margin-bottom: 20px;
}

.termsofuse-inner-number {
    margin-left: 30px;
}

.termsofuse-title {
    font-weight: bold;
    margin-bottom: 20px;
}

.termsofuse-text {
    color: #333;
    margin: 20px 0;
}

.termsofuse-list {
    color: #333;
    line-height: 30px;
}

.termsofuse-list span {
    font-weight: bold;
}


/* page-personalinfo */
.personalinfo-wrapper {
    margin: 20px auto 138px auto;
}

.termsofuse-text-bottom {
    margin-top: 100px;
    color: #333;
}

/* page-repair */
.repair-section {
    padding-bottom: 110px;
}

.top-title-sub-text {
    font-size: 35px;
    margin: 0 auto;
}

.repair-top-img {
    margin: 0 auto;
}



.repair-text {
    color: #333;
}

/* page-guskyutouki */
.guskyutouki-wrapper {
    margin-bottom: 212px;
    margin-top: 72px;
}

.guskyutouki-step-container {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.guskyutouki-step-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 350px;
    height: 60px;
    background: #FFA33C;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
}

.guskyutouki-step-content-color {
    background: #FF6524;
}

.guskyutouki-top-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 20px 2%;
}

.guskyutouki-top-text {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

.guskyutouki-top-content {
    display: flex;
    align-items: center;
    width: 49%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #d9d9d9;

    @media screen and (max-width:1024px) {
        width: 100%;
    }
}

.guskyutouki-top-content-img {
    width: 95px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EEF8F4;
    border-radius: 5px;

    @media screen and (max-width:1024px) {
        height: 90px;
    }
}

.guskyutouki-top-content-text {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-left: 25px;

    @media screen and (max-width:1024px) {
        font-size: 18px;
        margin-left: 12px;
    }
}

.target-content {
    background: #FF6524;
    border-right: 15px solid #fff;
}

.target-text {
    color: #fff;
}

/* merchandisepage */
.merchandise-top-section {
    margin-bottom: 40px;
}

.merchandise-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /*width: 1440px;*/
    width: 90%;
    /*height: 320px;*/
    padding: 20px 0;
    background-image: url(/images/merchandise-top-img.png);
    margin: 0 auto;
}

.merchandise-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 43px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.3);
    width: 750px;
    height: 117px;
    color: #fff;
    margin: 0 auto;
}

/* page-merchandise-guskyutouki */
.guskyutouki-campaign-content img {
    margin-left: auto;
    margin-right: auto;
}

/* .guskyutouki-campaign-bottom-btn img {
    width: 100%;
} */
.guskyutouki-section-jumyou {
    width: 100%;
    margin: 80px auto 0;
    padding: 70px;
    background-color: #fff9f5;

    @media screen and (max-width: 768px) {
        width: 100%;
        padding: 0;
        margin-top: 120px;
    }
}

.guskyutouki-campaign-jumyou {
    width: 100%;
}

.guskyutouki-campaign-bottom-arrow {
    width: 280px;
    margin: 20px auto;
}

@media screen and (max-width: 768px) {
    .guskyutouki-campaign-bottom-arrow {
        width: 60%;
    }
}

.merchandise-title-span {
    color: #FF6524;
    padding-right: 0;
    text-shadow: 0.01em 0.01em #FF6524;
}

.guskyutouki-lineup-content {
    width: 49%;
}

.guskyutouki-lineup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* width: 1070px; */
    /* margin: 0 auto; */
}

.merchandise-sub-title {
    font-size: 35px;
}

.guskyutouki-campaign-btn {
    display: block;
}

.guskyutouki-campaign-img1 {
    width: 890px;
    margin: 0 auto;
}

.merchandise-campaign-info {
    width: 890px;
    margin: 0 auto;
}

.guskyutouki-campaign-img3 {
    width: 890px;
    margin: 0 auto;
}

.guskyutouki-check-flow {
    background: #FFFBF0;
    padding-bottom: 100px;
}

.check-flow-center-text {
    color: #333;
    text-align: center;
    font-size: 18px;
    width: 779px;
    margin: 0 auto;
}

.check-flow-center-list {
    color: #333;
    /* text-align: center; */
    font-size: 18px;
    width: 779px;
    margin: 0 auto;
}

.check-flow-title-text {
    margin: 50px 0 100px 0;
}

.check-flow-title-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 60px;
}

.check-flow-title-area::before {
    content: "";
    width: 264px;
    border: 2px solid #FF752E;
    position: absolute;
    top: 20px;
    left: 150px;
}

.check-flow-title-area::after {
    content: "";
    width: 264px;
    border: 2px solid #FF752E;
    position: absolute;
    top: 20px;
    right: 150px;
}

.check-flow-title-area img {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.check-flow-center-title {
    font-size: 28px;
    color: #FF752E;
    text-align: center;
    font-weight: bold;
}

.check-flow-center-sub-title {
    font-size: 25px;
    color: #333;
    text-align: center;
    margin: 20px 0 28px 0;
}

.check-flow-info {
    border-radius: 20px;
    margin: 0 auto;
    border: 1px solid #ccc;
}

.check-flow-info-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 2;
    padding: 16px 30px;
}

.check-flow-bottom-img {
    margin-bottom: 71px;
}

.check-flow-center-img {
    margin: 60px auto;
}

.merchandise-info-section {
    /*background: #fff;*/
    width: 100%;
    padding-top: 50px;
}

.merchandise-info-wrapper img {
    position: static;
}

.merchandise-bottom-info {
    width: 890px;
    margin: 90px auto;
    position: relative;
}

.merchandise-bottom-info img {
    width: 890px;
}

.merchandise-bottom-info a {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    width: 450px;
    height: 92px;
    margin: 0 auto;
    border-radius: 50px;
    opacity: 0;
    background: red;
    display: block;
    z-index: 1;
}

.guskyutouki-bottom-container-sub-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.guskyutouki-bottom-container {
    display: flex;
    justify-content: space-between;
    width: 890px;
    margin: 0 auto;
}

.guskyutouki-bottom-content {
    width: 270px;
    height: 307px;
    border-radius: 10px;
    border-bottom: 5px solid #FF6524;
    padding: 0 12px 0 16px;
    box-shadow: 0px 5px 10px 0 #c5c5c5;
    margin-top: 50px;
}

.guskyutouki-bottom-content img {
    width: 149px;
    height: 149px;
    margin: -30px auto 0 auto;
}

.guskyutouki-bottom-content-title {
    text-align: center;
    font-size: 23px;
    color: #333;
    height: 45px;
    position: relative;
}

.guskyutouki-bottom-content-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #FF6524;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.guskyutouki-bottom-content-text {
    font-size: 16px;
    color: #333;
    margin-top: 12px;
}

.merchandise-bottom-form {
    background-image: url(/images/merchandise-bottom-form-bg.png);
    padding: 50px 0 70px 0;
    margin-top: 107px;
}

.merchandise-bottom-form-content {
    width: 1000px;
    padding: 10px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.merchandise-sub-title-white {
    color: #fff;
    font-size: 45px;
    text-align: center;
    /* padding: 93px 0 50px 0; */
    padding: 0 0 50px 0;
    position: relative;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 0.01em 0.01em #fff;
}

.merchandise-sub-title-white::after {
    content: "";
    width: 100px;
    border-bottom: 4px dotted #fff;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.merchandise-orange-circle {
    background: #FF6524;
    border-radius: 50%;
    width: 170%;
    height: 100%;
    position: absolute;
    top: 450px;
    left: -35%;
}

.merchandise-top-point-container {
    justify-content: center;
}

.merchandise-top-point-content {
    width: 300px;
    margin: 0 20px;
}

.merchandise-top-point-btn {
    width: 455px;
}

.merchandise-top-voice-section {
    padding-bottom: 190px;
}

.merchandise-top-voice-section-sp {
    display: none;
}

.merchandise-top-voice-container {
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
}

.merchandise-top-voice-content {
    display: block;
    width: 890px;
    padding: 39px 50px 20px 50px;
    box-shadow: 0px 5px 10px 0 #c5c5c5;
    border-radius: 10px;
    margin-bottom: 40px;
}

.merchandise-voice-inner-top,
.merchandise-voice-inner-second {
    display: flex;
}

.merchandise-voice-inner-img {
    flex-shrink: 0;
}

.merchandise-voice-inner-img img {
    width: 170px;
    height: 190px;
}

.merchandise-voice-inner-top-text-area {
    padding: 20px 0 0 20px;
}

.merchandise-user-label-img {
    width: 180px;
    height: 30px;
}

.merchandise-voice-address {
    margin: 13px 0 10px 0;
    font-size: 18px;
    color: #333;
}

.merchandise-voice-date {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.merchandise-voice-client-data {
    display: flex;
    justify-content: end;
    align-items: end;
    font-size: 16px;
    color: #333;
}

.merchandise-voice-client-data img {
    width: 25px;
    height: 25px;
}

.merchandise-voice-inner-center {
    width: 370px;
    margin-left: 48px;
    font-size: 16px;
    color: #333;
}

.merchandise-voice-inner-bottom {
    width: 790px;
    margin: 19px auto 0 auto;
    background: #EEF8F4;
    padding: 23px 40px 38px 40px;
    border-radius: 5px;
}

.merchandise-voice-inner-bottom p {
    color: #7B442B;
}

.merchandise-voice-manager {
    font-size: 13px;
    text-align: right;
    margin-top: 10px;
}

/* page-merchandise*/

.sekiyukyutouki-lineup-content {
    width: 290px;
    height: 442px;
}

.sekiyukyutouki-campaign-img2 {
    width: 840px;
    margin: 40px auto 90px auto;
}

.sekiyukyutouki-campaign-info {
    margin-top: 20px;
}

.ecokyuto-campaign-img1 {
    width: 890px;
    margin: 0 auto;
}

.ecokyuto-point-wrapper p {
    line-height: 1.75em;
}

.ecokyuto-point-title {
    font-size: 35px;
    color: #333;
    text-align: center;
    margin: 0 0 50px 0;
    position: relative;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 0.01em 0.01em #333;
}

.ecokyuto-point-title::after {
    content: "";
    width: 100px;
    border-bottom: 4px dotted #FF6524;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.ecokyuto-point-sub-title {
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin: 30px 0 20px 0;
}

.ecokyuto-point-inner {
    margin: 20px 0;
}

.ecokyuto-point-flow {
    margin: 46px 0 60px 0;
}

.ecokyuto-point-bottom-content {
    margin-top: 50px;
}

.ecokyuto-point-bottom-inner {
    display: flex;
    align-items: start;
}

.ecokyuto-point-title-area {
    display: flex;
    align-items: center;
    background: #FFF4ED;
    padding: 0 20px;
}

.ecokyuto-point-title-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.ecokyuto-point-bottom-left {
    width: 200px;
    height: 200px;
    margin: 30px 40px 0 0;
    flex-shrink: 0;
}

.ecokyuto-center-triangle {
    margin: 80px auto 80px auto;
}

.merchandise-orange-circle {
    bottom: -400px;
}

.enefarm-point-wrapper {
    margin-top: 94px;
}

.enefarm-point-inner-container {
    display: flex;
}

.enefarm-point-inner-content {
    width: 360px;
}

.enefarm-point-inner-img {
    width: 300px;
    margin: 20px auto;
}

.enefarm-point-inner-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.enefarm-point-inner-text {
    font-size: 16px;
    color: #333;
}

.top-guidance-content-text span {
    font-weight: bold;
}

.ecowill-point-table {
    margin-bottom: 30px;
}

.ecowill-point-th {
    padding: 23px 0;
    text-align: center;
    font-size: 18px;
    color: #333;
    background: #FFF4ED;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
}

.ecowill-point-td {
    padding: 11px 0;
    text-align: center;
    font-size: 16px;
    color: #333;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
}

.ecowill-point-td-left {
    width: 416px;
    border-right: none;
}

.ecowill-point-td-right {
    width: 371px;
}

.ecowill-point-td-bottom {
    border-bottom: 1px solid #D6D6D6;
}

.ecowill-point-content-img1 {
    padding: 20px 0;
}

.ecowill-point-inner-content {
    display: flex;
    margin: 10px 0;
}

.ecokyuto-point-inner-text {
    font-size: 16px;
    color: #333;
    margin: 0 0 20px 10px;
}

.ecowill-point-content-btn {
    display: block;
    width: 410px;
    margin: 0 auto;
}

.ecowill-point-inner-foot-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecowill-point-inner-foot-btn a {
    display: block;
    width: 280px;
    margin: 0 10px;
}

.check-flow-text-inner {
    margin: 20px 0;
}

.stove-point-wrapper {
    width: 960px;
}

.stove-check-first-content {
    width: 690px;
    background: #FFF4ED;
    margin: 0 auto;
    padding: 37px 0;
}

.stove-check-title {
    width: 447px;
    margin: 10px auto;
    display: flex;
}

.stove-check-title-second {
    width: 650px;
}

.stove-check-title img {
    width: 30px;
    height: 29px;
    flex-shrink: 0;
    margin-right: 10px;
}

.stove-check-title-text {
    font-size: 18px;
    font-weight: bold;
    margin-right: 30px;
}

.stove-check-outer-title {
    background: #fff;
}

.stove-check-outer-img {
    width: 500px;
    margin: 0 auto 30px auto;
}

.stove-check-outer-single-img {
    width: 245px;
    margin: 0 auto 30px auto;
}

.stove-outer-container {
    margin: 71px 0 80px 0;
}

.stove-outer-content {
    margin: 46px 0;
}

.stove-check-second-content {
    width: 690px;
    background: #FFF4ED;
    margin: 0 auto;
    padding: 37px 80px;
}

.stove-check-third-title {
    font-size: 20px;
    font-weight: bold;
    background: #FFF4ED;
    border-left: 10px solid #FF6524;
    padding: 17px 0 17px 30px;
}

.stove-check-third-content {
    margin-bottom: 80px;
}

.ih-check-flow {
    padding-bottom: 65px;
}

.ih-flow-title-text {
    margin-bottom: 0;
}

.ih-point-inner-container {
    width: 810px;
    justify-content: space-between;
}

.ih-point2-top-content {
    background: #FFF4ED;
    width: 625px;
    margin: 0 auto;
    padding: 40px 60px;
}

.ih-point2-top-content-text {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    padding: 7px 0;
}

.ih-point-content-title {
    width: 565px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #FF6524;
    margin-bottom: 15px;
}

.ih-point-content-img {
    margin: 20px auto;
    width: 500px;
}

.ih-point2-second-content {
    margin-bottom: 46px;
}

.ih-point2-th {
    width: 189px;
    height: 182px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
    border-left: 1px solid #D6D6D6;
}

.ih-point2-th img {
    width: 120px;
    height: 172px;
}

.ih-point2-td {
    width: 599px;
    height: 182px;
    border-top: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
}

.ih-point-table-bottom {
    border-bottom: 1px solid #D6D6D6;
}

.ih-point3-container {
    display: flex;
    justify-content: space-between;
}

.ih-point3-content {
    width: 239px;
}

.ih-point3-title {
    font-size: 18px;
    color: #333;
    text-align: center;
}

.ih-point3-content img {
    width: 195px;
    margin: 13px auto;
}

.ih-point3-text {
    color: #333;
}

.ih-point4-img-content {
    display: flex;
}

.ih-point4-img-area {
    margin-right: 22px;
}

.ih-point4-img-area img {
    width: 370px;
}

.ih-point4-top-text {
    color: #333;
    background: #FFEFEF;
    padding: 12px 18px;
    margin-bottom: 10px;
    width: 356px;
}

.ih-point4-bottom-text {
    color: #333;
    background: #EFF2FF;
    padding: 12px 18px;
}

.ih-point7-content-title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #FF6524;
    margin-bottom: 20px;
}

.ih-point7-inner-content {
    display: flex;
    margin-bottom: 47px;
}

.ih-point7-content-text {
    color: #333;
    font-size: 16px;
    margin-left: 40px;
}

.ih-center-content,
.ih-point7-inner-content-bottom {
    margin-bottom: 0;
}

/* page-form-main */
.form-main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.form-main-top-info {
    display: block;
    margin: 0 auto 40px;
    width: 80%;

    @media screen and (max-width:1024px) {
        width: 80%;
        margin: 0 auto;
    }

    @media screen and (max-width:768px) {
        width: 60%;
        margin: 0 auto;
    }
}

/* archive-case */
.case-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 2%;

    @media screen and (max-width: 1024px) {
        align-items: flex-start;
    }
}

.case-content {
    display: block;
    width: 32%;
    overflow: hidden;
    border: 1px solid #ccc;
    color: #333;

    @media screen and (max-width: 1024px) {
        width: 49%;
    }
}

.case-content:hover {
    opacity: 0.7;
}

.case-text-area {
    padding: 12px;
}

.case-img {
    overflow: hidden;
}

.case-img img {
    background: #333;
    margin: auto;
    height: 200px;
    width: 100%;
    object-fit: cover;

    @media screen and (max-width: 1024px) {
        height: 160px;
    }
}

.case-text {
    /* font-size: 14px; */
    /* margin: 8px 0 0; */
    font-weight: 700;
    color: #445;
    height: 50px;

    @media screen and (max-width: 1024px) {
        height: 60px;
        font-size: 14px;
        margin-top: 4px;
    }
}

.case-tax {
    display: flex;
}

.case-tax p {
    padding: 2px 3px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid #333;
}

.case-model {
    font-size: 14px;
    margin-top: 4px;
}

.case-place,
.case-client {
    font-size: 14px;
    color: #999;
    text-align: right;
    margin-top: 12px;
}

.case-place {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #cbcbcb;
}

.case-client {
    margin-top: 0px;
}

.case-date {
    font-weight: bold;
    font-size: 14px;
    text-align: right;
}

.case-pagination {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-numbers {
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #FF6524;
    border: 1px solid #FF6524;
    font-size: 20px;
    font-weight: bold;
}

.current {
    background: linear-gradient(to right, #FF6524, #FF9824);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #FF6524;
    font-size: 20px;
    font-weight: bold;
}

/* single-case */
.page-area-flow-sp-section {
    display: none;
}



.single-case-img-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto 0;

    @media screen and (max-width: 1024px) {
        flex-flow: column;
    }
}

.single-case-before {
    width: 40%;

    @media screen and (max-width: 1024px) {
        width: 80%;
    }
}

.single-case-before img {
    width: 100%;
}

.single-before-text {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-top: 23px;
    position: relative;
}

.single-case-img-center {
    width: 64px;
}

.single-case-after {
    position: relative;
    width: 40%;

    @media screen and (max-width: 1024px) {
        width: 90%;
    }
}

.single-case-after img {
    width: 100%;
}

.single-after-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 23px;
    position: relative;

    &::after {
        content: "";
        position: absolute;
        bottom: -10px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 50px;
        border-bottom: 2px solid #FF6524;
    }
}

.single-table {
    width: 100%;
    margin-bottom: 50px;
}

.single-case-th {
    padding: 24px 0;
    text-align: left;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    width: 30%;
    border-bottom: 1px solid#FF6524;
}

.single-case-td {
    padding: 24px 0;
    padding-left: 20px;
    font-size: 15px;
    color: #333;
    width: 70%;
    border-bottom: 1px solid#C4C4C4;
}

.case-bottom-comment {
    padding: 50px 68px;
    background: #EEF8F4;
}

.case-bottom-comment p {
    font-size: 18px;
    color: #333;
}

.single-case-btn {
    display: block;
    width: 455px;
    height: 92px;
    margin: 70px auto 150px auto;
}

/* archive-voice */
.voice-section {
    padding: 0 0 150px 0;
}

.voice-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 2%;
}

.voice-content {
    display: block;
    width: 32%;
    overflow: hidden;
    border: 1px solid #ccc;
    color: #333;
}

.voice-img img {
    background: #333;
    margin: auto;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.voice-text-area {
    font-size: 14px;
    padding: 12px;
}

.voice-title {
    color: #333;
    font-size: 20px;
    margin: 10px 0 0px 10px;
    text-decoration-line: underline;
}

/* single-voice */
.single-voice-wrapper {
    padding-bottom: 80px;
    /* border-bottom: 4px dotted #FF6524; */
}

.single-voice-title {
    margin: 50px 0 10px 0;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: #fff;
    border-left: 13px solid #FF6524;
    background: #F69971;
    text-shadow: 0.01em 0.01em 7px #777;
}

.single-voice-date {
    text-align: right;
    font-size: 18px;
    color: #333;
}

.single-voice-img {
    position: relative;
    margin: 50px auto 80px auto;
}

.single-voice-img-text {
    position: absolute;
    bottom: -30px;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    width: 320px;
    height: 50px;
    color: #fff;
    background: #FF6524;
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
}

.single-voice-img img {
    width: 360px;
    object-fit: cover;

    @media screen and (max-width: 768px) {
        width: 70%;
        margin: 0 auto;
    }
}

.single-voice-center {
    padding: 0 30px;
}

.single-voice-center-title {
    display: flex;
}

.single-voice-center-title p {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #FF6524;
}

.single-voice-center-text {
    margin-bottom: 8px;
    margin-top: 12px;
}

.single-voice-bottom {
    padding: 30px;
    margin-top: 40px;
    background: #EEF8F4;
}

.single-voice-bottom-title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.single-voice-bottom-text {
    color: #333;
    font-size: 15px;
}

.terms-title {
    font-size: 35px;
}

.voice-terms-content {
    width: 890px;
    height: 380px;
    margin: 80px auto 150px auto;
    padding: 0px 59px 50px 59px;
    box-shadow: 0px 5px 10px 0 #c5c5c5;
}

.voice-terms-list {
    list-style: none;
    padding-left: 0;
}

.voice-terms-item {
    margin-bottom: 10px;
}

.voice-terms-item:hover {
    opacity: 0.7;
}

.voice-terms-item a {
    color: #333;
    display: flex;
    justify-content: space-between;
    font-size: 19px;
}

.voice-terms-item-right {
    text-decoration-line: underline;
}

/* page-protectionpolicy */
.protectionpolicy-wrapper {
    margin: 0px auto 100px auto;
}

.protectionpolicy-inner {
    margin: 50px 0;
}

.protectionpolicy-text {
    color: #333;
}

.protectionpolicy-list {
    margin: 30px 0 30px 0px;
    color: #333;
}


@media screen and (max-width:1439px) {
    body {
        width: 100%;
    }

    .header {
        width: 100%;
    }

    .header-top {
        padding: 8px 16px 10px;
    }

    .header-top-right-img {
        display: flex;
        align-items: center;
        width: 180px;
    }

    .header-top-left img {
        max-width: 146px;
        width: 100%;
        height: auto;
    }

    .header-top-left img {
        width: 100%;
    }

    .header-top-left img {
        width: 100%;
    }

    .header-list {
        padding-left: 0;
    }

    .header-top-first-btn,
    .header-top-second-btn {
        width: auto;
        padding: 14px 12px;
        border-radius: 6px;
    }

    .foot-header-text-top {
        font-size: 16px;
    }

    .foot-header-text-bottom {
        font-size: 16px;
    }

    .foot-header-text-bottom span {
        font-size: 22px;
    }

    .foot-btn {
        width: 40%;
        height: auto;
    }

    .top-lineup-wrapper {
        padding-top: 0;
    }

    .top-point-container {
        width: 90%;
    }

    .top-point-content {
        margin: 0 20px;
    }

    .top-point-content-img img {
        width: 90%;
    }

    .top-point-btn {
        width: 50%;
    }

    .top-lineup-container {
        width: 90%;
    }

    .top-lineup-first-content {
        width: 90%;
        height: auto;
    }

    .top-lineup-second-content {
        width: 90%;
        height: auto;
    }

    .top-lineup-content img {
        height: auto;
    }

    .top-voice-bg {
        top: 0;
    }

    .top-voice-btn {
        width: 90%;
    }

    .top-info-wrapper {
        display: none;
    }

    .top-info-sp-wrapper {
        display: block;
        position: relative;
    }

    .top-info-sp-wrapper img {
        position: absolute;
        top: -30px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .top-guidance-content-img {
        width: 90%;
        height: auto;
    }

    .top-advertisement-container {
        width: 90%;
    }

    .top-advertisement-content {
        width: 30%;
    }

    .sidebar {
        margin: 0 20px 0 20px;
    }

    .child-page {
        width: 100%;
        margin: 0 auto;
    }

    .page-area-flow-content {
        width: 750px;
        margin: 20px auto;
    }

    .main-form-info {
        width: 90%;
        margin: 0 auto;
    }

    .main-form-wrapper {
        width: 90%;
    }

    .privacy-text {
        width: 90%;
    }

    .complete-section {
        height: 600px;
    }

    .complete-btn {
        display: block;
        width: 50%;
        margin: 0px auto 100px auto;
    }

    .form-complete-btn {
        width: 40%;
        margin: 50px auto;
    }

    .complete-btn img {
        width: 100%;
        margin: 0px auto;
    }

    .product-img-first-content {
        width: 90%;
        margin: 100px auto;
    }

    .product-img-first-content img {
        width: 90%;
    }

    .product-img-second-content {
        width: 90%;
    }

    .product-img-second-content img {
        margin: 0 auto;
    }

    .product-img-third-content img {
        width: 90%;
        margin: 40px auto;
    }


    .merchandise-wrapper {
        width: 100%;
    }



    .single-case-section {
        margin: 0 auto;
    }

    .voice-terms-content {
        width: 90%;
        height: auto;
    }

    .voice-terms-item {
        margin: 15px 0;
    }

    .features-img-content {
        width: 90%;
        margin: 70px auto;
        height: auto;
    }

    .evaluation-container,
    .feature-followup-container {
        width: 90%;
    }

    .features-voice-content {
        width: 100%;
        height: auto;
    }


    .merchandise-wrapper {
        width: 100%;
    }

    .guskyutouki-campaign-img1 {
        width: 90%;
    }

    .merchandise-top-point-section {
        width: 100%;
    }

    .ecokyuto-point-title {
        white-space: wrap;
    }

    .ecokyuto-point-title-area {
        width: 100%;
    }

    .check-flow-info,
    .guskyutouki-campaign-img3 {
        width: 90%;
    }

    .merchandise-bottom-form-content {
        width: 95%;
    }

    .guskyutouki-bottom-container {
        width: 90%;
    }

    .merchandise-top-point-content,
    .guskyutouki-bottom-content {
        width: 30%;
        height: auto;
    }

    .merchandise-bottom-info,
    .merchandise-bottom-info img,
    .merchandise-top-voice-content,
    .merchandise-voice-inner-bottom {
        width: 100%;
    }

    .sekiyukyutouki-campaign-img2 {
        width: 90%;
    }

    .top-info-section {
        width: 100%;
    }

    .guskyutouki-bottom-content-title {
        font-size: 18px;
    }

    .top-point-content-title {
        font-size: 20px;
    }

    .merchandise-voice-inner-top-text-area {
        padding-top: 0;
    }

    .merchandise-voice-inner-center {
        width: 35%;
    }

    .merchandise-info-section {
        width: 100%;
        margin: 0 auto;
    }

    .check-flow-title-area::before {
        width: 20%;
        top: 20px;
        left: 150px;
    }

    .check-flow-title-area::after {
        width: 20%;
        top: 20px;
        right: 150px;
    }

    .enefarm-point-inner-container {
        justify-content: space-between;
    }

    .enefarm-point-inner-content {
        width: 40%;
    }

    .enefarm-point-inner-content img {
        width: 100%;
    }

    .ih-point4-top-text {
        width: 100%;
    }

    .ih-point-inner-container {
        width: 100%;
    }

    .ih-point2-top-content {
        width: 100%;
    }

    .ih-point-content-title {
        width: 100%;
    }

    .company-third-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .company-third-content {
        width: 40%;
        margin-bottom: 30px;
    }

    .page-company-first-section,
    .page-company-company-section,
    .page-company-company-section-second,
    .page-company-company-section-third {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .company-top-title {
        padding: 50px 0 !important;
    }

    .guskyutouki-step-container {
        width: 70%;
    }

    .page-cost-top-content {
        width: 100%;
        margin: 55px auto;
    }

    .page-cost-top-section-img img {
        width: 100%;
    }

    .page-cost-table {
        width: 100%;
        margin: 20px auto;
    }

    .page-cost-sub-title {
        margin: 80px auto 30px auto;
    }

    .page-question-sub-title {
        margin-top: 20px;
    }

    .question-right {
        font-size: 18px;
    }

    .question-content-top {
        height: auto;
        padding: 16px;
    }

    .notation-section,
    .personalinfo-section,
    .termsofuse-section,
    .protectionpolicy-section {
        margin: 0 auto;
    }

    .notation-table,
    .personalinfo-wrapper,
    .termsofuse-wrapper,
    .protectionpolicy-wrapper {
        width: 100%;
    }
}

@media screen and (max-width:1024px) {
    .header {
        display: none;
    }

    .header-hamburger {
        height: 100%;
        position: fixed;
        display: block;
        height: 65px;
        background: #fff;
        z-index: 9999999;
    }

    .hamburger-visible {
        height: 65px;
    }

    .hamburger-top {
        width: 100vw;
        display: flex;
        align-items: center;
        height: 65px;
        padding: 0 10px;
        z-index: 9999999;
        background: #fff;
        box-shadow: 0 0 10px #00000029;
    }

    .hamburger-logo-left {
        width: 100px;
    }

    .hamburger-logo-right {
        margin-left: 50px;
        width: 200px;
    }

    .hamburger-icon {
        margin: 0 0 0 auto;
        width: 40px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        position: relative;
    }

    .hamburger-icon span {
        display: block;
        width: 30px;
        height: 2px;
        margin: 5px auto;
        background: #000;
        transition: all 0.5s;
    }

    .hamburger-menu {
        background: #fff;
        width: 100%;
        height: calc(100% - 64px);
        /* height: 100%; */
        z-index: 0;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: -100%;
        left: 0%;
        overflow: hidden;
        transition: all 0.5s;
    }

    .hamburger-menu.menu-active {
        top: 64px;
        left: 0%;
        transition: all 0.5s;
    }

    .hamburger-icon.menu-active span:nth-child(1) {
        position: absolute;
        top: -5px;
        left: 5px;
        /* transform: rotate(-45deg) translate(0px,7px); */
        transform: rotate(-45deg);
        transition: all 0.5s;
    }

    .hamburger-icon.menu-active span:nth-child(2) {
        display: none;
        transition: all 0.5s;
    }

    .hamburger-icon.menu-active span:nth-child(3) {
        position: absolute;
        top: -5px;
        left: 5px;
        /* transform: rotate(45deg) translate(-1px,-9px); */
        transform: rotate(45deg);
        transition: all 0.5s;
    }

    .ham-bg {
        position: absolute;
        bottom: 0px;
        right: -70px;
        width: 256px;
    }

    .hamburger-list {
        list-style: none;

        padding: 0;
    }

    .hamburger-item {
        font-size: 22px;
        z-index: 10;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .hamburger-item:first-of-type {
        border-top: 1px solid #ddd;
    }

    .hamburger-item a {
        color: #333;
        text-decoration: none;
        display: block;
        padding: 10px 16px;
        text-align: left;
        font-size: 14px;
        font-weight: 700;
    }

    .hamburger-subh {
        color: #333;
        text-decoration: none;
        padding: 10px 16px;
        text-align: left;
        font-weight: 700;
        font-size: 14px;
        display: flex;
        justify-content: space-between;

        &::after {
            content: "▼";
            display: inline-block;
            font-size: 12px;
        }
    }

    .hamburger-inner-list {
        display: none;
        flex-wrap: wrap;
        padding: 0 24px;
    }

    .hamburger-inner-list-item {
        list-style: none;
        margin-bottom: 8px;

        a {
            padding: 0;
            font-size: 14px;

            &::before {
                content: "-";
                display: inline-block;
                margin-right: 6px;
            }
        }
    }

    .hamburger-menu-bottom {
        background: #fff;
    }

    .header-top-first-btn,
    .header-top-second-btn {
        width: 100%;
    }

    .hamburger-menu-center {
        width: 90%;
        display: grid;
        gap: 10px 0;
        margin: 16px auto 0;
    }

    .hamburger-foot-btn-top {
        position: absolute;
        top: -100px;
        left: 0;
    }

    .hamburger-foot-btn-bottom {
        position: absolute;
        top: 0;
        left: 0;
    }

    .hamburger-bottom-num {
        position: relative;
        z-index: 99;
        display: block;
        width: 50%;
        margin: 12px auto;
    }

    .hamburger-bottom-text {
        padding: 0;
        text-align: center;
    }

    .hamburger-foot-text {
        font-size: 13px;
        color: #fff;
        background: #333;
        text-align: center;
        padding: 10px 0 10px 0;
        position: relative;
    }

    .foot-header {
        justify-content: space-between;
    }

    .foot-header-btn {
        display: block;
    }

    .foot-btn {
        width: 50%;
        padding: 0;
    }

    .top-voice-section {
        overflow: hidden;
    }

    .top-voice-bg {
        display: none;
    }

    .top-voice-bg-sp img {
        object-fit: cover;
        height: auto;
    }

    .top-voice-bg-sp {
        width: 100%;
        display: block;
        position: absolute;
        top: 400px;
        left: 0;
        z-index: -1;
    }

    .top-info-btn {
        width: 80%;
    }

    .footer-bottom-left img {
        width: 90%;
        height: auto;
    }

    .sidebar {
        display: none;
    }

    .child-page {
        /* width: 90%; */
        margin: 0 auto;
    }

    .page-area-top-section {
        width: 100%;
        margin: 0 auto;
    }

    .page-cost-top-section {
        width: 100%;
    }

    .area-sp-img {
        display: block;
        width: 100%;
        margin: 50px auto;
    }

    .area-content-title-first,
    .area-content-title-second {
        width: 100%;
        align-items: center;
    }

    .area-content-title-first img,
    .area-content-title-second img {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
    }

    .guarantee-mv-section,
    .guarantee-second-section,
    .work-flow-section {
        width: 100%;
        margin: 0 auto;
    }

    .guarantee-second-container {
        width: 100%;
    }

    .work-flow-img {
        width: 90%;
        height: auto;
        margin: 20px auto;
    }

    .flow-top-section {
        margin: 0 auto;
    }

    .flow-content-text-area {
        margin: 0 20px 0 20px;
    }

    .single-case-before {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }

    .single-case-before img {
        height: auto;
        width: 70%;
        margin: 0 auto;
    }

    .single-case-img-center {
        margin: 30px auto;
        transform: rotate(90deg);
        width: 40px;
    }

    .single-case-after img {
        width: 70%;
        height: auto;
        margin: 0 auto;
    }

    .feature-comparison-content img {
        margin-bottom: 50px;
    }

    .features-achievements-content img {
        width: 100%;
    }

    .features-achievements-content {
        margin-bottom: 50px;
    }

    .features-followup-btn img {
        margin-bottom: 50px;
    }

    .page-area-flow-content {
        width: 750px;
        height: auto;
    }

    .merchandise-top-point-container {
        display: block;
    }

    .merchandise-top-point-content {
        width: 80%;
        margin: 0px auto;
    }

    .top-point-content-img img {
        /* width: 50%; */
        margin: 0 auto;
    }

    .top-point-content-title {
        font-size: 30px;
    }

    .merchandise-orange-circle {
        width: 400%;
        top: 400px;
        left: -150%;
    }

    .check-flow-center-text {
        width: 100%;
        padding: 0 20px;
    }

    .check-flow-center-list {
        width: 90%;
    }

    .stove-check-title {
        width: 100%;
    }

    .stove-check-first-content,
    .stove-check-second-content,
    .stove-check-title-second {
        width: 100%;
    }

    .top-point-content-img img {
        width: 50%;
    }

    .merchandise-top-point-content {
        margin: 30px auto;
    }

    .top-point-content-text {
        height: auto;
    }

    .ecokyuto-point-wrapper {
        margin-bottom: 10px;
    }

    .sekiyukyutouki-lineup-content {
        height: auto;
    }

    .ih-point3-container {
        display: block;
    }

    .ih-point3-content {
        width: 100%;
    }

    .ih-point3-content img {
        width: 50%;
    }

    .ih-point3-title {
        font-size: 20px;
        font-weight: bold;
    }

    .cash-img {
        width: 80%;
    }

    .guide-answer-left {
        display: none;
    }

}

@media screen and (max-width:900px) {
    .top-info-wrapper {
        height: auto;
    }

    .top-advertisement-section {
        height: auto;
    }

    .top-advertisement-content {
        width: 90%;
        margin: 100px auto;
    }

    .top-advertisement-container {
        display: block;
    }

    .top-advertisement-text {
        margin-bottom: 0px;
        height: 100px;
    }

    .footer-top {
        display: block;
        padding-bottom: 0;
    }

    .footer-bottom-left picture {
        width: 100%;
        height: auto;
    }

    .footer-bottom-right {
        margin-bottom: 20px;
    }

    .complete-btn {
        width: 70%;
    }

    .Productwarranty-top-section,
    .product-img-section {

        margin: 0 auto;
    }

    .page-area-flow-wrapper-sp {
        display: block;
    }
}

@media screen and (max-width:768px) {
    .hamburger-list {
        /* row-gap: 5px; */
        margin: 0;
    }

    .title-span {
        padding: 0;
    }

    .top-point-sub-title {
        padding: 0 20px;
    }

    .foot-header-text-area {
        margin: 0 30px 0 30px;
    }

    .foot-btn {
        width: 50%;
    }

    .merchandise-orange-circle {
        width: 500%;
        /* top: 10%; */
        left: -200%;
    }

    .top-cat-content-img {
        height: auto;
    }

    .top-point-container {
        display: block;
        margin-top: 20px;
    }

    .top-point-content {
        width: 90%;
    }

    .top-point-content-img {
        width: 80%;
        display: flex;
        justify-content: center;
    }

    .top-advertisement-text {
        height: auto;
        margin-bottom: 20px;
    }

    .top-info-section {
        height: 500px;
    }

    .top-advertisement-section {
        /* height: 1011px; */
        background-image: url(/images/top-advertisement-bg-sp.png);
        background-size: cover;
        /* background-position: 60% 10%; */
    }

    .question-right,
    .answer-right {
        font-size: 15px;
    }

    .question-content-top {
        align-items: center;
    }

    .question-right {
        padding-right: 20px;
        line-height: 30px;
    }

    .footer-bottom-right {
        display: block;
    }

    .footer-bottom-btn {
        flex-shrink: 0;
        font-size: 15px;
        padding-left: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom-btn p {
        margin: 0 0 0 10px;
    }

    .page-area-flow-sp-section {
        display: block;
        padding-bottom: 50px;
        width: 95%;
    }

    .form-sub-text {
        font-size: 16px;
        margin-top: 10px;
    }

    .name-input input {
        width: 90%;
        margin: 10px 0;
    }

    .submit-input input {
        width: 100%;
    }

    .submit-input img {
        width: 80%;
    }

    .product-img-first-content {
        margin: 0 auto 70px auto;
        height: auto;
    }

    .product-img-first-content img {
        padding: 0px 0 40px 0;
    }

    .flow-content-inner {
        display: block;
    }

    .flow-content-img {
        width: 50%;
        margin: 0 auto 50px auto;
    }

    .flow-center-img img {
        width: 90%;
        margin: 0 auto;
    }

    .flow-content-text-area {
        width: 90%;
        margin: 0 auto;
    }

    .merchandise-wrapper {
        height: 200px;
    }

    .merchandise-text {
        width: 90%;
        font-size: 26px;
        padding: 0 30px;
    }

    .single-case-btn {
        width: 80%;
    }

    .voice-terms-content {
        padding: 0 10px 30px 10px;
    }

    .voice-terms-item {
        width: 80%;
        margin: 15px auto;
    }

    .single-voice-title {
        font-size: 25px;
    }

    .voice-terms-item a {
        display: block;
    }

    .voice-terms-item-right {
        font-size: 16px;
    }

    .voice-terms-item-left {
        font-size: 15px;
    }

    .features-area-content img {
        margin: 0 auto;
    }

    .features-area-content {
        flex-direction: column-reverse;
    }

    .features-area-text-content {
        display: block;
    }

    .features-area-content-text {
        padding-left: 30px;
        margin-bottom: 40px;
    }

    .feature-comparison-content {
        width: 100%;
        overflow-x: scroll;
    }

    .scroll-outer {
        width: 100%;
        overflow-x: scroll;
    }

    .sp-scroll {
        width: 695px;
        /* height: 20px; */
        overflow-x: scroll;
    }

    .sp-scroll-img {
        width: 695px;
    }

    .page-area-flow-title {
        font-size: 20px;
    }

    .page-area-flow-content {
        width: 100%;
        height: auto;
    }

    .area-flow-left-img {
        width: 60px;
        height: 140px;
    }

    .area-flow-right-img {
        width: 30%;
        height: auto;
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    .area-flow-left-bottom-img {
        width: 60px;
        height: 60px;
        margin-right: -25px;
    }

    .guskyutouki-lineup-content img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .ecokyuto-point-bottom-inner {
        display: block;
    }

    .ecokyuto-point-title-area img {
        width: 80px;
    }

    .ecokyuto-point-title-text {
        font-size: 17px;
    }

    .ecokyuto-point-bottom-left {
        margin: 30px auto;
    }

    .check-flow-info-text {
        padding: 50px 20px;
    }

    .guskyutouki-bottom-container {
        flex-direction: column;
    }

    .guskyutouki-bottom-content {
        width: 315px;
        height: 340px;
        margin: 50px auto;
    }

    .guskyutouki-bottom-content-title {
        font-size: 23px;
        margin-top: 40px;
    }

    .merchandise-top-voice-content {
        padding: 20px;
    }

    .merchandise-voice-inner-top {
        display: block;
    }

    .merchandise-voice-inner-center {
        margin: 20px 0 0 0;
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 3px dotted #7B442B;
    }

    .orange-circle {
        top: 200px;
        width: 500%;
        left: -200%;
    }

    .merchandise-voice-inner-top-text-area {
        padding: 20px 0 0 0;
    }

    .check-flow-title-area::before {
        width: 17%;
        top: 20px;
        left: 80px;
    }

    .check-flow-title-area::after {
        width: 17%;
        top: 20px;
        right: 80px;
    }

    .check-flow-center-sub-title {
        font-size: 20px;
    }

    .enefarm-point-inner-container {
        display: block;
    }

    .enefarm-point-inner-content {
        width: 100%;
        margin: 30px auto;
    }

    .enefarm-point-inner-content img {
        width: 50%;
    }

    .ecowill-point-content-btn {
        width: 100%;
    }

    .ecowill-point-content-btn img {
        margin: 0 auto;
    }

    .ecowill-point-inner-content {
        display: block;
    }

    .ecowill-point-inner-foot-btn {
        display: block;
    }

    .ecowill-point-inner-foot-btn a {
        margin: 0 auto;
    }

    .stove-check-first-content,
    .stove-check-second-content {
        padding: 30px;
    }

    .ih-point2-th,
    .ih-point2-td {
        height: 270px;
        font-size: 14px;
    }

    .ih-point4-img-content {
        display: block;
    }

    .ih-point4-text-area {
        margin-top: 20px;
    }

    .ih-point-content-img {
        width: 90%;
    }

    .ih-point4-img-area img {
        margin: 0 auto;
    }

    .ih-point7-inner-content {
        display: block;
    }

    .ih-point7-content-text {
        margin: 40px 0 0 0;
    }

    .guskyutouki-top-text {
        padding: 0 20px;
    }

    .guskyutouki-second-wrapper {
        padding-top: 10px;
    }

    .guskyutouki-step-container {
        width: 90%;
    }

    .notation-table-wrapper {
        margin: 50px 0 0 0;
    }

    .notation-tr {
        display: flex;
        flex-direction: column;
    }

    .notation-th {
        width: 100%;
        text-align: left;
    }

    .notation-td {
        width: 100%;
        border-left: 1px solid #D6D6D6;
    }

    .cam-file,
    .sel-file {
        display: block;
        width: 100%;
    }

    .cam-file,
    .sel-file {
        width: 100%;
    }

    .cam-file img,
    .sel-file img {
        width: 100%;
        left: -10px;
        top: 0px;
    }

    .form-input input {
        width: 100%;
    }
}

@media screen and (max-width:500px) {
    .hamburger-logo-right {
        margin: 0 10px;
        width: 170px;
    }


    .hamburger-list {
        row-gap: 7px;
    }

    .hamburger-foot-btn-top {
        top: -65px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .hamburger-foot-btn-bottom {
        top: 0px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .foot-header {
        justify-content: space-between;
        padding: 0 20px;
    }

    .foot-header-btn {
        width: 180px;
        /* flex-shrink: 0; */
    }

    .foot-btn {
        /* width: 196px; */
        width: 220px;
    }

    .foot-left-btn {
        position: relative;
    }

    .foot-left-btn img {
        position: absolute;
        top: -55px;
        left: -30px;
    }

    .foot-right-btn {
        position: relative;
    }

    .foot-right-btn img {
        position: absolute;
        top: -5px;
        left: -30px;
    }

    .foot-header-text-top,
    .foot-header-text-bottom {
        width: 100%;
        font-size: 16px;
        text-shadow: 0.01em 0.01em #fff;
    }

    .foot-header-text-bottom {
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: end;
    }

    .foot-header-text-bottom span {
        text-shadow: 0.01em 0.01em #FFE81D;
        /* width: 100%; */
    }

    .foot-header-small {
        font-size: 16px !important;
        /* padding-bottom: 1px; */
        padding: 0 2px 2px 2px;
    }

    .foot-header-text-area {
        width: 140px;
        margin: 0;
        flex-shrink: 0;
    }

    .title-next {
        display: block;
    }

    .voice-label {
        width: 150px;
        font-size: 15px;
    }

    .top-info-section {
        height: 850px;
    }

    .top-question-wrapper {
        padding: 10px 0 0px 0;
    }

    .top-question-bg {
        top: -20px;
        left: 0;
    }

    .top-advertisement-wrapper {
        padding-bottom: 20px;
    }

    .page-company-company-section-third {
        padding-bottom: 70px;
    }

    .guarantee-mv-wrapper,
    .guarantee-second-wrapper {
        margin-bottom: 56px;
    }

    .guarantee-tr {
        display: flex;
        flex-direction: column;
    }

    .guarantee-th {
        width: 90%;
        margin: 0 auto;
        text-align: left;
        padding-left: 20px;
    }

    .guarantee-td {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        border-left: 1px solid #D6D6D6;
    }

    .work-flow-banner-container {
        margin-bottom: 70px;
    }

    .guarantee-second-container {
        margin-top: 50px;
    }

    .guarantee-second-content {
        width: 45%;
        height: auto;
        margin: 0 0 30px;
    }

    .guarantee-info-img {
        padding-bottom: 20px;
    }

    .guarantee-second-content-text {
        height: auto;
    }

    .guarantee-second-content-text p {
        font-size: 16px;
    }

    .complete-section {
        height: 400px;
    }

    .complete-btn {
        margin-top: 0px;
    }

    .form-complete-btn {
        width: 80%;
    }

    .product-text-first-content {
        margin-bottom: 40px;
    }

    .product-center-container {
        margin-top: 10px;
    }

    .product-center-content img {
        width: 100%;
        height: auto;
    }

    .product-inner-content {
        margin: 70px 0;
        padding: 0;
    }

    .product-img-second-content {
        margin-bottom: 20px;
    }

    .product-img-third-content img {
        margin-bottom: 0;
    }

    .product-img-third-content {
        margin-bottom: 70px;
    }

    .company-first-content {
        margin-top: 10px;
    }

    .company-second-content {
        margin-bottom: 30px;
    }

    .cash-btm-img {
        margin: 40px 0;
    }

    .page-cost-top-content {
        height: auto;
        padding-bottom: 50px;
    }

    .sitemap-first-container {
        margin-top: 0;
    }

    .flow-top-wrapper {
        margin-bottom: 50px;
    }

    .flow-top-text span {
        display: block;
    }

    .flow-title {
        font-size: 18px;
    }

    .flow-title span {
        display: block;
    }

    .flow-title-img {
        margin: 0 10px 0 10px;
    }

    .flow-center-content-first {
        margin-bottom: 20px;
    }

    .flow-content-img {
        margin-bottom: 20px;
    }

    .flow-content-img {
        width: 90%;
    }

    .single-voice-title {
        font-size: 20px;
        padding-left: 0;
        margin-left: 0;
    }

    .single-case-tr {
        display: flex;
        flex-direction: column;
    }

    .single-case-th {
        padding: 20px 20px 0 20px;
        width: 150px;
        border-bottom: none;
    }

    .single-case-td {
        padding: 20px 20px 20px 20px;
        width: 100%;
        position: relative;
    }

    .single-case-td::after {
        content: "";
        width: 150px;
        position: absolute;
        bottom: -1px;
        left: 0;
        border-bottom: 2px solid #ff6524;
    }

    .case-bottom-comment {
        padding: 20px;
    }

    .single-case-btn {
        width: 100%;
        margin-bottom: 70px;
    }

    .single-voice-img img {
        height: auto;
    }

    .voice-section {
        padding: 0px 0 70px 0;
    }

    .voice-archive-label {
        font-size: 12px;
        width: 145px;
    }

    .voice-img {
        margin-right: 10px;
    }

    .single-voice-wrapper {
        padding-bottom: 40px;
    }

    .single-voice-title {
        height: 80px;
    }

    .single-voice-date {
        font-size: 14px;
    }

    .single-voice-img {
        margin: 20px 0 50px 0;
    }

    .single-voice-center-title p,
    .single-voice-bottom-title {
        font-size: 16px;
    }

    .single-voice-bottom {
        padding: 10px;
    }

    .voice-title {
        margin-left: 0;
        font-size: 16px;
    }

    .voice-date {
        margin-left: 0;
    }

    .single-voice-title {
        font-size: 20px;
    }

    .voice-terms-content {
        margin: 40px auto;
        width: 100%;
    }

    .voice-terms-item {
        width: 100%;
    }

    .features-img-content {
        margin-bottom: 20px;
    }

    .feature-comparison-content img {
        margin: 0 0 20px 0;
    }

    .features-area-content-text {
        margin-bottom: 10px;
    }

    .features-achievements-content {
        margin-bottom: 0;
    }

    .page-area-flow-wrapper {
        margin-bottom: 20px;
    }

    .followup-title {
        margin-bottom: 10px;
    }

    .product-inner-content {
        margin: 20px 0 0 0;
    }

    .evaluation-content {
        width: 100%;
    }

    .features-voice-content {
        padding: 15px;
        display: block;
    }

    .features-voice-container {
        margin-bottom: 100px;
    }

    .features-voice-title {
        padding-bottom: 0;
    }

    .features-voice-title p {
        font-size: 18px;
        margin: 10px 0;
    }

    .features-voice-date {
        font-size: 16px;
    }

    .features-voice-text {
        font-size: 15px;
    }

    .features-area-img-content {
        width: 100%;
    }

    .top-title-sub-text {
        font-size: 20px;
        padding: 50px 0;
    }


    .privacy-text p {
        font-size: 14px;
    }

    .form-cat {
        padding-right: 20px;
    }

    .wpcf7-form-control {
        /* width: 100%; */
        display: flex;
        gap: 10px 4%;
        flex-wrap: wrap;
        /* justify-content: left;
        flex-direction: column; */
    }

    .address-input input {
        display: inline-block;
        width: 40%;
    }

    .name-input input {
        margin: 0;
    }

    .sekiyukyutouki-lineup-content {
        width: 100%;
    }

    .sekiyukyutouki-lineup-content img {
        margin: 0 auto;
        width: 100%;
    }

    .sekiyukyutouki-campaign-img1 {
        overflow: hidden;
        padding-left: 10px;
    }

    .guskyutouki-campaign-content img {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .ecokyuto-point-title {
        font-size: 22px;
    }

    .ecokyuto-point-sub-title {
        font-size: 18px;
    }

    .ecokyuto-point-bottom-left {
        width: 100%;
        height: auto;
    }

    .check-flow-info img {
        height: 150px;
        border-radius: 10px 10px 0 0;
        width: auto;
        object-fit: cover;
    }

    .check-flow-info-text {
        padding: 20px;
    }

    .merchandise-bottom-info {
        margin: 50px auto;
    }

    .guskyutouki-campaign-btn {
        margin-bottom: 50px;
    }

    .guskyutouki-bottom-container {
        margin-top: 50px;
    }

    .guskyutouki-bottom-content {
        margin: 30px auto;
    }

    .form-cat {
        padding-right: 0;
    }

    .top-point-content-img img {
        width: 220px;
        height: 220px;
    }

    .top-point-content-title-img {
        width: 70px;
        height: 70px;
    }

    .top-point-content-title-area {
        height: 70px;
    }

    .top-point-content-title {
        font-size: 23px;
        text-align: center;
    }

    .kyutouki-info {
        /* width: 375px; */
        overflow-x: scroll;
    }

    .kyutouki-info-inner {
        width: 600px;
    }

    .merchandise-top-voice-content {
        width: 90%;
        margin: 40px auto;
    }

    .merchandise-voice-inner-img img {
        width: 150px;
        height: auto;
    }

    .merchandise-voice-inner-top-text-area {
        padding-left: 10px;
    }

    .merchandise-voice-inner-bottom {
        padding: 23px 5px 38px 5px;
    }

    .merchandise-top-voice-section {
        padding-bottom: 50px;
        position: relative;
    }

    .merchandise-top-voice-content {
        background: #fff;
    }

    .merchandise-top-voice-section-sp {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 80%;
        z-index: -2;
    }

    .check-flow-center-img {
        margin: 30px auto;
    }


    .merchandise-sub-title-white {
        font-size: 22px;
    }

    .orange-circle {
        top: 7%;
    }

    .check-flow-center-title {
        font-size: 22px;
    }

    .check-flow-title-text {
        margin: 20px 0 40px 0;
    }

    .check-flow-title-area img {
        width: 20px;
        height: 20px;
    }

    .check-flow-title-area::before {
        width: 20%;
        top: 15px;
        left: 20px;
        border: 1.5px solid #FF752E;
    }

    .check-flow-title-area::after {
        width: 20%;
        top: 15px;
        right: 20px;
        border: 1.5px solid #FF752E;
    }

    .check-flow-title-area {
        margin-top: 30px;
    }

    .guskyutouki-check-flow {
        padding-bottom: 30px;
    }

    .guskyutouki-campaign-bottom-btn {
        margin: 30px auto;
    }

    .guskyutouki-campaign-img2 {
        margin: 50px auto;
    }

    .enefarm-point-inner-content img {
        width: 70%;
    }

    .ecokyuto-point-bottom-left img {
        width: 70%;
        margin: 0 auto;
    }

    .stove-check-title-text {
        font-size: 16px;
    }

    .stove-check-title img {
        width: 20px;
        height: 20px;
        margin-top: 7px;
    }

    .stove-check-first-content,
    .stove-check-second-content {
        padding: 30px 15px;
    }

    .stove-check-title-text {
        margin-right: 0;
    }

    .stove-check-third-title {
        font-size: 18px;
        padding-left: 17px;
    }

    .ih-point2-top-content {
        padding: 30px 15px;
    }

    .ih-point2-th img {
        width: 90%;
        height: auto;
    }

    .ih-point2-th {
        width: 100px;
    }

    .ih-point2-th,
    .ih-point2-td {
        height: 300px;
        font-size: 14px;
    }

    .company-third-content {
        width: 90%;
    }

    .page-cost-top-wrapper {
        margin-bottom: 70px;
    }

    .page-cost-title {
        padding: 30px 20px 50px 20px;
        font-size: 20px;
    }

    .page-cost-top-text {
        padding: 0;
        font-size: 15px;
    }

    .page-cost-sub-title {
        font-size: 20px;
    }

    .page-cost-title-th {
        font-size: 16px;
    }

    .question-content-top {
        padding: 10px;
    }

    .question-content-bottom {
        transition: all 0s;
    }

    .question-content-bottom.is-active {
        padding: 10px;
        transition: all 0s;
    }

    .question-left,
    .answer-left {
        margin-right: 10px;
    }

    .question-right,
    .answer-right,
    .guide-cash-text {
        padding-right: 40px;
    }

    .guide-question-close-btn {
        top: -55px;
    }

    .termsofuse-text-area {
        padding: 20px 0;
    }

    .termsofuse-text {
        margin: 0;
    }

    .termsofuse-inner-number {
        margin-left: 15px;
    }

    .protectionpolicy-wrapper {
        margin: 0px auto 70px auto;
    }

    .protectionpolicy-inner:first-of-type {
        margin-top: 0px;
    }

    .protectionpolicy-list {
        margin-left: 0;
    }

    .form-cat label,
    .wpcf7-list-item-label {
        font-size: 18px;
    }
}

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

    .sp-span {
        display: block;
    }

    .orange-circle {
        top: 7%;
    }

    .top-point-content-title-img {
        left: -80px;
    }

    .top-cat-content-img {
        border-radius: 10px 10px 0 0;
    }

    .top-cat-content-text {
        font-size: 15px;
        border-radius: 0 0 10px 10px;
    }

    .top-point-btn {
        width: 100%;
    }

    .top-lineup-section {
        background-image: url(/images/top-lineup-bg-sp.png);
        /* height: 100%; */
    }

    .top-lineup-container-first {
        display: none;
    }

    .top-lineup-container-second {
        display: block;
    }

    .top-lineup-second-content {
        width: 345px;
        margin: 0 auto 15px auto;
    }

    .top-lineup-sp {
        display: block;
    }

    .top-voice-title-text {
        display: none;
    }

    .voice-inner-bottom {
        padding-bottom: 40px;
    }

    .top-voice-btn {
        display: none;
    }

    .top-case-section {
        padding-bottom: 20px;
    }

    .top-info-section {
        height: 700px;
    }

    .top-guidance-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }

    .top-question-wrapper {
        padding-bottom: 20px;
    }

    .top-advertisement-content {
        margin: 50px auto 100px auto;
    }

    .top-advertisement-img {
        width: 200px;
        height: 200px;
    }

    .top-advertisement-wrapper {
        padding-bottom: 0px;
    }

    .area-content-title-first img,
    .area-content-title-second img {
        margin-top: 10px;
    }

    .area-content-title-first,
    .area-content-title-second {
        align-items: start;
    }

    .area-content-title span {
        display: block;
        font-size: 12px;
        /* width: 100%; */
    }

    .area-content-sub-title {
        font-size: 12px;
    }

    .area-sub-title {
        width: 90%;
        font-size: 18px;
    }

    .complete-section {
        height: 300px;
    }

    .product-text-first-content {
        margin-top: 20px;
    }

    .product-inner-content {
        margin: 20px 0;
    }

    .product-img-content-title {
        padding-top: 20px;
    }

    .product-center-content {
        height: auto;
        padding-bottom: 20px;
    }

    .product-center-content-text {
        font-size: 15px;
    }

    .product-center-content-text-bottom {
        padding-left: 0;
    }

    .top-point-content {
        margin: 30px auto;
    }

    .top-voice-section {
        padding-bottom: 0;
    }

    .top-voice-bg-sp {
        top: 250px;
        height: 2500px;
    }

    .merchandise-top-voice-section {
        padding-bottom: 0;
        /* margin-bottom: 40px; */
    }

    .merchandise-top-voice-section-sp {
        /* bottom: 230px; */
        height: 90%;
    }

    .top-info-section {
        padding-top: 50px;
    }

    .guskyutouki-campaign-btn {
        width: 100%;
    }

    .guskyutouki-campaign-btn img {
        width: 100%;
    }

    .guskyutouki-campaign-img1 {
        /* margin-left: 15px; */
        width: 90%;
    }
}

.subsidies-top-overview {
    line-height: 2;
}

.subsidies-top-h2 {
    background-color: #ffefd1;
    padding: 8px;
}

.subsidies-top-list {
    padding: 10px;
    background-color: #f3f3f3;
    margin: 20px 0;
    line-height: 2;
}

.subsidies-top-list--blue {
    padding: 10px;
    background-color: #def3ff;
    list-style: none;
    line-height: 2;
    color: #2673c5;
    font-weight: bold;
}

.subsidies-top-section {
    margin: 0 0 60px;
}

@media screen and (max-width: 1024px) {
    .child-page--subsidies {
        padding: 0 20px;
    }
}

@media screen and (min-width:1441px) {

    body,
    .foot-header {
        margin: 0 auto;
    }
}

/*目的別に探す*/
.top-purpose-section {
    margin-top: 48px;
    margin-bottom: 64px;

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

.top-purpose-tab {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
    gap: 0 1%;

    @media screen and (max-width: 1024px) {
        flex-wrap: wrap;
        gap: 10px 2%;
        justify-content: flex-start;
    }
}

.top-purpose-tab-list {
    width: 12%;
    background-color: #F2F2F2;
    color: #6B6B6B;
    border-radius: 999px;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    font-weight: 700;

    @media screen and (max-width: 1024px) {
        width: 32%;
        font-size: 14px;
        padding: 12px 0;
    }
}

.top-purpose-tab-list.is-active {
    background-color: #ffdccd;
    color: #222;
}

.top-purpose-item {
    background: #fff0e9;
    border-radius: 10px;
    padding: 24px 24px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 1.3%;
    display: none;
    /* height: 300px; */

    @media screen and (max-width: 1024px) {
        margin-top: 16px;
        border-radius: 8px;
        gap: 18px 2%;
        padding: 16px 6px 28px;
        height: auto;
    }
}

.top-purpose-item.is-active {
    display: flex;
}

.top-purpose-cat {
    width: 24%;

    a {
        display: flex;
        align-items: center;
        gap: 0 8px;
        background-color: #fff;
        padding: 0 12px;
        height: 70px;
        border-radius: 10px;
        border: 1px solid #f9ccb9;
        color: #333;
        font-weight: 700;
        position: relative;
        line-height: 1.2;
        /* box-shadow: 0 5px 5px #fdb1b1a3;  */

        @media screen and (max-width: 1024px) {
            height: 60px;
            gap: 0 4px;
            padding: 0 6px;

        }

        @media screen and (max-width: 360px) {
            font-size: 13px;
        }

        img {
            height: 24px;
            object-fit: contain;

            @media screen and (max-width: 1024px) {
                height: 20px;
            }
        }
    }

    @media screen and (max-width: 1024px) {
        width: 49%;
        font-size: 12px;
    }
}

.top-purpose-cat-bold {

    color: #d13b19;

}

.lower-purpose-txt {
    line-height: 1.8;
}

.lower-purpose-wrapper {
    margin-bottom: 40px;
}


/*お問い合わせフォーム*/
.contact-label {
    display: flex;
    margin: 0 auto;
    align-items: stretch;
}

.contact-label>.wpcf7-form-control-wrap {
    width: 70%;
    padding: 20px 0 20px 20px;
}

.contact-label-ttl {
    width: 30%;
    background-color: #eee;
    padding: 20px;
}

.contact-label-required {
    background-color: #d32f2f;
    color: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 13px;
    margin-right: 10px;
}

.contact-label-any {
    background-color: #dfdfdf;
    color: #000000;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 13px;
    margin-right: 10px;
}

.contact-submit {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 20px 0;
    margin-top: 24px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;

    @media screen and (max-width:1024px) {
        width: 80%;
    }
}

/*見積りフォーム*/
body:has(.form-header) {
    background-color: #fbfaf5;
}

.l-form-wrapper {
    max-width: 960px;
    width: 100%;
    margin: 0px auto;
    background-color: #fff;
    padding: 20px;

    @media screen and (max-width:1024px) {
        padding: 0;
        margin-top: 8px;
    }
}

.l-form-wrapper select {
    width: 100%;

    @media screen and (max-width:1024px) {
        padding: 8px;
        font-size: 14px;
    }
}

.wpcf7-text {
    @media screen and (max-width:1024px) {
        padding: 8px;
    }
}

.wpcf7-not-valid-tip {
    @media screen and (max-width:1024px) {
        font-size: 14px !important;
        margin-top: 8px !important;
    }
}

.wpcf7 input[type="file"] {
    @media screen and (max-width:1024px) {
        font-size: 14px !important;
    }
}



.wpcf7-list-item-label {
    @media screen and (max-width:1024px) {
        font-size: 14px !important;
        width: 90%;
    }
}

.wpcf7-list-item input[type="checkbox"] {
    @media screen and (max-width:1024px) {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
}

.form-header {
    text-align: center;
    background: url(/images/form-header-bg.png) no-repeat;
    background-size: 100%;
    background-position: top;
    background-color: #fbfaf5;
    padding: 60px 0;

    @media screen and (max-width:1024px) {
        padding: 40px 0;
    }
}

.form-header-inner {
    max-width: 960px;
    margin: 0 auto;
}

.form-header-ttl {
    font-size: 30px;
    color: #222;
    position: relative;

    @media screen and (max-width:1024px) {
        font-size: 24px;
    }
}

.form-header-txt {
    position: relative;
    margin-top: 8px;

    @media screen and (max-width:1024px) {
        font-size: 14px;
        margin-top: 4px;

    }
}

.form-header-txt::after {
    content: "";
    display: block;
    height: 5px;
    width: 40px;
    background-color: #eba241;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -30px;

    @media screen and (max-width:1024px) {
        bottom: -24px;
    }
}

p:has(.form-label) {
    display: flex;
    border-bottom: 1px solid #ccc;

    @media screen and (max-width:1024px) {
        flex-direction: column;
        border-bottom: none;
    }
}

.form-label {
    width: 300px;
    background-color: #f3f3f3;
    padding: 16px;

    @media screen and (max-width:1024px) {
        width: 100%;
        padding: 8px 16px;
        font-size: 14px;
    }
}

.form-label+span {
    width: 660px;
    padding: 12px;

    @media screen and (max-width:1024px) {
        width: 100%;
        padding: 12px 16px;
        background-color: #fff;
    }
}

.form-required::after {
    content: "※必須";
    display: block;
    color: #ef3737;
    font-size: 14px;

    @media screen and (max-width:1024px) {
        display: inline-block;
        margin-left: 8px;
    }
}

.form-sub-ttl {
    text-align: center;
    background-color: #ffc263;
    padding: 8px 0 7px;
    font-weight: 600;
    font-size: 18px;

    @media screen and (max-width:1024px) {
        font-size: 16px;
        padding: 8px 0;
    }
}

.form-terms {
    margin-top: 24px;

    span {
        display: block;
        width: fit-content;
        margin: 0 auto !important;
    }

    @media screen and (max-width: 1024px) {
        padding: 0 16px;
    }
}

.form-turnstile {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/*下層ページ タイトル*/
/*h2*/
.lower-title {
    font-size: 28px;
    text-align: center;
    position: relative;
    margin-bottom: 48px;
}

.lower-title::after {
    content: "";
    display: block;
    height: 4px;
    width: 60px;
    background-color: #f56828;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -20px;
    margin: 0 auto;
}

@media screen and (max-width: 500px) {
    .lower-title {
        font-size: 24px;
    }
}

/*h3*/
.page-sub-title {
    font-size: 24px;
    background: #fdf1da;
    border-left: 5px solid #FF6524;
    padding: 10px 0 10px 20px;
    margin: 40px 0 16px 0;
    font-weight: bold;

    @media screen and (max-width: 1024px) {
        margin: 32px 0 16px 0;
    }

    @media screen and (max-width: 768px) {
        font-size: 20px;
        margin: 24px 0 16px 0;
        padding: 8px 0 8px 10px;
    }
}



/*h4*/
.page-sub-h4title {
    font-size: 20px;
    border-bottom: 2px dotted #FF9824;
    padding: 8px;
    margin-bottom: 16px;

    @media screen and (max-width:1024px) {
        font-size: 18px;
    }
}

/*下層ページ　タイトル下概要*/
.lower-overview {
    text-align: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .lower-overview {
        font-size: 14px;
        text-align: left;
        line-height: 1.8;
    }
}

/*商品一覧*/
.merchandise-item-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 4%;
    margin-top: 60px;
}

.merchandise-item {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d1d1d1;
    padding: 16px 8px 8px;
    position: relative;

    &:first-of-type {
        display: none;
    }
}

.merchandise-item::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 104px;
    background-color: #d50001;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.merchandise-item-off {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #ffe417;
    border-radius: 999px;
    text-align: center;
    color: #ed0001;
    font-weight: 900;
    line-height: 1;
    font-size: 18px;
    padding-top: 15px;
    top: -20px;
    left: -12px;

    span {
        font-size: 32px;
    }

    @media screen and (max-width: 768px) {
        width: 80px;
        height: 80px;
        padding-top: 14px;
    }
}

.merchandise-item-img {
    width: 35%;
    height: 70%;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.merchandise-item-overview {
    width: 63%;
}

.merchandise-item-overview-inner {
    display: flex;
    gap: 0 4%;
    align-items: center;
}

.merchandise-item-maker {
    width: 32%;
}

.merchandise-item-category {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background-color: #444;
    text-align: center;
    padding: 4px;
    border-radius: 3px;
    margin-top: 8px;
}

.merchandise-item-guarantee {
    background-color: #d50001;
    color: #fff;
    width: 32%;
    height: 50px;
    font-size: 13px;
    font-weight: 700;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 6px;
}

.merchandise-item-modelnumber {
    font-size: 14px;
    margin-top: 4px;
}

.merchandise-item-option {
    font-size: 13px;
    margin-top: 6px;
    height: 60px;
}

.merchandise-item-set {
    font-size: 14px;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 16px;
    height: 34px;
    display: grid;
    place-content: center;
    padding: 0 6px;

    @media screen and (max-width:1400px) {
        font-size: 12px;
    }
}

.merchandise-item-setprice {
    text-align: center;
    color: #ffe143;
    font-size: 32px;
    font-weight: 800;

    span {
        font-size: 18px;
        color: #fff;
    }
}

@media screen and (max-width: 768px) {
    .merchandise-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .merchandise-item::after {
        display: none;
    }

    .merchandise-item-img {
        width: auto;
        height: 200px;
    }

    .merchandise-item-overview {
        width: 100%;
    }

    .merchandise-item-overview-inner {
        justify-content: center;
        gap: 0 3%;
        border-top: 1px solid #ccc;
        margin-top: 10px;
        padding-top: 10px;
    }

    .merchandise-item-option {
        height: auto;
    }

    .merchandise-item-setwrapper {
        background-color: #d50001;
        padding: 6px;
        margin-top: 6px;
    }

    .merchandise-item-set {
        margin: 0;
        height: auto;
        padding: 4px 8px;
    }

    .merchandise-item-setprice {
        font-size: 32px;
    }
}

@media screen and (max-width: 580px) {
    .merchandise-item {
        width: 100%;
    }

    .merchandise-item-img {
        width: 280px;
        height: 200px;
        object-fit: cover;
        /* height: auto; */
    }

    .merchandise-item-overview-inner {
        flex-wrap: wrap;
        gap: 0;
        justify-content: space-between;
        align-items: flex-end;
    }

    .merchandise-item-option {
        margin-top: 4px;
    }

    .merchandise-item-maker {
        width: 40%;
    }

    .merchandise-item-maker-img {
        width: 60%;
        margin: 0 auto;
    }

    .merchandise-item-guarantee {
        border-radius: 4px;
        width: auto;
        height: auto;
        padding: 6px;
        font-size: 14px;
        width: 27%;
    }

    .merchandise-item-modelnumber {
        margin-top: 4px;
    }

    .merchandise-item-setprice {
        font-size: 28px;
    }
}

/*下層ページ ブロック お得なキャンペーン*/
.b-campaign {
    margin-top: 80px;
    background-color: #fff4e0;
    padding: 20px 40px 32px;
    border-radius: 16px;
}

/*下層ページ 給湯器の点検ポイント*/
.kyutouki-point {
    width: 90%;
    margin: 0 auto;
    margin-top: 80px;
    border: 1px solid #ccc;
    padding: 40px 60px;

    @media screen and (max-width: 768px) {
        width: 100%;
        padding: 16px;
    }
}

/*フッター追従*/
.sp-fllow {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #00000054;
    z-index: 9999998;
    padding: 8px;
}

.sp-fllow-btn {
    margin: 0 auto;

    a {
        font-size: 16px !important;
    }
}

body[class*="form"] {
    .sp-fllow {
        display: none;
    }
}

/*Google Icon*/
#breadcrumbs .material-symbols-outlined {
    font-size: 18px !important;
    position: relative;
    top: 3px;
}

/*エリア別ページ*/
.area-fv-img {}

.area-fv-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 860px;
    margin: 24px auto 40px;

    @media screen and (max-width: 768px) {
        max-width: 100%;
        font-size: 14px;
    }
}

.area-section-case {
    display: flex;
    gap: 0 2%;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        gap: 16px 0;
    }
}

.area-section-link {
    margin-top: 12px;
    margin-left: auto;
    width: fit-content;
    display: block;
    text-decoration: underline;
    color: #333;

    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

.area-section {
    margin-bottom: 60px;
}

.area-azana-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 4%;

    .area-azana-list {
        width: 48%;
    }
}

.area-azana-list-title {
    background-color: #ffecca;
    margin-bottom: 6px;
    padding-left: 6px;
}

.area-azana-list {
    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

.area-azana-list-item {
    margin-bottom: 2px;

    &:last-of-type {
        margin-bottom: 0;
    }
}

.area-section-flow-main-img {
    width: 80%;
    margin: 24px auto 0;
}

.area-section-flow {
    margin-bottom: 32px;
    margin-top: 48px;
}

.area-section-flow-inner {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: center;
        gap: 16px 0;
    }
}

.area-section-flow-img {
    width: 20%;

    @media screen and (max-width: 768px) {
        width: 70%;
    }
}

.area-section-flow-txt {
    width: 75%;
    line-height: 1.8;
    font-size: 15px;

    @media screen and (max-width: 768px) {
        width: 100%;
        font-size: 14px;
    }
}

.area-section-cat {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;

    @media screen and (max-width:768px) {
        gap: 20px 4%;
    }
}

.area-section-cat-item {
    width: 23.5%;

    a {
        text-align: center;
        border: 1px solid #d9d9d9;
        border-radius: 8px;
        display: block;
        overflow: hidden;
        color: #222;
    }

    img {
        background-color: #EEF8F4;
    }

    p {
        font-weight: 600;
        padding: 6px 0;
    }

    @media screen and (max-width:768px) {
        width: 48%;
    }
}

.area-section-area {
    li {
        margin-bottom: 8px;

        @media screen and (max-width:768px) {
            font-size: 14px;
        }
    }

    a {
        color: #000;
        text-decoration: underline;

        @media screen and (max-width:768px) {
            font-size: 14px;
        }
    }
}

/**トップ地図**/
.top-map {
    background-color: #FFFBF6;
    padding: 40px 0;
    margin-top: 50px;
    margin-bottom: -50px;
    text-align: center;
}

.top-map-ttl {
    margin-bottom: 8px;
}

.top-map-iframe {
    margin: 20px auto 0 !important;
    display: block;
    max-width: 1080px;
}