/* ========== css/style.css ========== */
/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル */
:root {
    --primary-color: #72370c;
    --secondary-color: #4267B2;
    --text-color: #333;
    --background-color: #fff;
    --gray-light: #f8f8f8;
    --gray-dark: #444;
    --max-width: 1200px;
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* タイポグラフィ */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.4;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* 共通コンポーネント */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

/* カード */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
}

/* グリッド */
.grid {
    display: grid;
    gap: 20px;
}

/* フレックスボックス */
.flex {
    display: flex;
}

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

/* ユーティリティ */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* レスポンシブ */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ヘッダー */
.header {
    position: relative;
}

.main-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

.main-visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.0);
}

.main-visual-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-visual-content p {
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 300px;
    height: auto;
}

.main-visual-content h1,
.main-visual-content p {
    display: none;
}

/* メッセージセクション */
.message {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    /*background: linear-gradient(to right, #E1306C, #4267B2, #000000);*/
}

.message-content {
    position: relative;
    z-index: 1;
}

.message h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.message h2 .emoji {
    font-size: 3.2rem;
    display: inline-block;
    margin-bottom: 10px;
}

.message h2 .highlight {
    color: #E1306C;
    font-size: 3.2rem;
    display: inline-block;
    margin: 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.message-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message-text p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 30px;
    color: #444;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-text .emoji {
    font-size: 1.5rem;
    vertical-align: middle;
}

.message-text .intro {
    font-size: 1.4rem;
    color: #333;
}

.message-text .drinks {
    color: #666;
    font-style: italic;
}

.message-text .highlight-text {
    color: #E1306C;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 40px 0;
    padding: 20px;
    background: rgba(225, 48, 108, 0.1);
    border-radius: 10px;
}

.message-text .conclusion {
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
}

/* ソーシャルセクション */
.social {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.social h2 {
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.instagram {
    background-color: #E1306C;
}

.x-twitter {
    background-color: #000000;
}

.facebook {
    background-color: #4267B2;
}

/* ギャラリーセクション 
.gallery {
    padding: 100px 0;
    background-color: #fff;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/


.info-item h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-item ul {
    list-style: none;
}

.info-item li {
    margin-bottom: 10px;
}

/* フッター */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

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

.info-section li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-section .tel {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}

.footer-social {
    text-align: center;
}

.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.8rem;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 3fr 1fr;
    }

    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-section h3 {
        font-size: 1.3rem;
    }

    .info-section li {
        font-size: 1rem;
    }

    .info-section .tel {
        font-size: 1.6rem;
    }
}

/* 予約セクション */
.reservation {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    text-align: center;
}
.gallery h2,
.reservation h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.reservation-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.reservation-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 150px;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reservation-link i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.reservation-link span {
    font-size: 1.6rem;
}

.reservation-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.reservation-link.gnavi {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.reservation-link.tabelog {
    background: linear-gradient(135deg, #FF4B00 0%, #CC3C00 100%);
}

.reservation-link.hotpepper {
    background: linear-gradient(135deg, #FF6B00 0%, #CC5500 100%);
}

@media (max-width: 768px) {
    .reservation {
        padding: 60px 0;
    }
    
    .gallery h2,
    .reservation h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .reservation-links {
        gap: 20px;
    }

    .reservation-link {
        width: 160px;
        height: 160px;
        font-size: 1.2rem;
    }

    .reservation-link i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .reservation-link span {
        font-size: 1.4rem;
    }
}

/* 店舗情報 */
.store-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.store-info dt {
    font-weight: bold;
    margin-bottom: 5px;
}

.store-info dd {
    margin-bottom: 20px;
}

/* PC表示（768px以上） */
@media screen and (min-width: 768px) {
    .store-info dt {
        float: left;
        clear: left;
        width: 200px;
        margin-right: 20px;
    }

    .store-info dd {
        margin-left: 220px;
        margin-bottom: 20px;
    }
}

/* スマートフォン表示（767px以下） */
@media screen and (max-width: 767px) {
    .store-info dt {
        display: block;
        margin-bottom: 5px;
    }

    .store-info dd {
        margin-left: 0;
        margin-bottom: 20px;
    }
} 
/* ========== css/menu.css ========== */
/* メニューイントロセクション */
.menu-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--gray-light) 100%);
}

