@charset "UTF-8";


/* 採用担当者メッセージ */

.message-mv {
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 70px;
    width: 100%;
    max-width: 1160px;
}

.message-text {
    padding-bottom: 100px;
}

.message-text .hero {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    padding-bottom: 40px;
}

.message-text p:not([class]) {
    text-align: center;
    padding-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
    .message-mv {
        margin: 0 auto 40px;
    }

    .message-mv img {
        object-fit: cover;
        min-height: 200px;
    }

    .message-text {
        padding-bottom: 40px;
    }

    .message-text .hero {
        text-align: center;
        font-size: clamp(20px, 3vw, 24px);
        padding-bottom: 20px;
        line-height: 1.6em;
    }

    .message-text p:not([class]) {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
}


.table-style01 {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.7;
}

.table-style01 th,
.table-style01 td {
    padding: 25px 20px;
    border-bottom: 1px solid #D1D1D1;
    vertical-align: top;
    text-align: left;
}

.table-style01 th {
    width: 25%;
    font-weight: 600;
    position: relative;
}

.table-style01 th::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff5255 0%, #39a2e8 100%);
}

.table-style01 tr:first-of-type th,
.table-style01 tr:first-of-type td {
    padding-top: 0
}

/* 募集職種レイアウト */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item p {
    margin: 0;
}

.job-title {
    color: #39A2E8;
    font-weight: bold;
    margin-bottom: 4px !important;
}

/* 青ドットリスト */
.custom-list {
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 12px;
    line-height: 1.6em;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    background-color: #39A2E8;
    border-radius: 50%;
}

/* 汎用パーツ */
.list-title {
    color: #39A2E8;
}

.note {
    font-size: 0.9em;
}

.note-red {
    display: block;
    font-size: 11px;
    color: #e60012;
    font-weight: normal;
    margin-top: 5px;
}

.contact-info {
    margin-top: 20px;
}

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

    .table-style01 th,
    .table-style01 td {
        display: block;
        width: 100%;
        padding: 15px 10px;
    }

    .table-style01 th {
        border-bottom: none;
        padding-bottom: 0;
        font-weight: 600;
    }

    .table-style01 th::before {
        display: none;
    }

    .table-style01 tr:first-of-type td {
        padding-top: 15px;
    }

    .table-style01 td {
        padding-top: 5px;
        padding-bottom: 15px;
    }

    .table-style01 tr:first-of-type th,
    .table-style01 tr:first-of-type td {
        padding-top: 5px
    }
}


.faq-list {
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background-color: #fff;
}

.faq-button {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    text-align: left;
    background: #fff;
    border: none;
    box-shadow: 0 0 10px 0 rgba(0, 61, 128, 0.25);
}

.faq-icon-q {
    font-size: 24px;
    color: #39A2E8;
    font-family: var(--en-font);
    margin-right: 16px;
}

.faq-icon-a {
    font-size: 24px;
    color: #FF5255;
    font-family: var(--en-font);
    ;
    margin-right: 16px;
}

.faq-text {
    flex-grow: 1;
    font-weight: 500;
    line-height: 1.5;
    padding-right: 16px;
}

.faq-toggle-icon {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #F5F3EC;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #39A2E8;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
    width: 12px;
    height: 2px;
}

.faq-toggle-icon::after {
    width: 2px;
    height: 12px;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
    will-change: grid-template-rows;
}

.faq-answer.is-open {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    display: flex;
    padding: 0 15px;
    margin: 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: padding 0.4s ease-in-out, border-top-width 0.4s ease-in-out, opacity 0.2s ease, transform 0.2s ease;
}

