@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/* header */
header {
    padding: 20px 0 15px;
    position: sticky;
    top: 0;
    background-color: #FFF;
    z-index: 999;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
}

header .header-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 112px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-inner .logo-container {
    text-align: left;
}

header .header-inner .logo-container a {
    margin: 0;
}

header .header-inner .header-logo {
    height: 34px;
    width: auto;
    margin-bottom: 2px;
}

header .header-inner .emp-header-logo {
    height: auto;
    width: 189px;
    margin-bottom: 2px;
}

header .header-inner .header-text1 {
    color: #373737;
    font-size: 16px;
    font-family: Nunito;
    font-weight: 700;
    letter-spacing: 0.32px;
}

header .header-inner .header-text2 {
    color: #373737;
    font-size: 12px;
    font-family: Nunito;
    letter-spacing: 0.2px;
    opacity: 0.8;
}

header .header-inner .header-text3 {
    color: #555;
    font-size: 15px;
    font-family: 'Noto Sans JP'!important;
    font-weight: 500;
}

header .header-inner .signin-btn {
    border-radius: 100px;
    background: #EF7679;
    display: flex;
    color: #FFF;
    font-size: 18px;
    font-family: Roboto!important;
    font-weight: 600;
    letter-spacing: 0.8px;
    border: none;
    height: fit-content;

    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    align-self: end;
    white-space: nowrap;
}

header .header-inner .signin-arrow {
    height: 18px;
    width: auto;
}

header .header-inner .signin-btn:hover {
    color: #FFF;
    background: #ce6162;
}

header .header-inner .btn-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 33px;
}

header .header-inner .mobile-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1px;
}

header .header-inner .mobile-num {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2px;

    color: #33A8ED;
    font-family: 'Noto Sans JP'!important;
    font-size: 16.5px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    height: 17px;
}

header .header-inner .mobile-icon {
    width: 21px;
    height: 21px;
}

header .header-inner .mobile-info {
    color: #000;
    font-family: 'Noto Sans JP'!important;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.2px;
}

