@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}

body {
    background-color: #f4f4f4;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.bol {
    font-weight: bold;
}

.lig {
    font-weight: lighter;
}

/* SCROLL */

.scroll {
    opacity: 0;
    transition: all 0.1s ease;
}

.scroll[data-type="up"] {
    transform: translate3d(0, 100px, 0);
    transition: all 1s ease;
}

.scroll[data-type="up"].active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.burger-menu {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    padding: 0;
    z-index: 1000;
}

.burger-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    background: linear-gradient(0deg, rgba(24, 29, 96, 0.20) 0%, rgba(24, 29, 96, 0.20) 100%), url(<path-to-image>) rgba(211, 211, 211, 0.281) 50% / cover no-repeat;

}

.burger-menu.open {
    display: block;
}


.burger-nav_layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 100px;
    z-index: 1000;
}

.burger-nav_layout p {
    font-weight: 900;
    color: #333;
    text-align: center;
}

.burger-nav_layout .social_link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv_burger-slider img {
    height: 100vh;
    object-fit: cover;
}

.ham-btn {
    height: 40px;
    width: 30px;
    margin-left: auto;
    position: relative;
}

.ham-btn span {
    height: 3px;
    width: 100%;
    background-color: #181D60;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.ham-btn span:nth-child(1) {
    top: 25%;

}

.ham-btn span:nth-child(3) {
    top: 75%;
}

.ham-btn.active span:nth-child(1) {
    top: 55%;
    transform: translate(-50%, -50%) rotate(45deg);

}

.ham-btn.active span:nth-child(2) {
    opacity: 0;
}

.ham-btn.active span:nth-child(3) {
    top: 45%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

/* HEADER */



input::placeholder{
    word-break: break-all;
}
.main_header {


    /* border-bottom: 0.5px solid #181D60; */
    position: relative;
    /* width: 100%; */
    /* height: 100px; */
    left: 0;
    top: 0;
    right: 0;
    padding: 30px;
    z-index: 1000;
    background-color: #fff;
}

.main_header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.fadeDown{
    position: fixed;
}

.no-white {
    background-color: transparent;
}


.h_logo {
    /* position: fixed; */
    top: 20px;
    left: 50px;
    z-index: 10;
    display: flex;
}

.hide {
    visibility: hidden;
}

.h-nav {
    /* position: fixed; */
    /* top: 20px;
    right: 50px; */
    z-index: 1000;
}


.h-nav_layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.h-nav_layout li a {
    text-align: center;
}

.h-nav_layout li a p {
    font-weight: 900;
}

.social_link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.line_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 196px;
    height: 60px;
    border-radius: 50px;
    background-color: #01C301;
    color: #fff;
    font-weight: 900;

}

.h-contact_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 296px;
    height: 60px;
    border-radius: 50px;
    background-color: #181D60;
    color: #fff;
    font-weight: 900;
}

.ham-btn {
    display: none;

}

.burger-menu {
    display: none;
}

/* MV */

.page_mv {

    position: relative;


}

.mv_slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99.7%;
    background-color: rgba(24, 29, 96, 0.2);
}

.page_mv .container {}

.mv_txt {
    position: absolute;
    bottom: 290px;
    left: 100px;
    z-index: 9;
    background-color: #FFFFFF99;
    padding: 20px 30px;
}

@media screen and (max-width:1120px) {
    .mv_txt {

        left: 50px;
        right: 50px;

    }
}



.mv_desc {
    font-size: 48px;
    line-height: 1.5;
    font-weight: bold;
    font-family: "Zen Kaku Gothic New";
}

.mv_title {
    font-size: 35px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 15px;
    color: #181D60;
}

.mv_slider img {

    width: 100%;
}

/* BUTTONS */

.more-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 50px;
    border-radius: 40px;
    border: 1px solid #181D60;
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-weight: 700;
    color: #181D60;
}

.back-to-list {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 50px;
    border-radius: 20px;
    border: 1px solid #181D60;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #181D60;
    font-weight: 700;
}

.smooth-scrll_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 60px;
    border-radius: 50px;
    background-color: #181D60;
    color: #fff;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.6px;
}


.contact_btn-layout {
    width: 252px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 40px;
    border: 1px solid #181D60;
    color: #181D60;
    background: none;
    font-weight: 700;
}

.more-btn::after {
    content: url(../slice/common/vector.svg);
    height: 22px;
}

.more-btn:hover::after {
    content: url(../slice/common/hover-arrow.svg);


}

.more-btn:hover {
    background-color: #181D60;
    color: #f1f1f1;
}

