body {
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Arvo", serif;
    font-family: "Zen Maru Gothic", sans-serif;

    /*  background-color: #FFEDEA; */
    color: #333333;

}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

/* ヘッダー */
.header {
    background-color: #FDF3DC;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    filter: drop-shadow(0 0 6px #8a8a8a);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    padding: 5px 13px;
    flex-shrink: 1;
    max-width: 260px;
}

.header__logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* ハンバーガーメニューボタン（SP） */
.header__hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    /* padding: 15px 20px; */
    position: relative;
    width: 23px;
    height: 17px;
    flex-shrink: 0;
    padding: 0;
    right: 20px;
}

.header__hamburger-line {
    display: block;
    width: 23px;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: auto;
    /*  right: 20px; */
    transition: all 0.3s ease;
}

.header__hamburger-line:nth-child(1) {
    top: 0;
}

.header__hamburger-line:nth-child(2) {
    top: 7px;
}

.header__hamburger-line:nth-child(3) {
    bottom: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
}

/* PCナビゲーション */
.header__nav {
    display: none;
    align-items: stretch;
    flex-shrink: 1;
    /* min-width: 0; */
}

/* モバイルメニュー */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    /* height: calc(100vh - 80px); */
    background-color: #FDF3DC;
    z-index: 99;
    /*  opacity: 0; */
    /*  transition: opacity 0.3s ease; */
    overflow-y: auto;
}

.mobile-menu.is-active {
    /*  display: block;
    opacity: 1; */
}

.mobile-menu__nav {
    padding: 30px 24px 60px;
}

.mobile-menu__list {
    list-style: none;
}

.mobile-menu__item {
    border-bottom: 1px solid #ACACAC;
}

.mobile-menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    text-decoration: none;
    color: #333333;
    font-size: 20px;
}

.mobile-menu__link-text-jp {
    font-weight: 500;
}

.mobile-menu__link-text-en {
    margin-left: 15px;
    color: #7B7979;
    font-family: "Arvo", serif;
    font-size: 15px;
}

.mobile-menu__link-arrow {
    font-size: 30px;
    color: #333;
}

.mobile-menu__footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 100;
    height: 54px;
}

