@charset "UTF-8";
/**
* スタイルシート統合
*/
html, body {
  height: 100%;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-image: url(../img/common/common-bg.jpg);
  background-size: contain;
}

a {
  color: inherit;
  text-decoration: none;
} /* underline除去 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 125px 0 64px;
}

@media (max-width: 768px) {
  .inner-container {
    padding: 50px 20px 64px;
  }
}
/* page title */
.page-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  text-align: center;
  color: #E48900;
  margin: 18px 0 8px;
  position: relative;
}

/* イエローライン */
.page-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: var(--accent-yellow);
  margin: 12px auto 0;
  border-radius: 2px;
}

/** テンプレファイル
* 一括指定、すべてのページに適用するスタイルなどはここに記述
* containerの指定などは全サイト共通にするのでこのファイルを使いまわす。
*
* ver.20240703
*/
html {
  font-size: 15px;
  color-scheme: transparent;
  scrollbar-gutter: stable;
}

.page-overlay {
  position: fixed; /* もしくは absolute でもOK（用途による） */
  top: 160px;
  left: 0;
  width: 100%;
  height: 100%; /* これだと1画面分 */
  background-image: url("../img/common/yasai.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  pointer-events: none; /* 背景の上に要素がクリックできるように */
  z-index: 9999;
}

@media (max-width: 600px) {
  .page-overlay {
    display: none;
  }
}
/* --------------------
       hero section
       -------------------- */
.hero-section {
  padding: 125px 0 64px; /* 上下の余白 */
}

/* スライダーを中央に配置 */
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Splide カスタム：スライドの枠（カプセル形） */
.splide__slide img {
  width: 100%;
  height: 420px; /* PC時の高さ */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  /* 楕円状（左右広がったカプセル） */
  border-radius: 180px/100px;
}

/* ドット（ページネーション）カスタム */
.splide__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  opacity: 1;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.splide__pagination__page.is-active {
  background: #F7EA00;
  transform: scale(1.15);
}

.splide__pagination {
  bottom: -2.5rem !important;
}

/* 矢印は不要なため非表示（必要なら表示可能） */
.splide__arrows {
  display: none;
}

/* スライダー周辺の余白（上の余白を通る野菜等の装飾がある場合に調整） */
.hero-decor-top {
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  pointer-events: none;
  z-index: 5;
}

/* --------------------
   レスポンシブ
   -------------------- */
@media (max-width: 900px) {
  .splide__slide img {
    height: 340px;
    border-radius: 130px/80px;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 20px 0 36px;
  }
  .splide__slide img {
    height: 210px;
    border-radius: 40px;
  } /* スマホは丸角に */
  .splide__pagination {
    margin-top: 10px;
    gap: 8px;
  }
  .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}
/* アクセシビリティ補助（フォーカス可視化） */
.splide__pagination__page:focus {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  outline-offset: 4px;
}

/* セクション共通 */
.about-section {
  padding: 60px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 32px;
  color: #E48900;
  font-weight: normal;
}

/* ブロックレイアウト */
.about-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 30px;
  border-radius: 10px;
}

.about-block.green {
  background-color: #B7E6A2;
}

.about-block.yellow {
  background-color: #FFE451;
}

.about-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.about-text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
}

.about-text .name {
  text-align: right;
}

/* 画像の幅調整 */
.about-image {
  flex: 1;
  min-width: 300px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .about-block {
    flex-direction: column;
    padding: 20px;
  }
  .about-block.reverse {
    flex-direction: column;
  }
  .about-image, .about-text {
    width: 100%;
  }
  .section-title {
    font-size: 1.4rem;
  }
}
.news-section {
  max-width: 1100px;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
}

.news-container {
  max-width: 1000px;
  margin: 0 auto;
}

.news-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  color: #E48900; /* オレンジ系 */
  margin-bottom: 20px;
  text-align: center;
}

.news-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.news-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex: 1;
}