.confirm-btn::after {
    content: url(../slice/common/arrow-right.svg);
    height: 20px;
}

.confirm-btn:hover {
    border: 1px solid #181D60;
    background: #181D60;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #f1f1f1;
}

.confirm-btn:hover::after {
    content: url(../slice/common/hover-arrow.svg);
    height: 20px;
    transform: rotate(45deg);
}

.back-btn::before {
    content: url(../slice/common/arrow-left.svg);
    height: 20px;
}

.back-btn:hover {
    border: 1px solid #181D60;
    background: #181D60;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #f1f1f1;
}

.back-btn:hover::before {
    content: url(../slice/common/hover-arrow.svg);
    height: 20px;
    transform: rotate(225deg);
}

.submit-btn::after {
    content: url(../slice/common/arrow-right.svg);
    height: 20px;
}

.submit-btn:hover {
    border: 1px solid #181D60;
    background: #181D60;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #f1f1f1;
}

.submit-btn:hover::after {
    content: url(../slice/common/hover-arrow.svg);
    height: 20px;
    transform: rotate(45deg);
}

.back-to-list:before {
    content: url(../slice/common/arrow-left.svg);
    height: 20px;
}

.back-to-list:hover {
    border: 1px solid #181D60;
    background: #181D60;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #f1f1f1;
}

.back-to-list:hover::before {
    content: url(../slice/common/hover-arrow.svg);
    height: 20px;
    transform: rotate(225deg);
}

/* INDEX PAGE */

/* INDEX TITLE */

.index-section_title {
    margin-bottom: 30px;
}

.index_title-jp {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #181D60;
}

.index_title-eng {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 3.2px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}

/* INDEX CONCEPT */

.index_concept {
    margin: 100px 0;
}

.index_concept .container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 260px;
}

.index_concept_l {
    max-width: 1400px;
    width: 100%;
}

.index_concept_l .index-section_title {
    margin-bottom: 30px;
}

.index_concept_desc h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
}

.responsive-img {
    display: none;
}

/* INDEX COMPANY */

.index_company {
    padding-right: 50px;

}

