html {
    overflow-x: hidden;
    font-size: 62.5%;
}

* {
    font-size: 14px;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
    position: relative;
}

.truncate-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    line-height: 0;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

.banner-ovelay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(0, 0, 0, 0.3) 75%,
            rgba(0, 0, 0, 0.5) 100%);
}

.secction-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.flex {
    display: flex;
}

.flex-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.bg-blue {
    background-color: #74CEE4;
}

.bg-green {
    background-color: #6FC191;
}

.bg-red-pink {
    background-color: #E16C6B;
}

.bg-purple {
    background-color: #C488CE;
}

.square-img img {
    aspect-ratio: 1 / 1;
}

.only-sp {
    display: none !important;
}

.only-pc {
    display: block !important;
}

@media (max-width: 1023px) {
    .only-sp {
        display: block !important;
    }

    .only-pc {
        display: none !important;
    }
}