@charset "utf-8";



/* 基本 */
html{
  font-size: 100%;
  scroll-behavior: smooth;
}


body{
  font-family: 'Titillium Web', 'Noto Sans JP', sans-serif !important;
  /* フォントを滑らかに表示するための設定（推奨） */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  background-color: #eeeddf;
  overflow-x: hidden;
}
img{
  max-width: 100%;
}

a{
  text-decoration: none;
  display: inline-block;
  position: relative;
}

li{
  list-style: none;
}

* {
  box-sizing: border-box;
}


/* ヘッダー */

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  padding: 1em;
  background-color: #3e2b2bdb;
  position: sticky;
  z-index: 9999;
  top: 0;
}

.nav {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  /* background-color: #4d353585; */
}
.nav  a{
  color: #fff;
  font-weight: normal;
  filter: drop-shadow(1px 1px 2px #121212);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.nav a::after{
  background-color: #ffffff; /* 下線の色 */
  bottom: 0; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 1px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
  /* z-index: 20; */
}
.nav a:hover::after{
transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.logo img{
  width: 60%;
  height: 100%;
  align-items: center;
}
.nav > li {
  margin: 0 1rem;
  /* overflow: hidden; */
}

.nav-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#nav-toggle {
  display: none;
}
.nav-button,
.nav-button::before,
.nav-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
.nav-button::before {
  content: '';
  margin-top: -8px;
}
.nav-button::after {
  content: '';
  margin-top: 8px;
}
#nav-toggle:checked + .nav-button-container .nav-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#nav-toggle:checked + .nav-button-container .nav-button {
  background: rgba(255, 255, 255, 0);
}
#nav-toggle:checked + .nav-button-container .nav-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
#header{
  width: 100%;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
}

#header{
  /* position: absolute; */
  /* top: 0; */
  height: 100vh;
  background-image: url(img/mainvisual.jpg);
  background-size: cover;
  /* width: 100%;
  height: auto; */
  background-position: center top;
  background-repeat: no-repeat;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%),
              url(img/mainvisual.jpg) center/cover no-repeat !important;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#site-title h1{
  /* color: #ffffffcc;
  text-shadow: 0 0 0.2em rgb(87, 87, 87);
  position: absolute;
  bottom: 0;
  right: 0; */
  color: #ffffffcc;
  text-shadow: 0 0 0.2em rgb(87, 87, 87);
  position: absolute;
  bottom: 40px; /* 少し上に調整して余白を作る */
  right: 40px;  /* 右端からの余白 */
  margin: 0;
  line-height: 1.6;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
}

/* ニュース */
#news {
    max-width: 1000px; /* 全体の幅を絞って洗練させる */
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    border-bottom: none; /* 下線を消す */
}

/* タイトル部分 */
#news-innerbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #333; /* タイトルの下に線を引く */
    padding-bottom: 15px;
}

#news-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.2;
}

.view-all {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

/* リスト部分 */
.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: 0.3s;
    color: #333;
}

.news-item:hover {
    padding-left: 10px; /* ホバー時に少し右に動かす */
    background-color: rgba(255, 255, 255, 0.5);
}

/* 日付 */
.news-date {
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.9rem;
    min-width: 120px;
    color: #888;
}

/* カテゴリー（バッジ風） */
.news-category {
    font-size: 0.7rem;
    border: 1px solid #333;
    padding: 2px 10px;
    margin-right: 30px;
    min-width: 70px;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ニュース本文 */
.news-text {
    font-size: 1rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* 1行に収める */
}
/* ストーリー */
/* #story{ */
  /* display: flex;
  padding: 0 3.5rem 3.5rem 3.5rem;

}
.story-box img{
  width: 100%;
  height: auto;
  position: center left;
}
.story-box:nth-child(2){
  margin-left: 20px;
}
.story-box{
  width: 50%;
}
.story-box h2{
  margin-bottom: 4rem;
} */
.sub-title {
  display: block;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #888;
  margin-bottom: 1rem;
}
#story {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 150px auto;
    padding: 0 40px;
}

.story-image {
    flex: 1.2;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px; /* ほぼ直角に近い方が洗練されて見えます */
}

.story-text-content {
    flex: 1;
}

.story-text-content h2 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    /* font-weight: 500; */
}

.story-text-content p {
    font-size: 0.95rem;
    line-height: 2;
    color: #444;
    margin-bottom: 1.5rem;
}

/* --- MENU セクション --- */
#menu-section {
    margin: 150px 0;
}

.menu-content {
    display: flex;
    flex-direction: row-reverse; /* 画像を右、テキストを左に */
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 0 40px;
}

