/* ==========================================
   1. 基本設定（全デバイス共通）
   ========================================== */
:root {
    --primary-brown: #8b7355;
    --text-black: #333;
    --header-h-sp: 70px;
    --header-h-pc: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* 游明朝を最優先にし、予備の明朝体とサンセリフ体を指定 */
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
    -webkit-font-smoothing: antialiased; /* 文字のギザギザを抑えて滑らかにする（Mac/iOS用） */
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-black);
    line-height: 1.8; /* 明朝体は少し行間広く */
    color: var(--text-black);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* --- スマホでは改行を無効化 --- */
.pc-only {
    display: none;
}
/* --- PC（769px以上）で改行を有効化 --- */
@media (min-width: 769px) {
    .pc-only {
        display: inline; /* brタグ本来の動きに戻す */
    }
}
/* ==========================================
   2. スマホ用スタイル（デフォルト）
   ========================================== */

/* ヘッダー */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h-sp);
    background: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

/* ハンバーガーボタン */
.menu-trigger {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
}

.menu-trigger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-brown);
    position: absolute;
    left: 10px;
    transition: 0.3s;
}

.menu-trigger span:nth-child(1) { top: 14px; }
.menu-trigger span:nth-child(2) { top: 21px; }
.menu-trigger span:nth-child(3) { top: 28px; }

/* ボタン active時 */
.menu-trigger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-trigger.active span:nth-child(2) { opacity: 0; }
.menu-trigger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビゲーション（隠しておく） */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.main-nav.active {
    right: 0;
}

.main-nav ul {
    list-style: none;
    width: 100%;
    text-align: center;
}

.main-nav a {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: var(--primary-brown);
    font-size: 1.2rem;
    font-weight: bold;
}


/* --- メインビジュアルセクション --- */
.main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/TOP_PC2.jpg'); 
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* PC：右側50%の透過背景 */
.main-visual::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background-color: rgba(60, 35, 20, 0.7); 
    z-index: 1;
}

.mv-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    z-index: 2;
}

.mv-content {
    display: flex;
    justify-content: flex-end; /* PCは右寄せ */
    align-items: center;
    height: 100%;
    padding: 0 50px;
}

.mv-lead {
    font-family: "Yu Mincho", "YuMincho", serif;
    font-size: 2.5rem;
    line-height: 2.2;
    color: #fff;
    letter-spacing: 0.15em;
}

/* ==========================================
   スマホ表示（768px以下）の調整
   ========================================== */
@media (max-width: 768px) {
    /* 背景の透過を「中央の帯」に変更 */
    .main-visual::after {
        width: 100%;
        height: auto; /* 高さは文字に合わせる */
        top: 50%;
        left: 0;
        transform: translateY(-50%); /* 画面の真ん中に固定 */
        padding: 96px 0; /* 文字の上下にゆとり */
        background-color: rgba(60, 35, 20, 0.75); /* 少しだけ濃く */
    }
    
    .mv-content {
        justify-content: center; /* 中央寄せ */
        padding: 0; /* 帯を端まで広げるため */
    }
    
    .mv-text-box {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 3; /* 背景より上に */
    }
    
    .mv-lead {
        font-size: 1.6rem;
        line-height: 2;
        padding: 0 20px; /* 文字が端にピタッとつかないように */
    }
}

/* ==========================================
   想いのセクション（デフォルト：スマホ）
   ========================================== */
.about-section {
    background-color: #f7f3e8; 
    padding: 80px 0;
    clip-path: ellipse(110% 100% at 50% 50%);
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.about-inner {
    width: 100%;
    padding: 0 20px;
}

.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.about-image img {
    width: 120px;
}

/* 文章：スマホでは横書き・左揃え */
.about-text-content {
    writing-mode: horizontal-tb; /* 明示的に横書き */
    text-align: left;
    color: var(--primary-brown);
    font-size: 0.95rem;
    line-height: 2;
    max-width: 500px;
    margin: 0 auto;
}

.about-text-content p {
    margin-bottom: 20px;
}

/* 丸いリンク：スマホでは文章の下に中央寄せ */
.about-link-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    margin: 40px auto 0;
    text-decoration: none;
    color: var(--primary-brown);
    transition: 0.3s;
}

