/* ALTERNATIVE FONT - NOTO SANS JAPANESE */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@700&display=swap');


/* custom font-face: FutoGoB101Pr5 */
@font-face {
    font-family: Acumin-Pro-Wide;
    src: url(fonts/Acumin-Pro-Wide.ttf)
}

/* custom font-face: FutoGoB101Pr6N */
@font-face {
    font-family: FutoGoB101Pr6N;
    src: url(fonts/FutoGoB101Pr6N-Bold.otf);
    
}

/* custom font-face: FutoGoB101Pr5 */
@font-face {
    font-family: FutoGoB101Pr5;
    src: url(fonts/FutoGoB101Pr5-Bold.otf);
    
}

/* custom font-face: GenjyuuGothic */
@font-face {
    font-family: GenjyuuGothic;
    src: url(fonts/GenJyuuGothicBold.ttf)
}

/* custom font-face: MidashiGoPr6n */
@font-face {
    font-family: MidashiGoPr6N;
    src: url(fonts/MidashiGoPr6N.otf)
}

/* custom font-face: MidashiGoPr6n */
@font-face {
    font-family: DIN2014Regular;
    src: url(fonts/DIN2014Regular.ttf)
}


:root {

    /* alternative font */
    --notoSans: 'BIZ UDGothic', sans-serif;


    /* fonts */
    --FutoGoB101Pr6N: 'FutoGoB101Pr6N', FutoGoB101Pr6N, var(--notoSans), sans-serif;
    --FutoGoB101Pr5: 'FutoGoB101Pr5', FutoGoB101Pr5, var(--notoSans), sans-serif;
    --acuminProWide: 'Acumin-Pro-Wide', acumin-pro-wide, var(--notoSans), sans-serif;
    --genjyuuGothic: 'GenjyuuGothic', GenjyuuGothic, var(--notoSans), sans-serif;
    --din2014: 'DIN2014Regular', din-2014, var(--notoSans),sans-serif;


    --tsukuARdGothicStd: fot-tsukuardgothic-std, var(--notoSans), sans-serif;
    --midashiGoPr6n: 'MidashiGoPr6n',toppan-bunkyu-midashi-go-std, var(--notoSans), sans-serif;


    /* colors */
    --black-color: rgb(0, 0, 0);
    --white-color: rgb(255, 255, 255);
    --blue-color: rgb(27, 18, 196);
    --dark-blue-color: rgb(8, 5, 68);
    --font-color: rgb(49, 49, 49);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    background-color: var(--white-color);
    color: var(--font-color);
}


header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    transition: opacity 0.3s, position 1s;
    z-index: 1000;
    transition: 0.5s;
    box-shadow: 0 5px 2px -2px rgba(0,0,0,.2);
    padding-left: 182px;
}

nav{
    display: flex;
    align-items: center;
}

ol.nav__contents {
    list-style: none;
    display: flex;
    text-align: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    justify-content: space-between;
}

ul.nav__links[data-visible="true"]{
    transform: translateY(0%);
}


ol.nav__contents > li > ul{
    display: flex;
    list-style: none;
    justify-content: space-between;
    gap: 90px;
}

ol.nav__contents > li> ul > li > a{
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.5s all ease-in-out;
    font-size: 0.8125rem;
    color: var(--font-color);
    font-family: var(--midashiGoPr6n);
    font-weight: 700;
}

li.logo > a > img{
    height: auto;
    width: 100%;
}

/* INQUIRY LIST */

li.nav-inquiry-list{
    display: flex;
    padding-left: 10px;
}

ol > li.nav-inquiry-list > .phone-info-wrapper{
    background-color: var(--blue-color);
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
}

ol > li.nav-inquiry-list > .phone-info-wrapper > a.phone-info{
    display: grid;
    place-items: center;
    text-decoration: none;
}

ol > li.nav-inquiry-list > .phone-info-wrapper > a.phone-info > img{
    height: 28px;
    width: 36px;
}

ol > li.nav-inquiry-list > .phone-info-wrapper > a.phone-info > p{
    color: var(--white-color);
    font-size: 0.8125rem;
    margin-top: 5px;
    font-family: var(--FutoGoB101Pr5);
}

ol > li.nav-inquiry-list > .email-info-wrapper{
    display: grid;
    place-items: center;
    background-color: var(--dark-blue-color);
    width: 80px;
    height: 80px;
}

