@charset "UTF-8";

/*====================================
	base
====================================*/
#content {
    opacity: 0;
    transform: translateY(100vh); /* 画面外の下に配置 */
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}
#content.show {
    opacity: 1;
    transform: translateY(0); /* コンテンツが上にスライドして表示される */
}

/*====================================
	loading
====================================*/
/* ページ全体のローディング画面のスタイル */
#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #FCA510;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: transform 1s ease-in-out;
}

#loading .loading_logo {
    margin-bottom: 220px;
    position: relative;
}
    #loading .loading_logo img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
    }
    #loading .loading_logo::before {
        content: "";
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -100%);
        width: 0;
        height: 0;
        border-left: 91vw solid transparent;
        border-right: 91vw solid transparent;
        border-top: 91vw solid #00164F;
    }
    #loading .loading_logo .ttl {
        margin-top: 50px;
        position: relative;
    }
    #loading .loading_logo .ttl::after {
        content: '';
        position: absolute;
        background: url(../img/loading_kasai.png) center no-repeat;
        top: 0;
        right: -152px;
        width: 117px;
        height: 131px;
        background-size: 100%;
    }
    #loading .loading_logo .ttl::after {
        content: '';
        position: absolute;
        background: url(../img/loading_kasai.png) center no-repeat;
        top: 0;
        right: -152px;
        width: 117px;
        height: 131px;
        background-size: 100%;
    }

#loading .loading_area {
    width: 100%;
}
/* プログレスバーのコンテナ */
#progress-bar-container {
    width: 41%;
    height: 10px;
    background-color: #FFB942;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
}

/* プログレスバー本体 */
#progress-bar {
    height: 100%;
    width: 0%;
    background-color: #DC8E09;
    transition: width 0.3s ease;
}

/* ローディングパーセントのスタイル */
#loading-text {
    font-family: montserrat, sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 26px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #DC8E09;
    text-align: center;
}

#menu {
    display: none;
}




/*====================================
	fv
====================================*/
 #fv {
    position: relative;
    width: 100%;
    height: 100vh;
 }
    #fv .slick-slide {
        height: 100vh;
        overflow: hidden;
    }
    #fv .slider-4, .slider-4 li {
        height: 100vh; 
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #fv img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0px 0px 100px 0px;
        margin: 0 auto;
    }
    #fv img.pc {
        display: block;
    }
    #fv img.sp {
        display: none;
    }
    #fv .text_area {
        position: absolute;
        left: 13%;
        bottom: 11vh;
    }
        #fv .text_area span.sub {
            font-family: montserrat, sans-serif;
            font-weight: 900;
            font-style: italic;
            color: #fff;
            font-size: 40px;
            letter-spacing: 0.1em;
        }

