@charset "UTF-8";
/*-----------------------
　　レイアウト共通
-------------------------*/
main {
  margin-top: 120px;
}
.l-sec-wrap{
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
}
.l-sec {
    padding: 80px 0 100px;
}
.l-inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.u-flex {
    display: flex;
}
.u-sp {
    display: none;
}

.bg-gray{
    background: #ebedf2;
}
.bg-blue{
    background: #e4f8fb;
}
.txt-blue{
    color: #00a6cf;
}
.txt-cobalt{
    color: #2a5be8;
}
.txt-navy{
    color: #103190;
}
.txt-orange{
    color: #f76710;
}
a:hover{
    opacity: 0.5;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    main {
        margin-top: 70px;
    }
    .l-sec {
        padding: 60px 0 60px;
    }
    .u-sp {
        display: block;
    }
}

/*-----------------------
　　見出し共通
-------------------------*/
.p-sec__commonTitle {
    width: 100%;
    margin: 0 auto 40px;
    padding-bottom: 20px;
    color: #2a5be8;
    font-size: 4.2rem;
    font-weight: bold;
    text-align: center;
    position: relative;
}
.p-sec__commonTitle.txt-blue{
    color: #00a6cf;
}
.p-sec__commonTitle::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #f76710;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .p-sec__commonTitle {
        width: 90%;
        font-size: 3.2rem;
    }
}