.about-link-circle span {
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: center;
}


/* ==========================================
   イントロセクション（デフォルト：スマホ）
   ========================================== */
.intro-section {
    position: relative; /* 栗背景の基準点 */
    padding: 60px 0;
    overflow: hidden; /* 栗背景が画面外に出てもスクロールさせない */
}

/* ★ポイント：左端から出ている栗型の装飾画像 ★ */
.intro-kuri-bg {
    position: absolute;
    top: 60px; /* 位置の微調整 */
    left: -10%; /* 画面幅の10%分だけ左に隠す */
    width: auto;
    height: auto; /* 画面高さに合わせて調整 */
    z-index: -1; /* コンテンツの後ろに配置 */
    opacity: 0.6; /* 透過させてコンテンツを邪魔しないように（画像に合わせて調整） */
}

.intro-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* スマホでは縦並び */
.intro-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* テキストエリア */
.intro-title {
    font-size: 1.8rem;
    color: var(--primary-brown);
    font-weight: normal;
}

.intro-subtitle {
    font-size: 0.8rem;
    color: #999;
    margin-top: -10px;
    margin-bottom: 25px;
}

.intro-text-content {
    font-size: 0.9rem;
    line-height: 1.8;
}

.intro-text-content p {
    margin-bottom: 20px;
}

/* 画像エリア */
.intro-image-block {
    text-align: center;
}

/* ★ポイント：右側の角丸画像 ★ */
.intro-main-image {
    width: 100%;
    max-width: 400px; /* スマホでの最大幅 */
    height: auto;
    border-radius: 50%; /* 画像のような楕円にする */
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); /* 軽い影で浮かせる */
}

/* ボタン */
.intro-btn-wrapper {
    text-align: center;
    margin-top: 60px;
}

.intro-btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 280px;
    padding: 15px 30px;
    border: 1px solid var(--primary-brown);
    border-radius: 30px; /* 角丸ボタン */
    background: #fff;
    text-decoration: none;
    color: var(--primary-brown);
    transition: all 0.3s;
}

.intro-btn-line:hover {
    background-color: #faf7f2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.1);
}

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

.btn-arrow {
    font-size: 1.2rem;
}


/* ==========================================
   お届けまでの流れ（デフォルト：スマホ）
   ========================================== */
.flow-section {
    padding: 60px 0;
    /* セクション自体は白背景（またはサイト全体の背景色） */
    background-color: #fff; 
}

.flow-inner {
    /* コンテンツを囲むサイズ設定 */
    max-width: 1000px; 
    margin: 0 auto;
    
    /* ★ここがポイント：余裕を持って囲む★ */
    padding: 40px 20px;
    background-color: #f7f3e8; /* 画像通りの薄ベージュ */
    border-radius: 24px;       /* しっかり丸く */
    
    /* 画面端に密着しないための工夫（スマホ用） */
    width: 92%;
}

.flow-title {
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin-bottom: 40px;
    display: inline-block;
    border-bottom: 2px solid #e0d5c1; /* タイトル下のライン */
    padding-bottom: 5px;
}

.flow-image-container {
    margin-bottom: 50px;
}

.flow-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ボタンのスタイル */
.flow-btn-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.flow-outline-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid var(--primary-brown);
    border-radius: 40px;
    color: var(--primary-brown);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--primary-brown); /* ボタン下の影 */
}

.flow-outline-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--primary-brown);
}

.flow-outline-btn .arrow {
    margin-left: 10px;
}


/* ==========================================
   こだわりの氷感熟成（デフォルト：スマホ）
   ========================================== */
.kodawari-section {
    padding: 60px 0;
    background-color: #fff;
}

.kodawari-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.kodawari-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* タイトルエリア */
.kodawari-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    color: var(--primary-brown);
    font-weight: normal;
    margin-bottom: 25px;
}