.menu-text-content {
    flex: 1;
}

.menu-image {
    flex: 1.2;
}

.menu-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.view-all-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 10px 0;
    font-weight: bold;
    border-bottom: 1px solid #333;
    color: #333;
    transition: 0.3s;
}

.view-all-link:hover {
    opacity: 0.6;
    padding-left: 10px;
}

/* menu */
.slide-container {
 width: 100vw;
 margin: 0 calc(50% - 50vw);
 /* margin: 50px auto; */
 display: flex;
 align-items: center;
 overflow: hidden;
 padding: 1rem 0;
 /* border-bottom: solid;
 border-width: thin; */
}
.slide-wrapper {
 display: flex;
 animation: slide-flow 20s infinite linear 1s both;
}
.slide{
 width: 300px;
 object-fit:cover;
 border: 1px solid #ddd;
}
@keyframes slide-flow {
 0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}

.menu{
  display: flex;
  padding: 3.5rem  3.5rem 0 3.5rem;

}
.menu-box{
  width: 50%;
}
.menu-box h2{
  margin-bottom: 4rem;
}
.menu-box img{
  width: 100%;
  height: auto;
}
.menu-box:nth-child(2){
  margin-left: 20px;
}
#view{
  width: 17%;
  border: solid;
  border-width: thin;
  padding: 12px; margin: 20px;
  margin-left: 0;
  white-space: nowrap;
  background-color: #5a45351c;
  color: rgb(0, 0, 57);
}

/* product */
#product {
    max-width: 1100px;
    margin: 150px auto;
    padding: 0 40px;
}

.section-header {
    margin-bottom: 60px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.product-grid {
    display: flex;
    gap: 40px;
}

.product-item {
    flex: 1;
}

.product-image-link img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-image-link img:hover {
    opacity: 0.8;
}

.product-detail h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    font-weight: 500;
}

.product-detail p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

#product .view-all-link {
    margin-top: 40px; /* 商品グリッドとの間にゆとりを持たせる */
    display: inline-block;
}
/* osechi */

#osechi-section {
    background-color: #fff; /* ここだけ背景を白にして特別感を出すのもアリです */
    padding: 120px 0;
    margin: 100px 0;
}

.osechi-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 画像切り替えの演出 */
.osechi-image-box {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.osechi-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.6s ease; /* ふわっと切り替える */
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* 最初は隠しておく */
}

/* マウスを乗せた時（スマホではタップ時）に中身を表示 */
.osechi-image-box:hover .img-hover {
    opacity: 1;
}

.image-caption {
    font-size: 0.7rem;
    color: #999;
    margin-top: 10px;
}

/* テキスト部分 */
.osechi-text-content {
    flex: 1;
}

.osechi-text-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.catchphrase {
    font-size: 1.1rem;
    font-weight: bold;
    color: #b08d57; /* 落ち着いたゴールド系でアクセント */
    margin-bottom: 20px;
    line-height: 1.6;
}

.description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.osechi-details {
    padding: 20px;
    background-color: #f9f9f7;
    margin-bottom: 30px;
}

.osechi-details p {
    font-size: 0.85rem;
    margin: 5px 0;
}

#access {
    max-width: 1100px;
    margin: 150px auto;
    padding: 0 40px;
}

.access-container {
    display: flex;
    gap: 60px;
}

.map-area {
    flex: 1.2;
}

.map-area iframe {
    width: 100%;
    height: 450px;
    filter: grayscale(1); /* 地図をモノクロにすると更に洗練されます */
}

.info-area {
    flex: 1;
}

