@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
}

body {
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}

.w-container {
    margin: 110px 10px 0;
}

/* フォントサイズ */
h3,
.small {
    font-size: 24px;
}

.big {
    font-size: 48px;
}

/* h3下線 */
.line {
    background: linear-gradient(transparent 90%, #FFBD10 60%);
}

/* ----- 背景エリア ----- */
/* 背景全体 */
.lp-background {
    background-color: rgba(255, 189, 16, 0.8);
}

/* コンテンツ枠（スマホ幅固定） */
.lp-wrapper {
    width: 100%;
    max-width: 420px;
    background: #B72908;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bg-illustration {
        position: fixed;
        right: 5px;
        bottom: 5px;
        width: 25vw;
        height: 100%;
        background: url("img/bg.png") right bottom no-repeat;
        background-size: contain;
        pointer-events: none;
        z-index: 10;
    }
}

.bg-illustration {
    filter: brightness(1.2) saturate(1.1);
}

/* ----- 背景エリアここまで ----- */

/* ----- ヘッダー ----- */
.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    grid-template-rows: 12px 1fr 1fr 12px;
    gap: 3px;
    background-color: #B72908;
    height: 110px;
}

.header-container .logo {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    margin: auto;
}

.header-container .time {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
    margin: 0 auto;
}

.header-container .btn01 {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
    margin: 0 auto;
}

.header-container .btn02 {
    grid-column: 6 / 7;
    grid-row: 3 / 4;
    margin: 0 auto;
}

/* ボタン共通スタイル */
.btn01,
.btn02 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    font-size: 18px;
    background-color: #FFBD10;
    border-radius: 5px;
    border: none;
}

/* 営業時間の文字 */
.time p {
    font-size: 16px;
    font-weight: 600;
}

.time span {
    letter-spacing: 0.05em;
}

.logo img {
    width: 100%;
    filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.6));
}

/* レスポンシブ 画面幅が小さい場合は横幅を合わせる */
@media (max-width: 360px) {
    .lp-wrapper {
        max-width: 100%;
    }

    .header-container .btn01,
    .header-container .btn02 {
        width: 95px;
        font-size: 16px;
    }

    .time p {
        font-size: 13px;
    }
}

/* ----- ヘッダーここまで ----- */

/* ----- ヒーロー ----- */
.hero {
    height: 650px;
    background: url(img/hero.webp) center/cover no-repeat;
}

.hero-container {
    display: grid;
    justify-items: center;
    align-items: center;
    height: 100%;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 1px #666;
    line-height: 1.1;
}

/* ----- ヒーローここまで ----- */

/* ----- カード設定 ----- */
.card {
    margin: 30px auto;
    padding: 30px 10px;
    text-align: center;
    background-color: #fff;
    color: black;
}

.card img {
    width: 100%;
    margin: 10px auto;
}

.btn {
    background-color: #FFBD10;
    border-radius: 50px;
    border: none;
    padding: 14px 24px;
    margin: 20px auto;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.reserve {
    border-bottom: 4px solid #e7a706;
}

.red {
    font-size: 24px;
    color: #B72908;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    color: #B72908;
}

.tip {
    font-size: 12px;
}

/* ----- カード設定ここまで ----- */

/* ----- 店内の紹介 ----- */
.about p {
    margin: 30px auto;
}

.about .btn {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    margin: 50px auto;
}

.about .fa-instagram {
    margin-bottom: 5px;
    font-size: 60px;
    color: #fff;
}

.about img {
    width: 100%;
}

/* 初期状態：アニメーションなし */
.poyon-basic {
    transform: translateY(0) scale(1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 表示されたときにアニメーション開始 */
.poyon-basic.animate {
    opacity: 1;
    animation: poyon-bounce 2s ease-out 3;
    /* ← 3回だけ動く */
}

/* ぽよんアニメーション定義 */
@keyframes poyon-bounce {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }

    70% {
        transform: translateY(-10px) scale(0.95);
    }

    85% {
        transform: translateY(-5px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}



/* map */
.map {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    width: 300px;
    margin: 50px auto 0;
}

.map img {
    padding: 20px;
}

/* ----- 店内の紹介ここまで ----- */

/* ----- フッター ----- */
.footer {
    height: 270px;
    background-color: #000;
}

.footer-container p {
    font-size: 14px;
}

.footer-container img {
    width: 150px;
    margin-top: 30px;
    filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.6));
}

.footer-container .fa-instagram {
    font-size: 30px;
    color: #fff;
    margin: 10px auto;
}

.copy {
    font-size: 12px;
}

/* ----- フッターここまで ----- */

/* ----- reserve.html ----- */
.reservation-form {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    margin-top: 60px;
}

.reservation-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #B72908;
}

.reservation-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.reservation-form button {
    width: 100%;
    padding: 12px;
    background-color: #FFBD10;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.reservation-form button:hover {
    background-color: #B72908;
}

/* ----- reserve.htmlここまで ----- */