@charset "UTF-8";

/* --------------------------*/
/* about
/* --------------------------*/

.about-wrapper {
    position: relative;
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}

.frame-pc {
    height: 100vh;
    background-image: url(../img/about.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.about-content {
    position: absolute;
    top: 10%;
    left: 64px;
    max-width: 360px;
    height: 360px;
    box-sizing: border-box;
    padding: 90px 20px 100px;
    border: double 12px #333;
    background-color: rgba(255, 255, 255, .97);
}

.section-text {
    font-weight: 500;
}

.red {
    color: #F63230;
}

@media screen and (max-width: 768px) {
    .frame-sp {
        position: relative;
        height: calc(100vh - 115px);
        background-color: #CAB08F;
    }

    .about-content-sp1 {
        position: absolute;
        top: 20%;
        right: 29px;
        width: 300px;
        height: 300px;
        background-color: #333;
        border: solid 2px #333;
    }

    .about-content-sp2 {
        position: absolute;
        top: 24%;
        right: 0;
        max-width: 300px;
        height: 300px;
        background-color: #fff;
        border: solid 2px #333;
        z-index: 0;
    }

    .section-text {
        padding: 0 30px;
    }
}