/* ============================================
   リセット & ベーススタイル
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: '游明朝', 'Yu Mincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'MS PMincho', serif;
    color: #2c2c2c;
    background-color: #fafafa;
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

/* ============================================
   コンテナ
   ============================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.interior-space .container,
.feature-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

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

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 50px;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #8b7355;
    margin: 20px auto 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #8b7355;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    margin-top: 10px;
}

/* ============================================
   ファーストビュー（ヒーローセクション）
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
}

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

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: #ffffff;
    font-size: 3rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    pointer-events: auto;
    user-select: none;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

@media (max-width: 768px) {
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
}

.hero-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator.active {
    background-color: #ffffff;
    border-color: #ffffff;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 3;
    text-align: left;
    color: #ffffff;
    padding: 0;
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
}

.hero-copy {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    font-weight: normal;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-content {
        top: 40px;
        left: 20px;
    }
    
    .hero-copy {
        font-size: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    position: relative;
    margin: 0 auto;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background-color: #ffffff;
    animation: scrollLine 1.5s infinite;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

@keyframes scrollLine {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ============================================
   コンセプト
   ============================================ */
.concept {
    position: relative;
    background-color: #000000;
    color: #ffffff;
}

.concept .section-title {
    color: #ffffff;
}

.concept .section-title::after {
    background-color: #ffffff;
}

.concept .section-subtitle {
    color: #cccccc;
}

.concept-content {
    max-width: 900px;
    margin: 0 auto;
}

