@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

* {
    font-family: "Noto Serif JP", serif;
}

/* ヘッダーナビゲーションのフォント */
.nav-link,
.nav-link.w-nav-link,
.w-nav-link,
.nav-link-copy,
.nav-menu,
.nav-menu a {
    font-family: "Noto Serif JP", serif;
}

/* お問合せボタン（PC時） */
.nav-link-contact-9284 {
    background-color: var(--sand, #c4a35a);
    color: var(--old-black, #1a1a1a);
}

.nav-link-contact-9284:hover {
    background-color: #d4b36a;
    color: var(--old-black, #1a1a1a);
}

/* 既存バーガーメニュー非表示 */
.menu-button.w-nav-button {
    display: none;
}

/* 新しいモバイルメニュー（デフォルト非表示） */
.mobile-menu-wrapper-5839 {
    display: none;
}

/* global-stylesのクリック干渉防止 */
.global-styles {
    pointer-events: none;
}

/* PC時のヘッダー表示 */
@media screen and (min-width: 992px) {
    .navbar.w-nav {
        position: fixed;
        inset: auto;
        top: 0;
        right: 0;
        left: auto;
        bottom: auto;
        width: auto;
        z-index: 9999;
        background: transparent;
        padding: 1rem 2rem;
        pointer-events: none;
    }

    .navbar.w-nav .nav-menu,
    .navbar.w-nav .nav-link,
    .navbar.w-nav .brand {
        pointer-events: auto;
    }

    .navbar-container.w-container {
        max-width: none;
        padding: 0;
    }

    .navbar-style {
        justify-content: flex-end;
    }

    .nav-menu.w-nav-menu {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-link.w-nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* タブレット・スマホ時 */
@media screen and (max-width: 991px) {

    /* PCヘッダー非表示 */
    .navbar.w-nav {
        display: none;
    }

    /* モバイルメニュー表示 */
    .mobile-menu-wrapper-5839 {
        display: block;
        pointer-events: none;
    }

    /* バーガーボタン */
    .burger-btn-5839 {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 10000;
        width: 50px;
        height: 50px;
        background-color: rgba(26, 26, 26, 0.9);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 10px;
        pointer-events: auto;
    }

    .burger-line-5839 {
        display: block;
        width: 28px;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* バーガーボタン開いた状態 */
    .burger-btn-5839.open-5839 .burger-line-5839:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger-btn-5839.open-5839 .burger-line-5839:nth-child(2) {
        opacity: 0;
    }

    .burger-btn-5839.open-5839 .burger-line-5839:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* モバイルナビゲーション */
    .mobile-nav-5839 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(26, 26, 26, 0.98);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 9999;
        padding: 2rem;
        pointer-events: none;
    }

    .mobile-nav-5839.open-5839 {
        display: flex;
        pointer-events: auto;
    }

    .mobile-nav-link-5839 {
        font-family: "Noto Serif JP", serif;
        font-size: 1.3rem;
        color: #fff;
        text-decoration: none;
        padding: 1.2rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #333;
        transition: background-color 0.3s ease;
    }

    .mobile-nav-link-5839:first-child {
        border-top: 1px solid #333;
    }

    .mobile-nav-link-5839:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-contact-5839 {
        background-color: var(--sand, #c4a35a);
        color: var(--old-black, #1a1a1a);
        margin-top: 1rem;
        border-radius: 8px;
        border: none;
    }

    .mobile-nav-contact-5839:hover {
        background-color: #d4b36a;
    }
}

/* プログラムカードグリッド */
.program-cards-grid-8472 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.program-card-item-8472 {
    display: flex;
    justify-content: center;
}

.program-card-item-8472 .card_wrapper {
    width: 28rem;
    height: 37rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1400px) {
    .program-cards-grid-8472 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 991px) {
    .program-card-item-8472 .card_wrapper {
        width: 100%;
        max-width: 28rem;
        height: 35rem;
    }
}

@media screen and (max-width: 767px) {
    .program-cards-grid-8472 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .program-card-item-8472 {
        width: 100%;
    }

    .program-card-item-8472 .card_wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .program-card-item-8472 .card {
        height: auto;
    }

    /* 絶対配置を解除してフローに戻す */
    .program-card-item-8472 .card_side {
        position: relative;
        inset: auto;
        border-radius: 1rem;
        overflow: hidden;
    }

    .program-card-item-8472 .card_side.is-front {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* 画像を上に配置（絶対配置を解除） */
    .program-card-item-8472 .card-img {
        order: 1;
        position: relative;
        inset: auto;
        width: 100%;
        max-height: none;
        border-radius: 1rem 1rem 0 0;
        overflow: hidden;
        flex: none;
    }

    .program-card-item-8472 .card-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* テキスト部分を下に */
    .program-card-item-8472 .card_main-text {
        order: 2;
        padding: 1.5rem;
        background-color: var(--old-black, #1a1a1a);
    }

    .program-card-item-8472 .display-small {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .program-card-item-8472 .bucker_360_text {
        font-size: 0.85rem;
        line-height: 1.7;
        color: #ccc;
    }
}

/* フッター地図 */
.footer-map-container-8472 {
    width: 100%;
    padding: 0 0 2rem 0;
}

.footer-map-iframe-8472 {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(100%);
}

/* レスポンシブ対応 */
@media screen and (max-width: 991px) {
    .footer-map-iframe-8472 {
        height: 350px;
    }
}

@media screen and (max-width: 767px) {
    .footer-map-iframe-8472 {
        height: 300px;
    }
}

@media screen and (max-width: 479px) {
    .footer-map-iframe-8472 {
        height: 250px;
    }
}

/* フッターカスタムデザイン */
.footer-custom-9284 {
    width: 100%;
    padding: 4rem 2rem 0;
}

.footer-inner-9284 {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    gap: 2rem;
}

/* 左: ロゴ + 文章 */
.footer-left-9284 {
    flex: 1;
    max-width: 300px;
}

.footer-logo-img-9284 {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline-9284 {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
}

/* 中央: メニュー2列 */
.footer-center-9284 {
    display: flex;
    gap: 3rem;
}

.footer-menu-col-9284 {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-menu-title-9284 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link-9284 {
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-9284:hover {
    color: #fff;
}

/* 右: 会社情報 */
.footer-right-9284 {
    flex: 1;
    max-width: 280px;
}

.footer-company-9284 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
}

.footer-address-9284,
.footer-contact-9284 {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #ccc;
    margin: 0 0 1rem 0;
}

/* コピーライト */
.footer-copyright-9284 {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright-9284 p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 991px) {
    .footer-inner-9284 {
        flex-wrap: wrap;
    }

    .footer-left-9284 {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo-img-9284 {
        margin: 0 auto 1.5rem;
        display: block;
    }

    .footer-center-9284 {
        justify-content: center;
        width: 100%;
        margin-bottom: 2rem;
    }

    .footer-right-9284 {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .footer-custom-9284 {
        padding: 3rem 1.5rem 0;
    }

    .footer-center-9284 {
        gap: 2rem;
    }
}

@media screen and (max-width: 479px) {
    .footer-custom-9284 {
        padding: 2rem 1rem 0;
    }

    .footer-inner-9284 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-center-9284 {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .footer-menu-col-9284 {
        align-items: center;
    }
}

.background-video-2 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 動画を確実に表示 */
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* オーバーレイは動画の上 */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}