.news-list li {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.news-date {
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

.news-text {
  color: #333;
  font-size: 14px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .news-content {
    flex-direction: column;
    align-items: center;
  }
  .news-title {
    text-align: center;
  }
  .news-list li {
    justify-content: center;
    text-align: center;
  }
}
/**
* スタイルシート統合
*/
/**
* Header用スタイルシート
*/
#header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 7.8rem;
  background-color: #FFF;
}

.header-logo img {
  margin: 2rem;
  width: 10.3rem;
  transition: inherit;
}

.main-nav ul {
  display: flex;
  align-items: start;
  height: 100%;
  gap: 1.6rem;
  list-style: none;
}

/* ===== ハンバーガー＆ドロワー（スマホ） ===== */
:root {
  --mint:#B7E6A2; /* ミント（枠・区切り） */
  --mint-line:#B7E6A2; /* ライン色（やや濃いミント） */
  --ink:#314455; /* 文字色 */
  --shadow:0 8px 24px rgba(0,0,0,.14);
}

/* PCでは非表示 */
@media (min-width: 769px) {
  .sp-header, .sp-drawer, .sp-drawer-backdrop {
    display: none !important;
  }
}
/* ヘッダー帯 */
@media (max-width: 768px) {
  #header {
    display: none;
  }
  .sp-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 12px;
    z-index: 10010;
    background-color: #FFF;
  }
  .sp-logo {
    width: 20%;
  }
  .sp-drawer {
    position: fixed; /* 既存定義のままでOK。念のため明示 */
  }
  .sp-drawer__close {
    position: absolute;
    top: max(12px, env(safe-area-inset-top) + 8px); /* ノッチ考慮 */
    right: 12px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mint, #C7E3DC);
    background: #fff;
    border-radius: 4px;
    z-index: 2; /* メニュー項目より前面 */
    cursor: pointer;
  }
  .sp-drawer__close::before,
  .sp-drawer__close::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 22px;
    height: 2px;
    background: var(--mint-line, #8BBEB4);
    transform-origin: 50% 50%;
  }
  .sp-drawer__close::before {
    transform: rotate(45deg);
  }
  .sp-drawer__close::after {
    transform: rotate(-45deg);
  }
  /* キーボード操作の視認性 */
  .sp-drawer__close:focus-visible {
    outline: 2px solid #8BBEB4;
    outline-offset: 2px;
  }
  /* ハンバーガーボタン（添付画像の見た目） */
  .sp-hamburger {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid var(--mint);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  .sp-hamburger .bars,
  .sp-hamburger .bars::before,
  .sp-hamburger .bars::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: var(--mint-line);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .sp-hamburger .bars {
    position: relative;
  }
  .sp-hamburger .bars::before {
    position: absolute;
    top: -7px;
    left: 0;
  }
  .sp-hamburger .bars::after {
    position: absolute;
    top: 7px;
    left: 0;
  }
  /* 開いている時は × 表示 */
  .sp-hamburger[aria-expanded=true] .bars {
    background: transparent;
  }
  .sp-hamburger[aria-expanded=true] .bars::before {
    transform: translateY(7px) rotate(45deg);
  }
  .sp-hamburger[aria-expanded=true] .bars::after {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* ドロワー＆背景 */
  .sp-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 10005;
  }
  .sp-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(82vw, 320px);
    background: #fff;
    z-index: 10020;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    /* 初期は右に隠す */
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  .sp-drawer[open] {
    transform: translateX(0);
  } /* JSで付与 */
  .sp-drawer[hidden] {
    display: block;
  } /* hiddenでもアニメ維持のため */
  .sp-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px 24px;
  }
  .sp-menu li {
    border-bottom: 1px solid var(--mint);
  }
  .sp-menu a {
    display: block;
    padding: 16px 4px;
    text-decoration: none;
    color: var(--ink);
    font-size: 16px;
  }
  .sp-menu a:active {
    background: #f6fbfa;
  }
  /* 本文スクロール固定用 */
  html.menu-open, body.menu-open {
    overflow: hidden;
  }
}
/**
* Footer用スタイルシート
*/
/* --- SVG波が見えない問題を解消するためのスタイル --- */
.footer-wave {
  width: 100%;
  line-height: 0;
  display: block;
  margin-bottom: 0;
  /* SVGを少し上にはみ出させたい場合は負マージンで調整（不要なら 0 に） */
  margin-top: -2px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px; /* 高さはデザインに合わせて調整 */
}

/* フッター本体 */
.site-footer {
  color: #0b2a16;
  margin-top: 50px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

/* 内部コンテンツ */
.footer-inner {
  background: #AEE08D; /* path と同色にするのが自然 */
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 0 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ナビ */
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #07320f;
  text-decoration: none;
  padding: 6px 2px;
  font-size: 14px;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .footer-wave svg {
    height: 60px;
  }
  .footer-inner {
    padding: 18px 12px;
  }
  .footer-nav {
    gap: 12px;
  }
}
/* box wrapper */
.card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.04);
  margin-top: 28px;
}

/* definition list style (2-column) */
.company-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 28px;
  align-items: start;
}

.company-dl dt {
  font-weight: 700;
  color: #333;
  font-size: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.company-dl dd {
  margin: 0;
  padding: 16px 0;
  color: #444;
  font-size: 14px;
  border-top: 1px solid var(--line);
  line-height: 1.9;
}

/* 最初の境界線を消す（見た目） */
.company-dl dt:first-child,
.company-dl dd:first-child {
  border-top: none;
  padding-top: 10px;
}

/* 企業情報の中で複数行説明など */
.company-dl dd p {
  margin: 0 0 8px 0;
}

/* フッター簡易 */
.site-footer {
  text-align: center;
  color: #777;
  font-size: 13px;
  margin-top: 40px;
}

/* レスポンシブ: モバイルではラベルを上に、値を下に（縦積み） */
@media (max-width: 768px) {
  .company-dl {
    grid-template-columns: 1fr;
  }
  .company-dl dt {
    padding-top: 12px;
  }
  .company-dl dd {
    padding-bottom: 12px;
  }
  .container {
    padding: 28px 16px;
  }
}
/* 店舗ブロック */
.shop {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}

.shop + .shop {
  margin-top: 12px;
}

.shop__thumb {
  width: 320px;
  flex: 0 0 320px;
}

.shop__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.shop__body {
  flex: 1;
}

.shop__title {
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 18px;
  color: #111;
}

.shop__desc {
  margin: 0 0 12px;
  color: #333;
  line-height: 1.8;
  font-size: 14px;
}

.shop__addr {
  color: #666;
  margin-bottom: 14px;
}

.btn-hotpepper {
  display: inline-block;
  background: #E48900;
  color: white;
  padding: 12px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06);
}