.concept-text {
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.concept-text-mobile {
    display: none;
}

@media (max-width: 768px) {
    .concept-text-desktop {
        display: none;
    }
    
    .concept-text-mobile {
        display: block;
    }
}

.concept-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 50px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.concept-heading:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .concept.section {
        padding: 60px 0;
    }
    
    .concept .container {
        padding: 0;
    }
    
    .concept-content {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .concept-text {
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .concept-heading {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 20px;
        margin-top: 40px;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .concept-heading:first-child {
        margin-top: 0;
    }

    /* モバイル用の最後の見出しを1行に収める */
    .concept-text-mobile .concept-heading-single-line {
        font-size: 1rem !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        letter-spacing: 0.01em !important;
        line-height: 1.3 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    /* 画面が非常に狭い場合のフォールバック */
    @media (max-width: 400px) {
        .concept-text-mobile .concept-heading:last-child {
            font-size: 0.65rem !important;
            letter-spacing: 0.01em !important;
            transform: scale(0.95);
            transform-origin: center;
        }
    }
    
    @media (max-width: 360px) {
        .concept-text-mobile .concept-heading:last-child {
            font-size: 0.6rem !important;
            letter-spacing: 0 !important;
            transform: scale(0.9);
            transform-origin: center;
        }
    }



}

.concept-description {
    font-size: 1rem;
    line-height: 2.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .concept-description {
        font-size: 1rem;
        line-height: 2;
        margin-bottom: 20px;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .concept .section-header {
        margin-bottom: 50px;
    }
}

/* ============================================
   宴会コースメニュー
   ============================================ */
.course-menu {
    position: relative;
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .course-menu {
        padding: 40px 0;
    }
}

.course-menu-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.course-menu-title {
    font-size: 1.8rem;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .course-menu-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

.course-update-date {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.course-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .course-subtitle {
        margin-bottom: 25px;
    }
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .course-list {
        gap: 15px;
        margin-bottom: 30px;
    }
}

.course-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    width: 100%;
    gap: 15px;
}

.course-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .course-item {
        padding: 15px 0;
        gap: 12px;
    }
}

.course-name {
    font-size: 1.3rem;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.6;
    width: 100%;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.course-name-mobile {
    display: none;
}

@media (max-width: 768px) {
    .course-name-desktop {
        display: none;
    }
    
    .course-name-mobile {
        display: block;
        font-size: 1rem;
        line-height: 1.5;
        word-break: normal;
        overflow-wrap: break-word;
        text-align: center;
    }
}

.course-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .course-details {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.course-dishes {
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.course-price {
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    font-weight: normal;
}

@media (max-width: 768px) {
    .course-price {
        font-size: 1.3rem;
    }
}

.course-notes {
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .course-notes {
        margin-top: 25px;
    }
}

.course-note {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.course-note:last-child {
    margin-bottom: 0;
}

.course-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.course-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .course-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

.course-info {
    font-size: 0.9rem;
    color: #cccccc;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    margin-top: 5px;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .course-info {
        font-size: 0.85rem;
    }
}

/* ============================================
   QRコードセクション
   ============================================ */
.qr-section {
    position: relative;
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .qr-section {
        padding: 60px 0;
    }
}

.qr-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.qr-text {
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .qr-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code img {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .qr-code img,
    .qr-placeholder {
        width: 180px;
        height: 180px;
    }
}

/* ============================================
   新着情報・ブログセクション
   ============================================ */
.news-blog {
    position: relative;
    background-color: #000000;
    color: #ffffff;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .news-blog {
        padding: 60px 0;
    }
}

.news-blog-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .news-blog-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.news-section,
.blog-section {
    text-align: left;
}

.news-title,
.blog-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .news-title,
    .blog-title {
        font-size: 1.3rem;
    }
}

.news-divider,
.blog-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.news-item,
.blog-item {
    margin-bottom: 30px;
}

.news-date,
.blog-date {
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-right: 15px;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.news-text,
.blog-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-top: 10px;
    display: block;
}

.news-button,
.blog-button {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.news-button:hover,
.blog-button:hover {
    background-color: #ffffff;
    color: #000000;
    opacity: 1;
}

@media (max-width: 768px) {
    .news-button,
    .blog-button {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

/* ============================================
   ご宴会コース・お料理セクション
   ============================================ */
.feature-section {
    background-color: #000000;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .feature-section {
        padding: 60px 0;
    }
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    background-color: transparent;
    overflow: visible;
    height: 400px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item-gray .feature-content {
    background-color: #f5f5f5;
}


.feature-item-black .feature-content {
    background-color: #000000;
    color: #ffffff;
}

.feature-item-black .feature-title {
    color: #ffffff;
}

.feature-item-black .feature-list li {
    color: #ffffff;
}

.feature-item-black .feature-button {
    border-color: #ffffff;
    color: #ffffff;
}

.feature-item-black .feature-button:hover {
    background-color: #ffffff;
    color: #000000;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.feature-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

@media (max-width: 968px) {
    .feature-content {
        padding: 25px 30px;
    }
}

.feature-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .feature-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.feature-list li {
    font-size: 1rem;
    color: #333333;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-list {
        margin-bottom: 20px;
    }
    
    .feature-list li {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

.feature-button {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid #8b7355;
    color: #8b7355;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    align-self: flex-start;
}

.feature-button:hover {
    background-color: #8b7355;
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-button {
        padding: 12px 40px;
        font-size: 0.95rem;
        align-self: center;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   店内・空間セクション
   ============================================ */
.interior-space {
    background-color: #000000;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .interior-space {
        padding: 60px 0;
    }
}

.interior-space-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: transparent;
    overflow: visible;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .interior-space-item {
        grid-template-columns: 1fr;
    }
}

.interior-space-item img{
    height: 100px;
}

.interior-space-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

@media (max-width: 968px) {
    .interior-space-content {
        padding: 40px 30px;
    }
}

.interior-space-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .interior-space-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

.interior-space-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .interior-space-text {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
}

.interior-space-button {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid #8b7355;
    color: #8b7355;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    align-self: flex-start;
}

.interior-space-button:hover {
    background-color: #8b7355;
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 768px) {
    .interior-space-button {
        padding: 12px 40px;
        font-size: 0.95rem;
        align-self: center;
        width: 100%;
        max-width: 300px;
    }
}

.interior-space-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background-color: transparent;
}

.interior-space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interior-space-item:hover .interior-space-image img {
    transform: scale(1.05);
}

/* ============================================
   お問い合わせ・予約セクション
   ============================================ */
.contact-reservation {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0;
}

@media (max-width: 768px) {
    .contact-reservation {
        padding: 40px 0;
    }
}

.contact-reservation-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .contact-reservation-content {
        flex-direction: column;
    }
    
    .contact-info-box {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 30px 40px;
    }
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 968px) {
    .contact-left {
        align-items: center;
    }
}

.contact-label,
.reservation-label {
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.contact-center {
    flex: 1;
    text-align: center;
}

.contact-phone {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    letter-spacing: 0.1em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    transition: opacity 0.3s ease;
}

.contact-phone:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-phone {
        font-size: 1.5rem;
    }
}

.contact-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

@media (max-width: 968px) {
    .contact-right {
        align-items: center;
    }
}

.online-reservation-label {
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.online-reservation-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 1px solid #dc143c;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.online-reservation-button:hover {
    background-color: #dc143c;
    opacity: 1;
}

@media (max-width: 768px) {
    .online-reservation-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* ============================================
   Google Mapセクション
   ============================================ */
.map-section {
    background-color: #000000;
    padding: 50px 0;
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }
}

.map-box {
    background-color: transparent;
    padding: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 450px;
    display: block;
}

@media (max-width: 968px) {
    .map-box {
        padding: 30px 40px;
    }
    
    .map-box iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .map-box {
        padding: 20px 30px;
    }
    
    .map-box iframe {
        height: 350px;
    }
}

/* ============================================
   メニュー
   ============================================ */
.menu {
    background-color: #f5f5f5;
}

.menu-category {
    margin-bottom: 80px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-title {
    font-size: 1.8rem;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.menu-category-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #8b7355;
    margin: 15px auto 0;
}

@media (max-width: 768px) {
    .menu-category-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.menu-item {
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-info {
    padding: 25px;
}

.menu-name {
    font-size: 1.3rem;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.menu-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.menu-price {
    font-size: 1.2rem;
    color: #8b7355;
    font-weight: normal;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

/* ============================================
   店内・雰囲気
   ============================================ */
.interior {
    background-color: #ffffff;
}

.interior-content {
    margin-bottom: 60px;
}

.interior-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.interior-item:last-child {
    margin-bottom: 0;
}

.interior-item.reverse {
    direction: rtl;
}

.interior-item.reverse > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .interior-item,
    .interior-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
}

.interior-image {
    width: 100%;
    overflow: hidden;
}

.interior-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interior-image:hover img {
    transform: scale(1.05);
}

.interior-text {
    padding: 0 20px;
}

@media (max-width: 968px) {
    .interior-text {
        padding: 0;
    }
}

.interior-title {
    font-size: 1.8rem;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    border-left: 3px solid #8b7355;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .interior-title {
        font-size: 1.5rem;
    }
}

.interior-description {
    font-size: 1rem;
    line-height: 2;
    color: #4a4a4a;
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .interior-gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   店舗情報
   ============================================ */
.info {
    background-color: #000000;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .info {
        padding: 60px 0;
    }
}

.info-header {
    text-align: center;
    margin-bottom: 60px;
}

.info-section-title {
    font-size: 2.5rem;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .info-section-title {
        font-size: 2rem;
    }
}

.info-title-line {
    width: 60px;
    height: 1px;
    background-color: #ffffff;
    margin: 0 auto;
}

.info-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

@media (max-width: 968px) {
    .info-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

.info-image {
    width: 500px;
    height: 500px;
    overflow: hidden;
    flex-shrink: 0;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content {
    background-color: #000000;
    color: #ffffff;
    padding: 0px 30px;
}

@media (max-width: 968px) {
    .info-content {
        padding: 40px 30px;
    }
}

.info-store-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .info-store-name {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
}

.info-list {
    display: grid;
    gap: 15px;
}

.info-list dt {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

.info-list dd {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

@media (max-width: 768px) {
    .info-list dd.info-address-single-line {
        font-size: 0.9rem !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        line-height: 1.4 !important;
        letter-spacing: 0.03em !important;
    }
}

/* 画面が非常に狭い場合のフォールバック */
@media (max-width: 400px) {
    .info-list dd.info-address-single-line {
        font-size: 0.85rem !important;
        letter-spacing: 0.02em !important;
    }
}

@media (max-width: 360px) {
    .info-list dd.info-address-single-line {
        font-size: 0.8rem !important;
        letter-spacing: 0.01em !important;
    }
}

.info-list dd a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.info-list dd a:hover {
    opacity: 0.8;
}

/* ============================================
   予約導線
   ============================================ */
.reservation {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    text-align: center;
}

.reservation-content {
    max-width: 600px;
    margin: 0 auto;
}

.reservation-title {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .reservation-title {
        font-size: 2rem;
    }
}

.reservation-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.reservation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    min-width: 200px;
    text-align: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 15px 40px;
        font-size: 1rem;
        min-width: 160px;
    }
}

.btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    opacity: 1;
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 50px 0;
}

.footer-name {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.footer-copy {
    font-size: 0.9rem;
    color: #999999;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