.kuri-icon {
    width: 30px; /* アイコンのサイズ */
    height: auto;
}

.kodawari-title span {
    font-size: 2rem;
    
}

/* 文章 */
.kodawari-text-content {
    font-size: 0.95rem;
    line-height: 2;
    color: #333;
}

.kodawari-text-content p {
    margin-bottom: 20px;
}

/* 画像：スマホでも角丸を適用 */
.hyoukan-image-frame {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #e0d5c1; /* 画像を囲む細い線 */
    padding: 10px; /* 線と画像の間の余白 */
    border-radius: 60px 5px 60px 5px; /* 特徴的な角丸 */
}

.hyoukan-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50px 0 50px 0; /* 内側の画像も角丸に合わせる */
}


/* ==========================================
   製品スライダー（デフォルト：スマホ）
   ========================================== */
.product-slider-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden; /* スライダーのはみ出しを防ぐ */
}

.product-slider-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-bottom: 50px;
    font-weight: normal;
    padding: 0 20px;
}

.product-swiper {
    padding-bottom: 20px;
}

.product-card {
    text-align: center;
}

.product-img {
    aspect-ratio: 1 / 1; /* 正方形にする */
    overflow: hidden;
    margin-bottom: 15px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を枠いっぱいに綺麗に収める */
    transition: transform 0.5s ease;
}

/* ホバーした時に少しズームする遊び心 */
.product-card:hover img {
    transform: scale(1.1);
}

.product-name {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}



/* ==========================================
   こだわりの栗パウダー セクション
   ========================================== */
.powder-section {
    padding: 80px 0;
    background-color: #FAF7EC; /* 指定の背景色 */
    overflow: hidden;
}

.powder-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px; /* モバイル余白 */
}

/* タイトルスタイル */
.powder-main-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

.powder-main-title span {
    font-size: 2rem;
    margin-left: 5px;
}



/* イントロ画像（氷感と同じフレーム） */
.powder-intro-img {
    border: 1px solid #e0d5c1;
    padding: 10px;
    border-radius: 60px 5px 60px 5px;
    background-color: #fff;
    margin-bottom: 20px;
}

.shape-oval {
    width: 100%;
    display: block;
    border-radius: 50px 0 50px 0;
}

.powder-intro-text p {
    line-height: 2;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* リード文の丸ラベル */
.product-lead-circle, .shop-lead-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    margin: 40px auto 20px;
    line-height: 1.5;
}

.product-lead-circle {
    background-color: var(--primary-brown);
    color: #fff;
}

.shop-lead-circle {
    background-color: #fff;
    color: var(--primary-brown);
    border: 1px solid #e0d5c1;
}

/* 製品・店舗リスト */
.product-cards {
    display: grid;
    grid-template-columns: 1fr; /* モバイル1列 */
    gap: 40px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* モバイル2列 */
    gap: 20px;
}

.product-item, .shop-item {
    text-align: center;
}

