@charset "UTF-8";

/* ==========================================
   PROFILE CSS
   Noah Lab
   ========================================== */


/* ==========================================
   Profile Page
   ========================================== */

.profile-page {
    width: 100%;
}


/* ==========================================
   Profile Section
   ========================================== */

.profile-section {
    width: 100%;

    padding-block: var(--space-7);

    border-top: 1px solid var(--border-color);
}


/* 最初のセクションはページ見出しとの
   境界線を作らない */

.profile-section:first-of-type {
    border-top: 0;
}


/* ==========================================
   Profile Section Heading
   ========================================== */

.profile-section-heading {
    margin: 0 0 var(--space-5);

    font-size: var(--font-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);

    color: var(--text-main);
}


/* ==========================================
   Profile Card
   ========================================== */

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: var(--space-5);

    padding: var(--space-6);

    background-color: var(--bg-sub);

    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}


/* ==========================================
   Profile Icon
   ========================================== */

.profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 88px;
    height: 88px;

    font-family: var(--font-main);
    font-size: var(--font-2xl);
    font-weight: var(--font-weight-regular);
    line-height: 1;

    color: var(--bg-card);

    background-color: var(--accent-blue);

    border-radius: var(--radius-full);
}


/* ==========================================
   Profile Content
   ========================================== */

.profile-content {
    width: 100%;

    text-align: center;
}


/* ==========================================
   Profile Name
   ========================================== */

.profile-name {
    display: flex;
    align-items: baseline;
    justify-content: center;

    gap: var(--space-2);

    margin: 0;

    font-size: var(--font-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);

    color: var(--text-main);
}


/* ==========================================
   Profile Name Japanese
   ========================================== */

.profile-name span {
    font-family: var(--font-sans);
    font-size: var(--font-sm);

    color: var(--text-sub);
}


/* ==========================================
   Profile Role
   ========================================== */

.profile-role {
    margin: var(--space-2) 0 0;

    font-family: var(--font-sans);
    font-size: var(--font-sm);
    line-height: var(--line-height-base);

    color: var(--accent-beige);
}


/* ==========================================
   Profile Text
   ========================================== */

.profile-text {
    margin: var(--space-4) 0 0;

    font-size: var(--font-sm);
    line-height: var(--line-height-base);

    color: var(--text-main);
}


/* ==========================================
   Profile Text Area
   ========================================== */

.profile-text-area {
    display: flex;
    flex-direction: column;

    gap: var(--space-4);
}


/* ==========================================
   Profile Text Area Paragraph
   ========================================== */

.profile-text-area p {
    margin: 0;

    font-size: var(--font-sm);
    line-height: var(--line-height-base);

    color: var(--text-main);
}


/* ==========================================
   Profile Text Area Strong
   ========================================== */

.profile-text-area strong {
    font-weight: var(--font-weight-semibold);

    color: var(--text-main);
}


/* ==========================================
   Profile List
   ========================================== */

.profile-list {
    display: grid;
    grid-template-columns: 1fr;

    gap: var(--space-4);

    margin: 0;
    padding: 0;

    list-style: none;
}


/* ==========================================
   Profile Item
   ========================================== */

.profile-item {
    padding: var(--space-5);

    background-color: var(--bg-card);

    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);

    transition:
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}


/* ==========================================
   Profile Item Hover
   ========================================== */

.profile-item:hover {
    border-color: var(--accent-beige);

    box-shadow: var(--shadow-sm);
}


/* ==========================================
   Profile Item Title
   ========================================== */

.profile-item-title {
    margin: 0;

    font-size: var(--font-lg);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);

    color: var(--text-main);
}


/* ==========================================
   Profile Item Title Decoration
   ========================================== */

.profile-item-title::before {
    display: inline-block;

    width: 3px;
    height: 1em;

    margin-right: var(--space-2);

    vertical-align: -0.1em;

    background-color: var(--accent-beige);

    border-radius: var(--radius-full);

    content: "";
}


