@charset "UTF-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 * 株式会社中央鶏卵 サイト固有CSS（prefix: ck-）
 *
 * 【共通パーツ】
 *  .ck-header / .ck-htel / .ck-cta-pill / .ck-spnav-*  - ヘッダー（sticky白バー＋電話＋青CTA）
 *  .ck-cta / .ck-cta__*                                - お問い合わせCTA帯（オレンジ）
 *  .ck-footer / .ck-footer__*                          - フッター（黄色 3カラム＋地図）
 *
 * 【汎用】
 *  .ck-label(--white)   - セクション英語ラベル（Oswald／オレンジ・白）
 *  .ck-sec(--md/--sm)   - セクション上下余白（clamp）
 *  .ck-wrap(--*)        - 内側ラッパー（max-width バリエーション）
 *  .ck-h1 / .ck-h2 / .ck-lead / .ck-text  - 見出し・リード・本文
 *  .ck-bg-yellow / .ck-bg-cream           - 背景色
 *  [data-fade]          - スクロールフェードイン
 *
 * 【TOP】
 *  .ck-hero / .ck-ribbon / .ck-greet / .ck-timeline / .ck-vcard
 * 【下層】
 *  .ck-phero / .ck-crumb / .ck-deftable / .ck-rec-card / .ck-supply
 *  .ck-prod-card / .ck-safety / .ck-flow / .ck-pay / .ck-ctel / .ck-access
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 *  - 構造不足：英語ラベル(小)＋日本語見出し(大)を左/中央で積む軽量見出し（heading系はenが巨大）
 *  - 構造不足：縦型タイムライン（年・ドット・縦線・本文の3カラム）
 *  - 装飾パターン不足：オレンジCTA帯／黄色フッターの円形あしらい・卵あしらい
 *  - 値の粒度不足：clamp() による可変余白・可変フォント（参考デザインがclamp主体）
 *  - 状態不足：sticky白ヘッダー（共通は fixed の header-bar / 透過→fixed の header-sticky のみ）
 */

/* ============================================================
 * 汎用
 * ============================================================ */
.ck-label {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  font-size: 1.3rem;
  font-weight: 500;
  color: #FDAA4A;
  margin: 0 0 8px;
  line-height: 1;
}
.ck-label--white { color: #fff; }

.ck-num { font-family: "Oswald", sans-serif; color: #333333; }

.ck-h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  color: #333333;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
.ck-h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  color: #333333;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.ck-h2--sm { font-size: clamp(2rem, 2.8vw, 2.8rem); }
.ck-h2--white { color: #FFFFFF; }

.ck-lead {
  margin: 14px auto 0;
  max-width: 800px;
  font-size: 1.5rem;
  line-height: 2;
  color: #5C544A;
}
.ck-text {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #4A4339;
  margin: 0 0 18px;
}
.ck-text:last-child { margin-bottom: 0; }

.ck-sec      { padding: clamp(56px, 8vw, 96px) 0; }
.ck-sec--md  { padding: clamp(48px, 7vw, 80px) 0; }
.ck-sec--sm  { padding: clamp(44px, 6vw, 72px) 0; }

.ck-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.ck-wrap--wide   { max-width: 1120px; }
.ck-wrap--1500   { max-width: 1500px; }
.ck-wrap--1200   { max-width: 1200px; }
.ck-wrap--1040   { max-width: 1040px; }
.ck-wrap--920    { max-width: 920px; }
.ck-wrap--880    { max-width: 880px; }
.ck-wrap--820    { max-width: 820px; }

.ck-bg-cream  { background: #FFF7EC; }
.ck-bg-yellow { background: #FFEE75; }

.ck-head-center { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.ck-head-left   { margin-bottom: clamp(28px, 4vw, 44px); }

/* fade-in */
[data-fade] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-fade].is-shown { opacity: 1; transform: none; }

/* grid: auto-fit 中央 */
.ck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.ck-grid--center { align-items: center; gap: clamp(32px, 5vw, 60px); }
.ck-grid--240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(18px, 2.6vw, 26px); }
.ck-grid--300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(18px, 2.6vw, 26px); }
.ck-grid--260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(18px, 2.6vw, 26px); }
.ck-grid--200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(16px, 2.4vw, 24px); }

/* ============================================================
 * ヘッダー（sticky 白バー）
 * ============================================================ */
.ck-header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #EFE3CF;
  box-shadow: 0 2px 16px rgba(0, 52, 176, 0.05);
  z-index: 50;
}
.ck-header .header__inner {
  max-width: 1200px;
  height: clamp(64px, 9vw, 82px);
  padding: 0 clamp(16px, 4vw, 32px);
  gap: 16px;
}
.ck-header .header__logo img { height: clamp(38px, 5.2vw, 50px); }

