@charset "UTF-8";

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-yellow: #f4d03f;
    --color-gray-soft: #f4f4f4;
    --color-gray-dark: #333333;
    --color-gray-light: #ececec;
    
    --shadow-sm: 4px 4px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 45px rgba(0,0,0,0.1);
    --shadow-accent: 12px 12px 0px var(--color-yellow);
    --shadow-beauty: 0 20px 40px rgba(0,0,0,0.1), 10px 10px 0px var(--color-yellow);
    
    --font-main: 'Outfit', 'Noto Sans JP', sans-serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-family: var(--font-main);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
    transition: all 0.4s ease;
    background: var(--color-white);
    border-bottom: 2px solid rgba(26, 26, 26, 0.05);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* ==========================================================================
   Section & Containers (Boxed Style)
   ========================================================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--color-white);
    border: 3px solid rgba(26, 26, 26, 0.15);
    position: relative;
    box-shadow: var(--shadow-beauty);
}

@media (min-width: 768px) {
    .section-container {
        padding: 80px 60px;
    }
}

.section-margin {
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .section-margin {
        margin-bottom: 120px;
    }
}

.section-title-bg {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    border-bottom: 3px solid rgba(26, 26, 26, 0.15);
    padding-bottom: 12px;
}

@media (min-width: 768px) {
    .section-title-bg {
        gap: 15px;
        margin-bottom: 60px;
        border-bottom-width: 4px;
        padding-bottom: 15px;
    }
}

.section-title-bg img {
    width: 40px;
    height: 40px;
}

.section-title-bg .title-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 15px 35px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px var(--color-black);
}

/* CTA */
.cta-banner {
    background-color: var(--color-black);
    color: var(--color-white);
    position: relative;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-link {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 14px 40px;
    font-weight: 900;
    font-size: 1.1rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 6px 6px 0px rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
    border-radius: 50px;
}

.cta-link:hover {
    transform: translateY(-3px);
    background-color: var(--color-white);
    box-shadow: 10px 10px 0px var(--color-yellow);
}

.cta-link-tel {
    background-color: transparent;
    color: var(--color-white);
    border: 3px solid var(--color-white);
}

.cta-link-tel:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Image Box */
.img-box {
    border: 3px solid rgba(26, 26, 26, 0.15);
    padding: 10px;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

/* Voice Card */
.voice-card {
    background: var(--color-white);
    border: 3px solid rgba(26, 26, 26, 0.1);
    padding: 25px 20px;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    height: 100%;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 0px var(--color-yellow);
}

/* Social Links */
.social-link {
    display: inline-block;
    padding: 8px 12px;
    background: var(--color-black);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border-radius: 4px;
}

.social-link:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--color-black);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta a {
    transition: 0.3s;
}

.mobile-sticky-cta a:active {
    opacity: 0.7;
}

/* Scroll Top */
#scroll-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--color-black);
    padding: 10px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    border: 2px solid var(--color-yellow);
    z-index: 40;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-yellow);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#mobile-menu.open {
    transform: translateY(0);
}

#mobile-menu ul a {
    font-size: 2rem;
    font-weight: 900;
}

/* GLightbox Custom Styling */
.glightbox-container {
    z-index: 9999 !important;
}

.gprev, .gnext {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    transition: background-color 0.3s ease !important;
}

.gprev:hover, .gnext:hover {
    background-color: var(--color-yellow) !important;
}

.gprev svg, .gnext svg {
    width: 25px !important;
    height: 25px !important;
}

.gclose {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    top: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
}

.gclose:hover {
    background-color: var(--color-yellow) !important;
}

.gslide-image img {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    border: 4px solid var(--color-white) !important;
}

/* Mobile only line break */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}