.shop-info {
    margin-bottom: 40px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.shop-info .tel {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* 営業時間表の刷新 */
.opening-table {
    width: 100%;
    border-collapse: collapse;
}

.opening-table th, .opening-table td {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    font-size: 0.85rem;
}

.opening-table th {
    width: 130px;
    font-weight: bold;
    vertical-align: top;
    background: none; /* 背景色を消す */
    color: #333;
}

.opening-table th span {
    font-weight: normal;
    color: #888;
}

.opening-table td {
    color: #555;
    background: none; /* 背景色を消す */
}

.opening-table tr.closed th, .opening-table tr.closed td {
    color: #b08d57; /* 定休日のアクセントカラー */
}

/* フッター */
footer {
    background-color: #3e2b2b; /* ヘッダーと統一 */
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-logo {
    margin-bottom: 30px; /* 住所との間隔 */
}
/* 左側エリア */
.footer-logo a {
    display: inline-block;
    padding: 0;
    width: 200px;
}
.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.footer-info {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7); /* 少し透明度を下げて上品に */
    margin-bottom: 25px;
}

.footer-info .tel {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 10px;
}

.footer-sns {
    display: flex;
    gap: 20px;
}

.footer-sns i {
    font-size: 1.5rem;
    color: #fff;
    transition: 0.3s;
}

.footer-sns i:hover {
    opacity: 0.6;
}

/* 右側エリア：ナビゲーション */
.footer-nav-wrapper {
    display: flex;
    gap: 60px;
}

.footer-nav-list {
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 15px;
}

.footer-nav-list a {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: 0.3s;
}

.footer-nav-list a:hover {
    color: #b08d57; /* アクセントカラー */
}

/* コピーライト */
.footer-bottom {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: #888;
}


/* storyページ */
#page-header {
    height: 60vh;
    display: flex;           /* Flexboxを使用 */
    align-items: center;     /* 垂直方向中央 */
    justify-content: center; /* 水平方向中央 */
    position: relative;
    overflow: hidden;
}
#page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;     /* 親要素の背景画像を引き継ぐ */
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.8); /* ぼかしと明るさ調整 */
    transform: scale(1.1);   /* 端の白い隙間を消すために少し拡大 */
    z-index: 1;
}
#menu-site-title {
    position: relative;
    z-index: 2;             /* ぼかし背景より前面に表示 */
    /* absoluteによる右下固定の影響を完全に打ち消す */
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0;
}
#story-site-title {
    position: relative;
    z-index: 2;   /* ぼかし背景より前面に */
    bottom: auto; /* 既存の 40px を解除 */
    right: auto;
}
.page-title {
    color: #fff;
    text-align: center;
    font-size: 3rem;
    letter-spacing: 0.2em;
    margin: 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* 文字をより際立たせる */
    animation: fadeInUp 1.5s ease-out forwards;
}

.page-title span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-top: 10px;
}

/* コンテンツ幅の制限 */
.content-inner {
    max-width: 800px; /* 読み物として最適な幅 */
    margin: 0 auto;
    padding: 60px 20px;
    padding-bottom: 0;
}

.story-detail {
    margin-bottom: 120px;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 2.2;
    color: #444;
    margin-bottom: 2rem;
}

#company-info {
    background-color: rgba(255, 255, 255, 0.4); /* 会社概要エリアを少し明るく */
    padding: 100px 0;
    padding-top: 30px;
}


.menu-sub-section {
    margin-top: 40px;
}

.menu-sub-section h3 {
    font-size: 1.2rem;
    border-bottom: 2px solid #3e2b2b;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.detailed-list {
    padding: 0;
    margin-bottom: 40px;
}

.detailed-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.detailed-list li span {
    font-weight: bold;
    min-width: 80px;
    color: #b08d57; /* アクセントカラー */
    font-size: 0.8rem;
    border: 1px solid #b08d57;
    padding: 2px 6px;
    text-align: center;
    margin-right: 15px;
}

.price-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    margin-top: 20px;
}

.price-row {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.price-row span {
    font-weight: bold;
    margin-right: 20px;
    display: inline-block;
    min-width: 60px;
}



/* 生産者ページ */
.producer-page #producer-site-title {
    position: relative;
    z-index: 2;
    bottom: auto !important;
    right: auto !important;
    margin: 0;
}

#producer-list-section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
    margin-bottom: 60px;
}

/* リスト全体のコンテナ */
.producer-list-container {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #d1cdb7;
}

/* 各生産者項目のスタイル */
.producer-item {
    padding: 40px 0;
    border-bottom: 1px solid #d1cdb7;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.producer-meta {
    flex: 0 0 280px; /* 左側の固定幅 */
}

.producer-meta .area {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.producer-meta h3 {
    font-size: 1.4rem;
    color: #3e2b2b;
    margin: 5px 0;
}

.producer-meta .category {
    display: inline-block;
    font-size: 0.85rem;
    color: #6b4e3d;
    background: #eeeddf;
    padding: 2px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 8px;
}

.producer-item .description {
    flex: 1;
    line-height: 1.8;
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}


/* news */
.news-page #news-site-title {
    position: relative;
    z-index: 2;
    bottom: auto !important;
    right: auto !important;
    margin: 0;
}

#instagram-feed {
    padding: 80px 0;
}

.instagram-container {
    max-width: 1000px;
    margin: 40px auto;
    /* min-height: 400px; */
    display: flex;
    justify-content: center; /
}

/* 埋め込みができるまでのダミー枠 */
.insta-placeholder {
    width: 100%;
    /* height: 600px; */
    background: #fdfdfd;
    border: 1px solid #d1cdb7;
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* フォローボタン */
.insta-follow-button {
    background: #3e2b2b;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 40px;
}

.insta-follow-button:hover {
    background: #6b4e3d;
    transform: translateY(-3px);
}
#youtube-news {
    padding: 60px 0;
}