.btn-hotpepper:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* 横長の小画像ギャラリー（自動スクロール） */
.gallery-wrap {
  margin: 32px 0;
  overflow: hidden;
  background: transparent;
  padding: 12px 0;
}

.gallery-track {
  display: flex;
  gap: 12px;
  align-items: center;
  /* 要素を横に並べ、2回繰り返してシームレスにスクロール */
}

.gallery-track .item {
  flex: 0 0 auto;
  width: 170px;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-track .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 680px) {
  .gallery-track .item {
    width: 100px important;
  }
}
/* シームレスな自動スクロール（左右）:
   コンテンツを2回並べ、幅の半分（=1回分）を左へ移動させる */
.auto-scroll {
  --duration: 20s; /* スクロール速度（短くすると速くなる） */
  display: block;
  width: 100%;
  will-change: transform;
  animation: scroll-left var(--duration) linear infinite;
}

/* 右から左へ */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* 2回分のうち半分（＝1回分）を移動 */
}
/* レスポンシブ */
@media (max-width: 900px) {
  .shop {
    gap: 18px;
  }
  .shop__thumb {
    width: 240px;
    flex-basis: 240px;
  }
}
@media (max-width: 680px) {
  .shop {
    flex-direction: column;
  }
  .shop__thumb {
    width: 100%;
    flex-basis: auto;
  }
  .shop__thumb img {
    border-radius: 8px;
  }
  .shop__body {
    padding-top: 12px;
  }
  .gallery-track .item {
    width: 84px;
    height: 64px;
  }
  .auto-scroll {
    animation-duration: 14s;
  } /* モバイルは速め */
}
/* スマホサイズ（768px以下）のとき */
@media screen and (max-width: 768px) {
  .tabelog-area {
    text-align: center; /* 中央寄せ */
  }
  .tabelog-area img,
  .tabelog-area iframe,
  .tabelog-area a {
    display: inline-block; /* センター寄せが有効になる */
    margin: 0 auto;
  }
}
/* 上段グリッド */
.miryoku-grid {
  display: flex;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

/* 画像共通 */
.miryoku-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.06);
}

/* 左は上部に揃える（デフォルト） */
.miryoku-img--left {
  align-self: start;
}

/* 右は下寄せにする（見た目の通り） */
.miryoku-img--right {
  align-self: end;
}

/* 中央本文 */
.miryoku-body {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
}

.miryoku-list {
  margin: 0 0 12px 0;
  padding-left: 18px;
}

.miryoku-list li {
  margin-bottom: 14px;
}

.miryoku-list strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

/* 下段 */
.miryoku-bottom {
  display: flex;
  gap: 24px;
  align-items: start;
  margin-top: 10px;
}

.miryoku-bottom-img img {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.06);
}

/* スマホ：縦積みに切替 */
@media (max-width: 900px) {
  .miryoku-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .miryoku-img--right {
    align-self: stretch;
  } /* 右画像を上へ移動 */
  .miryoku-bottom {
    grid-template-columns: 1fr;
  }
  .miryoku-bottom {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 18px;
  }
  .miryoku-title {
    font-size: 20px;
  }
}
/* 微調整（狭め端末） */
@media (max-width: 480px) {
  .miryoku-main {
    padding: 20px 12px;
  }
  .miryoku-title::after {
    width: 80px;
  }
  .miryoku-grid {
    gap: 14px;
    display: flex;
    flex-wrap: wrap;
  }
}
/* grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 20px;
  margin-top: 28px;
  align-items: start;
}

.benefit-card {
  background: #FFF;
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 3px solid #F7EA00;
}

/* アイコン（左） */
.benefit-card::before {
  content: "◆"; /* ダイヤ形の記号 */
  font-size: 14px;
  color: #333;
  flex: 0 0 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.benefit-body {
  font-size: 14px;
  line-height: 1.55;
  color: #222;
  word-break: break-word;
}

/* 小さめの注釈（オプション） */
.benefit-note {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

/* ホバー時の挙動（視認性向上）    */
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(30, 30, 30, 0.06);
}

/* レスポンシブ調整 */
@media (max-width: 480px) {
  .benefits-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .benefit-card {
    padding: 12px;
    min-height: 64px;
  }
}/*# sourceMappingURL=style.css.map */