.product-item-img img, .shop-item img {
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-item h3 {
    color: var(--primary-brown);
    margin: 15px 0 10px;
}

/* 販売について */
.powder-sale {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0d5c1;
}

.sale-info-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-sale-img { width: 100%; border-radius: 15px; }

.sale-details dl dt { font-weight: bold; color: var(--primary-brown); margin-top: 20px; }
.sale-details dl dd { margin-bottom: 10px; font-size: 0.9rem; line-height: 1.6; }



/* ==========================================
   イベントセクション
   ========================================== */
.event-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

/* ★ここがポイント：栗アイコンと縦線の設定★ */
.event-header-line {
    position: relative; /* 縦線の位置基準にする */
    padding-top: 60px;  /* ★縦線の長さ（お好みで調整してください）★ */
    margin-bottom: 20px;
    display: inline-block; /* 栗アイコンの幅に合わせる */
}

/* CSSで縦線を描く */
.event-header-line::before {
    content: '';        /* 中身は空っぽ */
    position: absolute; /* 自由に配置 */
    top: 0;             /* 一番上からスタート */
    left: 50%;          /* 横方向の中央に */
    transform: translateX(-50%); /* 自分の幅の半分だけ左に戻して完璧に中央へ */
    width: 1px;         /* ★線の太さ（1pxが上品です）★ */
    height: 60px;       /* ★線の長さ（padding-topと同じに）★ */
    background-color: #e0d5c1; /* ★線の色（栗アイコンに近い、薄い茶色やベージュ）★ */
}

/* 栗アイコンのスタイル（維持） */
.event-header-line .kuri-icon {
    width: 40px; /* PCでは少し大きめにしても素敵です */
    height: auto;
    position: relative; /* 縦線より上に表示させる */
    z-index: 1;
    margin-top: 24px;
}




.event-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

.event-intro {
    margin-bottom: 50px;
}

.event-title {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin: 15px 0 20px;
    font-weight: normal;
}

.event-lead {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

/* 2カラムレイアウト */
.event-grid {
    display: grid;
    grid-template-columns: 1fr; /* スマホは1列 */
    gap: 40px;
    margin-bottom: 50px;
}

.video-container, .image-container {
    width: 100%;
    aspect-ratio: 16 / 9; /* 動画と写真の比率を揃える */
    overflow: hidden;
    background-color: #eee;
}

.video-container video, 
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #333;
}

/* Instagramボタン */
.insta-btn-wrap {
    margin-top: 40px;
}

.insta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    padding: 15px 20px;
    border: 1px solid #d62976; /* Instagramカラー寄りのピンク */
    border-radius: 40px;
    color: #d62976;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.insta-btn .arrow {
    margin-left: 15px;
}


/* --- お問い合わせセクション --- */
.contact-section {
    padding: 80px 0; /* ご指定の通り80px */
    background-color: #FAF7EC; /* 栗パウダーセクションと統一 */
    text-align: center;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* 縦線とアイコンのエリア */
.contact-header-line {
    position: relative;
    padding-top: 60px; /* 縦線の長さ */
    margin-bottom: 20px;
    display: inline-block;
}

/* 縦線の描画 */
.contact-header-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background-color: #e0d5c1;
}

.ribbon-icon {
    width: 60px; /* リボンアイコンは少し横長なので調整 */
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 24px;
}

.contact-title {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.contact-body p {
    font-size: 0.95rem;
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
}

/* 公式LINEボタン（茶色の細枠タイプ） */
.contact-btn-wrap {
    margin-bottom: 20px;
}

.line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 18px 20px;
    border: 1px solid var(--primary-brown); /* サイトのテーマカラー */
    border-radius: 50px;
    color: var(--primary-brown);
    text-decoration: none;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

.line-btn:hover {
    background-color: var(--primary-brown);
    color: #fff;
    transform: translateY(-2px);
}

.line-btn .arrow {
    margin-left: 20px;
    font-size: 1.2rem;
}



/* --- 想いの詳細セクション --- */
.concept-detail-section {
    padding: 80px 0;
    background-color: #fcfaf5; /* 優しいアイボリー系 */
}

.concept-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==========================================
   スマホ表示（デフォルト：縦並び）
   ========================================== */
.concept-detail-flex {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    gap: 40px; /* 写真と文章の間隔 */
}

/* 写真エリア：スマホではドーンと見せる */
.concept-photo-frame {
    width: 100%;
    aspect-ratio: 4 / 3; /* 写真の比率を固定（お好みで調整） */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* 少し浮かせて高級感を */
}

.concept-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいに収める */
    /* 肝心の「ちきり」部分（上部）が見えるように位置を調整 */
    object-position: center top; 
}

/* 文章エリア */
.concept-text-box {
    color: #333;
    padding: 20px 0;
}

