/* ABOUT */

.about-visual {
    position: fixed;
    top: 0;
    width: 100vw;
    min-height: 360px;
    background-color: #2B2B2B;
}


/* Opening Content */
.opening-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding-top: 60px;
    margin-left: 240px;
    margin-left: 20vw;
}


.opening-content h1 {
    font-size: 48px;
    line-height: 1.4em;
}


.opening-header {
    z-index: 10;
}


.opening-button-wrapper {
    margin-top: 40px;
}
.opening-button {
    display: inline-block;
    min-width: 120px;
    padding: 10px 20px;
    border: solid 1px #ffffff;
    border-radius: 24px;
    background-color: rgba(43, 43, 43, 0.8);
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.opening-footer {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    z-index: 8;
}

.opening-footer-logo {
    width: 100px;
    height: auto;
}



.about-page-title {
    padding: 20px 0 40px;
    font-size: 32px;
}

.about-eyecatch {
    width: 100%;
    margin-bottom: 20px;
}

.about-story-link {
    display: inline-block;
    min-width: 120px;
    padding: 8px 20px;
    border: solid 1px #ffffff;
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.about-sotry-title {
    margin-bottom: 16px;
    font-size: 24px;
    color: #FEFFB9;
}

.about-text-wrapper {
    position: absolute;
    top: 0;
    right: 40px;
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    background-color: #000;
}

.about-main-visual {
    position: absolute;
    bottom: 0;
    z-index: 5;
}
.about-main-visual img {
    position: absolute;
    display: block;
    max-height: 700px;
    height: 80vh;
    padding-top: 40px;
    padding-bottom: 40px;
    left: 200px;
    bottom: 0;
}

@media screen and (max-width:1023px) { 
    .opening-content {
        margin-left: 5vw;
    }
    .opening-header h1 {
        font-size: 36px;
    }

    .about-main-visual img {
        /* left: 10vw; */
    }
    .opening-button-wrapper {
        margin-top: 20px;
    }
    
}

@media screen and (max-width:767px) {
    .opening-content {
        height: 80vh;
        
    } 
    .about .about-visual {
        position: static;
        overflow: hidden;
    }
    .about-text-wrapper {
        position: static;
        right: 0;
        width: 100vw;
    }

    .about-main-visual {
        width: 100vw;
        height: 80vh;
        top: 30px;
        bottom: none;
        z-index: 5;
        
    }
    .about-main-visual img {
        top: 30px;
        left: 66%;
        transform: translateX(-50%);

    }

}
.about-logo-wrapper {
    display: flex;
    align-items: center;
}

.about-footer {
    display: none;
}


@media (max-height: 580px) {
    .opening-footer {
        display: none;
    }

    .about-footer {
        display: block;
    }
  }
    
/* Landscape */
@media screen and (max-width:767px) and (max-height: 580px) {
    .opening-content {
        height: 80vh;
    }

    .about-main-visual img {
        height: 570px;
        max-height: none;
        top: 10px;
    }
}