@charset "utf-8";
/*
	Theme Name: RE:DIVER-CHILD
	Template: rediver
	Description:  re:Diverの子テーマです。
	Theme URI: http://tan-taka.com/diver/
	Author: Takato Takagi
 */

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90vw;
    height: 100%;
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 0 24px;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 8px;
}

.mobile-menu__logo img {
    height: 40px;
    width: auto;
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu__close:hover {
    background-color: #f5f5f5;
}

.mobile-menu__nav {
}

.mobile-menu__nav-item {
    display: block;
    padding: 15px 20px;
    color: #1C1C1C;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
		font-family: 'Noto Sans JP', sans-serif;
}

.mobile-menu__nav-item:hover {
    background-color: #f8f8f8;
    color: #00AEEF;
}

.mobile-menu__contact {
}

.mobile-menu__contact-section {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    column-gap: 18px;
    text-decoration: none;
}

.mobile-menu__contact-title {
    color: #FF732C;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mobile-menu__contact-description {
    color: #1C1C1C;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
		font-weight: 700;
}

.mobile-menu__contact-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mobile-menu__contact-qr img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

.mobile-menu__contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-menu__contact-button--line {
    background-color: #06C755;
    color: white;
}

.mobile-menu__contact-button--line:hover {
    background-color: #05B04A;
    transform: translateY(-2px);
}

.mobile-menu__contact-button--email {
    background-color: #FF6B35;
    color: white;
}

.mobile-menu__contact-button--email:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
}

.mobile-menu__contact-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* Mobile menu button styles */
.top-header__menu-button--mobile {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header__menu-button--mobile:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.top-header__menu-button--mobile:active {
    transform: scale(0.95);
}

/* Ensure the menu button is only visible on mobile */
@media (min-width: 769px) {
    .top-header__menu-button--mobile {
        display: none;
    }
}

.sticky-footer {
    background-color: #004964;
    width: 100%;
    position: fixed;
    bottom: 0;
    display: none;
    z-index: 10;
}

body.sticky-footer-hidden .sticky-footer {
    display: none !important;
}

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

.sticky-footer__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    max-width: 1336px;
    position: relative;
    padding: 12px 0;
}

.sticky-footer__left {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.sticky-footer__left-text {
    color: #00AEEF;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .sticky-footer__left-text {
        font-size: 20px;
    }
}

.sticky-footer__image {
    max-width: 184px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.sticky-footer__image-container {
    width: 184px;
}

.sticky-footer__right {
    display: flex;
    column-gap: 16px;
}

.sticky-footer__link {
    display: flex;
    color: #F6F4F3;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    align-items: center;
    background-color: #00AEEF;
    padding: 16px;
    border-radius: 4px;
}

.sticky-footer__icon {
    width: 48px;
    height: 48px;
}

.sticky-footer__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sticky-footer__bottom-phone {
    display: none;
}

.sticky-footer__link-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .sticky-footer__icon {
        width: 24px;
        height: 24px;
    }

    .sticky-footer__link {
        display: none;
    }

    .sticky-footer__container {
        flex-direction: column;
    }

    .sticky-footer__content {
        padding: 5px 16px;
    }

    .sticky-footer__image-container {
        width: 85px;
    }
    
    .sticky-footer__left-text {
        line-height: 1.5;
    }

    .sticky-footer__image {
        max-width: 85px;
        width: 100%;
        position: absolute;
        bottom: 0;
        right: 40px;
    }

    .sticky-footer__bottom-phone {
        display: flex;
        width: 100%;
    }

    .sticky-footer__link-mobile {
        display: flex;
        color: #F6F4F3;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        align-items: center;
        background-color: #00AEEF;
        padding: 16px;
        flex: 1;
        justify-content: center;
    }
}
