@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}
p,
img{
    display: block;
}
p{
    font-weight: 600;
}
img{
    width: 100%;
    object-fit: contain;
}
ul{
    list-style: none;
}

.wrapper{
    margin: 0 auto;
    overflow: hidden;
}

header{
    padding: 7px 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
header>div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
header>div>img,
header>div>a{
    display: block;
    width: 48.5%;
}

.fv{
    margin-top: 3px;
}

.campaign{
    background-color: #43a8e0;
}
.campaign .ttl{
    margin: 0 auto 15px;
}
.campaign h2{
    text-align: center;
    font-weight: 600;
    font-size: 21px;
    white-space: nowrap;
    background-color: #ffff00;
    color: #004da0;
}
.campaign_tab{
    text-align: center;
}
.campaign_tab input[name="tab_item"] {
    display: none;
}
.campaign_tab label{
    display: inline-block;
    width: 48%;
    margin: 0 0.3%;
    opacity: 0.6;
    position: relative;
    z-index: 0;
}
.campaign_tab .tab_inner{
    display: none;
}
.campaign_tab input[name="tab_item"]:checked+label{
    opacity: 1;
    z-index: 2;
}
#noritz:checked ~ #noritz_content,
#rinnai:checked ~ #rinnai_content{
    display: block;
}
.campaign_slider_wrapper{
    border-top: 3px solid #004da0;
    border-bottom: 3px solid #004da0;
    margin-top: -8px;
    position: relative;
    z-index: 1;
    background-color: #c6def1;
}
.campaign_slider{
    overflow: visible;
}
.campaign_slider .swiper-pagination{
    bottom: 7%;
    left: -55px;
    z-index: 5;
}
.campaign_slider .swiper-pagination-bullet{
    border-radius: 0;
    width: 50px;
    height: 4px;
    background-color: #0b73e0;
}
.campaign_slider .swiper-button-prev,
.campaign_slider .swiper-button-next{
    top: auto;
    left: auto;
    bottom: 4%;
}
.campaign_slider .swiper-button-prev{
    right: 75px;
}
.campaign_slider .swiper-button-next{
    right: 25px;
}
.campaign_slider .swiper-button-prev:after,
.campaign_slider .swiper-button-next:after{
    font-family: 'Noto Sans JP', sans-serif;
    transform: scale(0.5);
}
.campaign_slider .swiper-button-prev:after{
    content: url('../img/campaign_prev.png');
}
.campaign_slider .swiper-button-next:after{
    content: url('../img/campaign_next.png');
}
.campaign_child{
    position: relative;
}
.campaign_child>a{
    position: absolute;
    display: block;
    width: 92%;
    left: 4%;
    bottom: 16%;
}

