/* MV */

.mv_title {
    color: #FFF;
    background-color: #FF5300;
    font-weight: 900;
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    background-image: url(./image/mv_over.svg);
    padding: 75px 0px;
    text-align: center;
    -webkit-text-stroke-width: 3.5px;
    -webkit-text-stroke-color: #062326;
}

/* セクション共通 */
.section_title {
    font-size: clamp(24px, 3vw, 32px);
    color: #FFF;
    border: 5px solid #FFF;
    padding: 10px 0px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.contents {
    background-color: #629E42;
    padding-top: 120px;
}

.label {
    width: 100%;
    max-width: 217px;
    padding: 5px 0px;
    color: #FFF;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 160%;
    font-weight: 700;
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.label.client {
    background-color: #FF5300;
}

.label.own {
    background-color: #629E42;
}

.label.school.height {
    background-color: #0685D8;
    height: 100%;
    min-height: 40px;
}

.label.school {
    background-color: #0685D8;
}

.label.school.cn {
    margin-left: auto;
    margin-right: auto;
}

.label.figma_link {
    color: #062326;
    background-color: #F7E684;
    border: 2px solid #062326;
    box-shadow: 3px 3px 0px 0px #062326;
    height: 100%;
    min-height: 40px;
    transition: .3s all;
}

.label.figma_link:hover {
    transform: translateY(4px);
    box-shadow: none;
}

/* ウェブ */
.web_container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10%;
    row-gap: 100px;
}

.web_box {
    text-align: center;
    width: 45%;
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 3%;
    box-shadow: 8px 8px 0px 0px #062326;
    margin-left: auto;
    margin-right: auto;
    transition: .3s all;
}

.web_box:hover {
    transform: translateY(4px);
    box-shadow: none;
}

.web_box.no {
    box-shadow: none;
    transform: none;
}

.web_image {
    width: 100%;
}

.web_subtitle {
    margin-top: 20px;
    font-size: clamp(18px, 3vw, 20px);
}


.link_box {
    display: flex;
    justify-content: center;
    column-gap: 3%;
}

.web_link {
    width: 45%;
}

/* js */
.js_title {
    font-size: clamp(18px, 3vw, 24px);
}

.js_container {
    display: flex;
    column-gap: 10%;
}

.js_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    background-color: #fff;
    width: 45%;
    padding: 20px 0px;
    border-radius: 20px;
}

.js_button {
    border: 3px solid #062326;
    border-radius: 50px;
    background-color: #fff;
    color: #062326;
    width: 100%;
    max-width: 150px;
    height: 50px;
    text-align: center;
    box-shadow: 5px 5px 0px 0px #062326;
}

.js_button:hover {
    transform: translateY(4px);
    box-shadow: none;
}


.dice_image {
    width: 100%;
    max-width: 150px;
}

.onigiri_title {
    font-size: 20px;
}

.onigiri_wrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;
}


/* バナー */

.banner_container {
    display: flex;
    column-gap: 10%;
}

.banner_box {
    text-align: center;
    width: 45%;
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}


.banner_image {
    width: 100%;
    flex: 1;
    object-fit: contain;
}


/* グラフィック */

.gra_container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10%;
    row-gap: 100px;
}

.gra_box {
    text-align: center;
    width: 45%;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 5%;
}

.gra_image {
    width: 100%;
}


/* イラストと写真共通 */

.section_title.bl {
    color: #062326;
    border: 5px solid #062326;
    margin-left: 3%;
    margin-right: 3%;
}

.section_title.bl.bottom {
    margin-top: 80px;
}

.illust_and_photo_inner {
    background-color: #fff;
    border-radius: 50px;
    padding: 80px 0px;
}

.contents.illust_and_photo {
    padding-bottom: 120px;
}

/* イラスト */
.illust_image_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 4%;
    row-gap: 60px;
}

.illust_image {
    width: 28.5%;
    border: solid 1px #062326;
}

/* 写真 */
.photo_container {
    padding: 80px 0px;
}

.photo_image_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 4%;
    row-gap: 60px;
}

.photo_image {
    width: 28.5%;
}

.footer {
    background-color: #629E42;
}

@media screen and (max-width: 570px) {
    .contents {
        background-color: #629E42;
        padding-top: 60px;
    }

    .mv_title {
        padding: 40px 0px;
    }

    .web_container {
        display: flex;
        row-gap: 60px;
        flex-direction: column;
    }

    .web_box {
        text-align: center;
        width: 100%;
        background-color: #fff;
        border-radius: 20px;
        padding: 25px 3%;
        box-shadow: 8px 8px 0px 0px #062326;
        margin-left: auto;
        margin-right: auto;
    }

    .js_container {
        display: flex;
        row-gap: 60px;
        flex-direction: column;
    }

    .js_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 10px;
        width: 100%;
    }

    .banner_container {
        display: flex;
        row-gap: 60px;
        flex-direction: column;
    }

    .banner_box {
        width: 100%;
    }

    .gra_container {
        display: flex;
        row-gap: 60px;
        flex-direction: column;
    }

    .gra_box {
        width: 100%;
        padding: 40px 5%;
    }

    .illust_and_photo_inner {
        padding: 60px 0px;
    }

    .illust_image_box {
        display: flex;
        row-gap: 60px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 40px;
    }

    .illust_image {
        width: 90%;
    }

    /* 写真 */
    .photo_container {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .photo_image_box {
        display: flex;
        row-gap: 60px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 40px;
    }

    .photo_image {
        width: 90%;
    }

}