@charset "UTF-8";
/*
 * ======================================
 * 就労継続支援B型事業所 日和 / 合同会社ひつき — サイト固有CSS（site.css）
 * ======================================
 * 配色・フォントは scss/main.scss で @use "vars" with(...) により上書きし
 * main.css にコンパイル済み（base=#007C00 / sub=#005900 / accent=#F49013 /
 * body=#f7f1e4 / dark(footer)=#007C00）。
 * 本ファイルは claude-design-output の固有レイアウト・余白・装飾を
 * hy- プレフィックスで補完する（共通コンポーネントで再現できない差分のみ）。
 *
 * --------------------------------------
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * --------------------------------------
 * 共通
 *   .hy-inner            - design準拠の内側ラッパー（max1200 / 左右24px）
 *   .hy-inner--narrow    - 960px幅版
 *   .hy-heading / __bar  - 中央見出し＋緑オレンジ2色バー
 *   .hy-frame-organic    - 有機的角丸の画像フレーム
 *   .hy-btn(--accent/--outline/--sm) - 角丸ピルCTAボタン（→アイコン付き）
 * ヘッダー/フッター
 *   .hy-header / .hy-topbar / .hy-nav  - sticky上部帯＋テキストロゴ＋ナビ
 *   .sp-nav__foot-link                 - SPナビ下部リンク
 *   .hy-footer / __nav / __link / __btn / __map - 緑3カラムフッター
 * ページ固有
 *   TOP     : .hy-mv / .hy-intro / .hy-work / .hy-sdgs / .hy-gallery / .hy-shopbnr / .hy-flow
 *   about   : .hy-story / .hy-worklist / .hy-timeline / .hy-foryou
 *   products: .hy-prod-note / .hy-prod-grid
 *   facility: .hy-fac
 *   shop    : .hy-shop / .hy-total / .hy-order
 *   contact : .hy-contact / .hy-telband / .hy-form
 *   下層共通 : .hy-hero / .hy-breadcrumb
 *
 * --------------------------------------
 * 共通SCSSに不足していたもの（5分類）
 * --------------------------------------
 *   構造不足 : 上部インフォ帯付き sticky ヘッダー（hy-topbar+hy-header）
 *   装飾パターン不足 : 有機的（不規則）角丸フレーム（hy-frame-organic）、
 *                      緑×オレンジ2色見出しバー（hy-heading__bar）、
 *                      浮遊装飾PNGの自由配置（hy-deco）
 *   値の粒度不足 : design固有の余白（116px/104px等）・角丸（18〜26px）
 */

/* ==========================================================================
   ベース：和紙背景
   ========================================================================== */
body {
  color: #4a4a44;
  background-color: #f7f1e4;
  background-image: linear-gradient(rgba(250, 247, 240, .82), rgba(250, 247, 240, .82)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28347/washi-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}
body.is-nav-open { overflow: hidden; }

.hy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hy-inner--narrow { max-width: 960px; }
.hy-inner--form { max-width: 720px; margin-left: auto; margin-right: auto; }

.font-josefin { font-family: "Josefin Sans", sans-serif; letter-spacing: .1em; }

/* スクロールリビール（JS有効時のみ隠す→フェードイン。JS無効なら常時表示） */
.js-reveal .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .12s; }
.reveal--d2 { transition-delay: .24s; }

/* セクション余白（共通component .section を上書き：120px→100px） */
.section { padding: 100px 0; }
@media (max-width: 896px) { .section { padding: 60px 0; } }

/* ==========================================================================
   共通見出し（中央・緑オレンジ2色バー）
   ========================================================================== */
