@charset "utf-8";
/* =========================
common
========================= */
html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Ubuntu",
        "Kiwi Maru";
    font-style: normal;
    color: #643D06;
    background-color: #F8F6E1;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section__topic {
    color: #CE5818;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
}

/* section topic pc */
@media screen and (min-width: 769px) {
    .section__topic {
        font-size: 9.6rem;
    }
}

/* =========================
header
========================= */
.header {
    padding: 40px 6.4% 20px;
}

.header__topic,
.nav__topic {
    width: 118px;
    height: 37px;
}

/* .nav初期表示 */
.nav {
    background: rgba(248, 246, 225, 0.9);
    width: 100%;
    height: 100vh;
    padding: 40px 6.4%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
}

.nav__list {
    margin-top: 60px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    margin-left: 16px;
}

.nav__item {
    margin-top: 70px;
}

.nav__item:first-of-type {
    margin-top: 0;
}

.nav.active {
    transform: translateX(0);
}

.nav__btn {
    width: 14px;
    height: 15px;
}

.header__btn {
    display: block;
    width: 18px;
    height: 12px;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 6.4%;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        max-width: 1350px;
        margin: 0 auto;
        padding: 65px 64.5px 40.5px 65px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .header__topic {
        width: 236px;
        height: 75px;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        display: flex;
        margin-top: 0;
    }

    .nav__item {
        margin-top: 0;
        margin-left: 70px;
    }

    .nav__header {
        display: none;
    }

    .nav__item img {
        display: none;
        margin-right: 0;
    }

    .nav__item:first-of-type {
        display: none;
    }

    .header__btn {
        display: none;
    }

}/* pc 769px */

/* =========================
main
========================= */
/* article header */
.mainImg .mainImg__pc {
    display: none;
}

/* article header pc */
@media screen and (min-width: 769px) {
    .mainImg .mainImg__pc {
        display: block;
    }

    .mainImg .mainImg__sp {
        display: none;
    }
}

/* About */
.section--about {
    background-image: url(../images/About_background.jpg);
    background-size: cover;
    padding: 60px 7.3% 30px;
}

.about__Img {
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 30px;
    width: 300px;
    height: 300px;
}

.about__txt {
    padding: 0 8%;
    margin-top: 30px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.5; 
}

/* About pc */
@media screen and (min-width: 769px) {
    .section--about {
        padding: 124px 8.8% 94px;
    }

    .about__item {
        max-width: 1280px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        margin-top: 74px;
    }

    .about__Img {
        width: 50%;
        height: 50%;
        margin-top: 0;
    }

    .about__txt {
        font-size: 2rem;
        font-weight: 500;
        line-height: 2.2; 
        margin-top: 0;
        margin-right: 6.9%;
        padding: 0;
        height: 426px;
    }
}

/* Likes */
.section--likes {
    padding: 40px 7.3% 60px;
    background-image: url(../images/Likes_background.jpg);
    background-size: cover;
}

.likes {
    padding: 0 4%;
}

.likes__topic {
    color: #CE5818;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    margin-top: 40px;
}

.likes__img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    margin-top: 20px;
    width: 270px;
    height: 270px;
}

.likes__txt {
    width: fit-content;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 auto;
    margin-top: 20px;
}
/* Likes pc */
@media screen and (min-width: 769px) {
    .section--likes {
        padding: 70px 8.8% 183px;
    }

    .likes {
        display: flex;
        margin-top: 82px;
        justify-content: space-between;
        padding: 0;
        gap: 7%;
    }

    .likes__topic {
        margin-top: 0;
        font-size: 3.2rem;
    }

    .likes__img {
        width: 100%;
        height: 100%;
    }

    .likes__txt {
        font-size: 2rem;
    }
}/* pc 769px */

/* School */
.section--school {
    padding: 60px 7.3% 60px;
}

.school__item {
    padding: 0 2.6%;
}

.map {
    width: 100%;
    height: 200px;
    margin-top: 40px;
    border-radius: 15px;
}

.address {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 40px;
}

.address img {
    margin-top: 0;
    margin-bottom: 3px;
    margin-right: 3px;
    height: 17px;
    width: 14px;
}

/* School pc */
@media screen and (min-width: 769px) {
    .section--school {
        padding: 60px 8.8% 100px;
    }

    .school__item {
        padding: 0 9.5%;
    }

    .map {
        margin-top: 86px;
        height: 523px;
        border-radius: 30px;
    }

    .address {
        font-size: 2rem;
        margin-top: 32px;
    }

    .address img {
        width: 16px;
        height: 20px;
        margin-bottom: 5px;
        margin-right: 4px;
    }
}/* pc 769px */

/* =========================
footer
========================= */
.footer {
    padding: 40px 6.4% 72px;
    background-color: #F2C982;
}

.footer__topic {
    width: 118px;
    height: 37px;
}

.menu__list {
    margin-top: 40px;
    margin-left: 6px;
}

.menu__item {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 20px;
}

.sns {
    display: flex;
    margin-left: 6px;
    margin-top: 40px;
}

.sns__item {
    width: 24px;
    height: 24px;
    margin-right: 24px;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 72px 110px 80px;
        margin: 0 auto;
    }

    .footer__group {
        max-width: 1280px;
        display: flex;
        justify-content: space-between;
    }

    .footer__topic {
        width: 236px;
        height: 75px;
    }

    .menu__list {
        display: flex;
        margin-top: 0;
    }

    .menu__item {
        margin-left: 70px;
        margin-top: 0;
        font-size: 2.4rem;
    }

    .sns {
        justify-content: flex-end;
        margin-top: 10px;
    }

    .sns__item {
        margin: 0 0 0 24px;
    }
}/* pc 769px */