@import url(./base.css);
@import url(./utility.css);

/* --- ドロップダウン最優先適用 --- */
.header-list .nav-dropdown .dropdown-inner {
    position: relative;
    display: block;
}

/* ===================================
   Canvaデザイン再現 CTAボタン
=================================== */
/* CTAボタンの外枠（横並び・余白制御） */
.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    width: 100%;
}

/* ボタン共通枠組み */
.cta-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    
    /* 外枠・角丸設定
    border: 3px solid #2b2b2b;
    border-radius: 20px;
    box-sizing: border-box; */
    
    /* アニメーション */
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ホバー時の動き（マウスを乗せた時） */
.cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* 1. 修理依頼ボタン */
.btn-repair {
    height: 85px;
    background: linear-gradient(90deg, #f15924 0%, #d32f2f 100%);
}

.btn-repair-text {
    font-size: 26px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.btn-repair-text .arrow {
    font-size: 20px;
    margin-left: 8px;
}

/* 2. LINE見積もりボタン */
.btn-line {
    height: 85px;
    padding: 6px 0;
    background: linear-gradient(90deg, #06c755 0%, #00b341 100%);
}

.btn-line-sub {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 0px;
    line-height: 1.1;
    font-weight: bold;
    
}

.btn-line-main {
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 900;
    line-height: 1.1;

}

/* スマホ表示の調整 */
@media screen and (max-width: 768px) {
    .cta-button-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .btn-repair { height: 62px; }
    .btn-repair-text { font-size: 21px; }
    
    .btn-line { height: 75px; }
    .btn-line-sub { font-size: 13px; }
    .btn-line-main { font-size: 23px; }
}


.header-list .nav-dropdown .nav-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 200px !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    z-index: 9999 !important;
}

.header-list .nav-dropdown:hover .nav-dropdown-menu {
    display: block !important;
}

.header-list .nav-dropdown .nav-dropdown-menu li {
    width: 100% !important;
    border-bottom: 1px solid #eeeeee !important;
}

.header-list .nav-dropdown .nav-dropdown-menu li a {
    display: block !important;
    padding: 10px 16px !important;
    color: #333333 !important;
    font-size: 14px !important;
    text-align: left !important;
    white-space: nowrap !important;
    background-color: #ffffff !important;
}

.header-list .nav-dropdown .nav-dropdown-menu li a:hover {
    background-color: #f8f9fa !important;
    color: #0066cc !important;
}




.material-symbols-outlined {
    font-size: 18px;
    vertical-align: bottom
}

.main-content {
    padding-top: 30px;
    margin: 0 auto;
	max-width: 1200px;
	width: 100%;

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

.fv-section {
	margin-top: 20px;
    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: 999px;
    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 {
    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;
    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;
    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-top: 48px;
    margin-bottom: 60px;

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

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

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

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

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

.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;
        display: none
    }
}

.top-title-closely {
    text-align: center;
    margin-bottom: 24px;
    font-size: 28px !important;

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

    @media screen and (max-width:1024px) {
        margin-bottom: 0;
        font-size: 24px !important
    }
}

.top-closely-section {
    padding: 40px 0;
    background-color: #FFFBF6;

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

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

    @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; */

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

.top-closely-wrapper--lower {
    margin-top: 48px !important;

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

.top-closely-l-inner {
    @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;
    /* margin-top: 48px; */

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

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

    @media screen and (max-width:1024px) {
        margin-top: 0;
        margin-bottom: 24px;
        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;

    @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 {
    text-align: center;
    width: 24%;
    padding: 38px 16px;
    border: 1px solid #f56828;

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

.top-closely-area-list {
    display: flex;
    justify-content: center;
    gap: 0 4%;
    margin-top: 16px;

    @media screen and (max-width:768px) {
        justify-content: space-between;
        gap: 20px 0
    }

    li {
        width: 44%;

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

        a {
            display: block;
            width: 100%;
            border: 1px solid #666;
            border-radius: 6px;
            text-align: center;
            padding: 14px 0;
            font-size: 15px;
            position: relative
        }
    }
}

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

.title-span-reason {
    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: -15px;

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

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

.top-closely-reason-img {
    margin: 0 auto 32px;
    width: 55%;

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

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

.top-cat-container {
    margin: 32px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 24px 2%;

    @media screen and (max-width:1024px) {
        margin: 24px auto 0;
        justify-content: flex-start;
        gap: 10px 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: 8px 0 9px 0;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    color: #333;
    border-radius: 0 0 10px 10px;
    position: relative;

    &::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 16px;
        margin: auto;
        width: 10px;
        height: 10px;
        background: #333;
        clip-path: polygon(0 0, 0% 100%, 90% 50%);

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

.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%);
    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: auto
}

.top-point-content-title-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px
}

.top-point-content-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4em;
    color: #fff
}

.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: 0;
    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: 0 auto 40px
    }
}

.top-lineup-section {
    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 {
    color: #333
}

.top-lineup-container {
    display: flex;
    margin: 0 auto
}

.top-lineup-container-first {
    justify-content: center
}

.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: 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: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 32px;
    gap: 20px 2%;

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

.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: 10px 2vw;
        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;
    font-weight: 400
}

.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;
    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-wrapper {
    @media screen and (max-width:768px) {
        width: 90%;
        margin: 0 auto
    }
}

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

    @media screen and (max-width:1024px) {
        width: 100%;
        gap: 12px 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: 5px 2vw;
        justify-content: space-between
    }
}

.case-content-img-area {
    @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: 44px;
    margin-top: 4px;
    font-size: 13px;

    @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: #222;
    text-align: right;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid #cbcbcb;

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

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

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

.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-cost-section {
    margin-top: 64px;

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

.top-cost-section_text {
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.02em;

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

.top-cost-section_inner {
    max-width: 800px;
    margin: 0 auto
}

.top-cost-section_h3ttl {
    text-align: center;
    margin-top: 32px;
    background-color: #fdf1da;
    padding: 6px 0
}

.top-cost-section_table {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto 24px
}

.top-cost-section_table_table {
    margin-top: 0 !important
}

.top-guarantee-section {
    margin-top: 64px
}

.top-guarantee-wrapper {
    text-align: center
}

.top-guarantee-img {
    margin: 0 auto
}

.top-guarantee-txt {
    margin-top: 16px;
    line-height: 1.8;

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

.top-guarantee-table {
    border: 1px solid #C8C8C8;
    border-collapse: collapse;
    width: 100%;
    max-width: 750px;
    margin: 24px auto;

    tr,
    td,
    th {
        border: 1px solid #C8C8C8;
        padding: 24px 0;

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

    th {
        background: #F3F3F3
    }
}

.top-guarantee-th-bold {
    color: #FF5619;
    background-color: #FFEEDA !important
}

.top-guarantee-td-bold {
    color: #FF5619;
    font-weight: 700;
    font-size: 20px;

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

.top-guidance-section {
    position: relative;
    margin-top: 64px;
}

.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;
    gap: 0 45px;

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

.top-guidance-content {
    width: 330px;
    display: block;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-bottom: 4px solid #FF6524;
    border-radius: 10px;
    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 {
    margin: 0 auto 24px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #c7c4bf;

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

.top-question-content {
    border-bottom: 1px solid #ddd
}

.question-content-top,
.question-content-bottom {
    display: flex;
    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: 80%;
    top: 0;
    left: 35px
}

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

.question-right {
    color: #333;
    font-size: 18px
}

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

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

.answer-left {
    font-weight: 700;
    color: #C81919;
    text-shadow: .01em .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 {
    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 {
    max-width: 1200px;
    margin: 40px auto 56px;

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

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

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

    li {
        line-height: 1.8;
        color: #333;
        font-size: 14px;

        &::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;
    margin-top: 22px;
    padding: 0 0 21px 0;
    color: #333;
    font-size: 24px;
    text-align: center;
    font-weight: 700
}

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

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

.footer {
    padding: 0 0 30px;
    background: #fff;
    margin-top: 16px;

    @media screen and (max-width:768px) {
        margin-top: 56px
    }
}

.footer-inner {
    margin: 0 auto
}

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

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

.footer-list {
    /* width: fit-content; */
    width: 90%;
    margin: 32px auto 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0 30px;

    @media screen and (max-width:1024px) {
        width: 100%;
        padding: 24px;
        border-top: 1px solid #ddd;
        flex-wrap: wrap;
        gap: 20px 4%;
        margin: 0 auto;
    }
}

.footer-item {
    width: 50%;
    font-size: 14px;

    @media screen and (max-width:1024px) {
        width: 48%;
        margin: 0;
        font-size: 12px
    }
}

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

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

.footer-item-cat {
    border-bottom: 1px solid #000;
    margin-bottom: 8px;
    padding-bottom: 4px
}

.footer-item-sub {
    li {
        margin-bottom: 8px;

        a {
            font-size: 14px;

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

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

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

.footer-bottom-left img {
    width: 568px
}

.footer-bottom-right {
    display: flex
}

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

.footer-top-left {
    display: flex;
    align-items: center;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;

    @media screen and (max-width:768px) {
        flex-direction: column;
        border-bottom: none
    }
}

.footer-top-left_inner {
    max-width: 550px;
    width: 100%;
    text-align: center;

    @media screen and (max-width:768px) {
        padding: 24px 0
    }
}

.footer-top-left_text {
    margin-bottom: 4px;

    &.form-label__tips {
        margin-bottom: 0
    }
}

/* サイドバー */

/* サイドバー全体 */
.sidebar-wrapper {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px; /* ★ブロックごとの間隔を30pxあける */
}

/* 各サイドバーのカード枠（枠線や背景をつける場合） */
.sidebar-block {
    background: #fff;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

/* タイトル見出し（水色背景） */
.sidebar-nav-title {
    background-color: #6bd2db; /* 画像と同じような水色 */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin: 0;
}

/* --- カテゴリー用のCSS --- */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    border-bottom: 1px solid #eee;
}

.sidebar-category-list li:last-child {
    border-bottom: none;
}

.sidebar-category-list a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.sidebar-category-list a:hover {
    background-color: #f9f9f9;
}

/* --- 目次（追従処理） --- */
.sidebar-block.sidebar-toc {
    position: sticky;
    top: 100px; /* 画面上部からの固定位置 */
}

/* 目次の中身（余白調整） */
.toc-content {
    padding: 15px;
}

.sidebar {
	
    width: 300px;
	
}

.sidebar-content {
    left: 0;
    top: 0;
    padding-bottom: 50px;
    display: block;
    gap: 16px 0
}

.sidebar-nav {
	margin-top: 40px;
    width: 310px;
    border: 1px solid #D3D3D3;
/*     overflow: hidden; */
    padding-bottom: 0;
	margin-bottom:16px;
}

.sidebar-nav-title {
    font-size: 15px;
    color: #fff;
    text-align: center;
    background: #61d7dc;
    line-height: 1.2;
    padding: 8px 0
}

.sidebar-item {
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-bottom:1px solid #eee;
    text-decoration:none;
/* 	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; */

    &:last-of-type {
        border-bottom: none
    }
}

.sidebar-thumb{
    width:90px;
    flex-shrink:0;
}

.sidebar-thumb img{
    width:100%;
    height:65px;
    object-fit:cover;
    display:block;
}

.sidebar-text{
    flex:1;
    color:#333;
    font-size:14px;
    font-weight:700;
    line-height:1.5;
}

/*.sidebar-item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    margin: 0 8px 0 10px
}

.sidebar-item p {
    font-size: 14px;
    color: #333;
    margin: 0 10px 0 0;
    line-height: 1.3;
}
*/

.sidebar-banner {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden
}

.sidebar-btn {
    display: block;
    width: 238px;
    height: auto
}

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

/* コラムページ用サイドバー */
.sidebar-toc{
	width: 310px;
    position: sticky;
    top: 100px;
   
}

.main {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto
}

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

.child-page {
	font-size: 16px;
	margin-top: 40px;
	width: 100%; /* デフォルト（スマホ）は100% */
}

/* PC（1025px以上）のときだけサイドバー分を引く */
@media screen and (min-width: 1025px) {
	.child-page {
		width: calc(100% - 320px);
	}
}
	
.child-page-kv {
    border: 1px solid #aaa;
    margin-bottom: 32px;
    margin: 0 auto 32px
}

.child-page p{
    line-height: 2;
    margin-bottom: 1.6em;
}

.company-first-content {
    margin-top: 35px
}

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

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

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

.page-company-text {
    color: #333;
    text-align: left;
    line-height: 1.7;

    @media screen and (max-width:1024px) {
        font-size: 14px;
        text-align: left;
        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: 0 5px 10px 0 #c5c5c5;
    background: linear-gradient(to right, #F9D208, #FE7820)
}

.company-third-content-inner {
    height: 312px;
    background: #fff;
    border-radius: 10px
}

.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: 700;
    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
}

.guarantee-mv-wrapper {
    margin-bottom: 56px
}

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

    img {
        width: 100%
    }
}

.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: 700;
    color: #C81919
}

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

.guarantee-table {
    margin: 20px 0
}

.guarantee-th {
    width: 326px;
    text-shadow: .01em .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: 400;
    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: 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: 700;
    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-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-fv-img {
    margin-bottom: 24px;

    img {
        width: 100%
    }
}

.area-sp-img {
    display: none
}

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

.area-sub-title {
    width: 100%;
    margin-top: 40px;
    padding: 8px 0 7px 10px;
    font-size: 24px;
    font-weight: 700;
    text-shadow: .01em .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: 0 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: 700;
    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: 0 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;
    display: flex;
    justify-content: space-between;
    padding: 32px;
    width: 100%
}

.page-area-flow-text-area-inner {
    width: 70%
}

.page-area-flow-title {
    font-size: 24px;
    font-weight: 700;
    color: #FF6524;
    margin-bottom: 12px;
    text-shadow: .01em .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-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: 0 5px 10px 0 #c5c5c5
}

.page-cost-title {
    font-size: 35px
}

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

.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: 400;
    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-span {
    font-size: 13px;
    line-height: 1.4;
    display: inline-block;
    margin-top: 6px
}

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

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

.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
}

.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: .8em;
    padding: 3px;
    background: #FF6524;
    color: #fff;
    border-radius: 2px;
    margin-left: 10px;
    margin-bottom: 2px;
    display: inline-block
}

.form-cat {
    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%
}

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

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

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

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

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

.name-input,
.address-input {
    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: 700;
    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;
    align-items: center;
    margin: 0;

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

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

.privacy-check-content {
    width: 778px;
    margin: 0 auto 100px auto
}

.privacy-check {
    width: 370px;
    margin: 0 auto
}

.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: 700
}

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

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

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

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

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

.complete-section {
    margin: 0 auto
}

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

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

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

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

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

.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: 700;
    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: 700;
    margin-top: 20px
}

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

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

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

.guide-cash-img-first {
    width: 862px
}

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

.product-text-area {
    margin-top: 60px
}

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

.product-text-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    text-align: center
}

.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: 700
}

.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 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 5%
}

.product-center-content {
    width: 30%;
    height: 335px;
    ;
    border: 1px solid #FF6524;
    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: 0 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;
    border: 1px solid #cdcdcd;
    padding: 30px
}

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

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

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

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

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

.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
}

.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: .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: 700;
    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: 400;
    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
}

.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
}

.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: 700;
    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: 700;
    color: #333;
    text-align: center
}

.features-achievements-content img {
    width: 839px;
    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 100px 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: 700;
    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: 0;
    right: 0;
    left: 0;
    margin: 0 auto
}

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

.features-evaluation-content {
    margin-bottom: 100px
}

.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: .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: 700;
    border-bottom: 3px dotted #7B442B
}

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

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

.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: 700;
    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
}

.termsofuse-wrapper {
    margin: 20px 0 0
}

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

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

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

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

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

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

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

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

.termsofuse-list span {
    font-weight: 700
}

.personalinfo-wrapper {
    margin: 20px auto 138px auto
}

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

.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
}

.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: 700;
    text-align: center
}

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

    @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: 700;
    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
}

.merchandise-top-section {
    margin-bottom: 40px
}

.merchandise-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    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: 700;
    background: rgba(255, 255, 255, .3);
    width: 750px;
    height: 117px;
    color: #fff;
    margin: 0 auto
}

.guskyutouki-campaign-content img {
    margin-left: auto;
    margin-right: auto
}

.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: .01em .01em #FF6524
}

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

.guskyutouki-lineup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.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;
    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: 700
}

.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 {
    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: 700;
    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: 0 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: 0 0 50px 0;
    position: relative;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: .01em .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: 0 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
}

.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: 700;
    white-space: nowrap;
    text-shadow: .01em .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: 700;
    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: 700;
    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: 700;
    color: #333;
    text-align: center
}

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

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