header .header-inner .inquiry-btn {
    border-radius: 5px;
    background: #EA696C;
    display: flex;
    color: #FFF;
    font-size: 14px;
    font-family: 'Noto Sans JP'!important;
    font-weight: 500;
    letter-spacing: 0.8px;
    border: none;
    height: fit-content;

    padding: 7px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    align-self: end;
    white-space: nowrap;

    color: var(--White, #FFF);
    height: 35px;

    text-transform: uppercase;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

header .header-inner .inquiry-btn:hover {
    background: #ea6e70;
    color: #FFF;
}

header .header-inner .inquiry-icon {
    width: 19px;
    height: 19px;
}

header .header-emp {
    padding: 0 86px;
}

@media only screen and (max-width: 1128px) {
    header .header-inner {
        padding: 0 72px;
    }

    header .header-emp {
        padding: 0 48px;
    }
}
@media only screen and (max-width: 768px) {
    header .header-inner {
        padding: 0 calc((26 / 375) * 100vw);
    }

    header .header-emp {
        padding: 0 calc((16 / 375) * 100vw);
    }

    header .header-inner .header-logo {
        height: calc((22 / 375) * 100vw);
        margin-bottom: calc((5 / 375) * 100vw);
    }

    header .header-inner .emp-header-logo {
        width: calc((120 / 375) * 100vw);
        margin-bottom: 0;
    }
    
    header .header-inner .header-text1 {
        font-size: calc((10 / 375) * 100vw);
    }
    
    header .header-inner .header-text2 {
        font-size: calc((8 / 375) * 100vw);
    }

    header .header-inner .header-text3 {
        font-size: calc((9 / 375) * 100vw);
    }

    header .header-inner .signin-btn {
        font-size: calc((14 / 375) * 100vw);
        padding: calc((5 / 375) * 100vw) calc((20 / 375) * 100vw);
    }
    
    header .header-inner .signin-arrow {
        height: calc((14 / 375) * 100vw);
    }

    header .header-inner .btn-container {
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 0px;
    }

    header .header-inner .mobile-num {
        gap: calc((2 / 375) * 100vw);
        letter-spacing: -0.06px;
        font-size: calc((12 / 375) * 100vw);
        font-weight: 500;
    }
    
    header .header-inner .mobile-icon {
        width: calc((14 / 375) * 100vw);
        height: calc((14 / 375) * 100vw);
    }
    
    header .header-inner .mobile-info {
        display: none;
    }
    
    header .header-inner .inquiry-btn {
        margin-top: calc((2 / 375) * 100vw);
        font-size: calc((8.5 / 375) * 100vw);
        gap: calc((4 / 375) * 100vw);
        padding: 0 calc((8 / 375) * 100vw);
        height: calc((20 / 375) * 100vw);
    }
    
    header .header-inner .inquiry-icon {
        width: calc((12 / 375) * 100vw);
        height: calc((12 / 375) * 100vw);
    }
}

/* footer */
footer {
	margin-top: 120px;
}
footer img {
	max-width: 100%;
	width: auto;
}
@media screen and (max-width: 750px){
	footer{
		margin-top: 8vw;
	}
}

.emp-footer {
    background: #FFF;
/*    display: flex;
    flex-direction: column;*/
    width: 100%;
    padding: 72px 112px;
    text-align: left;
}

.emp-footer a {
    margin: 0;
}

.emp-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.emp-footer .logo-container {
    width: fit-content;
    margin-right: 12px;
    text-align: center;
    margin-bottom: 52px;
    text-align: left;
}

.emp-footer .wj-logo {
    margin-bottom: 18px;
}

.emp-footer .wj-logo-title {
    color: #373737!important;
    font-size: 24px;
    font-family: Nunito!important;
    font-weight: 700;
    letter-spacing: 0.32px;
}

.emp-footer .emp-main-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.emp-footer .link-container-multi {
    display: flex;
    flex-direction: column;
}

.emp-footer .link-container-multi .link-container:not(:first-child) {
    margin-top: 44px;
}

.emp-footer .link-container {
    display: flex;
    flex-direction: column;
}

.emp-footer .link-title {
    color: #373737!important;
    font-size: 18px;
    font-family: Nunito;
    font-weight: 700;
    line-height: 22.4px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    text-decoration-line: underline;
    text-underline-offset: 4px;
}

.emp-footer .emp-links > li {
    padding-bottom: 24px;
}

.emp-footer .emp-links > li a {
    color: #373737!important;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 22.4px;
    display: block;
}

.emp-footer .hidden {
    display: none!important;
}

.emp-footer .emp-links > li a:hover {
    color: #b6b6b6!important;
}

.emp-footer .checkbox-toggle {
    display: none;
}

#copyright {
    color: #FFF!important;
    font-size: 16px;
    font-family: Roboto;
    line-height: 31px;
    letter-spacing: 0.4px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.59);
    background: #33A8ED;
    font-weight: 400!important;
}

#copyright span {
    opacity: 0.8;
}

.emp-footer .redirect-buttons-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
}

.emp-footer .redirect-buttons-container a {
    display: inline-flex;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    flex: 1 1 0px;
    color: #FFF!important;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.emp-footer .redirect-buttons-container a:not(:last-child) {
    margin-right: 32px;
}

.emp-footer .redirect-buttons-container .btn1 {
    background: #4C47B2;
}

.emp-footer .redirect-buttons-container .btn2 {
    background: #E1696C;
}

.emp-footer .redirect-buttons-container .btn3 {
    background: #846AF7;
}

.emp-footer .redirect-buttons-container .btn4 {
    background: #F49E54;
}

.emp-footer .redirect-buttons-container .btn5 {
    background: #52C0DD;
}

@media only screen and (max-width: 1128px) {
    .emp-footer {
        padding: 72px 72px;
    }

    .emp-footer .redirect-buttons-container a {
        width: 40%;
        flex: none;
        margin: 12px 0;
    }
}

