@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: rgb(10, 9, 11);
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    height: max-content;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main{
    width: 100%;
    max-width: 1200px;
    height: max-content;
    position: relative;
}
a{
    text-decoration: none;
}
.font_a{
    font-family: "termina", sans-serif;
    font-style: normal;
}
.df{
    display: flex;
}
.df_cl{
    display: flex;
    flex-direction: column;
}
.gr{
    display: grid;
}
.loading_screen{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
    background: white;
    justify-content: center;
    align-items: center;
}
.loading_box{
    width: max-content;
    height: max-content;
    padding: 30px;
    border: 1px solid rgb(255,80,0);
    box-shadow: 2px 2px white, 3px 3px rgb(255,80,0);
    opacity: 0;
    transform: translateY(-30px);
}
.loading_text_row{
    gap: 2px;
}
.loading_text{
    font-size: 20px;
    transform: translateY(-30px);
    opacity: 0;
}
.loading_back{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
    mix-blend-mode: difference;
    transform-origin: center;
}
.main_background{
    position: fixed;
    width: 100%;
    max-width: 1200px;
    height: 100svh;
    overflow: hidden;
}
.section_back_image_box{
    width: 100%;
    height: 100%;
}
.section_back_image_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section_divider{
    width: 100%;
    height: 50px;
    background: white;
    z-index: 1;
}
.section{
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section.section_1{
    z-index: 2;
    background-color: white;
    gap: 20px;
    overflow: hidden;
}
.section_1_title_box{
    width: 100%;
    height: max-content;
    align-items: flex-start;
    position: relative;
}
.section_1_title{
    font-size: 13vw;
    line-height: 1;
    z-index: 1;
}

.section_1_title.title_2,.section_1_title.title_1 .for_main{
    color: rgb(255,80,0);
}
@media all and (min-width:1200px){
    .section_1_title{
        font-size: 10rem;
    }
}
.section_1_title_back{
    position: absolute;
    height: 70%;
    width: 70%;
    top: calc(20% - 50px);
    right: 0px;
    background-image: radial-gradient(transparent 70%, rgb(107, 107, 107));
    background-size: 3px 3px;
}


.section_1_image_box{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: max-content;
    mix-blend-mode: difference;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    gap: 5px;
}
.sec1_image_inside{
    flex: 1;
    height: 0vh;
    transform-origin: bottom;
    background: white;
}

.section_1_logo_box{
    width: 100%;
    flex: 1;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}
.section_1_logo_box img{
    width: 100%;
    height: auto;
    transform-origin: right;
}
.company_name_box{
    position: absolute;
    z-index: 1;
    align-items: center;
    justify-content: center;
}
.company_name_text{
    font-size: 42px;
    color: white;
    z-index: 1;
}
.company_name_back{
    position: absolute;
    font-size: 42px;
    animation: giggle 1s ease infinite;
}
.company_name_back.back_1{
    color: rgb(0,164,255);
    right: -0.5px;
    animation-delay: 0.6s;
}
.company_name_back.back_2{
    color: rgb(255,80,0);
    left: -0.5px;
}
@keyframes giggle {
    0%, 100% {
       transform:translateY(-2px) translateX(2px);
    }
    50% {
       transform:translateY(2px) translateX(-2px);
    }
   }
.trigger_1{
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
}
.trigger_2{
    transform: translateX(300px) scaleX(0);
}
.section.section_2{
    height: 300px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgb(255,80,0), rgb(0,164,255));
    mix-blend-mode: overlay;
    grid-template-columns: 80px 1fr 80px;
    grid-template-rows: 1fr;
}
.section_box{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.section_arrow_box{
    width: 100%;
    height: 100%;
    background-image: url(/src/img/section_arrow.png);
    background-size: 100% 120px;
    background-repeat: repeat;
    animation: for_arrow 2s linear infinite;
}

@keyframes for_arrow{
    0%{
        background-position: 100% 100%;
    }
    100%{
        background-position: 100% calc(100% + 120px);
    }
}
.section_box.sec2.box_1,.section_box.sec2.box_3{
    padding:0 5px;
}
.section.section_3{
    min-height: 100vh;
    background: white;
    padding: 50px 0;
    align-items: center;
    gap: 50px;
}
.section_title_box{
    align-items: center;
    justify-content: center;
    position: relative;
}
.section_3_title{
    font-size: 32px;
    z-index: 1;
}
.section_3_title_sub{
    font-size: 14px;
    z-index: 1;
}
.section_title_inside{
    position: absolute;
    width: 50px;
    height: 50px;
    top: -10px;
    left: -10px;
    animation: for_outside 8s linear infinite;
}
.title_inside_box{
    width: 100%;
    height: 100%;
    border-top: 5px solid rgb(255,80,0,0.1);
    border-left: 5px solid rgb(255,80,0,0.1);
    border-right: 5px solid rgb(0,164,255,0.1);
    border-bottom: 5px solid rgb(0,164,255,0.1);
    animation: for_inside 2s ease-in-out infinite alternate;
}
@keyframes for_outside{
    to{
        transform: rotate(360deg);
    }
}
@keyframes for_inside{
    from{
        transform: scale(0.5);
    }
    to{
        transform: scale(1);
    }
}

.section_3_container{
    width: 100%;
    height: max-content;
    align-items: flex-start;
    position: relative;
}
.section_3_container.container_3{
    align-items: flex-end;
}
.section_3_image_box.box_1{
    width: 80%;
    max-height: 500px;
    overflow: hidden;
    align-items: center;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.video_top{
    width: 100%;
    height: auto;
}
.section_3_image_box.box_2{
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    align-items: flex-start;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.section_3_image_box.box_3{
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    align-items: flex-start;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.section_3_image_box img{
    width: 100%;
    height: auto;
}
.section_3_text_box{
    height: max-content;
    min-height: 30vh;
    background: white;
    padding: 25px 30px;
    z-index: 1;
    gap: 30px;
}
.section_3_text_box.box_1{
    align-self: flex-end;
    width: 80%;
    margin-top: -125px;
}
.section_3_text_box.box_2{
    align-self: center;
    width: 80%;
    margin-top: -75px;
    margin-bottom: -125px;
}
.section_3_text{
    line-height: 1.8em;
}
.section_3_text.text_1{
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 1px;
    position: relative;
}
.section_3_text.text_1::first-letter{
    font-size: 48px;
    color: rgb(255,80,0);
}
.section_3_text.text_1::before{
    content: "";
    position: absolute;
    width: 40%;
    height: 2px;
    bottom: 0;
    right: 0;
    background: rgb(10, 9, 11);
}
.section_3_text.text_2{
    text-align: justify;
}
.section_3_text.text_2 .for_strong{
    color: rgb(255,80,0);
}

.section.section_main_1{
    height: 300px;
    overflow: hidden;
    background: linear-gradient(to right,rgb(255,80,0), rgb(0,164,255),rgb(255,80,0));
    mix-blend-mode: overlay;
    justify-content: space-between;
}
.section_box.secmain_1{
    width: 80px;
    height: 100%;
    padding: 0 5px;
}
.section.section_main{
    min-height: 100vh;
    background: white;
    align-items: center;
    padding: 50px 0;
    gap: 50px;
}
.section_main_title{
    font-size: 32px;
}
.section_main_image_container{
    width: 100%;
    height: max-content;
}
.section_main_image_box{
    flex: 1;
    align-items: center;
}
.section_main_image_box.box_2{
    flex: 1.5;
}
.section_main_image_box img{
    width: 100%;
    height: auto;
}

.section_main_image_box.box_1{
    margin-right: -30px;
    z-index: 1;
    justify-content: space-around;
}
.section_main_image_box.box_1 img,.section_main_image_box.box_3 img{
    border: 5px solid white;
}
.section_main_image_box.box_3{
    margin-left: -30px;
    z-index: 1;
    justify-content: center;
}
.section_main_text_container{
    width: 100%;
    height: max-content;
    align-items: center;
    gap: 100px;
    padding-top: 80px;
}
.section_main_text_box{
    position: relative;
}
.section_main_text_box.box_1{
    padding: 10px 15px;
}
.section_main_text_box.box_1::before{
    content: "";
    position: absolute;
    background: rgb(10, 9, 11);
    bottom: 0;
    right: 0;
    width: 30%;
    height: 2px;
}

.section_main_text.text_1{
    font-size: 24px;
    text-align: justify;
    line-height: 1.8em;
    z-index: 1;
    font-weight: bold;
}
.section_main_text.text_1 .for_strong{
    color: rgb(255,80,0);
    font-weight: bold;
}
.main_text_back{
    position: absolute;
    opacity: 0.05;
}
.main_text_back.back_1{
    width: 300px;
    height: max-content;
    align-items: center;
    top: -100px;
    left: -80px;
    transform: rotate(-20deg);
}
.main_text_back img{
    width: 100%;
    height: auto;
}
.section_main_text_box.box_2{
    width: 100%;
    padding: 50px 15px;
    align-items: center;
    gap: 10px;
    background: rgb(10, 9, 11, 0.05);
}


.section_main_sub{
    font-size: 14px;
    z-index: 1;
    font-weight: bold;
}
.section_main_sub.sub_2{
    font-size: 12px;
    line-height: 1;
    color: rgb(255, 0, 0);
}
.section_main_text.text_2{
    font-size: 36px;
    z-index: 1;
    padding: 10px 15px 5px;
    background: white;
}

.section_main_price_box{
    width: 100%;
    max-width: 700px;
    height: max-content;
    padding: 10px;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
}
.section_main_text.text_3{
    font-size: 10px;
}
.section_main_text_row{
    width: 100%;
    height: max-content;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}
.section_main_label{
    width: 200px;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    background: white;
    font-weight: bold;
}

.section_main_text.text_4,.section_main_text.text_5{
    flex: 1;
    flex-basis: 200px;
    padding: 15px 10px;
    justify-content: center;
    background: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 1.8em;
}
.section_main_text.text_4{
    text-align: center;
}
.section_main_text.text_5{
    text-align: justify;
}
.section_main_text.text_4 .for_strong{
    font-size: 16px;
}
.section_row_border{
    width: 100%;
    height: max-content;
    align-items: center;
    justify-content: center;
    position: relative;
}
.section_row_border::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
}
.section_row_border_text{
    font-size: 12px;
    padding: 5px 10px;
    background: white;
    z-index: 1;
}
.section_main_label.for_after,.section_main_text.for_after{
    border: 1px solid rgb(255,80,0);
}
.work_image_container{
    width: 100%;
    height: max-content;
    flex-wrap: wrap;
    gap: 1px;
    padding: 1px;
    background: rgb(107, 107, 107, 0.5);
}
.work_image_box{
    flex-grow: 1;
    overflow: hidden;
}
.work_image{
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    -o-object-fit: cover;
}

.section.section_4{
    height: 300px;
    overflow: hidden;
    background: linear-gradient(to top, rgb(255,80,0), rgb(0,164,255));
    mix-blend-mode: overlay;
    justify-content: space-between;
}
.section_box.sec4{
    width: 80px;
    height: 100%;
    padding: 0 5px;
}
.section.section_5{
    min-height: 100vh;
    background: white;
    align-items: center;
    padding: 50px 0;
    gap: 50px;
}
.section_5_title{
    font-size: 32px;
}
.section_5_explain_box{
    width: 80%;
    max-width: 700px;
    gap: 5px;
    padding: 5px 15px;
    align-items: center;
}
.section_5_explain{
    font-size: 16px;
    text-align: justify;
    line-height: 1.8em;
}
.swiper-wrapper{
    width: 100%;
    height: 100%;
}
.section_5_image_box{
    width: 50%;
    min-width: 300px;
    height: max-content;
    justify-content: center;
    align-items: center;
}
.showcase_1_image{
    width: 100%;
    height: max-content;
    background-image: url(/src/img/logo_color.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}
.showcase_1_image img{
    width: 100%;
    height: auto;
}
.swiper-pagination{
    bottom: -10px!important;
}
.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}
.swiper-pagination-bullet {
    background: rgb(155, 155, 155);
    height: 20px;
    width: 20px;
}
button.remodal-cancel{
    font-size: 14px;
    background: rgb(0,164,255);
}

.section_5_text_container{
    width: 100%;
    max-width: 700px;
    gap: 5px;
    padding: 5px;
    margin-bottom: 30px;
}
.section_5_divider{
    width: 100%;
    border-top:1px solid rgb(10, 9, 11);
}
.section_5_text_row{
    width: 100%;
    height: max-content;
    align-items: stretch;
    flex-wrap: wrap;
}
.section_5_label{
    width: 150px;
    padding: 15px;
    background: white;
    align-items: center;
    font-size: 14px;
}
.section_5_text{
    flex: 1;
    flex-basis: 300px;
    padding: 15px;
    background: white;
    border-left: 1px solid rgb(10, 9, 11);
    text-align: center;
    line-height: 1.8em;
}
img.modal_image{
    width: 100%;
    height: auto;
}

.size_container{
    width: 100%;
    max-width: 700px;
    gap: 10px;
    padding: 5px;
    align-items: center;
}
.size_title{
    font-size: 16px;
}
.size_table_box{
    width: 100%;
    height: 30vh;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    background: rgb(107, 107, 107);
    gap: 1px;
    padding: 1px;
}
.size_table{
    align-items: center;
    justify-content: center;
    background: white;
}
.size_table.table_1{
    font-weight: bold;
}

.size_explain_box{
    width: 100%;
    gap: 5px;
    padding: 5px;
}
.size_explain_row{
    width: 100%;
    gap: 5px;
    align-items: flex-start;
}
.section.section_6{
    height: 300px;
    overflow: hidden;
    background: linear-gradient(to right, rgb(255,80,0), rgb(0,164,255));
    mix-blend-mode: overlay;
    justify-content: space-between;
}

.section.section_7{
    background: white;
    padding: 50px 0;
    align-items: center;
    gap: 50px;
}
.section_7_title{
    font-size: 32px;
}

.section_7_text_container{
    width: 100%;
    max-width: 700px;
    height: max-content;
    padding: 5px;
    border-top: 1px solid rgb(10, 9, 11);
    border-bottom: 1px solid rgb(10, 9, 11);
}
.section_7_text_box{
    width: 100%;
    height: max-content;
    padding: 5px 10px;
    align-items: center;
}
.section_7_text{
    text-align: justify;
    line-height: 1.8em;
}
.section_7_alert_row{
    width: 100%;
    align-items: flex-start;
    gap: 5px;
    padding: 5px;
}
.alert_label{
    padding: 5px 10px;
    font-size: 14px;
    color: rgb(255,80,0);
}
.section_7_text.text_2{
    font-size: 14px;
    padding: 3px 10px;
}
.privacy_container{
    width: 99%;
    max-width: 700px;
    height: 200px;
    overflow-y: scroll;
    border: 1px solid rgb(255,80,0);
    padding: 5px;
    background: rgb(250, 250, 250);
    gap: 10px;
}
.privacy_container::-webkit-scrollbar{
    background-color: rgb(255, 255, 255);
}
.privacy_container::-webkit-scrollbar-thumb{
    background-color: rgb(255,80,0);
}
.privacy_text{
    text-align: justify;
}
.privacy_text.text_2{
    font-weight: bold;
}
.privacy_text.text_3{
    font-size: 14px;
}
.privacy_row{
    align-items: flex-start;
    gap: 3px;
}

.form_container{
    width: 100%;
    max-width: 700px;
    height: max-content;
    padding: 5px;
}
form{
    gap: 10px;
}
.form_row{
    width: 100%;
    height: max-content;
    padding: 5px;
    gap: 5px;
    flex-wrap: wrap;
}
.label_box{
    width: 130px;
    padding: 5px 10px;
    align-items: center;
    justify-content: space-between;
    background: rgb(250, 250, 250);
}
.form_label{
    font-size: 12px;
}
.for_req{
    font-size: 12px;
    padding: 2px 4px;
    background: white;
}
.for_req.req_1{
    color: rgb(255,80,0);
}
.for_req.req_2{
    color: rgb(0,164,255);
}
.input_box{
    flex: 1;
    flex-basis: 350px;
    padding: 0 5px;
}
input.input_row{
    font-size: 16px;
    padding: 5px;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(10, 9, 11);
    border-radius: 0px;
}
input.input_row:focus{
    outline: none;
}
.form_row_container{
    width: 100%;
    height: max-content;
    gap: 10px;
    padding: 5px;
    border: 1px solid rgb(0,164,255);
    display: none;
}
.form_row_container.active{
    display: flex!important;
}
select,option,textarea{
    font-size: 16px;
}
textarea.text_area{
    width: 100%;
}
.privacy_check_row{
    width: 100%;
    height: max-content;
    padding: 5px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.check_text{
    font-size: 14px;
}
.submit_row {
    width: 100%;
    height: max-content;
    padding: 5px;
    gap: 5px;
    justify-content: center;
}
.submit_button{
    border: 1px solid rgb(255,80,0);
    background: white;
    cursor: pointer;
}
.submit_button.no_check{
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.submit_text{
    padding: 10px 15px;
}

.section.section_ad{
    padding: 50px 10px;
    align-items: center;
    background: rgb(255, 255, 255);
    gap: 30px;
}
.banner_container{
    width: 100%;
    max-width: 600px;
    height: max-content;
    background: white;
    position: relative;
    transition: opacity ease 0.25s;
    gap: 5px;
}
.banner_container:hover{
    opacity: 0.8;
}
.banner_container img{
    width: 100%;
    height: auto;
    border: 1px solid rgb(107, 107, 107);
}
.banner_text_box{
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}
.banner_text_box::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgb(107, 107, 107, 0.5);
}
.banner_text{
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bold;
    background: white;
    z-index: 1;
    padding: 0 10px;
}

.footer {
    width: 100%;
    max-width: 1200px;
    height: 50vh;
    z-index: 1;
    background: rgb(255, 255, 255);
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}
.footer_box{
    align-items: center;
}

.footer_logo_box{
    width: 200px;
    height: max-content;
}
.footer_logo_box img{
    width: 100%;
    height: auto;
}
.footer_title{
    font-size: 16px;
}

.footer_sns_box{
    align-items: center;
    gap: 30px;
}
.footer_sns{
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}
.footer_sns img{
    height: 100%;
    width: auto;
}
.copy_right{
    position: absolute;
    bottom: 10px;
    font-size: 10px;
}
@media all and (max-width:500px){
    .section.section_1{
        padding-top: 50px;
        gap: 4px;
    }
    .section_1_title_box{
        gap: 20px;
    }
    .section_1_title{
        font-size: 12vw;
        font-weight: bold;
    }
    .section_1_title.title_1 .for_main{
        font-weight: bold;
    }
    .section_1_image_box{
        height: max-content;
        gap: 2px;
    }
    .section_1_logo_box{
        padding: 50px 0;
    }
    .company_name_text,.company_name_back{
        font-size: 24px;
    }
    .section.section_2,.section.section_4,.section.section_6,.section.section_main_1{
        height: 200px;
    }
    .section_3_text_box{
        gap: 10px;
    }
    .section_3_text_box.box_1{
        width: 90%;
    }
    .section_3_text_box.box_2{
        width: 90%;
    }
    .section_3_text.text_1{
        font-size: 18px;
        white-space: nowrap;
        margin-bottom: 20px;
    }
    .section_3_text.text_1::first-letter{
        font-size: 22px;
    }
    .section_3_text.text_2{
        font-size: 14px;
    }
    .section_3_image_box.box_1{
        width: 90%;
    }
    .section_main_image_box.box_2{
        flex: 2;
    }
    .section_main_image_box.box_1{
        margin-right: -40px;
    }
    .section_main_image_box.box_1 img,.section_main_image_box.box_3 img{
        border: 3px solid white;
    }
    .section_main_image_box.box_3{
        margin-left: -40px;
    }
    .section_5_text_container{
        gap: 0;
    }
    .section_5_text{
        border-left: none;
    }
    .section_5_label{
        border-bottom: 1px solid rgb(10, 9, 11);
    }
    .section_3_title,.section_5_title,.section_7_title{
        font-size: 24px;
    }
    .section_main_text.text_1{
        font-size: 20px;
    }
    .swiper-pagination-bullet {
        height: 10px;
        width: 10px;
    }
    .alert_label{
        padding: 5px;
        font-size: 12px;
    }
    .section_5_explain_box{
        width: 90%;
    }
    .size_explain_text,.size_label,.size_table{
        font-size: 14px;
    }
    .work_image_box{
        max-height: 120px;
        flex: 1;
        flex-basis: 120px;
    }
    .work_image{
        object-fit: cover!important;
    }
}