/* ==========================================
   Profile Item Text
   ========================================== */

.profile-item-text {
    margin: var(--space-3) 0 0;

    font-size: var(--font-sm);
    line-height: var(--line-height-base);

    color: var(--text-sub);
}


/* ==========================================
   Profile CTA
   ========================================== */

.profile-cta {
    margin-top: var(--space-7);

    padding: var(--space-7) var(--space-5);

    text-align: center;

    background-color: var(--bg-sub);

    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}


/* ==========================================
   Profile CTA Inner
   ========================================== */

.profile-cta-inner {
    width: 100%;
    max-width: 640px;

    margin-inline: auto;
}


/* ==========================================
   Profile CTA Label
   ========================================== */

.profile-cta-label {
    margin: 0;

    font-family: var(--font-sans);
    font-size: var(--font-xs);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-tight);
    letter-spacing: 0.12em;

    color: var(--accent-beige);

    text-transform: uppercase;
}


/* ==========================================
   Profile CTA Title
   ========================================== */

.profile-cta-title {
    margin: var(--space-2) 0 0;

    font-size: var(--font-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);

    color: var(--text-main);
}


/* ==========================================
   Profile CTA Text
   ========================================== */

.profile-cta-text {
    margin: var(--space-3) 0 0;

    font-size: var(--font-sm);
    line-height: var(--line-height-base);

    color: var(--text-sub);
}


/* ==========================================
   Profile CTA Button
   ========================================== */

.profile-cta .button {
    margin-top: var(--space-5);
}


/* ==========================================
   PC
   ========================================== */

@media (min-width: 768px) {


    /* ======================================
       Profile Section
       ====================================== */

    .profile-section {
        padding-block: var(--space-8);
    }


    /* ======================================
       Profile Section Heading
       ====================================== */

    .profile-section-heading {
        margin-bottom: var(--space-6);

        font-size: var(--font-2xl);
    }


    /* ======================================
       Profile Card
       ====================================== */

    .profile-card {
        flex-direction: row;
        align-items: center;

        gap: var(--space-7);

        padding: var(--space-7);

        text-align: left;
    }


    /* ======================================
       Profile Icon
       ====================================== */

    .profile-icon {
        width: 112px;
        height: 112px;

        font-size: var(--font-3xl);
    }


    /* ======================================
       Profile Content
       ====================================== */

    .profile-content {
        flex: 1;

        text-align: left;
    }


    /* ======================================
       Profile Name
       ====================================== */

    .profile-name {
        justify-content: flex-start;

        font-size: var(--font-2xl);
    }


    /* ======================================
       Profile Text
       ====================================== */

    .profile-text {
        max-width: 680px;

        font-size: var(--font-base);
    }


    /* ======================================
       Profile Text Area
       ====================================== */

    .profile-text-area {
        gap: var(--space-5);
    }


    /* ======================================
       Profile Text Area Paragraph
       ====================================== */

    .profile-text-area p {
        font-size: var(--font-base);
    }


    /* ======================================
       Profile List
       ====================================== */

    .profile-list {
        grid-template-columns: repeat(3, 1fr);

        gap: var(--space-5);
    }


    /* ======================================
       Profile Item
       ====================================== */

    .profile-item {
        padding: var(--space-6);
    }


    /* ======================================
       Profile Item Text
       ====================================== */

    .profile-item-text {
        font-size: var(--font-base);
    }


    /* ======================================
       Profile CTA
       ====================================== */

    .profile-cta {
        margin-top: var(--space-8);

        padding: var(--space-8) var(--space-6);
    }


    /* ======================================
       Profile CTA Title
       ====================================== */

    .profile-cta-title {
        font-size: var(--font-2xl);
    }


    /* ======================================
       Profile CTA Text
       ====================================== */

    .profile-cta-text {
        font-size: var(--font-base);
    }

}