/* web font
*/

:root {
    --main-theme-color: #e38783;
    --cr-green: #2ad8a5;
}

* {
    box-sizing: border-box;
    color: #121212;
    font-family: "Zen Maru Gothic", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
    max-width: none;
}
/* header */
.header {
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}
.header.open {
    overflow: visible;
}
.header svg {
    filter: drop-shadow(0 7px 10px rgb(109 109 109 / 35%));
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 5%;
    width: 92%;
    max-width: 1295px;
    z-index: 1;
}
.header-left {
    width: 376px;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 400px);
}
.logo {
    display: block;
    line-height: 0;
    width: 100%;
}
.logo img {
    width: 100%;
    height: auto;
    max-width: 200px; /* 好きなサイズに調整 */
    display: block;
}
.header-nav {
    background: #eefdf8;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 5px 5px 5px 30px;
    width: 100%;
    max-width: max-content;
}
.header-nav__inner,
.header-nav__list {
    height: 100%;
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.header-nav__list li {
    height: 100%;
}
.header-nav__list li.contact {
    background: #3d8b85;
    border-radius: 50px;
    margin-left: 25px;
}
.header-nav__list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    height: 100%;
}
.header-nav__list li.contact a {
    color: #fff;
    padding: 0 35px;
}
@media screen and (max-width: 1200px) {
    .header-left {
        width: 250px;
    }
    .header-right {
        width: calc(100% - 300px);
    }
    .header-nav {
        height: 50px;
        padding: 5px 5px 5px 20px;
    }
    .header-nav__list {
        gap: 15px;
    }
    .header-nav__list li.contact {
        margin-left: 20px;
    }
    .header-nav__list li a {
        font-size: 16px;
    }
    .header-nav__list li.contact a {
        padding: 0 25px;
    }
}
@media screen and (max-width: 968px) {
    .header {
        filter: drop-shadow(0 7px 10px rgb(109 109 109 / 35%));
    }
    .header::before {
        background: #fff;
        content: "";
        display: block;
        height: 40%;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .header svg {
        filter: none;
        display: block;
        margin: 5% 0 0;
    }
    .header-inner {
        top: 5%;
    }
    .header-left {
        width: 40%;
    }
    .header-right {
        width: 60%;
    }
    .header-nav {
        background: #fff;
        border-radius: 0;
        display: block;
        min-height: 100vh;
        height: 100%;
        padding: 100px 0 80px;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 90%;
        max-width: 350px;
    }
    .header-nav.open {
        right: 0;
    }
    .header-nav__inner, .header-nav__list {
        height: auto;
    }
    .header-nav__inner {
        margin: 0 auto;
        width: 85%;
    }
    .header-nav__list {
        display: block;
        text-align: center;
    }
    .header-nav__list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .header-nav__list li.contact {
        margin-left: 0;
        margin-top: 25px;
    }
    .header-nav__list li.contact a {
        padding: 15px 10px
    }
    /* hamberger */
    .header-menu {
        display: block;
        height: 25px;
        position: relative;
        text-align: center;
        width: 30px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #545454;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 12px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -6px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -10px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
}
@media screen and (max-width: 768px) {}

/* footer */
.footer {}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}