.hy-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
}
.hy-heading__en {
  font-size: 1.4rem;
  letter-spacing: .2em;
  color: #007C00;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hy-heading__ja {
  font-size: 3rem;
  color: #33322e;
  font-weight: 700;
  line-height: 1.6;
}
.hy-heading__ja .is-green { color: #007C00; }
.hy-heading__ja .is-lg { font-size: 3.6rem; }
.hy-heading__bar {
  display: flex;
  margin-top: 14px;
  width: 88px;
  height: 3px;
  border-radius: 3px;
  overflow: hidden;
}
.hy-heading__bar::before,
.hy-heading__bar::after {
  content: "";
  flex: 1;
}
.hy-heading__bar::before { background: #007C00; }
.hy-heading__bar::after { background: #F49013; }
.hy-heading--dashed .hy-heading__ja {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px dashed #007C00;
}
@media (max-width: 639px) {
  .hy-heading__ja {
    font-size: 2.2rem;
    text-align: center;
    text-wrap: balance;
    word-break: auto-phrase;
  }
  .hy-heading__ja .is-lg { font-size: 2.6rem; }
}

/* 左寄せ・破線下線の小見出し（storyやabout導入で使用） */
.hy-subhead {
  display: inline-block;
  font-size: 3rem;
  color: #33322e;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 2px dashed #007C00;
}
@media (max-width: 639px) { .hy-subhead { font-size: 2.2rem; } }

/* ==========================================================================
   共通ボタン（ピル型・→アイコン）
   ========================================================================== */
.hy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.4;
  transition: all .3s ease;
}
.hy-btn__arw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: transform .25s ease;
}
.hy-btn:hover .hy-btn__arw { transform: translateX(4px); }
.hy-btn--accent {
  background: #F49013;
  color: #fff;
  box-shadow: 0 8px 20px rgba(244, 144, 19, .28);
}
.hy-btn--accent .hy-btn__arw { background: rgba(255, 255, 255, .3); }
.hy-btn--accent:hover { opacity: 1; background: #e07f04; color: #fff; }
.hy-btn--outline {
  background: #fff;
  color: #007C00;
  border: 1.5px solid rgba(0, 124, 0, .4);
}
.hy-btn--outline .hy-btn__arw { border: 1.5px solid rgba(0, 124, 0, .4); }
.hy-btn--outline:hover { opacity: 1; background: #f0f7ee; color: #007C00; }
.hy-btn--sm { padding: 12px 24px; font-size: 1.45rem; font-weight: 700; }

/* 有機的角丸の画像フレーム（design頻出） */
.hy-frame-organic {
  border-radius: 48px 30px 44px 34px / 32px 46px 30px 48px;
  overflow: hidden;
  background-color: #e7ddc6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hy-frame-organic img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 639px) {
  /* スマホ：有機的角丸を控えめに */
  .hy-frame-organic { border-radius: 28px 18px 26px 20px / 18px 27px 18px 28px; }
}

/* 浮遊装飾PNG */
.hy-deco { position: absolute; pointer-events: none; height: auto; z-index: 0; }

/* ==========================================================================
   ヘッダー（sticky：上部インフォ帯＋メインバー）
   ========================================================================== */
.hy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.hy-topbar {
  background: #007C00;
  color: #dce8d8;
}
.hy-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 1.25rem;
}
.hy-topbar__sep { opacity: .4; }
.hy-topbar__link { color: #f3ead7; transition: opacity .2s ease; }
.hy-topbar__link:hover { opacity: .7; }
.hy-topbar__link--accent { color: #F9C784; }

.hy-header__bar {
  background: #f8f2e4;
  border-bottom: 2px solid #007C00;
  box-shadow: 0 2px 10px rgba(122, 90, 40, .08);
}
.hy-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hy-header__logo {
  font-size: 2.1rem;
  color: #005900;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .02em;
  line-height: 1.3;
}
.hy-header__logo:hover { opacity: .85; }
.hy-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.hy-nav__link {
  padding: 9px 14px;
  font-size: 1.4rem;
  color: #3a4a37;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.hy-nav__link:hover { background: rgba(0, 124, 0, .08); color: #007C00; opacity: 1; }
.hy-nav__link.is-current { color: #007C00; font-weight: 700; }

@media (max-width: 1100px) {
  .hy-nav { display: none; }
  .hy-header__logo { font-size: 1.8rem; }
  /* ハンバーガー切替時：ヘッダー上部の緑帯を非表示（リンクは下部固定ボタンへ） */
  .hy-topbar { display: none; }
}
@media (max-width: 639px) {
  .hy-header__logo { font-size: 1.8rem; white-space: normal; }
  .hy-header__inner { padding: 20px 16px; }
}

/* SPナビ：英語表記（HOME/ABOUT等）は非表示 */
.sp-nav__en { display: none; }
.sp-nav__link { justify-content: center; }
/* 日本語ラベルと矢印の間に余白 */
.sp-nav__link::after { margin-left: 5px; }

/* SPナビ下部リンク */
.sp-nav__foot-link {
  display: inline-block;
  color: rgba(255, 255, 255, .85);
  font-size: 1.4rem;
  margin: 0 10px;
  padding: 6px 0;
}
.sp-nav__foot-link:hover { color: #fff; opacity: 1; }

/* ==========================================================================
   フッター（緑・3カラム）
   ========================================================================== */
.hy-footer__body { background: #007C00; padding: 52px 0 32px; }
.hy-footer__body .footer-body__inner {
  max-width: 1200px;
  padding: 0 24px;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}
/* 共通コンポーネントの footer-body__left(width:35%) がgridセル内で縮み名称が折返すため打消し */
.hy-footer__body .footer-body__left { width: 100%; }
.hy-footer__name { white-space: nowrap; }
.hy-footer__name { font-size: 1.9rem; color: #fff; margin-bottom: 16px; }
.hy-footer__body .footer-body__info { color: #b9cbb5; font-size: 1.35rem; line-height: 2; }
.hy-footer__btns { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.hy-footer__btn {
  font-size: 1.3rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: opacity .2s ease;
}
.hy-footer__btn:hover { opacity: .85; }
.hy-footer__btn--accent { background: #F49013; color: #fff; font-weight: 700; }
.hy-footer__btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .35); }
.hy-footer__nav { display: flex; flex-direction: column; }
.hy-footer__link {
  display: block;
  font-size: 1.35rem;
  color: #d8e4d5;
  padding: 6px 0;
  transition: color .2s ease;
}
.hy-footer__link:hover { color: #fff; opacity: 1; }
.hy-footer__map {
  margin-top: 14px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
}
.hy-footer__map iframe { width: 100%; height: 100%; border: 0; }
.footer-bottom--dark .footer-bottom__copyright { color: #8ba187; }
/* スマホ：コピーライト下の余白を上下対称に（固定バー分はbodyで確保済み） */
@media (max-width: 639px) { .footer-bottom { padding-bottom: 20px; } }

@media (max-width: 896px) {
  .hy-footer__body .footer-body__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .hy-footer__body .footer-body__inner { grid-template-columns: 1fr; }
  /* スマホ時：フッターのナビリンク一覧を非表示（地図は残す） */
  .hy-footer__nav--links { display: none; }
  /* スマホ時：フッターを中央寄せでバランス調整 */
  .hy-footer__body .footer-body__inner { text-align: center; }
  .hy-footer__btns { justify-content: center; }
  .hy-footer__nav { align-items: center; }
}
/* ヤフオク文字リンクは下部固定ボタンにあるため非表示（ハンバーガー切替時） */
@media (max-width: 1100px) { .hy-footer__link--yahoo { display: none; } }

/* ==========================================================================
   ページトップボタン（緑丸）
   ========================================================================== */
.page-top__link { background: #007C00; color: #fff; }
.page-top__link:hover { background: #005900; color: #fff; opacity: 1; }

/* ==========================================================================
   スマホ用 下部固定ボタン（ヤフオク！ストア / Instagram）
   ========================================================================== */
.hy-fixbar { display: none; }
@media (max-width: 1100px) {
  .hy-fixbar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .15);
  }
  .hy-fixbar__btn {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 19px 6px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    text-align: center;
  }
  .hy-fixbar__btn:hover { opacity: 1; }
  .hy-fixbar__btn i { font-size: 1.7rem; }
  .hy-fixbar__btn--yahoo { background: #F49013; }
  .hy-fixbar__btn--insta { background: #007C00; }
  /* 固定ボタン分の余白を確保（フッター等が隠れないように） */
  body { padding-bottom: 48px; }
  /* ページトップボタンを固定ボタンの上へ */
  .page-top { bottom: 80px; right: 16px; }
}

/* ==========================================================================
   下層ページ共通ヒーロー（緑・有機シェイプ）＋パンくず
   ========================================================================== */
.hy-hero {
  position: relative;
  overflow: hidden;
  background: #007C00;
}
.hy-hero__deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hy-hero__inner {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 56px;
}
.hy-hero__title {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}
.hy-breadcrumb {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 1.3rem;
  color: #fff;
}
.hy-breadcrumb a { color: #fff; }
.hy-breadcrumb a:hover { opacity: .8; }
@media (max-width: 639px) {
  .hy-hero__inner { min-height: 200px; padding: 48px 20px 40px; }
  .hy-hero__title { font-size: 2.6rem; }
}

/* ==========================================================================
   TOP ページ
   ========================================================================== */
.hy-arw { display: inline-block; transition: transform .25s ease; }
a:hover .hy-arw, .hy-shopbnr__card:hover .hy-arw, .hy-flow__card:hover .hy-arw { transform: translateX(5px); }

/* --- メインビュー --- */
.hy-mv {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 94vh;
  min-height: 680px;
  overflow: hidden;
}
/* 非レスポンシブ：スマホ(固定viewport1200)ではMVを50vhに */
@media (max-width: 1200px) {
  .hy-mv { height: 50vh; min-height: 0; }
}
.hy-mv__photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  background-position: center center;
  background-size: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 16%, #000 34%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 16%, #000 34%);
}
/* MV CMSスライダー：写真枠いっぱいに表示（Swiper構造/単一imgどちらでも対応） */
.hy-mv__photo #cms-slider-1-1-area { position: absolute; inset: 0; width: 100%; height: 100%; }
.hy-mv__photo #cms-slider-1-1-area > *,
.hy-mv__photo .swiper,
.hy-mv__photo .swiper-wrapper,
.hy-mv__photo .swiper-slide { height: 100%; }
.hy-mv__photo #cms-slider-1-1-area img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hy-mv__leaf { position: absolute; top: 0; left: 0; width: min(340px, 26vw); z-index: 3; }
.hy-mv__cloud { left: 0; bottom: 130px; width: min(300px, 22vw); z-index: 2; opacity: .95; }
.hy-mv__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 120px; display: block; z-index: 4; pointer-events: none; }
.hy-mv__inner {
  position: relative;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}
.hy-mv__catch { width: min(700px, 56vw); height: auto; display: block; margin-left: -88px; margin-bottom: 30px; }
.hy-mv__btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 896px) {
  .hy-mv { height: auto; min-height: 80vh; padding: 40px 0 56px; display: flex; flex-direction: column; justify-content: flex-end; }
  .hy-mv__photo { width: 100%; opacity: .7; -webkit-mask-image: none; mask-image: none; }
  /* スマホ：MV画像は下端基準で表示 */
  .hy-mv__photo #cms-slider-1-1-area img,
  .hy-mv__photo #main_slider .main_slider__inner img { object-position: center bottom; }
  .hy-mv__wave { height: 40px; }
  .hy-mv__inner { padding: 0 10px; }
  .hy-mv__catch { width: min(420px, 95vw); margin-left: 0; margin-bottom: 14px; }
}
@media (max-width: 639px) {
  /* スマホ：MVボタンを2カラム＋小型化 */
  .hy-mv__btns { flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; }
  .hy-mv__btns .hy-btn { flex: 0 1 auto; min-width: 0; justify-content: center; white-space: nowrap; padding: 11px 15px; font-size: 1.2rem; gap: 6px; }
  .hy-mv__btns .hy-btn__arw { width: 18px; height: 18px; font-size: 1.05rem; }
  .hy-mv__leaf { width: 120px; }
}

/* --- 導入 --- */
.hy-intro { position: relative; overflow: hidden; background: #f7f1e4; }
.hy-intro__cloud { top: 20px; left: 20px; width: 260px; opacity: .85; }
.hy-intro__book { right: 0; bottom: 0; width: min(268px, 15vw); opacity: .8; }
.hy-intro__inner { position: relative; z-index: 1; }
.hy-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.hy-intro__img { min-height: 360px; width: 100%; }
.hy-intro__title { font-size: 3rem; color: #33322e; margin-bottom: 18px; line-height: 1.6; font-weight: 700; }
.hy-intro__title .is-green { color: #007C00; }
.hy-intro__text { font-size: 1.55rem; line-height: 2.05; color: #4a4a44; margin-bottom: 14px; }
.hy-intro__text:last-child { margin-bottom: 0; }
/* 三点リーダー…を下寄せ（既定は中央寄り） */
.hy-ellipsis { display: inline-block; transform: translateY(0.28em); }
@media (max-width: 896px) {
  .hy-intro__grid { grid-template-columns: 1fr; gap: 36px; }
  .hy-intro__img { min-height: 260px; }
  .hy-intro__title { font-size: 2.4rem; }
}
@media (max-width: 639px) {
  /* スマホ：装飾の本を1.8倍に（15vw→27vw） */
  .hy-intro__book { width: min(268px, 27vw); }
}

/* --- 日和のしごと --- */
.hy-work { position: relative; overflow: hidden; background: transparent; }
.hy-work__wave { position: absolute; top: -1px; left: 0; width: 100%; height: 90px; display: block; pointer-events: none; }
.hy-work__plum { top: 40px; left: -35px; width: 240px; }
.hy-work__plum-r { top: 40px; right: -35px; width: 240px; transform: scaleX(-1); }
.hy-work__temari { bottom: 4px; right: 24px; width: 130px; }
.hy-work__inner { position: relative; z-index: 1; }
.hy-work__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.hy-work__thumb { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 2px 4px 6px -1px rgba(0,0,0,.15); }
.hy-work__img { width: 100%; height: 300px; background-position: center; background-size: cover; background-color: #e7ddc6; }
.hy-work__label {
  position: absolute; left: 0; bottom: 0; margin: 0;
  background: #007C00; color: #fff;
  font-size: 2rem; font-weight: 700; letter-spacing: .04em;
  padding: 12px 26px; border-top-right-radius: 18px;
}
.hy-work__label--accent { background: #F49013; }
.hy-work__text { font-size: 1.45rem; line-height: 1.95; color: #4a4a44; margin-top: 18px; }
@media (max-width: 896px) {
  /* タブレット時から：梅装飾を透過 */
  .hy-work__plum, .hy-work__plum-r { opacity: .45; }
  /* タブレット：手まりを小さくして文字への被りを回避（角に収める） */
  .hy-work__temari { width: 78px; }
}
@media (max-width: 639px) {
  .hy-work__grid { grid-template-columns: 1fr; gap: 40px; }
  .hy-work__temari { width: 66px; }
  /* スマホ時：さくら（梅）装飾を小さく */
  .hy-work__plum, .hy-work__plum-r { width: 130px; }
  .hy-work__label { font-size: 1.6rem; }
}

/* --- SDGs 帯 --- */
.hy-sdgs {
  background-color: #0a6b0a;
  background-image: linear-gradient(rgba(0,64,0,.68), rgba(0,64,0,.68)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28347/bg-green-pattern.png");
  background-size: auto, 460px;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.hy-sdgs__mascot { display: none; }
.hy-sdgs__box {
  position: relative;
  padding: 55px 0;
  background: #f7f1e4;
  width: 88%;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 14px;
  border: 2px solid #007C00;
  overflow: hidden;
}
.hy-sdgs__body { text-align: center; max-width: 760px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.hy-sdgs__title { font-size: 3rem; color: #33322e; margin-bottom: 4px; font-weight: 700; line-height: 1.6; }
.hy-sdgs__sdgs { color: #007C00; font-size: 3.8rem; }
.hy-sdgs__ribbon { display: block; width: 100%; max-width: 560px; height: auto; margin: 20px auto 28px; }
.hy-sdgs__text { font-size: 1.55rem; line-height: 2.05; color: #4a4a44; margin: 0; text-align: center; }
@media (max-width: 639px) {
  .hy-sdgs__title { font-size: 2.2rem; }
  .hy-sdgs__sdgs { font-size: 2.8rem; }
  .hy-sdgs__mascot { width: 120px; }
  .hy-sdgs__text { font-size: 1.4rem; }
}

/* --- 商品ギャラリー --- */
.hy-gallery { background: #f7f1e4; }
.hy-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 34px; }
.hy-gallery__item { border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid rgba(0,124,0,.14); box-shadow: 0 10px 26px rgba(122,90,40,.1); }
.hy-gallery__img { width: 100%; height: 240px; background-position: center; background-size: cover; background-color: #e7ddc6; }
.hy-shopbnr { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hy-shopbnr__card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid rgba(0,124,0,.14);
  border-radius: 20px; padding: 34px 34px 34px 36px;
  box-shadow: 0 12px 30px rgba(122,90,40,.08);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.hy-shopbnr__card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(122,90,40,.14); opacity: 1; }
.hy-shopbnr__card::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 6px; }
.hy-shopbnr__card--accent::before { background: #F49013; }
.hy-shopbnr__card--green::before { background: #007C00; }
/* ホバーで色が変わりリンクと分かるように */
.hy-shopbnr__card--accent:hover { background: #fef4e9; border-color: rgba(244,144,19,.45); }
.hy-shopbnr__card--accent:hover .hy-shopbnr__title { color: #F49013; }
.hy-shopbnr__card--green:hover { background: #eef6ec; border-color: rgba(0,124,0,.4); }
.hy-shopbnr__card--green:hover .hy-shopbnr__title { color: #007C00; }
.hy-shopbnr__deco { position: absolute; top: 14px; right: 14px; width: 132px; height: auto; pointer-events: none; }
.hy-shopbnr__deco--sm { width: 96px; }
.hy-shopbnr__title { font-size: 2rem; color: #33322e; font-weight: 700; line-height: 1.5; transition: color .3s ease; }
.hy-shopbnr__text { font-size: 1.4rem; line-height: 1.9; color: #6a6a63; }
.hy-shopbnr__btn {
  align-self: flex-start; margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; padding: 12px 24px; border-radius: 26px;
  font-size: 1.45rem; font-weight: 700;
}
.hy-shopbnr__btn--accent { background: #F49013; }
.hy-shopbnr__btn--green { background: #007C00; }
@media (max-width: 639px) {
  .hy-gallery__grid { grid-template-columns: 1fr; }
  .hy-shopbnr { grid-template-columns: 1fr; }
  .hy-shopbnr__title { font-size: 1.7rem; }
}

/* --- 利用フロー --- */
.hy-flow {
  background-color: #f1e8d6;
  background-image: linear-gradient(rgba(241,232,214,.82), rgba(241,232,214,.82)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28347/bg-pattern.png");
  background-size: auto, 200px;
}
.hy-flow__card {
  position: relative;
  background: rgba(251,246,234,.92);
  border-radius: 26px;
  padding: 48px 52px;
  border: 1px solid rgba(0,124,0,.14);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: stretch;
  overflow: hidden;
}
.hy-flow__img { min-height: 320px; width: 100%; }
.hy-flow__badge { display: inline-block; font-size: 1.3rem; color: #fff; background: #007C00; border-radius: 20px; padding: 5px 16px; margin-bottom: 12px; }
.hy-flow__title { font-size: 2.7rem; color: #33322e; margin-bottom: 18px; line-height: 1.6; font-weight: 700; display: inline-block; padding-bottom: 12px; border-bottom: 2px dashed #007C00; }
.hy-flow__text { font-size: 1.55rem; line-height: 2.05; color: #4a4a44; margin-bottom: 14px; }
.hy-flow__steps { display: flex; align-items: center; gap: 6px; margin: 24px 0; flex-wrap: wrap; }
.hy-flow__step { display: flex; align-items: center; background: #fff; border: 2px solid #007C00; border-radius: 24px; padding: 8px 16px; font-size: 1.35rem; color: #007C00; white-space: nowrap; }
.hy-flow__arw { color: #F49013; font-size: 2.6rem; }
.hy-flow__cta {
  position: absolute; right: 0; bottom: 0;
  display: inline-flex; align-items: center; gap: 10px;
  background: #F49013; color: #fff;
  padding: 16px 30px; border-top-left-radius: 22px;
  font-size: 1.55rem;
}
.hy-flow__cta:hover { opacity: 1; background: #e07f04; color: #fff; }
@media (max-width: 896px) {
  .hy-flow__card { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px 76px; }
  .hy-flow__img { min-height: 240px; }
  .hy-flow__title { font-size: 2.2rem; }
}
@media (max-width: 639px) {
  /* フロー：縦積み・下向き矢印・中央でバランス良く */
  .hy-flow__card { padding: 25px 20px 72px; }
  .hy-flow__steps { flex-direction: column; flex-wrap: nowrap; align-items: center; gap: 6px; }
  .hy-flow__step { justify-content: center; min-width: 190px; padding: 9px 22px; font-size: 1.4rem; }
  .hy-flow__arw { font-size: 2.4rem; line-height: .6; transform: rotate(90deg); }
}

/* ==========================================================================
   about ページ
   ========================================================================== */
/* --- ストーリー --- */
.hy-story { position: relative; overflow: hidden; background: #fdfcf8; }
.hy-story__cloud-l { top: 60px; left: -80px; width: min(340px, 26vw); opacity: .45; }
.hy-story__leaf { top: 0; right: 0; width: min(380px, 30vw); transform: scaleX(-1); opacity: .9; z-index: 0; }
.hy-story__cloud-r { bottom: 60px; right: -80px; width: min(340px, 26vw); opacity: .45; }
.hy-story__inner { position: relative; z-index: 1; }
.hy-story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.hy-story__img { min-height: 420px; width: 100%; }
.hy-story__lead { margin-bottom: 28px; }
.hy-story__title { font-size: 2.5rem; color: #007C00; margin-bottom: 18px; line-height: 1.6; font-weight: 700; }
@media (max-width: 639px) { .hy-story__title { font-size: 1.9rem; } }
.hy-story__text { font-size: 1.55rem; line-height: 2.05; color: #4a4a44; margin-bottom: 14px; }
@media (max-width: 896px) {
  .hy-story__grid { grid-template-columns: 1fr; gap: 36px; }
  .hy-story__img { min-height: 280px; }
}

/* --- 作業内容 --- */
.hy-worklist {
  background-color: #f7f1e4;
  background-image: linear-gradient(rgba(247,241,228,.9), rgba(247,241,228,.9)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28347/bg-pattern.png");
  background-size: auto, 200px;
}
.hy-worklist__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hy-worklist__card {
  position: relative; overflow: hidden;
  background: #fbf6ea; border: 1px solid rgba(0,124,0,.14);
  border-radius: 22px; box-shadow: 0 10px 30px rgba(122,90,40,.08);
  display: flex; flex-direction: column;
}
.hy-worklist__thumb { position: relative; overflow: hidden; border-top-left-radius: 22px; border-top-right-radius: 22px; }
.hy-worklist__img { width: 100%; height: 210px; background-position: center; background-size: cover; background-color: #e7ddc6; }
.hy-worklist__num {
  position: absolute; right: 0; bottom: 0;
  background: #F49013; color: #fff;
  font-family: "Josefin Sans", sans-serif; font-size: 2rem; font-weight: 600;
  padding: 18px 12px 10px 18px; border-top-left-radius: 40px; line-height: 1;
}
.hy-worklist__new {
  position: absolute; top: 12px; left: 12px;
  background: #E04B3A; color: #fff; font-size: 1.25rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; letter-spacing: .05em;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.hy-worklist__body { padding: 20px; background: #fff; flex: 1; }
.hy-worklist__ttl { font-size: 1.9rem; color: #007C00; margin-bottom: 10px; font-weight: 700; }
.hy-worklist__desc { font-size: 1.4rem; line-height: 1.9; color: #4a4a44; }
.hy-worklist__cta {
  margin: 40px auto 0; max-width: 760px;
  background: #007C00; border-radius: 22px; padding: 30px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.hy-worklist__cta-text { color: #f7ece0; font-size: 1.6rem; line-height: 1.9; margin: 0; flex: 1; min-width: 320px; }
.hy-worklist__cta-btn { flex: 0 0 auto; background: #F49013; color: #fff; font-weight: 700; padding: 13px 26px; border-radius: 26px; font-size: 1.5rem; white-space: nowrap; }
.hy-worklist__cta-btn:hover { opacity: 1; background: #e07f04; color: #fff; }
@media (max-width: 896px) { .hy-worklist__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) {
  .hy-worklist__grid { grid-template-columns: 1fr; }
  /* スマホ：CTAを1カラム（テキスト→ボタンで縦積み） */
  .hy-worklist__cta { flex-direction: column; align-items: center; text-align: center; }
  .hy-worklist__cta-text { min-width: 0; flex: none; width: 100%; font-size: 1.3rem; text-align: left; }
}

/* --- 日和での1日（タイムライン） --- */
.hy-day { position: relative; overflow: hidden; background: #faf7f0; }
.hy-day__il { width: 130px; opacity: .9; z-index: 0; }
.hy-day__il--tl { top: 130px; left: 3%; }
.hy-day__il--tr { top: 105px; right: 4%; width: 120px; }
.hy-day__il--bl { bottom: 150px; left: 4%; width: 120px; }
.hy-day__il--br { bottom: 110px; right: 3%; }
@media (max-width: 1100px) { .hy-day__il { display: none; } }
.hy-day__inner { position: relative; z-index: 1; }
.hy-day__head { text-align: center; margin-bottom: 40px; }
.hy-day__sub { font-size: 1.9rem; color: #33322e; font-weight: 700; margin-top: 28px; }
.hy-timeline { max-width: 820px; margin: 0 auto; }
.hy-timeline__row { display: grid; grid-template-columns: 90px 40px 1fr; align-items: stretch; column-gap: 8px; }
.hy-timeline__time { font-size: 1.9rem; color: #007C00; font-weight: 600; text-align: right; padding-top: 22px; }
.hy-timeline__axis { position: relative; display: flex; justify-content: center; }
.hy-timeline__axis::before,
.hy-timeline__axis::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; background: #bcd9b3; }
.hy-timeline__axis::before { top: 0; bottom: 50%; }
.hy-timeline__axis::after { top: 50%; bottom: -18px; }
.hy-timeline__row--first .hy-timeline__axis::before { display: none; }
.hy-timeline__row--last .hy-timeline__axis::after { display: none; }
.hy-timeline__dot { position: relative; margin-top: 28px; width: 15px; height: 15px; border-radius: 50%; background: #faf7f0; border: 3px solid #007C00; z-index: 1; }
.hy-timeline__card { background: #fff; border: 1px solid rgba(0,124,0,.12); border-radius: 14px; box-shadow: 0 6px 16px rgba(122,90,40,.07); padding: 16px 24px; margin: 9px 0; }
.hy-timeline__ttl { font-size: 1.8rem; color: #33322e; font-weight: 700; }
.hy-timeline__desc { font-size: 1.35rem; line-height: 1.8; color: #6a6a63; margin-top: 4px; }
@media (max-width: 639px) {
  /* スマホ：縦線を左端に、時刻はカードの上へ（2カラムに再配置） */
  .hy-timeline__row {
    grid-template-columns: 20px 1fr;
    grid-template-areas:
      "axis time"
      "axis card";
    column-gap: 14px;
  }
  .hy-timeline__axis { grid-area: axis; }
  .hy-timeline__time {
    grid-area: time;
    text-align: left;
    padding-top: 0;
    font-size: 1.7rem;
    line-height: 1;
    margin: 2px 0 6px;
  }
  .hy-timeline__card { grid-area: card; margin: 0 0 18px; padding: 14px 18px; }
  /* 縦線を上下の丸をつなぐ全高ラインに */
  .hy-timeline__dot { margin-top: 2px; }
  .hy-timeline__axis::before { top: 10px; bottom: 0; }
  .hy-timeline__axis::after { display: none; }
  .hy-timeline__row--first .hy-timeline__axis::before { display: block; }
  .hy-timeline__row--last .hy-timeline__axis::before { display: none; }
}

/* --- FOR YOU --- */
.hy-foryou__box {
  background-color: #007C00;
  background-image: linear-gradient(rgba(0,88,0,.82), rgba(0,88,0,.82)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28347/join.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 48px 52px;
  color: #f7ece0;
}
.hy-foryou__en { font-size: 1.3rem; letter-spacing: .2em; color: #F0C9A0; font-weight: 600; }
.hy-foryou__title { font-size: 2.7rem; margin: 10px 0 16px; font-weight: 700; color: #fff; line-height: 1.5; }
.hy-foryou__text { font-size: 1.55rem; line-height: 2.05; color: #d7ead2; margin-bottom: 26px; max-width: 760px; }
.hy-foryou__btn { display: inline-block; background: #F49013; color: #fff; padding: 14px 30px; border-radius: 28px; font-size: 1.55rem; }
.hy-foryou__btn:hover { opacity: 1; background: #e07f04; color: #fff; }
@media (max-width: 639px) {
  .hy-foryou__box { padding: 32px 24px; }
  .hy-foryou__title { font-size: 2.1rem; }
}

/* ==========================================================================
   下層共通の狭め余白セクション
   ========================================================================== */
.hy-sec56 { padding: 56px 0; }
@media (max-width: 639px) { .hy-sec56 { padding: 40px 0; } }

/* コンテンツが少ないページ（施設概要・商品紹介）用の広め上下余白 */
.hy-sec-lg { padding: 88px 0; }
@media (max-width: 639px) { .hy-sec-lg { padding: 56px 0; } }

/* ==========================================================================
   products ページ
   ========================================================================== */
.hy-prod-note { margin-bottom: 36px; text-align: center; }
.hy-prod-note__text { margin: 0 auto; font-size: 1.55rem; line-height: 1.9; color: #4a4a44; max-width: 820px; }
.hy-prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hy-prod-card {
  display: block; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.07); background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hy-prod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(122,90,40,.14); opacity: 1; }
.hy-prod-card__img { position: relative; width: 100%; height: 340px; background-position: center; background-size: contain; background-repeat: no-repeat; background-color: #f2f2f2; }
.hy-prod-card__badge { position: absolute; top: 12px; right: 12px; background: #F49013; color: #fff; font-size: 1.2rem; font-weight: 700; padding: 5px 13px; border-radius: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.hy-prod-card__body { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hy-prod-card__ttl { font-size: 1.55rem; color: #007C00; font-weight: 700; margin: 0; }
.hy-prod-card__price { font-size: 1.3rem; color: #8a8a80; margin: 0; white-space: nowrap; }
.hy-prod-foot { text-align: center; font-size: 1.35rem; color: #8a8a80; margin-top: 30px; }
@media (max-width: 896px) { .hy-prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) {
  .hy-prod-grid { grid-template-columns: 1fr; }
  .hy-prod-note__text { min-width: 0; margin: 0 auto; font-size: 1.4rem; text-align: left; }
}

/* ==========================================================================
   facility ページ
   ========================================================================== */
.hy-sec-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #33322e;
  line-height: 1.3;
  padding-left: 16px;
  border-left: 5px solid #007C00;
  margin-bottom: 24px;
}
.hy-fac__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: stretch; }
.hy-fac__col { display: flex; flex-direction: column; }
.hy-fac__tablewrap { background: #fff; border: 1px solid rgba(0,124,0,.14); border-radius: 22px; padding: 26px; box-shadow: 0 10px 30px rgba(122,90,40,.08); }
.hy-fac-table { width: 100%; border-collapse: collapse; }
.hy-fac-table tr { border-bottom: 1px dashed rgba(0,124,0,.22); }
.hy-fac-table tr:last-child { border-bottom: none; }
.hy-fac-table th { text-align: left; vertical-align: top; padding: 16px 0; width: 120px; font-size: 1.4rem; color: #007C00; font-weight: 400; }
.hy-fac-table td { padding: 16px 12px; font-size: 1.5rem; color: #33322e; line-height: 1.7; }
.hy-fac__note { display: inline-block; font-size: 0.85em; color: #77766f; }
.hy-fac__map { border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); flex: 1; min-height: 420px; }
.hy-fac__map iframe { width: 100%; height: 100%; border: 0; }
.hy-fac__mapbtn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #fff; border: 1.5px solid #007C00; color: #007C00; padding: 13px; border-radius: 26px; font-size: 1.5rem; }
.hy-fac__mapbtn:hover { background: #007C00; color: #fff; opacity: 1; }
@media (max-width: 639px) { .hy-fac__map { min-height: 240px; } }
@media (max-width: 896px) {
  .hy-fac__grid { grid-template-columns: 1fr; gap: 36px; }
  .hy-fac-table th { width: 73px; font-size: 1.3rem; }
  .hy-fac-table td { padding: 16px 12px; font-size: 1.3rem; }
}

/* ==========================================================================
   フォーム共通（shop / contact）
   ========================================================================== */
.hy-form {
  background: #fff; border: 1px solid rgba(0,124,0,.14);
  border-radius: 22px; padding: 28px; box-shadow: 0 10px 30px rgba(122,90,40,.08);
}
.hy-form--tinted { background: #fbf6ea; }
.hy-field { display: block; margin-bottom: 20px; }
.hy-field__label { display: block; font-size: 1.4rem; color: #007C00; margin-bottom: 8px; }
.hy-req { color: #F49013; margin-left: 6px; font-size: 1.2rem; }
.hy-opt { color: #8a8a80; margin-left: 6px; font-size: 1.2rem; }
.hy-ipt {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid rgba(0,124,0,.3); border-radius: 12px;
  font-size: 1.5rem; font-family: inherit; background: #fff; color: #33322e;
}
textarea.hy-ipt { line-height: 1.8; resize: vertical; }
.hy-ipt:focus { outline: none; border-color: #007C00; }
.hy-ipt--readonly { background: #f7f2e6; }
.hy-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hy-check { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 1.5rem; color: #33322e; cursor: pointer; }
.hy-check input { width: 18px; height: 18px; accent-color: #007C00; }
.hy-check-group { display: flex; gap: 24px; flex-wrap: wrap; }
.hy-radio-group { display: flex; gap: 28px; }
.hy-radio { display: flex; align-items: center; gap: 8px; font-size: 1.5rem; color: #33322e; cursor: pointer; }
.hy-radio input { width: 17px; height: 17px; accent-color: #007C00; }
.hy-form__submit {
  width: 100%; background: #F49013; color: #fff; border: none;
  padding: 16px; border-radius: 28px; font-size: 1.6rem; cursor: pointer;
  font-family: inherit; margin-top: 6px; transition: background .3s ease;
}
.hy-form__submit:hover { background: #e07f04; }

.hy-formhead { text-align: center; margin-bottom: 34px; }
@media (max-width: 639px) { .hy-formhead { margin-top: 30px; } }
.hy-formhead__ttl { font-size: 3rem; color: #33322e; font-weight: 700; line-height: 1.6; }
@media (max-width: 639px) { .hy-formhead__ttl { font-size: 2.2rem; } }
.hy-formhead__text { font-size: 1.5rem; color: #4a4a44; margin: 18px auto 0; line-height: 1.9; }
@media (max-width: 639px) { .hy-formhead__text { font-size: 1.3rem; text-align: left; } .hy-formhead__text br { display: none; } }
.hy-formhead__bar { margin: 14px auto 0; }
@media (max-width: 639px) { .hy-form__row { grid-template-columns: 1fr; gap: 0; } }

/* ==========================================================================
   shop ページ
   ========================================================================== */
.hy-shop { background: #faf7f0; padding: 56px 0 8px; }
.hy-shop-head { text-align: center; margin-bottom: 34px; }
.hy-shop-head__ttl { font-size: 3rem; color: #33322e; font-weight: 700; line-height: 1.6; }
@media (max-width: 639px) { .hy-shop-head__ttl { font-size: 2.2rem; } }
.hy-shop-head__text { font-size: 1.5rem; line-height: 2; color: #4a4a44; margin: 12px auto 0; max-width: 720px; }
@media (max-width: 639px) {
  .hy-shop-head__text { text-align: left; }
}
.hy-shop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.hy-prodsel {
  background: #fff; border: 1px solid rgba(0,124,0,.14);
  border-radius: 22px; padding: 28px; box-shadow: 0 10px 30px rgba(122,90,40,.08); height: 100%;
}
.hy-prodsel__grid { display: grid; grid-template-columns: 160px 1fr; gap: 22px; align-items: flex-start; }
.hy-prodsel__main { display: block; position: relative; cursor: zoom-in; }
.hy-prodsel__mainimg {
  width: 100%; height: 200px;
  border-radius: 24px 15px 22px 17px / 16px 23px 15px 24px;
  overflow: hidden; background-position: center top; background-size: cover; background-color: #e7ddc6;
}
@media (max-width: 639px) {
  /* スマホ：メイン画像の角丸を控えめに */
  .hy-prodsel__mainimg { border-radius: 18px 12px 16px 13px / 12px 17px 12px 18px; }
}
.hy-prodsel__count { position: absolute; right: 8px; bottom: 8px; background: rgba(0,0,0,.6); color: #fff; font-size: 1.15rem; padding: 3px 9px; border-radius: 12px; }
.hy-prodsel__thumbs { display: flex; gap: 6px; margin-top: 6px; }
.hy-prodsel__thumb { display: block; width: 46px; height: 46px; border-radius: 8px; border: 1px solid rgba(0,124,0,.2); background-position: center; background-size: cover; cursor: zoom-in; }
.hy-prodsel__name { font-size: 1.8rem; color: #007C00; margin-bottom: 6px; font-weight: 400; line-height: 1.4; min-height: 2.8em; }
.hy-prodsel__price { font-size: 2.4rem; color: #F49013; font-weight: 600; margin-bottom: 12px; }
.hy-prodsel__tax { font-size: 1.2rem; color: #8a8a80; margin-left: 6px; font-family: "Noto Sans JP", sans-serif; letter-spacing: 0; }
.hy-prodsel__spec { font-size: 1.25rem; line-height: 1.85; color: #4a4a44; white-space: pre-line; margin-bottom: 16px; }
.hy-qty { display: flex; align-items: center; gap: 14px; border-top: 1px dashed rgba(0,124,0,.25); padding-top: 14px; }
.hy-select-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 12px; border: 1.5px solid #007C00;
  background: #fff; color: #007C00; font-family: inherit; font-size: 1.05rem; font-weight: 600;
  cursor: pointer; transition: background .18s, color .18s;
}
.hy-select-btn:hover { background: #f0f7f0; }
.hy-select-btn.is-selected { background: #007C00; color: #fff; }
.hy-select-btn__icon { font-size: 1.2em; }
.hy-total { background: #007C00; padding: 48px 0; margin-top: 48px; }
.hy-total__box {
  background: #fff; border: 2px solid #007C00; border-radius: 16px;
  padding: 18px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; color: #33322e; max-width: 560px; margin: 0 auto;
}
.hy-total__label { font-size: 1.6rem; color: #007C00; }
#grand-total { font-size: 3rem; font-weight: 600; color: #a9a9a2; }
.hy-total__note { font-size: 1.3rem; color: #d7ead2; margin: 16px 4px 0; text-align: center; }
.hy-order { background: #faf7f0; padding: 44px 0 56px; }
.hy-order__form-wrap { max-width: 880px; }
.hy-order-summary { background: #fff; border: 1px solid rgba(0,124,0,.14); border-radius: 16px; padding: 20px 24px; margin-bottom: 24px; box-shadow: 0 6px 20px rgba(122,90,40,.06); }
.hy-order-summary__label { font-size: 1.4rem; color: #007C00; font-weight: 700; margin-bottom: 10px; }
.hy-order-summary__list { font-size: 1.45rem; line-height: 1.9; color: #33322e; white-space: pre-line; min-height: 1.9em; }
.hy-order-summary__list.is-empty { color: #a9a9a2; }
.hy-order-summary__total { display: flex; justify-content: flex-end; align-items: baseline; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(0,124,0,.25); }
.hy-order-summary__total-label { font-size: 1.4rem; color: #007C00; }
.hy-order__total-row { display: flex; justify-content: flex-end; align-items: baseline; gap: 12px; margin: -8px 2px 24px; }
.hy-order__total-label { font-size: 1.4rem; color: #007C00; }
#form-total { font-size: 2.2rem; color: #F49013; font-weight: 600; }
@media (max-width: 896px) { .hy-shop__grid { grid-template-columns: 1fr; } }
@media (max-width: 639px) {
  /* スマホ：画像＋サムネを上部に、情報をフル幅で下に（数量ステッパーに余裕） */
  .hy-prodsel { padding: 20px; }
  .hy-prodsel__grid { display: block; }
  .hy-prodsel__media { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: start; margin-bottom: 16px; }
  .hy-prodsel__mainimg { height: 150px; }
  .hy-prodsel__thumbs { flex-direction: column; margin-top: 0; }
  .hy-prodsel__name { min-height: 0; }
}

/* ==========================================================================
   contact ページ
   ========================================================================== */
.hy-sec-cintro { padding: 56px 0 32px; }
.hy-sec-telband { padding: 16px 0 40px; }
.hy-mailform {
  background-color: #f1e8d6;
  background-image: linear-gradient(rgba(241,232,214,.85), rgba(241,232,214,.85)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28347/washi-bg.jpg");
  background-size: cover;
  background-position: center;
}
.hy-cint { max-width: 900px; margin: 0 auto; }
.hy-cint__text { font-size: 1.55rem; line-height: 2.05; color: #4a4a44; margin-bottom: 14px; text-align: center; }
.hy-cint__text--close { margin-top: 12px; margin-bottom: 0; text-align: center; }
.hy-cint__list { margin: 24px auto; padding: 0; width: fit-content; max-width: 100%; }
.hy-cint__item { font-size: 1.5rem; line-height: 1.6; color: #4a4a44; margin-bottom: 10px; padding-left: 24px; position: relative; }
/* 相談例：四角枠＋吹き出し */
.hy-cint__voices { max-width: 760px; margin: 26px auto; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 20px; }
.hy-cint__voice { position: relative; flex: 0 1 calc(50% - 10px); background: #fff; border: 1.5px solid rgba(0,124,0,.35); border-radius: 14px; padding: 13px 24px; font-size: 1.5rem; color: #33322e; margin: 0; max-width: 350px; box-shadow: 0 4px 12px rgba(122,90,40,.06); text-align: center; }
.hy-cint__voice::after { content: ""; position: absolute; left: 50%; bottom: -8px; width: 15px; height: 15px; margin-left: -7px; background: #fff; border-right: 1.5px solid rgba(0,124,0,.35); border-bottom: 1.5px solid rgba(0,124,0,.35); transform: rotate(45deg); }
/* スマホ時：お客様の声を1カラム（縦積み）に */
@media (max-width: 639px) {
  .hy-cint__voice { flex-basis: 100%; max-width: 100%; font-size: 1.4rem; }
}
.hy-cint__item::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 3px; background: #F49013; }
.hy-cint__img { width: 100%; height: 220px; }
.hy-telband {
  background: #007C00; border-radius: 24px; padding: 38px 44px; color: #eef7ec;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  max-width: 900px; margin: 0 auto;
}
.hy-telband__label { font-size: 1.5rem; color: #d7ead2; margin-bottom: 6px; }
.hy-telband__tel { font-size: 3rem; color: #fff; font-weight: 600; line-height: 1; }
.hy-telband__tel:hover { color: #fff; opacity: .85; }
.hy-telband__hours { font-size: 1.35rem; color: #b9cbb5; margin-top: 6px; }
.hy-telband__note { font-size: 1.35rem; color: #d7ead2; max-width: 260px; line-height: 1.9; }

/* お電話 ＋ メールフォームの2カラム */
.hy-contact2 { display: grid; grid-template-columns: 0.85fr 1.35fr; gap: 40px; align-items: start; }
.hy-telband--col { flex-direction: column; align-items: flex-start; justify-content: flex-start; text-align: left; max-width: none; margin: 0; gap: 0; }
.hy-telband--col .hy-telband__note { max-width: none; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.22); }
.hy-formhead--left { text-align: left; margin-bottom: 24px; }
.hy-formhead--left .hy-formhead__bar { margin-left: 0; margin-right: 0; }
@media (max-width: 896px) { .hy-contact2 { grid-template-columns: 1fr; gap: 28px; } }
/* PC時：メールフォームを左・お電話を右に入れ替え */
@media (min-width: 897px) {
  .hy-contact2 { grid-template-columns: 1.5fr 0.7fr; }
  .hy-contact2__main { grid-column: 1; grid-row: 1; }
  .hy-contact2__side { grid-column: 2; grid-row: 1; }
  /* フォームがある間はお電話ブロックを追従（sticky） */
  .hy-contact2__side { position: sticky; top: 100px; align-self: start; }
  .hy-telband--col { padding: 32px 34px; }
  .hy-telband--col .hy-telband__note { margin-top: 16px; padding-top: 14px; }
}
@media (max-width: 896px) { .hy-cint { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 639px) {
  .hy-cint__text, .hy-cint__text--close { text-align: left; }
  .hy-cint__text br { display: none; }
}
@media (max-width: 639px) {
  .hy-telband { padding: 28px 24px; }
  .hy-telband__tel { font-size: 3rem; }
}

/* ==========================================================================
   メインビュー CMSスライダー（#main_slider / Swiper構造）
   ========================================================================== */
#main_slider.slider_wrapper {
  --swiper-theme-color: #ffffff;
  --swiper-navigation-size: unset;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-stroke-width: 5;
  --swiper-pagination-bullet-inactive-color: #888;
  --swiper-pagination-bullet-size: unset;
  --swiper-wrapper-height: 98vh;
  --swiper-catch_width: auto;
  --swiper-css_catch_translate_x: 0px;
  --swiper-css_catch_translate_y: 0px;
  --swiper-pagination-bottom: auto;
  --swiper-pagination-top: calc(100% + var(--swiper-pagination-bullet-size) / 2);
  opacity: 0;
  position: relative;
  height: var(--swiper-wrapper-height);
}
#main_slider.slider_wrapper[data-did-init] { opacity: 1; }
#main_slider .swiper-button-prev,
#main_slider .swiper-button-next { z-index: 5; }
#main_slider .swiper-button-prev .asset-arrow-prev,
#main_slider .swiper-button-next .asset-arrow-next {
  fill: none;
  stroke: var(--swiper-theme-color);
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: var(--swiper-navigation-stroke-width);
}
#main_slider .swiper-button-prev:after,
#main_slider .swiper-container-rtl .swiper-button-next:after { content: ""; }
#main_slider .swiper-button-next:after,
#main_slider .swiper-container-rtl .swiper-button-prev:after { content: ""; }
#main_slider .main_slider__outer { position: relative; z-index: 1; height: var(--swiper-wrapper-height); }
#main_slider .main_slider__outer::before {
  content: ""; display: none; position: absolute; z-index: 2;
  width: 100%; height: 100%; top: 0; left: 0; bottom: 0; right: 0;
  margin: auto; border-radius: unset; opacity: 0.5;
}
#main_slider .main_slider { overflow: hidden; border-radius: unset; height: 100%; }
#main_slider .main_slider .swiper-wrapper { height: 100%; }
#main_slider .main_slider .swiper-wrapper .swiper-slide { overflow: hidden; height: 100%; }
#main_slider .main_slider .swiper-wrapper .swiper-slide .main_slider__inner { height: 100%; }
#main_slider .main_slider .swiper-wrapper .swiper-slide .main_slider__inner img { width: 100%; height: 100%; object-fit: cover; }
#main_slider .main_catch__outer { position: absolute; width: 100%; height: 100%; z-index: 3; }
#main_slider .main_catch { width: 100%; height: 100%; }
#main_slider .main_catch .swiper-wrapper { line-height: 1.1; align-items: center; }
#main_slider .main_catch .swiper-wrapper .main_catch__inner { height: 100%; display: grid; place-items: center center; }
#main_slider .main_catch .swiper-wrapper .main_catch__inner ul[data-markup-by-system] {
  list-style-type: none; margin-block-start: 0; margin-block-end: 0; padding-inline-start: 0;
}
#main_slider .main_catch .swiper-wrapper .main_catch__inner .main_catch__inner__created_by_js {
  width: var(--swiper-catch_width); overflow: hidden; max-width: 100vw;
  translate: var(--swiper-css_catch_translate_x) var(--swiper-css_catch_translate_y);
}
#main_slider .main_catch .swiper-wrapper .cms-header-text-wrapper { display: inline-block; }
@media screen and (min-width: 768px) { #main_slider.slider_wrapper { --swiper-catch_width: auto; } }
@media screen and (min-width: 992px) { #main_slider.slider_wrapper { --swiper-catch_width: auto; } }

/* MV枠に合わせる：スライダーを写真枠いっぱいに収める（98vh→枠100%、埋め込みでは常時表示） */
.hy-mv__photo #main_slider.slider_wrapper { --swiper-wrapper-height: 100%; height: 100%; opacity: 1; }
.hy-mv__photo #main_slider .main_slider__outer { height: 100%; }
/* CMSスライダー自身のキャッチ機能は当MVでは使わない（独自catch.pngを使用） */
.hy-mv__photo #main_slider .main_catch__outer { display: none; }