@media only screen and (max-width: 767px) {
    .emp-footer {
        padding: calc((26 / 375) * 100vw);
    }

    .emp-footer .emp-main-container {
        margin-bottom: calc((24 / 375) * 100vw);
    }

    .emp-footer .link-container, .emp-footer .link-container-multi {
        width: 100%;
    }

    .emp-footer .link-container-multi .link-container:not(:first-child) {
        margin-top: 0px;
    }

    .emp-footer .link-title {
        margin-top: calc((12 / 375) * 100vw);
        border-bottom: calc((1 / 375) * 100vw) solid #373737;
        text-decoration-line: none;
        font-size: calc((16 / 375) * 100vw);
        padding-bottom: calc((12 / 375) * 100vw)x;
        margin-bottom: calc((12 / 375) * 100vw);
    }

    .emp-footer .link-title::after {
        content: "+";
        display: inline-block;
        position: absolute;
        right: 0;
        margin-left: calc((5 / 375) * 100vw);
        margin-right: calc((26 / 375) * 100vw);
        text-decoration: none;
    }

    .emp-footer .emp-links > li {
        display: none;
        padding-bottom: calc((12 / 375) * 100vw);
    }

    .emp-footer .emp-links > li a {
        font-size: calc((14 / 375) * 100vw);
    }

    #copyright {
        font-size: calc((12 / 375) * 100vw);
        padding: calc((8 / 375) * 100vw);
    }

    .emp-footer .logo-container {
        margin-right: 0;
        margin-bottom: calc((16 / 375) * 100vw);
        width: 100%;
        text-align: start;
    }

    .emp-footer .wj-logo {
        height: calc((28 / 375) * 100vw);
        width: auto;
    }

    .emp-footer .wj-logo-title {
        font-size: calc((16 / 375) * 100vw);
    }

    .emp-footer .redirect-buttons-container a {
        font-size: calc((14 / 375) * 100vw);
        width: 48%;
    }

    .emp-footer .redirect-buttons-container a:not(:last-child) {
        margin-right: 0;
    }

    .emp-footer .checkbox-toggle:checked ~ .emp-links > li {
        display: block;
    }
    

    .emp-footer .checkbox-toggle:checked ~ .emp-footer .link-title::after {
        content: "-";
    }
}

.seeker-footer {
    background: #33A8ED;
/*    display: flex;
    flex-direction: column;*/
    width: 100%;
    padding: 72px 112px;
    text-align: left;
}

.seeker-footer a {
    margin: 0;
}

.seeker-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.seeker-footer .logo-signin-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 52px;
}

.seeker-footer .logo-container {
    width: fit-content;
    margin-right: 12px;
    text-align: center;
}

.seeker-footer .wj-logo {
    margin-bottom: 18px;
}

.seeker-footer .wj-logo-title {
    color: #FFF!important;
    font-size: 24px;
    font-family: Nunito!important;
    font-weight: 700;
    letter-spacing: 0.32px;
}

.seeker-footer .signin-btn {
    border-radius: 100px;
    background: #EF7679;
    display: flex;
    color: #FFF!important;
    font-size: 24px;
    font-family: Roboto!important;
    font-weight: 500;
    letter-spacing: 0.8px;
    border: none;
    height: fit-content;

    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    align-self: end;
}

.seeker-footer .signin-arrow {
    height: 24px;
    width: auto;
}

.seeker-footer .signin-btn:hover {
    color: #FFF!important;
    background: #ce6162;
}

.seeker-footer .signin-arrow {

}

.seeker-footer .seeker-main-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.seeker-footer .seeker-desc {
    color: #FFF!important;
    font-size: 17px;
    font-family: Roboto;
    line-height: 28px;
    letter-spacing: 0.4px;
    opacity: 0.8;
    max-width: 307px;
    margin-right: 80px;
    font-weight: 400;
}

.seeker-footer .link-main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 387px);
    flex-wrap: wrap;
}

.seeker-footer .link-container-multi {
    display: flex;
    flex-direction: column;
}

.seeker-footer .link-container-multi .link-container:not(:first-child) {
    margin-top: 44px;
}

.seeker-footer .link-container {
    display: flex;
    flex-direction: column;
}

.seeker-footer .link-title {
    color: #FAFAFA!important;
    font-size: 18px;
    font-family: Nunito;
    font-weight: 700;
    line-height: 22.4px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.seeker-footer .seeker-links > li {
    padding-bottom: 24px;
}

.seeker-footer .seeker-links > li a {
    color: #FFF!important;
    font-size: 16px;
    font-family: Roboto;
    line-height: 22.4px;
    font-weight: 400;
    display: block;
}

.seeker-footer .hidden {
    display: none!important;
}

.seeker-footer .seeker-links > li a:hover {
    color: #ffffff!important;
}

.seeker-footer .checkbox-toggle {
    display: none;
}

.seeker-footer .social-download-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.seeker-footer .social-container {
    display: flex;
    flex-direction: row;
    margin-right: 40px;
    width: fit-content;
    min-width: 325px;
}

.seeker-footer .social-container a {
    margin-right: 18px;
    position: relative;
}

.seeker-footer .social-container div {
    position: absolute;
    margin: 8px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    z-index: 0;
}

.seeker-footer .social-container a img {
    position: relative;
    height: fit-content;
    z-index: 1;
    height: 44px;
}

.seeker-footer .download-container {
    display: flex;
    flex-direction: row;
}

.seeker-footer .download-container a {
    margin-right: 36px;
}

.seeker-footer .download-container a img {
    height: 44px;
    width: auto;
}

#copyright {
    color: #FFF!important;
    font-size: 16px;
    font-family: Roboto;
    line-height: 31px;
    letter-spacing: 0.4px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.59);
    background: #33A8ED;
    font-weight: 400!important;
}

