@charset "utf-8";

/****************** レイアウト共通 ****************/
.body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* PCコンテンツ表示 */
.u-pc {
    display: block;
}

/* タブレット以下でPCコンテンツ非表示 */
@media screen and (max-width: 1280px) {
    .u-pc {
        display: none;
    }
}


img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}


.address {
    padding: 30px 0;
}

.address-unit {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;

}

.address-unit__title {
    width: fit-content;
    text-align: center;
    padding: 2px 10px;
    background: #E96279;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    min-width: 6em;
    height: fit-content;
}

@media screen and (max-width: 600px) {
    .address-unit__title {
        font-size: 16px;
    }
}

.address-unit__text {
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    .address-unit__text {
        font-size: 13px;
    }
}



/* ハンバーガーメニュー */
.hamburger-menu-wrapper {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 0 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}


.hamburger-menu__btn {
    width: 35px;
    height: 22px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-menu__btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu__btn span:nth-child(1) {
    top: 0;
}

.hamburger-menu__btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu__btn span:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニューがアクティブ時のアニメーション */
.hamburger-menu.active .hamburger-menu__btn span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger-menu.active .hamburger-menu__btn span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-menu__btn span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* ハンバーガーメニューがアクティブ時は非表示 */
.hamburger-menu.active {
    opacity: 0;
    pointer-events: none;
}

/* ハンバーガーメニューラッパーがアクティブ時は非表示 */
.hamburger-menu-wrapper.active {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* ドロワーメニュー */
.drawer-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    pointer-events: none;
}

.drawer-menu.active {
    right: 0;
    pointer-events: auto;
}

.drawer-menu__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    padding: 20px;
    padding-bottom: 120px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

.drawer-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.drawer-menu__logo {
    max-width: 150px;
}

.drawer-menu__close {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.drawer-menu__close span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    top: 50%;
    transition: all 0.3s ease;
}

.drawer-menu__close span:nth-child(1) {
    transform: rotate(45deg);
}

.drawer-menu__close span:nth-child(2) {
    transform: rotate(-45deg);
}

.drawer-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.drawer-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
}

.drawer-menu__item {
    margin-bottom: 15px;
}

.drawer-menu__link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.drawer-menu__link:hover {
    color: #ff6b9d;
}

.drawer-menu__footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.drawer-menu__contact {
    text-align: center;
}

.drawer-menu__contact p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
}

.drawer-menu__tel {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ff6b9d;
    text-decoration: none;
    margin-top: 5px;
}

/* PC表示時のドロワーメニュー */
@media screen and (min-width: 1281px) {
    .drawer-menu__inner {
        max-width: 350px;
        padding-bottom: 0px;
    }

    .hamburger-menu {
        top: 30px;
        right: 30px;
    }

    .hamburger-menu__btn {
        width: 35px;
        height: 20px;
    }

    .hamburger-menu__btn span {
        height: 2px;
    }

    .fixed-menu {
        left: 20px;
        right: auto;
        bottom: 20px;
        width: auto;
        max-width: 300px;
    }
}

/* main-container__centerの幅に合わせてfixed-menuを調整 */
@media screen and (max-width: 1280px) {
    .drawer-menu__inner {
        max-width: 100%;
        width: 100%;
    }

    .fixed-menu {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 40px);
        max-width: 768px;
        bottom: 0;
    }
}

/* スマートフォン用（600px未満）のfixed-menu */
@media screen and (max-width: 600px) {
    .fixed-menu {
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        bottom: 0;
    }
}

/* TOPに戻るボタン */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ff6b9d;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.scroll-to-top__btn:hover {
    background: #ff4d8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
    opacity: 1;
}

/* PC表示時のTOPボタン位置調整 */
@media screen and (min-width: 1281px) {
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
    }
}

@media screen and (max-width: 800px) {
    .scroll-to-top {
        bottom: 200px;
        right: 20px;
    }
}

/* 600px以下の場合のTOPボタン位置調整 */
@media screen and (max-width: 600px) {
    .scroll-to-top {
        bottom: 130px;
        right: 20px;
    }
}

/****************** レイアウト共通 ****************/



.main-container {
    display: flex;
    justify-content: space-between;
}

/* ロゴ表示 */
.main-container__left {
    position: relative;
    width: auto;
    height: 100vh;
}

.header-logo {
    position: fixed;
    top: 0%;
    left: 0;
    padding: 20px;
    max-width: 300px;
}



.main-container__center {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    position: relative;
}

.address-wrapper {
    padding: 0 20px;
}

.gmap-section__body {
    width: 100%;
}



/****************** LPコンテンツ ****************/
.section-01-2__img {
    width: 80%;
    margin: 20px auto;
}

.gif {
    padding: 0 20px;
}

.gif img {
    object-fit: contain;
}

.section-01-5__img {
    width: 50%;
    margin: 0 auto 40px auto;
    margin-top: -40px;
}

.section-01__select-list {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 700px;

}

.section-01__select-item-text,
.section-02__select-item-text,
.section-03__select-item-text,
.section-04__select-item-text {
    border: 2px solid #D6646E;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 20px;
    margin-top: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-01__select-item-text:hover,
.section-02__select-item-text:hover,
.section-03__select-item-text:hover,
.section-04__select-item-text:hover {
    background: #D6646E;
    color: #fff;
}

.section-01__select-item-text.selected,
.section-02__select-item-text.selected,
.section-03__select-item-text.selected,
.section-04__select-item-text.selected {
    background: #D6646E;
    color: #fff;
}

.section-05-05__img-wrapper {
    position: relative;
}

.section-05-06__img {
    width: 100%;
    padding: 0 40px;
    position: absolute;
    transform: translateY(-30%);
    bottom: 0;
    left: 0;
}

.section-05-05__img-wrapper {
    position: relative;
}


.section-05-08__img {
    width: 100%;
    padding: 0 40px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.section-05-08__img img {
    aspect-ratio: 16/10;
}

@media screen and (max-width: 600px) {
    .section-05-08__img img {
        aspect-ratio: auto;

    }
}


.section-06-03__img {
    width: 50%;
    margin: 20px auto;
}



.section-06-05__img {
    display: block;
    max-width: 180px;
    margin: 0 auto;
    transform: translateY(-100%);
}

.section-06-05__img img {
    width: 100%;
}

/* 拡大縮小 */
.scale-anime {
    animation: scale-anime 1.4s ease-in-out infinite;
}

@keyframes scale-anime {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* 点滅アニメーション */
.tenmetsu {
    animation: tenmetsu 3s ease-in-out infinite;
}

@keyframes tenmetsu {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* m-btn ふわふわアニメーション */
.m-btn,
.section-01-5__img,
.section-06-03__img {
    animation: fuwafuwa 2s ease-in-out infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

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