@font-face {
    font-family: 'DIN Condensed';
    src: url('../fonts/DIN-Condensed-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.pc {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 15px;
}

.logo {
    width: 100%;
    position: fixed;
    top: 0;
    padding-block: 15px;
    background-color: #FFF;
}

.logo a {
    width: 180px;
    display: flex;
}

.main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.periods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 65px;
}

.period {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #000;
    padding: 5px 15px;
    border-radius: 20px;
}

.period span {
    color: #00A0FF;
    font-size: 14px;
    white-space: nowrap;
}

.period p {
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
}

.period img {
    width: 10px;
}

.contents {
    max-width: 1000px;
    width: 100%;
}

.contents .years {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
    position: sticky;
    top: 62px;
    background-color: #FFF;
}

.contents .years .year {
    font-size: 36px;
    font-weight: 600;
    font-family: 'DIN Condensed';
}

.contents .post-info {
    padding-block: 30px;
}

.contents .text1 {
    width: 100%;
    text-align: center;
    margin-top: 35px;
    font-size: 80px;
    font-weight: 900;
    font-family: 'DIN Condensed';
}

.contents .photo-name {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contents .photo {
    max-width: 200px;
}

.contents .name {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.contents .text2 {
    font-size: 21px;
}

.contents .text3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 2px;
}

.contents .text4 {
    font-size: 21px;
}

.contents .text5, .contents .text7 {
    font-size: 20px;
    color: #00A0FF;
    font-weight: 700;
}

.contents .text5 p, .contents .text7 p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.contents .text6 {
    padding: 5px 15px;
    background-color: #000;
    color: #00A0FF;
    width: fit-content;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.back-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.back-btn .back {
    margin-top: 20px;
    padding: 5px 15px;
    outline: none;
    border: 1px solid #000;
    background-color: #FFF;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn .back:hover {
    background-color: #000;
    color: #FFF;
    transition: all 0.3s ease;
}

.text8 {
    margin-top: 30px;
}

@media(max-width: 1600px) {
    .contents {
        width: calc(100% - 200px);
    }
}