.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: 700;
    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: 700;
    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: 700;
    font-size: 16px;
    color: #333;
    padding: 7px 0
}

.ih-point-content-title {
    width: 565px;
    font-size: 18px;
    font-weight: 700;
    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: 700;
    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
}

.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
    }
}

.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: .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-weight: 700;
    color: #445;
    font-size: 15px;
    height: 50px;
    line-break: anywhere;
    margin-top: 6px;

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

.case-tax {
    display: flex
}

.case-tax p {
    padding: 2px 3px;
    font-size: 13px;
    font-weight: 700;
    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: 0
}

.case-date {
    font-weight: 700;
    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: 700
}

.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: 700
}

.page-area-flow-sp-section {
    display: none
}

.single-case-img-area {
    display: flex;
    justify-content: center;
    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: 44px;
    margin: 20px;
}

.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: 40px
}

.single-case-th {
    padding: 24px 0;
    text-align: left;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 700;
    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
}

.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 0 10px;
    text-decoration-line: underline
}

.single-voice-wrapper {
    padding-bottom: 48px
}

.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: .01em .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: 20px;
    font-weight: 700;
    width: 320px;
    height: 41px;
    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;

    @media screen and (max-width:768px) {
        padding: 0
    }
}

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

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

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

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

.single-voice-bottom-title {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    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: 0 59px 50px 59px;
    box-shadow: 0 5px 10px 0 #c5c5c5
}

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

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

