@charset "UTF-8";
/* ============================================================================
   Dolium（ドリウム）ランディングページ  style.css
   昭和貿易株式会社
   ----------------------------------------------------------------------------
   ■ 目次
       0. リセット
       1. 変数・ベース
       2. 共通部品（btn / section-heading）
       3. hero
       4. lineup
       5. features
       6. cta
       7. usecase
       8. voice
       9. faq
      10. closing
      11. contact
      12. site-footer
      13. レスポンシブ（タブレット / スマホ）
   ============================================================================ */
/* ===== 0. リセット ======================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body, h1, h2, h3, p, ul, li, figure, table, th, td, form {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: inherit;
}
table {
  border-collapse: collapse;
}
/* ===== 1. 変数・ベース ==================================================== */ :root {
  /* カラー */
  --color-accent: #c30d23; /* 鮮やかな赤（ボタン・番号・CTA背景） */
  --color-accent-dark: #7a1119; /* 深い赤（表ヘッダー・帯） */
  --color-dark: #111111; /* 黒系セクション */
  --color-black: #000000;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-gray-bg: #ededed; /* 表ラベル・FAQ・フォーム下地 */
  --color-gray-placeholder: #e6e6e6;
  --color-border: #dcdcdc;
  --color-eyebrow: #8b1a1a; /* 英語ラベル */
  --color-gold: #f1d188; /* 原産地エンブレムのゴールド */
  /* フォント */
  --font-gothic: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  /* レイアウト */
  --content-width: 1100px;
  --section-padding: 90px;
}
body {
  font-family: var(--font-gothic);
  color: var(--color-text);
  line-height: 1.8;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* 中央寄せの共通コンテナ */
.hero__inner, .lineup__inner, .features__inner, .cta__inner, .usecase__inner, .voice__inner, .faq__inner, .contact__inner, .site-footer__inner {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 24px;
}
/* ===== 2. 共通部品 ======================================================== */
/* --- ボタン --- */
.btn {
  display: inline-block;
  font-family: var(--font-gothic);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity .25s, background-color .25s, color .25s;
}
.btn:hover {
  opacity: .85;
}
/* ヒーローのCTA（白枠＋半透明） */
.btn--sample {
  padding: 18px 56px;
  color: var(--color-white);
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .8);
  font-size: 17px;
  letter-spacing: .04em;
}
.btn--sample:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}
/* CTAバンドの白ボタン */
.btn--white {
  padding: 20px 40px;
  color: var(--color-accent);
  background: var(--color-white);
  font-size: 17px;
}
/* フォーム送信ボタン */
.btn--submit {
  width: 320px;
  max-width: 100%;
  padding: 20px;
  color: var(--color-white);
  background: var(--color-accent);
  border: none;
  font-size: 19px;
  letter-spacing: .1em;
}
/* --- セクション見出し（英語ラベル＋日本語見出し） --- */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading__en {
  display: block;
  color: var(--color-eyebrow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .28em;
  margin-bottom: 12px;
}
.section-heading__ja {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: .08em;
  color: var(--color-dark);
}
/* 暗い背景用（文字を白に） */
.section-heading--light .section-heading__ja {
  color: var(--color-white);
}
/* ===== 3. hero =========================================================== */
.hero {
  position: relative;
  overflow: hidden; /* Ken Burnsの拡大時に背景がはみ出さないように */
  color: var(--color-white);
  background-color: #1a0408;
}
/* 背景画像レイヤー（フェードイン＋ゆっくり拡大するKen Burns演出用に独立させる） */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("images/mv-keg.png") no-repeat center center;
  background-size: cover;
  transform-origin: 60% 45%;
  will-change: transform, opacity;
  animation:
    heroBgIn 2s ease-out both, heroReveal 9s cubic-bezier(.16, .73, .26, 1) both; /* 一度だけ寄って静止（往復なし） */
}
/* 左側の文字を読みやすくする暗いグラデーション */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; /* 背景画像レイヤーより前面・コンテンツより背面 */
  background: linear-gradient(90deg, rgba(10, 2, 4, .75) 0%, rgba(10, 2, 4, .35) 45%, rgba(10, 2, 4, 0) 75%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding-top: 48px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__logo {
  width: 190px;
  margin-bottom: 64px;
}
/* キャッチ帯（カンプの赤グラデ帯をCSSで再現） */
.hero__catch {
  display: inline-block;
  padding: 8px 26px 8px 16px;
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(90deg, var(--color-accent-dark) 0%, rgba(122, 17, 25, 0) 100%);
}
/* キャッチ内の改行はスマホでのみ有効化（PCは1行表示） */
.hero__catch-br {
  display: none;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.45;
  letter-spacing: .04em;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
.hero__sub {
  margin-bottom: 40px;
}
.hero__sub-main {
  font-size: 22px;
  font-weight: 700;
}
.hero__sub-text {
  font-size: 16px;
}
.hero__note {
  font-size: 14px;
  margin-top: 4px;
}
/* 原産地エンブレム（Made in Belgium）：ヒーロー右上に上品なゴールドの紋章として配置。
   背景と同じく一度だけふわっと表示。 */
.hero__origin {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  animation: heroBgIn 2.4s ease-out both;
}
.hero__flag {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .55));
}
.hero__origin-text {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--color-gold);
  white-space: nowrap;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .9), 0 0 2px rgba(0, 0, 0, .8);
}
/* 背景画像：ロード時のフェードイン */
@keyframes heroBgIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 背景画像：読み込み時に一度だけゆっくり寄って静止するシネマティックな寄り
   （往復ループはしない＝しつこくならない） */