/*====================================
	chosen
====================================*/
#chosen {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 355px;
}
#chosen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 86%;
    height: 100%;
    background-color: #F5F5F5;
    z-index: -1;
}
    #chosen h2 {
        color: #FCA510;
        margin-bottom: 110px;
    }
    /* #chosen h2:first-of-type {
        margin-bottom: 0;
    } */
    #chosen .text_area {
        width: 50%;
        margin-bottom: 50px;
    }
        #chosen .text_area h3 {
            margin-bottom: 55px;
            font-size: 30px;
            letter-spacing: 0.2em;
        }
        #chosen .text_area p {
            font-size: 18px;
            letter-spacing: 0.05em;
        }

    #chosen .box {
        width: 62%;
        display: flex;
        justify-content: space-between;
    }
        #chosen .item {
            position: relative;
            display: block;
            width: calc((100% - 12px) / 3);
            border-radius: 5px;
            /* box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1); */
            text-align: center;
            padding: 20px;
            background-color: #fff;
            transition: color 0.5s ease;
        }
        #chosen .item:hover {
            box-shadow: unset;
            /* transform: translateY(3px); */
        }
        #chosen .item:hover::before {
            transform: scaleX(1);
            transform-origin: left;
          }
        #chosen .item::before {
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            background: #CB0C00;
            transform: scaleX(0);
            transform-origin: right;
            transition: all 0.5s ease;
            transition-property: transform;
            border-radius: 5px;
        }
        #chosen .item:hover::after {
            content: '';
            position: absolute;
            background: url(../img/icon_arrow_1.svg) center no-repeat;
            top: 10px;
            right: 10px;
            width: 14px;
            height: 14px;
        }
            #chosen .item h4 {
                font-size: 24px;
                letter-spacing: 0.1em;
                line-height: 2;
                transition: 0.3s;
            }
            #chosen .item:hover h4{
                color: #fff;
                position: relative;
                z-index: 2;
            }
            #chosen .item span {
                font-family: montserrat, sans-serif;
                font-weight: 900;
                font-style: italic;
                color: #CB0C00;
                display: block;
                margin-bottom: 24px;
                font-size: 11px;
                letter-spacing: 0.15em;
                transition: 0.3s;
            }
            #chosen .item:hover span {
                color: #fff;
                position: relative;
                z-index: 2;
            }
            #chosen .item p {
                font-size: 15px;
                line-height: 1.5;
                color: #757171;
                transition: 0.3s;
            }
            #chosen .item:hover p{
                color: #fff;
                position: relative;
                z-index: 2;
            }

        #chosen .pic {
            position: absolute;
        }
        #chosen .pic.kasai {
            left: 0;
            bottom: 0;
            width: 26%;
        }
        #chosen .pic.sagyou {
            right: 0;
            bottom: -335px;
            width: 49%;
            z-index: -1;
        }
        #chosen .pic.sagyou .simpleParallax {
            width: auto;
        }
            #chosen .pic img {
                display: block;
                /* width: 100%; */
                max-width: 100%;
            }
            #chosen .pic.pic.sagyou img {
                margin-left: auto;
            }
            #chosen .pic.sagyou img.pc {
                display: block;
            }
            #chosen .pic.sagyou img.sp {
                display: none;
            }

/*====================================
	why
====================================*/
#why {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 105px;
    width: 100%;
    background: 
                linear-gradient(to right, #FCA510 65%, #fff 35%) 50% 0% / 100% 50% no-repeat, /* 上半分のグラデーション */
                #F5F5F5 50% 50% / 100% 50% no-repeat;
}
#why::after {
    content: '';
    position: absolute;
    bottom: -104px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #F5F5F5 transparent transparent transparent;
    border-width: 105px 100vw 0px 0px;
}
    #why h2 {
        color: #fff;
    }
    #why .sub_ttl {
        margin-bottom: 60px;
    }
    #why .item {
        display: flex;
        flex-wrap: wrap;
        border-radius: 50px 0px 50px 0px;
        margin-bottom: 25px;
        background-color: #fff;
    }
    #why .item:last-child {
        margin-bottom: 0;
    }
        #why .item .txt {
            width: 49%;
            padding: 114px 45px 45px;
        }
            #why .item .txt h4 {
                font-size: 24px;
                font-weight: 900;
                line-height: 2;
                letter-spacing: 0.05em;
                color: #CB0C00;
                margin-bottom: 20px;
            }
            #why .item .txt p {
                font-size: 18px;
                line-height: 2;
                letter-spacing: 0.05em;
            }
        /* .parallax-container {
            position: relative;
            width: 51%;
            height: auto;
            overflow: hidden; 
        }
        #why .item img {
            display: block;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, 0); 
            width: 100%; 
            height: auto;
            will-change: transform; 
        } */
        #why .item .simpleParallax {
            width: 51%;
            position: relative;
         }
            #why .item .simpleParallax::before {
                content: '';
                position: absolute;
                background: url(../img/icon_1.svg) bottom no-repeat;
                bottom: 0;
                left: 0;
                width: 222px;
                height: 135px;
                background-size: contain;
                z-index: 10;
            }
            #why .item:nth-of-type(2) .simpleParallax::before {
                background: url(../img/icon_2.svg) bottom no-repeat;
                width: 271px;
                height: 123px;
                background-size: contain;
            }
            #why .item:nth-of-type(3) .simpleParallax::before {
                background: url(../img/icon_3.svg) bottom no-repeat;
                width: 271px;
                height: 123px;
                background-size: contain;
            }
   #why .item img {
    display: block;
    height: -webkit-fill-available;
    object-fit: cover;
}

