@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Thin.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Regular.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-SemiBold.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Bold.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Bold.ttf') format('truetype');
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, pre {
    word-break: keep-all;
}

html, body {
    margin: 0;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background-color: #fff0c2;
}

section {
    scroll-snap-align: start;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
}

h1 {
    font-family: 'Apple SD Gothic Neo';
    font-weight: 400;
    color: black;
}

h2 {
    font-family: 'Apple SD Gothic Neo';
    font-weight: 200;
    color: black;
}

.strong {
    font-weight: 200;
    font-size: 5rem;
}

.main_title {
    font-family: 'Apple SD Gothic Neo';
    font-weight: 100;
    font-size: 16rem;
    color: black;
}

.horizontal-line {
    position: absolute;
    bottom: 20rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: black;
}

.one { 
    background-color: #fff0c2;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
}

.bottom_box {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.two, .three, .five { 
    background-color: #fff0c2;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.four {
    background-color: #fff0c2;
    height: 100vh;
}

.two .title, .three .title {
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.two .title h1, .three .title h1 {
    font-size: 3rem;
}

.two .content, .three .content {
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.two .image-container {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.three .image-container {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.two .text-container, .three .text-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 45%;
    margin-left: auto;
}

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

.three .text-container {
    margin-right: auto;
    margin-left: 0;
}

.text-box {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-box h2 {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 5rem;
    text-align: left;
}

.text-box.up {
    margin-bottom: 1rem;
}

.text-box.down {
    margin-top: 1rem;
}

.video {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.five .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
}

.five .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.five h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.6;
}