@keyframes heroReveal {
  from {
    transform: scale(1.16) translate(2.2%, 1.4%);
  }
  to {
    transform: scale(1.04) translate(0, 0);
  }
}
/* スマホ用ヒーロー演出のキーフレーム（適用はレスポンシブ内のみ） */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroScrollText {
  0%, 100% {
    transform: translateX(-50%);
    opacity: .55;
  }
  50% {
    transform: translateX(-50%);
    opacity: 1;
  }
}
@keyframes heroChevron {
  0%, 100% {
    transform: translate(-50%, 0) rotate(45deg);
    opacity: .6;
  }
  50% {
    transform: translate(-50%, 6px) rotate(45deg);
    opacity: 1;
  }
}
/* モーション軽減設定の利用者には演出を無効化
   （背景のフェードイン＋Ken Burnsは主役の演出のため対象外＝常に再生） */
@media (prefers-reduced-motion: reduce) {
  .hero__logo, .hero__catch, .hero__title, .hero__sub, .hero__cta, .hero::after, .hero__inner::after {
    animation: none !important;
  }
}
/* ===== 4. lineup ========================================================= */
.lineup {
  padding-block: var(--section-padding);
}
.lineup__body {
  display: flex;
  align-items: flex-end; /* 商品写真と表を下揃え */
  gap: 48px;
}
.lineup__image {
  flex: 0 0 38%;
  text-align: center;
}
.lineup__table-wrap {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
.lineup__table {
  width: 100%;
  font-size: 15px;
}
.lineup__scroll-hint {
  display: none;
} /* PCでは非表示（スマホのみ表示） */
.lineup__table th, .lineup__table td {
  border: 1px solid var(--color-border);
  padding: 18px 22px;
  vertical-align: middle;
}
.lineup__table-corner {
  border: none;
  background: transparent;
}
.lineup__table-product {
  background: var(--color-accent-dark);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.lineup__table-label {
  width: 24%;
  background: var(--color-gray-bg);
  font-weight: 700;
  text-align: left;
  color: var(--color-dark);
}
.lineup__table td {
  background: var(--color-white);
}
/* ===== 5. features ======================================================= */
/* 背景写真（半透明のケグ画像）はセクション最上部・左寄せで配置し、
   下方向へ自然にフェードアウト。土台は黒。※カンプの配置に合わせる */
.features {
  position: relative;
  padding-block: var(--section-padding);
  background-color: #0a0606;
  background-image: url("images/features-bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 460px auto;
}
.features__inner {
  position: relative;
  z-index: 1;
}
.features__lead {
  text-align: center;
  color: var(--color-white);
  margin-bottom: 56px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.features__card {
  position: relative;
  background: var(--color-white);
  padding: 40px 40px 44px;
  display: flex;
  column-gap: 22px;
  overflow: hidden;
}
/* 右下の赤い三角アクセント（カンプ通り：直角が右下に来る直角三角形） */
.features__card::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  background: var(--color-accent);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
/* 左レール：番号＋アイコンを縦に配置。アイコンは番号からの固定距離に
   置くため、番号サイズが一定なら全カードでアイコン位置が必ず揃う
   （見出しの行数に左右されない）。 */
.features__rail {
  flex: 0 0 110px;
  display: flex;
  flex-direction: column;
}
.features__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: var(--color-accent);
}
.features__icon {
  width: 110px;
  height: auto;
  margin-top: 32px;
}
/* 右側：見出し→小見出し→本文を詰めて自然に流す */
.features__content {
  flex: 1;
  /* 大きな番号の視覚的中心に見出し1行目を合わせる微調整 */
  padding-top: 9px;
}
.features__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
}
.features__subtitle {
  margin-top: 14px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
}
.features__text {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.85;
}
/* 見出し内の小さめ注記（※特許 / ※12.5Lサイズ など） */
.features__title-note {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
/* 特徴カードの補足注記（※UV遮光性能 など） */
.features__note {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
  color: var(--color-text);
  opacity: .75;
}
/* ===== 6. cta ============================================================ */
/* 内容幅に収めた「赤いバナー」。背景帯色は設置場所に合わせて修飾子で切替
   （--dark＝黒地 / --light＝グレー地）。ケグはバナー上端からはみ出す。   */
.cta {
  padding-block: 66px;
}
.cta--dark {
  background: var(--color-black);
}
.cta--light {
  background: var(--color-gray-bg);
}
.cta__banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 40px 56px 40px 270px;
  background: linear-gradient(100deg, #7a1119 0%, var(--color-accent) 55%, #b00c1d 100%);
}
/* ケグ画像はバナー左でboxの上端を超えて立ち上がる */
.cta__image {
  position: absolute;
  left: 36px;
  bottom: 0;
  width: 210px;
}
.cta__body {
  flex: 1 1 auto;
  color: var(--color-white);
}
.cta__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap; /* PCでは1行に収める */
}
.cta__text {
  font-size: 16px;
}
.cta__btn {
  flex: 0 0 auto;
  position: relative;
  padding-right: 58px;
}
/* ボタン右の「>」アイコン */
.cta__btn::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  transform: translateY(-50%) rotate(45deg);
}
/* ===== 7. usecase ======================================================== */
.usecase {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding); /* 写真の下にも余白 */
  background: var(--color-white) url("images/record-bg.png") no-repeat center 150px;
  background-size: 920px auto;
}
.usecase__lead {
  text-align: center;
  font-size: 15px;
  margin-bottom: 48px;
}
/* ロゴ画像には枠線が入っていないため、罫線はCSSで付与する。
   コンテナに上・左、各セルに右・下の罫線を引くことで、内側の線が二重にならず
   常に1pxの均一なグリッドになる。ロゴは各枠いっぱい（最大幅）で表示。 */
