@charset "UTF-8";
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-style: normal;
    color: rgb(19, 16, 16);
}
html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    height: max-content;
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.df{
    display: flex;
}
.df_cl{
    display: flex;
    flex-direction: column;
}
.gr{
    display: grid;
}
.background_container{
    width: 100%;
    height: 100vh;
    background-color: rgb(239, 249, 255);
    position: fixed;
    top: 0;
    z-index: -1;
    overflow: hidden;
    opacity: 0.7;
}
.background_filter{
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.background_container svg{
    position: absolute;
    bottom: 0;
    filter: drop-shadow(0 -10px rgb(82, 38, 0));
    fill: #228b22;
    z-index: 1;
}
.background_inside{
    position: absolute;
}
.background_inside.inside_1{
    width: 40vh;
    height: 40vh;
    background: rgb(255, 209, 117);
    top: -100px;
    left: -100px;
    box-shadow: 0 0 20px 10px rgb(255, 209, 117), 0 0 100px 50px rgb(237, 247, 97);
    border-radius: 50%;
}
.background_inside.inside_2{
    width: max-content;
    height: 80%;
    right: 0;
    bottom: 0;
}
.background_inside.inside_2 img{
    height: 100%;
    width: auto;
}
.background_inside.inside_3{
    width: 100%;
    height: max-content;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 30%, rgb(156, 81, 0) 30%);
}
.background_inside.inside_3 img{
    width: 100%;
    height: auto;
}
header{
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 150px;
    padding: 20px 80px 0;
}
.header_container{
    width: 100%;
    height: 100%;
    border-radius: 100vh;
    padding: 0 30px;
    justify-content: space-between;
    background: linear-gradient(to bottom, transparent 60%, rgb(255, 255, 255) 60%);
}
.header_logo_box{
    height: 100%;
    width: max-content;
    padding: 5px;
    z-index: 1;
}
.header_logo_box img{
    height: 100%;
    width: auto;
}
.header_nav_container{
    height: 100%;
    gap: 50px;
    padding: 5px;
    align-items: flex-end;
}
.header_nav{
    width: max-content;
    padding: 5px;
    gap: 5px;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: opacity ease 0.3s;
}
.header_nav.nav_1{
    height: 80%;
}
.header_nav.nav_2{
    height: 100%;
    padding: 10px 10px 5px;
    background: rgb(245, 102, 102);
}
.header_nav.nav_2::before{
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid white;
}