/*====================================
	flow
====================================*/
#flow {
    position: relative;
    padding-top: 255px;
    padding-bottom: 125px;
}
#flow::before {
    content: '';
    position: absolute;
    background: url(../img/icon_fire.svg) center no-repeat;
    top: 0;
    right: 0;
    width: 43vw;
    height: 37vw;
    background-size: contain;
    z-index: -1;
}
#flow::after {
    content: '';
    position: absolute;
    bottom: -94px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    border-width: 95px 100vw 0px 0px;
}

    #flow h2 {
        color: #00164F;
    }

    #flow .text_area {
        width: 58%;
        margin-top: 96px;
        margin-bottom: 96px;
    }
        #flow .text_area p {
            font-size: 18px;
            line-height: 2;
            letter-spacing: 0.05em;
        }


    #flow .img_area {
        width: 100%;
    }
        #flow .img_area img {
            width: 100%;
        }
        #flow .img_area img.pc {
            display: block;
        }
        #flow .img_area img.sp {
            display: none;      
        }


/*====================================
	contact
====================================*/
#contact {
    position: relative;
    padding-top: 175px;
    padding-bottom: 165px;
    background: url(../img/bg_contact.png) top no-repeat;
    width: 100%;
    height: 100%;
    background-size: 100%;
    text-align: center;
}
#contact .c-arrow-link--icon {
    right: 40px;
    width: 30px;

}
#contact .c-arrow-link--icon:before,
#contact .c-arrow-link--icon:after {
    font-size: 40px;
}
    #contact h2 {
        color: #fff;
        justify-content: center;
    }
    #contact .sub_ttl {
        color: #fff;
        font-weight: 800;
        font-size: 40px;
        letter-spacing: 0.2em;
        justify-content: center;
    }
    #contact .contact_btn {
        display: flex;
        justify-content: center;
        margin-top: 100px;
    }
    #contact .contact_btn .btn {
        width: 400px;
    }
    #contact .contact_btn .btn:first-of-type {
        margin-right: 15px;
    }
        #contact .contact_btn .btn a {
            padding: 32px;
            font-size: 22px;
            letter-spacing: 0.05em;
        }


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

/*====================================
	fv
====================================*/

#fv .text_area {
    left: 10%;
}
    #fv .text_area span.sub {
        font-size: 30px;
    }

/*====================================
	chosen
====================================*/
#chosen .box {
    width: 70%;
}

/*====================================
	why
====================================*/
#why .item .txt {
    padding: 20px 30px;
}


/*====================================
	contact
====================================*/
#contact {
    padding-top: 100px;
    padding-bottom: 100px;
}
    #contact .sub_ttl {
        font-size: 30px;
    }
    #contact .contact_btn {
        display: flex;
        justify-content: center;
        margin-top: 100px;
    }
    #contact .contact_btn .btn {
        width: 300px;
    }
    #contact .contact_btn .btn:first-of-type {
        margin-right: 15px;
    }
        #contact .contact_btn .btn a {
            padding: 26px;
            font-size: 20px;
        }

}

/*====================================
	chosen
====================================*/
@media only screen and (max-width: 1200px) {

 #chosen .text_area {
    width: 80%;
}
}




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

/*====================================
	loading
====================================*/
/* #loading {
    justify-content: flex-start;
} */
#loading .loading_logo {
    width: 60%;
    margin-bottom: 75px;
}
    #loading .loading_logo::before {
        border-left: 91vw solid transparent;
        border-right: 91vw solid transparent;
        border-top: 91vw solid #00164F;
    }
    #loading .loading_logo img.logo {
        width: 32px;
    }
    #loading .loading_logo .ttl {
        margin-top: 20px;
    }
    #loading .loading_logo .ttl::after {
        right: -55px;
        width: 40px;
        height: 52px;
    }

#loading .loading_area {
    width: 100%;
}
#progress-bar-container {
    width: 60%;
    height: 4px;
}


#loading-text {
    margin-bottom: 10px;
    font-size: 16px;
}


/*====================================
	fv
====================================*/
#fv img {

}
    #fv img.pc {
        display: none;
    }
    #fv img.sp {
        display: block;
    }
    #fv .text_area {
        left: 20px;
    }
        #fv .text_area span.sub {
            font-size: 20px;
        }