.voice-terms-item:hover {
    opacity: .7
}

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

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

.protectionpolicy-wrapper {
    margin: 0 auto 100px auto
}

.protectionpolicy-inner {
    margin: 50px 0
}

.protectionpolicy-text {
    color: #333
}

.protectionpolicy-list {
    margin: 30px 0 30px 0;
    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: 999px
    }

    .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 {
        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: 0 auto 100px auto
    }

    .form-complete-btn {
        width: 40%;
        margin: 50px auto
    }

    .complete-btn img {
        width: 100%;
        margin: 0 auto
    }

    .product-img-first-content {
        width: 90%;
        margin: 100px auto
    }

    .product-img-first-content img {
        width: 90%
    }

    .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%
    }

    .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-spacer {
    display: block;
    height: 65px;
    width: 100%;
}

    .header-hamburger {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: #fff;
        z-index: 9999999;
        display: block;
    }

    body {
        padding-top: 65px;
    }
    .fv-outer,
    .fv {
        margin-top: 0;
    }


    .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);
        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);
        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);
        transition: all 0.5s
    }

    .ham-bg {
        position: absolute;
        bottom: 0;
        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 {
        font-size: 14px;
        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: 0 auto
    }

    .top-point-content-img img {
        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: 700
    }

    .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: 0;
        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 {
        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%;
        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 {
        background-image: url(/images/top-advertisement-bg-sp.png);
        background-size: cover
    }

    .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: 0 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;
        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: 0
    }

    .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: 0;
        left: 0;
        right: 0;
        margin: 0 auto
    }

    .foot-header {
        justify-content: space-between;
        padding: 0 20px
    }

    .foot-header-btn {
        width: 180px
    }

    .foot-btn {
        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: .01em .01em #fff
    }

    .foot-header-text-bottom {
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: end
    }

    .foot-header-text-bottom span {
        text-shadow: .01em .01em #FFE81D
    }

    .foot-header-small {
        font-size: 16px !important;
        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 0 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: 0
    }

    .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-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: 0 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 {
        display: flex;
        gap: 10px 4%;
        flex-wrap: wrap
    }

    .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 {
        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: 0 auto 70px auto
    }

    .protectionpolicy-inner:first-of-type {
        margin-top: 0
    }

    .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: 14px;
        border-radius: 0 0 10px 10px
    }

    .top-point-btn {
        width: 100%
    }

    .top-lineup-section {
        background-image: url(/images/top-lineup-bg-sp.png)
    }

    .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-advertisement-content {
        margin: 50px auto 100px auto
    }

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

    .top-advertisement-wrapper {
        padding-bottom: 0
    }

    .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
    }

    .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
    }

    .merchandise-top-voice-section-sp {
        height: 90%
    }

    .top-info-section {
        padding-top: 50px
    }

    .guskyutouki-campaign-btn {
        width: 100%
    }

    .guskyutouki-campaign-btn img {
        width: 100%
    }

    .guskyutouki-campaign-img1 {
        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: 700
}

.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: 72px;
    margin-bottom: 64px;
    /* max-width: 1080px; */

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

.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: 8px 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;

    @media screen and (max-width:1024px) {
        margin-top: 16px;
        border-radius: 8px;
        gap: 8px 2%;
        padding: 8px 6px;
        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: 60px;
        font-size: 14px;
        border-radius: 10px;
        border: 1px solid #f9ccb9;
        color: #333;
        font-weight: 700;
        position: relative;
        line-height: 1.2;

        @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: #000;
    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: 0 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 {
    color: #dc3232;
    font-size: 1em;
    font-weight: 400;
    display: block;
    background-color: #ffe5e5;
    border: 2px solid #dc3232;
    border-radius: 999px;
    margin-top: 10px;
    padding: 2px 10px;
    width: fit-content;

    @media screen and (max-width:1024px) {
        font-size: 16px !important;
        margin-top: 8px !important;
        padding: 4px 10px !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: 8px;

    @media screen and (max-width:1024px) {
        width: 100%;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600
    }
}

.form-label+span {
    width: 660px;
    padding: 8px;

    @media screen and (max-width:1024px) {
        width: 100%;
        padding: 20px 16px;
        background-color: #fff
    }
}

.form-label__tips {
    font-size: 14px;
    text-decoration: underline;
    color: #000;

    &:visited {
        color: #000
    }

    @media screen and (max-width:768px) {
        margin-left: 20px;
        font-size: 13px
    }
}

.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
}

.lower-kv {
    border: 1px solid #aaa;
    margin-bottom: 32px
}

.lower-title {
    font-size: 28px;
    text-align: left;
    margin-bottom: 48px;
	border-left: 5px solid #61d7dc;
	padding-left: 14px;
	line-height: 1.2;
}

.lower-title::after {
    content: "";
    height: 1.2em;
    width: 5px;
    background-color: #61d7dc;
    position: absolute;
    left: 0;
	top: 0;
    bottom: 0;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .lower-title {
        font-size: 18px;
        margin-bottom: 40px;
		padding-left: 10px;
		border-left-width: 4px;
    }
}

.page-sub-title {
    font-size: 20px;
    background: #fdf1da;
    border-left: 5px solid #FF6524;
    padding: 10px 0 10px 10px;
    margin: 40px 0 16px 0;
    font-weight: 700;

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

    @media screen and (max-width:768px) {
        font-size: 16px;
        margin: 24px 0 16px 0;
        padding: 8px 0 8px 10px
    }
}

.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: 40px
}

.merchandise-item {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d1d1d1;
    padding: 16px 8px 8px;
    position: relative
}

.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: 170px;
        height: 130px;
        object-fit: cover
    }

    .merchandise-item-overview-inner {
        flex-wrap: wrap;
        gap: 0;
        justify-content: space-between;
        align-items: center
    }

    .merchandise-item-option {
        margin-top: 4px
    }

    .merchandise-item-maker {
        width: 40%
    }

    .merchandise-item-maker-img {
        width: 100%;
        margin: 0 auto
    }

    .merchandise-item-guarantee {
        border-radius: 4px;
        width: auto;
        height: auto;
        padding: 6px;
        font-size: 13px;
        width: 27%;
        line-height: 1.2
    }

    .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-follow {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #000000b8;
    ;
    z-index: 9999998;
    padding: 10px 16px;

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

.sp-follow-txt {
    text-align: center;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;

    &::before {
        content: "";
        display: inline-block;
        width: 2px;
        height: 15px;
        background-color: #fff;
        transform: rotate(-25deg);
        margin-right: 10px
    }

    &::after {
        content: "";
        display: inline-block;
        width: 2px;
        height: 15px;
        background-color: #fff;
        transform: rotate(25deg);
        margin-left: 5px
    }
}

.sp-follow-btn {
    margin: 0 auto;

    a {
        font-size: 16px !important
    }
}

body[class*="form"] {
    .sp-follow {
        display: none
    }
}

#breadcrumbs .material-symbols-outlined {
    font-size: 18px !important
}

.area-fv-text {
    font-size: 16px;
    line-height: 1.8;
    margin: 24px 16px 40px;

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

.area-section-txt {
    margin: 24px 16px;
    line-height: 1.8;

    @media screen and (max-width:768px) {
        margin: 16px 0
    }
}

.area-section-img {
    width: 80%;
    margin: 0 auto;

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

.area-section-case {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 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
    }
}

.article-section {
    margin-bottom: 60px;
}

.area-azana-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 4%;
    margin-top: 24px;

    .area-azana-list {
        width: 48%
    }
}

