*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --notosans: "Noto Sans JP", sans-serif;
    --roboto: "Roboto", sans-serif;
    --notosansJP: "Noto Sans JP", sans-serif;
    --otfshingo: "A-OTF Shin Go Pro", sans-serif;
    --poppins: "Poppins", sans-serif;
    --blueBarHeight: 12px;
    --mobileBreakPoint: 767px;
    --containerPadding: 40px;
    --containerWidth: calc(916px + var(--containerPadding) * 2);
}

body {
    background-color: #f2f6fa;
    color: #000000;
    font-family: var(--poppins);
}

.bold{
    font-weight: bold;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-center{
    text-align: center;
}

.full-width{
    width: 100%;
}

.blue-bar{
    padding: 0 40px;
}

.fit-text{
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.fit-text *{
    display: inline-block;
    white-space: nowrap;
}

.h1__title{
    color: #ffffff;
    font-family: var(--notosansJP);
    margin-bottom: 145px;
}

@media screen and (max-width: 767px){
    .h1__title{
        margin-bottom: 125px;
    }
}

.h2__title{
    position: relative;
    padding: 0 30px;
    margin-bottom: 2rem;
    font-family: var(--notosansJP);
}

.h2__title::before{
    content: '';
    position: absolute;
    width: 100%;
    height: var(--blueBarHeight);
    background-color: #90B2E8;
    border-radius: 10px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.p__title{
    font-family: var(--notosansJP);
}

section .container {
    max-width: var(--containerWidth);
    margin: 0 auto;
    padding-left: var(--containerPadding);
    padding-right: var(--containerPadding);
}

section .container .title {
    margin-top: 50px;
    margin-bottom: 50px;
}

.button {
    /*background-image: linear-gradient(180deg, #f8f5cc 0%, #e2cd33 67%, #fff793 100%);*/
    background: transparent
    linear-gradient(180deg, #f8f5cc 0%, #e2cd33 67%, #fff793 100%) 0% 0%
    no-repeat padding-box;
    font-family: var(--otfshingo);
    font-size: 20px;
    color: #000000;
    border-radius: 15px;
    text-shadow: 0 3px 6px #00000029;
    box-shadow: 6px 6px 6px #00000029;
    text-align: center;
    width: 345px;
    height: 65px;
    line-height: 60px;
    border: 0;
    cursor: pointer;
}

.button[type="submit"]{
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    body.en .button {
        font-size: 17px;
    }

    .button {
        height: 55px;
        line-height: 52px;
        display: block;
        max-width: calc(100vw - var(--containerPadding) * 2);
    }
}

.buttons {
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .desktop {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .mobile {
        display: none !important;
    }
}

.max-image {
    max-width: 625px;
}

@media screen and (max-width: 767px) {
    .max-image {
        max-width: 70vw;
    }
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex__column {
    flex-direction: column;
}

.flex__row {
    flex-direction: row;
}

@media screen and (max-width: 767px){
    .hidden-mobile{
        display: none;
    }
}

@media screen and (min-width: 768px){
    .hidden-desktop{
        display: none;
    }
}

/*section -- top*/
section.top .inner {
    position: relative;
    height: 620px;
}

@media screen and (max-width: 767px) {
    section.top .inner {
        height: 680px;
    }
}

section.top .hero {
    width: 100%;
    height: 100%;
    position: relative;
}

section.top .hero::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #48484866;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

section.top .hero {
    background-image: url("/images/hero.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    section.top .hero {
        background-size: cover;
        background-position-x: 205%;
    }
}

section.top .hero__info {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
}

section.top .hero__info img {
    margin-bottom: 145px;
}

@media screen and (max-width: 767px) {
    section.top .hero__info img {
        max-width: 72vw;
        margin-bottom: 110px;
    }

    body.en section.top .hero__info img {
        margin-bottom: 125px;
    }

    section.top .hero__info .button {
        width: 65vw;
    }

    body.en section.top .hero__info .button {
        width: 100%;
    }
}

section.top .nav {
    position: absolute;
    width: calc(1120px + var(--containerPadding) * 2);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding-left: var(--containerPadding);
    padding-right: var(--containerPadding);
    padding-top: var(--containerPadding);
}

@media screen and (min-width: 768px){
    body.en section.top .nav{
        padding-right: 0;
        padding-left: 0;
    }
}

section.top .nav .logo img {
    max-width: 280px;
}

@media screen and (max-width: 767px) {
    section.top .nav {
        width: 100%;
        padding: 0 20px 0 0;
        justify-content: space-between;
    }
    section.top .nav .logo img {
        max-width: 22.75vw;
    }
}

section.top .nav .menu {
    flex-basis: 100%;
}

section.top .nav .menu {
    justify-content: space-around;
}

section.top .nav .menu a {
    font-size: 15px;
    font-family: var(--notosansJP);
    color: #ffffff;
}

body.en section.top .nav .menu a{
    font-family: var(--roboto);
}

section.top .nav .language {
    gap: 5px;
    color: #ffffff;
    font-family: var(--notosans);
}

body.en section.top .nav .language{
    position: absolute;
    right: 0;
    top: 15px;
}

.mobile-nav .mobile-nav__container .menu-close span,
section.top .nav .toggle span {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
}
.mobile-nav .mobile-nav__container .menu-close span:before,
section.top .nav .toggle span::after,
section.top .nav .toggle span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    left: 0;
    top: -6px;
}

section.top .nav .toggle {
    margin-top: -15px;
    cursor: pointer;
}

section.top .nav .toggle span::after {
    top: 6px;
}

/*Mobile Navigation*/

.mobile-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    z-index: 99;
    transition: left 0.5s ease;
}

.mobile-nav a,
.mobile-nav span{
    color: #ffffff;
}

.mobile-nav.show {
    left: 0;
    transition: left 0.5s ease;
}

.mobile-nav a:hover {
    color: #e2cd33;
    transition: all 0.3s ease;
}

.mobile-nav .mobile-nav__container {
    background-color: #000000;
    height: 100vh;
    gap: 15px;
    position: relative;
}

.mobile-nav .mobile-nav__container .mobile-language {
    gap: 10px;
    margin-top: 50px;
}

.mobile-nav .mobile-nav__container .menu-close {
    cursor: pointer;
    position: absolute;
    z-index: 99;
    top: 25px;
    left: 25px;
}

.mobile-nav .mobile-nav__container .menu-close span {
    transform: rotate(45deg);
}

.mobile-nav .mobile-nav__container .menu-close span:before {
    top: 0;
    transform: rotate(-90deg);
}

/*Section employee*/

.employee {
    padding-bottom: 90px;
}

.employee .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.employee .card img{
    max-width: 40%;
}

.employee .card{
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.employee .card__description{
    text-align: center;
}

.employee .card__title{
    font-size: 16px;
    text-align: center;
    margin: 1rem 0;
}

@media screen and (max-width: 767px) {
    .employee .cards {
        grid-template-columns: 1fr;
    }
}

/*Section talented*/

.talented {
    background-color: #ffffff;
}

.talented .title {
    max-width: 765px;
}

.talented .persons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

@media screen and (max-width: 767px) {
    .talented .persons {
        grid-template-columns: 1fr;
    }
}

.talented .button {
    margin: 50px 0;
}

/*Section faq*/

.faq .cards {
    gap: 50px;
    display: flex;
    flex-direction: column;
}

.faq .cards .card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 80px;
}

@media screen and (max-width: 767px) {
    .faq .cards .card {
        flex-direction: column;
        gap: 30px;
    }
}

.faq .cards .card .img img {
    max-width: 215px;
}

.faq .cards .card .img {
    width: 215px;
    height: 205px;
    background-color: #ffffff;
    border-radius: 20px;
}

.faq .title2 img.title2 {
    max-width: 740px;
    margin: 90px 0 30px 0;
}

@media screen and (max-width: 767px) {
    .faq .qn {
        gap: 35px;
    }
}

.faq .buttons {
    margin-top: 50px;
    margin-bottom: 90px;
}

/*Footer*/
footer {
    background-color: #d3d3d3;
}

@media screen and (max-width: 767px) {
    footer {
        padding-left: var(--containerPadding);
        padding-right: var(--containerPadding);
    }
}

footer .logo {
    max-width: 225px;
}

@media screen and (max-width: 767px) {
    footer .logo {
        max-width: 300px;
    }
}

footer .copyright p,
footer .company p,
footer .quick-links * {
    font-family: var(--poppins);
    color: #575757;
}

footer .company p {
    font-family: var(--otfshingo);
    font-weight: 600;
}

footer .title {
    font-weight: bold;
    line-height: 2em;
}

footer .container {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 75px;
}

footer .container .nav {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

@media screen and (max-width: 767px) {
    footer .container .nav {
        grid-template-columns: 1fr;
        grid-gap: 25px;
    }
}

@media screen and (max-width: 767px) {
    footer .container .nav {
        grid-template-columns: 1fr;
    }
}

footer .container .nav a {
    display: block;
}

footer .new-logo img{
    max-width: 110px;
    margin-left: -10px;
    margin-top: 15px;
}

@media screen and (max-width: 767px) {
    footer .new-logo img{
        max-width: 80px;
    }
}

footer .copyright p {
    text-align: center;
}


/**Section privacy**/

section.privacy{
    padding: 130px 0;
}

@media screen and (max-width: 767px) {
    section.privacy{
        padding: 65px 0;
    }
}

/**Style jobs**/

.po-webparts-container{
    min-width: 100% !important;
    margin-bottom: 50px;
}

.po-webparts-container table{
    table-layout: fixed;
    width: 100%;
}

.po-label{
    color: #000000;
}
@media screen and (max-width: 767px){
    .po-single{
        display: grid;
        grid-template-columns: 1fr;
    }

    /*td.po-normal{*/
    /*  padding-top: 0;*/
    /*  padding-bottom: 0;*/
    /*}*/

    /*td.po-normal input{*/
    /*  line-height: 35px;*/
    /*  font-size: 16px;*/
    /*}*/
}

.po-webparts-container.style2 .po-privacy-policy{
    height: 190px !important;
    max-height: 190px !important;
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 500;
}