/*common START*/

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

@font-face {
    font-family: 'NotoSansJP';
    src: url('../font/NotoSansJP-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LieToMe';
    src: url('../font/LieToMe.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'NotoSansJP';
}

#wrapper {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.center {
    text-align: center;
}

a {
    text-decoration: none;
}

h2 {font-weight:500;}

/*common END*/

/*******************************/
/*******************************/

header {
    background: #fff;
    width: 585px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    border-radius: 75px;
    top: 7.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header a {
    text-decoration: none;
    color: #000;
    font-size: 1.6rem;
}

header a {
    margin-right: 3%;
}

header a:first-child {
color:#004b9d;
font-weight:700;
    line-height: 1;
}

/*mv START*/

.mv {
    background: url("../img/mv_bg.jpg") center/cover no-repeat;
    width: 100%;
    height: 730px;
}

.main_copy {
    top: 25%;
    right: 10%;
}

.sub_copy {
    top: 65%;
    right: 11.2%;
}

.sub_copy p {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: -3.54px 3.54px 5px rgba(136, 136, 136, 0.5);
}

.jrathlete_logo {
    top: 5%;
    left: 2.5%;
}

/*mv END*/

/*******************************/
/*******************************/

/*message START*/

.message {
    width: 90%;
    margin: 0 auto;
    margin-top: 100px;
}

.message_container {
    background: #004b9d;
    padding: 100px 0;
}

.message_container h2 {
    margin-bottom: 30px;
}

.message_container p {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
}

/*message END*/

/*******************************/
/*******************************/

/*interview START*/

.interview {
    width: 90%;
    margin: 0 auto;
    margin-top: 100px;
}

.interview_container {
    background: #fff;
    position: relative;
}

.interview_container h2 {
    margin-bottom: 30px;
}

.interview_container p.u_h2 {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.interview_container .overlay p {
    font-size: 2rem;
    font-weight: 500;
    position: absolute;
    bottom: 20%;
    left: 5%;
    right: 5%;
}

@media screen and (max-width:767px) {
.interview_container .overlay p {
    font-weight: 500;
    position: absolute;
    bottom: 25%!important;
    left: 5%;
    right: 5%;
}
}

.interview_container h3 {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 4vh;
    text-align: center;
}

.interview_inner {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.interview_inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.card {
    position: relative;
    overflow: hidden;
    height: 80vh;
    flex: 1;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.2);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*padding: 20px;*/
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    transition: background 0.4s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/*
.card:hover .overlay {
  background: none;
}
  */

/*interview END*/

/*******************************/
/*******************************/

/*contactsec START*/
.contactsec {
    background: url("../img/contactsec_bg.jpg") center/cover no-repeat;
    width: 100%;
    padding: 100px 0;
}

.contactsec h2 {
    margin-bottom: 30px;
}

.contactsec p {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 50px;
}

.contact_btn {
    width: 300px;
    height: 50px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    border-radius: 25px;
}

.contact_container {
    text-align: center;
}

.contact_container a {
    display: inline-block;
    color: #000;
}

/*contactsec END*/

/*pre-footer START*/
.pre-footer {
    background: #004b9d;
    padding: 60px 0;
}

.pre-footer_container {
    width: 90%;
    margin: 0 auto;
}

.pre-footer_inner {
    display: flex;
    width: 100%;
}

.pre-footer_container .left,
.pre-footer_container .right {
    width: 50%;
}

.pre-footer_container .left img {
    display: block;
}

.pre-footer_container .left img:first-child {
    margin-bottom: 40px;
}

.pre-footer_container .right a {
    color: #fff;
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 2;
}

/*pre-footer END*/

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    color: #004b9d;
    font-weight: 500;
}

@media screen and (max-width:1240px) {
    .interview_container h3 {
        font-size: 2rem;
        ;
    }
}

@media screen and (max-width:1040px) {
    .interview_container h3 {
        font-size: 1.4rem;
    }
}

@media screen and (min-width:767px) {
    .sp_only {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .mv {
        background-image: url('../img/mv_bg_sp.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        aspect-ratio: 4 / 3;
        width: 100%;
        height: auto;
    }

    .jrathlete_logo,
    .main_copy,
    .sub_copy {
        display: none;
    }

    h2 {
        width: 150px;
        margin: 0 auto;
    }

    h2 img {
        width: 100%;
    }

    .hamburger-morph {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        width: 48px;
        height: 48px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .hamburger-morph__icon {
        width: 100%;
        height: 100%;
    }

    .hamburger-morph__line {
        fill: none;
        stroke: #fff;
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger-morph__line:nth-child(1) {
        stroke-dasharray: 60 207;
    }

    .hamburger-morph__line:nth-child(2) {
        stroke-dasharray: 60 60;
    }

    .hamburger-morph__line:nth-child(3) {
        stroke-dasharray: 60 207;
    }

    .hamburger-morph.active .hamburger-morph__line:nth-child(1) {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
    }

    .hamburger-morph.active .hamburger-morph__line:nth-child(2) {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
    }

    .hamburger-morph.active .hamburger-morph__line:nth-child(3) {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
    }

    .nav-morph {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 75, 157, 0.8);
        clip-path: circle(0% at calc(100% - 44px) 44px);
        transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 900;
    }

    .nav-morph.active {
        clip-path: circle(150% at calc(100% - 44px) 44px);
    }

    .nav-morph__wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .nav-morph__list {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    .nav-morph__item {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-morph.active .nav-morph__item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-morph.active .nav-morph__item:nth-child(1) {
        transition-delay: 0.3s;
    }

    .nav-morph.active .nav-morph__item:nth-child(2) {
        transition-delay: 0.4s;
    }

    .nav-morph.active .nav-morph__item:nth-child(3) {
        transition-delay: 0.5s;
    }

    .nav-morph.active .nav-morph__item:nth-child(4) {
        transition-delay: 0.6s;
    }

    .nav-morph__link {
        position: relative;
        display: inline-block;
        padding: 20px;
        font-size: 28px;
        color: #fff;
        text-decoration: none;
        overflow: hidden;
    }

    /*message START*/

    .message {
        width: 90%;
        margin: 0 auto;
        margin-top: 50px;
    }

    .message_container {
        padding: 7.5%;
    }

    .message_container h2 {
        margin-bottom: 15px;
    }

    .message_container p {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.5;
    }

    /*message END*/

    /*interview START*/
    .interview_container p.u_h2 {
        font-size: 1.6rem;
    }

    .interview {
        margin-top: 50px;
    }

    .interview_inner {
        margin-bottom: 50px;
    }

    .interview_inner .card p {
        font-size: 1.6rem;
        bottom: 20%;
    }


    /*interview END*/

    /*contactsec START*/
    .contactsec p {
        font-size: 1.6rem;
    }

    .contactsec {
        padding: 50px 0;
    }

    .contact_container {
        width: 90%;
        margin: 0 auto;
    }

    /*contactsec END*/


    /*interview START*/
    .interview_inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .interview_inner .card {
        width: 100%;
    }

    .card {
        height: 350px;
    }

    /*interview END*/

    .pre-footer_inner {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    .pre-footer_container .left,
    .pre-footer_container .right {
        width: 48%;
    }

    .pre-footer_container .left img,
    .pre-footer_container .right img {
        width: 100%;
    }



}