@charset "utf-8";

@import url(base.css);
@import url(nav.css);
@import url(footer.css);

/* =========================

    header

========================== */

.header {
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
    height: 72px;
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, .14);
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 300;
    top: 0;
    left: 0;
}

.head-link {
    margin-top: .2rem;
    font-size: 20px;
    font-weight: 900;
    position: relative;
    width: fit-content;
}

.head-link::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s ease;
}

.head-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header a h1 {
    font-size: 20px;
}

/* =========================

    section

========================== */

.container {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 80px;
    min-height: 100vh;
}

/* =================

    inner

================== */

.inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: auto;
    align-items: stretch;
    margin: 0 auto;
    padding: 0 1em;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 1.5rem auto;
}

.profile-block {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    text-align: left;
    width: fit-content;
}

.name-block {
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sub-name-box {
    display: flex;
}

.sub-name,
.properties-txt {
    font-size: 1rem;
    font-weight: 600;
}
    
.properties-txt {
    margin-top: 1rem;
}

.profile-block {
    display: block;
    text-align: left;
}

.profile-comp-box {
    margin-left: 0;
}

/* ====================

    PICK UP & SONGS

===================== */

.link-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px,1fr));
    margin: 2rem auto;
    padding: 0 2rem;
    gap: 1.25rem;
}

.link-btn {
    background-color: #000;
    margin: 0 auto;
    padding: 5px 20px;
    border-radius: 50px;
    width: 150px;
    display: flex;
    align-items: center;
    border: 2px solid var(--bg-black);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.link-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--bg-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: background-color .4s ease, transform .4s ease;
}

.link-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.link-img {
    width: 15px;
    height: 15px;
    margin: 0 1rem;
    z-index: 1;
}

.link-txt {
    color: #fff;
    z-index: 1;
}

.link-btn:hover .link-img {
    filter: brightness(1) invert(1);
}

.link-btn:hover .link-txt {
    color: var(--bg-black);
}

.details {
    text-align: left;
    display: block;
    width: 100%;
}

.content-header {
    width: 100%;
    padding: 0 1rem;
}

.content-title {
    font-size: 1.7rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.content-container {
    padding: 0 1rem;
}

.content-list {
    border-bottom: 1px solid var(--border-color);
}

.content-item {
    padding: 1rem 0;
}

.content-txt {
    font-weight: 700;
    margin-bottom: .5rem;
}

.tags {
    margin-top: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.content-item-small {
    display: flex;
    align-items: center;
}

.content-item-small:last-child {
    padding-bottom: 1rem;
}

.mv {
    text-align: left;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    align-items: stretch;
    gap: 3em;
    margin-top: 1rem;
}

.mv-card {
    width: 100%;
    height: auto;
    padding: 0 0 1rem 0;
    border-radius: 0  0 12px 12px;
    box-shadow: 0 14px 20px var(--main-shadow-color);
}

.box {
    background: #eee;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.mv-title {
    font-size: 18px;
    font-weight: 900;
    padding-top: 1rem;
    text-align: center;
}

/* ===================

    NEWS

==================== */

.section {
    text-align: left;
}

.news-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.news-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
}

.time-txt {

}

.time-year,
time {
    font-weight: 700;
}

time {
    display: block;
    font-size: 17px;
}

.news-box {
    display: block;
    margin-left: 30px;
}

.person {
    display: flex;
}

.news-vision {
    font-weight: 700;
}

.news-txt-mini {
    background-color: var(--bg-black);
    padding: 0 10px;
    border-radius: 50px;
    margin-left: 10px;
    color: #fff;
    font-weight: 600;
}

.news-txt {
    font-size: 20px;
    font-weight: 500;
}

/* ===================

    LINK

==================== */

#link p {
    margin-bottom: 2rem;
}

@media screen and (min-width:768px) {
    
    .container {
        grid-template-columns: 200px 2fr;
    }

    .nav-toggle:checked ~ .nav-list {
        transform: none;
        opacity: 1;
    }

    .nav-overlay,
    .nav-toggle:checked ~ .nav-overlay {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .nav-btn span {
        display: none;
    }

    .nav-list {
        position: static;
        width: 80%;
        max-width: none;
        height: auto;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        visibility: visible;
        background: transparent;
        gap: 1em;
        padding: 0;
        margin: 2em 0 0 2em;
    }

    .inner {
        width: 100%;
        padding: 0 2rem;
    }

    .profile-block {
        display: flex;
        flex-direction: row;
        margin: 0 auto;
        text-align: left;
        width: fit-content;

    }

    .profile-comp-box {
        margin-left: 30px;
    }

    .name-block {
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .name {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .sub-name-box {
        display: flex;
    }
    
    .sub-name,
    .properties-txt {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .properties-txt {
        margin-top: 1rem;
    }

}

@media screen and (max-width:768px) {
    .profile-block {
        display: block;
    }

    .profile-comp-box {
        margin-left: 0;
    }

    .name {
        margin-top: 1rem;
    }
}

/* =========================

    footer

========================== */

