.page-container {
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(223, 223, 223, 1) 100%);
}



/* Hero Section */
.hero-section {
    width: 100%;
    height: 80vh;
    background-image: url(../public/gotoh.png);
    background-size: cover;
    padding: 32px;
    display: flex;
    /* アスペクト比を保って全体を覆う */
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 80px;
        display: flex;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    /* 縦に積む */
    justify-content: flex-end;
    /* 下揃え（縦方向） */
    align-items: flex-end;
}

.hero-content {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 32px;
    display: flex;
    flex-wrap: nowrap;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    /* 縦に積む */
    justify-content: flex-end;
    /* 下揃え（縦方向） */
    align-items: flex-end;
}

/* Quote Section */
.quote-section {}

.quote-container {
    display: flex;
    flex-direction: column;
    gap: 18.6px;
}

.quote-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #284969;
}

.quote-text {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.professor-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.professor-details {
    display: flex;
    flex-direction: column;
}

.professor-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: right;
    line-height: 175%;
}

.professor-department {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.professor-band {
    font-size: 20px;
}

/* Profile Section */
.profile-section {

    width: 100%;
}

.profile-text {
    font-size: 16px;
    font-weight: 400;
    color: white;
        width: 672px;
}

/* Message Section */
.message-section {
    width: 100%;
    padding: 60px 20px;
}

.message-content {
    max-width: 1280px;
    margin: 0 auto;
}

.message-title {
    font-size: 12px;
    margin-bottom: 16px;
}


.video-placeholder {
    width: 100%;
    height: 579px;
    background-color: #d9d9d9;
}

/* Responsive Design */
@media (max-width: 1320px) {

    .header-content,
    .hero-content,
    .message-content {
        gap: 16px;
    }
    .quote-text {
        font-size: 28px;
    }
    .professor-department, .professor-band {
        font-size: 16px;
    }

}

@media (max-width: 768px) {

    .hero-section {
        height: auto;
        min-height: 600px;

    }

    .quote-section {

    }

    .profile-section {
        position: static;
        width: 100%;
    }

    .quote-text {
        font-size: 24px;
    }

    .professor-text {
        font-size: 20px;
    }

    .profile-text {
        font-size: 16px;
    }

    .profile-text {
        display: none;
    }


    .quote-section {

    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0;
    }
    .hero-section {
        padding: 20px;
    }

    .professor-department {
        font-size: 16px;
    }

    .professor-band {
        font-size: 14px;
    }

    .quote-text {
        font-size: 20px;
        line-height: 150%;
    }

    .professor-text {
        font-size: 18px;
    }

    .hero-section {
        width: 100%;
        height: 60vh;
        background-image: url(../public/gotoh-sp.png);
    }

    .profile-text {
        display: none;
    }

    .quote-section {
        text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
        width: 100%;

    }

    .message-title {
        font-size: 10px;
        margin-bottom: 16px;
    }


}