.mobile-menu__contact {
    flex: 1;
    background-color: #CE073B;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}

.mobile-menu__contact::before {
    content: "";
    background-image: url('img/meil.svg');
    width: 16px;
    height: 12px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
}

.mobile-menu__social {
    width: 85px;
    background-color: #fff;
    padding: 13px 29px;
}

.mobile-menu__social-icon {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc1888;
    font-weight: bold;
    font-size: 24px;
}

.back-to-top__btn {
    width: 53px;
    position: fixed;
    bottom: 64px;
    left: auto;
    right: 38px;
    filter: drop-shadow(0 0 10px #c0c0c0);
    cursor: pointer;

}

.black__bg.active {
    background-color: #000000b0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
}

/* フッター */
.footer__wrap {
    margin-bottom: 54px;
    display: block;
}

.footer {
    background-color: #FDF3DC;
    padding: 20px 24px 20px;

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* モバイル：縦並び */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* ナビゲーション */
.footer-nav {
    width: 100%;
    display: none;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    list-style: none;
}

.footer-nav-item {
    text-align: center;
}

.footer-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    opacity: 0.7;
}

.footer-nav-ja {
    font-size: 14px;
    font-weight: 500;
}

.footer-nav-en {
    font-size: 11px;
    color: #666;
}

/* ロゴ部分 */
.footer-logo-section {
    text-align: center;
}

.footer-logo {
    width: 125px;
}

.footer-site-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

/* コピーライト */
.footer-copyright {
    font-size: 10px;
    text-align: center;
    width: 100%;
    background-color: #fff;
    display: block;
    padding: 15px;
}


@media screen and (min-width: 768px) {




    /* .mobile-menu {
        display: none !important;
    } */


    .footer {
        padding: 50px 24px 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 31px;
    }

    .footer-nav-list {
        gap: 25px 80px;
    }

    .footer-nav {
        display: block;
    }

    .footer-nav-ja {
        font-size: 16px;
    }

    .footer-nav-en {
        font-size: 14px;
        font-family: "Arvo", serif;
    }

    .footer-logo {
        width: 177px;
    }

    .footer-site-name {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .br__sp {
        display: none;
    }

    .back-to-top__btn {
        width: 94px;
        position: fixed;
        bottom: 50px;
        left: auto;
        right: 10%;
        filter: drop-shadow(0 0 10px #c0c0c0);
        cursor: pointer;

    }

    @media screen and (max-width: 1170px) {
        .back-to-top__btn {
            width: 94px;
            position: fixed;
            bottom: 64px;
            left: auto;
            right: 10%;
            filter: drop-shadow(0 0 10px #c0c0c0);
            cursor: pointer;

        }
    }
}

@media screen and (min-width: 1170px) {
    .footer__wrap {
        margin-bottom: 0;
        display: block;
    }

    .mobile-menu__footer {
        display: none;
    }

    .header__hamburger {
        display: none !important;
    }

    .header__inner {
        max-width: 100%;
    }

    .header__logo {
        max-width: 543px;
        width: 100%;
        padding: 12px 40px 12px 40px;
    }

    .header__logo-img {
        height: auto;
    }

    .header__nav {
        display: flex;
    }

    .header__nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        flex-shrink: 1;
        padding: 19px 0;
    }

    .header__nav-item {
        border-right: 1px solid #ccc;
        flex-shrink: 1;
        min-width: 0;
    }

    .header__nav-list .header__nav-item:last-child {
        border: none;
    }

    .header__nav-link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 18px 44px;
        text-decoration: none;
        color: #333;
        font-size: clamp(12px, 1.5vw, 16px);
        white-space: nowrap;
        height: 100%;
    }

    .header__nav-link-jp {
        display: block;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .header__nav-link-en {
        display: block;
        color: #999;
        font-size: 14px;
        font-family: "Arvo", serif;
    }

    .header__actions {
        display: flex;
        flex-shrink: 0;
    }

    .header__contact {
        background-color: #d4004b;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        white-space: nowrap;
        border: none;
        height: 113.03px;
        max-width: 367px;
        min-width: 367px;
        width: 100%;
        font-size: 24px;
        text-align: center;
        justify-content: center;
    }

    .header__contact span {
        width: 32px;
        margin-right: 8px;
    }

    .header__social {
        width: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        flex-shrink: 0;
        margin: 0 57px 0 22px;
    }

    .header__social-icon {
        width: 30px;
        height: 30px;
        background-color: white;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #bc1888;
        font-weight: bold;
        font-size: 20px;

    }

    @media screen and (max-width: 1750px) {
        .header__logo {
            max-width: 290px;
            min-width: 290px;
            width: 100%;
            padding: 12px 24px 12px 24px;
        }

        .header__logo-img {
            height: auto;
        }

        .header__nav {
            display: flex;
        }

        .header__nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            flex-shrink: 1;
            padding: 19px 0;
        }

        .header__nav-item {
            border-right: 1px solid #ccc;
            flex-shrink: 1;
            min-width: 0;
        }

        .header__nav-list .header__nav-item:last-child {
            border: none;
        }

        .header__nav-link {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 18px 20px;
            text-decoration: none;
            color: #333;
            font-size: 16px;
            white-space: nowrap;
            height: 100%;
        }

        .header__nav-link-jp {
            display: block;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .header__nav-link-en {
            display: block;
            color: #999;
            font-size: 14px;
            font-family: serif;
            font-family: "Arvo", serif;
        }

        .header__actions {
            display: flex;
            flex-shrink: 0;
        }

        .header__contact {
            background-color: #d4004b;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            white-space: nowrap;
            border: none;
            height: 113.03px;
            max-width: 250px;
            min-width: 250px;
            width: 100%;
            font-size: 24px;
            text-align: center;
            justify-content: center;
        }

        .header__contact span {
            width: 32px;
            margin-right: 8px;
        }

        .header__social {
            width: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            flex-shrink: 0;
            margin: 0 57px 0 22px;
        }

        .header__social-icon {
            width: 30px;
            height: 30px;
            background-color: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bc1888;
            font-weight: bold;
            font-size: 20px;
        }

    }

    @media screen and (max-width: 1290px) {
        .header__logo {
            max-width: 290px;
            min-width: 290px;
            width: 100%;
            padding: 12px 24px 12px 24px;
        }

        .header__logo-img {
            height: auto;
        }

        .header__nav {
            display: flex;
        }

        .header__nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            flex-shrink: 1;
            padding: 19px 0;
        }

        .header__nav-item {
            border-right: 1px solid #ccc;
            flex-shrink: 1;
            min-width: 0;
        }

        .header__nav-list .header__nav-item:last-child {
            border: none;
        }

        .header__nav-link {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 18px 20px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            white-space: nowrap;
            height: 100%;
        }

        .header__nav-link-jp {
            display: block;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .header__nav-link-en {
            display: block;
            color: #999;
            font-size: 14px;
            font-family: "Arvo", serif;
        }

        .header__actions {
            display: flex;
            flex-shrink: 0;
        }

        .header__contact {
            background-color: #d4004b;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            white-space: nowrap;
            border: none;
            height: 113.03px;
            max-width: 220px;
            min-width: 220px;
            width: 100%;
            font-size: 20px;
            text-align: center;
            justify-content: center;
        }

        .header__contact span {
            width: 32px;
            margin-right: 8px;
        }

        .header__social {
            width: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            flex-shrink: 0;
            margin: 0 30px 0 14px;
        }

        .header__social-icon {
            width: 24px;
            height: 30px;
            background-color: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bc1888;
            font-weight: bold;
            font-size: 20px;
        }

    }

    .header__hamburger {
        display: none;
    }
}

/* @media (min-width: 1024px) {
    .footer-nav-list {
        gap: 30px 60px;
    }
} */

@media (max-width: 767px) {}