/*-----------------------
　　header
-------------------------*/
.p-header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.p-header__inner{
    width: 90%;
    padding: 10px 0 7px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-header__logo {
    width: 20%;
    max-width: 255px;
}
.p-header__rbox{
    width: calc((100% - 260px) - 30px);
    max-width: 875px;
}
ul.p-header__rbox__btnwrap,ul.p-header__rbox__infowrap{
    display: flex;
    justify-content: flex-end;
}
ul.p-header__rbox__infowrap{
    margin-top: 10px;
}

ul.p-header__rbox__btnwrap li a img{
    display: block;
    width: auto;
    max-height: 42px;
}
ul.p-header__rbox__btnwrap li:not(:first-child){
    margin-left: 10px;
}

ul.p-header__rbox__infowrap{
    margin-top: 10px;
}

ul.p-header__rbox__infowrap li a img{
    display: block;
    max-height: 52px;
}
ul.p-header__rbox__infowrap li:not(:first-child){
    margin-left: 5px;
}
ul.p-header__rbox__infowrap li:last-child{
    margin-right: -5px;
}

@media screen and (max-width: 767px) {
    .p-header__inner{
        width: 96%;
        height: 70px;
        padding: 0 0 0;
        margin-left: 4%;
    }
    .p-header__logo {
        width: 45%;
        max-width: 45%;
    }
    .p-header__rbox{
        width: 50%;
        max-width: 50%;
    }
    ul.p-header__rbox__infowrap{
        display: none;
    }
    ul.p-header__rbox__btnwrap li a img{
        display: block;
        width: 70px;
        height: 70px;
        max-height: 70px;
    }
    ul.p-header__rbox__btnwrap li:not(:first-child){
        margin-left: 1px;
    }
}

/*-----------------------
　　CTA
-------------------------*/
.p-cta {
}
.p-cta__ttl {
    padding: 20px 0;
    font-size: 3.8rem;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    background: #2a5be8;
}
.p-cta__ttl span{
    display: inline-block;
    padding: 0 8px;
    font-size: 5rem;
    color: #eaff00;
}
.p-cta__box {
    padding: 20px 0;
    background: #eef4fd;
}
.p-cta__box .l-inner{
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-cta__box p.p-cta__box-img{
    max-width: 23%;
    margin-right: 10px;
}
.p-cta__box ul.p-cta__box-btn{
    display: flex;
    align-items: center;
}
.p-cta__box ul.p-cta__box-btn li{
    margin-left: 10px;
}
.p-cta__box ul.p-cta__box-btn li img{
    height: 8vw;
    max-height: 103px;
}
@media screen and (max-width: 767px) {
    .p-cta__ttl {
        padding: 20px 0;
        font-size: 3.2rem;
        line-height: 1.5;
    }
    .p-cta__ttl span{
        font-size: 4rem;
    }
    .p-cta__box .l-inner{
        display: block;
    }
    .p-cta__box p.p-cta__box-img{
        max-width: 50%;
        margin: 0 auto 20px;
    }
    .p-cta__box ul.p-cta__box-btn{
        display: block;
    }
    .p-cta__box ul.p-cta__box-btn li{
        margin-left: 0;
    }
    .p-cta__box ul.p-cta__box-btn li img{
        width: 100%;
        height: auto;
        max-height: auto;
    }
}

/*-----------------------
　　SP版footer追従
-------------------------*/
.p-cta__aside {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5000;
}

/*-----------------------
　　footer
-------------------------*/
.p-footer{
    background: #103190;
}
.p-footer__inner {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-footer__inner h2{
    max-width: 350px;
}
.p-footer__navItems {
    text-align: right;
}
.p-footer__navItem:not(:last-child) {
    margin-bottom: 20px;
}
.p-footer__navItem a{
    font-size: 1.5rem;
    color: #FFF;
}
.p-footer__copyright {
    padding: 10px 0;
    font-size: 1.2rem;
    background: #2a5be8;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .p-footer__inner {
        display: block;
    }
    .p-footer__navItems{
        margin-top: 40px;
    }
    .p-footer__copyright {
        font-size: 1.4rem;
    }
}


/*-----------------------
　　MV
-------------------------*/
.p-mv {
    width: 100%;
    margin: 0 auto;
}

/*-----------------------
　　MV下
-------------------------*/
.p-sec-point__txt{
    margin: 8px auto;
    font-size: 1.2rem;
}

/*-----------------------
　　3つの理由
-------------------------*/
.p-sec-reason__ttl-sub{
    max-width: 300px;
    margin: 0 auto 10px;
}
h2.p-sec-reason__ttl{
    display: flex;
    justify-content: center;
    align-items: center;
}
h2 p.p-sec-reason__ttl-txt{
    margin-right: 20px;
    font-size: 4.2rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: right;
    color: #363636;
}
h2 p span{
    display: inline;
    color: #00a6cf;
}
h2 p.p-sec-reason__ttl-img{
    width: 315px;
}
.p-sec-reason__description {
    margin: 40px auto 70px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.p-sec-reason__description span{
    color: #00a6cf;
}

ul.p-sec-reason__list{
    display: flex;
    justify-content: space-between;
}
ul.p-sec-reason__list li{
    width: calc((100% - 60px)/3);
    padding: 50px 0 30px;
    background: #FFF;
    position: relative;
}
ul.p-sec-reason__list li .p-sec-reason__list-num{
    width: 60px;
    position: absolute;
    top: -30px;
    left:calc((100% - 60px)/2);
}
ul.p-sec-reason__list li .p-sec-reason__list-img{
    width: 100%;
    margin: 15px auto 20px;
}
ul.p-sec-reason__list li .p-sec-reason__list-ttl{
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    color: #00a6cf;
}
ul.p-sec-reason__list li .p-sec-reason__list-txt{
    padding: 0 25px;
    font-weight: 500;
}
ul.p-sec-reason__list li .p-sec-reason__list-txt span{
    color: #ea5015;
}
.p-sec-reason__caution{
    margin: 15px auto 0;
    font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
    .p-sec-reason__ttl-sub{
        width: 75%;
        max-width: 75%;
    }
    h2.p-sec-reason__ttl{
        display: block;
    }
    h2 p.p-sec-reason__ttl-txt{
        width: 90%;
        margin: 0 auto;
        font-size: 3.0rem;
        text-align: center;
    }
    h2 p.p-sec-reason__ttl-img{
        width: 56%;
        margin: 0 auto;
    }
    ul.p-sec-reason__list{
        display: block;
    }
    ul.p-sec-reason__list li{
        width: 100%;
    }
    ul.p-sec-reason__list li:not(:last-child){
        margin-bottom: 50px;
    }
    ul.p-sec-reason__list li .p-sec-reason__list-ttl{
        font-size: 2.4rem;
    }
    ul.p-sec-reason__list li .p-sec-reason__list-txt{
        font-size: 1.8rem;
    }
}


/*-----------------------
　　アンカーリンク
-------------------------*/
.p-sec-anchor.l-sec{
    padding-bottom: 40px;
}
.p-sec-anchor .p-sec-anchor__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
li.p-sec-anchor__list_btn01,
li.p-sec-anchor__list_btn02{
    width: calc((100% - 20px)/2);
    margin-bottom: 30px;
}
li.p-sec-anchor__list_btn03,
li.p-sec-anchor__list_btn04,
li.p-sec-anchor__list_btn05,
li.p-sec-anchor__list_btn06{
    width: calc((100% - 60px)/4);
}

.p-sec-anchor__list li .p-sec-anchor__list-img{
    margin: 0 auto 10px;
}
li.p-sec-anchor__list_btn01 .p-sec-anchor__list-img,
li.p-sec-anchor__list_btn02 .p-sec-anchor__list-img{
    width: 90px;
}
li.p-sec-anchor__list_btn03 .p-sec-anchor__list-img,
li.p-sec-anchor__list_btn04 .p-sec-anchor__list-img,
li.p-sec-anchor__list_btn05 .p-sec-anchor__list-img,
li.p-sec-anchor__list_btn06 .p-sec-anchor__list-img{
    width: 70px;
}

.p-sec-anchor__list li a{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    color: #2a5be8;
    border: 1px solid #2a5be8;
    position: relative;
}
.p-sec-anchor__list li a::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/icon_anchor_arrow.png") no-repeat;
    background-size: 100%;
    position: absolute;
    top: calc((100% - 20px)/2);
    right: 15px;
}
@media screen and (max-width: 767px) {
    .p-sec-anchor .p-sec-anchor__list{
        display: block;
    }
    .p-sec-anchor .p-sec-anchor__list li{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    li.p-sec-anchor__list_btn01,
    li.p-sec-anchor__list_btn02{
        width: 100%;
        margin-bottom: 15px;
    }
    li.p-sec-anchor__list_btn03,
    li.p-sec-anchor__list_btn04,
    li.p-sec-anchor__list_btn05,
    li.p-sec-anchor__list_btn06{
        width: 100%;
        margin-bottom: 15px;
    }
    .p-sec-anchor__list li .p-sec-anchor__list-img{
        width: 12%;
        margin: 0;
    }
    .p-sec-anchor__list li a{
        width: 86%;
        font-size: 1.8rem;
    }
    .p-sec-anchor__list li a::after{
        width: 18px;
        height: 18px;
        top: calc((100% - 18px)/2);
        right: 5px;
    }
}


/*-----------------------
　　トラブル箇所から探す
-------------------------*/
.p-sec-trouble__list{
    display: flex;
    flex-wrap: wrap;
}
.p-sec-trouble__list > li{
    width: calc((100% - 60px)/3);
    margin-top: 30px;
    margin-right: 30px;
    background: #eef4fd;
    box-shadow: 5px 5px 10px #bec2cb;
}
.p-sec-trouble__list > li:nth-child(3n){
    margin-right: 0;
}
.p-sec-trouble__head{
    width: 100%;
    padding: 10px 25px 15px;
    background: #FFF;
}
.p-sec-trouble__ttl{
    margin: 0 auto 10px;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    color: #2a5be8;
}
.p-sec-trouble__ttl-sub{
    padding: 0 10px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    background: #2a5be8;
    border-radius: 100px;
}
.p-sec-trouble__charge{
    margin-top: 10px;
}

.p-sec-trouble__check{
    width: 100%;
    padding: 20px 15px;
    font-size: 1.4rem;
    background: #eef4fd;
}
.p-sec-trouble__check li:not(:last-child){
    margin-bottom: 5px
}
.p-sec-trouble__check li::before{
    content: "";
    display: inline-block;
    width: 18px;
    height: 11px;
    margin-right: 5px;
    background: url("../img/icon_check.png") no-repeat;
    background-size: 100%;
}
.p-sec-trouble__maker{
    width: 100%;
    margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
    .p-sec-trouble.l-sec{
        padding: 80px 0 0;
    }
    .p-sec-trouble__list{
        display: block;
    }
    .p-sec-trouble__list > li{
        width: 100%;
        margin-right: 0;
    }
    .p-sec-trouble__ttl{
        font-size: 2.8rem;
    }
    .p-sec-trouble__check{
        font-size: 1.8rem;
    }
    .p-sec-trouble__maker{
        margin: 40px auto 0;
    }
}


/*-----------------------
　　水まわり緊急修理あんしんパック
-------------------------*/
.p-sec-pack__list{
    display: flex;
    flex-wrap: wrap;
}
.p-sec-pack__list > li{
    width: calc((100% - 60px)/3);
    margin-top: 30px;
    margin-right: 30px;
    background: #e4f8fb;
    box-shadow: 5px 5px 10px #bec2cb;
}
.p-sec-pack__list > li:nth-child(3n){
    margin-right: 0;
}
.p-sec-pack__head{
    width: 100%;
    padding: 10px 25px 15px;
    background: #FFF;
}
.p-sec-pack__ttl{
    margin: 0 auto 10px;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    color: #00a6cf;
}
.p-sec-pack__ttl-sub{
    padding: 0 10px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    background: #00a6cf;
    border-radius: 100px;
}
.p-sec-pack__charge{
    margin-top: 10px;
}

.p-sec-tpack__txt{
    width: 100%;
    padding: 20px 15px;
    font-size: 1.4rem;
    background: #eef4fd;
}
.p-sec-tpack__txt span{
    display: block;
    font-weight: bold;
}

.p-sec-pack__caution{
    width: 100%;
    margin: 20px auto 0;
    font-size: 1.2rem;
}

.p-sec-pack__time{
    width: 100%;
    margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
    .p-sec-pack__list > li{
        width: 100%;
        margin-right: 0;
    }
    .p-sec-pack__ttl{
        font-size: 2.8rem;
    }
    .p-sec-tpack__txt{
        font-size: 1.6rem;
    }
}



/*-----------------------
　　対応エリア
-------------------------*/
.p-sec-area__textCenter {
    margin-bottom: 40px;
    font-size: 1.2rem;
    text-align: center;
}
.p-sec-area li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
    gap: 10%;
    padding-block: 1.875rem;
}
.p-sec-area li:first-child {
    border-top: 1px solid #d9d9d9;
}
.p-sec-area li p {
    font-size: 1.8rem;
}
.p-sec-area li p span{
    display: block;
    font-size: 1.6rem;
}
.p-sec-area li p:first-child {
    width: 100%;
    max-width: 140px;
    font-size: 2.0rem;
    font-weight: bold;
    text-wrap: nowrap;
    color: #2a5be8;
}
.p-sec-area li p:last-child {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .p-sec-area li {
        display: block;
    }
    .p-sec-area li p{
        margin-bottom: 5px;
    }
    .p-sec-area li p span{
        display: inline;
        font-size: 1.8rem;
    }
}


/*-----------------------
　　ご利用の流れ
-------------------------*/
.p-sec-flow{
    background:url("../img/bg_flow.jpg") no-repeat;
    background-size: cover;
}
.p-sec-flow__list{
    width: 100%;
    margin: 80px auto 0;
    display: flex;
}
.p-sec-flow__list.list02{
    background: url("../img/flow_img07.png") no-repeat;
    background-size: 400px;
    background-position: top 0 right 40px;
}
.p-sec-flow__list.list03{
    margin-bottom: 0;
    justify-content: flex-end;
    background: url("../img/flow_img08.png") no-repeat;
    background-size: 280px;
    background-position: left 0 bottom 0;
}

.p-sec-flow__list li{
    width: calc((100% - 60px)/4);
    padding: 0 20px 30px;
    background: #FFF;
    box-shadow: 5px 5px 10px #bec2cb;
    position: relative;
}
.p-sec-flow__list li:not(:last-child){
    margin-right: 20px;
}
.p-sec-flow__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 110px;
    right: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #FFF;
    translate: 100% -50%;
}
.p-sec-flow__list .p-sec-flow__list__img{
    width: 100px;
    margin: -50px auto 0;
}
.p-sec-flow__list .p-sec-flow__list__ttl{
    margin: 20px auto 15px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}
.p-sec-flow__list .p-sec-flow__list__txt{
    padding-top: 15px;
    font-size: 1.5rem;
    border-top: 1px solid #d9d9d9;
}

.p-sec-flow__list .p-sec-flow__list__txt span{
    display: block;
    font-size: 1.2rem;
    color: #eb295f;
}

@media screen and (max-width: 767px) {
    .p-sec-flow__list{
        display: block;
        margin: 0 auto 40px;
    }
    .p-sec-flow__list.list02{
        padding-top: 280px;
        background: url("../img/flow_img07.png") no-repeat;
        background-size: 90vw;
        background-position: top 0 right 0;
    }
    .p-sec-flow__list.list03{
        padding-top: 380px;
        background: url("../img/flow_img08.png") no-repeat;
        background-size: 70vw;
        background-position: left 10vw top 0;
    }
    
    .p-sec-flow__list li{
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    .p-sec-flow__list li:not(:last-child){
        margin-right: 0;
        margin-bottom: 20px;
    }
    .p-sec-flow__list li:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: calc((100% - 45px)/2);
        border-style: solid;
        border-width: 15px 10px 0 10px;
        border-color: #FFF transparent transparent;
        translate: -50% 100%;
    }
    .p-sec-flow__list .p-sec-flow__list__img{
        width: 100px;
        margin: 20px 20px 20px 0;
    }
    .p-sec-flow__list .p-sec-flow__list__ttl{
        width: calc(100% - 120px);
        margin: 0;
        text-align: left;
    }
    .p-sec-flow__list .p-sec-flow__list__txt{
        font-size: 1.8rem;
    }
}


/*-----------------------
　　決済方法
-------------------------*/
.p-sec-payment{
    margin: 100px auto;
}
.p-sec-payment .l-inner{
    border: 2px solid #103190;
}
.p-sec-payment__ttl{
    padding: 15px 0;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #103190;
}
.p-sec-payment__description{
    margin: 20px auto;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.p-sec-payment__description span{
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    font-weight: normal;
}
.p-sec-payment__img{
    width: 96%;
    margin: 0 auto 20px;;
}
@media screen and (max-width: 767px) {
    .p-sec-payment__description{
        padding: 0 20px;
    }
}


/*-----------------------
　　お客さまの声
-------------------------*/
.p-sec-voice__description {
    margin: 40px auto;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.p-sec-voice__head{
    padding: 20px;
    background: #FFF;
}
ul.p-sec-voice__list{
    display: flex;
    justify-content: space-between;
}
ul.p-sec-voice__list li{
    width: calc((100% - 60px)/3);
    background: #e4f8fb;
    box-shadow: 5px 5px 10px #bec2cb;
}
ul.p-sec-voice__list li figure{
    width: 110px;
    margin: 0 auto 10px;
}
.p-sec-voice__list__tag{
    display: flex;
    justify-content: center;
}
.p-sec-voice__list__tag p{
    margin: 0 5px;
    padding: 0 20px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    color: #FFF;
    border-radius: 200px;
    background: #f76710;
}
.p-sec-voice__ttl{
    width: 100%;
    margin: 15px auto 0;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    color: #00a6cf;
}
.p-sec-voice__txt{
    width: 100%;
    padding: 25px;
}
@media screen and (max-width: 767px) {
    ul.p-sec-voice__list{
        display: block;
    }
    ul.p-sec-voice__list li{
        width: 100%;
    }
    ul.p-sec-voice__list li:not(:last-child){
        margin-bottom: 20px;
    }
    .p-sec-voice__ttl{
        font-size: 2.2rem;
    }
    .p-sec-voice__txt{
        font-size: 1.6rem;
    }
}



/*-----------------------
　　よくあるご質問
-------------------------*/
.p-sec-faq.l-sec{
    padding: 80px 0 0;
}
.faq-ttl {
    width: 100%;
    padding: 20px 15px 20px 50px;
    position: relative;
    background-color: #fff;
    cursor: pointer;
}
.faq-ttl p,
.faq-content p {
    display: flex;
}
.faq-ttl p{
    font-size: 2.2rem;
    font-weight: bold;
    color: #2a5be8;
}
.faq-content + .faq-ttl {
  margin-top: 20px;
}
.faq-content {
    display: none;
    margin-left: 0;
    padding: 30px 50px;
    background: #FFF;
    border-top: 1px solid #d9d9d9;
}

/* 「+」を追加 */
.faq-ttl::before,
.faq-ttl::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4%;
  width: 14px;
  height: 2px;
  margin: auto;
  background-color: #2a5be8;
}
.faq-ttl::after {
  transform: rotate(90deg);
  transition: .3s;
}
/* クリックしたときに「+」を「−」に変更 */
.faq-ttl.is-active::after {
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
    .faq-ttl {
        padding: 20px 40px 20px 20px;
        position: relative;
    }
    .faq-content {
        padding: 20px 20px;
    }
}


