@charset "UTF-8";

/* --- 全体設定 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212; /* 高級感のあるダークグレー */
    color: #f5f5f5;
    line-height: 1.8;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 共通ボタン */
.btn {
    display: inline-block;
    background-color: #9e2a2b; /* 落ち着いたエンジ色 */
    color: #fff;
    padding: 12px 35px;
    border: 1px solid #9e2a2b;
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn:hover {
    background-color: transparent;
    color: #9e2a2b;
}

.btn-area {
    text-align: center;
}

/* --- ヘッダー --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #e5ba73; /* ゴールド */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #e5ba73;
}

/* --- メインビジュアル --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlider 15s infinite ease-in-out;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 5;
}

/* 背景画像指定 */
.slide:nth-child(1) {
    background-image: url('jyuujyuu1.jpg'), url('jyuujyuu1.JPG'), url('jyuujyuu1.jpeg');
    animation-delay: 0s;
}
.slide:nth-child(2) {
    background-image: url('hanmi.jpg');
    animation-delay: 5s;
}
.slide:nth-child(3) {
    background-image: url('tataki.jpg');
    animation-delay: 10s;
}

@keyframes fadeSlider {
    0% { opacity: 0; transform: scale(1.0); }
    5% { opacity: 1; }
    33% { opacity: 1; }
    38% { opacity: 0; transform: scale(1.04); }
    100% { opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 38px;
    letter-spacing: 0.2em;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    line-height: 1.8;
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
}

.hero-content h1 br {
    display: block;
}

/* --- セクション共通 --- */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
    position: relative;
    color: #e5ba73;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #e5ba73;
}

/* --- こだわり (ABOUT) --- */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.1em;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- お品書き (MENU) --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background-color: #1a1a1a;
    border: 1px solid #222;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.menu-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    letter-spacing: 0.05em;
}

.menu-price {
    color: #e5ba73;
    font-weight: bold;
    white-space: nowrap;
}

.menu-desc {
    font-size: 14px;
    color: #aaa;
}

/* --- 全メニュー表示エリア --- */
.full-menu-wrapper {
    display: none;       
    margin-top: 50px;       
}

.full-menu-wrapper.open {
    display: block !important;
}

.full-menu-container {
    background-color: #1a1a1a;
    border: 1px solid #222;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}

.menu-category h4 {
    font-size: 20px;
    color: #e5ba73;
    border-bottom: 1px solid #e5ba73;
    padding-bottom: 8px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.full-menu-list {
    list-style: none;
}

.full-menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #333;
    font-size: 16px;
}

.full-menu-list li span:first-child {
    color: #fff;
}

.full-menu-list li span:last-child {
    color: #e5ba73;
    font-weight: bold;
}

/* --- 店舗情報（INFO & MAP） --- */
.info-bg {
    background-color: #1a1a1a;
}

.info-flex {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.info-table-wrapper {
    flex: 1;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th, .info-table td {
    padding: 18px 0;
    border-bottom: 1px solid #333;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    width: 25%;
    color: #e5ba73;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 4px;
}

.tel-note {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #e5ba73;
    font-weight: normal;
}

/* マップ外枠 */
.info-map-wrapper {
    flex: 1;
    min-height: 500px;
    position: relative;
    border: 1px solid #333;
}

.info-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- フッター --- */
footer {
    background-color: #0b0b0b;
    padding: 40px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.1em;
}

/* --- タブレット対応 (1024px以下) --- */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .full-menu-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    .info-flex {
        gap: 30px;
    }
}

/* --- スマホ対応 (768px以下) --- */
@media (max-width: 768px) {
    header {
        position: static;
        background: #0b0b0b;
    }
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        text-align: center;
    }
    .logo {
        font-size: 18px;
    }
    .nav-list {
        gap: 20px;
    }
    .hero {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 22px; 
        letter-spacing: 0.1em;
        line-height: 1.8;
    }
    .about-flex, .info-flex {
        flex-direction: column;
        gap: 35px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .info-map-wrapper {
        min-height: 300px;
    }
    .tel-note {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    .info-table th {
        width: 30%;
    }
    .full-menu-list li {
        font-size: 14px;
    }
}
/* --- 近日オープン文字のデザイン（style.cssの一番下に追加してください） --- */
.incoming-open {
    font-size: 42px;
    font-weight: bold;
    color: #e5ba73; /* ゴールド */
    letter-spacing: 0.3em;
    margin-top: 30px;
    text-shadow: 0 0 20px rgba(229, 186, 115, 0.6), 2px 2px 10px rgba(0,0,0,0.9);
    font-family: "Yu Gothic", "Meiryo", sans-serif; /* 文字を力強く太く見せるためのゴシック指定 */
    animation: pulseGlow 2.5s infinite ease-in-out;
}

/* 文字をゆっくりと明滅させてさらに目立たせるアニメーション */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1.0);
    }
    50% {
        opacity: 1;
        transform: scale(1.03); /* わずかに鼓動するように大きく */
        text-shadow: 0 0 35px rgba(229, 186, 115, 0.9), 2px 2px 10px rgba(0,0,0,0.9);
    }
}

/* スマホ表示の時の文字サイズ調整（レスポンシブ） */
@media (max-width: 768px) {
    .incoming-open {
        font-size: 26px;
        letter-spacing: 0.2em;
        margin-top: 20px;
    }
}