#copyright span {
    opacity: 0.8;
}

@media only screen and (max-width: 1128px) {
    .seeker-footer {
        padding: 72px 72px;
    }

    .seeker-footer .seeker-desc {
        max-width: 100%;
        margin: 0;
        margin-bottom: 48px;
    }
    .seeker-footer .link-main-container {
        width: 100%;
    }

    .seeker-footer .social-container {
        margin-right: 0px;
    }

    .seeker-footer .download-container {
        justify-content: flex-end;
        width: 100%;
    }

    .seeker-footer .download-container a {
        margin: 0;
        margin-left: 24px;
    }

    .seeker-footer .download-container a img {
        height: 44px;
    }
}

@media only screen and (max-width: 767px) {
    .seeker-footer {
        padding: calc((26 / 375) * 100vw);
    }
    
    .seeker-footer .seeker-desc {
        font-size: calc((14 / 375) * 100vw);
    }

    .seeker-footer .seeker-main-container {
        margin-bottom: calc((24 / 375) * 100vw);
    }

    .seeker-footer .link-title {
        font-size: calc((16 / 375) * 100vw);
        padding-bottom: calc((12 / 375) * 100vw);
        border-bottom: calc((1 / 375) * 100vw) solid #fff;
        margin-top: calc((12 / 375) * 100vw);
        margin-bottom: calc((12 / 375) * 100vw);
    }

    .seeker-footer .link-title::after {
        content: "+";
        display: inline-block;
        position: absolute;
        right: 0;
        margin-left: calc((5 / 375) * 100vw);
        margin-right: calc((26 / 375) * 100vw);
    }

    .seeker-footer .seeker-links > li {
        display: none;
        padding-bottom: calc((12 / 375) * 100vw);
    }

    .seeker-footer .seeker-links > li a {
        font-size: calc((14 / 375) * 100vw);
    }

    .seeker-footer .checkbox-toggle:checked ~ .seeker-links > li {
        display: block;
    }
    
    .seeker-footer .checkbox-toggle:checked ~ .seeker-footer .link-title::after {
        content: "-";
    }

    .seeker-footer .social-download-container {
        flex-wrap: wrap;
    }

    .seeker-footer .social-container {
/*        min-width: 250px;*/
        width: 100%;
        justify-content: space-evenly;
        margin-bottom: calc((24 / 375) * 100vw);
        gap:  calc((6 / 375) * 100vw);
    }

    .seeker-footer .social-container a{
/*        margin-right: 6px;*/
        margin-right: 0;
    }

    .seeker-footer .download-container {
        width: 100%;
        justify-content: space-evenly;
        gap:  calc((8 / 375) * 100vw);
    }

    .seeker-footer .download-container a{
/*        margin-left: 8px;*/
        margin-left: 0;
    }

    .seeker-footer .download-container a img {
        height: calc((38 / 375) * 100vw);
    }

    #copyright {
        font-size: calc((12 / 375) * 100vw);
        padding: calc((8 / 375) * 100vw);
    }

    .seeker-footer .logo-signin-container {
        flex-wrap: wrap;
        justify-content: start;
    }

    .seeker-footer .logo-container {
        margin-right: 0;
        margin-bottom: calc((16 / 375) * 100vw);
        width: 100%;
        text-align: start;
    }

    .seeker-footer .wj-logo {
        height: calc((28 / 375) * 100vw);
        width: auto;
    }

    .seeker-footer .wj-logo-title {
        font-size: calc((16 / 375) * 100vw);
    }

    .seeker-footer .signin-btn {
        font-size: calc((18 / 375) * 100vw);
        padding: calc((8 / 375) * 100vw) calc((24 / 375) * 100vw);
    }

    .seeker-footer .signin-arrow {
        height: calc((18 / 375) * 100vw);
    }

    .seeker-footer .link-container, .seeker-footer .link-container-multi {
        width: 100%;
    }

    .seeker-footer .link-container-multi .link-container:not(:first-child) {
        margin-top: 0px;
    }
}