.menu-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-intro p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

/* メニューカテゴリーセクション */
.menu-categories {
    padding: 60px 0;
}

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

.menu-category {
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.menu-category h3 {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, #CC2B5E 100%);
    padding: 20px;
    margin: 0;
    text-align: center;
}

.menu-items {
    padding: 20px;
}

.menu-item {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: var(--border-radius);
    background: var(--gray-light);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

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

.menu-item-content h4 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.menu-item-content .description {
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.menu-item-content .price {
    color: var(--primary-color);
    margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .menu-intro {
        padding: 60px 0;
    }

    .menu-intro h2 {
        font-size: 2rem;
    }

    .menu-intro p {
        font-size: 1.1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .menu-category h3 {
        font-size: 1.6rem;
        padding: 15px;
    }

    .menu-items {
        padding: 15px;
    }

    .menu-item {
        margin-bottom: 20px;
        padding: 12px;
    }

    .menu-item-content h4 {
        font-size: 1.2rem;
    }

    .menu-item-content .description {
        font-size: 0.9rem;
    }

    .menu-item-content .price {
        font-size: 1.1rem;
    }
}

/* サブビジュアル */
.sub-visual {
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sub-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.sub-visual-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.sub-visual-content h1 {
    font-size: 2rem;
    margin: 0;
    line-height: 1;
}

.sub-visual-content p {
    font-size: 1.2rem;
    margin: 5px 0 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sub-visual {
        height: 60px;
    }

    .sub-visual-content h1 {
        font-size: 1.6rem;
    }

    .sub-visual-content p {
        font-size: 1rem;
    }
}

/* メディア掲載情報セクション */
.media-coverage {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.media-coverage h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
}

.media-coverage h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    margin: 15px auto 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.media-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.media-item span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* メディアアイテムの個別スタイル */
.media-item.youtube i {
    color: #ff0000;
}

.media-item.wasabee i {
    color: #2ecc71;
}

.media-item.blog i {
    color: #3498db;
}

.media-item.store i {
    color: #f1c40f;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-coverage h2 {
        font-size: 1.5rem;
    }
    
    .media-item {
        padding: 20px 15px;
    }
    
    .media-item i {
        font-size: 2rem;
    }
    
    .media-item span {
        font-size: 1rem;
    }
}

/* グローバルメニュー */
.global-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    transition: right 0.3s ease;
    z-index: 1000;
}

.global-menu.active {
    right: 0;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px auto;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-list {
    padding: 80px 0 0;
    list-style: none;
}

.menu-list li {
    padding: 15px 30px;
}

.menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    transition: color 0.3s ease;
}

.menu-list a:hover {
    color: #e74c3c;
}

/* スマートフォン用フッターメニュー */
.footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    z-index: 1000;
}

.footer-menu-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-list li {
    text-align: center;
}

.footer-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-menu-list i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .global-menu {
        display: none;
    }

    .menu-toggle {
        display: none;
    }

    .footer-menu {
        display: block;
    }
} 
/* ========== css/gallery.css ========== */
/* ギャラリーセクション */
.gallery {
    padding: 0;
}

/* PC用タブナビゲーション */
.gallery-nav {
    margin-bottom: 30px;
}

.tab-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid var(--primary-color);
}

.tab-item {
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-item span {
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.tab-item.active {
    background-color: var(--primary-color);
}

.tab-item.active span {
    color: #fff;
}

.tab-item:hover:not(.active) {
    background-color: rgba(231, 76, 60, 0.1);
}

/* スマホ用カテゴリー表示 */
.category-labels {
    display: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 15px 0;
    margin-bottom: 20px;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-labels::-webkit-scrollbar {
    display: none;
}

.category-label {
    display: inline-block;
    padding: 8px 20px;
    margin-right: 10px;
    background-color: var(--gray-light);
    border-radius: 20px;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-label.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* ギャラリーグリッド */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 0;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
}

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

/* ギャラリーイントロセクション */
.gallery-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--gray-light) 100%);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .gallery-grid {
        display: block;
        width: 100%;
    }

    .gallery-item {
        width: 100%;
        padding-bottom: 100%;
        margin-bottom: 0;
    }

    .gallery-grid[data-category="food"] .gallery-item:not([data-category="food"]),
    .gallery-grid[data-category="interior"] .gallery-item:not([data-category="interior"]),
    .gallery-grid[data-category="exterior"] .gallery-item:not([data-category="exterior"]),
    .gallery-grid[data-category="post"] .gallery-item:not([data-category="post"]) {
        display: none;
    }
}