.faq-answer.is-open .faq-answer-inner {
    padding: 24px 15px;
    opacity: 1;
    transform: translateY(0);
    transition: padding 0.4s ease-in-out, border-top-width 0.4s ease-in-out, opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-answer-text {
    flex: 1;
    min-width: 0;
    line-height: 1.8;
}

.faq-answer-text a {
    color: #39A2E8;
    text-decoration: underline;
}

@media (hover: hover) {
    .faq-answer-text a:hover {
        text-decoration: none;
    }
}

.faq-button[aria-expanded="true"] .faq-toggle-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-table-wrapper {
    width: 100%;
    margin-top: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.faq-table th,
.faq-table td {
    border: 1px solid #D1D1D1;
    padding: 8px 8px;
}

.faq-table th {
    font-weight: 500;
    border-top: none;
    background-color: #F5F3EC;
}

.faq-table .faq-th-row {
    border-left: none;
}

.faq-table .faq-table-empty {
    background-color: transparent;
    border-top: none;
    border-left: none;
}

.faq-club-info {
    margin-top: 16px;
}

.faq-club-title {
    color: #39A2E8;
}


@media screen and (max-width: 768px) {
    .faq-table-wrapper {
        width: calc(100% + 40px);
        margin-top: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        left: -40px;
        position: relative;
    }

    .faq-table th,
    .faq-table td {
        border: 1px solid #D1D1D1;
        padding: 6px 3px;
        font-size: min(3vw, 13px);
        line-height: 1.4em;
    }
}

.flow-step {
    position: relative;
}

.flow-step ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.flow-step ul li {
    width: calc((100% - 40px) / 3);
    border-radius: 8px;
    padding: 12px 15px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 61, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flow-step ul li .step-number {
    text-align: center;
    color: #39A2E8;
    font-family: var(--en-font);
    padding-bottom: 5px;
}

.flow-step ul li .flow-text {
    display: flex;
    align-items: center;
}

.flow-step ul li .flow-text .flow-icon {
    width: 80px;
    padding-right: 10px;
}

.flow-step ul li .flow-text p {
    font-size: clamp(18px, 3vw, 24px);
}

.flow-step ul~.note {
    text-align: right;
}

@media screen and (max-width: 767px) {
    .flow-step ul li .flow-text .flow-icon {
        width: 50px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 600px) {
    .flow-step ul li {
        width: 100%;
        border-radius: 8px;
        padding: 12px 15px;
        background: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 61, 128, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

.no-pragram {
    background: #F2F2F2;
    text-align: center;
    padding: 50px 20px;
    width: 100%;
    border-radius: 8px;
    margin: 30px 0 0;
    color: #717171;
}

.section-sub-block {
    margin-bottom: 50px;
}

.section-sub-block:last-of-type {
    margin-bottom: 0;
}

.table-style02 {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin: 30px auto 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.table-style02 thead {
    position: relative;
}

.table-style02 thead::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(90deg, #ff5255 0%, #39a2e8 100%);
    width: 100%;
    height: 2px;
}

.table-style02 thead th {
    background-color: #f7f6f1;
    font-weight: normal;
    padding: 15px;
    font-weight: 600;
    border-bottom: 1px solid #D1D1D1;
}

.table-style02 tbody td {
    padding: 20px 15px;
    border-bottom: 1px solid #D1D1D1;
    text-align: center;
    line-height: 1.6;
    position: relative;
}

.table-style02 tbody td::after {
    content: "";
    display: block;
    position: absolute;
    background: #D1D1D1;
    width: 1px;
    height: 30px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.table-style02 tbody td:last-of-type::after {
    display: none;
}

.table-style02 tbody tr:hover {
    background-color: #fafafa;
}

@media screen and (max-width: 768px) {
    .table-style02 thead {
        display: none;
    }

    .table-style02 {
        border-radius: 0 0;
    }

    .table-style02,
    .table-style02 tbody,
    .table-style02 tr,
    .table-style02 td {
        display: block;
        width: 100%;
    }

    .table-style02 tr {
        margin-bottom: 15px;
        border: 1px solid #D1D1D1;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .table-style02 td {
        position: relative;
        border-bottom: 1px solid #D1D1D1;
        font-size: 13px;
    }

    .table-style02 tbody td {
        padding: 10px 10px 10px 90px;
        text-align: left;
    }

    .table-style02 tbody td::after {
        display: none;
    }

    .table-style02 td:last-child {
        border-bottom: none;
    }

    .table-style02 td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 90px;
        text-align: left;
        font-weight: 600;
        font-size: 0.9em;
    }
}

.online-session {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 61, 128, 0.25);
    overflow: hidden;
    margin: 30px auto 0;
}

.online-session .session-title {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(120deg, #ffeaec 0%, #e6fbff 100%);
}

.online-session .session-title p {
    color: #003D80;
}

.online-session .session-desc {
    width: 75%;
    padding: 20px 30px;
}

.dot-list {
    position: relative;
}

.dot-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    line-height: 1.6em;
}

.dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    background-color: #39A2E8;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .online-session {
        display: flex;
        flex-wrap: wrap;
        border-radius: 8px;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(0, 61, 128, 0.25);
        overflow: hidden;
        margin: 20px auto 0;
    }

    .online-session .session-title {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        background: linear-gradient(120deg, #ffeaec 0%, #e6fbff 100%);
    }

    .online-session .session-title p {
        color: #003D80;
    }

    .online-session .session-desc {
        width: 100%;
        padding: 15px 25px;
    }
}

