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

/* =====================
    common
======================== */
body{
    font-size: 17px;
    font-weight: 400;
    color: #242324;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.64;
    counter-reset: number 0; 
    background-color: #ffffff;
}

img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.inner{
    width: 90%;
    max-width: 980px;
    margin: auto;
}

.heading2{
    font-size: 45px;
    font-weight: 700;
    text-align: center;
}

.lead{
    font-size: 43px;
    font-weight: 700;
    line-height: 1.33;
}

.text{
    font-size: 25px;
    font-weight: 700;
    line-height: 1.75;
}

.font-color--orange{
    color: #ff4d00;
}

.underline{
    background: linear-gradient(to top, rgba(36, 35, 36, 0) 0, rgba(36, 35, 36, 0) 2px, rgba(36, 35, 36, 1) 2px, rgba(36, 35, 36, 1) 3px, rgba(36, 35, 36, 0) 3px, rgba(36, 35, 36, 0) 100%);
}

.underline--orange{
    background: linear-gradient(to top, rgba(255, 77, 0, 0) 0, rgba(255, 77, 0, 0) 2px, rgba(255, 77, 0, 1) 2px, rgba(255, 77, 0, 1) 3px, rgba(255, 77, 0, 0) 3px, rgba(255, 77, 0, 0) 100%);
}

.underline--orange::before{
    background-color: #ff4d00;
}

.worries::before,
.merit::before,
.case-study::before,
.advantage::before,
.others::before,
.area::before,
.flow::before,
.faq::before,
.contact-form::before,
.privacy::before{
    display: inline-block;
    font-size: 12.75vw;
    font-size: min(16vw, 204px);
    color: #e7e7e7;
    font-weight: 700;
    line-height: 0.65;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.merit::before,
.advantage::before,
.area::before{
    top: -4px;
}
.worries::before,
.case-study::before,
.others::before,
.flow::before,
.contact-form::before{
    color: #e7e7e7;
}
.merit::before,
.advantage::before,
.area::before,
.faq::before{
    color: #f3f3f3;
}
.triangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 90px 250px 0 250px;
    border-color: #ff4d00 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.before-after{
    display: flex;
    justify-content: center;
}

.before-after .img-wrap{
    width: 50%;
    max-width: 400px;
    position: relative;
}

.before-after .img-wrap::before{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ff4d00;
    position: absolute;
    bottom: 0;
    left: 3.5%;
}

.before-after .img-wrap:first-child::before{
    content: "Before";
}

.before-after .img-wrap:last-child::before{
    content: "After";
}

.before-after .img-wrap:last-child::after{
    content: "";
    display: block;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(255, 77, 0, 0) 0, rgba(255, 77, 0, 0) 50%, #a93900 50%, #ff4d00 70%);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-93%, -59%) rotate(-45deg) skew(20deg, 20deg);
}

.bg--gray{
    background-color: #f3f3f3;
}

@-webkit-keyframes fadeInUpTriangle {
    0% {
      opacity: 0;
      -webkit-transform: translate(-50%, -25%);
      transform: translate(-50%, -25%);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
}

@keyframes fadeInUpTriangle {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, -25%);
        -ms-transform: translate(-50%, -25%);
        transform: translate(-50%, -25%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.fadeInUpTriangle {
    -webkit-animation-name: fadeInUpTriangle;
    animation-name: fadeInUpTriangle;
}

@-webkit-keyframes fadeInUpOthers {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px) skew(-10deg);
      transform: translateY(20px) skew(-10deg);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0) skew(-10deg);
      transform: translateY(0) skew(-10deg);
    }
}

@keyframes fadeInUpOthers {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px) skew(-10deg);
        -ms-transform: translateY(20px) skew(-10deg);
        transform: translateY(20px) skew(-10deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0) skew(-10deg);
        -ms-transform: translateY(0) skew(-10deg);
        transform: translateY(0) skew(-10deg);
    }
}

.fadeInUpOthers {
    -webkit-animation-name: fadeInUpOthers;
    animation-name: fadeInUpOthers;
}

.sp{
    display: none;
}

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

    .lead,
    .heading2{
        font-size: 35px;
    }

    .text{
        font-size: 22px;
    }

    .before-after .img-wrap::before{
        font-size: 18px;
    }
}

@media screen and (max-width: 767px){
    body{
        font-size: 15px;
    }

    .pc{
        display: none;
    }

    .sp{
        display: block;
    }   
    
    .lead,
    .heading2{
        font-size: 25px;
        line-height: 1.4;
    }

    .text{
        font-size: 18px;
    }

    .triangle{
        border-width: 40px 150px 0 150px;
    }

    .before-after{
        display: block;
    }

    .before-after .img-wrap{
        width: 100%;
        margin: auto;
    }

    .before-after .img-wrap::before{
        font-size: 16px;
    }

    .before-after .img-wrap:last-child::after{
        width: 44px;
        height: 44px;
        top: 0;
        left: 50%;
        transform: translate(-50%, -100%) rotate(45deg) skew(20deg, 20deg);
    }

    .contact-sp{
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        transform: translateY(150%);
        width: 100%;
        box-shadow: 3px 0 25px #42424252;
        transition: 0.6s ease;
    }

    .contact-sp.js-active{
        transform: translateY(0);
    }

    .contact-sp > a{
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px;
        font-size: 15px;
        position: relative;
    }

    .contact-sp > a::before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 0 6px 8px;
        border-color: transparent transparent transparent #ffffff;
        position: absolute;
        top: 50%;
        right: 4%;
        transform: translateY(-50%);
        transition: 0.4s ease;
    }

    .contact-sp__tel{
        flex-direction: column;
        background-color: #ffffff;
    }

    .contact-sp__tel span:nth-child(2){
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
        color: #ff4d00;
    }

    .contact-sp__tel span:nth-child(3){
        font-size: 12px;
    }

    .contact-sp__mail{
        font-weight: 700;
        background-color: #ff4d00;
        color: #ffffff;
    }
}

