/* ========================================
   CAMOMILLE - PREMIUM LANDING PAGE STYLES
   ======================================== */

/* ========== CSS RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 769px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ========== SECTION TITLE (共通) ========== */
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.section-title__bg {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.3;
}

.section-title__bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-title__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.section-title__sub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 35px));
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.section-title--white .section-title__text {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title--white .section-title__sub {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 40px;
    }

    .section-title__sub {
        transform: translate(-50%, calc(-50% + 28px));
        font-size: 0.8rem;
    }
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.logo__icon {
    font-size: 1.8rem;
}

.logo__text {
    font-family: 'Noto Serif JP', serif;
}

/* PC Navigation */
.header__nav {
    display: none;
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__list a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav__list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

.nav__list a:hover::after {
    width: 100%;
}

.header__cta {
    display: none;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

@media (min-width: 769px) {
    .header__nav {
        display: block;
    }

    .header__cta {
        display: inline-block;
    }
}

/* Hamburger Menu (SP only) */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu__link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Mobile Menu CTA Buttons */
.mobile-menu__cta {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu__btn--tel {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
}

.mobile-menu__btn--line {
    background: linear-gradient(135deg, #06C755 0%, #05b34a 100%);
    color: #fff;
}

.mobile-menu__btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-menu__btn-icon {
    font-size: 1.3rem;
}

.mobile-menu__line-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.mobile-menu__btn-text {
    font-size: 1rem;
    letter-spacing: 0.05em;
}


/* ========== FIRST VIEW (FV) ========== */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fv-swiper {
    width: 100%;
    height: 100%;
}

.fv-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.fv-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ========== SECOND VIEW (SV) - Banner ========== */
.sv {
    margin: 80px 0;
}

.sv__banner {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.sv__banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.sv__banner img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.sv__banner:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sv {
        margin: 60px 0;
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.cta-btn--tel {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
}

.cta-btn--line {
    background: linear-gradient(135deg, #06C755 0%, #05b34a 100%);
    color: #fff;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cta-btn__icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.line-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.cta-btn__text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-btn__number,
.cta-btn__id {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (min-width: 769px) {
    .cta-buttons {
        flex-direction: row;
        max-width: 900px;
    }

    .cta-btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
}

/* ========== THIRD VIEW (TV) ========== */
.tv {
    padding: 120px 0;
    background: #fafafa;
}

.tv__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.tv__image {
    position: relative;
    border-radius: 4px 80px 4px 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tv__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tv__text {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-30px);
    z-index: 10;
    position: relative;
}

.tv__list {
    margin-bottom: 30px;
}

.tv__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.tv__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.tv__message {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
}

.tv__message strong {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

@media (min-width: 769px) {
    .tv__content {
        grid-template-columns: 45% 55%;
        gap: 60px;
    }

    .tv__text {
        transform: translate(-40px, 0);
    }
}

@media (max-width: 768px) {
    .tv {
        padding: 80px 0;
    }

    .tv__text {
        padding: 30px 15px;
        transform: translateY(-20px);
    }
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about__text {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    order: 2;
}

.about__text p {
    font-size: 1.05rem;
    line-height: 2;
}

.about__image {
    border-radius: 80px 4px 4px 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    order: 1;
}

.about__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 769px) {
    .about__content {
        grid-template-columns: 60% 40%;
        gap: 60px;
    }

    .about__text {
        order: 1;
        transform: translate(40px, 30px);
    }

    .about__image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about__text {
        padding: 30px 15px;
    }
}

/* ========== GALLERY ========== */
.gallery {
    padding: 120px 0;
    background: #fafafa;
}

.gallery-swiper {
    padding: 20px 0;
}

.gallery-swiper .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.gallery__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

@media (max-width: 768px) {
    .gallery {
        padding: 80px 0;
    }

    .gallery__img {
        height: 300px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

/* ========== SERVICE ========== */
.service {
    padding: 120px 0;
}

.service__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.service__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.service__image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service__item:hover .service__image img {
    transform: scale(1.05);
}

.service__content {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.service__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service__text {
    font-size: 1.05rem;
    line-height: 2;
}

@media (min-width: 769px) {
    .service__item {
        grid-template-columns: 40% 60%;
        gap: 50px;
    }

    .service__item:nth-child(even) {
        grid-template-columns: 60% 40%;
    }

    .service__item:nth-child(even) .service__image {
        order: 2;
    }

    .service__item:nth-child(even) .service__content {
        order: 1;
        transform: translate(30px, 0);
    }

    .service__item:nth-child(odd) .service__content {
        transform: translate(-30px, 0);
    }
}

@media (max-width: 768px) {
    .service {
        padding: 80px 0;
    }

    .service__grid {
        gap: 50px;
    }

    .service__content {
        padding: 25px 15px;
    }
}

/* ========== MENU / RECOMMEND ========== */
.menu-recommend {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.menu-recommend__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.menu-recommend__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.menu-recommend .container {
    position: relative;
    z-index: 1;
}

.recommend__content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.recommend__title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.recommend__text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
}

@media (max-width: 768px) {
    .menu-recommend {
        padding: 80px 0;
    }

    .recommend__content {
        padding: 35px 15px;
    }
}

/* ========== MENU / PRICE ========== */
.menu-price {
    padding: 120px 0;
    background: #fafafa;
}

.menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.menu__item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.menu__item--highlight {
    border: 3px solid #4CAF50;
}

.menu__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B6B 0%, #ff5252 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.menu__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu__item:hover .menu__image img {
    transform: scale(1.1);
}

.menu__content {
    padding: 30px;
}

.menu__name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.6;
}

.menu__description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.menu__price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
}

@media (min-width: 769px) {
    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .menu-price {
        padding: 80px 0;
    }

    .menu__image {
        height: 200px;
    }

    .menu__content {
        padding: 25px 15px;
    }
}

/* ========== MESSAGE ========== */
.message {
    padding: 120px 0;
}

.message__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.message__image {
    border-radius: 4px 4px 80px 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.message__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.message__text {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.message__text p {
    font-size: 1.05rem;
    line-height: 2.2;
    text-align: center;
}

@media (min-width: 769px) {
    .message__content {
        grid-template-columns: 35% 65%;
        gap: 60px;
    }

    .message__text {
        transform: translate(-40px, 0);
    }
}

@media (max-width: 768px) {
    .message {
        padding: 80px 0;
    }

    .message__text {
        padding: 30px 15px;
    }
}

/* ========== ACCESS ========== */
.access {
    padding: 120px 0;
    background: #fafafa;
}

.access__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.access__info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.access__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.access__table tr {
    border-bottom: 1px solid #f0f0f0;
}

.access__table th,
.access__table td {
    padding: 18px 15px;
    text-align: left;
    line-height: 1.8;
}

.access__table th {
    font-weight: 600;
    width: 25%;
    min-width: fit-content;
    white-space: nowrap;
    color: #555;
}

.access__table td {
    font-size: 1.05rem;
    width: 75%;
}

.access__table td a {
    color: #4CAF50;
    font-weight: 600;
}

.access__table td a:hover {
    text-decoration: underline;
}

.access__sns {
    text-align: center;
}

.sns-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #06C755 0%, #05b34a 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(6, 199, 85, 0.3);
    transition: all 0.3s ease;
}

.sns-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(6, 199, 85, 0.4);
}

.sns-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

.access__map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 769px) {
    .access__content {
        grid-template-columns: 45% 55%;
        gap: 60px;
    }

    .access__map {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .access {
        padding: 80px 0;
    }

    .access__info {
        padding: 25px 15px;
    }

    .access__table th {
        width: 25%;
        min-width: auto;
        font-size: 0.85rem;
        padding: 15px 8px;
    }

    .access__table td {
        width: 75%;
        font-size: 0.9rem;
        padding: 15px 8px;
    }

    .access__map {
        margin: 0;
        border-radius: 12px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer__nav a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__nav a:hover {
    opacity: 1;
}

.footer__copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 769px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========== FIXED CTA (SP only) ========== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.fixed-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 5px;
    transition: all 0.3s ease;
}

.fixed-cta__btn--tel {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
}

.fixed-cta__btn--line {
    background: linear-gradient(135deg, #06C755 0%, #05b34a 100%);
    color: #fff;
}

.fixed-cta__btn span:first-child {
    font-size: 1.5rem;
}

.fixed-cta__btn img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.fixed-cta__btn:active {
    transform: scale(0.95);
}

@media (min-width: 769px) {
    .fixed-cta {
        display: none;
    }
}

/* ========== MODAL FOR GALLERY ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal__close:hover {
    color: #ccc;
    transform: rotate(90deg);
}

/* ========== RIGHT CLICK PREVENTION ========== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}