@charset "UTF-8";

/* strength-title --------------------------- */
.strength-title{
    width: 100%;
    height: 514px;
    background-image: url(../img/strength/strength-title.jpg);
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    position: relative;
}
.strength-title .info-wrap{
    width: 545px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    position: absolute;
    bottom: 40px;
    right: 10%;
    padding: 40px 55px;
}
.strength-title .info-wrap .title{
    font-size: 2rem;
    margin-bottom: 20px;
}


/* reasons ---------------------------------- */
#reasons{
    width: 100%;
    background-image: url(../img/strength/backimage.svg);
    background-position: center right;
    background-size: 50%;
    background-attachment: fixed;
    padding-bottom: 160px;
}

#reasons .section-title{
    padding-top: 10px;
    position: relative;
}
#reasons .section-title::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 100px solid #CC911B;
    border-right: 100px solid transparent;
    z-index: -1;
}
#reasons .section-title .sub{
    font-size: 2.13rem;
    line-height: 0.8em;
    margin-left: 100px;
}
#reasons .section-title .main{
    line-height: 0.5em;
}
#reasons .section-title .en .big{
    font-size: 10rem;
}
#reasons .section-title .ja{
    margin-left: calc(5% - 30px);
    writing-mode: vertical-rl;
}

#reasons ul{
    width: 80%;
    margin: -350px auto 60px auto;
}
#reasons ul li{
    width: 90%;
    max-width: 850px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 0 10px 5px rgba(204, 204, 204, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 30px;
}
#reasons ul li:nth-child(odd){
    margin: 0 auto 40px 0;
}
#reasons ul li:nth-child(even){
    flex-direction: row-reverse;
    margin: 0 0 40px auto;
}

#reasons ul li .text-wrap{
    width: 60%;
}
#reasons ul li .text-wrap .title-wrap{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#reasons ul li .text-wrap .title-wrap .number{
    color: #CC911B;
    font-size: 4.83rem;
    font-weight: 600;
    line-height: 0.8em;
    letter-spacing: -0.08em;
    border-right: 1px solid #ccc;
    padding-right: 10px;
}
#reasons ul li .text-wrap .title-wrap .title{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2em;
    text-align: left;
    padding-left: 10px;
}

#reasons ul li .img-wrap{
    width: 40%;
    max-width: 300px;
    border-radius: 15px;
}
#reasons ul li .img-wrap img{
    width: 100%;
    border-radius: 15px;
}

#reasons .btn{
    margin: 0 auto;
}


/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* strength-title --------------------------- */
    .strength-title .info-wrap{
        width: 480px;
        bottom: 20px;
        right: 5%;
        padding: 30px;
    }

    /* reasons ---------------------------------- */
    #reasons{
        background-position: top right;
        background-attachment: scroll;
    }

    #reasons .section-title .sub{
        font-size: 2rem;
        margin-left: 80px;
    }
    #reasons .section-title .en .big{
        font-size: 8rem;
    }
    #reasons .section-title .ja{
        margin-left: calc(5% - 24px);
    }

    #reasons ul{
        margin: -250px auto 60px auto;
    }
    #reasons ul li{
        width: 100%;
    }
    #reasons ul li .text-wrap .title-wrap .number{
        font-size: 4rem;
    }
    #reasons ul li .text-wrap .title-wrap .title{
        font-size: 1.2rem;
    }

}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* strength-title --------------------------- */
    .strength-title{
        height: 180px;
        overflow: visible;
        margin-bottom: 380px;
    }
    .strength-title .info-wrap{
        width: 90%;
        top: 200px;
        right: 5%;
        padding: 0;
    }

    /* reasons ---------------------------------- */
    #reasons{
        background-image: none;
        padding-bottom: 80px;

    }

    #reasons .section-title .sub{
        font-size: 1.4rem;
        margin-left: 57px;
    }
    #reasons .section-title .en .big{
        font-size: 6rem;
    }
    #reasons .section-title .ja{
        margin-left: 5%;
        writing-mode: horizontal-tb;
    }

    #reasons ul{
        width: 90%;
        margin: 60px auto;
    }
    #reasons ul li{
        width: 100%;
        flex-direction: column;
        padding: 20px;
    }
    #reasons ul li:nth-child(odd){
        margin: 0 auto 40px auto;
    }
    #reasons ul li:nth-child(even){
        flex-direction: column;
        margin: 0 auto 40px auto;
    }

    #reasons ul li .text-wrap{
        width: 100%;
    }
    #reasons ul li .text-wrap .title-wrap .number{
        font-size: 3rem;
    }
    #reasons ul li .text-wrap .title-wrap .title{
        font-size: 1.1rem;
    }

    #reasons ul li .img-wrap{
        width: 100%;
    }

}

