/* Bee garden デザイン・システム */

/* 0. グローバルフォント設定 */
h1, h2, h3, h4 {
    font-family: 'Noto Sans JP', sans-serif !important;
}

.en-font {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic;
    font-weight: 500;
}

/* 1. リセット & ベース */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 16px;
}

/* SPサイズ時の本文フォントサイズ調整（16pxから14pxへ） */
@media (max-width: 768px) {
    body, p, li, .text-base {
        font-size: 14px !important;
    }
}

/* 5. インタラクション & 装飾 */

/* Scroll Top Button Visibility */
#scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-10px);
}

/* Mobile Menu Transition */
#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

/* 6. 画像の扱い共通 */
img {
    vertical-align: bottom;
    object-fit: cover;
}


/* 本文タイトル（About, Service, Recommend などの見出しカード内）のカラー統一 */
h3:not(.text-accent) {
    color: #6F4E37 !important; /* Elegant Bitter Brown */
}


/* カード内の見出しをビターブラウンに指定 */
#menu h3 {
    color: #6F4E37 !important;
}



/* 14. 枠線描画アニメーション (Draw Border Frame) */
/* 14. 枠線描画アニメーション (アンダーラインアニメーションへ変更) */
.frame-draw-container {
    position: relative;
    padding: 0 0 10px 0;
    display: inline-block;
    text-align: inherit;
    background: transparent;
}

/* 縦線や上線用のbeforeは不要にする */
.frame-draw-container::before {
    display: none !important;
}

/* afterを下線（横線）として設定 */
.frame-draw-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: transparent;
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* スクロールイン (is-visible) 時のアニメーション発火 (下線がスッと伸びる) */
.is-visible .frame-draw-container::after {
    width: 100%;
    background-color: #27ae60;
}

/* 16. POINT 01〜03用（ブラウンの下線） */
.is-visible .frame-draw-white::after {
    background-color: #6F4E37 !important;
}


/* 17. Slideshow Styles */
.fv-slideshow-container {
    position: relative;
}
.fv-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}
.fv-slide-img.active {
    opacity: 1;
    z-index: 2;
}

/* 18. Copy and Right-Click Prevention */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input, textarea {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}