.header_nav img{
    height: 70%;
    width: auto;
    transition: transform cubic-bezier(0.075, 0.82, 0.165, 1) 1.75s;
}
.header_nav:hover img{
    transform: scale(0.9);
}
.header_nav_text{
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: bold;
}
.header_nav_text.text_2{
    color: white;
}
main{
    width: 100%;
    height: max-content;
    overflow: hidden;
    padding-bottom: 50px;
}
.section{
    width: 100%;
    position: relative;
}
.section.section_contact{
    padding: 40px 80px;
    align-items: center;
}
.section_contact_container{
    width: 100%;
    max-width: 1000px;
    height: max-content;
    padding: 40px 15px;
    align-items: center;
    position: relative;
}
.section_contact_back{
    position: absolute;
    border-radius: 50%;
    width: 60vh;
    height: 60vh;
    bottom: 40px;
}
.section_contact_back.back_2{
    background: rgb(10, 153, 153);
    left: 0;
}
.section_contact_back.back_1{
    background: rgb(116, 203, 158);
    right: 0;
}
.section_contact_title_container{
    width: 100%;
    max-width: 900px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.section_contact_title_column{
    align-items: flex-start;
    gap: 5px;
    z-index: 1;
}
.section_contact_title_box{
    gap: 5px;
    align-items: flex-end;
}
.contact_sub_row{
    padding: 5px 25px;
    border-radius: 100vh;
    background: rgb(245, 102, 102);
}
.contact_sub{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    color: white;
}
.section_contact_title{
    font-size: 72px;
    color: rgb(245, 102, 102);
    font-weight: bold;
    padding: 0 10px;
    -webkit-text-stroke: 2px white;
}
.section_contact_sub{
    font-size: 32px;
    color: white;
    font-weight: bold;
    padding: 10px 0;
}
.section_contact_content_box{
    width: 100%;
    max-width: 900px;
    height: max-content;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    z-index: 1;
}
.section_contact_box{
    flex: 1;
    flex-basis: 400px;
    position: relative;
}
.section_contact_box.box_1{
    background: linear-gradient(to bottom, transparent 80%, white 80%);
    border-radius: 10px;
    align-items: center;
    gap: 10px;
}
.section_contact_box.box_2{
    gap: 15px;
}
.section_contact_box.box_1 img{
    width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px white);
}
.welcome_text_box{
    padding: 10px 15px;
    width: 100%;
    border-radius: 15px;
    background: white;
    justify-content: center;
    position: relative;
}
.welcome_text_box::before,.welcome_text_box::after{
    content: "";
    position: absolute;
    background: white;
    width: 15px;
    height: 30px;
    bottom: -29px;
}
.welcome_text_box::before{
    left: 30px;
    clip-path: polygon(0 0, 80% 100%, 100% 0);
}
.welcome_text_box::after{
    right: 30px;
    clip-path: polygon(0 0, 20% 100%, 100% 0);
}
.welcome_text{
    color: rgb(245, 102, 102);
    font-weight: bold;
    font-size: 20px;
}
.section_contact_row{
    width: 100%;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 10px;
    background: white;
    position: relative;
    overflow: hidden;
}
.contact_row_title_box{
    z-index: 1;
}
.contact_row_title{
    font-size: 20px;
    font-weight: bold;
}
.contact_row_title .for_strong{
    font-size: 28px;
    color: rgb(245, 102, 102);
    font-weight: bold;
}
.contact_row_main_box{
    padding: 5px 10px;
    z-index: 1;
}
.contact_row_main{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
.contact_row_text_box{
    align-items: center;
    gap: 5px;
    z-index: 1;
}
.contact_row_text{
    font-size: 14px;
    letter-spacing: 1px;
}
.contact_time_row{
    align-items: flex-end;
}
.time_label{
    font-size: 14px;
}
.contact_row_back{
    height: 100%;
    width: max-content;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    transition: transform ease 0.25s;
    transform-origin: left;
}
.contact_row_back img{
    height: 100%;
    width: auto;
}
.section_contact_row:hover .contact_row_back{
    transform: scale(1.3);
}
.section_link_box{
    position: relative;
    height: 80px;
    width: 250px;
    align-items: center;
    justify-content: center;
    background: rgb(245, 102, 102);
    gap: 25px;
}
.section_link_box::before{
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid white;
}
.section_link_text{
    font-size: 20px;
    color: white;
    z-index: 1;
    text-align: center;
}
.link_arrow{
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    background: white;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transition: background ease 0.25s, transform ease 0.25s;
}
.section_link_box:hover .link_arrow{
    background: transparent;
    transform: translateX(5px) rotate(45deg);
}

.return_top_box{
    width: 80px;
    height: 80px;
    background: white;
    position: relative;
    padding: 20px;
    align-items: center;
    justify-content: center;
}
.return_top_box::before{
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid rgb(245, 102, 102);
}
.return_top_box img{
    width: 100%;
    height: auto;
    transition: transform ease 0.25s;
}
.return_top_box:hover img{
    transform: scale(0.9);
}

footer{
    width: 100%;
    min-height: 50vh;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: max-content 1fr 80px;
    grid-template-areas: 
    "grid1 grid2 grid2"
    "grid1 grid3 grid3"
    "grid1 grid4 grid4";
    gap: 10px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.footer_box{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
}
.footer_box.box_1{
    grid-area: grid1;
    align-items: center;
    justify-content: center;
}
.footer_box.box_2{
    grid-area: grid2;
}
.footer_box.box_3{
    grid-area: grid3;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer_box.box_4{
    grid-area: grid4;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.footer_logo_box{
    width: 100%;
    max-width: 300px;
    height: max-content;
}
.footer_logo_box img{
    width: 100%;
    height: auto;
}
.footer_nav_container{
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
}
.footer_link_box{
    width: 150px;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    background: rgb(245, 102, 102);
    position: relative;
}
.footer_link_box::before{
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid white;
    transition: background ease 0.25s;
}
.footer_link_box:hover::before{
    background: rgb(255, 255, 255, 0.2);
}
.footer_link_text{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    color: white;
}
.footer_information_box{
    flex: 1;
    flex-basis: 300px;
    gap: 10px;
}
.footer_information_box.box_2{
    height: 100%;
    border: 1px solid white;
}
.footer_map{
    width: 100%;
    height: 100%;
    border: none;
}
.footer_information_row{
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer_info_image{
    max-width: 80px;
    padding: 10px;
    background: white;
    align-items: center;
    align-self: center;
    position: relative;
}
.footer_info_image::before{
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid rgb(245, 102, 102);
}
.footer_info_image img{
    width: 100%;
    height: auto;
}
.footer_text{
    text-align: justify;
    letter-spacing: 1px;
    line-height: 1.8em;
}
.footer_text.text_1{
    font-size: 14px;
    font-weight: bold;
    padding: 20px 5px;
}
.footer_text.text_1 .for_strong{
    font-size: 28px;
    line-height: 1.3em;
}
.footer_text.for_label{
    width: 140px;
    padding: 5px 10px;
    line-height: 1.8em;
    background: rgb(245, 102, 102);
    position: relative;
    color: white;
    text-align: center;
}
.footer_text.text_2{
    flex: 1;
    flex-basis: 300px;
    padding: 10px 15px;
    background: white;
    position: relative;
}
.footer_text.for_label::before,.footer_text.text_2::before{
    content: "";
    position: absolute;
    inset: 3px;
}
.footer_text.for_label::before{
    border: 1px solid rgb(255, 255, 255);
}
.footer_text.text_2::before{
    border: 1px solid rgb(245, 102, 102);
}
.copyright_box{
    gap: 5px;
    align-items: center;
}
.copyright,.privacy_link{
    font-size: 14px;
}
.privacy_link{
    text-decoration: underline;
}

.page_mover{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgb(245, 102, 102);
    z-index: 1000;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.5s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.page_mover.is_active{
    transform: scaleY(1);
    transform-origin: bottom;
}

.page_loader{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgb(245, 102, 102);
    z-index: 1000;
}
.page_loader.is_active{
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.5s cubic-bezier(0.860, 0.070, 0.000, 1.000);
    transition-delay: 0.5s;
}
@media all and (min-width:1100px){
    .mb_menu_trigger,.mb_menu{
        display: none;
    }
}

@media all and (max-width:1100px){
    main{
        gap: 20px;
        padding-bottom: 20px;
    }
    header{
        padding: 5px 20px;
        height: 120px;
    }
    .header_container{
        padding: 0 10px;
        background: transparent;
    }
    .header_nav_container{
        display: none;
    }
    .mb_menu_trigger{
        width: 70px;
        height: 80px;
        position: fixed;
        top: 5px;
        right: 10px;
        z-index: 100;
        cursor: pointer;
    }
    .menu_trigger_box{
        width: 100%;
        height: 60px;
        justify-content: space-around;
        padding: 5px;
    }
    .menu_trigger{
        width: 100%;
        height: 2px;
        background: rgb(0, 0, 0);
        border-radius: 100vh;
        transition: transform ease 0.25s, background ease 0.25s;
    }
    .menu_trigger.trigger_1{
        transform-origin: left;
    }
    .menu_trigger.trigger_2{
        transform-origin: center;
    }
    .menu_trigger.trigger_3{
        transform-origin: right;
    }
    .menu_trigger.is_active{
        transform: scaleX(0.5);
        background: rgb(245, 102, 102);
    }
    .menu_trigger_text_box{
        width: 100%;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    .menu_trigger_text{
        font-size: 16px;
        font-weight: bold;
        transition: transform ease 0.25s;
    }
    .menu_trigger_text.text_1.is_active{
        transform: translate(-30%, -100%);
    }
    .menu_trigger_text.text_2{
        position: absolute;
        transform: translate(30%, 100%);
        color: rgb(245, 102, 102);
    }
    .menu_trigger_text.text_2.is_active{
        transform: translate(0, 0);
    }

    .mb_menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(172, 172, 172, 0.8);
        z-index: 99;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.5s;
        padding: 100px 10px 30px;
    }
    .mb_menu.is_active{
        transform: translateX(0);
    }
    .mb_menu_container{
        width: 100%;
        height: 100%;
        align-items: center;
        gap: 15px;
    }
    .mb_menu_box{
        padding: 10px;
    }
    .mb_menu_box.box_1{
        flex: 1;
        height: max-content;
    }
    .mb_menu_box.box_1 img{
        width: 100%;
        height: auto;
    }
    .mb_menu_box.box_2{
        flex: 2;
        height: 100%;
        border-left: 1px solid rgb(255, 255, 255, 0.5);
        justify-content: center;
        gap: 20px;
    }
    .mb_menu_link_row{
        width: 100%;
        padding: 10px 35px;
        padding-left: 10px;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }
    .mb_menu_link_text{
        font-size: 32px;
        font-weight: bold;
        color: rgb(255, 255, 255);
    }
    .mb_menu_label{
        width: 20px;
        height: 20px;
        border-top: 3px solid white;
        border-right: 3px solid white;
        transform: rotate(45deg);
        transition: transform ease 0.25s;
    }
    .mb_menu_border{
        position: absolute;
        width: 100%;
        height: 1px;
        background: rgb(255, 255, 255, 0.5);
        bottom: 0;
        right: 0;
    }
    .mb_menu_link_row:hover .mb_menu_label{
        transform: translateX(10px) rotate(45deg);
    }

    footer{
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: max-content max-content 1fr max-content;
        grid-template-areas: 
        "grid2 grid2 grid2"
        "grid1 grid1 grid1"
        "grid3 grid3 grid3"
        "grid4 grid4 grid4";
        gap: 10px;
    }
    .footer_logo_box{
        max-width: 150px;
    }

    .section.section_contact{
        padding: 20px 40px;
    }
    .section_contact_box.box_1 img{
        max-width: 300px;
    }
    .section_contact_back.back_2{
        top: 10px;
    }
    .section_contact_back.back_1{
        bottom: 10px;
    }
    .welcome_text_box::before{
        left: 30%;
    }
    .welcome_text_box::after{
        right: 30%;
    }
}
@media all and (max-width:900px){
    .footer_nav_container{
        justify-content: center;
    }
}
@media all and (max-width:500px){
    .background_inside.inside_1{
        width: 30vh;
        height: 30vh;
    }
    .background_inside.inside_2{
        height: 60%;
    }
    .background_inside.inside_3{
        height: 150px;
    }
    header{
        padding: 5px 10px;
    }
    .header_container{
        padding: 0;
    }
    .mb_menu_link_text{
        font-size: 18px;
    }
    .mb_menu_label{
        width: 10px;
        height: 10px;
    }

    .section.section_contact{
        padding: 20px 0;
    }
    .section_contact_title{
        font-size: 48px;
        -webkit-text-stroke: 1px white;
    }
    .section_contact_sub{
        font-size: 24px;
        padding: 5px 0;
    }
    .section_contact_back{
        width: 50vh;
        height: 50vh;
    }
    .section_contact_back.back_2{
        top: 50px;
    }
    .section_contact_back.back_1{
        bottom: 50px;
    }
    .contact_row_text{
        font-size: 12px;
    }
    footer{
        grid-template-rows: repeat(4, max-content);
        gap: 10px;
    }
    .footer_information_box.box_2{
        height: 200px;
    }
    .footer_information_row{
        gap: 5px;
    }
    .copyright,.privacy_link{
        font-size: 12px;
    }
    .return_top_box{
        width: 60px;
        height: 60px;
        padding: 15px;
    }
    .footer_text.text_1{
        font-size: 12px;
    }
    .footer_text.text_1 .for_strong{
        font-size: 24px;
    }
    .section_link_text{
        font-size: 16px;
    }
    .link_arrow{
        display: none;
    }
}
