/*
 * ======================================
 * site.css — ディスカまなべ（案件 3601001500）
 * 共通SCSS(main.css)で再現できないデザイン差分を追加
 * 出典：claude-design-output/（完成デザイン）
 * ======================================
 *
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * .disca-container       - 1320px中央コンテナ（左右40px）
 * .disca-en / .disca-ttl / .disca-bar - 英字ラベル/見出し/黄色バー
 * .disca-fz-*            - 元データの非スケール値フォントサイズ（値の粒度不足）
 * .disca-header/-logo/-nav/-tel - ヘッダー装飾差分（黄色円ホバー・赤TELピル）
 * .disca-footer*         - 赤いフッター（構造不足：既存footerに該当なし）
 * .disca-mv*             - 四角写真フェードスライドMV（構造不足）
 * .disca-news / -reason / -banner / -gallery 系 - TOP各セクション
 *   ※ ここに "*" + "/" を書くとコメントが途中で閉じ、直後の body ルールが丸ごと無効になる
 * .disca-hero-band       - 下層ページ黄色ヒーロー帯
 * .disca-*（各ページ）    - company/service/products/contact 個別レイアウト
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・値の粒度不足：fz 15/17/19/26/30/34/38、section padding 76/64/68/78/124 等 → disca-fz-*, セクション個別padding
 * ・構造不足：円形3連の「選ばれる理由」、赤角丸フッター、写真フェードMV → 専用パーツ追加
 * ・装飾パターン不足：黄色ハロー(radial)、ストライプ薄背景、手描きイラスト配置 → 専用装飾
 */

/* ==========================================================================
   Global
   ========================================================================== */
body {
  font-size: 1.8rem;   /* 本文を大きく（旧1.6rem） */
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: normal;
  padding-top: 74px; /* fixed header 分のオフセット */
}

.disca-round { font-family: "M PLUS Rounded 1c", sans-serif; font-weight: 700; }

.disca-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 非スケール font-size（元データ厳密一致・rem=px/10） */
.disca-fz-13 { font-size: 1.3rem; }
.disca-fz-14 { font-size: 1.4rem; }
.disca-fz-15 { font-size: 1.5rem; }
.disca-fz-16 { font-size: 1.6rem; }
.disca-fz-17 { font-size: 1.7rem; }
.disca-fz-19 { font-size: 1.9rem; }
.disca-fz-20 { font-size: 2rem; }
.disca-fz-22 { font-size: 2.2rem; }
.disca-fz-25 { font-size: 2.5rem; }
.disca-fz-26 { font-size: 2.6rem; }
.disca-fz-28 { font-size: 2.8rem; }
.disca-fz-30 { font-size: 3rem; }
.disca-fz-34 { font-size: 3.4rem; }
.disca-fz-38 { font-size: 3.8rem; }
.disca-fz-40 { font-size: 4rem; }

/* 共通見出しパーツ */
.disca-en {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #00a1e4;
  font-size: 1.7rem;
  line-height: 1.4;
}
.disca-ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  color: #3a3532;
  font-size: 3.6rem;
  line-height: 1.35;
  margin: 6px 0 0;
}
.disca-bar {
  width: 56px;
  height: 6px;
  background: #f5dc00;
  border-radius: 0;
  margin: 16px 0 0;
}
.disca-bar--center { margin-left: auto; margin-right: auto; }