.more_benefits{
    padding: 10px 10px 25px;
    background: linear-gradient(to bottom, #43a8e0 0%, #0b73e0 100%);
}

.cta{
    position: relative;
}
.cta a{
    display: block;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}
.cta .tel,
.cta .line_mail{
    position: absolute;
    left: 2%;
    right: 2%;
    overflow: hidden;
}
.cta .tel::before{
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny 4s ease-in-out infinite;
    pointer-events: none;
}
@-webkit-keyframes shiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
.cta .tel{
    top: 32%;
}
.cta .line_mail{
    bottom: 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cta .line_mail a{
    width: 49%;
}

/* common */
.voice,
.area,
.products,
.flow{
    padding: 30px 0 40px;
}
.voice .ttl,
.area .ttl,
.products .ttl,
.flow .ttl{
    text-align: center;
}
.voice .ttl img,
.area .ttl img,
.products .ttl img,
.flow .ttl img{
    width: 45%;
    margin: 0 auto;
}
.voice .ttl h2,
.area .ttl h2,
.products .ttl h2,
.flow .ttl h2{
    color: #004da0;
    font-weight: 700;
    font-size: 38px;
    margin: 5px auto;
}
.products .ttl h2{
    color: #fff;
}
/* common */
.voice{
    padding: 30px 0 40px;
    background-color: #dff4ff;
}
.voice .ttl{
    text-align: center;
}
.voice mark{
    background: linear-gradient(to bottom, rgba(255,255,0,0) 50%, rgba(255,255,0,1) 100%);
}
.voice .lead,
.voice_slider_wrapper+p{
    font-size: 17px;
    font-weight: 700;
}
.voice_slider_wrapper{
    margin: 25px auto 10px;
}
.voice_slider_wrapper+p{
    text-align: center;
}
.voice_slider{
    padding-bottom: 15px;
}
.voice_child{
    border-radius: 10px;
    border: 2px solid #0b73e0;
    background-color: #fff;
    padding: 15px 0;
}
.voice_child .voice_ttl{
    display: flex;
    align-items: flex-end;
    padding: 0 15px;
}
.voice_child .voice_ttl img{
    width: 24%;
    margin-right: 5%;
}
.voice_child .voice_ttl h4{
    color: #0b73e0;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 5px;
}
.voice_child .voice_ttl p{
    font-size: 15px;
}
.voice_child .ba{
    margin: 15px 0 10px;
}
.voice_child .voice_txt{
    padding: 0 10px;
    text-align: justify;
    font-size: 15px;
    font-weight: 500;
}
.voice_child{
    opacity: 0.5;
}
.voice_child.swiper-slide-active{
    opacity: 1;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}
.voice_slider .swiper-button-prev,
.voice_slider .swiper-button-next{
    top: 40%;
}
.voice_slider .swiper-button-prev{
    left: 1%;
}
.voice_slider .swiper-button-next{
    right: 1%;
}
.voice_slider .swiper-button-prev::after,
.voice_slider .swiper-button-next::after{
    font-family: 'Noto Sans JP', sans-serif;
    transform: scaleX(0.5);
    font-size: 36px;
}
.voice_slider .swiper-button-prev::after{
    content: '◀';
}
.voice_slider .swiper-button-next::after{
    content: '▶';
}

.area{
    padding-bottom: 0;
}
.area_content{
    margin-top: 20px;
}

.products{
    padding-top: 12px;
    position: relative;
    background-color: #004da0;
}
.products .ttl{
    position: relative;
    z-index: 1;
    color: #fff;
}
.products .ttl_bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
}
.products_list{
    margin: 20px 0 0;
}
.product_box{
    position: relative;
    border: 8px solid #004da0;
}
.product_box>a{
    position: absolute;
    display: block;
    width: 92%;
    left: 4%;
    bottom: 2.5%;
}

.flow{
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}
.flow_flex{
    width: 96%;
    margin: 20px auto 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.flow_flex .icon{
    width: 22%;
    margin-top: 15px;
}
.flow_flex .txt{
    width: 76%;
}
.flow_flex .txt p{
    margin: 7px 0 15px;
    padding: 5px 13px 15px;
    border-radius: 15px;
    background-color: #f2f2f2;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    font-size: 14px;
    text-align: justify;
    font-weight: 500;
}
.flow_list{
    width: 96%;
    margin: 0 auto;
}

.message{
    text-align: center;
    background-image: url('../img/message_bg_sp.jpg');
    background-size: cover;
    padding-bottom: 40px;
}
.message h2{
    background-color: #004da0;
    padding: 12px 0;
    color: #fff;
    font-weight: 700;
    font-size: 38px;
}
.message p{
    font-weight: 500;
    margin-top: 25px;
    font-size: 14.5px;
    line-height: 1.5;
}

.follow_area{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    padding: 10px 0;
    z-index: 10;
}
.follow_area p{
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
}
.follow_area .btn_area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
.follow_area .btn_area>a{
    display: block;
    width: 19.5%;
}
.follow_area .btn_area>a:last-child{
    width: 57%;
}

footer{
    background-color: #dff4ff;
    padding-top: 15px;
}
footer .footer_inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 96%;
    margin: 0 auto;
}
footer .footer_inner>img{
    width: 30%;
}
footer .footer_inner>div{
    width: 65%;
}
footer .footer_inner>div p{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
}
footer .footer_inner>div p img{
    display: inline-block;
    width: 12px;
    margin-right: 5px;
    vertical-align: middle;
}
footer .footer_inner>div p:last-child{
    text-align: right;
}
footer .footer_inner>div p a{
    color: #000;
}
footer .footer_end{
    background-color: #000;
    color: #fff;
    font-size: 10px;
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
}

.privacy{
    width: 95%;
    margin: 80px auto 0;
}
.privacy h2{
    color: #0b73e0;
    font-size: 22px;
    text-align: center;
}
.privacy p{
    margin: 15px auto;
    font-weight: 400;
    text-align: justify;
    font-size: 15px;
}
.privacy p.tal{
    text-align: left;
}

.cv_page h2{
    text-align: center;
    margin: 30px auto 15px;
    font-size: 30px;
    color: #004da0;
}
.cv_page .lead{
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}
.cv_page .toTop{
    margin: 20px auto;
    text-align: center;
}
.cv_page .line{
    display: block;
    width: 95%;
    margin: 10px auto 20px;
}
.step_img{
    margin: 10px auto;
}

#b-away {
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}
#b-away .b-away_bg{
    z-index: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#b-away.active {
    display: block;
}
#b-away .breakaway_inner {
    margin: 0 auto;
    position: relative;
    top: 19%;
    width: 90%;
    z-index: 1;
}
#b-away .breakaway_inner a{
    position: absolute;
    display: block;
    bottom: 2%;
    left: 2%;
    right: 2%;
}
#b-away .breakaway_inner .close_btn {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    position: absolute;
    right: -17px;
    top: -20px;
}