.concept-text-box p {
    font-family: "Yu Mincho", "YuMincho", serif;
    line-height: 2.2;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.concept-signature {
    text-align: right;
    font-size: 1.3rem !important;
    color: var(--primary-brown);
    margin-top: 40px;
}


/* ==========================================
   画像スライダー
   ========================================== */
.insta-gallery {
    width: 100%;
    overflow: hidden;
    padding: 60px 0; /* ★縦長の画像に合わせて、上下の余白を少し広めに★ */
    background-color: #fff; 
}

.gallery-track {
    display: flex;
    /* ★画像の横幅(250px) × 合計枚数(20枚)で計算★ */
    width: calc(250px * 20); 
    animation: loop-slide 80s linear infinite; /* ★画像が縦長になった分、流れを少しゆっくりに（80秒）★ */
}

.gallery-item {
    width: 250px; /* 画像の横幅（維持） */
    padding: 0 8px; /* ★画像同士の間隔を少し広げて、ゆとりを★ */
}

.gallery-item img {
    width: 100%;
    /* ★ここを変更：アスペクト比を4:3（横:縦）に設定★ */
    aspect-ratio: 4 / 3; 
    object-fit: cover; /* 画像を枠いっぱいに綺麗に収める */
    border-radius: 8px; /* ★角の丸みを少し強調して、優しさを★ */
}

/* 無限ループのアニメーション（修正なし、幅に合わせて動きます） */
@keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        /* ★10枚分移動してループ★ */
        transform: translateX(calc(-250px * 10));
    }
}

/* スマホ表示の調整 */
@media (max-width: 768px) {
    .gallery-item {
        width: 180px; /* スマホでの横幅（維持） */
        padding: 0 5px; /* スマホでは隙間を狭く */
    }
    .gallery-track {
        width: calc(180px * 20);
    }
    @keyframes loop-slide {
        from { transform: translateX(0); }
        to { transform: translateX(calc(-180px * 10)); }
    }
}












/* ==========================================
   3. PC用スタイル（画面幅 769px 以上）
   追加・変更したい部分だけを書く
   ========================================== */
@media (min-width: 769px) {
    .site-header {
        height: var(--header-h-pc);
    }

    .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .logo img {
        height: 70px;
    }

    /* PCではボタンを隠す */
    .menu-trigger {
        display: none;
    }

    /* ナビゲーションを横並びに直す */
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
    }

    .main-nav ul {
        display: flex;
        gap: 30px;
    }

    .main-nav a {
        padding: 10px 0;
        font-size: 1rem;
    }


/* ==========================================
   想いのセクション（PC）
   ========================================== */
    .about-section {
        padding: 120px 0;
        clip-path: ellipse(90% 100% at 50% 50%);
    }

    .about-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .about-image {
        margin-bottom: 60px;
    }

    .about-image img {
        width: 200px;
    }

    /* リンクと文章を横に並べる（縦書きなので右から並ぶ） */
    .about-flex-container {
        display: flex;
        flex-direction: row-reverse; /* 縦書きの読み方向（右→左）に合わせる */
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
    }

    /* 文章：PCで縦書きに */
    .about-text-content {
        writing-mode: vertical-rl; /* 縦書き・右から左へ行が流れる */
        height: 400px; /* 縦書きの場合は高さを指定すると綺麗に収まります */
        margin: 0;
        font-size: 1.1rem;
        line-height: 2.4; /* 縦書きは少し広めの行間が美しい */
    }

    .about-text-content p {
        margin-bottom: 0;
        margin-left: 40px; /* 縦書き時の段落間の余白は左側に */
    }

    /* 丸いリンク：PCでは文章の左横に */
    .about-link-circle {
        margin: 150px 0 0; /* 位置を少し下げて調整 */
        flex-shrink: 0;
    }