/* =====================
    header
======================== */
.header{
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 5px 0 50px #24232421;
}

.header__inner{
    display: flex;
    padding-left: 1.75vw;
}

.header-title{
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-title .size--sm{
    font-size: 0.608em;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 5px;
}

.header-info{
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-info__tel{
    display: flex;
    align-items: center;
}

.header-info__tel > span{
    font-size: 14px;
    display: inline-block;
    padding-top: 7px;
}

.header-info__tel-inner{
    display: flex;
    flex-direction: column;
    font-size: 26px;
    font-weight: 700;
    color: #ff4d00;
    line-height: 1;
    padding-top: 7px;
    margin-left: 14px;
}

.header-info__tel-inner span{
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
    color: #242324;
}

.header-info__mail{
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    border: 2px solid #ff4d00;
    background-color: #ff4d00;
    width: 200px;
    padding: 1.46em 0 1.33em;
    position: relative;
    transition: 0.4s ease;
    margin-left: 0.9375vw;
}

.header-info__mail:hover{
    background-color: #ffffff;
    color: #ff4d00;
}

.header-info__mail::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    transition: 0.4s ease;
}

.header-info__mail:hover::before{
    border-color: transparent transparent transparent #ff4d00;
}

.header-info__mail span{
    padding-right: 5px;
}

.mail-page{
    background-color: #f3f3f3;
}

.mail-page .header__inner{
    padding: 15px;
}

@media screen and (max-width: 1024px){
    .header-title{
        font-size: 20px;
    }

    .header-info__tel-inner {
        font-size: 23px;
    }

    .header-info__mail {
        font-size: 14px;
        width: 180px;
        padding: 1.46em 0 1.33em;
    }
}

@media screen and (max-width: 767px){
    .header{
        position: static;
    }

    .header__inner{
        padding: 15px;
    }

    .header-info{
        display: none;
    }
    .header-title{
        text-align: center;
        margin: 0 auto;
    }
}

/* =====================
    mainvisual
======================== */
.mainvisual{
    padding-top: 70.44px;
}

@media screen and (max-width: 1024px){
    .mainvisual{
        padding-top: 66.01px;
    }
}

@media screen and (max-width: 767px){
    .mainvisual{
        padding-top: 0;
    }
}

/* =====================
    contact us
======================== */
.contact{
    display: flex;
    padding: 35px 20px 65px 0;
    background-color: #242324;
    margin-top: -1px;
}

.contact__head{
    width: 28.125%;
    position: relative;
    z-index: 0;
}

.contact__head::before {
    content: "";
    display: block;
    width: 100%;
    height: 166%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform: translateY(-26%);
    background: linear-gradient(to bottom left, rgba(255, 77, 0, 0) 0, rgba(255, 77, 0, 0) 50%, rgba(255, 77, 0, 1) 50%, rgba(255, 77, 0, 1) 100%),
                linear-gradient(to left, rgba(255, 77, 0, 1) 0, rgba(255, 77, 0, 1) 100%);
    background-repeat: no-repeat;
    background-size: 65px 100%,
                    calc(100% - 64.5px) 100%;
    background-position: top right,
                        top right 64.5px;
}

.contact__head-inner{
    margin-left: auto;
    max-width: 450px;
    padding: 0 8.88% 0 15.11%;
    padding: 0 min(8.88%, 39px) 0 min(15.11%, 67px);
}

.contact__head-inner .heading2{
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    padding-right: 25px;
}

.contact__head-inner .lead{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    margin-top: 24px;
}

.contact__body{
    width: calc(100% - 28.125%);
    padding-left: 2.3%;
}

.contact__body .text{
    font-size: 26px;
    color: #ffffff;
    padding-left: 1%;
    letter-spacing: -0.05em;
}

.contact-btn__wrap{
    display: flex;
    margin-top: 30px;
}

.contact-btn{
    max-width: 310px;
    flex-grow: 1;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    color: #ffffff;
    margin-left: 6.2%;
    background-color: #ff4d00;
    transition: 0.4s ease;
    box-shadow: 0 7px 0 #5f5f5f;
}

.contact-btn:hover{
    transform: translateY(7px);
    box-shadow: none;
}

.contact-btn:first-child{
    margin-left: 0;
}

.contact-btn.btn-mail{
    font-size: 21px;
}

.contact-btn.btn-tel{
    flex-direction: column;
}

.contact-btn.btn-tel > span{
    font-size: 18px;
    line-height: 1;
}

.contact-btn.btn-tel .btn__inner{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 30px;
    width: 100%;
    padding: 0 10px;
    line-height: 1;
    margin-top: 6px;
}

.contact-btn.btn-tel .btn__inner > span{
    font-size: 13px;
    font-weight: 400;
    line-height: 1.15;
    margin-left: 10px;
}

@media screen and (max-width: 1024px){
    .contact__head-inner .heading2 {
        font-size: 27px;
    }

    .contact__head-inner .lead {
        font-size: 19px;
        margin-top: 22px;
    }

    .contact__body .text {
        font-size: 23px;
    }

    .contact-btn{
        margin-left: 5.01%;
    }

    .contact-btn.btn-mail {
        font-size: 19px;
    }

    .contact-btn.btn-tel > span {
        font-size: 14px;
    }

    .contact-btn.btn-tel .btn__inner {
        font-size: 27px;
    }
}

@media screen and (max-width: 767px){
    .contact {
        display: block;
        padding-bottom: 40px;
        padding-top: 0;
        padding-right: 0;
        background: linear-gradient(0deg, #000000 0%, #000000 90%, #28446a00 90%, #28446a00 100%);
    }

    .contact__head {
        width: 100%;
        max-width: 448px;
    }
    .contact__head::before{
        height: 125%;
        width: 90%;
        transform: translateY(-9%);
        right: auto;
        left: 0;
    }

    .contact__head-inner{
        padding: 0 min(10%, 39px) 0 min(8%, 67px);
    }

    .contact__head-inner .heading2 {
        font-size: 24px;
    }

    .contact__head-inner .lead {
        font-size: 16px;
        margin-top: 5px;
    }

    .contact__body {
        width: 90%;
        padding-left: 0;
        margin: 30px auto 0;
    }

    .contact__body .text {
        font-size: 19px;
        line-height: 1.6;
        padding: 0;
        text-align: center;
    }

    .contact-btn__wrap {
        display: block;
        margin-top: -4px;
    }

    .contact-btn{
        margin: 22px auto 0;
        max-width: 280px;
    }

    .contact-btn:first-child {
        margin-left: auto;
    }

    .contact-btn.btn-mail {
        font-size: 17px;
    }

    .contact-btn.btn-tel > span {
        margin-bottom: -3px;
    }

    .contact-btn.btn-tel .btn__inner {
        font-size: 24px;
        display: block;
        text-align: center;
    }

    .contact-btn.btn-tel .btn__inner > span {
        font-size: 12px;
        display: block;
        margin-top: 5px;
    }
}

/* =====================
    worries
======================== */
.worries{
    padding-bottom: 109px;
    position: relative;
    z-index: 0;
}

.worries::before{
    content: "WORRIES";
}

.worries__box{
    display: flex;
}

.worries__box-content{
    width: 69%;
    flex-grow: 1;
    padding-top: 7.3%;
}

.worries__box .images-wrap{
    width: calc(100% - 77%);
    flex-grow: 1;
}

.worries-list{
    margin-top: 7%;
}

.worries-list li {
    font-size: 25px;
    font-weight: 700;
    padding: 0 10px 0 9%;
    letter-spacing: -0.01em;
    margin-top: 21px;
    position: relative;
}

.worries-list li::before{
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url('../img/worries/check.svg') no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    top: 6px;
    left: 0;
}

.worries-list li:first-child{
    margin-top: 0;
}

.worries-list + span{
    display: inline-block;
    padding-left: 9.5%;
    font-size: 25px;
    font-weight: 700;
    margin-top: 21px;
}

.worries__box .images-wrap{
    padding-top: 3%;
}

.worries__box .images-wrap .img-wrap:last-child{
    width: 115%;
    margin: 30px 0 0 -34%;
}

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

@media screen and (max-width: 1024px){
    .worries-list li,
    .worries-list + span{
        font-size: 22px;
        padding-left: 6.5%;
        margin-top: 8px;
    }

    .worries-list li::before {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 767px){
    .worries{
        padding-bottom: 65px;
    }

    .worries__box {
        display: block;
    }

    .worries__box-content {
        width: 100%;
        padding-top: 30px;
    }

    .worries-list li,
    .worries-list + span{
        font-size: 19px;
        padding-left: 31px;
    }

    .worries-list li::before {
        width: 20px;
        height: 20px;
        top: 8px;
    }

    .worries__box .images-wrap{
        width: 65%;
        margin-left: auto;
        margin-bottom: 52px;
        padding-top: 0;
    }
    .worries__box .images-wrap .img-wrap:first-child{
        width: 75%;
        margin: 0 0 0 auto;
        position: relative;
    }
    .worries__box .images-wrap .img-wrap:last-child {
        width: 72%;
        margin: -150px 0 0 -53%;
    }

    .worries .text{
        margin-top: 30px;
    }
}

/* =====================
    merit
======================== */
.merit{
    position: relative;
    z-index: 0;
    padding: 62px 0 102px;
}

.merit::before{
    content: "MERIT";
}

.merit .lead{
    text-align: center;
}

.merit-about{
    margin-top: 73px;
}

.merit-about__list dt{
    font-size: 25px;
}

.merit-about__list dd{
    font-size: 17px;
    color: #000000;
    margin-top: 15px;
}

.merit-about .before-after{
    margin-top: 37px;
}

.merit-content{
    margin-top: 63px;
}

.merit-content > span{
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
}

.merit-content__list{
    display: flex;
    flex-wrap: wrap;
}

.merit-content__list li {
    width: calc((100% - 20px * 2) / 3);
    max-width: 314px;
    margin: 22px 0 0 20px;
    padding: 28px 5px 31px;
    position: relative;
    background-color: #eeeeee;
}

.merit-content__list li::before{
    counter-increment: number 1; 
    content: "Merit."counter(number);
    font-size: 17px;
    color: #ffffff;
    padding: 2px 22px 2px 13px;
    background: linear-gradient(to top left, rgba(255, 77, 0, 0) 0, rgba(255, 77, 0, 0) 50%, rgba(255, 77, 0, 1) 50%, rgba(255, 77, 0, 1) 100%),
                linear-gradient(to left, rgba(255, 77, 0, 1) 0, rgba(255, 77, 0, 1) 100%);
    background-repeat: no-repeat;
    background-size: 11px 100%,
                    calc(100% - 10.5px) 100%;
    background-position: top right,
                        top right 10.5px;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.merit-content__list li:nth-child(3n + 1){
    margin-left: 0;
}

.merit-content__list li .img-wrap{
    width: 80%;
    max-width: 102px;
    width: min(80%, 102px);
    margin: auto;
}

.merit-content__list li p{
    font-size: 23px;
    font-weight: 700;
    line-height: 1.34;
    text-align: center;
    margin-top: 11px;
}

@media screen and (max-width: 1024px){
    .merit-about__list dt,
    .merit-content > span{
        font-size: 22px;
    }

    .merit-about__list dd,
    .merit-content__list li::before{
        font-size: 16px;
    }

    .merit-content__list li p{
        font-size: 20px;
    }
}

@media screen and (max-width: 767px){
    .merit{
        padding-bottom: 72px;
    }

    .merit::before {
        top: 0px;
        font-size: min(19vw, 204px);
    }

    .merit-about {
        margin-top: 27px;
    }
    .merit-about .before-after {
        width: 85%;
        margin: 25px auto 0;
    }
    .merit-content__list{
        margin-top: 10px;
    }

    .merit-about__list dt,
    .merit-content > span{
        font-size: 19px;
    }

    .merit-about__list dd{
        font-size: 15px;
        margin-top: 7px;
    }
    .merit-content__list li::before {
        font-size: 14px;
        padding: 1px 18px 1px 10px;
    }

    .merit-content__list li {
        max-width: 286px;
        width: 47%;
        margin: 9px auto 0;
    }

    .merit-content__list li:nth-child(3n + 1) {
        margin-left: auto;
    }
    .merit-content__list li .img-wrap{
        margin: 6px auto auto;
    }
    .merit-content__list li p {
        font-size: 16px;
    }
}

/* =====================
    case-study
======================== */
.case-study{
    position: relative;
    z-index: 0;
    padding: 65px 0 115px;
}

.case-study::before{
    content: "CASE STUDY";
}

.case-study .text{
    text-align: center;
    margin-top: 40px;
}

.case-study__content{
    display: flex;
    margin-top: 34px;
}

.case-study__content-box{
    width: calc((100% - 20px) / 2);
    max-width: 480px;
    margin-left: 20px;
}

.case-study__content-box:first-child{
    margin: 0;
}

.case-study__content-title{
    text-align: center;
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    padding: 4px;
    background-color: #242324;
}

.case-study__content-box .before-after .img-wrap::before {
    font-size: 18px;
    bottom: 3%;
    left: 5.5%;
}

.case-study__content-box .before-after .img-wrap:last-child::after {
    width: 40px;
    height: 40px;
    transform: translate(-81%, -25%) rotate(-45deg) skew(20deg, 20deg);
}

.case-study__content-text{
    min-height: 95px;
    padding: 15px 4.5%;
    letter-spacing: -0.02em;
    background-color: #ffffff;
}

@media screen and (max-width: 1024px){
    .case-study__content-title{
        font-size: 20px;
    }

    .case-study__content-box .before-after .img-wrap::before{
        font-size: 17px;
    }
}

@media screen and (max-width: 767px){
    .case-study {
        padding: 60px 0 70px;
    }

    .case-study .text {
        margin-top: 18px;
        line-height: 1.6;
    }

    .case-study__content {
        display: block;
    }

    .case-study__content-box{
        width: 100%;
        margin: 20px auto 0;
    }

    .case-study__content-box:first-child{
        margin: 0 auto;
    }
    
    .case-study__content-box .before-after{
        display: flex;
    }
    .case-study__content-box .before-after .img-wrap {
        max-width: none;
    }

    .case-study__content-title{
        font-size: 17px;
    }

    .case-study__content-box .before-after .img-wrap:last-child::after {
        width: 25px;
        height: 25px;
        top: 37%;
        left: 0;
        transform: translate(-81%, -25%) rotate(-45deg) skew(20deg, 20deg);    }

    .case-study__content-box .before-after .img-wrap::before{
        font-size: 16px;
    }
    .case-study__content-text{
        min-height: auto;
        padding: 4vw;
    }
}

/* =====================
    advantage
======================== */
.advantage{
    position: relative;
    z-index: 0;
    padding: 60px 0 111px;
}

.advantage::before{
    content: "ADVANTAGE";
}

.advantage .lead{
    text-align: center;
}

.advantage__list{
    margin-top: 40px;
}

.advantage__list li{
    display: flex;
}

.advantage__list li .img-wrap{
    width: 22.15%;
    min-width: 110px;
    width: clamp(110px, 22.15%, 217px);
    flex-grow: 1;
    margin-right: auto;
}

.advantage__list-body{
    width: 74.9%;
    max-width: 734px;
    flex-grow: 1;
    margin-left: 15px;
    padding-top: 5%;
}

.advantage__list-body > span {
    display: inline-block;
    font-size: 32.9px;
    font-weight: 700;
    line-height: 1;
    padding: 0.33em 0.5em;
    transform: skew(-10deg);
    color: #ffffff;
    background-color: #ff4d00;
}

.advantage__list-body .text{
    margin-top: 20px;
    padding-left: 6%;
    letter-spacing: -0.05em;
}

@media screen and (max-width: 1024px){
    .advantage__list-body > span{
        font-size: 27px;
    }
}

@media screen and (max-width: 767px){
    .advantage {
        padding-bottom: 68px;
    }

    .advantage::before {
        top: 0;
    }

    .advantage__list li {
        display: block;
        margin-top: 35px;
    }

    .advantage__list li:first-child{
        margin-top: 0;
    }
    .advantage__list li .img-wrap{
        min-width: 145px;
        margin: 0 auto;
    }

    .advantage__list-body {
        width: 100%;
        margin-left: 0;
        text-align: center;
        padding-top: 2.5%;
    }

    .advantage__list-body > span{
        font-size: 21px;
    }

    .advantage__list-body .text {
        margin-top: 7px;
        padding-left: 3%;
        line-height: 1.5;
    }
}

/* =====================
    others
======================== */
.others{
    position: relative;
    z-index: 0;
    padding: 88px 0 120px;
}

.others::before{
    content: "OTHERS";
}

.others .text{
    text-align: center;
}

.others__content{
    margin-top: 55px;
}

.others__box-wrap{
    text-align: center;
    margin-top: 110px;
}

.others__box-wrap:first-child{
    margin-top: 0;
}

.others__box-wrap > span{
    display: inline-block;
    font-size: 32.9px;
    font-weight: 700;
    line-height: 1.3;
    padding: 0.33em 0.5em;
    transform: skew(-10deg);
    color: #ffffff;
    background-color: #ff4d00;
}

.others__box{
    display: flex;
    border: 1px solid #bdbdbd;
    border-top: none;
}

.others__box:nth-of-type(1){
    margin-top: 40px;
    border-top: 1px solid #bdbdbd;
}

.others__box .img-wrap{
    width: 40.82%;
    width: min(40.82%, 400px);
}

.others__box-body{
    flex-grow: 1;
    width: calc(100% - 40.82%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.others__box-body > span {
    font-size: 27px;
    font-weight: 700;
    display: inline-block;
    color: #ffffff;
    padding: 5px 17px;
    background-color: #242324;
}

.others__box-text{
    font-size: 21px;
    font-weight: 700;
    line-height: 1.75;
    margin-top: 6.57%;
}

@media screen and (max-width: 1024px){
    .others__box-wrap > span {
        font-size: 27px;
    }

    .others__box-wrap {
        margin-top: 80px;
    }

    .others__box {
        flex-direction: column;
    }

    .others__box:nth-of-type(1) {
        margin-top: 20px;
    }

    .others__box-body{
        order: 1;
        width: 100%;
        padding: 25px 15px;
    }

    .others__box-body > span {
        font-size: 24px;
    }

    .others__box-text {
        font-size: 19px;
    }

    .others__box .img-wrap {
        width: 100%;
        order: 2;
    }
}

@media screen and (max-width: 767px){
    .others {
        padding: 60px 0 70px;
    }
    .others__content {
        margin-top: 30px;
    }
    .others__box-wrap {
        margin-top: 65px;
    }

    .others__box-wrap > span {
        font-size: 22px;
    }

    .others__box-body > span {
        font-size: 19px;
        padding: 3px 21px 4px;
    }
    .others__box-body{
        padding: 6vw 4vw 6.3vw;
    }

    .others__box-text {
        font-size: 17px;
        margin-top: 3.5%;
        line-height: 1.5;
    }
}

/* =====================
    area
======================== */
.area{
    position: relative;
    z-index: 0;
    padding: 61px 0 84px;
}

.area::before{
    content: "AREA";
}

.area .img-wrap{
    margin-top: 60px;
}

@media screen and (max-width: 767px){
    .area{
        padding: 60px 0 60px;
    }
    .area .img-wrap{
        width: 80%;
        margin: 32px auto 0;    
    }
}

/* =====================
    flow
======================== */
.flow{
    position: relative;
    z-index: 0;
    padding: 64px 0 117px;
}

.flow::before{
    content: "FLOW";
}

.flow .img-wrap{
    max-width: 864px;
    margin: 63px auto 0;
}

@media screen and (max-width: 767px){
    .flow{
        padding-bottom: 87px;
    }

    .flow .img-wrap{
        margin-top: 40px;
        width: 85%;
    }
}

/* =====================
    Q&A
======================== */
.faq{
    position: relative;
    z-index: 0;
    padding: 65px 0 149px;
}

.faq::before{
    content: "Q&A";
}

.faq__list{
    margin-top: 75px;
    max-width: 962px;
}
.faq__list > div{
    box-shadow: 12px 12px 0 #f3f3f3;
}
.faq__list > div + div{
    margin-top: 50px;
}

.faq__list dt{
    font-size: 22px;
    line-height: 1.27;
    background-color: #ffffff;
}

.faq__list dd{
    font-size: 19px;
    line-height: 1.5;
    background-color: #ffffff;
}

.faq__list dt{
    position: relative;
    cursor: pointer;
}

.faq__list dt::before,
.faq__list dt::after{
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background-color: #242324;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
}

.faq__list dt::after{
    transform: translateY(-50%) rotate(90deg);
    transition: 0.4s ease;
}

.faq__list dt.js-active::after{
    transform: translateY(-50%) rotate(0);
}

.faq__list dd{
    padding-top: 20px;
}

.faq__list dt p,
.faq__list dd p{
    padding: 0 6% 0 12.7%;
    position: relative;
}

.faq__list dt p{
    min-height: 81px;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.faq__list dt p::before{
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 400;
    color: #ffffff;
    width: 10.91%;
    height: 100%;
    padding-left: 3.5%;
    padding-bottom: 0.8%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom left, rgba(255, 77, 0, 0) 0, rgba(255, 77, 0, 0) 50%, rgba(255, 77, 0, 1) 50%, rgba(255, 77, 0, 1) 100%),
                linear-gradient(to left, rgba(255, 77, 0, 1) 0, rgba(255, 77, 0, 1) 100%);
    background-repeat: no-repeat;
    background-size: 24px 100%,
                    calc(100% - 23.5px) 100%;
    background-position: top right,
                        top right 23.5px;
}

.faq__list dd p::before{
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 400;
    color: #ff4d00;
    width: 10.91%;
    height: 100%;
    padding-left: 3.5%;
    position: absolute;
    top: -5px;
    left: 0;
    /* background: linear-gradient(to bottom left, rgba(255, 77, 0, 0) 0, rgba(255, 77, 0, 0) 50%, rgba(255, 77, 0, 1) 50%, rgba(255, 77, 0, 1) 100%),
                linear-gradient(to left, rgba(255, 77, 0, 1) 0, rgba(255, 77, 0, 1) 100%);
    background-repeat: no-repeat;
    background-size: 24px 100%,
                    calc(100% - 23.5px) 100%;
    background-position: top right,
                        top right 23.5px; */
}
.faq__list dt p::before{
    content: "Q";
    
}

.faq__list dd p{
    padding-top: 20px;
    padding-bottom: 20px;
}

.faq__list dd p::before{
    content: "A";
}

@media screen and (max-width: 1024px){
    .faq__list dt,
    .faq__list dd {
        font-size: 20px;
    }

    .faq__list dt p::before,
    .faq__list dd p::before{
        font-size: 30px;
    }
}

@media screen and (max-width: 767px){
    .faq {
        padding-bottom: 119px;
    }

    .faq__list {
        margin-top: 40px;
    }

    .faq__list dt {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4;
    }
    .faq__list dd{
        font-size: 16px;
    }

    .faq__list dt::before, 
    .faq__list dt::after {
        width: 17px;
    }

    .faq__list dt p{
        padding-left: 60px;
        padding-right: 40px;
        min-height: auto;
    }

    .faq__list dt p::before,
    .faq__list dd p::before{
        width: 55px;
        font-size: 20px;
        padding-left: 12px;
    }
    .faq__list dd {
        padding-top: 10px;
    }
    
    .faq__list dd p {
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .faq__list > div {
        box-shadow: 8px 9px 0 #f3f3f3;
    }
    .faq__list > div + div {
        margin-top: 35px;
    }
}

/* =====================
    contact-us
======================== */
.contact-form{
    position: relative;
    z-index: 0;
    padding: 67px 0 109px;
}

.contact-form::before{
    content: "CONTACT US";
}

.contact-form .lead{
    text-align: center;
}

.contact-form__tel{
    text-align: center;
    margin: 74px auto 0;
    border: 2px solid #ff4d00;
    max-width: 835px;
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 12px 2.5%;
}

.contact-form__tel span:nth-child(1){
    font-size: 20px;
    font-weight: 700;
}

.contact-form__tel span:nth-child(2){
    font-size: 53px;
    font-weight: 700;
    color: #ff4d00;
    margin: 0 2.39%;
    display: inline-block;
}

.contact-form__tel span:nth-child(3){
    font-size: 15px;
}

.contact-form__tel a{
    pointer-events: none;
}

.contact-form__form{
    padding: 55px 0 90px 0;
    margin-top: 74px;
    background-color: #ffffff;
}

.contact-form__form > .text{
    color: #ffffff;
    text-align: center;
    width: 90%;
    width: min(90%, 850px);
    margin: auto;
    border-radius: 50px;
    padding: 5px;
    background-color: #242324;
}

.contact-form__form form{
    padding: 0 9.18% 0 8.97%;
    margin-top: 43px;
}

.contact-form__form table{
    width: 100%;
}

.contact-form__form tr + tr{
    margin-top: 32px;
    display: block;
}

.contact-form__form th,
.contact-form__form td{
    display: block;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: #333333;
}

.contact-form__form td{
    padding-left: 9.6%;
    margin-top: 4px;
}

.contact-form__form .require,
.contact-form__form .any{
    font-size: 0.789em;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid #242324;
    padding: 3px 20px;
    margin-right: 10px;
}

.contact-form__form .require{
    color: #ffffff;
    background-color: #ff4d00;
    border-color: #ff4d00;
}

.contact-form__form .any{
    background-color: #ffffff;
}

.contact-form__form input[type="text"],
.contact-form__form input[type="email"],
.contact-form__form textarea{
    width: 100%;
    background-color: #f3f3f3;
    display: block;
    padding: 15px;
}

.contact-form__form input[type="text"],
.contact-form__form input[type="email"]{
    min-height: 45px;
}

.contact-form__form textarea{
    min-height: 213px;
    resize: vertical;
}

.contact-form__form input::placeholder,
.contact-form__form textarea::placeholder{
    font-size: 15px;
    color: #8c8c8c;
}

.contact-form .td--column{
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
}

.contact-form .input-wrap{
    margin: 0 44px 11px 0;
}

input[type="radio"],
input[type="checkbox"]{
    display: none;
}

.contact-form .td--column span{
    display: inline-block;
    padding-left: 41px;
    position: relative;
}

.contact-form .td--column span::before,
.contact-form .td--column span::after{
    content: "";
    display: block;
    height: 4px;
    background-color: #ff4d00;
    position: absolute;
    transform-origin: left;
    opacity: 0;
    transition: 0.4s ease;
}

.contact-form .td--column span::before{
    width: 10px;
    top: 50%;
    left: 4px;
    transform: translateY(-50%) rotate(45deg);
}

.contact-form .td--column span::after {
    width: 19px;
    top: 72%;
    left: 9px;
    transform: translateY(-50%) rotate(-50deg);
}

.contact-form .td--column label{
    position: relative;
}

.contact-form .td--column label::before{
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid #bababa;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-form input[type="radio"]:checked + label span::before,
.contact-form input[type="radio"]:checked + label span::after,
.contact-form input[type="checkbox"]:checked + label span::before,
.contact-form input[type="checkbox"]:checked + label span::after{
    opacity: 1;
}

.form-btn{
    display: block;
    width: 80%;
    max-width: 315px;
    width: min(80%, 315px);
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid #ff4d00;
    padding: 0.89em 0;
    color: #ffffff;
    background-color: #ff4d00;
    transition: 0.4s ease;
}

.form-btn:hover{
    background-color: #ffffff;
    color: #ff4d00;
}

.contact-form .form-btn{
    margin: 66px auto 0;
}

#formWrap{
    padding: 130px 0;
}

.mail-page .contact-form__form{
    margin-top: 0;
}

.mail-page p + .contact-form__form{
    margin-top: 30px;
}

.error_messe{
    margin-top: 20px;
    font-weight: 700;
}

#formWrap h3{
    text-align: center;
    font-size: 45px;
    font-weight: 700;
}

.mail-page .contact-form__form tr,
.mail-page .contact-form__form tr + tr{
    display: table-row;
}

.mail-page .contact-form__form th,
.mail-page .contact-form__form td{
    width: auto;
    display: table-cell;
    padding: 5px 0;
}

.mail-page .contact-form__form td{
    line-break: anywhere;
    max-width: 500px;
}

.btn--row{
    display: flex;
    justify-content: center;
    margin-top: 66px
}

.btn--row .form-btn + .form-btn{
    margin-left: 20px;
}

@media screen and (max-width: 1024px){
    .contact-form__tel{
        justify-content: center;
    }

    .contact-form__tel span:nth-child(1) {
        font-size: 18px;
    }

    .contact-form__tel span:nth-child(2) {
        font-size: 43px;
    }

    .contact-form__tel span:nth-child(3) {
        font-size: 14px;
    }

    .contact-form__form th, 
    .contact-form__form td {
        font-size: 17px;
    }

    .contact-form .input-wrap{
        margin-right: 34px;
    }

    .contact-form .td--column span{
        padding-left: 34px;
    }

    .form-btn{
        font-size: 17px;
    }

    #formWrap{
        padding: 100px 0;
    }

    #formWrap h3{
        font-size: 35px;
    }
}

@media screen and (max-width: 767px){
    .contact-form::before{
        top: 0px;
    }

    .contact-form {
        padding-bottom: 79px;
    }

    .contact-form__tel{
        flex-direction: column;
        margin-top: 30px;
    }

    .contact-form__tel span:nth-child(1) {
        font-size: 16px;
    }

    .contact-form__tel span:nth-child(2) {
        font-size: 33px;
        margin: 5px 0;
    }

    .contact-form__tel a {
        pointer-events: all;
    }

    .contact-form__tel span:nth-child(3) {
        font-size: 13px;
    }

    .contact-form__form{
        margin-top: 30px;
        padding: 6vw 0 70px;
    }

    .contact-form__form form {
        padding: 0 15px;
        margin-top: 5.5vw;
    }

    .contact-form__form th, 
    .contact-form__form td {
        font-size: 15px;
        padding-left: 0;
    }
    .contact-form__form td{
        margin-top: 10px;
    }

    .contact-form__form input::placeholder,
    .contact-form__form textarea::placeholder{
        font-size: 14px;
    }

    .contact-form .input-wrap{
        margin-right: 24px;
    }

    .contact-form .td--column span{
        padding-left: 24px;
    }

    .contact-form .td--column span::before {
        width: 8px;
        left: 2px;
    }

    .contact-form .td--column span::after {
        width: 17px;
        top: 74%;
        left: 6px;
    }

    .contact-form .td--column label::before {
        width: 20px;
        height: 20px;
    }
    .contact-form__form .require,
    .contact-form__form .any{
        padding: 1.5px 16px;
        margin-right: 9px;
    }
    .contact-form__form input[type="text"], .contact-form__form input[type="email"], .contact-form__form textarea{
        padding: 12px;
    }
    .contact-form__form tr + tr{
        margin-top: 25px;
    }

    .form-btn{
        font-size: 15px;
    }

    #formWrap{
        padding: 70px 0;
    }

    .error_messe {
        margin-top: 10px;
    }

    #formWrap h3{
        font-size: 25px;
    }

    .mail-page .contact-form__form form{
        margin-top: 0;
    }

    .mail-page .contact-form__form tr + tr{
        display: block;
        margin-top: 20px;
    }

    .mail-page .contact-form__form th, 
    .mail-page .contact-form__form td {
        width: 100%;
        max-width: none;
        display: block;
        padding: 0;
    }

    .btn--row{
        flex-direction: column;
        margin-top: 66px
    }

    .btn--row .form-btn{
        margin: auto;
    }

    .btn--row .form-btn + .form-btn{
        margin: 20px auto 0;
    }
    .contact-form .form-btn {
        margin: 38px auto 0;
    }
}

/* =====================
    footer
======================== */
.footer{
    text-align: center;
    color: #ffffff;
    padding: 67px 5px 60px;
    background-color: #242324;
}

.footer > span{
    font-size: 28px;
    font-weight: 700;
}

@media screen and (max-width: 1024px){
    .footer > span{
        font-size: 25px;
    }
}

@media screen and (max-width: 767px){
    .footer {
        padding: 27px 5px 100px;
    }

    .mail-page  .footer{
        padding-bottom: 27px;
    }

    .footer > span{
        font-size: 19px;
    }
    .footer-address {
        font-size: 13px;
    }
    .contact-sp a span:first-child{
        font-size: 12px;
        line-height: 1.2;
        margin-top: 2px;
    }
}

/* =====================
    privacy
======================== */
#privacy-policy{
    background-color: #f2f2f2;
}

.privacy{
    padding-top: 66px;
    padding-bottom: 170px;
    margin-top: 70.44px;
    position: relative;
    z-index: 0;
}

.privacy::before{
    content: "PRIVACY POLICY";
    white-space: nowrap;
    color: #e6e6e6;
}

.policy__text-wrap{
    margin-top: 70px;
}

.policy__text-wrap > dl{
    margin-top: 32px;
}

.policy__text-item:not(:first-child){
    margin-top: 47px;
}

.policy__text-item dt{
    font-size: 18px;
}

.policy__signature{
    text-align: right;
    margin-top: 50px;
}

.btn-wrap{
    padding-top: 120px;
    padding-bottom: 120px;
}

.return-btn{
    max-width: 310px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    color: #ffffff;
    margin: auto;
    background-color: #ff4d00;
    transition: 0.4s ease;
    box-shadow: 0 7px 0 #5f5f5f;
}

.return-btn:hover{
    transform: translateY(7px);
    box-shadow: none;
}

@media screen and (max-width: 1024px){
    .policy__text-item dt{
        font-size: 17px;
    }   
}


@media screen and (max-width: 767px){
    .privacy{
        padding-top: 35px;
        padding-bottom: 80px;
        margin-top: 0;
    }
    
    .policy__text-wrap{
        margin-top: 30px;
    }

    .policy__text-item:not(:first-child){
        margin-top: 25px;
    }

    .policy__text-wrap > dl{
        margin-top: 36px;
    }
    
    .policy__text-item dt{
        font-size: 16px;
    }   

    .btn-wrap{
        padding-top: 55px;
        padding-bottom: 60px;
    }    

    .return-btn{
        font-size: 17px;
        max-width: 280px;
    }
    .new_line{
        padding-left: 2.5em;
        text-indent: -3em;
        display: inline-block;
    }
}