@import "/recruit/assets/css/common/initialization.css";
@import "/recruit/assets/css/common/header.css";
@import "/recruit/assets/css/common/navigation.css";
@import "/recruit/assets/css/common/footer.css";

.container:before {
    /* content : "";
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid red;
    height: 100%;
    width: 1px;
    z-index: 9999; */
}

/* タイポグラフィ */
.h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: var(--primary-blue);
}

.h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 0 16px 0 16px;
    text-align: center;
}

.h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: 0.1em;
    color: var(--primary-blue);
}

.body-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: var(--black);
}

.body-text-light {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: var(--black);
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #004494;
}

.btn-secondary {
    background-color: var(--secondary-teal);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #359a94;
}

/* レイアウト */
main {
    margin: 0;
}

.section {
    padding: 40px 0;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* PC用レスポンシブ */
@media (min-width: 769px) {
    .container {
        max-width: 1000px;
        padding: 0 24px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .h1 {
        font-size: 32px;
        line-height: 1.9;
    }
    
    .h2 {
        font-size: 24px;
    }
    
    .h3 {
        font-size: 22px;
    }
    
    .body-text {
        font-size: 18px;
        line-height: 2.1;
    }
    
    .body-text-light {
        font-size: 18px;
        line-height: 2.1;
    }
    
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Page Header
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.page-header {
    position: relative;
    background: transparent;
    min-height: 180px;
    height: auto;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 0 0 32px 0;
    z-index: 1;
}

.page-header .container {
    position: relative;
    height: 100%;
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px 40px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .page-header-content {
        padding: 100px 20px 10px;
    }
    

    .page-title {
        text-align: left;
    }
}

.page-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 16px;
    transform: rotate(-7deg);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.1em;
    color: var(--secondary-teal);
    opacity: 0.3;
    margin: 0 auto;
    font-family: 'La Belle Aurore', cursive;
    white-space: nowrap
}

@media screen and (max-width: 768px) {
    .page-label {
        left: 64px;
        right: initial;
        margin: 0;
        top: 64px;
    }
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: var(--primary-blue);
    margin: 0;
}

/* PC版レスポンシブのpage-header設定 */
@media (min-width: 769px) {
    .page-header {
        margin-top: 0;
        height: 220px;
    }
    
    .page-header::before {
        /* width: 440px; */
        min-width: 440px;
        width: calc(0px + 45vw);
    }
    
    .page-header-content {
        text-align: left;
        padding: 60px 0 60px 60px;
        max-width: 380px;
    }
    
    .page-label {
        position: absolute;
        font-size: 40px;
        transform: rotate(-7deg);
        left: 56px;
        right: initial;
        top: 56px;
        margin: 0;
    }
    
    .page-title {
        padding-top: 32px;
        font-size: 24px;
    }
}

/* ユーティリティクラス */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* アニメーション */
.fadein-root{
    opacity: 0;
}

.fadein-root.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}
.appearanceRisingUp {
    opacity: 0;
    transform: translateY(20px);
}

.appearanceRisingUp.rising-up {
    transform: translateY(0px);
    animation: risingUp 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes risingUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.limited_height_content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    max-height: 60px;
    line-height: 1.2;
    font-size: 16px;   
}

.gradient_text {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}