@font-face {
    font-family: 'DIN Condensed';
    src: url('../fonts/DIN-Condensed-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    overflow: hidden;
}

.header {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #FFF;
}

.logo {
    display: flex;
    width: 150px;
}

/* Main container */
.sp .main {
    min-height: calc(100vh - 65px);
}

.period-slider {
    display: flex;
    margin-block: 15px;
    padding-inline: 10px;
}

.period-slider .arrow {
    max-width: 15px;
    height: 10px;
    display: flex;
}

.period-item {
    background-color: #000;
    color: #FFF;
    margin-inline: 10px;
    padding: 5px 15px;
    border-radius: 20px;
}

.period-item p {
    font-family: 'DIN Condensed';
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    margin-top: 2px;
}

.period-item>div {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.period-item span {
    white-space: nowrap;
    color: #00A0FF;
}

.years {
    margin-bottom: 15px;
    height: 50px;
    padding-inline: 10px;
}

.year-item {
    text-align: center;
    font-size: 32px;
    transition: all 0.3s ease-in-out;
    font-family: 'DIN Condensed';
}

.year-item.slick-slide.slick-current.slick-center {
    transition: all 0.3s ease-in-out;
    color: #00A0FF;
}

.years .slick-list {
    height: 100%;
    align-content: center;
}

.content {
    height: calc(100vh - 149px);
    overflow-y: auto;
    padding-bottom: 60px;
}

.contents .text1 {
    text-align: center;
    padding-block: 10px;
    background-color: #00A0FF;
    color: #FFF;
    margin-bottom: 10px;
    font-weight: 500;
    margin-inline: 10px;
    width: calc(100% - 20px);
    position: sticky;
    top: 0px;
}

.content .box {
    margin-bottom: 10px;
    margin-inline: 10px;
    width: calc(100% - 20px);
}

.content .box .image {
	float: left;
	margin-right: 5px;
}

.content .box img {
    width: 150px;
}

.content .box .texts {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 12;
    overflow: hidden;
}

.contents .text2 {
    font-size: 14px;
}

.contents .text3 {
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contents .text4 {
    color: #00A0FF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.1;
}

.contents .text5 {
    font-weight: 500;
    color: #00A0FF;
}

.contents .text5 p {
    color: #000;
    font-size: 14px;
}

.contents .more {
    margin-block: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    margin-inline: auto;
    width: fit-content;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.contents .text6 {
    text-align: center;
    padding-block: 8px;
    background-color: #00A0FF;
    color: #FFF;
    margin-bottom: 10px;
    margin-inline: 10px;
    width: calc(100% - 20px);
}

.contents .text7, .contents .text8 {
    font-size: 14px;
    margin-inline: 10px;
    width: calc(100% - 20px);
}

.slick-prev {
    left: 10px;
    z-index: 100;
}

.slick-next {
    right: 10px;
}

.slick-prev:before {
    content: "<";
    color: #000;
}

.slick-next:before {
    content: ">";
    color: #000;
}

@media(max-width: 426px) {
    .content .box img {
        width: 130px;
    }
}