/*====================================
	chosen
====================================*/
#chosen {
    padding-top: 25px;
    padding-bottom: 50px;
    margin-bottom: 0;
}
#chosen::before {
    width: 100%;
    height: calc(100% - 105px);
    top: 105px;
}
#chosen .wrap {
    padding-bottom: 200px;
}
    #chosen h2 {
        margin-bottom: 75px;
    }

    #chosen .text_area {
        width: 100%;
        margin-bottom: 30px;
    }
        #chosen .text_area h3 {
            margin-bottom: 25px;
            font-size: 24px;
        }
        #chosen .text_area p {
            font-size: 14px;
        }

    #chosen .box {
        width: 100%;
    }
        #chosen .item {
            width: calc((100% - 15px) / 3);
            background-color: #CB0C00;
        }
        #chosen .item::before {
            top: 7px;
            right: 7px;
            width: 10px;
            height: 10px;
        }
            #chosen .item h4 {
                font-size: 18px;
                letter-spacing: 0.15em;
                color: #fff;
                line-height: 1.2;
                margin-bottom: 5px;
            }
            #chosen .item span {
                color: #fff;
                margin-bottom: 0;
                font-size: 9px;
                letter-spacing: 0.1em;
            }
            #chosen .item p {
                display: none;
            }

        #chosen .pic.kasai {
            width: 30%;
        }
        #chosen .pic.sagyou {
            right: 0;
            bottom: 50px;
            width: 96%;
        }
            #chosen .pic.sagyou img {
                margin-left: auto;
            }
            #chosen .pic.sagyou img.pc {
                display: none;
            }
            #chosen .pic.sagyou img.sp {
                display: block;
            }


/*====================================
	why
====================================*/
#why {
    padding-top: 120px;
    padding-bottom: 105px;
    background: linear-gradient(to bottom, #FCA510 50%, #F5F5F5 50%);
}
#why::after {
    bottom: -49px;
    border-width: 50px 100vw 0px 0px;
}
    #why .sub_ttl {
        margin-bottom: 25px;
    }
    #why .item {
        margin-bottom: 20px;
    }
        #why .item .simpleParallax::before {
            width: 124px;
            height: 76px;
        }
        #why .item:nth-of-type(2) .simpleParallax::before {
            width: 144px;
            height: 76px;
        }
        #why .item:nth-of-type(3) .simpleParallax::before {
            width: 144px;
            height: 76px;
        }
        #why .item .txt {
            width: 100%;
            padding: 20px 30px;
        }
            #why .item .txt h4 {
                font-size: 18px;
                margin-bottom: 5px;
            }
            #why .item .txt p {
                font-size: 14px;
            }
        #why .item .simpleParallax {
            width: 100%;
        }


/*====================================
	flow
====================================*/
#flow {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
}
#flow::before {
    background: url(../img/icon_fire_sp.svg) center no-repeat;
    right: 20px;
    width: 242px;
    height: 182px;
}
#flow::after {
    bottom: -49px;
    border-width: 50px 100vw 0px 0px;
}
    #flow .text_area {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
        #flow .text_area p {
            font-size: 14px;
        }

        #flow .img_area img.pc {
            display: none;
        }
        #flow .img_area img.sp {
            display: block;
        }


/*====================================
	contact
====================================*/
#contact {
    padding-top: 90px;
    padding-bottom: 50px;
    background: url(../img/bg_contact_sp.png) top no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
#contact .c-arrow-link--icon {
    right: 20px;
    width: 20px;

}
#contact .c-arrow-link--icon:before,
#contact .c-arrow-link--icon:after {
    font-size: 30px;
}
    #contact .sub_ttl {
        font-size: 21px;
        line-height: 1.2;
    }
    #contact .contact_btn {
        margin-top: 30px;
        flex-wrap: wrap;
    }
    #contact .contact_btn .btn {
        width: 72%;
    }
    #contact .contact_btn .btn:first-of-type {
        margin-right: 0;
        margin-bottom: 20px;
    }
        #contact .contact_btn .btn a {
            padding: 15px;
        }

}

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

    #why .item .simpleParallax {
        width: 100%;
        height: 250px;
    }
}
