@import url('https://fonts.cdnfonts.com/css/noto-serif-oriya');

body {
    font-family: 'Noto Serif Oriya', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    color: #211F24;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 4.5em;
    margin: 0 0 0.5em 0;
    line-height: 1em;
}

h2 {
    font-size: 2em;
    margin: 0 0 0.5em 0;
    line-height: 1.2em;
}

h3 {
    font-size: 1em;
    font-weight: 400;
}

.container-full {
    width: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 900px;
}


section {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.section-center {
    text-align: center;
    align-items: center;
    padding: 200px 0;

    h2 {
        width: 80%;
    }

    h3 {
        width: 80%;
    }
}

/* banner */

.banner {
    height: 100%;
    width: 45%;
    padding: 2%;
    justify-content: center;
}

.background-image {
    background-image: url('./image/banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.logo-txt {
    width: 200px;
    margin: 4em 0;
}

a {
    text-decoration: none;
}

.button {
    background-color: #67AC67;
    color: #fff;
    border-radius: 2em;
    font-weight: bold;
    text-align: center;
    width: 100px;
    padding: 1em;
    font-size: 1.2em;
    margin-top: 2em;
    cursor: pointer;
}

.button:hover {
    opacity: 0.8;
}

/* studio */

.facility {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 2em 0;
    padding: 0;


    li {
        display: flex;
        flex-direction: column;
        margin: 2rem;
        align-items: center;

        img {
            width: 80px;
            height: 80px;
        }

    }
}

/* images article */

.pic-1 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    margin: 0 0 1% 0;
}

.pic-3s {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;

    div {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 32%;
        height: 550px;
        margin: 0 0 1% 0;
    }

}

#pic_1 {
    background-image: url('./image/studio_1.jpg');
}

#pic_2 {
    background-image: url('./image/studio_2.jpg');
}

#pic_3 {
    background-image: url('./image/studio_3.jpg');
}

#pic_4 {
    background-image: url('./image/studio_4.jpg');
}

#pic_5 {
    background-image: url('./image/studio_5.jpg');
}

.classes {
    width: 70%;
    margin: 4em auto;

    td {
        padding: 1em;
    }

    .td-bold {
        font-weight: bold;
    }
}

#class_1 {
    background-image: url('./image/class_1.jpg');
}

#class_2 {
    background-image: url('./image/class_2.jpg');
}

#class_3 {
    background-image: url('./image/class_3.jpg');
}


/* article */
.article {
    display: flex;
    width: 70%;
    flex-direction: row;
    justify-content: space-between;
    margin: 5em 0;

    div {
        width: 35%;
        margin-left: 5%;
        text-align: left;

        .article-icon {
            background-position: center;
            background-size: 100px 100px;
            background-repeat: no-repeat;
            margin: 0 0 1% 0;
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
    }

    p {
        text-align: left;
        width: 60%;
    }


}

#a1 {
    background-image: url('./image/a1.png');
}

#a2 {
    background-image: url('./image/a2.png');
}

#c1 {
    background-image: url('./image/c1.png');
}

#c2 {
    background-image: url('./image/c2.png');
}

.culture {

    img,
    h2,
    h3 {
        width: 60%;
    }
}

.scan {
    width: 180px;
    text-align: center;

    h3 {
        width: 100%;
        text-align: center;
    }

    img {
        width: 100%;
    }
}

.scans {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 400px;
    margin-top: 5em;
}

.pre-footer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        width: 200px;
    }
}

.footer {
    height: 60px;
    display: flex;
    justify-content: center;

    span {
        line-height: 60px;

    }

}

@media (max-width: 767px) {
    body {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1em;
    }

    .container {
        margin: 0 auto;
        max-width: 100%;
        min-width: 300px;
    }

    .banner {
        width: 90%;
        padding: 0 5%;
        min-height: 100vh;
    }

    .section-center {
        width: 90%;
        padding: 8rem 5%;
    }

    .background-image {
        display: none;
    }

    .facility {
        margin: 2em 0;

        li {
            margin: 1rem;

        }
    }

    .pic-1 {
        width: 100%;
        height: 400px;
    }

    .pic-3s {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;

        div {
            height: 300px;
        }
    }

    .classes {
        width: 100%;

        td {
            font-size: 0.5rem;
            padding: 0.6em;
        }

        .td-bold {
            font-weight: bold;
        }
    }

    .article {
        width: 100%;
    }

    .culture {

        img,
        h2,
        h3 {
            width: 90%;
        }
    }

    .scans {
        width: 80%;
    }

    .pre-footer {

        img {
            width: 200px;
        }
    }
}