@font-face {
    font-family: Oswald_R;
    src: url(/assets/font/Oswald-VariableFont_wght.ttf);
}
body{
	background: none;
	overflow-x: hidden;
	overflow-y: clip;
}
html{
    scroll-behavior: smooth;
	overflow-x: hidden;
}


header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
}
.header_logo{
    height: 60px;
    width: auto;
    margin-right: 6%;
}
.header_logo_text{
    height: 50px;
    width: auto;
    margin-left: 6%;
}
.header_logo img{
    height: 100%;
    width: auto;
}
.header_logo_text img{
    height: 100%;
    width: auto;
}
.section_1{
    position: relative;
}
.section_1 img{
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4/2;
}
.section_1_body{
    width: 100%;
    position: absolute;
    left: 0px;
    z-index: 10;
    bottom: 0px;
    background-color: #054b95d1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0px;
}
.section_1_body_card{
    width: 135px;
    aspect-ratio: 4/2;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    margin:10px;
    font-size: 16px;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.section_1_body_card:hover{
    color: #fff;
    text-decoration: none;
}
.main_title{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.main_title h1{
    position: relative;
    font-family: Oswald_R;
    letter-spacing: 2px;
    color: #054A95;
}
.main_title p{
    width: 100%;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
}
.main_title h1::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -160px;
    width: 130px;
    height: 55px;
    transform: translateY(-50%);
    background-image: url('/assets/img/title-before.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.main_title h1::after{
    content: "";
    position: absolute;
    right: -160px;
    top: 50%;
    width: 130px;
    height: 55px;
    transform: translateY(-50%);
    background-image: url('/assets/img/title-after.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.section_2_card{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 50px;
}
.section_2_card_img{
    width: 47%;
}
.section_2_card_img img{
    aspect-ratio: 3/2;
    object-fit: cover;
}
.section_2_card_body{
    width: 47%;
}
.section_2_card_body_title{
    width: 100%;
    background-color: #054A95;
    text-align: center;
    padding: 15px 0px;
    color: #fff;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}
.section_2_card_body_text{
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
    padding-top: 30px;
}
.section_3_text{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 20px;
}
.section_3_img{
    margin: 50px 0px;
}
.section_4 iframe{
    width: 100%;
    aspect-ratio: 4/2;
}
.section_4 video{
    box-shadow: -20px 20px 20px 0px #00000075;
}
footer{
    padding: 70px 0px;
    border-bottom: 1px solid #054A95;
}
.footer_logo{
    width: 130px;
}
.footer_text{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 0px;
    letter-spacing: 2px;
}
.copy_right{
    background-color: #fff;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 0px;
}



.company_section{
    background-image: url("/assets/img/background-1-01.webp");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.company_section_text{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    margin-bottom: 100px;
}
.company_section table{
    width: 100%;
}
.company_section table tr td{
    border: 2px solid #fff;
    color: #fff;
    padding: 20px;
    font-size: 16px;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* custom */
.top_space{
    padding-top: 130px;
}
.bottom_space{
    padding-bottom: 130px;
}
.mobile_br{
    display: none;
}
.background_color_blue{
    background-color: #054A95 !important;
}
.background_color_white{
    background-color: #fff !important;
}
.color_white{
    color: #fff !important;
}
.color_blue{
    color: #054A95 !important;
}
.mobile_br{
    display: none;
}
/* custom */


@media only screen and (max-width: 991px) {
    .top_space{
        padding-top: 100px;
    }
    .bottom_space{
        padding-bottom: 100px;
    }
    .header_logo{
        height: 45px;
    }
    .header_logo_text{
        height: 35px;
    }
    .section_1 img{
        height: auto;
        aspect-ratio: 4/2;
    }
    .section_1_body_card{
        font-size: 12px;
        width: 100px;
        margin: 5px;
    }
    .main_title{
        margin-bottom: 50px;
    }
    .main_title h1{
        font-size: 30px;
    }
    .main_title h1::before{
        left: -110px;
        width: 90px;
        height: 45px;
    }
    .main_title h1::after{
        right: -110px;
        width: 90px;
        height: 45px;
    }
    .main_title p{
        font-size: 18px;
    }
    .section_2_card_body_title{
        font-size: 18px;
    }
    .section_2_card_body_text{
        font-size: 12px;
        line-height: 25px;
    }
    .section_3_text{
        font-size: 16px;
    }
    .footer_logo{
        width: 100px;
    }
    .footer_text{
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 1px;
    }
    .company_section_text{
        font-size: 16px;
        margin-bottom: 50px;
    }
    .company_section table tr td{
        font-size: 14px;
        padding: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .top_space{
        padding-top: 70px;
    }
    .bottom_space{
        padding-bottom: 70px;
    }
    .mobile_br{
        display: block;
    }
    header{
        padding: 10px 0px;
    }
    .header_logo{
        height: 35px;
    }
    .header_logo_text{
        height: 30px;
    }
    .section_1 img{
        aspect-ratio: 4/2;
    }
    .section_1_body{
        padding: 15px 0px;
        position: static;
    }
    .section_1_body_card{
        font-size: 10px;
        width: 80px;
        margin: 5px;
    }
    .main_title h1{
        font-size: 25px;
        letter-spacing: 1px;
    }
    .main_title h1::before{
        left: -60px;
        width: 50px;
        height: 25px;
    }
    .main_title h1::after{
        right: -60px;
        width: 50px;
        height: 25px;
    }
    .main_title{
        margin-bottom: 40px;
    }
    .main_title p{
        font-size: 14px;
    }
    .section_2_card_img{
        order: 2;
        width: 100%;
    }
    .section_2_card_body{
        width: 100%;
        order: 1;
    }
    .section_2_card_body_title{
        font-size: 14px;
        padding: 10px 0px;
    }
    .section_2_card_body_text{
        padding: 20px 0px;
    }
    .section_3_text{
        font-size: 12px;
    }
    footer{
        padding: 30px 0px;
    }
    .footer_logo{
        width: 80px;
    }
    .footer_text{
        font-size: 12px;
        line-height: 20px;
    }
    .copy_right{
        font-size: 12px;
        letter-spacing: 1px;
    }
    .company_section_text{
        font-size: 12px;
        margin-bottom: 30px;
    }
    .company_section table tr td{
        font-size: 12px;
        padding: 10px;
    }
    .company_section table tr td:first-child{
        width: 30%;
    }
    .mobile_br{
        display: block;
    }
}