@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: rgb(16, 16, 16);
}
html,body{
    width: 100%;
    height: max-content;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    background: rgb(229, 232, 236);
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.df{
    display: flex;
}
.df_cl{
    display: flex;
    flex-direction: column;
}
.gr{
    display: grid;
}
.font_a{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.content_background{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    background-image:  linear-gradient(rgb(255, 255, 255, 0.4) 3.1px, transparent 3.1px), linear-gradient(to right, rgb(255, 255, 255, 0.4)  3.1px, transparent 3.1px);
    background-size: 50px 50px;
    border: 2px solid white;
    z-index: -1;
}

.content_back_line{
    width: 100%;
    height: 100%;
    position: relative;
}
.content_back_line.line_1{
    background: rgb(255, 255, 255, 0.6);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.content_back_line.line_6{
    background: rgb(255, 255, 255, 0.6);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.section{
    width: 100%;
    position: relative;
    z-index: 2;
}

.header{
    width: 100%;
    height: 120px;
    z-index: 99;
    align-items: flex-end;
}
.header_container{
    width: 100%;
    padding-left: 50px;
    padding-right: 215px;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255);
    position: relative;
}
.header_logo_container{
    height: 80px;
    width: max-content;
    align-items: center;
}
.header_logo_container img{
    height: 100%;
    width: auto;
}
.header_menu_container{
    gap: 35px;
}
.header_menu_link{
    position: relative;
}
.header_menu_link.is_active{
    pointer-events: none;
}
.header_menu_link::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: rgb(18,77,137);
    transform: scaleX(0);
    transition: transform ease 0.25s;
    transform-origin: right;
}
.header_menu_link:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.header_menu_link.is_active::before{
    transform: scaleX(1);
}
.header_contact_link{
    width: 180px;
    height: 120px;
    position: absolute;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    background: rgb(18,77,137);
    transition: filter ease 0.25s;
}
.header_contact_link:hover{
    -webkit-filter: grayscale(0.6);
    filter: grayscale(0.6);
}
.header_menu_text.text_1{
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
}
.header_menu_text.text_2{
    font-size: 14px;
    color: white;
}
main{
    width: 100%;
    height: max-content;
    overflow: hidden;
    z-index: 1;
}

.section_link_box{
    width: max-content;
    align-items: center;
    overflow: hidden;
    position: relative;
    gap: 20px;
    padding: 10px 30px;
    border-radius: 8px;
    border: 2px solid white;
}
.section_link_box::before{
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform ease-in 0.35s;
    transform: scaleX(0);
    transform-origin: left;
}
.section_link_box.box_1::before{
    background: linear-gradient(to right, rgb(255, 255, 255, 0.6) 50%,white 50%);
}
.section_link_box.box_2::before{
    background: linear-gradient(to right, rgb(18,77,137, 0.6) 50%,rgb(18,77,137) 50%);
}
.section_link_box:hover::before{
    transform: scaleX(1);
}
.section_link_arrow_box{
    width: max-content;
    padding: 12px;
    padding-right: 14px;
    border-radius: 50%;
    transition: transform ease 0.2s, background ease 0.2s;
}
.section_link_text{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 3px;
}
.section_link_text.text_2{
    color: white;
}
.section_link_arrow{
    width: 8px;
    min-width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
}
.section_link_arrow.arrow_2{
    border-color: white;
}
.section_link_box:hover .section_link_arrow_box{
    transform: translateX(5px);
}

.section.section_contact{
    padding: 50px;
    align-items: center;
    background: rgb(18,77,137, 0.6);
    margin: 50px 0;
}
.section_contact_container{
    width: 100%;
    max-width: 1200px;
    height: max-content;
    min-height: 40vh;
    grid-template-columns: 1fr 1.5fr;
    grid-template-rows: 1fr;
    gap: 2px;
}
.section_contact_box{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: rgb(229, 232, 236);
}
.section_contact_box.box_2{
    background: white;
}
.section_contact_title_box,.section_contact_text_box{
    width: 100%;
    flex: 1;
    padding: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.section_contact_text_box{
    gap: 10px;
}
.section_contact_title_box::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 2px;
    background: rgb(18,77,137);
}
.section_contact_text_box.box_2{
    border-top: 2px solid rgb(18,77,137);
}
.section_contact_title{
    font-size: 48px;
    letter-spacing: 3px;
}
.section_contact_text.text_1{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.phone_border{
    width: 2px;
    height: 60%;
    background: rgb(18,77,137);
    position: absolute;
    bottom: 0;
}
.section_contact_column{
    flex: 1;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.phone_icon{
    width: max-content;
    height: 35px;
}
.phone_icon img{
    width: auto;
    height: 100%;
}
.contact_phone,.contact_phone a{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}


.footer{
    width: 100%;
    height: max-content;
    min-height: 50vh;
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, max-content);
    grid-template-areas: 
    "grid1 grid1"
    "grid2 grid3";
    gap: 2px;
    position: relative;
}
.footer::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(255, 255, 255);
}
.footer_content_box{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: rgb(18,77,137);
    padding: 10px;
}
.footer_content_box.box_1{
    grid-area: grid1;
    justify-content: center;
    align-items: center;
}
.footer_content_box.box_2{
    grid-area: grid2;
    justify-content: center;
    align-items: center;
    background: white;
    gap: 30px;
}
.footer_content_box.box_3{
    grid-area: grid3;
}

.footer_nav_container{
    width: 100%;
    max-width: 1200px;
    height: max-content;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    padding: 40px 0;
}
.footer_nav{
    position: relative;
    overflow: hidden;
}
.footer_nav.is_active{
    pointer-events: none;
}
.footer_nav::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform ease 0.25s;
}
.footer_nav:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.footer_nav.is_active::before{
    transform: scaleX(1);
}

.footer_nav_text{
    font-size: 16px;
    font-weight: bold;
    padding: 5px;
    color: white;
}
.footer_logo_box{
    width: 200px;
    height: max-content;
    padding: 10px;
}
.footer_logo_box img{
    width: 100%;
    height: auto;
}
.footer_info_text.text_1{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
}
.footer_text_container{
    flex: 1;
    align-items: center;
}
.footer_text_box{
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
}
.footer_text_row{
    width: 100%;
    align-items: flex-start;
    gap: 10px;
}
.address_container{
    width: 100%;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.address_column{
    flex: 1;
    flex-basis: 300px;
    padding: 5px 10px;
    align-items: flex-start;
    gap: 5px;
}
.footer_map_container{
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden;
    padding: 5px 0;
}
.footer_map{
    width: 100%;
    height: 100%;
}
.footer_text_label,.footer_text{
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
}
.footer_text_label{
    width: 120px;
    min-width: 120px;
    padding: 5px 10px;
}
.footer_text.type_1{
    font-weight: 600;
    text-decoration: underline;
}
.copyright_box{
    width: 100%;
    height: max-content;
    justify-content: flex-end;
    gap: 10px;
}
.privacy_link{
    text-decoration: underline;
}
.copyright,.privacy_link,.copyright_divider{
    font-size: 14px;
    color: white;
}

.page_mover{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgb(18,77,137);
    z-index: 1000;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.page_mover.is_active{
    transform: scaleX(1);
    transform-origin: right;
}

.page_loader{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgb(18,77,137);
    z-index: 1000;
}
.page_loader.is_active{
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s cubic-bezier(0.860, 0.070, 0.000, 1.000);
    transition-delay: 0.5s;
}

.loading_screen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    background: rgb(18,77,137);
    align-items: center;
    justify-content: center;
    transform: translateZ(0.01px);
}
.loading_screen.loaded{
    opacity: 0;
    visibility: hidden;
}
.loading_inside{
    width: 150px;
    height: max-content;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.loading_inside img{
    width: 100%;
    height: auto;
}

@media all and (max-width:1200px){

}
@media all and (max-width:900px){
    .header_container{
        flex-direction: column;
        padding-left: 10px;
        padding-right: 165px;
        justify-content: center;
    }
    .header_logo_container{
        align-self: flex-start;
        height: 70px;
    }
    .section_contact_container{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .section_contact_text.text_1{
        font-size: 14px;
    }
    .footer_content_box.box_2{
        flex-direction: column;
        gap: 5px;
    }
    .footer_text_label{
        width: 100px;
        min-width: 100px;
    }
    .footer_text_label,.footer_text,.footer_nav_text{
        font-size: 14px;
    }
    .copyright,.privacy_link,.copyright_divider{
        font-size: 12px;
    }
}
@media all and (max-width:768px){
    .header_menu_container{
        display: none;
    }
    .header{
        height: 80px;
    }
    .header_logo_container{
        height: 60px;
    }
    .mb_menu_trigger{
        position: fixed;
        width: 50px;
        height: 65px;
        top: 5px;
        right: 10px;
        z-index: 101;
        cursor: pointer;
        mix-blend-mode: difference;
    }
    .mb_menu_trigger_inside{
        width: 100%;
        height: 50px;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .trigger_line{
        width: 100%;
        height: 2px;
        background: rgb(255, 255, 255);
        position: absolute;
        transition: transform ease 0.2s;
    }
    .trigger_line.line_1{
        top: 15px;
    }
    .trigger_line.line_1.is_active{
        transform: translateY(7px) rotate(180deg);
    }
    .trigger_line.line_2{
        bottom: 15px;
    }
    .trigger_line.line_2.is_active{
        transform: translateY(-7px);
    }
    .mb_menu_trigger_text{
        width: 100%;
        height: max-content;
        position: relative;
        align-items: center;
        overflow: hidden;
    }
    .trigger_text{
        font-size: 14px;
        letter-spacing: 2px;
        color: rgb(255, 255, 255);
        transition: transform ease 0.2s;
    }
    .trigger_text.text_1.is_active{
        transform: translateY(-100%);
    }
    .trigger_text.text_2{
        position: absolute;
        transform: translateY(100%);
    }
    .trigger_text.text_2.is_active{
        transform: translateY(0);
    }
    .mb_menu{
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgb(18,77,137,0.3);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
        transform: translateX(-100%);
        transition: transform ease 0.25s;
    }
    .mb_menu_inside{
        width: calc(100% - 70px);
        height: 100%;
        background: rgb(18,77,137);
        transform: translateX(-100%);
        transition: transform ease 0.25s;
        transition-delay: 0.15s;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
    }
    .mb_menu.is_active,.mb_menu_inside.is_active{
        transform: translateX(0);
    }
    .mb_menu_row{
        width: 100%;
        height: max-content;
        padding: 0 10px;
        position: relative;
    }
    .mb_menu_link{
        width: 100%;
        height: max-content;
        align-items: flex-start;
    }
    .mb_menu_link_text{
        font-size: 28px;
        font-weight: bold;
        color: white;
    }
    .mb_menu_link_sub{
        font-size: 16px;
        color: white;
    }
    .mb_menu_cover{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgb(18,77,137);
        transition: transform ease-out 0.35s;
    }
    .mb_menu_cover.is_active{
        transform: scaleY(0);
        transform-origin: bottom;
        transition-delay: calc(var(--i) * 1s);
    }
    .mb_menu_arrow{
        position: absolute;
        height: 50%;
        width: 50px;
        right: 20px;
        top: 25%;
        align-items: center;
        justify-content: flex-end;
        transform: scaleX(0);
        transition: transform ease 0.25s;
    }
    .mb_menu_arrow::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        top: calc(50% - 0.5px);
        left: 0;
        background: white;
    }
    .mb_arrow_inside{
        width: 15px;
        height: 15px;
        border-top: 1px solid white;
        transform: translateX(-2px) rotate(45deg);
    }
    .mb_menu_arrow.is_active{
        transform: scaleX(1);
        transition-delay: calc(var(--i) * 1.1s);
        transform-origin: left;
    }
}
@media all and (max-width:524px){
    .content_background{
        transform: rotate(10deg) scale(1.2);
        animation-duration: 60s;
    }
    .section.section_contact{
        padding: 10px;
    }
    .contact_phone,.contact_phone a{
        font-size: 18px;
        text-align: center;
    }
    .footer{
        min-height: none;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, max-content); 
        grid-template-areas: 
        "grid1"
        "grid2"
        "grid3";
    }
    .footer_nav_container{
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
    }
    .footer_content_box.box_2{
        flex-direction: row;
    }
    .footer_logo_box{
        width: 130px;
    }
    .footer_info_text.text_1{
        font-size: 14px;
    }
    .copyright_box{
        justify-content: center;
    }
    .footer_text a{
        color: white;
    }
    .mb_menu_link_text{
        font-size: 24px;
    }
    .mb_menu_link_sub{
        font-size: 14px;
    }
}
@media all and (min-width:768px){
    .mb_menu_trigger,.mb_menu{
        display: none;
    }
}