ol > li.nav-inquiry-list > .email-info-wrapper > a.email-info{
    display: grid;
    place-items: center;
    color: var(--white-color);
    text-decoration: none;
}

ol > li.nav-inquiry-list > .email-info-wrapper > a.email-info > img{
    height: 28px;
    width: 36px;
}

ol > li.nav-inquiry-list > .email-info-wrapper > a.email-info > p{
    color: var(--white-color);
    font-size: 0.8125rem;
    margin-top: 5px;
    font-family: var(--FutoGoB101Pr5);
}

.mobile-nav-toggle{
    display: none;
}

@media only screen and (max-width: 1366px){
  header{
      padding-left: 100px;
  }
}

@media only screen and (max-width: 1010px){
    header{
        padding-left: 10px;
    }
}

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

    li.nav-inquiry-list{
        padding-right: 80px;
    }

    ol.nav__contents > li > ul {
        display: flex;
        list-style: none;
        justify-content: flex-start;
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 66px;
    }


    ul.nav__links{
        position: fixed;
        inset: 0;
        background-color: var(--white-color);
        flex-direction: column;
        transform: translateY(-100%);
        transition: transform 350ms ease-out;
        padding-top: 50px;
        margin-top: 0;
        justify-content: center;
        z-index: -1;
    }

    ul.nav__links li {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    ol.nav__contents > li> ul > li > a {
        justify-content: center;
        font-size: 1.2rem;
        border-top: 1px var(--font-color) solid;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    ol.nav__contents > li> ul > li > a#last-link {
        border-bottom: 1px var(--font-color) solid;
    }

    ol > li.nav-inquiry-list > .phone-info-wrapper{
        background-color: var(--blue-color);
        padding: 10px 10px;
    }
    ol > li.nav-inquiry-list > .email-info-wrapper{
        background-color: var(--dark-blue-color);
        padding: 10px 14px;
    }

    .mobile-nav-toggle{
        z-index: 9999;
        background-image: url("images/blue-hamburger-menu.svg");
        background-repeat: no-repeat;
        display: block;
        position: fixed;
        top: 1.5rem;
        right: 1.4rem;
        background-color: transparent;
        border: 0;
        aspect-ratio: 1;
        cursor: pointer;
        height: 2.1rem;
        width: 2.1rem;
    }

    .mobile-nav-toggle[aria-expanded=true]{
        background-image: url("images/blue-x-icon.svg");
        display: block;
        position: fixed;
        top: 1.5rem;
        right: 1.4rem;
        height: 2.1rem;
        width: 2.1rem;
    }
}




/* ------------- HOME SECTION -------------- */
section.home{
    position: relative;
    background-image: url("images/top-images/top-image.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    width: 100%;
}

section.home > .home-heading-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    line-height: 75px;
    width: 100%;
}

.home-heading > p{
    font-family: var(--genjyuuGothic);
    font-size: 3.75rem;
    color: var(--blue-color);
    font-weight: 700;
    text-shadow: 0 0 7px #fff, 0 0 8px #fff, 0 0 9px #fff, 0 0 10px #fff, 0 0 11px #fff, 0 0 12px #fff, 0 0 13px #fff, 0 0 14px #fff, 0 0 15px #fff;
}

.home-subheading > p{
    font-size: 2.1875rem;
    color: var(--font-color);
    font-family: var(--tsukuARdGothicStd);
    font-weight: 700;
    text-shadow: 0 0 7px #fff, 0 0 8px #fff, 0 0 9px #fff, 0 0 10px #fff, 0 0 11px #fff, 0 0 12px #fff, 0 0 13px #fff, 0 0 14px #fff, 0 0 15px #fff;
}


/* ------------- LOCATION LIST SECTION ------------ */
section.location-list{
    padding: 90px 0 30px 0;
}

section.location-list > .location-list-heading-wrapper{
    display: grid;
    place-items: center;
    margin-bottom: 43px;
    line-height: 1.5;
}

section.location-list > .location-list-heading-wrapper > .location-list-heading{
    font-family: var(--acuminProWide);
    color: var(--blue-color);
    font-size: 1.25rem;
}

.location-list-subheading{
    font-family: var(--tsukuARdGothicStd);
    font-size: 2.5rem;
    font-weight: 700;
}