@media (min-width: 769px) {
    .sp-only {
        display: none;
    }
} 
/* ========== css/course.css ========== */
/* コースメニュー用スタイル */
.course-intro {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.course-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
}

.course-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.course-categories {
    padding: 80px 0;
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.course-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.course-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.course-header .price {
    font-size: 2rem;
    font-weight: bold;
}

.course-header .tax {
    font-size: 0.9rem;
    font-weight: normal;
}

.course-content {
    padding: 30px;
}

.course-details h4 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.course-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.course-features i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.course-menu {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.course-menu h5 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.course-menu ul {
    list-style: none;
    padding: 0;
}

.course-menu li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    color: var(--gray-dark);
}

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

.note {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 20px;
}
.note2 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 20px;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .course-intro h2 {
        font-size: 2rem;
    }

    .course-intro p {
        font-size: 1.1rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .course-intro h2 {
        font-size: 1.8rem;
    }

    .course-header h3 {
        font-size: 1.5rem;
    }

    .course-header .price {
        font-size: 1.8rem;
    }

    .course-content {
        padding: 20px;
    }

    .course-details h4 {
        font-size: 1.3rem;
    }
} 
/* ========== css/contact.css ========== */
/* お問い合わせイントロセクション */
.contact-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--gray-light) 100%);
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-intro p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

/* お問い合わせセクション */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* 店舗情報 */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.info-text h3 {
    color: var(--text-color);
    margin-bottom: 8px;
}

.info-text p {
    color: var(--gray-dark);
}

/* お問い合わせフォーム */
.contact-form {
    background-color: var(--gray-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--primary-color);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* 地図セクション */
.map {
    padding: 0 0 80px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-intro {
        padding: 60px 0;
    }

    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-intro p {
        font-size: 1.1rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-item {
        gap: 15px;
    }

    .info-item i {
        font-size: 1.5rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
} 
/* ========== page-specific overrides ========== */
/* トップ：スライド背景（旧インライン style 廃止） */
.slide.slide--cover-1 {
    background-image: url("/images/cover/1.jpg");
}

.slide.slide--cover-2 {
    background-image: url("/images/cover/2.jpg");
}

.slide.slide--cover-3 {
    background-image: url("/images/cover/3.jpg");
}

.slide.slide--cover-4 {
    background-image: url("/images/cover/4.jpg");
}

.slide.slide--cover-0 {
    background-image: url("/images/cover/0.jpg");
}

/* 下層：サブビジュアル背景 */
.sub-visual.sub-visual--cover-1 {
    background-image: url("/images/cover/1.jpg");
}

.sub-visual.sub-visual--cover-2 {
    background-image: url("/images/cover/2.jpg");
}

.sub-visual.sub-visual--cover-3 {
    background-image: url("/images/cover/3.jpg");
}

/* メニュー誘導ページ */
.menu-redirect-main {
    padding: 3rem 1.25rem;
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

/* マップ埋め込み */
.map-embed-iframe {
    border: 0;
}

/* 送信完了（thanks.php） */
.thanks-container {
    text-align: center;
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 80px;
    color: #e1306c;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.6;
}

.home-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e1306c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.home-button:hover {
    background-color: #c6286b;
}

/* 404 */
.pnf {
    margin: 0 10px;
}

.error-container {
    text-align: center;
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.error-code {
    font-size: 120px;
    color: #e1306c;
    margin-bottom: 20px;
    font-weight: bold;
}

.error-message {
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
}