.video-container {
    max-width: 800px; /* 動画の最大幅 */
    margin: 40px auto;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 の比率を維持 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/* スマホ向けの設定↓（幅490px以下） */


@media  (max-width: 768px){

body{
  width: 100%;
}

/* ヘッダー */
.nav-button-container {
    display: flex;
  }
#header {
    /* 下から上へ黒いグラデーションを敷く（文字を読みやすくするため） */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%),
                url(img/mainvisual.jpg) center/cover !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* 下側に配置 */
    padding-bottom: 60px; /* 下からの距離 */
  }

  #site-title h1 {
    /* position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3); */
    position: static; /* absoluteを解除してflexboxで制御 */
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.6;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin: 0;
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0; /* 最初は透明 */
  }

.header{
  height: 50px;
  padding: 1em;
  position: fixed; /* stickyからfixedへ：スマホでは固定が安定します */
  top: 0;
  width: 100%;
}
.logo img {
  max-height: 30px; 
  width: auto;
}
.nav {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 0;               /* 高さを0に */
    visibility: hidden;      /* 完全に隠す（これで文字漏れを防ぐ） */
    overflow: hidden;        /* はみ出た文字をカット */
    flex-direction: column;
    background-color: rgba(62, 43, 43, 0.98); 
    transition: all 0.4s ease; /* transitionをallに */
    z-index: 9998;
    padding: 0;
  }
  #nav-toggle:checked ~ .nav {
    height: calc(100vh - 50px); /* 画面いっぱいに広げる */
    visibility: visible;
    padding: 2rem 0;
  }
  .nav > li {
    opacity: 0; /* 最初は透明 */
    transform: translateY(10px);
    transition: 0.3s;
    /* width: 100%; */
    width: 80%; /* 幅を少し狭める */
    margin: 0 auto; /* 中央寄せ */
    background-color: transparent; /* 背景色を親に任せる */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; 
    text-align: center; /* 文字を中央に */ 
   }
   .nav > li:last-child {
    border-bottom: none !important;
  }

  /* メニューが開いたとき、項目をふわっと表示 */
  #nav-toggle:checked ~ .nav li {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    padding: 1.2rem 0; /* タップしやすい広さに */
  }
  .nav a::after {
    display: none !important;
  }

  /* リンクの文字サイズを大きく */
  .nav a {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
/* ニュース */
#news {
    margin: 60px auto;
}

.news-item {
    flex-direction: column;
    align-items: flex-start; /* 左寄せ */
    padding: 15px 0;
}

.news-date {
    margin-bottom: 5px;
}

.news-category {
    margin-bottom: 10px;
}

.news-text {
    white-space: normal; /* スマホでは2行以上を許容 */
    line-height: 1.5;
}

/* ストーリー */
/* メニュー */
#story, .menu-content {
    flex-direction: column; /* 縦並び */
    gap: 40px;
    margin: 80px auto;
    padding: 0 25px;
}

.story-image img, .menu-image img {
    height: 300px;
}

.story-text-content h2, .menu-text-content h2 {
    font-size: 1.5rem;
}
/* 販売商品 */
/* アクセス */
#product, #access {
        margin: 80px auto;
        padding: 0 25px;
    }

    .product-grid, .access-container {
        flex-direction: column;
        gap: 40px;
    }

    .product-image-link img {
        height: 250px;
    }

    .map-area iframe {
        height: 300px;
    }

    .opening-table th {
        width: 100px;
    }
#product .view-all-link {
        margin-top: 20px;
        display: block;
        text-align: left; /* スマホでも左寄せを維持、またはcenterでお好みで */
    }
/* おせち */
#osechi-section {
        padding: 60px 0;
    }

    .osechi-container {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 0 25px;
    }

    .osechi-text-content h2 {
        font-size: 1.8rem;
    }
/* フッター */
footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 25px;
    }

    .footer-nav-wrapper {
        gap: 40px;
    }
.footer-logo {
        text-align: center; /* スマホでは中央寄せ */
        margin-bottom: 20px;
    }
    
    .footer-logo a {
        width: 160px; /* スマホでは少し小さく */
    }

.detailed-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .detailed-list li span {
        margin-bottom: 8px;
    }

.producer-item {
        flex-direction: column;
        gap: 15px;
        padding: 30px 15px;
    }
    
    .producer-meta {
        flex: none;
        width: 100%;
    }

    .producer-meta h3 {
        font-size: 1.2rem;
    }



}