.area-azana-list-title {
    background-color: #ffecca;
    margin-bottom: 6px;
    padding: 3px 6px;
    font-size: 14px
}

.area-azana-list {
    @media screen and (max-width:768px) {
        font-size: 14px
    }
}

.area-azana-list-item {
    line-height: 1.2;
    font-size: 14px;
    margin-bottom: 8px;

    &: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: 40%
    }
}

.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
        }
    }
}

.area-section-gaskyutouki-wrap {
    width: 85%;
    margin: 0 auto;

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

.area-section-inquiry_inner {
    display: flex;
    justify-content: space-around;
    align-items: center;

    @media screen and (max-width:768px) {
        flex-direction: column;
        align-items: center
    }

    img {
        @media screen and (max-width:768px) {
            width: 50%
        }
    }
}

.area-section-inquiry_box {
    width: 100%;
    max-width: 608px
}

.area-section-inquiry_box-title {
    span {
        color: #f56828
    }
}

.area-section-inquiry_box-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.9
}

.area-section-inquiry_bottom-text {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    width: fit-content;
    margin: 0 auto;

    @media screen and (max-width:768px) {
        margin-top: 16px
    }

    &::before {
        content: "";
        display: block;
        width: 2px;
        height: 20px;
        background-color: #222;
        position: absolute;
        left: -16px;
        top: 3px;
        transform: rotate(-35deg)
    }

    &::after {
        content: "";
        display: block;
        width: 2px;
        height: 20px;
        background-color: #222;
        position: absolute;
        right: -10px;
        top: 3px;
        transform: rotate(35deg)
    }
}

.area-section-inquiry_btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    margin-top: 10px;

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