.index_company .container {

    padding: 100px 250px;
    width: auto;

    background-image: url(../slice/top/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 100px 100px 0px;
}

.index_company-bg {
    display: flex;
    align-items: center;
    gap: 60px;
}


.company_details-table {
    margin-top: 30px;
}

.company_details-table li {
    display: flex;
    margin-bottom: 30px;

}

.col1 {
    width: 150px;
    font-weight: 700;
}


.col2,
.table-contact a {
    font-weight: 500;
}

.table-contact {
    display: flex;
    align-items: center;
    gap: 20px;

}

.tel-num,
.fax-num {
    display: flex;
    align-items: center;
}

.tel-num::before {
    font-family: 'FontAwesome';
    content: '\f095';
    margin-right: 10px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.fax-num::before {
    font-family: 'FontAwesome';
    content: '\f02f';
    margin-right: 10px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.index_company-map iframe {
    height: 700px;
}

.index_company-btn {
    display: flex;
}


/* INDEX BUSINESS */

.index_business {
    padding: 100px 0;
}

.index_business .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.index_business_desc {
    margin: 30px 0;
}

.index_business-img {
    margin-bottom: 30px;
    position: relative;
}

.index_business-img img {
    border-radius: 20px;
}

.img02-resp {
    display: none;
}

.index_business-txt {
    display: flex;
    align-items: center;
    gap: 50px;
    position: absolute;
    bottom: 50px;
    left: 70px;
}

.index_business-txt p {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 1.6px;
    color: #fff;
}

.index_business-txt i {
    color: #fff;
    font-size: 28px;
}

.index_business-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-img img {
    width: 100%;
    border-radius: 20px;
}

.index_slider .slick-slide {
    width: 300px !important;
    margin-right: 25px !important;
}

/* INDX QUALITY */

.index_quality {
    margin: 100px 0;
}

.index_quality .index-section_title {
    text-align: center;
    margin-bottom: 30px;
}

.index_quality_desc {
    text-align: center;
}

.img03-web {
    border-radius: 20px;
}

.index_quality-img {
    margin: 30px 0;
    display: flex;
}



.index_quality-img img {

    margin: 0 auto;
}

.responsive-img03 {
    display: none;
}

/* INDEX WORKS */

.index_works {
    margin: 100px 0;
}

.index_works .index-section_title {
    text-align: center;
}

.index_works-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 180px;
    margin: 30px 0;
}

.works_card {
    width: 30%;
    text-align: center;
}

.works_card-img {
    margin-bottom: 20px;
}

.works_card-img img {
    width: 100%;
    height: auto;
}

.index_works-btn {
    display: flex;
    justify-content: center;
}


/* FOOTER */

.main_footer {
    background-image: url(../slice/common/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.recruit_sec {
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 60px 0;
    background-image: url(../slice/common/contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
}

.recruit_content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 177px;
}

.recruit_sec-desc p {
    margin-bottom: 60px;
    color: #f4f4f4;

}

.recruit_sec-desc p:nth-child(2) {
    margin-bottom: 0;
}

.recruit_sec-btn {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.rec-btn_layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 335px;
    height: 45px;
    border-radius: 40px;
    background-color: #fff;

}

.rec-btn_layout p,
.rec-btn_layout i {
    color: #181D60;
}

.rec-btn_layout i {
    font-size: 25px;
}

.recruit_sec-title h2,
.recruit_sec-title p {
    color: #f4f4f4;
}

.recruit_sec-title p {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.recruit_sec-title h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
}

.btm_footer {
    display: flex;
    justify-content: space-between;
    padding: 0 150px;
    margin: 50px 0;
}

.f-logo {
    display: block;
    width: 436px;
}

.f-logo img {
    width: 100%;
}

.f_logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.f-social_link {
    display: flex;
    align-items: center;
    gap: 30px;
}

.f-insta {
    width: 40px;
    height: auto;
}

.f-line {
    width: 30px;
    height: auto;
}

.f-envelope i {
    font-size: 25px;
}

.f-nav_layout {
    display: flex;
    gap: 60px;
    align-items: center;
}


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

    .f-nav_layout {
        display: flex;
        gap: 30px;
        align-items: center;
        flex-wrap: wrap;
    }

}

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

    .f-nav_layout {
        justify-content: space-between;
        padding-left: 30px;
    }

}

.f-nav_layout .combine {
    flex-direction: column;
    gap: 30px;
    align-items: normal;
    padding-left: 0;
}

.f-nav-eng,
.f-nav-jp {
    font-weight: 500;
}

.copyright {
    text-align: center;
}

/* SUBPAGE */

.page_title {
    text-align: center;
}

.subpage_content {
    padding: 100px 0;
}

.page-sec_headline {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3.2px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333;
    justify-content: center;
}

/* ---------------------- COMPANY PAGE -----------------------*/

.company_sec01 {
    margin-top: 60px;
}

.company_sec01 .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    padding: 0 147px;
    margin: 0 auto;
}

/* .company_sec01-desc {
    max-width: 660px;
} */

.company_sec01-desc p {
    margin-top: 30px;
    letter-spacing: 3.2px;
}


.company_sec02 .page-sec_headline {
    margin: 100px 0;
    justify-content: center;
}

.company_table {
    margin: 0 auto;
}

.colmn1,
.colmn2 {
    padding: 30px 0;
    padding-left: 60px;
}

.colmn1 {
    border-bottom: 1px solid #181D60;
    width: 400px;
    font-weight: 500;
}

.colmn2 {
    width: 90%;
    border-bottom: 1px solid rgba(24, 29, 96, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.company_table tr {

    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.border-top {
    border-top: 1px solid #181D60;
}

.border-top2 {
    border-top: 1px solid rgba(24, 29, 96, 0.2);
}

.last-row .colmn1 {
    display: flex;
    align-items: center;
}

.company_sec03 {
    margin-top: 100px;
}

.company_sec03 .container {
    max-width: 1400px;
    margin: 0 auto;
}

.company_sec03 .page-sec_headline {
    justify-content: center;
}

.page-row_headline {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: #181D60;
    justify-content: center;
}

.company_sec03 .page-row_headline {
    margin-bottom: 30px;
}

.company_map iframe {
    width: 100%;
    height: 500px;
}

.company_map-sec01,
.company_map-sec02 {
    margin-top: 60px;
}


/* BUSINESS PAGE */

.business_sec01 {
    margin-bottom: 100px;
}

.business_page-headline {
    text-align: center;
    margin: 100px 0;
}

.business_sec01 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
}

.business_sec01-content p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.business_sec01-content-img img {
    width: 100%;
    object-fit: cover;
    height: 500px;
    border-radius: 30px;
}

.business_sec02-content {
    margin-top: 60px;
    margin-bottom: 60px;
}

.business_sec02 .page-sec_headline {
    justify-content: center;
    margin-bottom: 30px;
}

.business_sec02 .container {
    max-width: 1200px;
    padding: 0 100px;
    margin: 0 auto;

}

.business_sec02-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 200px;
}

.business_sec02-img {
    position: relative;
}

.business-img02 {
    position: absolute;
    bottom: -165px;
    right: -255px;
}

.business-row_headline {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.business-row_headline h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.row-num {
    font-size: 32px;
    padding: 5px 20px;
    font-weight: 900;
    background: linear-gradient(0deg, rgba(24, 29, 96, 0.20) 19%, rgba(50, 60, 198, 0.20) 51%, rgba(24, 29, 96, 0.04) 100%);
    border-radius: 100px;



}

.arrow-down {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}



.business_sec02-img img {
    display: block;
    border-radius: 20px;
}

.business_sec03-content {
    margin-top: 60px;
}

.reversed {
    justify-content: space-between;
}

.business-img05 {
    position: absolute;
    bottom: -170px;
    left: -250px;
}

.business_sec03 {
    margin-top: 100px;
}

.business_sec03 .page-sec_headline {
    justify-content: center;
}

.business_sec03 .container {
    max-width: 1400px;
    margin: 0 auto;
}

.construction-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px 10px;
    margin: 60px 0;
}

.construction-card {
    position: relative;
    width: 32%;
}

.construction-card p {
    text-align: center;
    margin-top: 25px;
}



.construction-img {
    position: relative;
    overflow: hidden;
}

.construction-img img {
    width: 100%;
    height: auto;
}



.construction-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.7s ease;
}

.construction-img:hover .construction-hover {
    opacity: 1;
    transform: scale(1.2);
}

/* QUALITY PAGE */

.quality_sec01,
.quality_sec03,
.quality_sec02,
.quality_sec04 {
    margin-bottom: 100px;
}

.quality_sec01 .container,
.quality_sec03 .container,
.quality_sec05 .container {
    display: flex;
    align-items: center;
    margin-right: 100px;
    padding: 50px 0;
    padding-left: 260px;
    gap: 100px;
    background-image: url(../slice/common/left-bg.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;

}

.quality_sec-desc p {
    margin-top: 20px;
    letter-spacing: 3.2px;
}

.quality_sec-desc {
    max-width: 700px;
}

.quality_sec02 .container,
.quality_sec04 .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 100px;
    padding: 50px 0;
    padding-right: 260px;
    gap: 100px;
    background-image: url(../slice/common/right-bg.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.quality_page-headline {
    text-align: center;
    margin: 100px 0;
}

.quality_sec-img img {
    border-radius: 20px;
}

/* WORK PAGE */

.work_sec .container {
    padding: 0 180px;
}

.work-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin-top: 100px;
}

.works_card-img {
    overflow: hidden;
    border-radius: 20px;

}

.works_card-img-img {
    object-fit: cover;
}

.works_card-img img:hover {

    transform: scale(1.4);
    transition: all 0.7s ease;
}

.work-card {
    display: block;
    width: 30%;
}

.work-card_img {
    overflow: hidden;
    border-radius: 20px;
}

.work-card_img img:hover {

    transform: scale(1.4);
    transition: all 0.7s ease;
}

.work-card_img img {
    width: 100%;
    height: auto;

}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin-top: 100px;
}

.pagination .current {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: #181D60;
    color: #fff;
    width: 40px;
    height: 40px;

}

.work-card_title {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

.work_sec .container {
    max-width: 1400px;
    margin: 0 auto;
}


.work-details {
    margin: 100px 0;
}

.work-details_thumb img {
    width: 100%;
}

.work-details-content {
    margin-top: 30px;
    letter-spacing: 3.2px;
}

.work-details_btn {
    display: flex;
    justify-content: center;
}

.popup-toggle {
    display: none;
}

.popup-label {
    cursor: pointer;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.popup-thumb {
    width: 100%;
    height: auto;
    display: block;

}

.zoom-vector {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 10px;
    border-radius: 100px;
    background-color: #fff;
    max-width: 35px;
    max-height: 35px;
}

.item-title {
    margin-top: 25px;
}

.popup-label:hover .popup-thumb {
    transform: scale(1.4);
    transition: all 0.7s ease;
}

.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    padding-top: 55px;
}

.popup-content img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.popup-content .item-title {
    text-align: left;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;

    color: white;
    font-size: 20px;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
}



/* Show the popup when checkbox is checked */
.popup-toggle:checked+.popup-label+.popup {
    display: flex;
}

.construction_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px 25px;
    margin-top: 60px;
}

.popup-card {
    width: 30%;

}




/* RECRUIT PAGE */

.recruit-page_headline {
    max-width: 1400px;
    margin: 100px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}



.recruit_sec01 .container {
    max-width: 1400px;
    margin: 0 auto;
}

.smooth-scrll_layout {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.recruit_table {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.recruit_table tr {
    display: flex;
    border-bottom: 1px solid rgba(24, 29, 96, 0.20);
}

.col01 {
    background-color: rgba(24, 29, 96, 0.20);
    padding: 0 20px;
    width: 64px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col02 {

    padding: 20px 0 20px 50px;
}

.col02 ul li {
    list-style: unset;
}

.recruit_sec02 {
    margin-top: 100px;
}

.recruit_sec02 .container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-row img {
    width: auto;
    display: block;
}


.recruit_sec02-img-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recruit_sec02-headline {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}

.recruit_sec02 .page-sec_headline {
    justify-content: center;
}

/* CONTACT FORM */

.contact-form_headline {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 30px;
}

.contact-form_headline02 {
    text-align: center;
    margin-bottom: 30px;
}

.contact_sec .container {
    max-width: 1040px;
    margin: 0 auto;
}

.form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    padding: 31px 0;
    gap: 30px;
    border-bottom: 1px solid rgba(24, 29, 96, 0.2);
}

.form-row:nth-child(1) {
    border-top: 1px solid rgba(24, 29, 96, 0.2);
}

.label-field {
    display: flex;
    align-items: center;
    max-width: 250px;
    width: 100%;
    justify-content: space-between;
}

.input-box {
    width: 320px;
    padding: 15px 40px;
    outline: none;
}

.input-field {
    width: 80%;
    word-break: break-word;
}

.input-drop {
    width: 400px;
    padding: 15px 40px;
    /* outline: none; */
}

textarea {
    padding: 20px 40px;
    width: 90%;
    height: 110px;
    outline: none;
}

.txt-h{
    height: 50px;
}
.required {
    padding: 10px;
    line-height: 1;
    background-color: #bf0000;
    color: #fff;
}

.radio-field {
    display: flex;
    flex-wrap: wrap;
    max-width: 335px;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

.preference {
    display: flex;
    gap: 20px;
}

.radio-field .mwform-radio-field {
    width: 150px;
}

.contact-form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.contact-check_headline {
    text-align: center;
    margin: 100px 0;
}

.contact-check-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 100px;
}

.check .required {
    display: none;
}

.check .contact-form-btn {
    margin-top: 0;
}

.contact-finish_headline {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 60px;
}

.contact-finish-message {
    text-align: center;
}

.contact-finish-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
    display: flex;
    align-items: center;
}



/* PRIVACY-POLICY */

.privacy-policy_sec .container {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 100px;
    font-family: 'Yu Gothic', sans-serif !important;
    padding-inline: 4vw;
}

.privacy-policy_sec .container p {

    font-family: 'Yu Gothic', sans-serif !important;
}

.num-text {
    margin: 30px 0;
    line-height: 27px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Yu Gothic', sans-serif !important;
}

.privacy-policy_sec ol {
    padding-left: 30px;
}

.privacy-policy_sec ol li {
    list-style: decimal;
}


/* ERROR PAGE */

.error_sec .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error_message {
    margin-top: 60px;
    margin-bottom: 100px;
}

.privacy-policy-link {
    display: none;
}

.privacy-policy-link p {
    font-weight: 500;
}



/* RESPONSIVE */

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

    .h_logo {
        top: 35px;
    }

    .h_logo img {
        width: 20vw;
    }

    .h-nav_layout {

        gap: 35px;
    }


}

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

    .ham-btn {
        display: block;
    }

    .h-nav_layout {
        display: none;
    }

    /* MV */

    .mv_slider img {
        object-fit: cover;
        height: 100vh;
    }


    /* INDEX CONCEPT */

    .index_concept .container {
        padding: 0;
        margin: 0 auto;
        width: 80%;
    }

    /* INDEX COMPANY */

    .index_company .container {
        padding: 100px;
    }

    .index_company-l {
        width: 40%;
    }

    .index_company-r {
        width: 55%;
    }

    .index_company-map iframe {
        width: 100%;
    }

    .col1 {
        width: 30%;
    }

    .col2 {
        width: 70%;
    }


    /* INDEX BUSINESS */

    .index_business .container {
        width: 80%;
        margin: 0 auto;
    }

    .index_business-img img {
        width: 100%;
        height: 390px;
        object-fit: cover;
    }

    /* INDEX QUALITY */

    .index_quality .container {
        width: 80%;
        margin: 0 auto;
    }

    .index_quality-img img {
        width: 100%;
    }

    /* INDEX WORKS */

    .index_works .container {
        width: 80%;
        margin: 0 auto;
    }

    .index_works-list {
        padding: 0;
    }

    /* FOOTER */

    .recruit_sec {
        max-width: unset;
        width: 90%;
        margin: 0 auto;
    }

    .btm_footer {
        padding: 0;
        width: 90%;
        margin: 50px auto;

    }


    /* BUSINESS PAGE */

    .business_sec03 .container {
        width: 80%;
    }

    .business_sec01-content-img {
        width: 80%;
        margin: 0 auto;
    }

    .business_sec01-content-img img {
        width: 100%;
        height: 350px;
    }

    .business_sec02 .container {
        width: 80%;
        margin: 0 auto;
        padding: 0;
    }

    /* COMPANY PAGE */

    .company_sec01 .container,
    .company_sec02 .container,
    .company_sec03 .container {
        width: 80%;
        margin: 0 auto;
        padding: 0;
    }

    .company_table {
        width: 100%;
    }

    /* QUALITY PAGE */

    .quality_page-headline {
        width: 80%;
        margin: 100px auto;
    }

    .quality_sec01 .container,
    .quality_sec02 .container {
        width: 90%;
        padding: 30px;
        gap: 50px;
    }

    .quality_sec01 .container {
        margin-right: auto;

    }

    .quality_sec02 .container {
        margin-left: auto;

    }

    .quality_sec-img {
        width: 45%;
    }

    .quality_sec-img img {
        width: 100%;
    }

    .quality_sec-desc {
        width: 45%;
    }

    /* RECRUIT PAGE */

    .recruit-page_headline {
        width: 80%;
    }

    .gallery-row img {
        width: 100%;
    }

    .gallery-row:nth-child(2) img {
        width: 48%;
    }

    .gallery-row:nth-child(3) img {
        width: 30%;
    }

    .recruit_sec02 .container {
        width: 80%;
        margin: 0 auto;
    }

    /* WORK LIST PAGE */

    .work_sec .container {
        width: 80%;
        margin: 0 auto;
        padding: 0;
    }


}


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

    .h-nav {
        /* position: fixed;
        top: 40px;
        right: 50px; */

        z-index: 2000;
    }

    /* INDEX CONCEPT */

    .index_concept_l,
    .index_concept_r {
        width: 45%;
    }


    /* INDEX COMPANY */
    .index_company-bg {
        flex-direction: column;
    }

    .index_company-l,
    .index_company-r {
        width: 100%;
    }

    .index_concept_r img {
        width: 100%;
    }


    /* FOOTER */

    .recruit_content {
        padding: 0;
        width: 90%;
    }

    /* CONTACT FORM */

    .contact_sec .container {
        width: 80%;
        padding: 0;
        margin: 0 auto;
    }
}


