/*
Theme Name:custom theme
Description:カスタムテーマ
Author: app_murata
Version:1.0.0
*/

/*-------common------*/
.zyunbi{
	display:none;
}
html {
    font-size: 62.5%;
}

body {
    font-size: 2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    letter-spacing: 0.08em;
    line-height: 1;
    margin: 0;
    font-weight: 500;
    background: #FFF5E0;
    color: #222;
}

p {
    line-height: 1;
    color: #222;
    margin: 0;
}

a {
    text-decoration: none;
    color: #222;
}

h1,
h2,
h3 {
    font-size: 3.2rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    vertical-align: middle;
    width: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

body .sp-only {
    display: none;
}

.wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.inner {
    padding-top: 120px;
    padding-left: 16.67%;
    padding-right: 16.67%;
    padding-bottom: 120px;
}

.font-quicksand {
    font-family: "Quicksand", sans-serif;
}

@media screen and (max-width: 1180px) {
    body {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    body .sp-only {
        display: block;
    }

    body .pc-only {
        display: none;
    }

    h1,
    h2,
    h3 {
        font-size: 2.0rem;
    }

    .wrap {
        flex-direction: column;
    }

    .inner {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 3%;
        padding-right: 3%;
    }

    .splide__slide img {
        width: 100%;
    }
}

/*-------common-end------*/

/*-------hamburger-css---*/
#menu-button {
    visibility: hidden;
    background: #20C563;
    opacity: 1;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 900;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
}

#menu-button.nav-on {
    visibility: visible;
    opacity: 1;
}

#menu-button .ham-lines {
    position: relative;
    margin: 0 auto;
    width: 30px;
    height: 22px;
}

#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 1px;
}

#menu-button .ham-lines span {
    bottom: 8.5px;
    transition: all .25s .25s;
    opacity: 1;
}

#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
    content: "";
}

#menu-button .ham-lines::before {
    top: 0;
    animation: menu-bar01 .75s forwards;
}

#menu-button .ham-lines::after {
    bottom: 0px;
    animation: menu-bar03 .75s forwards;
}

#menu-button .ham-text {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    margin-top: 3px;
}

#menu-button.is-active .ham-text {
    display: none;
}

#menu-button.is-active .ham-lines span {
    opacity: 0;
}

#menu-button.is-active .ham-lines::before {
    animation: active-menu-bar01 .5s forwards;
}

#menu-button.is-active .ham-lines::after {
    animation: active-menu-bar03 .5s forwards;
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(9px) rotate(45deg);
    }

    50% {
        transform: translateY(9px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar03 {
    0% {
        transform: translateY(-9px) rotate(-45deg);
    }

    50% {
        transform: translateY(-9px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(9px) rotate(0);
    }

    100% {
        transform: translateY(-8px) rotate(45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-9px) rotate(0);
    }

    100% {
        transform: translateY(-26px) rotate(-45deg);
    }
}

@media screen and (max-width: 1180px) {
    body #menu-button {
        visibility: visible;
        opacity: 1;
        display: flex;
        z-index: 701;
        position: fixed;
    }

    #main-menu-container {
        position: fixed;
        z-index: 700;
        top: 0;
        left: auto;
        right: -100vw;
        bottom: auto;
        overflow-y: auto;
        background: #EDFBC9;
        background-size: cover;
        display: none;
        width: 100vw;
        height: 100vh;
        transition: .3s linear;
    }

    #main-menu-container.is-active {
        right: 0vw;
    }

    body #main-menu-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/*-------ft-icon-css---*/

.sp-footer-icons-container {
    display: none;
    justify-content: space-around;
    align-items: stretch;
    position: fixed;
    z-index: 701;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: calc(env(safe-area-inset-bottom) / 2);
}

@media screen and (max-width: 1180px) {
    .sp-footer-icons-container {
        display: flex;
    }
}