.usecase__brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}
.usecase__brand {
  line-height: 0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.usecase__brand img {
  width: 100%;
  height: auto;
  display: block;
}
/* 使用シーン写真（Swiperで自動・無限スクロール／横長写真）。
   コンテンツ幅をはみ出して画面端まで流れる全幅スクロール。写真間の余白は spaceBetween で確保。 */
.usecase__photos {
  margin-top: 64px;
  overflow: hidden;
}
.usecase-swiper .swiper-wrapper {
  /* 等速で流れ続けるマーキー風スクロールにする */
  transition-timing-function: linear !important;
}
.usecase-swiper .swiper-slide {
  width: 32%; /* 横長写真を約3枚表示 */
  aspect-ratio: 16 / 10; /* 元画像に合わせた横長比率 */
  overflow: hidden;
}
.usecase-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== 8. voice ========================================================== */
/* グレー地のセクションに「白いカード」を並べて区別を明確にする（カンプ通り） */
.voice {
  padding-block: var(--section-padding);
  background: var(--color-gray-bg);
}
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.voice__card {
  display: flex;
  flex-direction: column;
  min-width: 0; /* スライダー（Swiper）の内容で1fr列が押し広げられるのを防ぐ */
  background: var(--color-white);
  padding: 24px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .08);
}
/* 写真スライダー（カードごとに3枚を自動スライド） */
.voice__slider {
  width: 100%;
  margin-bottom: 22px;
  overflow: hidden;
}
/* 高さは各スライドの縦横比で確定させる（使用シーン写真と同方式）。元画像600×370≒16:10 */
.voice-swiper .swiper-slide {
  aspect-ratio: 16 / 10;
  background: #cfcfcf;
  overflow: hidden;
}
.voice-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ページネーション（写真上に重ねるドット） */
.voice-swiper .swiper-pagination {
  bottom: 8px;
}
.voice-swiper .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: .65;
  box-shadow: 0 0 2px rgba(0, 0, 0, .4);
}
.voice-swiper .swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
}
.voice__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 14px;
}
.voice__text {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.voice__person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.voice__seal {
  width: 76px;
  height: auto;
  flex: 0 0 auto;
}
.voice__person-info {
  font-size: 14px;
  line-height: 1.6;
}
/* ===== 9. faq ============================================================ */
.faq {
  padding-block: var(--section-padding);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  background: var(--color-gray-bg);
}
.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 60px 22px 28px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__q-mark {
  font-weight: 700;
  color: var(--color-dark);
}
/* 右側の ＋ / − アイコン */
.faq__question::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 16px;
  height: 16px;
  background-image:
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 16px 2px, 2px 16px;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: transform .25s;
}
.faq__item[open] .faq__question::after {
  background-size: 16px 2px, 2px 0; /* 開いたら横棒のみ＝マイナス */
}
.faq__answer {
  padding: 0 28px 24px;
  font-size: 15px;
}
/* 配送料の表：線を極力消したシンプルなデザイン */
.faq__shipping-table {
  width: 100%;
  max-width: 420px;
  margin: 18px 0 14px;
  border-collapse: collapse;
  font-size: 14px;
}
.faq__shipping-table th, .faq__shipping-table td {
  text-align: left;
  padding: 9px 14px;
  border: none;
}
.faq__shipping-table thead th {
  color: var(--color-accent-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--color-accent-dark);
}
.faq__shipping-table tbody th {
  font-weight: 500;
}
.faq__shipping-table tbody td {
  text-align: right;
}
/* 行は薄い区切りのみ（縞模様で視認性を確保） */
.faq__shipping-table tbody tr:nth-child(even) {
  background: var(--color-gray-bg);
}
.faq__shipping-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  opacity: .8;
}
/* ===== 10. closing ======================================================= */
.closing {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding-block: 80px;
}
.closing__text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: .04em;
}
.closing__accent {
  color: var(--color-accent);
}
/* ===== 11. contact ======================================================= */
.contact {
  background: var(--color-black);
  color: var(--color-white);
  padding-top: 10px;
  padding-bottom: 90px;
}
.contact__inner {
  max-width: 820px;
}
/* 電話番号ボックス（金色の枠） */
.contact__tel {
  border: 1px solid #b89b5e;
  text-align: center;
  padding: 26px 20px 22px;
  margin-bottom: 64px;
}
.contact__tel-label {
  font-size: 17px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}