.disca-lead { color: #4a423d; }

/* 個別背景色（inline background-color 回避用のバッジ色） */
.disca-tag-red     { background: #f0412e; }
.disca-tag-blue    { background: #00a1e4; }
.disca-brand-eneos { background: #f0412e; }
.disca-brand-apollo{ background: #ee7203; }
.text-body { color: #3f3936; }
.text-muted { color: #6b6259; }
.text-red   { color: #f0412e; }
.text-blue  { color: #00a1e4; }

/* スクロール出現 */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Header（disca 装飾差分）
   ========================================================================== */
.disca-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(58, 53, 50, 0.07);
  z-index: 60;
}
.disca-header .header__inner {
  max-width: 1320px;
  height: auto;
  padding: 12px 40px;
  justify-content: flex-start;
}
.disca-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.disca-logo img {
  height: 50px;
  width: auto;
  border-radius: 0;
}
.disca-logo__body { display: block; }
.disca-logo__brand {
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #3a3532;
  line-height: 1;
}

.disca-nav {
  margin-left: auto;
  margin-right: 0;
  gap: 6px;
}
.disca-nav .header__nav-item a {
  flex-direction: row;
  padding: 22px 14px;
  position: relative;
}
.disca-nav .header__nav-item a::after { display: none; }
.disca-nav .header__nav-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5dc00;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.disca-nav .header__nav-item a:hover::before,
.disca-nav .header__nav-item--current a::before { opacity: 1; }
.disca-nav .header__nav-item a:hover { opacity: 1; }
.disca-nav__label {
  position: relative;
  z-index: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #3a3532;
}

.header__right { margin-left: 14px; gap: 0; }
.disca-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0412e;
  color: #fff;
  padding: 11px 22px;
  border-radius: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.disca-tel:hover { opacity: 0.9; color: #fff; }
.disca-tel__label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
}
.disca-tel__num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
}
.disca-tel--sp { margin: 0 auto; }

/* SPナビの FA chevron を通常矢印に置換（FA依存回避） */
.sp-nav__link::after {
  content: "\203A"; /* › */
  font-family: inherit;
}

/* ハンバーガーを視認しやすく（白背景に埋もれないよう影付き） */
.nav-toggle {
  background: #fff;
  box-shadow: 0 2px 10px rgba(58, 53, 50, 0.15);
}
.nav-toggle__line { background: #3a3532; }

/* ==========================================================================
   Footer（赤い角丸フッター）
   ========================================================================== */
.disca-footer {
  position: relative;
  z-index: 2;
  margin-top: 0;          /* 角丸廃止に伴い、上セクションへの食い込み（-40px）を解除 */
  border-radius: 0;
  background: #d64a3a;
  color: #fff3f0;
  padding: 56px 0 30px;
}
.disca-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.disca-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.disca-footer__logo img { height: 46px; width: auto; border-radius: 0; }
.disca-footer__brand {
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.disca-footer__addr {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #fff3f0;
}
.disca-footer__right { text-align: right; }
.disca-footer__tel {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
}
.disca-footer__fax { font-size: 1.6rem; margin-top: 4px; }
.disca-footer__hours { font-size: 1.5rem; margin-top: 10px; color: #ffe4df; }
.disca-footer__copyright {
  max-width: 1320px;
  margin: 32px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  color: #ffe4df;
}

/* ページトップ */
.page-top { position: fixed; right: 20px; bottom: 20px; z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.page-top.is-visible { opacity: 1; pointer-events: auto; }
.page-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0412e;
  box-shadow: 0 4px 14px rgba(240, 65, 46, 0.3);
}
.page-top__link:hover { opacity: 0.9; }
.page-top__arrow {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 3px;
}

/* ==========================================================================
   TOP：メインビジュアル（写真フェードスライド）
   ========================================================================== */
.disca-mv {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: #e9dfc6;
}
.disca-mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
  background-position: center top;   /* 看板が必ず全部入るよう上端基準 */
  background-size: cover;
}
.disca-mv__slide.is-active { opacity: 1; }
.disca-mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 53, 50, 0.05) 40%, rgba(58, 53, 50, 0.42));
}
.disca-mv__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  text-align: center;
  color: #fff;
  padding: 0 40px;
  z-index: 2;
}
.disca-mv__en {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.disca-mv__catch {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.45;
  margin: 0 0 18px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
  overflow-wrap: anywhere;
}
.disca-mv__sub {
  font-size: 2.4rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}
.disca-mv__dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 2;
}
.disca-mv__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.disca-mv__dot.is-active { background: #f5dc00; }

/* ==========================================================================
   TOP：メディア掲載
   ========================================================================== */
.disca-media-sec { padding: 56px 0 48px; }
.disca-media-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.disca-media-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.disca-media-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 30px 24px;
  background: #fff;
  border: 1px solid #f0e8d4;
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(58, 53, 50, 0.05);
  text-decoration: none;
  color: #3a3532;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.disca-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(58, 53, 50, 0.1);
  border-color: #f5dc00;
  color: #3a3532;
  opacity: 1;
}
.disca-media-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdece9;
  color: #f0412e;
  font-size: 2rem;
  flex-shrink: 0;
}
.disca-media-card__body { display: block; }
.disca-media-card__label {
  display: inline-block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  background: #00a1e4;
  padding: 4px 12px;
  border-radius: 0;
}
.disca-media-card__title {
  display: block;
  margin-top: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.6;
  color: #3a3532;
}
.disca-media-card__more {
  margin-top: auto;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #f0412e;
}
.disca-media-card__more span { transition: transform 0.25s ease; display: inline-block; }
.disca-media-card:hover .disca-media-card__more span { transform: translateX(4px); }

/* ==========================================================================
   TOP：お知らせ
   ========================================================================== */
.disca-news-sec { background: #fffdf5; padding: 56px 0; }
.disca-news-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.disca-news-card {
  background: #fff;
  border: 1px solid #f0e8d4;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(58, 53, 50, 0.05);
}
.disca-news-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 30px;
  border-bottom: 1px solid #f4eede;
  text-decoration: none;
  color: #3a3532;
  transition: background 0.2s ease;
}
.disca-news-card > .disca-news-item:last-child { border-bottom: none; }
.disca-news-item:hover { background: #fffbe9; color: #3a3532; opacity: 1; }
.disca-news-item__meta { display: flex; align-items: center; gap: 16px; }
.disca-news-item__date {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #6b6259;
  font-size: 1.6rem;
}
.disca-news-item__tag {
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 4px 12px;
  border-radius: 0;
}
.disca-news-item__title { font-size: 1.9rem; font-weight: 700; color: #3f3936; }
/* 記事内に写真を直接並べるパターン（リンクなし） */
.disca-news-item--static { cursor: default; }
.disca-news-item--static:hover { background: transparent; }
.disca-news-item__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.disca-news-item__photo {
  display: block;
  position: relative;
  height: 280px;
  background: #fffdf5;
  border: 1px solid #f0e8d4;
}
/* クリックで拡大（Lightbox）できる写真 */
a.disca-news-item__photo { cursor: zoom-in; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
a.disca-news-item__photo:hover { border-color: #f5dc00; box-shadow: 0 4px 14px rgba(58, 53, 50, 0.12); }
a.disca-news-item__photo::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 53, 50, 0.72);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
a.disca-news-item__photo:hover::after { opacity: 1; }
.disca-news-item__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-orientation: from-image;
}

/* ==========================================================================
   TOP：選ばれる理由
   ========================================================================== */
.disca-reason-sec { position: relative; padding: 52px 0 56px; overflow: hidden; }
.disca-reason-halo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  height: 840px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #e4f4fc 0%, #edf8fd 46%, rgba(237, 248, 253, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.disca-reason-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.disca-reason-deco--1 { top: 20px; left: -60px; width: 440px; opacity: 0.55; }
.disca-reason-deco--2 { bottom: -40px; right: -40px; width: 300px; opacity: 0.5; }
.disca-reason-inner { position: relative; z-index: 1; }
.disca-reason-head { text-align: center; margin-bottom: 28px; }
.disca-reason-badge {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #f0412e;
  color: #f0412e;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 9px 26px;
  border-radius: 0;
  box-shadow: 0 3px 10px rgba(240, 65, 46, 0.08);
}
.disca-reason-h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 3.6rem;
  color: #3a3532;
  margin: 20px 0 0;
  line-height: 1.4;
}
.disca-reason-h2 span { color: #00a1e4; }
.disca-reason-desc { max-width: 940px; margin: 16px auto 0; color: #4a423d;
  font-size: 1.9rem;
  font-weight: 700;
}
.disca-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1120px;
  margin: 20px auto 0;
}
.disca-reason-circle {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(150deg, #ee5a1e 0%, #ff9e1b 50%, #ffd400 130%);
  padding: 9px;
  box-shadow: 0 16px 34px rgba(238, 90, 30, 0.18);
}
.disca-reason-pills {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.disca-reason-pill {
  position: relative;
  background: #f5dc00;
  color: #5a4a12;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 7px 18px;
  border-radius: 0;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(238, 90, 30, 0.2);
}
.disca-reason-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #f5dc00;
}
.disca-reason-inner-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12%;
}
.disca-reason-num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  color: #f0412e;
  line-height: 1;
  margin: 6px 0 11px;
}
.disca-reason-num__n { font-size: 5rem; }
.disca-reason-num__u { font-size: 3rem; margin-left: 2px; }
.disca-reason-text { margin: 0; color: #3f3936; font-size: 1.7rem; line-height: 1.65;
  font-weight: 700;
}

/* ==========================================================================
   TOP：ページ遷移バナー
   ========================================================================== */
.disca-banner-sec { background: #fffdf5; padding: 54px 0; }
.disca-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.disca-banner {
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 34px;
}
.disca-banner__img {
  height: 230px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 22px rgba(58, 53, 50, 0.1);
  transition: transform 0.4s ease;
}
.disca-banner:hover .disca-banner__img { transform: translateY(-4px); }
.disca-banner__label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(58, 53, 50, 0.14);
  padding: 13px 30px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #3a3532;
}
.disca-banner__label span { color: #f0412e; }

/* ==========================================================================
   TOP：品揃え（集合写真）
   ========================================================================== */
.disca-lineup-sec { padding: 56px 0 48px; }
.disca-lineup-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.disca-lineup-photo {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(58, 53, 50, 0.1);
}
.disca-lineup-photo img { display: block; width: 100%; height: auto; }
.disca-lineup-h2 { font-size: 3.6rem; }
.disca-lineup-h2 span { color: #f0412e; }
.disca-lineup-lead {
  color: #3f3936;
  font-size: 1.8rem;
  line-height: 1.9;
  margin: 26px 0 0;
}
.disca-lineup-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.disca-lineup-point {
  position: relative;
  background: #fffdf5;
  border-radius: 0;
  padding: 30px 28px 28px;
  box-shadow: 0 6px 18px rgba(58, 53, 50, 0.06);
}
.disca-lineup-point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 44px;
  height: 5px;
  border-radius: 0;
  background: #f5dc00;
}
.disca-lineup-point__ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #3a3532;
  margin: 0 0 10px;
}
.disca-lineup-point__text {
  color: #3f3936;
  font-size: 1.7rem;
  line-height: 1.85;
  margin: 0;
}

/* ==========================================================================
   TOP：流れるギャラリー
   ========================================================================== */
.disca-gallery-sec { position: relative; padding: 56px 0 76px; overflow: hidden; }
.disca-gallery-stripe {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(0, 161, 228, 0.028) 0, rgba(0, 161, 228, 0.028) 2px, transparent 2px, transparent 12px);
}
.disca-gallery-head { position: relative; z-index: 1; text-align: center; margin-bottom: 30px; }
.disca-gallery-marquee { position: relative; z-index: 1; width: 100%; overflow: hidden; }
.disca-gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  width: max-content;
  padding: 26px 0;
  animation: discaMarquee 90s linear infinite;
}
.disca-gallery-tile {
  width: 392px;
  height: 274px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(58, 53, 50, 0.08);
}
.disca-gallery-tile--offset { margin-top: 34px; }
/* 送り量は「片側のタイル幅 + gap 1つ分」＝ 50% + gapの半分。
   -50% だけだと gap 半分（11px）ぶん足りず、ループの継ぎ目でカクつく */
@keyframes discaMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

/* ==========================================================================
   下層ページ：黄色ヒーロー帯
   ========================================================================== */
.disca-hero-band { background: #f5dc00; padding: 48px 0; }
.disca-hero-band__en {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c9331f;
  font-size: 1.7rem;
}
.disca-hero-band__ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 4.4rem;
  color: #3a3532;
  margin: 6px 0 0;
}

/* ==========================================================================
   会社概要
   ========================================================================== */
.disca-greeting-sec { padding: 60px 0; }
.disca-greeting-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.disca-greeting-h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: #3a3532;
  margin: 0 0 22px;
  line-height: 1.5;
}
.disca-greeting-sec p { color: #3f3936; margin: 0 0 16px; font-size: 1.8rem; line-height: 1.85; }
.disca-greeting-sec p:last-of-type { margin-bottom: 0; }
.disca-greeting-sec p.disca-greeting-sign {
  margin: 26px 0 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  color: #3a3532;
}
.disca-greeting-img {
  height: 340px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
}
/* 縦位置写真（看板など）用：縦長のまま見せる */
/* 看板写真：下部の「のぼり」を写さないよう、元画像の上約70%だけを表示（1108x1030相当） */
.disca-greeting-img--tall {
  height: auto;
  aspect-ratio: 1108 / 1030;
  background-position: center top;
}

.disca-history-sec { background: #fffdf5; padding: 60px 0; }
.disca-history-head { text-align: center; margin-bottom: 34px; }
.disca-history-list { position: relative; padding-left: 8px; max-width: 860px; margin: 0 auto; }
.disca-history-row { display: flex; gap: 26px; position: relative; }
.disca-history-year {
  flex-shrink: 0;
  width: 150px;
  text-align: right;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  color: #f0412e;
  font-size: 1.8rem;
  padding-top: 1px;
}
.disca-history-marker { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.disca-history-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f5dc00;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #f5dc00;
}
.disca-history-line { flex: 1; width: 2px; background: #f0e3bc; }
.disca-history-text { color: #3f3936; font-size: 1.8rem; padding-bottom: 24px; }

.disca-overview-sec { padding: 60px 0 76px; }
.disca-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.disca-overview-head { margin: 0 0 22px; }
.disca-sub-h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: #3a3532;
  margin: 4px 0 0;
}
.disca-overview-head .disca-bar { margin-top: 14px; }
.disca-info-table { width: 100%; border-collapse: collapse; font-size: 1.7rem; }
.disca-info-table tr { border-bottom: 1px solid #f0e8d4; }
.disca-info-table th {
  text-align: left;
  vertical-align: top;
  padding: 14px 0;
  width: 38%;
  color: #6b6259;
  font-weight: 700;
}
.disca-info-table td { padding: 14px 0; color: #3f3936; }
.disca-license-box {
  background: #fffdf5;
  border: 1px solid #f0e8d4;
  border-radius: 0;
  padding: 26px 28px;
}
.disca-license-item { display: flex; align-items: center; gap: 12px; padding: 9px 0; color: #3f3936;
  font-size: 1.7rem;
  font-weight: 700;
}
.disca-license-item::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00a1e4;
  flex-shrink: 0;
}

/* ==========================================================================
   事業内容
   ========================================================================== */
.disca-svc-sec { padding: 56px 0 32px; }
.disca-svc-sec--2 { padding: 32px 0; }
.disca-svc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.disca-svc-grid--reverse { grid-template-columns: 1.1fr 0.9fr; }
.disca-svc-img {
  height: 380px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
}
.disca-svc-num {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #00a1e4;
  font-size: 1.6rem;
}
.disca-svc-h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: #3a3532;
  margin: 4px 0 16px;
}
.disca-svc-sec p, .disca-svc-sec--2 p { color: #3f3936; margin: 0 0 14px; font-size: 1.8rem; line-height: 1.85; }
.disca-svc-sec p:last-child, .disca-svc-sec--2 p:last-child { margin-bottom: 0; }
.disca-svc-sec strong, .disca-svc-sec--2 strong { color: #f0412e; }

.disca-gs-sec { background: #fffdf5; padding: 60px 0; }
.disca-gs-head { text-align: center; margin-bottom: 16px; }
.disca-gs-head .disca-en { color: #00a1e4; font-size: 1.7rem; letter-spacing: 0.14em; }
.disca-gs-desc { max-width: 860px; margin: 14px auto 32px; color: #4a423d;
  font-size: 1.9rem;
  font-weight: 700;
}
.disca-gs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.disca-gs-card {
  background: #fff;
  border: 1px solid #f0e8d4;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(58, 53, 50, 0.05);
}
.disca-gs-card__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.disca-gs-card__img { height: 220px; background-position: center; background-size: cover; }
.disca-gs-card__body { padding: 20px 24px; }
.disca-gs-card__head { display: flex; align-items: center; gap: 10px; }
.disca-gs-card__name {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #3a3532;
  margin: 0;
}
.disca-gs-card__brand {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 3px 10px;
  border-radius: 0;
}
.disca-gs-card__addr { margin: 8px 0 0; color: #4a423d; font-size: 1.7rem; }
.disca-gs-card__tel { margin: 6px 0 0; color: #3a3532; font-size: 1.7rem; font-weight: 700; }
.disca-gs-card__tel a { color: #f0412e; }
.disca-gs-card__hours { display: flex; align-items: center; gap: 10px; margin: 6px 0 0;
  color: #3a3532;
  font-size: 1.7rem;
  font-weight: 700;
}
.disca-gs-card__hours-label {
  background: #f5dc00;
  color: #3a3532;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 3px 10px;
  flex-shrink: 0;
}
.disca-gs-card__note { margin: 6px 0 0; color: #f0412e; font-size: 1.6rem; font-weight: 700; }

.disca-welfare-sec { padding: 48px 0 76px; }
.disca-welfare-box {
  background: #fff;
  border: 1px dashed #d9cfa8;
  border-radius: 0;
  padding: 32px 36px;
}
.disca-welfare-box .disca-en { color: #00a1e4; font-size: 1.7rem; letter-spacing: 0.14em; }
.disca-welfare-box h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #3a3532;
  margin: 4px 0 12px;
}
.disca-welfare-box p { margin: 0; color: #4a423d; font-size: 1.8rem; }

/* ==========================================================================
   商品紹介
   ========================================================================== */
.disca-flyers-sec { padding: 48px 0 32px; }
.disca-flyers-head { margin-bottom: 28px; }
.disca-flyers-head .disca-en { color: #00a1e4; font-size: 1.7rem; letter-spacing: 0.14em; }
.disca-flyers-head h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: #3a3532;
  margin: 4px 0 0;
}
.disca-flyers-head p { max-width: 1040px; margin: 12px 0 0; color: #4a423d; font-size: 1.8rem; }
.disca-flyers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.disca-flyer {
  text-decoration: none;
  background: #fff;
  border: 1px solid #f0e8d4;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(58, 53, 50, 0.05);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.disca-flyer:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(58, 53, 50, 0.1); opacity: 1; }
.disca-flyer__img { height: 210px; background-position: center; background-size: cover; }
.disca-flyer__body { padding: 20px 24px; }
.disca-flyer__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #3a3532;
  margin: 0;
  line-height: 1.5;
}
.disca-flyer__note { margin: 8px 0 0; color: #4a423d; font-size: 1.6rem; }
.disca-flyer__pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #00a1e4;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.disca-knives-sec { background: #fffdf5; padding: 48px 0 76px; }
.disca-knives-head { text-align: center; margin-bottom: 12px; }
.disca-knives-head .disca-en { color: #00a1e4; font-size: 1.7rem; letter-spacing: 0.14em; }
.disca-knives-head h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 3.4rem;
  color: #3a3532;
  margin: 6px 0 0;
  line-height: 1.4;
}
.disca-knives-lead { text-align: center; max-width: 900px; margin: 16px auto 28px; color: #4a423d;
  font-size: 1.8rem;
}
.disca-knives-imgs { display: flex; flex-direction: column; gap: 20px; }
.disca-knives-imgs img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(58, 53, 50, 0.1);
}
.disca-knives-note { margin: 20px 0 0; color: #6b6259; font-size: 1.5rem; text-align: center; }

/* ==========================================================================
   お問い合わせ
   ========================================================================== */
.disca-contact-sec { padding: 60px 0 76px; }
.disca-contact-sec .disca-container { text-align: center; }
.disca-contact-lead { color: #3f3936; margin: 0 0 32px; font-size: 2rem;
  font-weight: 700;
}
.disca-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.disca-contact-card {
  background: #fff;
  border: 1px solid #f0e8d4;
  border-radius: 0;
  padding: 38px 30px;
  box-shadow: 0 8px 26px rgba(58, 53, 50, 0.06);
}
.disca-contact-card__label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #00a1e4;
  font-size: 1.5rem;
}
.disca-contact-card__num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  white-space: nowrap;
  margin: 6px 0 4px;
}
.disca-contact-card__num--tel { color: #f0412e; }
.disca-contact-card__num--fax { color: #3a3532; }
.disca-contact-card__sub { color: #4a423d; font-size: 1.7rem; }
.disca-contact-card__sub--muted { color: #6b6259; }
.disca-contact-info {
  margin-top: 44px;
  background: #fffdf5;
  border: 1px solid #f0e8d4;
  border-radius: 0;
  padding: 34px 40px;
  text-align: left;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.disca-contact-info table { width: 100%; border-collapse: collapse; font-size: 1.7rem; }
.disca-contact-info tr { border-bottom: 1px solid #f0e8d4; }
.disca-contact-info tr:last-child { border-bottom: none; }
.disca-contact-info th { text-align: left; padding: 12px 0; width: 32%; color: #6b6259; font-weight: 700; }
.disca-contact-info td { padding: 12px 0; color: #3f3936; }
.disca-contact-map {
  margin: 24px auto 0;
  border-radius: 0;
  overflow: hidden;
  max-width: 860px;
  box-shadow: 0 8px 26px rgba(58, 53, 50, 0.06);
}
.disca-contact-map iframe { border: 0; display: block; width: 100%; height: 360px; }

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
/* 大画面では cover の拡大率が上がるため、看板が切れないようMVを高くする */
@media (min-width: 1700px) {
  .disca-mv { height: 820px; }
}
@media (max-width: 1100px) {
  .disca-header .header__inner { padding: 10px 15px; }
  body { padding-top: 70px; }
}

@media (max-width: 896px) {
  .disca-container { padding: 0 24px; }
  .disca-news-grid { grid-template-columns: 1fr; gap: 24px; }
  .disca-news-item__photo { height: 220px; }
  .disca-media-grid { grid-template-columns: 1fr; gap: 24px; }
  .disca-reason-grid { max-width: 520px; }
  .disca-greeting-grid,
  .disca-overview-grid,
  .disca-svc-grid,
  .disca-svc-grid--reverse,
  .disca-gs-grid,
  .disca-flyers-grid,
  .disca-lineup-grid,
  .disca-banner-grid { grid-template-columns: 1fr; }
  .disca-svc-grid--reverse .disca-svc-img { order: -1; }
  .disca-mv__catch { font-size: 3.8rem; }
  .disca-greeting-img--tall { height: auto; max-width: 460px; margin: 0 auto; width: 100%; }
  .disca-lineup-grid { gap: 32px; }
  .disca-lineup-h2 { font-size: 3.2rem; }
  .disca-lineup-points { gap: 18px; margin-top: 40px; }
}

@media (max-width: 639px) {
  body { padding-top: 64px; }
  .disca-logo img { height: 40px; }
  .disca-logo__brand { font-size: 2rem; }
  .disca-container { padding: 0 18px; }
  .disca-mv { height: 560px; }
  .disca-mv__catch { font-size: 2.6rem; line-height: 1.5; }
  .disca-mv__sub { font-size: 1.8rem; }
  .disca-mv__en { font-size: 1.4rem; letter-spacing: 0.18em; }
  .disca-mv__text { bottom: 60px; padding: 0 20px; }
  .disca-reason-grid { grid-template-columns: 1fr; max-width: 300px; }
  .disca-contact-grid { grid-template-columns: 1fr; }
  .disca-hero-band__ttl { font-size: 3.2rem; }
  .disca-news-sec, .disca-media-sec, .disca-banner-sec, .disca-greeting-sec, .disca-history-sec,
  .disca-svc-sec, .disca-gs-sec, .disca-flyers-sec, .disca-contact-sec { padding-left: 0; padding-right: 0; }
  .disca-media-list { grid-template-columns: 1fr; }
  .disca-media-card__title { font-size: 1.9rem; }
  .disca-reason-h2, .disca-ttl, .disca-flyers-head h2, .disca-svc-h2, .disca-greeting-h2 { font-size: 2.6rem; }
  .disca-lineup-h2 { font-size: 2.6rem; }
  .disca-lineup-sec { padding-left: 0; padding-right: 0; }
  .disca-lineup-points { grid-template-columns: 1fr; }
  .disca-greeting-img--tall { height: auto; max-width: 360px; }
  .disca-contact-card__num { font-size: 3.2rem; }
  .disca-history-year { width: 110px; font-size: 1.6rem; }
}
