@charset "UTF-8";

/* ==========================================================================
   Base
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
/* ハンバーガーメニューのアニメーション */
#menu-btn div {
    transition: all 0.3s ease-in-out;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 12s linear infinite;
}

#menu-btn.active div:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#menu-btn.active div:nth-child(2) {
    opacity: 0;
}

#menu-btn.active div:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* SPメニューの表示アニメーション */
#sp-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-link {
    display: block;
    width: 100%;
    padding: 1rem 0;
    transition: color 0.3s;
}

/* ==========================================================================
   Sections Backgrounds
   ========================================================================== */
#tv {
    background: #ffeac5;
}

/* ==========================================================================
   Swiper Customization
   ========================================================================== */
/* FV Swiper */
#fv {
    margin-top: 64px;
}

@media (min-width: 768px) {
    #fv {
        margin-top: 80px;
    }
}

.fv-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    /* 隙間防止 */
}



.swiper-pagination-bullet-active {
    background-color: #F2994A !important;
    /* Brand Orange */
}

/* ==========================================================================
   Animations & Effects
   ========================================================================== */


/* 画像ホバーエフェクト（Galleryなど） */
.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.5s ease;
}

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

/* ==========================================================================
   Modal
   ========================================================================== */
#image-modal.active {
    opacity: 1;
    pointer-events: auto;
}

#image-modal img {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* スクロールトップボタン */
#scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* テキスト選択防止（右クリック禁止と合わせて） */
.no-select {
    user-select: none;
    -webkit-user-select: none;
}

/* ==========================================================================
   Tailwind Overrides
   ========================================================================== */
@media (min-width: 768px) {
    .md\:w-7\/12 {
        width: 47.333333% !important;
    }
}

.gap-12 {
    gap: 30px !important;
}

/* ==========================================================================
   About Section Customization
   ========================================================================== */
#about.bg-brand-gray\/30 {
    background-color: rgb(255 249 194 / 50%);
}

#about h3 {
    color: #F2994A;
}

@media (min-width: 768px) {
    #about img {
        height: 403px;
        object-fit: cover;
    }
}

/* ==========================================================================
   Service Section Customization
   ========================================================================== */
#service .point-1,
#service .point-3 {
    background-color: #ffeac580;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#service .point-2 {
    background-color: #fff9c280;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    #service .md\:p-10 {
        padding: 20px !important;
    }

    #service img {
        height: 320px;
        object-fit: cover;
        border-radius: 15px;
    }

    .md\:gap-16 {
        gap: 40px !important;
    }

    #price-list .price-img-wrapper {
        width: 750px !important;
        margin-left: auto;
        margin-right: auto;
    }

    #price-list .price-img-wrapper img {
        height: 450px !important;
        object-fit: cover;
    }

    #price-list .price-table-wrapper {
        width: 730px !important;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   Price List Table Styling
   ========================================================================== */
#price-list table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#price-list thead tr {
    background-color: #F2994A;
    /* Brand Orange */
    color: white;
}

#price-list th {
    font-weight: 700;
    padding: 1.25rem 0.5rem;
    letter-spacing: 0.1em;
}

#price-list tbody tr {
    background-color: white;
    transition: background-color 0.3s;
}

#price-list tbody tr:nth-child(even) {
    background-color: rgba(184, 210, 0, 0.08);
    /* Faint Brand Lime */
}

#price-list tbody tr:hover {
    background-color: rgba(242, 153, 74, 0.1);
    /* Faint Brand Orange */
}

#price-list td {
    padding: 1rem 0.5rem;
    border-bottom: 1px dashed rgba(184, 210, 0, 0.3);
    /* Dotted Lime Line */
    font-size: 0.95rem;
    color: #444;
}

#price-list tbody tr:last-child td {
    border-bottom: none;
}

section#gallery {
    background: #ffeac5;
}

@media screen and (max-width: 781px) {
    #tv .p-8 {
        padding: 20px 10px !important;
    }

    /* Service Section Adjustments */
    #service .p-6 {
        padding: 40px 10px !important;
    }

    /* Recommend Section Adjustments */
    #menu .p-8 {
        padding: 40px 10px !important;
    }
}

#tv .concept-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#tv h3 {
    text-align: center !important;
}

#tv .bg-brand-lime {
    margin-left: auto !important;
    margin-right: auto !important;
}

#tv p.font-bold {
    text-align: center !important;
}

.bg-white\/80 {
    background-color: #ffeac5ad !important;
}

footer.bg-brand-text.text-white.py-8.pb-24.md\:pb-8 {
    background-color: #f2994a;
}