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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    line-height: 2.2;
    color: #2C2C2C;
    background-color: #F9F8F6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   First View - デザイン性強化
======================================== */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.fv-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: brightness(0.75) saturate(0.95) contrast(1.1);
}

.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247,246,243,0.4) 0%, rgba(247,246,243,0.55) 100%);
    z-index: 2;
}

.fv-decorative-line {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(58,74,60,0.3), transparent);
    transform: translateY(-50%);
    z-index: 3;
}

.fv-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 100px;
}

.fv-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.fv-title-accent {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #3A4A3C);
}

.fv-title {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: #3A4A3C;
    opacity: 0.95;
}

.fv-text {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 80px;
    border-left: 2px solid rgba(58,74,60,0.2);
}

.fv-main {
    font-size: 3rem;
    line-height: 1.3;
    letter-spacing: 0.22em;
    color: #1E1E1E;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(249,248,246,0.8);
}

.fv-sub {
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: 0.22em;
    color: #1E1E1E;
    margin-top: 1rem;
    font-weight: 300;
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(58,74,60,0.5), transparent);
    animation: scrollAnimation 2s infinite;
}

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

/* ========================================
   セクション共通 - デザイン性強化
======================================== */
.section {
    padding: 10rem 6%;
    width: 100%;
    position: relative;
}

/* セクションごとの背景色 */
.section-concept {
    background-color: #F9F8F6;
}

.section-matcha {
    background: linear-gradient(to bottom, #F9F8F6, #F5F4F1);
    position: relative;
}

.section-matcha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(58,74,60,0.15), transparent);
}

.section-menu {
    background-color: #F5F4F1;
}

.section-open {
    background: linear-gradient(135deg, #F5F4F1 0%, #F9F8F6 100%);
}

.section-access {
    background-color: #F9F8F6;
}

/* 装飾要素 */
.section-decoration {
    position: absolute;
    top: 80px;
    left: 6%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(58,74,60,0.1);
    border-radius: 50%;
    pointer-events: none;
}

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

/* セクションヘッダー */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}

.section-number {
    display: none;
}

.section-title {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: #3A4A3C;
    position: relative;
    padding-left: 0;
}

.section-title::before {
    display: none;
}

.section-content {
    font-size: 1rem;
    line-height: 2.6;
    letter-spacing: 0.08em;
    text-align: left;
    max-width: 600px;
    color: #2C2C2C;
}

.section-content p {
    margin-bottom: 2.5rem;
}

/* リードテキスト */
.lead-text {
    font-size: 1.3rem !important;
    letter-spacing: 0.12em !important;
    color: #3A4A3C !important;
    font-weight: 400 !important;
    margin-bottom: 3rem !important;
}

/* ========================================
   Matchaセクション - ハイライト
======================================== */
.matcha-highlight {
    background: linear-gradient(135deg, rgba(58,74,60,0.03) 0%, rgba(58,74,60,0.08) 100%);
    padding: 50px 60px;
    border-left: 3px solid #3A4A3C;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 40px rgba(58,74,60,0.08);
}

/* ========================================
   Menuセクション - テキストリスト
======================================== */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item-text {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #2C2C2C;
    line-height: 1.8;
}

.menu-special {
    margin-top: 1rem;
}

.menu-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(44, 44, 44, 0.5);
    letter-spacing: 0.06em;
    margin-top: 5px;
}

/* ========================================
   Openセクション - シンプルテキスト
======================================== */
/* info-cardスタイルを削除 */

/* ========================================
   Accessセクション - シンプルレイアウト
======================================== */
.access-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.access-item {
    transition: all 0.3s ease;
}

.access-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(58,74,60,0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.map-link-wrapper {
    margin-top: 50px;
}

.map-link {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #3A4A3C, #4A5A4C);
    color: #FFFFFF;
    border-radius: 50px;
    letter-spacing: 0.15em;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(58,74,60,0.25);
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(58,74,60,0.35);
    background: linear-gradient(135deg, #4A5A4C, #3A4A3C);
}

/* ========================================
   テキストリンク - 強化版
======================================== */
.text-link {
    color: #3A4A3C;
    position: relative;
    padding-bottom: 2px;
    font-weight: 400;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #3A4A3C, transparent);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.text-link:hover::after {
    transform: scaleX(1.1);
}

/* ========================================
   Footer
======================================== */
.footer {
    padding: 6rem 6% 4rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(44, 44, 44, 0.3);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(58,74,60,0.08);
}

/* ========================================
   レスポンシブ対応
======================================== */
@media (max-width: 1024px) {
    .fv-text {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .fv-content {
        padding: 0 6% 80px;
    }
    
    .fv-title-wrapper {
        gap: 15px;
    }
    
    .fv-title-accent {
        width: 40px;
    }
    
    .fv-text {
        padding-left: 25px;
    }
    
    .fv-main {
        font-size: 2.2rem;
    }
    
    .fv-sub {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 7rem 6%;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .matcha-highlight {
        padding: 35px 40px;
    }
    
    .access-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .fv-content {
        padding: 0 5% 60px;
    }
    
    .fv-title {
        font-size: 0.75rem;
    }
    
    .fv-text {
        padding-left: 20px;
    }
    
    .fv-main {
        font-size: 1.8rem;
    }
    
    .fv-sub {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 5rem 5%;
    }
    
    .section-title {
        font-size: 0.75rem;
    }
    
    .matcha-highlight {
        padding: 30px 30px;
    }
    
    .map-link {
        padding: 15px 40px;
        font-size: 0.9rem;
    }
}