@media screen and (max-width: 1080px) {
    /* FOOTER */

    .recruit_sec-btn {
        flex-direction: column;

    }

    .f-nav_layout {
        display: none;
    }

    .btm_footer {
        justify-content: center;
    }

    /* BUSINESS PAGE */

    .business_sec02-img {
        width: 50%;
    }

    .business_sec02-desc {
        width: 50%;
    }

    .business_sec02-img img {
        width: 100%;
    }

    .business_sec01-content p {
        width: 80%;
        margin: 30px auto;
    }

    .business_sec02-content {
        margin-bottom: 30px;
    }

    /* COMPANY PAGE */

    .company_sec01 .container {
        flex-direction: column;
    }

    .colmn1,
    .colmn2 {
        padding-left: 30px;
    }

    .colmn1 {
        width: 40%;
    }

    /* RECRUIT PAGE */

    .recruit_sec01 .container {
        width: 80%;
        margin: 0 auto;
    }

    .col01 {
        width: 15%;
    }

    .col02 {
        width: 85%;
    }

    /* WORK LIST PAGE */

    .work-card {
        width: 45%;
    }


}

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

    /* MV */

    .h_logo img {
        width: 30vw;
    }

    .mv_txt {
        left: 50px;
    }

    .mv_desc {
        font-size: 4.5vw;
    }


    /* INDEX CONCEPT */

    .index_concept .container {
        flex-direction: column;
        margin: 0 50px;
        width: auto;
    }

    .index_concept_l,
    .index_concept_r {
        width: auto;
    }

    .web-view {
        display: none;
    }

    .responsive-img {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .index_concept_l .index-section_title {
        margin-bottom: 100px;
        text-align: center;
    }

    .index_concept_desc {
        margin-top: 60px;
        font-weight: 16px;
    }


    .index_concept_desc h3 {

        font-size: 16px;
    }

    /* INDEX COMPANY */

    .index_company {
        padding-right: 30px;
    }

    .index_company .index-section_title {
        text-align: center;
    }

    .index_company .container {
        padding: 100px 50px;
    }

    .company_details-table {
        padding-left: 65px;
        padding-right: 65px;
    }

    .index_company-btn {
        justify-content: center;
        margin-top: 60px;
    }

    /* INDEX BUSINESS */

    .index_business .container {
        width: auto;
        margin: 0 50px;
    }

    .index_business .index-section_title {
        text-align: center;
    }

    .img02-web {
        display: none;
    }

    .img02-resp {
        display: block;
    }

    .index_business-txt {
        left: 10%;
        bottom: 10%;
    }

    .index_business-txt p {
        font-size: 4.4vw;
    }

    /* INDEX QUALITY */

    .index_quality .container {
        width: auto;
        margin: 0 50px;
    }


    .img03-web {
        display: none;
    }

    .responsive-img03 {
        display: block;
    }

    /* INDEX WORKS */

    .index_works .container {
        width: auto;
        margin: 0 125px;
    }

    .index_works-list {
        flex-direction: column;
    }

    .works_card {
        width: 100%;
    }

    /* FOOTER */

    .recruit_content {
        flex-direction: column;
        align-items: center;
    }

    .recruit_sec-desc p {
        text-align: center;
    }

    .recruit_sec {
        width: auto;
        margin: 0 25px;
    }

    .recruit_sec-title {
        text-align: center;
    }

    .privacy-policy-link {
        display: block;
        margin-top: 60px;
    }

    .privacy-policy-link p {
        text-align: center;
    }

    .btm_footer {
        flex-direction: column;
        align-items: center;
    }


    .page-sec_headline {
        font-size: 6vw;
    }

    /* BUSINESS PAGE */

    .business_sec01 .container,
    .business_sec02 .container,
    .business_sec03 .container {
        width: unset;
        margin: 0 30px;
    }

    .business_sec02-row {
        flex-direction: column-reverse;
        padding-bottom: 50px;
    }

    .reversed {
        flex-direction: column;
    }

    .business_page-headline {
        padding: 0 30px;
    }

    .business-img02,
    .business-img05 {
        position: static;
    }

    .business_sec02-img {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .business_sec02-desc {
        width: 100%;
    }

    .popup-card {
        width: 45%;
    }



    /* COMPANY PAGE */

    .company_sec01 .container,
    .company_sec02 .container,
    .company_sec03 .container {
        width: auto;
        margin: 30px;
    }

    .company_sec01 .container {
        gap: 50px;
    }

    .company_sec01 .page-sec_headline {
        justify-content: center;
    }

    .company_table tr {
        flex-direction: column;
        gap: 0;
        margin-bottom: 10px;
    }

    .border-top2 {
        border-top: none;
    }

    .colmn1 {
        width: 100%;
        font-weight: 900;
        border-bottom: none;
        padding-left: 0;
    }

    .colmn2 {
        width: 100%;
        padding-left: 0;
    }

    .company_sec02 .page-sec_headline {
        margin: 50px 0;
    }

    /* QUALITY PAGE */

    .quality_page-headline {
        width: auto;
        margin: 50px 30px;
    }

    .quality_sec01 .container,
    .quality_sec02 .container {
        width: auto;
        margin: 0 30px;
        background-image: none;
        padding: 0;
    }

    .quality_sec01 .container {
        flex-direction: column;
    }

    .quality_sec02 .container {
        flex-direction: column-reverse;
    }

    .quality_sec-img,
    .quality_sec-desc {
        width: 100%;
    }

    /* RECRUIT PAGE */

    .smooth-scrll_layout {
        margin-bottom: 50px;
    }

    .recruit-page_headline {
        width: auto;
        margin: 50px 30px;
    }

    .recruit_sec01 .container,
    .recruit_sec02 .container {
        width: auto;
        margin: 0 30px;
    }

    .recruit_sec02 {
        margin-top: 50px;
    }

    /* WORK LIST PAGE */

    .work_sec .container {
        width: auto;
        margin: 0 30px;
    }

    .work-list {
        margin-top: 50px;
    }


    .work-card {
        width: 80%;
        margin: 0 auto;
    }

    .work-details {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    /* CONTACT FORM */

    .form-row {
        flex-direction: column;
    }

    .input-field {
        width: 100%;
    }

    .input-drop {
        width: 100%;
    }

    .input-box {
        width: 90%;
        padding: 15px;
    }

    textarea {
        padding: 15px;
    }

    .contact-form_headline {
        margin-top: 50px;
    }

    .contact-check-btn {
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
    }

    .contact-check_headline {
        margin: 50px 0;
    }

    .contact-finish_headline {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .contact-finish-btn {
        margin-top: 50px;
    }

    /* ERROR PAGE */

    .error_sec .container {
        padding: 0 30px;
    }

    .error_message {
        margin-top: 30px;
        margin-bottom: 50px;
        text-align: center;
    }
}

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

    .mv_slider img {
        height: 80vh;
    }

    .mv_desc {
        font-size: 4.2vw;
    }

    .subpage_content {
        padding: 50px 0;
    }

    .h_logo {
        /* top: 60px;
        left: 20px; */
    }

    .h_logo img {
        width: 120px;
        /* object-fit: cover;
        transform: translate(0, -20px); */
    }

    .h-nav {
        top: 30px;
        right: 20px;
    }

    .index_title-eng {
        font-size: 10vw;
    }

    .mv_txt {
        left: 20px;
        right: 20px;
    }

    .mv_title {
        font-size: 5vw;
    }

    /* INDEX CONCEPT */

    .index_concept {
        margin: 50px 0;
        margin-bottom: 0;
    }

    .index_concept .container {
        margin: 0 30px;
    }

    .index_concept_l .index-section_title {
        margin-bottom: 50px;
    }

    /* INDEX COMPANY */
    .index_company {
        padding: 0;
    }

    .index_company .container {
        width: unset;
        border-radius: 0;
        padding: 50px 30px;
    }

    .company_details-table {
        padding: 0;
    }

    .company_details-table li {
        flex-direction: column;
    }

    .col1,
    .col2 {
        width: 100%;
    }

    /* INDEX BUSINESS */



    .index_business {
        padding: 50px 0;
    }

    .index_business-txt {
        gap: 20px;
    }

    /* INDEX QUALITY */

    .index_quality {
        margin: 50px 0;
    }

    /* INDEX WORKS */

    .index_works {
        margin: 50px 0;
    }

    .index_works .container {
        margin: 0 30px;
    }

    /* FOOTER */

    .f-logo {
        width: 90%;
    }

    .recruit_sec-btn {
        width: 100%;
    }

    .recruit_content {
        gap: 30px;
    }

    .rec-btn_layout {
        width: 80%;
    }

    .recruit_sec-desc p {
        margin-bottom: 30px;
    }

    /* BUSINESS PAGE */

    .business_page-headline {
        font-size: 24px;
        margin: 50px 0;
        padding: 0 30px;
    }

    .business_sec01-content p {
        width: auto;
        margin: 30px;
    }

    .business_sec01-content-img {
        width: auto;

    }

    .construction-list {
        flex-direction: column;
    }

    .business_sec01 {
        margin-bottom: 50px;
    }


    .popup-card {
        width: 100%;
    }

    .popup-content {
        width: 80%;
    }

    .arrow-down {
        margin-top: 0;
    }

    .business_sec02 .container,
    .business_sec03 .container {
        width: auto;
        margin: 0 30px;
    }

    .business_sec03 {
        margin-top: 50px;
    }

    /* COMPANY PAGE */

    .company_sec01-img img {
        width: 100%;
    }

    /* QUALITY PAGE */

    .quality_sec01 {
        margin-bottom: 50px;
    }

    .page-sec_headline {
        font-size: 5vw;
    }

    /* RECRUIT PAGE */

    .recruit_table tr {
        flex-direction: column;
        border-bottom: 3px solid rgba(24, 29, 96, 0.20) ;
        margin-bottom: 30px;
    }

    .recruit_table ul {
        padding-left: 30px;
    }


    .col01,
    .col02 {
        width: 100%;
        padding: 20px 0;
    }

    /* CONTACT FORM */

    .label-field {
        max-width: unset;
    }

    .contact-form-btn {
        margin-top: 50px;
    }

    /* WORK PAGE */

    .work-details {
        margin-bottom: 30px;
    }
}

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



    .mv_slider img {
        height: 500px;
    }

    .mv_txt {
        left: 20px;
        right: 20px;
        bottom: 90px;
        font-size: 4vw;
    }

    .mv_title {
        font-size: 5vw;
    }

    .index_company-map iframe {
        height: revert-layer;
    }

    .index_slider .slick-list {
        height: 500px;
    }

    .colmn1,
    .colmn2 {
        padding: 15px 0;
    }

    .quality_page-headline {
        font-size: 24px;
    }

    .recruit_sec02-headline {
        margin-top: 30px;
    }
}