/* ==========================================
イントロセクション（PC）
========================================== */
    .intro-section {
        padding: 100px 0;
    }

    .intro-kuri-bg {
        top: 80px;
        height: 80%; /* PCではもっとダイナミックに */
    }

    /* PCでは横並びに */
    .intro-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    /* テキストエリア */
    .intro-text-block {
        flex: 1; /* 残りの幅を占める */
        padding-top: 40px;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .intro-text-content {
        font-size: 1rem;
        line-height: 2;
    }

    /* 画像エリア */
    .intro-image-block {
        flex: 0 0 450px; /* 画像の幅を固定 */
        text-align: right; /* 画像を右に寄せる */
    }

    .intro-main-image {
        max-width: 100%; /* PCではブロック幅いっぱい */
        border-radius: 60px 5px 60px 5px; /* ここを大きく角丸にする（画像の形状に合わせて調整） */
    }

    .intro-btn-wrapper {
        margin-top: 80px;
    }


/* ==========================================
   お届けまでの流れ（PC用スタイルのアップデート）
   ========================================== */
    .flow-section {
        padding: 100px 0;
    }

    .flow-inner {
        padding: 80px 60px; /* PCではより大きな余裕を */
        border-radius: 65px; /* PCでは角丸をさらに強調 */
        width: 100%;        /* max-widthまで広げる */
    }

    .flow-title {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }

    /* ★ボタンを横並びにする設定★ */
    .flow-btn-group {
        flex-direction: row;      /* 縦並びから横並びに変更 */
        justify-content: center;  /* 中央寄せ */
        gap: 30px;                /* ボタン同士の間隔 */
        width: 100%;
    }

    .flow-outline-btn {
        flex: 1;                  /* 2本のボタンを同じ幅にする */
        max-width: 320px;         /* 大きくなりすぎないよう制限 */
        padding: 18px 20px;
        font-size: 1.1rem;
    }

 /* ==========================================
   こだわりの氷感（PC）
 ========================================== */   
    .kodawari-section {
        padding: 100px 0;
    }

    .kodawari-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .kodawari-text-block {
        flex: 1;
    }

    .kodawari-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .kuri-icon {
        width: 45px;
    }

    .kodawari-text-content {
        font-size: 1.05rem;
    }

    .kodawari-image-block {
        flex: 0 0 450px;
    }

 /* ==========================================
   画像スライダー（PC)
 ========================================== */   
    .product-slider-title {
        font-size: 1.8rem;
    }


 /* ==========================================
   栗パウダー詳細（PC)
 ========================================== */       
    .powder-inner { padding: 0 40px; }

    .powder-intro-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .powder-intro-img, .powder-intro-text { flex: 1; }

    /* 製品・店舗の横並び */
    .powder-products-area, .powder-shop-area {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        margin-top: 80px;
    }

    .product-lead-circle, .shop-lead-circle { 
        margin: 0; flex: 0 0 160px; 
    }

    .product-cards { 
        grid-template-columns: repeat(2, 1fr); flex: 1; 
    }
    .shop-grid { 
        grid-template-columns: repeat(3, 1fr); flex: 1; 
    }

    .sale-info-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    /* 画像ブロック全体を少し細くする */
    .sale-imgs {
        flex: 0 0 380px; /* ★幅を固定してコンパクトに。数値はお好みで調整してください★ */
    }

    .main-sale-img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        display: block;
    }

    .sale-details {
        flex: 1; /* 残りのスペースをテキストに */
    }


 /* ==========================================
   イベント（PC)
 ========================================== */      
    .event-grid {
        grid-template-columns: 1fr 1fr; /* PCは2列 */
        gap: 30px;
    }
    
    .event-title {
        font-size: 2.2rem;
    }
 
 /* ==========================================
   問い合わせ（PC)
 ========================================== */  
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-body p {
        font-size: 1.05rem;
    }

 /* ==========================================
   想い（PC)
 ========================================== */  
    .concept-detail-inner {
        padding: 0 50px;
    }

    .concept-detail-flex {
        flex-direction: row; /* 横並びにする */
        align-items: center; /* 縦方向の中央揃え */
        gap: 80px; /* 写真と文章の間のゆとり */
    }

    /* PCでは写真エリアを少し小さく、文章エリアを大きく */
    .concept-photo-area, .concept-text-area {
        flex: 1;
    }

    .concept-photo-frame {
        aspect-ratio: auto; /* PCでは画像の自然な比率に */
        height: 480px; /* お好みの高さに固定 */
    }

    .concept-text-box p {
        font-size: 1.05rem;
    }










}