.area-section-campaign {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
    align-items: normal;

    @media screen and (max-width:768px) {
        justify-content: center
    }

    a {
        width: 48%;
        border: 1px solid #d7d7d7;
        padding: 10px;
        display: grid;
        place-content: center;

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

.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
}

.not-found {
    max-width: 900px;
    margin: 70px auto;
    background-color: #eee;
    padding: 50px 70px;
    text-align: center;

    @media screen and (max-width:768px) {
        margin: 30px;
        padding: 72px 24px
    }
}

.not-found_text {
    margin-top: 20px;
    text-align: left;
    line-height: 1.8;

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

.not-found_btn {
    padding: 14px 24px;
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    border-radius: 6px;
    background: #333;
    color: #fff
}

.error-code-txt {
    margin-bottom: 40px;
    line-height: 1.7
}

.error-code-maker {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 56px;
    gap: 40px 0;

    @media screen and (max-width:768px) {
        gap: 20px 4%
    }
}

.error-code-list-item {
    width: 30%;

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

    a {
        padding: 24px 0;
        display: block;
        border: 1px solid #ddd
    }

    img {
        width: 220px;
        height: auto;
        margin: 0 auto;

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

.error-code-list-item-txt {
    text-align: center;
    margin-top: 10px;
    color: #222;

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

.error-code-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 64px;

    th,
    td {
        width: 33%;
        border: 1px solid #ddd;
        padding: 8px 16px;
        font-size: 14px
    }

    th {
        background-color: #eee
    }

    tr th:first-of-type {
        width: 10%;

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

.article-text {
    line-height: 1.8;
    margin-top: 16px;
    font-size: 15px;

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

}

.kyutouki-select-article {
    margin-top: 56px;

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

.kyutouki-select-btn {
    color: #515151;
    text-decoration: underline;
    font-size: 18px;
    display: inline-block;
    margin-top: 24px;

    &::after {
        content: ">>";
        display: inline-block;
        margin-left: 4px
    }

    &:visited {
        color: #515151
    }
}

.kyutouki-select-imgText {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.kyutouki-select-imgText-inner {
    width: 700px;

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

.kyutouki-select-imgText-text {
    line-height: 1.8;
    margin-bottom: 16px
}

.kyutouki-select-imgText-img {
    width: 200px;
    height: auto;

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

.kyutouki-select-locationList {
    display: flex;
    justify-content: center;
    gap: 0 50px;
    margin: 16px 0;

    @media screen and (max-width:768px) {
        gap: 0 30px
    }
}

.kyutouki-select-locationList-item {
    width: 200px;
    text-align: center;

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

    img {
        border: 1px solid #aaa
    }
}

.kyutouki-select-list {
    display: flex;
    justify-content: center;
    gap: 0 50px;
    margin: 16px 0;

    @media screen and (max-width:768px) {
        gap: 0 30px
    }
}

.kyutouki-select-list--3c {
    .kyutouki-select-list-item {
        width: 25%
    }

    @media screen and (max-width:768px) {
        flex-direction: column;
        gap: 24px 0;

        .kyutouki-select-list-item {
            width: 100%
        }
    }
}

.kyutouki-select-list-item {
    width: 800px;
    text-align: center;

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

    img {
        margin: 0 auto
    }
}

.kyutouki-select-flow {
    display: grid;
    gap: 20px 0
}

.kyutouki-select-flow-item {
    background-color: #ffeedf;
    border-radius: 999px;
    padding: 20px
}

.kyutouki-select-list-txt {
    display: grid;
    gap: 16px 0
}

.kyutouki-select-list-txt-item {
    font-weight: 700;

    &::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(/images/icon_checkbox_red.svg) no-repeat center center;
        background-size: contain;
        vertical-align: bottom;
        margin-right: 4px
    }
}

.kyutouki-select-table {
    width: 100%;
    border-collapse: collapse;

    th,
    td {
        border: 1px solid #000;

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

    th {
        background-color: #999;
        color: #fff;

        &:nth-of-type(2) {
            background-color: #00c0f3
        }

        &:nth-of-type(3) {
            background-color: #f68b1e
        }
    }
}

.index-box {
    padding: 24px;
    background-color: #efefef;
    margin: 40px 0
}

.index-box_list_item {
    margin-bottom: 16px;

    &:last-of-type {
        margin-bottom: 0
    }

    a {
        color: #222;
        text-decoration: underline;

        &:before {
            counter-increment: number 1;
            content: counter(number) "."
        }
    }
}

.top-description-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 3.3%;

    @media screen and (max-width:768px) {
        gap: 20px 6%
    }
}

.top-description-item {
    width: 30%;
    height: 300px;
    position: relative;

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

.top-description-item-img {
    box-shadow: 0 3px 10px #dbdbdb;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;

    img {
        height: 100px;
        width: auto
    }
}

.top-description-item-txt {
    margin-top: 16px;
    font-weight: 600;
    font-size: 15px
}

.kyutou-choose-bnr {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 40px;
    border: 1px solid #aaa
}

.merchandise-guskyuto__detail__img {
    width: 300px;
    height: auto;
    margin: 0 auto
}

.merchandise-guskyuto__detail__dl {
    display: flex;
    flex-wrap: wrap;

    dt {
        width: 15%;

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

    dd {
        width: 85%;

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

    dt,
    dd {
        border-bottom: 1px solid #b7b7b7;
        padding: 20px 10px
    }
}

.merchandise-guskyuto__detail__maker-img {
    width: 200px;
    height: auto
}

.table-layout {
    border-collapse: collapse;
    margin-top: 24px;

    th,
    td {
        /* width: 33%; */
        border: 1px solid #aaa;
        padding: 8px;
        font-size: 15px;
    }

    th {
        background-color: #eee;
        font-weight: 600;
    }
}

.article-list_item{
	border-bottom: 1px solid #aaa;
}

.post-meta{
    margin: 10px 0;
}

.post-date{
    display: block;
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.post-labels{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-category a,
.post-tag a{

    display: inline-block;

    padding: 4px 10px;

    border-radius: 20px;

    background:#fdd8a0;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    transition: .3s;
}

/* ===================================
   共通
=================================== */

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

body {
    color: #333;
    background: #fff;
    line-height: 1.8;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
   width: 100%;
    margin: 80px auto;
}

/* ===================================
   タイトル（上下ボーダーデザイン）
=================================== */
/* ===================================
   全ページ共通：見出しデザイン
=================================== */

/* 見出し前後のセクション間隔調整 */
body section,
body .main-content {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* どのページに配置された .section-title でも適用される設定 */
body .section-title {
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    background-color: transparent;
    line-height: 1.2;

    border-top: solid 2px #61D7DC;
    border-bottom: solid 2px #61D7DC;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;

    padding: 6px 0;
    display: block;
    width: fit-content;
    min-width: 180px;
    margin: 0 auto 20px auto;
}

/* ===================================
   筆者プロフィール
=================================== */

/* 1. カード全体の枠組み・背景・余白 */
body .president-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fafafa;
    padding: 32px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);

    display: flex;
    align-items: center;       /* 上下中央揃え */
    gap: 32px;                 /* 写真枠と文章の間隔 */
}

/* 2. 左側の写真枠（親要素） */
body .president-image {
    width: 150px;              /* 左側エリアの幅を固定 */
    flex-shrink: 0;            /* 横幅が縮まないように固定 */
    text-align: center;        /* 名前を中央寄せ */
    border: none;              /* 不要な枠線を消去 */
    background: none;
}

/* 3. 写真「単体」だけに綺麗な丸枠を付ける */
body .president-image img {
    width: 140px;              /* 写真のサイズ */
    height: 140px;
    object-fit: cover;         /* 画像の縦横比を崩さない */
    border-radius: 50%;        /* きれいな真円 */
    border: 3px solid #61D7DC; /* 水色のリング */
    padding: 3px;              /* リングと写真の間の白い隙間 */
    background: #fff;
    display: block;
    margin: 0 auto;
}

/* 4. 役職・お名前テキスト */
body .president-image p,
body .president-name {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

/* 5. 右側文章エリア */
.child-page .president-text {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.child-page .president-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 1em 0; /* 段落の下に自然な余白を作る */
    text-align: left;  /* 不自然な改行を防ぐ左揃え */
    word-break: break-word;
}

.child-page .president-text p:last-child {
    margin-bottom: 0;
}

/* スマホ表示の調整 */
@media screen and (max-width: 768px) {
    .child-page .president-text p {
        font-size: 14px; /* スマホでは少し小さめにして見やすく */
    }
}

/* ===================================
   施工事例
=================================== */

.cases-list {

      display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.case-image img{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    display:block;
}


.case-card {

    flex: 1;

    overflow: hidden;

    transition: .3s;

}

/* トップページの施工事例だけ枠線を消す */
.cases .case-card{
    border:none;
}

.case-card img {

    transition: .4s;

}

.case-card:hover {

    transform: translateY(-8px);

}

.case-card:hover img {

    transform: scale(1.08);

}

/* 「もっと見る」ボタンエリア */
.more {
    margin-top: 30px;  /* 上との余白を少し広げて読みやすく */
    text-align: center; /* 右寄せから「中央寄せ」に変更 */
}

.more a {
    color: #49c8d7;
    font-weight: bold;
    font-size: 16px;    /* クリックしやすいサイズ */
    display: inline-block;
    padding: 8px 16px; /* タップ領域を確保 */
    transition: .3s;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.more a:hover {
    letter-spacing: 2px;
    opacity: 0.8;
}

/* ===================================
   トップ_コラム(short_column)
=================================== */

.blog-list {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.blog-card {

    display: flex;

    align-items: center;

    gap: 25px;

    background: #f6ecdd;

    padding: 20px;

    transition: .3s;

}

.blog-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

}

.blog-image {

    width: 170px;

    overflow: hidden;

    flex-shrink: 0;

}

.blog-image img {

    transition: .4s;

}

.blog-card:hover img {

    transform: scale(1.08);

}

.blog-content {

    flex: 1;

}

.blog-content h3 {

    font-size: 24px;

    margin-bottom: 15px;

}

.blog-date {

    color: #666;

    margin-bottom: 8px;

}

.blog-category {

    font-size: 14px;

}

.read-more{
    text-align:right;
    margin-top:20px;
}

.read-more a{
    display:inline-block;
    color:#49c8d7;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
}

.read-more a:hover{
    letter-spacing:2px;
}

/* ===================================
   レスポンシブ
=================================== */

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

    section {

        width: 90%;
       margin: 60px auto;

    }

    .president-card {

        flex-direction: column;

        text-align: center;

    }

    .cases-list {

        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .case-card {

       width: 100%;
       flex: none;

    }

    .blog-card {

        flex-direction: column;

        text-align: center;

    }

    .blog-image {

        width: 100%;

    }

    /* コラム：スマホでは画像と文章を縦並びにして読みやすくする */
    .my-post-item {
        flex-direction: column ;
        gap: 12px ;
    }

    .my-post-thumb {
    width: 100% !important;
    max-width: 100% !important;
}

.my-post-thumb img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important; /* 施工事例と同じ縦横比に設定 */
    object-fit: cover !important;  /* 画像が歪まないように切り抜き表示 */
    border-radius: 6px;
}

    /* SNSエリア */
    /* SNSエリア：スマホでの横並び・コンパクト化（一般的な相場デザイン） */
/* SNSエリア：フッター上のコンパクトな横一列配置 */
.sns-section {
    padding: 30px 15px;
    background-color: #333; /* 背景をダーク系にする場合（不要なら消してOK） */
}

.sns-message {
    display: none; /* スマホでは見出しテキストを消してスッキリさせる場合 */
}

.sns-list {
    display: flex;
    flex-direction: row;        /* 横並び */
    justify-content: center;    /* 中央寄せ */
    align-items: center;
    gap: 16px;                  /* アイコン同士の適度な間隔 */
}

.sns-item {
    width: auto;
}

.sns-item img {
    width: 44px;                /* スマホで押しやすい標準サイズ */
    height: 44px;
    border-radius: 50%;         /* 丸型にする */
    object-fit: cover;
}

.sns-name {
    display: none;              /* 文字アカウント名は非表示にしてアイコンのみにする */
}

}

/* ==========================
   ファーストビュー
========================== */


.fv{
    width: 100%;
    margin: 0 auto;
}

.fv-inner{
	max-width: 1200px;
    width: 100%;        /* 画面幅に応じて伸縮 */
    margin: 0 auto;     /* 左右中央寄せ */
}

.fv-image img{
    display: block;
    width: 100%;
    height: auto;
}
/* ==========================
   施工事例一覧
========================== */

.cases-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.case-card{
    display:block;
    text-decoration:none;
    color:#333;
   border:2px solid #ddd; 
    transition:.3s;
}

.case-card:hover{
    transform:translateY(-5px);
}

.case-image img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
}

.case-body{
    padding:18px;
}

.case-title{
    font-size:20px;
    font-weight:bold;
    margin-bottom:10px;
}

.case-excerpt{
    font-size:14px;
    line-height:1.8;
    color:#666;
}

/* 12件で1ページ */

.pagination{
    margin-top:50px;
    text-align:center;
}

.pagination .page-numbers{
    display:inline-block;
    margin:0 5px;
    padding:10px 16px;
    border:1px solid #ddd;
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.pagination .current{
    background:#49c8d7;
    color:#fff;
    border-color:#49c8d7;
}

.pagination a:hover{
    background:#f5f5f5;
}



/* ==========================
   コラム一覧
========================== */

.column-category-title{
    font-size:24px;
    font-weight:bold;
    margin:50px 0 25px;
}

.column-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:50px;
}

/* カード全体 */
.column-card {
    display: flex;
    flex-direction: column; /* 中身（画像とテキスト）を上から下に並べる */
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.column-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,.1);
}

.column-image{
    overflow:hidden;
}

.column-image img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.column-card:hover .column-image img{
    transform:scale(1.08);
}

.column-body{
    padding:18px;
}

.column-title{
    font-size:20px;
    font-weight:bold;
    line-height:1.5;
    margin-bottom:10px;
}

.column-date{
    color:#888;
    font-size:14px;
}

/* ==========================
   コラム
========================== */

/*タイトル上のタグ*/
.article-category {
    margin-bottom: 16px;
}

.article-category a {
    display: inline-block;
    padding: 6px 14px;
    margin-right: 8px;
    border-radius: 999px;
    background: #fdbf60;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.article-category a:hover {
    opacity: .8;
}

/* 公開日・最終更新日（PC基本設定） */
.child-page .article-date {
    margin-top: 20px;
    margin-bottom: 30px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

/* スマホ表示の調整（幅に収める2行表示） */
@media screen and (max-width: 768px) {
    .child-page .article-date {
        display: flex;
        flex-direction: column; /* 縦並びにする */
        gap: 4px;              /* 行間の余白 */
        font-size: 13px;        /* スマホで見やすいサイズ */
        margin-top: 15px;
        margin-bottom: 20px;
    }
    
    /* スマホでは区切り線「｜」を隠す */
    .child-page .article-date .date-divider {
        display: none;
    }
}

/* コラム_表のデザイン */

.column-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    line-height: 1.8;
}

.column-table th,
.column-table td {
    border: 1px solid #e6e6e6;
    padding: 14px 12px;
    text-align: center;
}

.column-table thead th {
    background: #f9b44c;
    color: #fff;
    font-weight: bold;
}

.column-table tbody th {
    background: #fff8ec;
    font-weight: bold;
    width: 22%;
    text-align: left;
}

.column-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.table-wrap{
    overflow-x:auto;
}

/*見出し用（高さ固定） */

.article-img{
    margin:40px 0;
    text-align:center;
}

.article-img img{
    width:100%;
    max-width:900px;
    max-height:420px;
    object-fit:cover;
    border-radius:8px;
}

/* 全体表示用（施工写真など見切れNGの写真の設定） */
.article-img-full{
    margin:40px 0;
    text-align:center;
}

.article-img-full img{
    width:100%;
    max-width:900px;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius:8px;
}
/* コラムページの目次サイドバー */
.sidebar-nav ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-nav li{
    border-bottom:1px solid #eee;
}

.sidebar-nav li a{
    display:block;
    padding:10px 0;
    color:#333;
    text-decoration:none;
    line-height:1.6;
}

.sidebar-nav li a:hover{
    color:#ff7d27;
}

.toc-link{
    display:block;
    padding:14px 16px;
    color:#f28c28 !important;
    border-bottom:1px solid #eee;
    transition:.25s ease;
}

.toc-link:hover{
    color:#fff !important;
    background:#f28c28;
}

/* ==========================
   施工事例ページ
========================== */
.case-tags{
    margin:40px 0 20px;
}

.case-tag{
    display:inline-block;
    padding:8px 18px;
    margin-right:10px;
    margin-bottom:10px;
    border-radius:999px;
    background:#fdbf60;
    color:#fff;
    font-size:14px;
    font-weight:bold;
}

.post-date{
    margin:20px 0 30px;
    color:#777;
    font-size:14px;
}

.case-main-image{
    margin-bottom:40px;
}

.case-main-image img{
    width:100%;
    height:auto;
    display:block;
}

.case-content{
    line-height:2;
    font-size:16px;
}


/* ==========================
   トップ_SNS
========================== */

.sns-section{
    padding:80px 0;
    text-align:center;
	background-color: #fff9f0;
}

.sns-message{
    font-size:28px;
    margin:30px 0 60px;
    color:#333;
}

.sns-list{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:80px;
}

.sns-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
    transition:0.3s;
}

.sns-item img{
    width:110px;
    height:110px;
    object-fit:contain;
    transition:0.3s;
}

.sns-name{
    margin-top:18px;
    font-size:18px;
    font-weight:bold;
    color:#555;
}

.sns-item:hover{
    transform:translateY(-8px);
}

.sns-item:hover img{
    filter:drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

/* 投稿文のcss*/
/* --- 共通：文章内の蛍光ペン風マーカー --- */
.marker-yellow {
  background: linear-gradient(transparent 60%, #ffff66 60%);
  font-weight: bold;
}
.marker-red {
  background: linear-gradient(transparent 60%, #ff9999 60%);
  font-weight: bold;
}

/* --- 応急処置用：赤色の注意ボックス --- */
.box-alert {
  background-color: #fff5f5;
  border-left: 5px solid #ff4d4d;
  padding: 18px 20px;
  margin: 25px 0;
  border-radius: 0 6px 6px 0;
}
.box-alert .box-title {
  color: #cc0000;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* --- まとめ用：緑・青系の整理ボックス --- */
.box-summary {
  background-color: #c2ebed;
/*   border: 2px solid #00aaff; */
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}
.box-summary .box-title {
  color: #0077cc;
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 12px;
}

/* --- まとめ直後：お見積り案内（CTA）ボックス --- */
.box-cta {
  background-color: #fff7e6;
  border: 2px solid #ff9900;
  padding: 25px 20px;
  margin: 30px 0;
  border-radius: 8px;
  text-align: center;
}
.box-cta .cta-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #cc6600;
  margin-bottom: 10px;
}
.box-cta p {
  font-size: 0.95em;
  margin-bottom: 20px;
}
/* CTAボタン */
.btn-cta {
  background-color: #ff6600;
  color: #ffffff !important;
  font-weight: bold;
  font-size: 1.1em;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s;
}
.btn-cta:hover {
  opacity: 0.8;
}

/* --- 施工事例・個別ページの本文スタイル --- */
.case-single-content {
  width: 100% !important;
  max-width: 1000px !important; /* コラムと同じ適切な幅（800px〜1000px等） */
  margin-left: auto !important;
  margin-right: auto !important;
  border: none !important;      /* 枠線を消去 */
  padding: 0 !important;        /* 余計なカード用余白を消去 */
  background: transparent !important;
  box-sizing: border-box !important;
}

/* 本文内の各ブロックも幅100%に広げる */
.case-single-content > * {
  width: 100% !important;
  max-width: 100% !important;
}

/* 施工事例の写真コンテナ */
.case-images {
    display: flex;
    justify-content: center; /* ★中央寄せにする */
    gap: 15px;               /* 写真同士のすき間 */
    margin: 20px 0;
}

/* 各写真の枠（1枚でも2枚でも最大半分サイズに設定） */
.case-images figure,
.case-images .case-img-item {
    width: calc(50% - 7.5px); /* ★全体の半分幅（ギャップ調整込） */
    max-width: 400px;         /* ★大きくなりすぎないよう最大幅を指定 */
    margin: 0;
}

/* 画像自体の設定 */
.case-images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .case-images {
        flex-direction: column;
    }
    .case-images figure,
    .case-images .case-img-item {
        width: 100%;
        max-width: 100%;
    }
}

/* 記事本文内のリンクだけに色と下線を適用する設定 */
.article-body a,
.case-single-content a {
    color: #0066cc;            
    text-decoration: underline; 
    font-weight: bold;        
}

/* ホバー時の変化 */
.article-body a:hover,
.case-single-content a:hover {
    color: #ff7d00;           
    text-decoration: none;      
}

/* 目次内のリンクは青文字・下線を除外する */
.child-page .content-toc a {
    color: #333333;
    text-decoration: none;
}

/* 記事本文の基本文字サイズ・行間（追加） */
.child-page .article-body,
.child-page .article-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

/* ------------------------------------------
   スマホ版テーブルの横スクロール対応
   ------------------------------------------ */
.child-page .article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    white-space: nowrap; /* 文字の途中で改行させない */
}

/* スマホ表示時に表を横スクロール可能にする親要素の指定 */
@media screen and (max-width: 768px) {
    .child-page .article-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかに */
    }
}

/* サイドバーのバナー用設定 */
.sidebar-banner {
	margin-top: 30px;
    margin-bottom: 30px; /* 最新記事エリアとの余白 */
}

.sidebar-banner a {
    display: block;
    transition: opacity 0.3s ease; /* ホバー時にふわっとさせる効果 */
}

.sidebar-banner a:hover {
    opacity: 0.85; /* マウスを乗せた時に少し半透明にする */
}

.sidebar-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* 角を少し丸くしたい場合 */
}

/* -------------------------------------------
 * 関連記事エリアのデザイン
 * ------------------------------------------- */
.related-posts {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #f5b05c; /* 上部の区切り線 */
}

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

/* 3つのカードを横並びにする（スマホでは縦並び） */
.related-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.related-card {
    flex: 1;
    min-width: 220px; /* カードの最小幅 */
    border: 2px solid #f5b05c; /* オレンジ枠 */
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    text-decoration: none !important; /* リンク下線を消す */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.related-thumb {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 10px;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.related-card-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #2c4298; /* 青系のタイトル色（画像に合わせる場合） */
}

.related-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.related-cat {
    display: inline-block;
    background: #fdbb60; /* カテゴリタグのオレンジ背景 */
    color: #2c4298;
    font-weight: bold;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 15px;
}

/* ==========================================
 * コラム検索フォームのデザイン
 * ========================================== */
.column-search-area {
    max-width: 600px;
    margin: 0 auto 40px auto; /* 中央寄せ & 下に余白 */
    padding: 0 10px;
}

.column-search-form {
    display: flex;
    gap: 8px;
    width: 100%;
}

.column-search-input-wrap {
    flex: 1;
    position: relative;
}

.column-search-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

/* 入力欄にフォーカスが当たったとき（テーマカラーのオレンジに光る） */
.column-search-input:focus {
    border-color: #f5b05c;
    box-shadow: 0 0 0 3px rgba(245, 176, 92, 0.2);
}

.column-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100px;
    height: 48px;
    background-color: #f5b05c; /* テーマカラーのオレンジ */
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    flex-shrink: 0;
}

.column-search-submit:hover {
    background-color: #e49f4b; /* 少し濃いオレンジ */
}

.column-search-submit:active {
    transform: scale(0.98);
}

.search-icon {
    width: 18px;
    height: 18px;
}

/* スマホ用の微調整 */
@media screen and (max-width: 480px) {
    .column-search-input {
        font-size: 13px; /* スマホで文字が収まりやすいよう調整 */
        height: 44px;
    }
    .column-search-submit {
        width: 80px;
        height: 44px;
        font-size: 14px;
    }
    .search-icon {
        width: 16px;
        height: 16px;
    }
}

/* -------------------------------------------
 * 検索結果ページ用のスタイル
 * ------------------------------------------- */
.search-count {
    margin-bottom: 24px;
    font-size: 15px;
    color: #333;
}

.search-count strong {
    color: #f5b05c; /* ヒット件数の数字をテーマカラーに */
    font-size: 18px;
}

.search-no-result {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
}

.search-no-result p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

/* -------------------------------------------
 * カテゴリ絞り込みボタンのデザイン
 * ------------------------------------------- */
.column-category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.cat-filter-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 20px; /* 丸みのあるカプセル形状 */
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.cat-filter-btn:hover {
    background-color: #e2e2e2;
    color: #333;
}

/* アクティブ状態（現在選ばれているカテゴリ） */
.cat-filter-btn.is-active {
    background-color: #f5b05c; /* テーマカラーのオレンジ */
    color: #fff;
    border-color: #f5b05c;
}

/* -------------------------------------------
 * 検索クリアボタンのスタイル
 * ------------------------------------------- */
.column-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 48px;
    background-color: #888; /* 落ち着いたグレー */
    color: #fff !important;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.1s;
    flex-shrink: 0;
}

.column-search-clear:hover {
    background-color: #666;
}

.column-search-clear:active {
    transform: scale(0.98);
}

/* スマホ用サイズ調整 */
@media screen and (max-width: 480px) {
    .column-search-clear {
        padding: 0 10px;
        height: 44px;
        font-size: 12px;
    }
}

/* ==========================================
 * 施工事例 検索フォームのデザイン
 * ========================================== */
.case-search-area {
    max-width: 600px;
    margin: 0 auto 40px auto;
    padding: 0 10px;
}

.case-search-form {
    display: flex;
    gap: 8px;
    width: 100%;
}

.case-search-input-wrap {
    flex: 1;
    position: relative;
}

.case-search-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* 入力欄フォーカス時 */
.case-search-input:focus {
    border-color: #f5b05c;
    box-shadow: 0 0 0 3px rgba(245, 176, 92, 0.2);
}

/* 検索ボタン */
.case-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100px;
    height: 48px;
    background-color: #f5b05c; /* テーマカラーのオレンジ */
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s, transform 0.1s;
}

.case-search-submit:hover {
    background-color: #e49f4b;
}

.case-search-submit:active {
    transform: scale(0.98);
}

/* クリアボタン */
.case-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 48px;
    background-color: #888; /* 落ち着いたグレー */
    color: #fff !important;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.1s;
}

.case-search-clear:hover {
    background-color: #666;
}

.case-search-clear:active {
    transform: scale(0.98);
}

/* 虫眼鏡アイコン */
.search-icon {
    width: 18px;
    height: 18px;
}

/* スマホ用調整 */
@media screen and (max-width: 480px) {
    .case-search-input {
        font-size: 13px;
        height: 44px;
    }
    .case-search-submit {
        width: 80px;
        height: 44px;
        font-size: 14px;
    }
    .case-search-clear {
        padding: 0 10px;
        height: 44px;
        font-size: 12px;
    }
    .search-icon {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
 * 筆者プロフィール（社長）のスタイル調整
 * ========================================== */

/* 画像とお名前を縦に並べて中央揃えにする設定 */
.president-image {
    text-align: center;
    flex-shrink: 0;
}

/* 丸型画像の配置と余白 */
.president-image img {
    margin-bottom: 10px; /* 画像とお名前の間のすき間 */
}

/* 社長のお名前スタイル */
.president-name {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* スマホ表示での中央寄せ（必要に応じて） */
@media screen and (max-width: 600px) {
    .president-name {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* ==========================================
 * トップページ
 * ========================================== */

/* 例：施工事例セクション（シームレスな柄画像を繰り返す場合） */
.cases-section {
    background-image: url('images/bg-pattern.png'); /* 小さいパターン画像 */
    background-repeat: repeat; /* 上下左右に繰り返し敷き詰める */
    padding: 60px 0;
}


.sns-section {
    /* 水色系のストライプ柄 */
    background: repeating-linear-gradient(
        -45deg,
        #f0fcfd,
        #f0fcfd 10px,
        #ffffff 10px,
        #ffffff 20px
    );
    padding: 60px 0;
}


.blog-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* ほんのり影をつける */
    margin-bottom: 16px;
}


/* スマホ・タブレット表示時の横幅潰れ防止 */
/* ===================================
   スマホ版：細長さ・枠縮みの強制解除
=================================== */
@media screen and (max-width: 1024px) {

    /* 1. ページ全体・メイン枠の幅制限を解除 */
    .main,
    .main-content,
    .child-page,
    .president,
    .president-section {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    /* 2. プロフィールカード自体の幅と横並びを完全に解体 */
    .president-card {
        display: flex !important;
        flex-direction: column !important; /* 写真と文章を上下縦並びに */
        width: 100% !important;            /* 横幅を画面いっぱいに */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px 15px !important;
        margin: 0 auto !important;
    }

    /* 3. 中の写真エリアとテキストエリアの幅固定を解除 */
    .president-image {
        width: 130px !important;           /* 顔写真のエリアだけ適切な幅に固定 */
        max-width: 100% !important;
        margin: 0 auto 15px auto !important;/* 中央寄せ */
    }


/* スマホ・タブレット時の child-page 幅制限解除 */
@media screen and (max-width: 1024px) {
    .child-page {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
}
}
/* ===================================
   スマホ版：child-pageの幅拡張と縦並び化
=================================== */
@media screen and (max-width: 1024px) {

    /* 1. 親枠（main）の横並びを解除 */
    .main {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    /* 2. 細長くなる原因の child-page を幅100%に拡張 */
    .child-page {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    /* 3. プロフィールカード枠を100%に広げて縦並びに */
    .president-card {
        display: flex !important;
        flex-direction: column !important; /* 写真と文章を上下に並べる */
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 16px !important;
        box-sizing: border-box !important;
    }

    .president-image {
        width: 140px !important;
        margin: 0 auto 16px auto !important;
    }

}

/* スマホ表示時のメイン幅拡張 */
@media screen and (max-width: 1024px) {
    .main,
    .child-page {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
}
		
		/* ===================================
   ヘッダー基本構造（PC版）
=================================== */
.header {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

/* ヘッダー上部（ロゴ・タイトル・電話・ボタン） */
/* 1. ヘッダー上部全体：横幅が足りない時は折り返せるようにする */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* 横幅が足りなくなったら下へ送る */
    gap: 12px;
}

/* 2. 左側ブロック（ロゴ＋タイトル）：絶対につぶれない設定 */
.header-top-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0; /* ★右側に押されて28px等に潰されるのを強力に防止 */
}

/* タイトルテキスト */
.header-top-left-text {
    font-size: 16px;
    font-weight: bold;
    color: #f56828;
    white-space: nowrap; /* 一行表示 */
    margin: 0;
}

/* 3. 右側ブロック（電話＋ボタン）：幅を取りすぎないように折り返しを許可 */
.header-top-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* 4. スマホ・タブレット表示（1024px以下）で左右の衝突を完全回避 */
@media screen and (max-width: 1024px) {
    .header-top {
        flex-direction: column; /* 上下に分けることで横幅の奪い合いを解消 */
        align-items: center;
    }

    .header-top-left {
        flex-direction: column; /* ロゴとタイトルを中央揃えの縦並びに */
        align-items: center;
    }

    .header-top-left-text {
        white-space: normal; /* スマホでは画面幅に合わせて自然に折り返す */
        text-align: center;
        font-size: 14px;
    }
}

.header-logo img {
    width: 150px;
    height: auto;
}


@media screen and (max-width: 1024px) {
    .header-top {
        flex-direction: column; /* 上下に分けることで横幅の奪い合いを解消 */
        align-items: center;
    }
}

.header-top-right-btn {
    display: flex;
    gap: 10px;
}

.header-top-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.header-top-first-btn {
    background-color: #61D7DC; /* 水色 */
}

.header-top-second-btn {
    background-color: #12d65c; /* グリーン */
}

/* ヘッダーナビゲーション */
.header-bottom {
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.header-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.header-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-item a {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

/* PC表示ではスマホ用追従ボタンを完全に非表示にする */
.sp-follow {
    display: none;
}

/* ===================================
   スマホ表示時のヘッダー要素引き算（ボタン・テキスト非表示）
=================================== */
@media screen and (max-width: 1024px) {

    /* 1. スマホでは不要な「タイトルテキスト」と「ヘッダー内ボタン」を非表示 */
    .header-top-left-text,
    .header-top-right-btn {
        display: none !important;
    }

    /* 2. ヘッダー上部エリアのレイアウト調整 */
    .header-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 12px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 3. 左側（ロゴ）の幅確保 */
    .header-top-left {
        width: auto !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .header-top-left a img,
    .header-logo img {
        width: 130px !important; /* スマホ用ロゴサイズ */
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }

    /* 4. 右側（電話番号）の幅確保 */
    .header-top-right {
        width: auto !important;
        display: flex !important;
        align-items: center !important;
    }

    .header-top-right-img img {
        width: 150px !important; /* スマホ用電話番号サイズ */
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }
}
	
/* ===================================
   PCは表示・スマホ時のみタイトルとボタンを非表示
=================================== */

/* PC表示（1025px以上）では強制表示 */
@media screen and (min-width: 1025px) {
    .header-top-left-text {
        display: block !important;
    }
    .header-top-right-btn {
        display: flex !important;
    }
}

/* スマホ表示（1024px以下）のみ非表示にして収める */
@media screen and (max-width: 1024px) {
    .header-top-left-text,
    .header-top-right-btn {
        display: none !important;
    }

    .header-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 12px !important;
    }

    .header-top-left a img,
    .header-logo img {
        width: 130px !important;
        height: auto !important;
    }

    .header-top-right-img img {
        width: 150px !important;
        height: auto !important;
    }
}
	
	
/* mainの外に出したFVを1200px中央寄せにする */
.fv-outer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
}


/* ===================================
   スマホ版：コラム・施工事例一覧の縦並び化（CSS Grid解除版）
=================================== */
@media screen and (max-width: 768px) {

    /* 1. 親枠の Grid 指定（3列）を解除して 1列 に変更 */
    body .column-grid,
    body .case-grid,
    body .column-list,
    body .case-list {
        display: grid !important;
        grid-template-columns: 1fr !important; /* スマホでは強制的に「1列」にする */
        gap: 24px !important;                  /* カード同士の縦の隙間 */
        padding: 0 15px !important;
    }

    /* 2. カード全体の枠（aタグ）の幅を広げる */
    body .column-card,
    body .case-card {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;             /* 縦並び構造にする */
        box-sizing: border-box !important;
        margin-bottom: 10px !important;
    }

    /* 3. カード内の画像サイズを整える */
    body .column-image,
    body .case-image,
    body .column-card img,
    body .case-card img {
        width: 100% !important;
        height: auto !important;
        max-height: 220px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    /* 4. カード内のテキストエリアとタイトル */
    body .column-body,
    body .case-body {
        width: 100% !important;
        padding: 12px 5px !important;
        box-sizing: border-box !important;
    }

    body .column-body h3,
    body .case-body h3,
    body .column-body .title,
    body .case-body .title {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin: 8px 0 !important;
    }
}

/* ===================================
   スマホ版：施工事例一覧の縦並び化
=================================== */
@media screen and (max-width: 768px) {

    /* 親枠の Grid を 1列 に変更 */
    body .cases-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 15px;
    }

    /* カード幅を100%に広げる */
    body .case-card {
        width: 100%;
        max-width: 100%;
        display: block;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    /* カード内の画像サイズ調整 */
    body .case-image,
    body .case-card img {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: cover;
        border-radius: 8px;
    }

    /* テキストエリアとタイトルの調整 */
    body .case-body {
        width: 100%;
        padding: 12px 5px;
        box-sizing: border-box;
    }

    body .case-body h3,
    body .case-body .title {
        font-size: 16px;
        line-height: 1.6;
        margin: 8px 0;
    }
}



/* 本文内目次の基本スタイル */
/* ==========================================
   本文内目次：薄グレー角丸ボックスデザイン
   ========================================== */

.child-page .content-toc {
    background-color: #f8f9fa; /* 薄グレー背景 */
    border: 1px solid #e9ecef; /* 落ち着いた枠線 */
    border-radius: 8px;        /* 滑らかな角丸 */
    padding: 24px 30px;
    margin: 30px 0;
    box-sizing: border-box;
}

/* 目次タイトル（中央揃え） */
.child-page .content-toc .toc-title {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    margin: 0 0 20px 0;
    padding-bottom: 0;
    border: none;
    line-height: 1.4;
}

/* 目次リスト */
.child-page .content-toc .toc-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

/* li側の余白と枠線をリセット（二重線防止） */
.child-page .content-toc .toc-list li {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* リンクテキスト（下線をaタグ側に一元化） */
.child-page .content-toc .toc-list a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.6;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef; /* ここに線を一本化 */
    transition: color 0.2s ease;
}

/* 最後の項目の下線だけ消す */
.child-page .content-toc .toc-list li:last-child a {
    border-bottom: none;
}

/* ホバー時にメインカラーへ */
.child-page .content-toc .toc-list a:hover {
    color: #49c8d7;
}

/* スマホ表示時のサイドバー整理 */
@media (max-width: 768px) {
    /* スマホではサイドバー内の最新記事・カテゴリーを非表示 */
    .sidebar-block {
        display: none !important;
    }
}

/* ===================================
   PCヘッダーナビ＆ドロップダウンメニュー
=================================== */

/* メニューバー全体の背景色 */
.header-bottom {
    background-color: #fdbf60;
}

/* メニュー項目全体の並び（親要素） */
.header-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 親メニューの文字スタイル（HOME、施工事例、コラム等） */
.header-item a {
    display: block;
    padding: 14px 24px;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.header-item a:hover {
    background-color: #004999; /* ホバー時の濃い青 */
}

/* --- ドロップダウン制御（nav-dropdown-menu） --- */

/* 1. 親要素の基準位置 */
.header-nav .nav-dropdown {
    position: relative;
}

/* 2. 子メニューの初期化（非表示・浮遊化） */
.header-nav .nav-dropdown .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 1000;
}

/* 3. ホバー時のみ子メニューを表示 */
.header-nav .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

/* 4. 子メニューの中身の配置・レイアウト調整 */
.header-nav .nav-dropdown .nav-dropdown-menu li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eeeeee;
}

.header-nav .nav-dropdown .nav-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    height: auto;
    color: #333333;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
    background-color: #ffffff;
}

.header-nav .nav-dropdown .nav-dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}


/* ==========================================
   パンくずリスト（PC・スマホ共通デザイン）
   ========================================== */
.child-page .breadcrumbs {
    font-size: 13px;
    color: #666666;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.child-page .breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
    white-space: nowrap;
}

.child-page .breadcrumbs a:hover {
    text-decoration: underline;
}

.child-page .breadcrumbs .sep {
    margin: 0 6px;
    color: #999999;
}

/* 記事タイトル */
.child-page .breadcrumbs .breadcrumb-current {
    color: #333333;
    font-weight: bold;
    background: none;      /* 背景のオレンジバッジを無効化 */
    border-radius: 0;
    padding: 0;
    font-size: 13px;       /* 20pxから通常の文字サイズへ固定 */
    max-width: 200px;      /* スマホ時の見切れ防止 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

@media screen and (min-width: 769px) {
    .child-page .breadcrumbs .breadcrumb-current {
        max-width: 400px;  /* PC時の横幅 */
    }
}

/* ===================================
   PCヘッダーナビ＆ドロップダウンメニュー
=================================== */

/* メニューバー全体の背景色 */
.header-bottom {
    background-color: #fdbf60;
}

/* メニュー項目全体の並び（親要素） */
.header-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 親メニューの文字スタイル（HOME、施工事例、コラム等） */
.header-item a {
    display: block;
    padding: 14px 24px;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.header-item a:hover {
    background-color: #61d7dc; /* ホバー時の濃い青 */
}

/* --- ドロップダウン制御（nav-dropdown-menu） --- */

/* 1. 親要素の基準位置 */
.header-nav .nav-dropdown {
    position: relative;
}

/* 2. 子メニューの初期化（非表示・浮遊化） */
.header-nav .nav-dropdown .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 1000;
}

/* 3. ホバー時のみ子メニューを表示 */
.header-nav .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

/* 4. 子メニューの中身の配置・レイアウト調整 */
.header-nav .nav-dropdown .nav-dropdown-menu li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eeeeee;
}

.header-nav .nav-dropdown .nav-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    height: auto;
    color: #333333;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
    background-color: #ffffff;
}

.header-nav .nav-dropdown .nav-dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}


