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

/* カスタムプロパティ */
:root {
    --primary-color: #3e7c52;
    --primary-light: #5a9068;
    --primary-dark: #2a563a;
    --accent-gold: #d4a574;
    --text-primary: #2c2c2c;
    --text-secondary: #333;
    --text-light: #333;
    --bg-light: #fafafa;
    --bg-section: #f8faf9;
    --border-light: #e8e8e8;
    --shadow-soft: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 5px 30px rgba(0,0,0,0.12);
}

/* 基本スタイル */
body{
    font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-light);
    font-weight: 300;
    overflow-x: hidden;
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* コンテナ */
.container{
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}

/* ヘッダー */
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.header.scrolled{
    padding: 15px 40px;
    box-shadow: var(--shadow-soft);
}

.header-inner{
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex: 0 0 auto;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.header-logo-image:hover {
    transform: scale(1.05);
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header-subtitle{
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    margin-bottom: 1px;
    font-family: 'Cormorant Garamond', serif;
    margin-left: 0;
}

.header-title{
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 0.12em;
    margin-left: 0;
}

/* ヘッダー内ナビゲーション */
.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-navigation{
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-item{
    list-style: none;
}

.header-nav-link{
    display: block;
    padding: 12px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.header-nav-english{
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    font-weight: 300;
}

.header-nav-japanese{
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.header-nav-link:hover .header-nav-english {
    color: var(--primary-color);
}

.header-nav-link:hover .header-nav-japanese {
    color: var(--primary-color);
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-nav-link:hover::after {
    width: 70%;
}

/* スティッキーナビゲーション削除 */
.nav-wrapper{
    display: none;
}

.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    max-width: 1320px;
    margin: 0 auto;
}

.nav-item{
    flex: 0 0 auto;
    list-style: none;
}

.nav-link{
    display: block;
    padding: 22px 30px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 90%;
}

.nav-english{
    display: block;
    font-size: 0.7rem;
    opacity: 0.5;
    margin-bottom: 3px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

/* メインコンテンツ */
.main-content{
    padding: 100px 40px;
    max-width: 1320px;
    margin: 0 auto;
}

/* セクションタイトル共通 */
.section-title{
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.15em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 20px auto 0;
}

/* イントロセクション */
.intro-section{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 10px 60px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.intro-text{
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.intro-text strong{
    font-weight: 400;
}

/* 特徴セクション */
.features-section{
    margin: 100px 0;
}

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

.feature-card{
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-light));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-title{
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-description{
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 書籍・アプリセクション */
.book-app-section{
    margin: 40px auto;
}

.book-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.book-section, .app-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-section) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.book-content, .app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.book-image, .app-image{
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.book-image:hover, .app-image:hover {
    transform: translateY(-5px) scale(1.05);
}

.book-info, .app-info{
    flex: 1;
    min-width: 250px;
}

.book-title, .app-title{
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.book-description, .app-description{
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.app-catchphrase {
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.6;
}

.app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #888 0%, #aaa 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #999;
}

.app-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.app-link::after {
    content: '→';
    font-size: 1em;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #999 0%, #777 100%);
}

.app-link:hover::before {
    left: 100%;
}

.app-link:hover::after {
    transform: translateX(3px);
}

.app-link:active {
    transform: translateY(0px);
    transition: all 0.1s ease;
}

/* 更新情報セクション */
.news-section{
    max-width: 900px;
    margin: 0 auto 10px;
    background-color: #ffffff;
    padding: 20px 60px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

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

.news-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    line-height: 1.8;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
}

.news-list a:hover {
    text-decoration: underline;
}

/* 瞑想会のお知らせ（トップページ） */
.meditation-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    border: 1px solid var(--border-light);
    border-radius: 10px;
}

.meditation-notice-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meditation-notice-date {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
}

.meditation-notice-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.meditation-notice-link:hover {
    background: var(--primary-color);
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .meditation-notice {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}

.highlight{
    color: var(--accent-gold);
    font-weight: 500;
}

/* 瞑想会セクション */
.meditation-section{
    background: linear-gradient(135deg, var(--bg-section) 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.meditation-section .section-title{
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* フッター */
.footer{
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(255,255,255,0.05) 100%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 60%, var(--primary-light) 100%);
    color: #fff;
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path fill="%23ffffff" opacity="0.02" d="M0,100 C300,50 600,150 1200,100 L1200,200 L0,200 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-links{
    margin-bottom: 20px;
}

.footer-links a{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 15px;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover{
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.footer-links a::after{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover::after{
    width: 100%;
}

.footer-copy{
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copy .footer-separator{
    margin: 0 0.5em;
}

@media screen and (max-width: 1024px) {
    .footer-copy .footer-separator{
        display: block;
        margin: 8px 0;
        font-size: 0;
    }
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copy a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ページトップボタン */
.page-top{
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    font-size: 1.2rem;
}

.page-top.show{
    opacity: 0.9;
    visibility: visible;
}

.page-top:hover{
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107,142,127,0.3);
}

/* モバイルメニュー */
.mobile-menu-toggle{
    display: none;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle:hover{
    background: var(--primary-color);
    color: white;
}

/* レスポンシブデザイン */
@media screen and (max-width: 1200px) {
    .header-nav-english{
        font-size: 0.7rem;
    }
    
    .header-nav-japanese{
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 1100px) {
    .header-nav-english{
        font-size: 0.65rem;
    }
    
    .header-nav-japanese{
        font-size: 0.8rem;
    }
    
    .header-nav-link{
        padding: 10px 10px;
    }
}

@media screen and (max-width: 1024px) {
    .header{
        padding: 15px 20px;
    }
    
    .header.scrolled{
        padding: 10px 20px;
    }
    
    .header-inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .header-logo {
        flex: 1;
    }
    
    .header-title{
        font-size: 1.4rem;
    }
    
    .header-subtitle{
        font-size: 0.95rem;
    }
    
    .mobile-menu-wrapper{
        position: relative;
    }
    
    .header-nav{
        display: none;
    }
    
    .mobile-menu-toggle{
        display: block;
        padding: 8px 16px;
        min-width: 70px;
        text-align: center;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .header-nav-link{
        padding: 10px 12px;
    }
    
    .header-nav-english{
        font-size: 0.7rem;
    }
    
    .header-nav-japanese{
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    /* モバイルメニュー表示時 */
    .header-nav.active{
        display: block;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 250px;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 8px;
        z-index: 1000;
    }
    
    .header-navigation{
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .header-nav-item{
        width: 100%;
        border-bottom: 1px solid var(--border-light);
        list-style: none;
    }
    
    .header-nav-item:last-child{
        border-bottom: none;
    }
    
    .header-nav-link{
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        display: block;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }
    
    .header-nav-link:hover{
        background-color: var(--bg-light);
    }
    
    .header-nav.active .header-nav-english{
        font-size: 0.7rem;
        margin-bottom: 3px;
        display: block;
        color: var(--text-light);
    }
    
    .header-nav.active .header-nav-japanese{
        font-size: 0.9rem;
        display: block;
        color: var(--text-primary);
        font-weight: 400;
    }
    
    .mobile-menu-toggle{
        display: block;
        width: calc(100% - 40px);
    }
    
    .navigation{
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .navigation.active {
        display: flex;
    }
    
    .nav-item{
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link{
        padding: 15px 20px;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .main-content{
        padding: 60px 20px;
    }
    
    .intro-section,
    .news-section{
        padding: 40px 25px;
    }
    
    .news-grid {
        gap: 20px;
    }
    
    .news-item {
        padding: 20px;
    }
    
    .book-app-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .book-content, .app-content {
        flex-direction: column;
    }
    
    .page-top{
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .intro-section,
    .book-section,
    .session-intro,
    .price-note,
    .reserve-info{
        text-align: left;
    }

    .intro-text br,
    .content-text br,
    .notice-text br,
    .book-title br,
    .price-note br{
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .section-title{
        font-size: 1.5rem;
    }

    .intro-text{
        font-size: 1rem;
    }
}

/* ビデオコンテナ */
.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 20px auto;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 記事スタイル */
.article-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
}

.article-text br {
    display: block;
    margin: 15px 0;
}

.article-nav {
    text-align: center;
    margin-top: 40px;
}

.back-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107,142,127,0.3);
}

/* アニメーション */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ページ読み込み時のアニメーション */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヒーローセクション（index.htmlのみ） */
.hero-section{
    height: 100vh;
    min-height: 600px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* スライドショー */
.slideshow-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.slide.active {
    opacity: 1;
}

/* スライド画像 */
.slide:nth-child(1){
    background-image: url('slide1.jpg');
}

.slide:nth-child(2){
    background-image: url('slide2.jpg');
}

.slide:nth-child(3){
    background-image: url('slide3.jpg');
}

.slide:nth-child(4){
    background-image: url('slide4.jpg');
}

/* ヒーローコンテンツ */
.hero-content{
    position: absolute;
    top: 35%;
    left: 50%;
    z-index: 3;
    text-align: center;
    padding: 20px;
    transform: translate(-50%, -50%);
}

.hero-title-overlay{
    width: 100%;
    max-width: 1200px;
}

.hero-title{
    font-family: 'Noto Serif JP', serif;
    font-size: 2.6rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0.5s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    white-space: nowrap;
}

/* スクロールインジケーター */
.scroll-indicator{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 0;
    animation: fadeIn 2s ease forwards, bounce 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease-in-out infinite;
}

/* ヒーロー用レスポンシブ */
@media screen and (max-width: 1024px) {
    .hero-section{
        height: 80vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .hero-title{
        font-size: 2rem;
    }
    
    .hero-content{
        top: 35%;
    }
}

@media screen and (max-width: 480px) {
    .hero-section{
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title{
        font-size: 1.5rem;
    }

    .hero-content{
        top: 35%;
    }
}

/* ===========================================
   セッションページ用スタイル
   =========================================== */

/* ページタイトルセクション */
.page-title-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin: 0 0 15px 0;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

/* セッションイントロ */
.session-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.session-intro p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 10px;
}

.session-intro p:last-child {
    margin-bottom: 0;
}

/* セッションの流れ */
.session-flow {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.flow-step:hover {
    box-shadow: var(--shadow-soft);
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.flow-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 10px;
}

.flow-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* メニュー */
.session-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.menu-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.menu-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.menu-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 料金テーブル */
.price-table-container {
    max-width: 700px;
    margin: 0 auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.price-table th,
.price-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.price-table tr:last-child th,
.price-table tr:last-child td {
    border-bottom: none;
}

.price-table th {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    color: var(--text-primary);
    font-weight: 500;
    width: 40%;
}

.price-table td {
    color: var(--text-secondary);
}

.price-table td.price {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

.price-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

/* 予約情報 */
.reserve-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.reserve-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reserve-desc {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.8;
}

.reserve-button-container {
    margin-top: 30px;
}

.reserve-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.reserve-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* プロフィール */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 30px 40px;
}

.profile-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
}

.profile-reading {
    font-size: 0.9rem;
    font-weight: 300;
    margin-left: 15px;
    opacity: 0.9;
}

.profile-body {
    padding: 40px;
}

.profile-body p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 15px;
}

.profile-body p:last-child {
    margin-bottom: 0;
}

/* セッションページレスポンシブ */
@media screen and (max-width: 1024px) {
    .session-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .session-intro {
        padding: 30px 20px;
    }

    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 25px 20px;
    }

    .session-menu {
        grid-template-columns: 1fr;
    }

    .menu-item {
        padding: 25px 20px;
    }

    .price-table th,
    .price-table td {
        padding: 15px;
        font-size: 0.9rem;
    }

    .price-table th {
        width: 35%;
    }

    .reserve-info {
        padding: 30px 20px;
    }

    .profile-header {
        padding: 25px;
        text-align: center;
    }

    .profile-name {
        font-size: 1.3rem;
    }

    .profile-reading {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .profile-body {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }

    .flow-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .price-table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding-bottom: 5px;
    }

    .price-table td {
        display: block;
        padding-top: 5px;
    }

    .price-table td.price {
        text-align: left;
        padding-top: 10px;
        font-size: 1.1rem;
    }

    .price-table tr {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--border-light);
    }

    .price-table tr:last-child {
        border-bottom: none;
    }
}