.ck-header .header__nav {
  margin: 0;
  gap: clamp(14px, 2vw, 26px);
}
.ck-header .header__nav-item a { padding: 6px 2px; }
.ck-header .header__nav-ja {
  font-size: 1.5rem;
  font-weight: 400;
  color: #3A332B;
  margin-top: 0;
}
/* ナビ下線：中央を起点に左右対称で伸びる（ホバー・現在ページ共通） */
.ck-header .header__nav-item a::after {
  left: 50%;
  width: 0;
  height: 3px;
  background: #FDAA4A;
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.ck-header .header__nav-item a:hover::after { width: 100%; left: 50%; }
.ck-header .header__nav-item--current a::after { width: 100%; left: 50%; transform: translateX(-50%); }

.ck-header .header__right { gap: clamp(8px, 1.4vw, 18px); }

.ck-htel {
  display: flex;
  align-items: center;
  gap: 8px;
  height: auto;
  text-decoration: none;
  padding-left: clamp(8px, 1.4vw, 18px);
  border-left: 1px solid #EFE3CF;
}
.ck-htel__icon { display: flex; color: #FDAA4A; }
.ck-htel__icon i { font-size: 17px; }
.ck-htel__body { display: flex; flex-direction: column; line-height: 1; }
.ck-htel__num { font-family: "Oswald", sans-serif; font-size: 2.1rem; font-weight: 600; color: #333333; }
.ck-htel__sub { font-size: 1rem; color: #9A8F7E; margin-top: 2px; }
.ck-htel:hover { opacity: 0.85; }

.ck-cta-pill {
  display: inline-flex;
  align-items: center;
  background: #0034B0;
  color: #fff;
  font-size: 1.4rem;
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 52, 176, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.ck-cta-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 52, 176, 0.3); opacity: 1; }

/* SPナビ（共通 sp-nav を流用、FA6対応とボトム電話） */
.sp-nav__link::after { font-family: "Font Awesome 6 Free"; }
.ck-spnav-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  text-decoration: none;
}
.ck-spnav-tel i { font-size: 24px; }
.ck-spnav-hours { display: block; color: rgba(255, 255, 255, 0.85); font-size: 1.2rem; margin-top: 6px; }
body.is-nav-open { overflow: hidden; }

/* ============================================================
 * お問い合わせCTA帯（オレンジ）
 * ============================================================ */
.ck-cta {
  position: relative;
  overflow: hidden;
  background: #FDAA4A;
}
.ck-cta__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.ck-cta__circle--tr { right: -40px; top: -40px; width: 200px; height: 200px; }
.ck-cta__circle--bl { left: -30px; bottom: -60px; width: 160px; height: 160px; background: rgba(255, 255, 255, 0.12); }
.ck-cta__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 40px);
  text-align: center;
}
.ck-cta__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(180, 110, 20, 0.25);
}
.ck-cta__desc { margin: 0 0 26px; color: #FFF6E8; font-size: 1.4rem; }
.ck-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: stretch; }
.ck-cta__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(340px, 100%);
  box-sizing: border-box;
  gap: 12px;
  text-decoration: none;
  background: #fff;
  padding: 14px 26px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(150, 90, 10, 0.22);
  transition: transform 0.3s ease;
}
.ck-cta__tel:hover { transform: translateY(-2px); opacity: 1; }
.ck-cta__tel-icon { display: flex; color: #FDAA4A; }
.ck-cta__tel-icon i { font-size: 24px; }
.ck-cta__tel-body { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.ck-cta__tel-num { font-family: "Oswald", sans-serif; font-size: 3rem; font-weight: 700; color: #333333; letter-spacing: 0.02em; }
.ck-cta__tel-sub { font-size: 1.2rem; color: #8A7E6C; }
.ck-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(340px, 100%);
  box-sizing: border-box;
  text-decoration: none;
  background: #0034B0;
  color: #fff;
  font-size: 1.6rem;
  padding: 18px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 52, 176, 0.3);
  transition: transform 0.3s ease;
}
.ck-cta__btn:hover { transform: translateY(-2px); opacity: 1; }

/* ============================================================
 * フッター（黄色）
 * ============================================================ */
.ck-footer { background: #FFEE75; color: #3A332B; }
.ck-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.ck-footer__logo { margin-bottom: 16px; }
.ck-footer__logo img { height: 48px; width: auto; display: block; }
.ck-footer__addr { margin: 0 0 4px; font-size: 1.35rem; line-height: 1.9; color: #5C544A; }
.ck-footer__addr + .ck-footer__addr { margin-top: 14px; }
.ck-footer__addr .ck-num { font-size: 1.5rem; }
.ck-footer__heading { font-family: "Oswald", sans-serif; letter-spacing: 0.16em; font-size: 1.2rem; color: #333333; margin: 0 0 16px; }
.ck-footer__nav { display: flex; flex-direction: column; gap: 13px; }
.ck-footer__nav a { color: #3A332B; font-size: 1.4rem; text-decoration: none; }
.ck-footer__nav a:hover { color: #0034B0; opacity: 1; }
.ck-footer__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(120, 90, 10, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.ck-footer__map iframe { display: block; height: 190px; }
.ck-footer__bottom { border-top: 1px solid rgba(0, 0, 0, 0.12); }
.ck-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.ck-footer__note { font-size: 1.2rem; color: #6E6450; }
.ck-footer__copy { font-family: "Oswald", sans-serif; font-size: 1.2rem; letter-spacing: 0.08em; color: #6E6450; }

/* ============================================================
 * TOP : ヒーロー
 * ============================================================ */
.ck-hero {
  position: relative;
  width: 100%;
  height: calc(100svh - clamp(64px, 9vw, 82px));
  min-height: 440px;
  overflow: hidden;
  background: #FBE3B8;
}
/* CMSスライダー（内部Swiper）の外枠。各ラッパーを外枠の高さに追従させる。
   .swiper-slide には position:absolute を当てない（Swiperの横スライドtransformを壊さないため） */
.ck-hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ck-hero__slideshow #cms-slider-1-1-area,
.ck-hero__slideshow .swiper,
.ck-hero__slideshow .swiper-container,
.ck-hero__slideshow .main_slider,
.ck-hero__slideshow .swiper-wrapper { width: 100%; height: 100%; }
.ck-hero__slideshow .swiper-slide,
.ck-hero__slideshow .main_slider__inner { width: 100%; height: 100%; }
.ck-hero__slideshow .main_slider__inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ck-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 32%, rgba(0,0,0,0) 58%);
}
.ck-hero__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: clamp(28px, 6vw, 80px) clamp(22px, 5vw, 72px);
}
.ck-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 4.2vw, 5.2rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

/* 電話番号リボン */
.ck-ribbon { background: #FFEE75; }
.ck-ribbon__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ck-ribbon__text { font-size: 1.5rem; color: #3A332B; }
.ck-ribbon__text b { color: #333333; }
.ck-ribbon__tel { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.ck-ribbon__tel i { font-size: 20px; color: #333333; }
.ck-ribbon__num { font-family: "Oswald", sans-serif; font-size: clamp(2.4rem, 3vw, 3rem); font-weight: 700; color: #333333; letter-spacing: 0.02em; }
.ck-ribbon__tel:hover { opacity: 0.8; }

/* ごあいさつ */
.ck-greet { position: relative; overflow: hidden; background: #FFFFFF; }
.ck-greet__watermark {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: clamp(230px, 32vw, 440px);
  height: auto;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.ck-greet__inner { position: relative; z-index: 1; max-width: 1080px; }
.ck-greet__figure { position: relative; }
.ck-greet__img {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(120, 80, 20, 0.14);
}
.ck-greet__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ck-greet__badge {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0034B0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(242, 146, 42, 0.3);
}
.ck-greet__badge b { font-size: 1.8rem; font-weight: 700; }
.ck-greet__sign { margin: 28px 0 0; font-size: 1.4rem; color: #7A6F60; line-height: 1.6; }
.ck-greet__sign b { font-size: 2.2rem; color: #333333; font-weight: 400; }

/* タイムライン（歩み） */
.ck-timeline { display: flex; flex-direction: column; }
.ck-timeline__row { display: flex; gap: clamp(16px, 3vw, 30px); align-items: stretch; }
.ck-timeline__year { flex-shrink: 0; width: clamp(78px, 11vw, 120px); text-align: right; padding-top: 4px; }
.ck-timeline__year span { font-family: "Oswald", sans-serif; font-size: clamp(1.5rem, 1.8vw, 1.9rem); font-weight: 600; color: #F2922A; white-space: nowrap; }
.ck-timeline__rail { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.ck-timeline__dot { width: 18px; height: 18px; border-radius: 50%; background: #FDAA4A; border: 4px solid #fff; box-shadow: 0 0 0 2px #FDAA4A; }
.ck-timeline__line { flex: 1; width: 2px; background: #F1DEBB; }
.ck-timeline__row:last-child .ck-timeline__line { display: none; }
.ck-timeline__body { padding-bottom: 34px; padding-top: 1px; }
.ck-timeline__body h3 { margin: 0 0 6px; font-size: 1.7rem; color: #333333; font-weight: 400; }
.ck-timeline__body p { margin: 0; font-size: 1.45rem; line-height: 1.9; color: #5C544A; }

/* 価値カード */
.ck-vcard {
  background: #FFF7EC;
  border: 1px solid #F1E2C7;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ck-vcard__img { aspect-ratio: 3 / 2; overflow: hidden; background: #FBE3B8; position: relative; }
.ck-vcard__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ck-vcard:hover .ck-vcard__img img { transform: scale(1.05); }
.ck-vcard__no {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FDAA4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 16px rgba(242, 146, 42, 0.35);
}
.ck-vcard__body { padding: clamp(24px, 3vw, 32px) clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; gap: 12px; }
.ck-vcard__body h3 { margin: 0; font-size: 1.8rem; line-height: 1.5; color: #333333; font-weight: 400; }
.ck-vcard__body p { margin: 0; font-size: 1.45rem; line-height: 1.95; color: #5C544A; }

/* ============================================================
 * 下層 : ページヒーロー
 * ============================================================ */
.ck-phero { position: relative; overflow: hidden; background: #FFF7EC; }
.ck-phero__egg {
  position: absolute;
  right: clamp(10px, 3vw, 48px);
  top: -30px;
  width: clamp(120px, 16vw, 190px);
  height: auto;
  opacity: 0.45;
  pointer-events: none;
}
.ck-phero__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 40px);
}
.ck-phero__lead { margin: 14px 0 0; max-width: 600px; font-size: 1.5rem; line-height: 2; color: #5C544A; }

.ck-crumb { display: flex; align-items: center; gap: 8px; font-size: 1.25rem; color: #9A8F7E; margin-bottom: 18px; }
.ck-crumb a { color: #9A8F7E; text-decoration: none; }
.ck-crumb a:hover { color: #C97A14; opacity: 1; }
.ck-crumb__current { color: #C97A14; }

/* 会社概要テーブル（定義リスト） */
.ck-deftable { border-top: 2px solid #FDAA4A; }
.ck-deftable__row { display: flex; flex-wrap: wrap; border-bottom: 1px solid #EFE3CF; }
.ck-deftable__th {
  flex: 0 0 200px;
  max-width: 100%;
  background: #FFFBF3;
  padding: 18px clamp(14px, 2vw, 24px);
  font-size: 1.45rem;
  color: #333333;
}
.ck-deftable__td { flex: 1 1 320px; padding: 18px clamp(14px, 2vw, 24px); font-size: 1.45rem; line-height: 1.85; color: #4A4339; }

/* 取引実績カード */
.ck-rec-card { background: #fff; border: 1px solid #F1E2C7; border-radius: 18px; overflow: hidden; }
.ck-rec-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: #FBE3B8; }
.ck-rec-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ck-rec-card:hover .ck-rec-card__img img { transform: scale(1.05); }
.ck-rec-card__body { padding: clamp(18px, 2.4vw, 24px); }
.ck-rec-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ck-rec-card__icon { width: 34px; height: 34px; border-radius: 10px; background: #FFF1DC; display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.ck-rec-card__icon i { font-size: 1.7rem; color: #C97A14; }
.ck-rec-card__cat { margin: 0; font-size: 1.6rem; color: #C97A14; font-weight: 400; }
.ck-rec-card__body p { margin: 0; font-size: 1.4rem; line-height: 1.95; color: #5C544A; }

/* 仕入先 */
.ck-supply { display: flex; flex-wrap: wrap; gap: 14px; }
.ck-supply__item {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFF7EC;
  border: 1px solid #F1E2C7;
  border-radius: 16px;
  padding: 20px 24px;
}
.ck-supply__dot { width: 10px; height: 10px; border-radius: 50%; background: #FDAA4A; flex-shrink: 0; }
.ck-supply__item span:last-child { font-size: 1.5rem; color: #3A332B; }

/* ============================================================
 * 下層 : 取り扱い商品
 * ============================================================ */
.ck-prod-card {
  background: #fff;
  border: 1px solid #F1E2C7;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(120, 80, 20, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ck-prod-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(120, 80, 20, 0.12); }
.ck-prod-card__img { aspect-ratio: 4 / 3; position: relative; display: flex; align-items: center; justify-content: center; background: #FBE3B8; }
.ck-prod-card__img--c1 { background: #FBE3B8; }
.ck-prod-card__img--c2 { background: #F8DCAE; }
.ck-prod-card__img--c3 { background: #FBE0C2; }
.ck-prod-card__img--c4 { background: #F6D7A6; }
.ck-prod-card__img--c5 { background: #FAD9B0; }
.ck-prod-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.ck-prod-card__egg { position: relative; z-index: 1; }
.ck-prod-card__body { padding: clamp(18px, 2.2vw, 24px); }
.ck-prod-card__body h3 { margin: 0 0 8px; font-size: 1.8rem; color: #333333; font-weight: 400; }
.ck-prod-card__body p { margin: 0; font-size: 1.4rem; line-height: 1.85; color: #5C544A; }
.ck-prod-card__tag {
  display: inline-block;
  margin-top: 12px;
  background: #FFF1DC;
  color: #C97A14;
  font-size: 1.2rem;
  padding: 5px 12px;
  border-radius: 999px;
}

/* 安全性へのこだわり */
.ck-safety { position: relative; overflow: hidden; background-size: cover; background-position: center; }
.ck-safety__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(51,51,51,0.82), rgba(51,51,51,0.74)); }
.ck-safety__inner { position: relative; max-width: 1080px; margin: 0 auto; padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 40px); }
.ck-safety__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
}
.ck-safety__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.ck-safety__icon img { width: 72px; height: 72px; object-fit: contain; display: block; }
.ck-safety__card h3 { margin: 0 0 10px; font-size: 1.7rem; line-height: 1.5; color: #fff; font-weight: 400; }
.ck-safety__card p { margin: 0; font-size: 1.4rem; line-height: 1.95; color: #C7D2F0; }

/* ============================================================
 * 下層 : 注文の流れ
 * ============================================================ */
.ck-flow-introbox { max-width: 820px; margin: 0 auto; padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 40px) 0; text-align: center; }
.ck-flow-intro { margin: 0; font-size: clamp(1.8rem, 2.4vw, 2.4rem); line-height: 1.7; color: #333333; }
.ck-flow-intro span { color: #F2922A; }
.ck-flow-stepbox { max-width: 1500px; margin: 0 auto; padding: clamp(36px, 5vw, 60px) clamp(20px, 5vw, 40px) clamp(28px, 4vw, 44px); }
.ck-pay-box { max-width: 820px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px) clamp(56px, 8vw, 96px); }
.ck-flow { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: clamp(16px, 2vw, 24px); }
.ck-flow__card {
  flex: 1 1 300px;
  max-width: 500px;
  background: #FFF7EC;
  border: 1px solid #F1E2C7;
  border-radius: 24px;
  padding: clamp(28px, 3.4vw, 40px);
  position: relative;
}
.ck-flow__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ck-flow__img { display: block; width: 100%; height: auto; border-radius: 16px; margin-bottom: 18px; }
.ck-flow__no {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}
.ck-flow__no--1 { background: #FDAA4A; }
.ck-flow__no--2 { background: #C97A14; }
.ck-flow__step { font-family: "Oswald", sans-serif; letter-spacing: 0.14em; font-size: 1.3rem; color: #C97A14; }
.ck-flow__card h3 { margin: 0 0 12px; font-size: 2.1rem; color: #333333; font-weight: 400; }
.ck-flow__card > p { margin: 0 0 18px; font-size: 1.45rem; line-height: 1.95; color: #5C544A; }
.ck-flow__detail { display: flex; flex-direction: column; gap: 8px; background: #fff; border-radius: 14px; padding: 14px 16px; }
.ck-flow__detail-row { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; color: #7A6F60; }
.ck-flow__detail-row b { font-family: "Oswald", sans-serif; font-size: 1.9rem; color: #333333; font-weight: 700; }
.ck-flow__detail--note { flex-direction: row; align-items: center; }
.ck-flow__detail--note i { font-size: 20px; color: #FDAA4A; flex-shrink: 0; }
.ck-flow__detail--note span { font-size: 1.35rem; color: #7A6F60; }
.ck-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ck-flow__arrow span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFF1DC;
}
.ck-flow__arrow svg { width: 22px; height: 22px; fill: #F2922A; }
@media (max-width: 767px) {
  .ck-flow__arrow svg { transform: rotate(90deg); }
}

/* お支払い */
.ck-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: #FFEE75;
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px) clamp(24px, 3.4vw, 36px);
}
.ck-pay__icon { display: inline-flex; width: 48px; height: 48px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 14px; background: rgba(0, 0, 0, 0.07); }
.ck-pay__icon img { width: 28px; height: 28px; object-fit: contain; }
.ck-pay__label { margin: 0 0 3px; font-size: 1.3rem; color: #7A6F60; }
.ck-pay__text { margin: 0; font-size: 1.55rem; line-height: 1.7; color: #333333; }
.ck-pay__text b { color: #333333; }

/* ============================================================
 * 下層 : お問い合わせ
 * ============================================================ */
.ck-ctel-box { max-width: 820px; margin: 0 auto; padding: clamp(52px, 8vw, 92px) clamp(20px, 5vw, 40px) clamp(36px, 5vw, 56px); text-align: center; }
.ck-ctel-head { margin: 0 0 10px; font-size: clamp(2.6rem, 4vw, 4.2rem); line-height: 1.4; color: #333333; font-weight: 400; }
.ck-ctel-head span { color: #F2922A; }
.ck-ctel-lead { margin: 0 auto 36px; max-width: 520px; font-size: 1.5rem; line-height: 2; color: #5C544A; }
.ck-ctel {
  position: relative;
  overflow: hidden;
  background: #FDAA4A;
  border-radius: 28px;
  padding: clamp(32px, 4.5vw, 52px) clamp(24px, 4vw, 48px);
  box-shadow: 0 18px 44px rgba(242, 146, 42, 0.28);
}
.ck-ctel__circle { position: absolute; right: -30px; top: -30px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); }
.ck-ctel__label { position: relative; margin: 0 0 6px; font-family: "Oswald", sans-serif; letter-spacing: 0.2em; font-size: 1.3rem; color: #fff; }
.ck-ctel__link { position: relative; display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.ck-ctel__link i { font-size: 40px; color: #fff; }
.ck-ctel__num { font-family: "Oswald", sans-serif; font-size: clamp(3.8rem, 7vw, 6.2rem); font-weight: 700; color: #fff; letter-spacing: 0.01em; line-height: 1; }
.ck-ctel__sub { position: relative; margin: 18px 0 0; font-size: 1.4rem; color: #fff; }
.ck-ctel__link:hover { opacity: 0.92; }

/* アクセス */
.ck-access { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(28px, 4vw, 44px); align-items: start; }
.ck-access__name { margin: 0 0 20px; font-size: 2.1rem; color: #333333; font-weight: 400; }
.ck-access__list { display: flex; flex-direction: column; gap: 14px; }
.ck-access__item { display: flex; gap: 12px; align-items: center; }
.ck-access__item--top { align-items: flex-start; }
.ck-access__ico { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; background: #fff; border: 1px solid #F1E2C7; display: flex; align-items: center; justify-content: center; }
.ck-access__ico i { font-size: 16px; color: #F2922A; }
.ck-access__item span:last-child { font-size: 1.45rem; line-height: 1.85; color: #4A4339; }
.ck-access__item .ck-num { font-size: 1.6rem; }
.ck-access__map { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(120, 80, 20, 0.12); border: 4px solid #fff; }
.ck-access__map iframe { display: block; height: 320px; width: 100%; border: 0; }

/* ============================================================
 * ページトップボタン位置調整（FA6 アイコン）
 * ============================================================ */
.page-top__link i { font-size: 1.6rem; }

/* スマホ専用の改行（PCでは非表示） */
.sp-br { display: none; }

/* ============================================================
 * レスポンシブ微調整
 * ============================================================ */
@media (max-width: 767px) {
  .ck-timeline__year { width: 84px; }
  .ck-cta__tel-num { font-size: 2.4rem; }

  /* スマホ専用改行を有効化 */
  .sp-br { display: inline; }

  /* MV・flow・CONTACT帯のキャッチコピーを2行に収める */
  .ck-hero__title { font-size: clamp(1.5rem, 4.3vw, 2.1rem); line-height: 1.6; }
  .ck-flow-intro { font-size: clamp(1.5rem, 4.2vw, 1.9rem); }
  .ck-cta__title { font-size: clamp(1.5rem, 4.3vw, 2rem); line-height: 1.5; }

  /* リード文を左寄せに */
  .ck-lead { text-align: left; }
  .ck-ctel-lead { text-align: left; }

  /* フッター上CONTACT帯のタイトル・説明文を左寄せに */
  .ck-cta__title,
  .ck-cta__desc { text-align: left; }

  /* フッターのサイトマップナビを非表示 */
  .ck-footer__col--nav { display: none; }
}
@media (max-width: 600px) {
  .ck-deftable__th { flex-basis: 100%; }
}