.location-list-cards-wrapper{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1052px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.card{
    height: auto;
    width: 100%;
    background-color: rgb(244, 243, 248);
    border-radius: 20px;
    margin: 0 10px 0 10px;
}


.card > img{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  max-width: 427px;
}


.card-first-row{
    margin-bottom: 38px;
    display: flex;
}

.card-second-row{
    display: flex;
}

.card-content{
    padding: 21px 20px 37px 20px;
}

.card-content > .card-heading, .card-content > .card-details{
    padding: 0 17px;
}

.card-content > .card-heading > p{
    font-family: var(--genjyuuGothic);
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-content > .card-details{
    font-family: var(--FutoGoB101Pr5);
    font-size:1rem;
    font-weight: 400;
    align-items: center;
    margin-bottom: 18px;
    line-height: 25px;
}

.card-content > .card-details > p > span{
    font-size: 0.85rem;
}

.card-buttons-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 9px;
}

.card-buttons-wrapper > a{
    text-decoration: none;
}

.card-button{
    display: flex;
    align-items: center;
    padding: 11px 14px;
    border-radius: 25px;
    width: 100%;
}

.card-button img.card-icon{
    height: 25px;
    width: 31px;
    margin-right: 10px;
}

.card-button > .card-button-left > span{
    font-family: var(--FutoGoB101Pr6N);
    color: var(--white-color);
}

.card-button > .card-button-left{
    display: flex;
    flex: 90%;
    align-items: center;
}

.card-button > .card-button-left >img.card-icon{
    height: 25px;
    width: 31px;
    margin-right: 10px;
}

.card-button > .card-button-right{
    display: flex;
    flex: 10%;
    justify-content: flex-end;
}


.first-button{
    background-color: var(--blue-color);
}

.second-button{
    background-color: var(--white-color);
    border: solid 2px var(--blue-color) ;
}

.second-button > .card-button-left > span{
    color: var(--blue-color);
font-family: var(--FutoGoB101Pr6N);
}






/* ------------- COMPANY PROFILE SECTION ---------- */
section.company-profile{
    padding: 90px 0 0 0;
}

.company-profile-heading-wrapper{
    display: flex;
    gap: 25px;
}

.company-profile-heading-wrapper1, .company-profile-heading-wrapper2{
    flex: 50%;
}

.company-profile-heading-wrapper2{
    line-height: 1.5;
}


.company-profile-contents-wrapper{
    display: flex;
    gap: 25px;
}

.company-profile-image, .company-profile-contents{
    flex: 50%;
}

.company-profile-contents{
    margin-top: -20px;
}

.company-profile-subheading > p{
    font-family: var(--tsukuARdGothicStd);
    font-size: 2.5rem;
    font-weight: 700;
}

.company-profile-image > img{
    max-width: 429px;
    width: 100%;
    height: auto;
    float: right;
    margin-top: -85px;
}

.company-profile-heading-wrapper2 > .company-profile-heading{
    font-family: var(--acuminProWide);
    color: var(--blue-color);
    font-size: 1.25rem;
}

.company-profile-about{
    margin: 23px 0 20px 0;
    
}

.company-profile-about > p{
    font-family: var(--FutoGoB101Pr5);
    font-size: 1.125rem; 
}

.company-name{
    margin-top: -20px;
}

.company-name > p{
    font-family: var(--genjyuuGothic);
    color: var(--blue-color);
    font-size: 2.2rem;
    font-weight: 700;
    
}

.company-details > p{
    font-family: var(--FutoGoB101Pr5);
    font-size: 1.5rem;
    line-height: 30px;
}






/* ------------- ACCESS MAP SECTION ---------- */
section.access-map{
    padding-top: 90px;
}

section.access-map > .access-heading-wrapper{
    display: grid;
    place-items: center;
    margin-bottom: 31px;
    line-height: 1.5;
}

section.access-map > .access-heading-wrapper > .access-heading{
    font-family: var(--acuminProWide);
    color: var(--blue-color);
    font-size: 1.25rem;
}

section.access-map > .access-map-wrapper > iframe{
    /* background-image: url("images/top-images/map.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    height: 495px;
    width: 100%;
}
/* section.access-map > img{
    height: auto;
    width: 100%;
} */

.access-subheading{
    font-family: var(--tsukuARdGothicStd);
    font-size: 2.5rem;
    font-weight: 700;
}



/* ---------- bottom-contents ---------- */
section.bottom-contents{
    position: relative;
    margin-top: 53px;
}

.top-button{
    position: absolute;
    bottom: 95px;
    right: 50px;
}

.top-button > a{
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 0.9375rem;
    color: var(--blue-color);
    font-weight: 700;
}

section.bottom-contents > .company-logo{
    display: grid;
    place-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

section.bottom-contents > .company-logo > img{
    height: auto;
}

section.bottom-contents > .bottom-inquiry-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 0 249px 0 249px;
    gap: 23px;
}

section.bottom-contents > .bottom-inquiry-wrapper > a{
    text-decoration: none;
    font-size: 1.25rem;
    font-family: var(--FutoGoB101Pr6N);
}

a.bottom-inquiry-phone-button, a.bottom-inquiry-email-button{
    display: flex;
    width: 100%;
    border-radius: 35px;
    padding: 16px 19px;
    align-items: center;
}

.bottom-inquiry-left{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 80%;
}

.bottom-inquiry-left > img{
    margin-right: 13px;
}


.bottom-inquiry-phone-button{
    background-color: var(--blue-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
}

.bottom-inquiry-email-button{
    background-color: var(--dark-blue-color);
    color: var(--white-color);
}


/* ---------- footer ---------- */
footer{
    padding: 49px 450px 22px 450px;
    line-height: 25px;
    width: 100%;
    background-color: var(--gray-color);
}


ul.footer-links{
    display: flex;
    justify-content: space-between;
    list-style: none;
    width: 100%;
}

footer > .footer-first-row > ul > li > a{
    font-size: 0.8125rem;
    color: var(--font-color);
    font-family: var(--midashiGoPr6n);
    font-weight: 700; 
    text-decoration: none; 
}

footer > .footer-second-row{
    display: grid;
    place-items: center;
}

footer > .footer-second-row > p{
    color: var(--font-color);
    font-size: 0.625rem;
    font-family: var(--FutoGoB101Pr6N);
}



/* ------ MEDIA QUERIES ------- */
@media only screen and (max-width: 790px){
    section.home > .home-heading-wrapper{
        text-align: center;
        line-height: 51px;
        padding: 0 20px 0 20px;
    }

    .home-heading > p{
        font-size: 1.5rem;
        line-height: 1.25;
    }
    
    .home-subheading > p{
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1166px){
    .company-profile-heading-wrapper{
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: center;
        align-items: center;
    }
    
    .company-profile-heading-wrapper1, .company-profile-heading-wrapper2{
        flex: 100%;
    }
    
    .company-profile-heading-wrapper2{
        line-height: 1.5;
        display: grid;
        place-items: center;
		margin-bottom: 20px;
    }
    
    
    .company-profile-contents-wrapper{
        display: flex;
        gap: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .company-profile-image, .company-profile-contents{
        flex: 100%;
    }
    
    .company-profile-contents{
        margin-top: 0;
    }
    
    .company-profile-subheading > p{
        font-family: var(--tsukuARdGothicStd);
        font-size: 2rem;
        font-weight: 700;
    }
    
    .company-profile-image > img{
        margin-top: 0;
    }
    
    .company-profile-heading-wrapper2 > .company-profile-heading{
        font-family: var(--acuminProWide);
        color: var(--blue-color);
        font-size: 1.25rem;
    }
    
    .company-profile-about{
        margin: 23px 0 20px 0;
        
    }
    
    .company-profile-about > p{
        font-family: var(--FutoGoB101Pr5);
        font-size: 1rem; 
    }
    
    .company-name{
        margin-top: -20px;
    }
    
    .company-name > p{
        font-family: var(--genjyuuGothic);
        color: var(--blue-color);
        font-size: 2.2rem;
        font-weight: 700;
        
    }
    
    .company-details > p{
        font-family: var(--FutoGoB101Pr5);
        font-size: 1.5rem;
        line-height: 30px;
    }
    

    footer{
        padding: 25px 100px 25px 100px;
    }
        /* -------- bottom inquiry ------- */
        section.bottom-contents{
            padding-top: 45px;
            display: flex;
        flex-direction: column-reverse;
        }


        section.bottom-contents > .company-logo > a {
            font-size: 2.2rem;
        }
        
    
        .top-button{
            position: absolute;
            right: 0;
            left: 0;
            bottom: 222px;
        }
    
        section.bottom-contents > .bottom-inquiry-wrapper{
            display: flex;
            margin:0;
            gap: 0;
        }

        a.bottom-inquiry-phone-button, a.bottom-inquiry-email-button{
            display: flex;
            width: 100%;
            border-radius: 0;
            padding: 15px 10px;
            align-items: center;
        }

        a.bottom-inquiry-phone-button{
            color: var(--white-color);
        }
    
        section.bottom-contents > .bottom-inquiry-wrapper > a{
            font-size: 0.65rem;
        }

        .bottom-inquiry-left > img{
            margin-right: 5px;
        }

        .bottom-inquiry-left > .bottom-inquiry-left-content > p.second-paragraph {
            font-size: 0.5rem;
            letter-spacing: 2px;
            font-family: var(--FutoGoB101Pr5);
        }
    
        /* --------- footer ----------- */
        footer{
            padding: 25px 48px 25px 48px;
        }
    
        ul.footer-links {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        ul.footer-links > li{
            border-top: solid rgb(49, 49, 49) 1px;
            width: 100%;
            text-align: center;
            padding: 12px 0 12px 0;
        }
    
        footer > .footer-second-row{
            margin-top: 10px;
        }

        ul.footer-links  > li#bottom-link{
            border-bottom: solid rgb(49, 49, 49) 1px;
            width: 100%;
            text-align: center;
            padding: 12px 0 12px 0;
        }
}



@media only screen and (max-width: 919px){
    section.location-list {
        padding: 100px 0 20px 0;
    }

    ol > li.nav-inquiry-list > .email-info-wrapper > a.email-info > p {
        color: var(--white-color);
        font-size: 0.75rem;
        margin-top: 5px;
    }

    section.location-list > .location-list-heading-wrapper{
        display: grid;
        place-items: center;
        margin-bottom: 20px;
    }
    
    section.location-list > .location-list-heading-wrapper > .location-list-heading{
        font-size: 1rem;
    }
    
    .location-list-subheading{
        font-size: 2rem;
    }
    
    .location-list-cards-wrapper{
        display: flex;
        margin: 0 30px 0 30px;
        justify-content: center;
        flex-direction: direction;
    }

    .card{
        height: auto;
        width: 100%;
        max-width: 427px;
        background-color: rgb(244, 243, 248);
        border-radius: 20px;
        margin: 0 10px 0 10px;
    }

    .card-first-row{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }

    .first-button > .card-button-left > span{
        font-size: 1rem;
    }
    
    .card-second-row{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card-buttons-wrapper{
        flex-direction: column;
    }

    #card1{
        margin-bottom: 25px;
    }

    #card3{
        margin-bottom: 25px;
    }

    .card-content > .card-heading > p{
        font-size: 1.3rem;
        
    }
    .card-content > .card-details > p > span{
        font-size: 0.8rem;
    }



/* ------------- COMPANY PROFILE SECTION ---------- */
    section.company-profile{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .company-profile-image, .company-profile-contents{
        flex: 100%;
    }

    .company-profile-contents{
        padding: 0 30px 0 30px;
    }

    .company-profile-heading-wrapper{
        display: grid;
        place-items: center;
    }

    .company-profile-contents > .company-profile-subheading > p{
        font-size: 2rem;
        font-weight: 700;
    }

    .company-profile-contents > .company-profile-heading-wrapper > .company-profile-heading{
        color: var(--blue-color);
        font-size: 1rem;
    }

    .company-profile-about{
        margin: 23px 0 40px 0;
        
    }

    .company-profile-about > p{
        font-size: 0.9rem; 
    }

    .company-name > p{
        color: var(--blue-color);
        font-size: 1.4rem;
        font-weight: 700;
    }

    .company-details > p{
        font-size: 1rem;
        line-height: 30px;
    }

/* ------------- ACCESS MAP SECTION ---------- */


    section.access-map > .access-heading-wrapper{
        margin-bottom: 20px;
    }

    section.access-map > .access-heading-wrapper > .access-heading{
        color: var(--blue-color);
        font-size: 1rem;
    }

    /* section.access-map > img{
        height: auto;
        width: 100%;
    } */

    .access-subheading{
        font-size: 2rem;
        font-weight: 700;
    }

    .page-break{
        display: none;
    }
}


@media only screen and (max-width: 480px){
  section.location-list {
      padding: 40px 0 20px 0;
  }

  section.company-profile{
    padding: 35px 0 0 0;
  }

  section.access-map {
    padding-top: 35px;
  }
}

/* zoom */
.stm_zoom_content {
    text-align: center !important;
    display: block !important;
  }

  .stm_zoom_wrapper {
    margin-top: 30px;
}

@media only screen and (min-width: 540px){
	.sm-break{
		display:none;
	}
}


