@charset "utf-8";

/*// ==========================================
   1. ヒーローセクション
   ========================================== //*/
#hero {
    position: relative;
    z-index: 5;            /* 下のセクションより前面に表示させて、凛さんの体が隠れるのを防ぐ */
    background-color: var(--color-white); /* 後ろの背景色を白に変更 */
    color: var(--color-text-light);
    padding: 200px 0 140px; /* 上部の余白を増やして、文字や凛さんを下に下げる */
    overflow: visible; /* はみ出し表示を許可 */
}

/* 画面幅100%背景のラッパー */
.hero-bg-wrapper {
    position: absolute;
    top: 80px;             /* 上端を80px下げて、頭が上にはみ出るスペースを作る */
    left: 0;
    width: 100%;
    height: calc(100% - 80px); /* 下げた分、高さを縮める */
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画面いっぱいにカバー */
    object-position: center;
}

/* 文字の視認性を上げるための神秘的なグラデーションオーバーレイ */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30,18,51,0.95) 0%, rgba(30,18,51,0.85) 45%, rgba(30,18,51,0.3) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    min-height: 420px; /* コンポーネントの高さを少しコンパクトに */
}

.hero-content {
    flex: 1.2;
    max-width: 550px;
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-title span {
    color: var(--color-secondary);
}

.hero-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #c9bed8;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* 凛さん（コンテナ右端に絶対配置・上にはみ出し） */
.hero-rin-img-full {
    height: 750px;         /* 下端を-140pxに固定したまま、頭が飛び出るように750pxに拡大！ */
    width: auto;
    object-fit: contain;
    position: absolute;
    bottom: -140px;        /* 下端（背景の底）にぴったり届くように調整 */
    right: -20px;          /* 右端に綺麗に収める */
    z-index: 2;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6)); /* 影で立体感を出す */
}

/* 想いセクションに凛さんの影が綺麗に被るように設定 */
#concept {
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
}

/*// ==========================================
   2. 想い・コンセプトセクション
   ========================================== //*/
.concept-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.concept-img {
    flex: 1;
    position: relative;
}

.concept-img-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138,111,176,0.1);
    border: 1px solid var(--color-border);
}

.concept-img::before {
    content: "✧";
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 2rem;
    color: var(--color-secondary);
}

.concept-body {
    flex: 1.2;
}

.concept-body h2 {
    font-size: 2.2rem;
    color: var(--color-bg-deep);
    margin-bottom: 25px;
}

.concept-body p {
    margin-bottom: 20px;
    color: var(--color-text-main);
}

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

/*// ==========================================
   3. メニューセクション
   ========================================== //*/
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.menu-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 40px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 111, 176, 0.08);
}

.menu-head {
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.menu-head h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-bg-deep);
    margin-bottom: 10px;
}

.menu-price {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 700;
}

.menu-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-sub);
}

.menu-body .menu-desc {
    font-size: 0.9rem;
    color: var(--color-text-main);
    line-height: 1.7;
}

/* おすすめカードの特別装飾 */
.menu-card.highlighted {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.menu-card.highlighted::before {
    content: "✧ Recommended ✧";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-secondary);
    color: var(--color-bg-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 15px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap; /* 折り返しを防止して飾りが下がるのを防ぐ */
}

/*// ==========================================
   4. お客様の声セクション
   ========================================== //*/
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.voice-item {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 30px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border: 1px solid var(--color-border);
    position: relative;
}

.voice-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 10px;
}

.voice-client {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-bg-deep);
}

.voice-rating {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.voice-text {
    font-size: 0.9rem;
    color: var(--color-text-main);
    line-height: 1.8;
}

/*// ==========================================
   5. アニメーション（フェードアップ）
   ========================================== //*/
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ディレイ設定 */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/*// ==========================================
   6. レスポンシブ調整（レイアウト）
   ========================================== //*/

/* 【TB】 1024px 以下 */
@media screen and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 0;
    }
}

/* 【SM】 768px 以下 */
@media screen and (max-width: 768px) {
    #hero {
        padding: 95px 0 240px; /* ヘッダー分80px + タグラインの上の余白15px */
    }

    .hero-bg-wrapper {
        top: 0;
        height: 100%;
    }
    
    .hero-bg-overlay {
        background: rgba(30,18,51,0.85); /* スマホは文字の視認性重視で全体を暗めに */
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-content {
        max-width: 500px;
        margin: 0 auto 20px; /* 最大幅を500pxにして中央寄せ */
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-rin-img-full {
        position: absolute;
        bottom: -240px; /* スマホで下にはみ出させる位置 */
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 65%;
        max-width: 220px;
        height: auto; /* 縦幅固定を解除 */
    }
    
    .concept-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .concept-img {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
    
    .voice-item {
        padding: 25px 20px;
    }
    
    .voice-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* 【SP】 479px 以下 */
@media screen and (max-width: 479px) {
    /* SP専用のスタイルがあればここに追記します */
}
