/* 全体 */
body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}

/* ===========================
    ヘッダー
=========================== */
.header {
    text-align: center;
    padding: 4rem 1rem 2rem;
}
.site-title {
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: #3a4a6b;
    font-weight: 700;
}
.sub-title {
    font-size: 1rem;
    color: #556;
    opacity: 0.7;
}

/* 青グラデ背景のヒーロー帯 */
.contact-hero {
    width: 100%;
    padding: 90px 20px 120px;
    text-align: center;
    background: linear-gradient(135deg, #2b7bff, #68b3ff);
    color: #fff;
}

.contact-hero h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
}
.contact-hero p {
    font-size: 20px;
    margin-top: 10px;
}
.contact-subtext {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.9;
}

/* 中央２カラムの配置エリア */
.contact-box {
    width: 90%;
    max-width: 1100px;
    margin: -60px auto 120px;

    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;

    background: none;          /* ← 白背景削除 */
    box-shadow: none;          /* ← 影削除 */
    overflow: visible;         /* ← はみ出し対策 */
}

/* 左右の中身 */
.contact-left, .contact-right {
    flex: 1;
    padding: 40px 35px;
    text-align: center;
}

.contact-left h3,
.contact-right h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* お問い合わせフォームボタン */
.form-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #4d9dff, #2b7bff);
    transition: 0.25s;
}
.form-button:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

/* LINE側 */
.line-number {
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: #2b7bff;
    text-decoration: none;
    margin-bottom: 12px;
}
.line-info {
    font-size: 14px;
    color: #555;
}

/* スマホ対応（縦並び） */
@media (max-width: 800px) {
    .contact-box {
        flex-direction: column;
    }
    .contact-left, .contact-right {
        padding: 30px 20px;
    }
}

.form-info {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}
.line-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;

    background: linear-gradient(90deg, #4cd964, #2eb82e); /* LINE緑グラデ */

    transition: 0.25s;
}

.line-button:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

.line-info {
    text-align: center;   /* ← 中央配置 */
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}

.line-button {
    display: inline-block;
    width: fit-content;     /* ← 文言幅ぴったりにする */
    padding: 14px 60px;
    margin: 0 auto;         /* ← カード内で中央寄せ */
}

.contact-right {
    display: flex;
    flex-direction: column;
    align-items: center;   /* 横方向中央 */
    text-align: center;
}

/* 各項目を独立したカードにする */
.contact-left,
.contact-right {
    background: #fff;
    border-radius: 12px;
    padding: 40px 35px;
    flex: 1;
    min-width: 320px;
    max-width: 480px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-left h3,
.contact-right h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.form-info,
.line-info {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

/* ===========================
      B-Village シンプルヘッダー
=========================== */

.bv-header {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #d9d9d9; /* 下の細い線 */
    box-sizing: border-box;
}

/* 左ロゴ */
.bv-logo {
    height: 48px;
    width: auto;
}

/* メニュー（右側） */
.bv-header-nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.bv-header-nav a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: #555;
    letter-spacing: 1px;
    transition: 0.2s;
}

/* ホバーで少し濃く */
.bv-header-nav a:hover {
    color: #000;
}

/* アクティブページ（現在のページ） */
.bv-header-nav .active,
.bv-header-nav a.active {
    color: #c25c5c;  /* 送ってくれた画像通りの赤 */
    font-weight: 700;
}

/* ===========================
   コピーライト（最下部）
=========================== */
.copyright {
    width: 100%;
    text-align: center;
    padding: 15px 0 25px;
    font-size: 14px;
    color: #777;
}

/* ===========================
   下部SNS一覧＋公式SNSラベル
=========================== */
.bottom-sns {
    width: 100%;
    background: #ffffff;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* 公式SNS ラベル（来店演者っぽいボタン風） */
.sns-label {
    font-size: 15px;
    font-weight: 600;
    color: #c25c5c;
    padding: 6px 20px;
    border: 2px solid #c25c5c;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 1px;
}

/* アイコン横並びエリア */
.sns-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.sns-icons .sns-icon {
    width: 34px;
    height: auto;
    opacity: 0.85;
    transition: 0.2s;
}

.sns-icons .sns-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* スマホ対応 */
@media (max-width: 600px) {
    .sns-icons .sns-icon {
        width: 30px;
    }
    .sns-icons {
        gap: 16px;
    }
}

/* =============================
      横スクロール完全防止
============================= */

/* ▼ ページ全体の横スクロールを禁止 */
html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ▼ カードの min-width を解除（最重要） */
.contact-left,
.contact-right {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* ▼ ヘッダーの余白をスマホ用に調整 */
@media (max-width: 768px) {
    .bv-header {
        padding: 12px 15px !important;  /* ← 40pxが原因だった */
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .bv-header-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
}

/* ▼ SNSアイコン幅が溢れないよう調整 */
.sns-icons {
    flex-wrap: wrap;      /* ← 横に並びきれない時は折り返す */
    justify-content: center;
}

/* ▼ コンテンツ全体のはみ出し防止 */
.contact-box,
.contact-hero,
.bottom-sns,
.copyright {
    max-width: 100%;
    box-sizing: border-box;
}

/* ===========================
      スマホでもメニュー横並び
=========================== */
@media (max-width: 768px) {

    /* ▼ ヘッダー全体のサイズ調整 */
    .bv-header {
        padding: 12px 15px;
        flex-direction: row;        /* ← PCと同じ横並びに戻す */
        justify-content: space-between;
        align-items: center;
    }

    /* ▼ ロゴが大きすぎて潰れないよう調整 */
    .bv-header img {
        max-width: 150px;           /* ← スマホ幅に合わせて縮小 */
        height: auto;
    }

    /* ▼ メニューを横並びのまま、間隔を少し小さく */
    .bv-header-nav ul {
        display: flex;
        flex-direction: row;        /* ← 横並び継続 */
        gap: 14px;                  /* ← スマホ用に間隔を調整 */
        padding: 0;
        margin: 0;
    }

    .bv-header-nav a {
        font-size: 15px;
        white-space: nowrap;        /* ← 文字が折り返されないように */
    }
}