@charset "utf-8";
/* ============common=========== */

:root {
    --primary-black: #341500;
    --primary-orange: #F06500;
    --primary-green: #00DDA4;
    --primary-yellow: #F1AC00;
    --primary-purple: #CB73F9;
    --primary-blue: #31D1FB;
    --primary-white: #FFF4DE;
    --crayon-red: #FF727A;
    --crayon-yellow: #FFD600;
    --crayon-green: #53FF62;
    --crayon-blue: #3FD7FF;
    --contentWidth: 87.2%;
    --contentPadding: 6.4%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        "M PLUS 1p", sans-serif;
    font-style: normal;
    color: var(--primary-black,#341500);
    line-height: 1.5;
    font-size: 1.4rem;
}

img {
    max-width: 100%;
    height: auto;
}

/*=========TOPIC===========*/
.topic {
    text-align: center;
    font-family:  "Permanent Marker", cursive;
    line-height: 1;
    margin: 0 auto;
    font-size: 3.2rem;
    padding-bottom: 36px;
}

/* PC */
@media screen and (min-width:769px) {
    .topic {
        font-size: 7.5rem;
        margin-bottom: 50px;
    }
}
/*=========TOPIC===========*/

/*=========BTN===========*/
.btn {
    font-weight: bold;
    display: inline-block;
    transition: 0.4s;
    margin: 0 auto;
}

.btn:hover {
    opacity: 0.5;
}

/* PC */
@media screen and (min-width:769px) {
    .btn{
        border-radius: 10px;
        border: solid var(--primary-black, #341500) 3px;
        font-size: 2.4rem;
        padding: 14px 156px;
    }
}

/* SP */
@media screen and (max-width:768px) {
    .btn{
        border-radius: 5px;
        border: solid var(--primary-black, #341500) 2px;
        font-size: 1.4rem;
        padding: 8px 32px;
    }
}

/*=========BTN===========*/

/*=========btn(contact)===========*/
.nav__btn__contact {
    color: #FFFFFF;
    font-weight: bold;
    background-color: var(--primary-blue, #31D1FB);
    border-radius: 50px;
    position: relative;
    transition: 0.4s;
    width: 139px;
    text-align: center;
    font-size: 1.4rem;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    line-height: 1;
}

.nav__btn__contact::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 12px;
    background-image: url(../img/icon_contact.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 4px;
}

.nav__btn__contact:hover {
    opacity: 0.5;
}

/* PC */
@media screen and (min-width:769px) {
    .nav__btn__contact {
        font-size: 1.6rem;
    }

    .nav__btn__contact::before {
        width: 20px;
        height: 16px;
        margin-right: 8px;
    }

}

/*=========btn(contact)===========*/

/* ============secction=========== */
.section {
    padding: 50px 0;
}

h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (min-width:769px) {
    .section {
        padding: 200px 0 100px;
    }

    h3 {
        font-size: 2.4rem;
    }
}
/* ============secction=========== */


/* ============common=========== */


/* ============header=========== */
.header {
    display: flex;
}

.nav {
    background-color: #FFF4DE;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    text-align: center;
    transform: translateX(-100%);
    transition: 0.4s;
}

.nav__btn {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
}

.nav__btn img {
    width: 18px;
    height: 18px;
}

.nav__list {
    margin-top: 294px;
}

.nav__item {
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 24px;
}

.header__btn {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    padding: 0px;
    position: fixed;
    right: 10px;
    top: 8px;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
}

/* PC */
@media screen and (min-width:769px) {
    .header__btn {
        display: none;
    }

    .header {
        width: 100%;
        height: 112px;
        padding: 50px 140px 14px;
        background-color: rgba(255, 255, 255, 0.75);
        display: flex;
        justify-content: flex-end;
        position: fixed;
        z-index: 10000;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        position: static;
        transform: translateX(0);

    }

    .nav__item {
        display: inline-block;
        margin-left: 24px;
        margin-top: 0;
    }

    .nav__list {
        margin-top: 294px;
        margin: 0 0 0 0;
    }

    .nav__btn {
        display: none;
    }
}

/* .nav active　表示 */
.nav.active {
    transform: translateX(0);
}
/* ============header=========== */


/* ============FOOTER=========== */
.footer {
    background-color: var(--primary-black, #341500);
    color: #FFF;
    text-align: center;
    padding: 36px 0;
}


.nav__footer {
    width: 100%;
    order: 0;
}

.nav__list__ft li {
    font-size: 1.6rem;
}

.li_sp {
    margin-top: 0;
}

.nav__btn__contact__sp {
    min-width: 208px;
    margin-top: 16px;
}

/* PC */
@media screen and (min-width:769px) {
    .nav__btn__contact__sp {
        display: none;
    }

    .nav__ft__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1160px;
        width: 100%;
        margin: 0 auto;
        }

    .footer {
        display: block;
        padding: 50px 24px 100px;
    }

    .nav__footer {
        text-align: right;
    }

    small {
        width: 160px;
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    
    .footer_naviitem {
        font-size: 2.4rem;
        margin: 0;
        padding: 0;
    }

    .nav__list__ft {
        flex-grow: 1;
        width: 100%;
        max-width: 450px;
        margin: 0 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__list__ft li {
        padding: 0;
        margin: 0;
        font-size: 2.4rem;
    }

    .nav__ft > .nav__item {
        display: block;
        margin: 0;
    }
    
}

/* SP */
@media screen and (max-width:768px) {
    .nav__list__ft .nav__item:nth-last-of-type(1) {
        display: none;
    }

    .nav__ft__content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    }
    
    small {
        order: 1;
        margin-top: 36px;
    }

    .nav__footer {
        text-align: center;
    }

    .nav__list__ft {
        display: flex;
        justify-content: space-between;
        width: 208px;
        margin: 0 auto;
    }

}