/* ============================================
   BEER HOUR FEST 2026 - style.css
   ============================================ */

html,
body {
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

/* フェードイン */
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   共通フォント
   ============================================ */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.4;
}
body p,
body a,
body table {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    text-decoration: none;
}

/* ============================================
   フォントカラー
   ============================================ */
.t_red {
    color: #bd0d23;
}
.t_black {
    color: #000;
}
.t_white {
    color: #fff;
}

/* ============================================
   ドット背景ミックスイン（共通）
   ============================================ */
.dot_bg_yellow {
    background-color: #ffcb00;
    background-image: radial-gradient(circle, #f7e057 2px, transparent 2px), radial-gradient(circle, #f7e057 2px, transparent 2px);
    background-position:
        0 0,
        10px 12px;
    background-size: 20px 24px;
}

/* ============================================
   ページトップ（KV）
   ============================================ */
.page_top_out {
    width: 100%;
    position: relative;
    background-color: #ffcb00;
    background-image: radial-gradient(circle, #f7e057 2px, transparent 2px), radial-gradient(circle, #f7e057 2px, transparent 2px);
    background-position:
        0 0,
        10px 12px;
    background-size: 20px 24px;
    overflow: hidden;
}

.page_top {
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin: 50px auto 0;
    background-image: url(../img/topbg.jpg);
    background-size: 100.1%;
    background-position: bottom center;
    background-repeat: no-repeat;
    aspect-ratio: 12 / 8;
    max-height: 1000px;
    display: flex;
    justify-content: center;
}

/* ============================================
   KV → CONCEPT 波アニメーション
   ============================================ */
.kv-wave-wrap {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
}
.kv-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 80px;
}
.kv-wave--back {
    animation: wave-slide-back 14s linear infinite;
    opacity: 0.9;
}
.kv-wave--front {
    animation: wave-slide-front 9s linear infinite;
}
@keyframes wave-slide-back {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes wave-slide-front {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ============================================
   SNS速報バナー（非使用・念のため残す）
   ============================================ */
.sns_out2 {
    width: 100%;
    padding: 60px 0;
    background-color: #f8f8d7;
    background-image: radial-gradient(circle, #efefb0 2px, transparent 2px), radial-gradient(circle, #efefb0 2px, transparent 2px);
    background-position:
        0 0,
        10px 12px;
    background-size: 20px 24px;
    position: relative;
}

.sns_in2 {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    border: 3px solid #e8e08a;
}

/* ============================================
   CONCEPTセクション
   ============================================ */
.event {
    width: 100%;
    padding: 80px 0 100px;
    position: relative;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #f5f0c0 2px, transparent 2px), radial-gradient(circle, #f5f0c0 2px, transparent 2px);
    background-position:
        0 0,
        10px 12px;
    background-size: 20px 24px;
}

/* フォトスライダー外枠（横はみ出し防止） */
.swiper2_wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.event_in {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.event_txt {
    background-color: #ffcb00;
    background-image: none;
    margin-top: 40px;
    padding: 60px 80px 40px;
    position: relative;
    border-radius: 30px;
    border: #000 solid 3px;
}

.event_txt_in h2 {
    text-align: center;
    color: #000;
    font-size: 34px;
}

.event_txt_in p {
    text-align: left;
    color: #000;
    font-size: 15px;
    margin-top: 30px;
}

/* あしらいイラスト */
.ashi01 {
    max-width: 93px;
    position: absolute;
    top: -20px;
    left: -3%;
    z-index: 5;
}
.ashi01 img {
    width: 100%;
}

.ashi02 {
    max-width: 120px;
    position: absolute;
    top: 40px;
    right: -3%;
    z-index: 5;
}
.ashi02 img {
    width: 100%;
}

.ashi03 {
    max-width: 160px;
    position: absolute;
    bottom: -80px;
    right: -4%;
}
.ashi03 img {
    width: 100%;
}

/* フォトスライダー */
.swiper2 {
    width: 100%;
}
.swiper2 .swiper-slide {
    margin-top: 0;
}
.swiper2 .swiper-slide img {
    height: auto;
    width: 100%;
    border-radius: 50%;
}
.swiper2 .swiper-wrapper {
    transition-timing-function: linear;
}

/* ============================================
   EVENTセクション
   ============================================ */
.schedule {
    width: 100%;
    padding: 80px 0 100px;
    background-color: #ffcb00;
    background-image: radial-gradient(circle, #f7e057 2px, transparent 2px), radial-gradient(circle, #f7e057 2px, transparent 2px);
    background-position:
        0 0,
        10px 12px;
    background-size: 20px 24px;
    position: relative;
}

.schedule_in {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.schedule_txt {
    margin-top: 50px;
    padding: 0;
    position: relative;
}

/* EVENTカード：白背景・タイトル重なり対応 */
.schedule .event_txt {
    background-color: #ffffff;
    background-image: none;
    border: #000 solid 3px;
    padding: 60px 80px 40px;
}
.schedule .event_txt_in p {
    font-size: 17px;
    margin-top: 0;
    color: #000;
}

/* あしらい（スケジュール） */
.ashi04 {
    max-width: 200px;
    position: absolute;
    top: 0px;
    left: -0px;
}
.ashi04 img {
    width: 100%;
}

.ashi05 {
    max-width: 200px;
    position: absolute;
    top: 0px;
    right: -0px;
}
.ashi05 img {
    width: 100%;
}

.ashi06 {
    max-width: 100px;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 999;
}
.ashi06 img {
    width: 100%;
}

/* Googleマップ */
.map_wrap {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
}
.map_wrap iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* ============================================
   MENUセクション
   ============================================ */
.menu {
    width: 100%;
    padding: 80px 0 100px;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #f5f0c0 2px, transparent 2px), radial-gradient(circle, #f5f0c0 2px, transparent 2px);
    background-position:
        0 0,
        10px 12px;
    background-size: 20px 24px;
    position: relative;
}

.menu_in {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/* あしらい（メニュー） */
.ashi07 {
    max-width: 160px;
    position: absolute;
    top: -10px;
    left: -20px;
}
.ashi07 img {
    width: 100%;
}

.ashi08 {
    max-width: 90px;
    position: absolute;
    top: -10px;
    right: -20px;
}
.ashi08 img {
    width: 100%;
}

.ashi09 {
    max-width: 110px;
    position: absolute;
    top: -10px;
    right: 120px;
}
.ashi09 img {
    width: 100%;
}

/* ============================================
   タイトル画像サイズ（実寸の1/2表示）
   ============================================ */

/* title01.png: 1120x316 → 表示: 560px */
.event_title {
    width: 560px;
    max-width: 100%;
    margin: 0 auto;
}
.event_title img {
    width: 560px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* title02.png: 554x147 → 表示: 277px */
.event_txt_title {
    width: 277px;
    margin: 0 auto;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.event_txt_title img {
    width: 277px;
    max-width: 100%;
    display: block;
}

/* title03.png: 393x146 → 表示: 196px */
.schedule_title {
    width: 196px;
    max-width: 196px;
    margin: 0 auto;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.schedule_title img {
    width: 196px;
    max-width: 100%;
    display: block;
}

/* title05.png: 567x146 → 表示: 283px */
.footer_title {
    width: 283px;
    margin: 0 auto;
    margin-top: 40px;
}
.footer_title img {
    width: 283px;
    max-width: 100%;
    display: block;
}

/* title06.png: 295x172 → 表示: 147px */
.sns_title {
    width: 147px;
    margin: 0 auto;
}
.sns_title img {
    width: 147px;
    max-width: 100%;
    display: block;
}

/* title07.png: 412x173 → 表示: 206px */
.menu_title {
    width: 206px;
    max-width: 100%;
    margin: 0 auto;
}
.menu_title img {
    width: 206px;
    max-width: 100%;
    display: block;
}

/* title10.png: 294x146 → 表示: 147px */
.sns_title2 {
    width: 147px;
    margin: 0 auto;
}
.sns_title2 img {
    width: 147px;
    max-width: 100%;
    display: block;
}

/* メニューサブタイトル */
.menu_subtitle {
    text-align: center;
    margin-top: 40px;
}
.menu_subtitle p {
    font-size: 24px;
    font-weight: 700;
}
.menu_desc {
    font-size: 15px !important;
    font-weight: 400 !important;
    max-width: 800px;
    margin: 12px auto 0 !important;
    color: #333;
    text-align: left;
}

/* ビールブランドロゴ */
.beer_brands {
    margin-top: 32px;
}
.beer_brand_item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

/* フードグリッド */
.food_grid {
    margin-top: 32px;
}
.food_grid img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* COMING SOON */
.coming_soon {
    text-align: center;
    margin-top: 32px;
    padding: 8px 0 0;
}
.coming_soon p {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.05em;
}

/* 旧メニューグリッド（流用用） */
.newmenu_con {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px 2%;
}
.newmenu_con_in {
    width: 32%;
}
.newmenu_img {
    width: 100%;
}
.newmenu_img img {
    width: 100%;
}
.newmenu_txt h2 {
    font-size: 22px;
    margin: 10px 0;
    text-align: center;
}
.newmenu_txt p {
    font-size: 13px;
}
.mt60 {
    margin-top: 60px;
}

/* ============================================
   SNSセクション
   ============================================ */
.sns_out {
    width: 100%;
    padding: 60px 0;
    background-color: #26bf13;
    position: relative;
}

.sns_in {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.sns_txt {
    margin-top: 40px;
}
.sns_txt p {
    text-align: center;
    font-size: 20px;
}

.sns {
    width: 100%;
    text-align: center;
    margin: 40px auto 0;
}
.sns img {
    width: 80px;
    margin: 0 8px;
    transition: transform 0.3s ease;
}
.sns img:hover {
    transform: scale(1.1);
}

/* ============================================
   フッター
   ============================================ */
.page_bottom {
    width: 100%;
    height: auto;
    background-color: #ffcb00;
    background-image: radial-gradient(circle, #f7e057 2px, transparent 2px), radial-gradient(circle, #f7e057 2px, transparent 2px);
    background-position:
        0 0,
        10px 12px;
    background-size: 20px 24px;
}

.footer {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding: 70px 0;
    text-align: center;
}

.footer_logo {
    width: 320px;
    margin: 0 auto;
}
.footer_logo img {
    width: 100%;
}
.footer p {
    color: #000;
    font-size: 16px;
}

/* ============================================
   ボタン
   ============================================ */
.btn1 {
    width: 240px;
    text-align: center;
    margin: 20px auto 0;
    display: inline-block;
    padding: 16px 0;
    text-decoration: none;
    color: #000;
    border: solid 2px #000;
    background: #fff;
    border-radius: 50px;
    transition: 0.3s;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
}
.btn1 span {
    width: 100%;
    position: relative;
}
.btn1 span::after {
    content: "";
    position: absolute;
    top: 35%;
    right: -20%;
    width: 5px;
    height: 5px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
}
.btn1:hover {
    background: #ffcb00;
    color: #000;
    border: solid 2px #000;
    transform: scale(1.04);
}

/* ============================================
   その他共通
   ============================================ */
p.mb20 {
    margin-bottom: 20px;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.end {
    width: 100%;
    margin: 0 auto;
    background: #000;
    text-align: center;
}
.end p {
    padding: 10px 0;
    font-size: 12px;
    color: #fff;
    line-height: 1.8;
}

.bottom-fixed-button2 {
    position: fixed;
    bottom: 30px;
    right: 2%;
    width: 60px;
    text-align: center;
    z-index: 1000;
}
.bottom-fixed-button2 img {
    width: 100%;
}
.bottom-fixed-button2 img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* メールフォームページ */
.info {
    width: 100%;
    padding-top: 60px;
}
.info_in {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding: 70px 0 0;
    text-align: center;
}
.info_in h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.info_in p {
    font-size: 14px;
}

/* ============================================
   スマホ対応
   ============================================ */
@media screen and (max-width: 768px) {
    .page_top {
        width: 100%;
    }

    /* KV */
    .page_top {
        margin-top: 50px;
        background-size: cover;
        background-position: center top;
    }

    /* タイトル画像 SP（PC幅の約60%） */
    .event_title {
        width: 336px;
    } /* 560 × 0.6 */
    .event_txt_title {
        width: 200px;
    } /* 277 × 0.72 */
    .schedule_title {
        width: 140px;
    } /* 196 × 0.71 */
    .footer_title {
        width: 200px;
    } /* 283 × 0.71 */
    .sns_title {
        width: 100px;
    } /* 147 × 0.68 */
    .menu_title {
        width: 148px;
    } /* 206 × 0.72 */

    /* CONCEPT */
    .event {
        padding: 60px 0 60px;
    }

    .event_txt {
        margin-top: 40px;
        padding: 40px 20px 30px;
    }
    .event_txt_title {
        top: -24px;
    }
    .event_txt_in h2 {
        font-size: 20px;
    }
    .event_txt_in p {
        font-size: 13px;
        margin-top: 20px;
    }

    .ashi01 {
        max-width: 50px;
        top: 60px;
        left: 0;
        z-index: 5;
    }
    .ashi02 {
        max-width: 60px;
        top: 100px;
        right: 0;
        z-index: 5;
    }
    .ashi03 {
        max-width: 80px;
        bottom: -40px;
        right: 0;
    }

    /* EVENT */
    .schedule {
        padding: 60px 0 80px;
    }
    .schedule_txt {
        margin-top: 40px;
        padding: 0;
    }

    .schedule .event_txt {
        padding: 40px 30px 40px;
    }
    .schedule .event_txt_in p {
        font-size: 14px;
        margin-top: 0;
        color: #000;
    }

    .ashi04 {
        max-width: 120px;
        top: 0px;
        left: 0;
    }
    .ashi05 {
        max-width: 120px;
        top: 0px;
        right: 0;
    }
    .ashi06 {
        max-width: 50px;
        bottom: -20px;
        right: 0;
    }

    .map_wrap {
        margin-top: 30px;
    }
    .map_wrap iframe {
        height: 260px;
    }

    /* MENU */
    .menu {
        padding: 60px 0 60px;
    }

    .menu_title {
        max-width: 220px;
    }
    .menu_title2 {
        max-width: 360px;
    }
    .menu_title3 {
        max-width: 300px;
    }

    .ashi07 {
        max-width: 70px;
        top: -80px;
        left: -10px;
        z-index: 5;
    }
    .ashi08 {
        max-width: 60px;
        top: -60px;
        right: -10px;
        z-index: 5;
    }
    .ashi09 {
        max-width: 90px;
        top: -20px;
        right: -10px;
        z-index: 5;
    }

    .menu_subtitle p {
        font-size: 16px;
    }
    .menu_desc {
        font-size: 13px !important;
    }

    .coming_soon p {
        font-size: 22px;
    }

    .newmenu_con {
        margin-top: 30px;
    }
    .newmenu_con_in {
        width: 48%;
    }
    .newmenu_txt h2 {
        font-size: 16px;
        margin: 10px 0 0;
    }

    /* SNS */
    .sns_out {
        padding: 60px 0;
    }
    .sns_out2 {
        padding: 30px 0;
    }
    .sns_title {
        max-width: 150px;
    }
    .sns_txt {
        margin-top: 30px;
    }
    .sns_txt p {
        padding: 0 10px;
        font-size: 15px;
    }
    .sns {
        margin: 30px auto 0;
    }
    .sns img {
        width: 60px;
    }

    /* フッター */
    .page_bottom {
        width: 100%;
        height: auto;
    }
    .footer {
        padding: 60px 0;
    }
    .footer_logo {
        width: 180px;
    }
    .footer_title {
        width: 200px;
        margin-top: 30px;
    }
    .footer p {
        font-size: 14px;
    }

    .bottom-fixed-button2 {
        width: 40px;
    }

    /* メールフォーム */
    .info {
        padding-top: 30px;
    }
    .info_in h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }
}