.contact__tel-number {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.1;
}
.contact__tel-note {
  font-size: 14px;
  margin-top: 6px;
}
/* フォーム */
.contact__form {
  background: var(--color-gray-bg);
  color: var(--color-text);
  padding: 44px;
  margin-bottom: 48px;
}
.contact__field {
  margin-bottom: 24px;
}
.contact__label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.contact__required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 14px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 2px;
  vertical-align: 2px;
}
.contact__input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}
.contact__input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.contact__optional {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-border);
  border-radius: 2px;
  vertical-align: 2px;
}
.contact__group {
  border: none;
  padding: 0;
  margin-inline: 0;
}
.contact__group-note {
  font-size: 14px;
  margin-bottom: 12px;
}
.contact__subfield {
  margin-bottom: 12px;
}
.contact__subfield:last-child {
  margin-bottom: 0;
}
.contact__sublabel {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.contact__radios {
  display: flex;
  gap: 28px;
}
.contact__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
}
.contact__radio input {
  width: 18px;
  height: 18px;
}
.contact__error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--color-accent);
}
.contact__input.is-invalid, .contact__radios.is-invalid {
  outline: 1px solid var(--color-accent);
}
.contact__textarea {
  resize: vertical;
}
.contact__submit {
  display: block;
  margin-inline: auto;
}
/* ===== 12. site-footer =================================================== */
.site-footer {
  background: var(--color-white);
  color: var(--color-dark);
  text-align: center;
  padding-block: 56px;
}
.site-footer__logo {
  width: 380px;
  margin-bottom: 24px;
}
.site-footer__company {
  font-weight: 700;
  font-size: 16px;
}
.site-footer__address, .site-footer__contact {
  font-size: 14px;
}
/* ===== 13. レスポンシブ =================================================== */
/* --- タブレット（〜1024px） --- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 64px;
  }
  .section-heading__ja {
    font-size: 32px;
  }
  .hero__title {
    font-size: 42px;
  }
  .lineup__body {
    gap: 32px;
  }
  .cta__banner {
    padding-left: 240px;
    gap: 24px;
  }
  .cta__image {
    width: 180px;
  }
  .cta__title {
    font-size: 28px;
  }
  .usecase__brands {
    grid-template-columns: repeat(4, 1fr);
  }
  .usecase-swiper .swiper-slide {
    width: 33.333%;
  }
}
/* --- スマートフォン（〜768px） --- */
@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading__ja {
    font-size: 27px;
  }
  /* hero（スマホ：洗練ミニマル） */
  /* 製品(ケグ)が縦長クロップでも気持ちよく収まる位置へ。やや右・やや上 */
  .hero__bg {
    background-position: 70% 38%;
  }
  /* ① 周辺減光ビネットで中央の製品＆文字に視線を集約
     ② 縦グラデで上下を締め、可読性とCTA視認性を確保 */
  .hero::before {
    background:
      radial-gradient(135% 70% at 50% 40%, rgba(10, 2, 4, 0) 0%, rgba(10, 2, 4, .30) 60%, rgba(10, 2, 4, .66) 100%), linear-gradient(180deg, rgba(10, 2, 4, .62) 0%, rgba(10, 2, 4, .32) 38%, rgba(10, 2, 4, .55) 72%, rgba(10, 2, 4, .88) 100%);
  }
  .hero__inner {
    min-height: 88vh;
    min-height: 100svh; /* モバイルは実ビューポートいっぱいの全画面ヒーロー */
    padding-top: 40px;
    padding-bottom: 88px;
    align-items: center;
    justify-content: center; /* コンテンツを縦中央に寄せ、下の空白を解消 */
    text-align: center;
  }
  .hero__logo {
    width: 156px;
    margin-bottom: 36px;
  }
  /* 原産地エンブレム：スマホは右上コーナーへコンパクトに（罫線は省きテキストが
     見切れないように） */
  .hero__origin {
    top: 14px;
    right: 12px;
  }
  .hero__flag {
    width: 84px;
  }
  .hero__origin-text {
    font-size: 14px;
    letter-spacing: .04em;
  }
  /* キャッチ：左右に細線を従えた中央タグへ（PCの片側グラデ帯は解除）。
     全体バランスに合わせて文字をしっかり読める大きさに引き上げる */
  .hero__catch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 92%;
    margin-inline: auto;
    margin-bottom: 26px;
    padding: 0;
    background: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .95);
  }
  /* スマホは「洗浄と」の後で明示的に改行（自動の中途半端な折返しを防ぐ）。
     各行は nowrap で1行に固定し、勝手に4行へ折り返されないようにする */
  .hero__catch-br {
    display: inline;
  }
  .hero__catch-text {
    text-align: center;
    white-space: nowrap;
  }
  .hero__catch::before, .hero__catch::after {
    content: "";
    flex: 0 0 22px;
    height: 1px;
    background: rgba(255, 255, 255, .6);
  }
  .hero__title {
    font-size: 36px;
    line-height: 1.48;
    margin-bottom: 26px;
  }
  .hero__sub {
    margin-bottom: 36px;
  }
  .hero__sub-main {
    font-size: 18px;
  }
  .btn--sample {
    padding: 16px 40px;
    font-size: 16px;
  }
  /* 上から順にふわりと現れる導入アニメーション */
  .hero__logo, .hero__catch, .hero__title, .hero__sub, .hero__cta {
    animation: heroFadeUp .7s ease both;
  }
  .hero__logo {
    animation-delay: .05s;
  }
  .hero__catch {
    animation-delay: .20s;
  }
  .hero__title {
    animation-delay: .35s;
  }
  .hero__sub {
    animation-delay: .52s;
  }
  .hero__cta {
    animation-delay: .68s;
  }
  /* スクロール誘導（文字＋シェブロン。HTMLは変えず疑似要素で表現） */
  .hero__inner::after {
    content: "SCROLL";
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: .28em;
    color: rgba(255, 255, 255, .85);
    animation: heroScrollText 1.8s ease-in-out infinite;
  }
  .hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid rgba(255, 255, 255, .85);
    border-bottom: 1.5px solid rgba(255, 255, 255, .85);
    transform: translate(-50%, 0) rotate(45deg);
    animation: heroChevron 1.8s ease-in-out infinite;
    z-index: 2;
  }
  /* lineup（スマホ：表は横スクロール可能にして潰れを防ぐ） */
  .lineup__body {
    flex-direction: column;
  }
  .lineup__image {
    flex-basis: auto;
    width: 70%;
    margin-inline: auto;
  }
  .lineup__table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lineup__table {
    min-width: 540px;
  } /* 列が潰れない最小幅。これ未満は横スクロール */
  .lineup__scroll-hint {
    display: block;
    font-size: 14px;
    color: #888;
    text-align: right;
    margin-bottom: 8px;
  }
  .lineup__table-product {
    font-size: 18px;
  }
  .lineup__table th, .lineup__table td {
    padding: 12px 14px;
  }
  /* features */
  .features__lead {
    text-align: left;
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .features__card {
    padding: 28px 24px 30px;
    column-gap: 16px;
  }
  .features__rail {
    flex-basis: 84px;
  }
  .features__num {
    font-size: 40px;
  }
  .features__icon {
    width: 84px;
    margin-top: 24px;
  }
  .features__content {
    padding-top: 5px;
  }
  .features__title {
    font-size: 19px;
  }
  /* cta（スマホ：縦積み・ケグは上端から少しはみ出す） */
  .cta {
    padding-block: 48px;
  }
  .cta__banner {
    flex-direction: column;
    text-align: center;
    padding: 124px 16px 32px;
    gap: 14px;
  }
  .cta__image {
    left: 50%;
    top: -34px;
    bottom: auto;
    transform: translateX(-50%);
    width: 150px;
  }
  .cta__title {
    font-size: 22px;
    white-space: nowrap;
  } /* スマホでも1行に収める */
  .cta__text {
    font-size: 14px;
  }
  .cta__btn {
    width: 100%;
  }
  .btn--white {
    padding: 16px 32px;
  }
  /* usecase */
  .usecase {
    background-size: 600px auto;
    background-position: center 120px;
  }
  /* スマホは2列にして1個あたりを大きく見せる */
  .usecase__brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .usecase__brand {
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* 幅100%＋max-heightの併用でアスペクト比が崩れる（縦つぶれ）のを防ぐ。
     幅は自動にし、セル幅(max-width)と高さ(max-height)の小さい方に収める。
     高さ上限は大きめに取り、横長ロゴはセル幅いっぱいまで拡大させる */
  .usecase__brand img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
  }
  .usecase__photos {
    margin-top: 48px;
  }
  .usecase-swiper .swiper-slide {
    width: 60%;
  }
  /* voice */
  .voice__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* faq */
  .faq__question {
    padding: 18px 50px 18px 18px;
    font-size: 15px;
    gap: 12px;
  }
  /* closing */
  .closing {
    padding-block: 56px;
  }
  .closing__text {
    font-size: 21px;
    padding: 0 20px;
    text-align: left;
  }
  /* contact */
  .contact__tel {
    margin-bottom: 40px;
  }
  .contact__tel-label {
    font-size: 15px;
  }
  .contact__tel-number {
    font-size: 36px;
  }
  .contact__form {
    padding: 28px 20px;
  }
  /* footer */
  .site-footer__logo {
    width: 280px;
  }
}
/* --- 小型スマートフォン（〜400px） --- */
@media (max-width: 400px) {
  .hero__title {
    font-size: 30px;
  }
  .hero__catch {
    font-size: 14px;
    max-width: 290px;
  }
  .usecase__brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .usecase-swiper .swiper-slide {
    width: 80%;
  }
  .cta__title {
    font-size: 19px;
  }
  .contact__tel-number {
    font-size: 30px;
  }
}