.sp,
.pc{
    display: none;
}
@media screen and (max-width: 768px){
    .sp{
        display: block;
    }
}
@media screen and (min-width: 769px){
    .pc{
        display: block;
    }
    .follow_area .btn_area{
        max-width: 1000px;
        margin: 0 auto;
    }
    .follow_area .btn_area>a:nth-child(1),
    .follow_area .btn_area>a:nth-child(2){
        width: 32%;
    }
    .follow_area .btn_area>a:nth-child(3){
        width: 34%;
    }
    #b-away .breakaway_inner{
        top: 16%;
        width: 32%;
    }
    header>div{
        max-width: 1000px;
        align-items: center;
    }
    header>div>img{
        width: 28%;
    }
    header>div>a{
        width: 30%;
    }
    #fv{
        margin-top: -10px;
    }
    .campaign_tab{
        max-width: 800px;
        margin: 0 auto;
        position: relative;
    }
    .campaign_slider_wrapper{
        border: 3px solid #004da0;
        overflow: hidden;
    }
    .campaign_child>a{
        width: 80%;
        left: 10%;
    }
    .campaign_slider .swiper-pagination{
        bottom: 8%;
        left: -17%;
    }
    .campaign_slider .swiper-pagination-bullet{
        width: 100px;
    }
    .campaign_slider .swiper-button-prev,
    .campaign_slider .swiper-button-next{
        bottom: 5%;
    }
    .campaign_slider .swiper-button-prev{
        right: 29%;
    }
    .campaign_slider .swiper-button-next{
        right: 20%;
    }
    .campaign_slider .swiper-button-prev:after,
    .campaign_slider .swiper-button-next:after{
        transform: scale(0.7);
    }
    .campaign_lady{
        position: absolute;
        width: 25%;
        bottom: 0;
        right: -15%;
        z-index: 2;
    }
    .more_benefits{
        padding-bottom: 50px;
    }
    .more_benefits>img{
        max-width: 800px;
        margin: 0 auto;
    }
    .cta .tel{
        width: 40%;
        left: 30%;
        top: 29%;
    }
    .cta .line_mail{
        width: 46%;
        left: 27%;
        bottom: 10%;
    }
    .voice .ttl img,
    .area .ttl img,
    .products .ttl img,
    .flow .ttl img{
        width: 20%;
        margin: 0 auto;
    }
    .voice{
        padding: 60px 0;
    }
    .voice_slider{
        overflow: visible;
    }
    .voice_child .voice_ttl img{
        width: 20%;
    }
    .voice_child .voice_txt{
        padding: 10px;
    }
    .voice_slider .swiper-button-next{
        right: 25%;
    }
    .voice_slider .swiper-button-prev{
        left: 25%;
    }
    .voice .lead,
    .voice_slider_wrapper+p{
        font-size: 20px;
    }
    .products_list{
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px auto;
    }
    .products_list .product_box{
        width: 24.5%;
        border: none;
        margin-bottom: 10px;
    }
    .discount{
        background-color: #dff4ff;
        padding: 50px 0;
    }
    .discount>img{
        max-width: 750px;
        width: 95%;
        margin: 0 auto;
    }
    .flow_flex{
        max-width: 800px;
    }
    .flow_flex .icon{
        width: 10%;
        margin-top: 10px;
    }
    .flow_flex .txt{
        width: 88%;
    }
    .flow_flex .txt p{
        padding: 15px;
    }
    .message p{
        margin-top: 15px;
    }
    .message h2{
        margin-bottom: 40px;
    }
    footer .footer_inner{
        max-width: 800px;
    }
}