/* =========================================================
   あおぞらファミリー サイト共通スタイル
   ・空色を基調にした、やわらかい暮らし系デザイン
   ・スマホ閲覧を最優先で作成
   ========================================================= */

:root {
  --blue: #4aa9e9;
  --deep-blue: #1f78b8;
  --sky: #eaf7ff;
  --soft-sky: #f5fbff;
  --yellow: #fff3c4;
  --orange: #f5a742;
  --green: #62b984;
  --text: #333333;
  --muted: #6f7b85;
  --line: #d9eaf5;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(55, 129, 180, 0.16);
  --radius: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; vertical-align: bottom; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(92%, var(--container)); margin: 0 auto; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: min(94%, 1180px); min-height: 76px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: 0.06em; color: var(--deep-blue); white-space: nowrap;
}
.logo__mark {
  height: 48px; width: auto; display: block;
  /* 雲アイコン(span)用の予備スタイル。img の場合は下記が優先される */
}
img.logo__mark {
  height: 48px; width: auto; object-fit: contain;
}
.logo__text-main { display: block; font-size: 19px; line-height: 1.2; }
.logo__text-sub { display: block; font-size: 11px; color: var(--muted); letter-spacing: 0.12em; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.nav a {
  padding: 10px 14px; border-radius: 999px; color: #45616f; transition: 0.2s ease;
}
.nav a:hover, .nav a.is-current { color: var(--deep-blue); background: var(--sky); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  font-weight: 800; letter-spacing: 0.04em; transition: 0.2s ease;
  border: 2px solid transparent; font-size: 14px; font-family: inherit;
}
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  box-shadow: 0 10px 20px rgba(32, 127, 190, 0.24);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(32, 127, 190, 0.28); }
.btn--outline { color: var(--deep-blue); background: var(--white); border-color: #b7ddf5; }
.btn--outline:hover { background: var(--sky); }
.btn--white { color: var(--deep-blue); background: var(--white); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1); }
.btn--white:hover { transform: translateY(-2px); }

/* ---------- ヒーロー（トップページ） ---------- */
.hero {
  position: relative; overflow: hidden; min-height: 560px;
  display: grid; align-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.95) 0 8%, transparent 9%),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.78) 0 9%, transparent 10%),
    radial-gradient(circle at 86% 60%, rgba(255, 243, 196, 0.9) 0 13%, transparent 14%),
    linear-gradient(180deg, #d8f2ff 0%, #f6fcff 58%, #ffffff 100%);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 50px 10px 0 rgba(255, 255, 255, 0.72), 105px 4px 0 rgba(255, 255, 255, 0.62);
}
.hero::before { width: 130px; height: 44px; top: 110px; left: 8%; }
.hero::after { width: 150px; height: 50px; right: 15%; top: 170px; opacity: 0.78; }
.hero__inner {
  position: relative; z-index: 2; width: min(92%, 1120px); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center;
}
.hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9); color: var(--deep-blue);
  font-size: 13px; font-weight: 800; box-shadow: var(--shadow);
}
.hero__title {
  margin-top: 22px; font-size: clamp(34px, 5vw, 58px); line-height: 1.25;
  letter-spacing: 0.08em; color: #245b78;
}
.hero__title span { display: block; color: var(--deep-blue); }
.hero__lead { margin-top: 22px; max-width: 560px; color: #496977; font-size: 17px; font-weight: 600; }
.hero__buttons { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card {
  position: relative; padding: 26px; border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.8);
}
.hero-card__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hero-card__item {
  min-height: 138px; border-radius: 20px; background: var(--white);
  padding: 18px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  box-shadow: 0 8px 18px rgba(66, 141, 190, 0.12);
}
.hero-card__icon { font-size: 36px; margin-bottom: 8px; }
.hero-card__name { font-weight: 900; color: #2d6f97; line-height: 1.4; }

/* ---------- 紹介ボックス ---------- */
.intro { padding: 46px 0 28px; text-align: center; }
.intro__box {
  display: inline-block; padding: 22px 34px; border-radius: var(--radius);
  background: var(--soft-sky); border: 1px solid var(--line); color: #45616f; font-weight: 700;
}

/* ---------- セクション共通 ---------- */
.section { padding: 76px 0; }
.section--soft { background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%); }
.section-head { text-align: center; margin-bottom: 34px; }
.section-head__en {
  color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: 0.18em;
}
.section-head__ja {
  margin-top: 4px; font-size: clamp(25px, 3vw, 34px); color: #2b5d78; letter-spacing: 0.08em;
}
.section-head__text { margin-top: 12px; color: var(--muted); font-weight: 600; }
.section-head--row {
  display: flex; align-items: end; justify-content: space-between; gap: 20px;
  text-align: left;
}
.section-head--row > div { text-align: left; }
.section-head__count { color: var(--muted); font-size: 14px; font-weight: 700; white-space: nowrap; }
.section__more { margin-top: 34px; text-align: center; }

/* ---------- 商品グリッド・カード ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  display: block; overflow: hidden; border-radius: 22px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(48, 113, 155, 0.1);
  transition: 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px); box-shadow: 0 14px 28px rgba(48, 113, 155, 0.16);
}
.product-card__image {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(135deg, #f4fbff, #ffffff);
  display: grid; place-items: center;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__image--empty { color: #9aa4ab; font-size: 13px; font-weight: 700; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 26px; padding: 0 10px; border-radius: 999px;
  color: var(--white); background: var(--orange);
  font-size: 11px; font-weight: 900; letter-spacing: 0.04em;
}
.product-card__body { padding: 18px; }
.product-card__category, .product-card__tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--sky); color: var(--deep-blue);
  font-size: 12px; font-weight: 800; margin-bottom: 9px;
}
.product-card__title {
  font-size: 16px; font-weight: 900; line-height: 1.55; color: #314d5c;
}
.product-card__text {
  margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__model { margin-top: 4px; font-size: 12px; color: var(--muted); }
.product-card__links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px;
}
.mini-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; border-radius: 999px;
  font-size: 12px; font-weight: 900;
  border: 1px solid #cfe5f3; color: var(--deep-blue); background: var(--white);
  transition: 0.2s ease;
}
.mini-link:hover { color: var(--white); background: var(--deep-blue); border-color: var(--deep-blue); }

/* ---------- カテゴリタイル（トップ） ---------- */
.category-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.category-tile {
  min-height: 84px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; text-align: center;
  font-weight: 900; color: #2c6381;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(62, 125, 168, 0.09);
  transition: 0.2s ease;
}
.category-tile:hover {
  color: var(--white); background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  transform: translateY(-3px);
}

/* ---------- 特長カード ---------- */
.feature {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card {
  padding: 28px; border-radius: 22px; background: var(--white);
  border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(48, 113, 155, 0.1);
  text-align: center;
}
.feature-card__icon {
  width: 62px; height: 62px; margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--sky); font-size: 30px;
}
.feature-card__title { color: #2b5d78; font-size: 18px; font-weight: 900; }
.feature-card__text { margin-top: 10px; color: var(--muted); font-size: 14px; text-align: left; }

/* ---------- 取扱説明書バンド ---------- */
.manual-band {
  padding: 64px 0; color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.22) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--blue), var(--deep-blue));
  text-align: center;
}
.manual-band__title { font-size: clamp(24px, 3vw, 34px); font-weight: 900; letter-spacing: 0.08em; }
.manual-band__text { margin-top: 10px; margin-bottom: 24px; font-weight: 700; }

/* ---------- ショップリンクバンド ---------- */
.shop-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 760px; margin: 0 auto;
}
.shop-link {
  display: block; padding: 24px; border-radius: 22px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(48, 113, 155, 0.1);
  text-align: center; transition: 0.2s ease;
}
.shop-link:hover { transform: translateY(-3px); }
.shop-link__name { display: block; color: #2b5d78; font-size: 20px; font-weight: 900; }
.shop-link__text { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }

/* ---------- 下層ページのヒーロー ---------- */
.page-hero {
  position: relative; overflow: hidden; padding: 86px 0 74px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255,255,255,.9) 0 8%, transparent 9%),
    radial-gradient(circle at 82% 28%, rgba(255,255,255,.76) 0 10%, transparent 11%),
    linear-gradient(180deg, #d8f2ff 0%, #f7fcff 100%);
  text-align: center;
}
.page-hero__en { color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: 0.18em; }
.page-hero__title {
  margin-top: 6px; color: #245b78; font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.08em; line-height: 1.35;
}
.page-hero__text {
  max-width: 720px; margin: 18px auto 0; color: #496977; font-weight: 700;
}

/* ---------- 検索エリア（商品一覧・取説） ---------- */
.search-area { margin-top: -32px; position: relative; z-index: 3; }
.search-box {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); padding: 24px;
}
.search-box__row {
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center;
}
.search-input {
  width: 100%; min-height: 50px; border: 1px solid #cfe5f3; border-radius: 999px;
  padding: 0 20px; font-size: 15px; outline: none; background: var(--soft-sky);
  font-family: inherit; color: var(--text);
}
.search-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(74, 169, 233, 0.15); }
.category-filter {
  margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px;
}
.category-filter button, .category-filter a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 0 15px; border-radius: 999px;
  background: var(--sky); color: #2b6f98;
  font-size: 13px; font-weight: 800; transition: 0.2s ease;
  border: 1px solid #cfe5f3; font-family: inherit;
}
.category-filter button:hover, .category-filter button.is-active,
.category-filter a:hover, .category-filter a.is-active {
  color: var(--white); background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  border-color: transparent; transform: translateY(-2px);
}

/* ---------- 商品一覧（サイドバー付きレイアウト） ---------- */
.layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: start; }
.side {
  position: sticky; top: 98px; border-radius: 22px;
  background: var(--soft-sky); border: 1px solid var(--line); padding: 22px;
}
.side__title { color: #2b5d78; font-size: 17px; font-weight: 900; margin-bottom: 14px; }
.side-list { display: grid; gap: 8px; }
.side-list a, .side-list button {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 10px 12px; border-radius: 12px; color: #45616f;
  font-size: 14px; font-weight: 800;
  background: rgba(255,255,255,.72); border: 1px solid transparent;
  width: 100%; text-align: left; font-family: inherit;
}
.side-list a:hover, .side-list button:hover,
.side-list a.is-active, .side-list button.is-active {
  color: var(--deep-blue); border-color: #cfe5f3; background: var(--white);
}
.side-list span:last-child { color: var(--muted); font-size: 12px; }

.notice {
  margin-top: 30px; border-radius: 22px;
  background: #fffaf0; border: 1px solid #f7d9a4;
  padding: 20px 24px; color: #7a5a22; font-size: 14px; font-weight: 700;
}
.no-result {
  text-align: center; padding: 60px 16px; color: var(--muted); font-weight: 700;
  background: var(--soft-sky); border: 1px dashed var(--line); border-radius: 22px;
}

/* ---------- 商品詳細ページ ---------- */
.detail-wrap { padding: 50px 0 70px; }
.detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.detail__gallery { position: sticky; top: 100px; }
.detail__main {
  aspect-ratio: 1 / 1; background: var(--soft-sky);
  border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  display: grid; place-items: center;
}
.detail__main img { width: 100%; height: 100%; object-fit: contain; background: var(--white); }
.detail__main--empty { color: #9aa4ab; font-size: 14px; font-weight: 700; }
.detail__thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 12px;
}
.detail__thumb {
  aspect-ratio: 1 / 1; padding: 0; overflow: hidden; cursor: pointer;
  border: 2px solid var(--line); border-radius: 12px; background: var(--white);
}
.detail__thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail__thumb--active { border-color: var(--deep-blue); box-shadow: 0 0 0 3px rgba(74,169,233,.18); }

.detail__category {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: var(--sky); color: var(--deep-blue);
  font-size: 12px; font-weight: 900;
}
.detail__name {
  font-size: clamp(22px, 2.5vw, 30px); margin-top: 12px;
  line-height: 1.4; color: #245b78; letter-spacing: 0.04em;
}
.detail__model { font-size: 14px; color: var(--muted); margin-top: 6px; font-weight: 700; }
.detail__desc { margin-top: 24px; font-size: 15px; color: #3d5562; }
.detail__desc p { min-height: 1em; margin: 0; }

.detail__heading {
  margin: 28px 0 12px;
  font-size: 13px; font-weight: 900; color: var(--orange); letter-spacing: 0.18em;
}
.buy-buttons { display: grid; gap: 12px; grid-template-columns: 1fr; }
.buy-btn { color: var(--white); }
.buy-btn--yahoo { background: linear-gradient(135deg, #ff4d4d, #ff0033); }
.buy-btn--rakuten { background: linear-gradient(135deg, #d80000, #a00000); }
.buy-btn--base { background: linear-gradient(135deg, #2d2d2d, #000000); }
.detail__note { margin-top: 10px; font-size: 12px; color: var(--muted); }

.detail__manual-btns { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.detail__back {
  display: inline-flex; margin-top: 30px; color: var(--deep-blue);
  font-weight: 800; font-size: 14px;
}
.detail__back:hover { text-decoration: underline; }
.detail-error { text-align: center; padding: 80px 0; }
.detail-error p { margin-bottom: 18px; color: var(--muted); font-weight: 700; }

/* ---------- 取扱説明書ページ ---------- */
.manual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.manual-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: 0 8px 22px rgba(48,113,155,.08);
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
  transition: 0.2s ease;
}
.manual-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(48,113,155,.14); }
.manual-card__top { display: flex; align-items: center; gap: 14px; }
.manual-card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--sky); display: grid; place-items: center;
  font-size: 26px; flex-shrink: 0;
}
.manual-card__category {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--soft-sky); color: var(--deep-blue);
  font-size: 11px; font-weight: 900; margin-bottom: 4px;
}
.manual-card__title { font-size: 16px; font-weight: 900; color: #314d5c; line-height: 1.5; }
.manual-card__meta { color: var(--muted); font-size: 12px; margin-top: 2px; font-weight: 700; }
.manual-card__text { color: var(--muted); font-size: 13px; line-height: 1.65; }
.manual-card__links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.manual-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; border-radius: 999px;
  color: var(--white); background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  font-size: 13px; font-weight: 900;
}
.manual-link:hover { transform: translateY(-2px); }
.manual-link--sub { background: var(--white); color: var(--deep-blue); border: 1px solid #cfe5f3; }
.manual-link--sub:hover { background: var(--sky); }

/* 取説 使い方ガイド */
.guide-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.guide-card {
  padding: 24px; background: var(--white); border-radius: 22px;
  border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(48,113,155,.08);
}
.guide-card__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  color: var(--white); display: grid; place-items: center;
  font-weight: 900; font-size: 15px; margin-bottom: 12px;
}
.guide-card__title { color: #2b5d78; font-size: 16px; font-weight: 900; }
.guide-card__text { margin-top: 8px; color: var(--muted); font-size: 13px; }

.notice-box {
  margin-top: 28px; padding: 22px 24px; border-radius: 22px;
  background: #fffaf0; border: 1px solid #f7d9a4;
}
.notice-box__title { color: #7a5a22; font-weight: 900; margin-bottom: 8px; }
.notice-box__list { padding-left: 18px; color: #7a5a22; font-size: 14px; font-weight: 700; }
.notice-box__list li { margin: 4px 0; list-style: disc; }

/* お問い合わせバンド (取説ページの末尾) */
.contact-band {
  padding: 56px 0; text-align: center;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}
.contact-band__title { font-size: clamp(22px, 2.5vw, 30px); color: #2b5d78; font-weight: 900; }
.contact-band__text { margin: 10px 0 18px; color: var(--muted); font-weight: 700; }

/* ---------- お店について ---------- */
.message {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
  padding: 56px 0 24px;
}
.message__label { color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: 0.18em; }
.message__title { font-size: clamp(26px, 3vw, 36px); margin-top: 8px; color: #245b78; line-height: 1.4; }
.message__text { margin-top: 18px; color: #45616f; line-height: 1.9; font-weight: 600; }
.message__visual {
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 25%, rgba(255,255,255,.92) 0 9%, transparent 10%),
    radial-gradient(circle at 75% 36%, rgba(255,255,255,.78) 0 11%, transparent 12%),
    linear-gradient(135deg, #c9eaff 0%, #f4fbff 100%);
  min-height: 280px; display: grid; place-items: center; padding: 28px;
  box-shadow: var(--shadow);
}
.message__mark { font-size: 64px; }
.message__visual-title { color: var(--deep-blue); font-weight: 900; font-size: 20px; margin-top: 10px; letter-spacing: 0.06em; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  padding: 28px; border-radius: 22px; background: var(--white);
  border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(48,113,155,.08);
  text-align: center;
}
.value-card__icon {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--sky);
  display: grid; place-items: center; font-size: 30px;
}
.value-card__title { color: #2b5d78; font-size: 17px; font-weight: 900; }
.value-card__text { margin-top: 10px; color: var(--muted); font-size: 14px; text-align: left; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px; min-height: 130px; border-radius: 22px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(48,113,155,.08);
  text-align: center;
}
.category-card__icon { font-size: 36px; margin-bottom: 10px; }
.category-card__name { color: #2b5d78; font-weight: 900; font-size: 14px; line-height: 1.4; }

/* 店舗情報テーブル風 */
.info-wrap {
  border-radius: 22px; background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(48,113,155,.08); overflow: hidden;
}
.info-row {
  display: grid; grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row__head {
  padding: 18px 22px; background: var(--soft-sky); color: #2b5d78;
  font-weight: 900; font-size: 14px;
}
.info-row__body { padding: 18px 22px; font-size: 14px; color: #45616f; }
.info-row__body a { color: var(--deep-blue); font-weight: 700; }

/* ---------- お問い合わせ ---------- */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
.contact-card {
  border-radius: 22px; background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(48,113,155,.08); padding: 26px;
}
.contact-card__title { color: #2b5d78; font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.contact-card__text { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.contact-card__buttons { display: grid; gap: 10px; }
.info-list { display: grid; gap: 14px; }
.info-list__row {
  display: grid; grid-template-columns: 110px 1fr; gap: 10px; align-items: start;
  font-size: 14px;
}
.info-list__label { color: #2b5d78; font-weight: 900; }
.info-list__value { color: #45616f; }
.info-list__value a { color: var(--deep-blue); font-weight: 700; }

.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px; }
.check-card {
  padding: 24px; border-radius: 22px;
  background: var(--soft-sky); border: 1px solid var(--line); text-align: center;
}
.check-card__icon {
  width: 54px; height: 54px; margin: 0 auto 12px;
  border-radius: 50%; background: var(--white);
  display: grid; place-items: center; font-size: 26px;
}
.check-card__title { color: #2b5d78; font-weight: 900; font-size: 15px; }
.check-card__text { margin-top: 6px; color: var(--muted); font-size: 13px; }

/* ショップへ誘導するバンド (about/contact) */
.shop-band {
  padding: 56px 0; text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  color: var(--white);
}
.shop-band__title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 900; letter-spacing: 0.06em; }
.shop-band__text { margin: 10px 0 24px; font-weight: 700; }
.shop-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- お知らせ ---------- */
.news-list {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.news-card {
  display: block; text-decoration: none; color: inherit;
  padding: 22px 24px; border-radius: 18px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(48,113,155,.08);
  transition: 0.2s ease;
}
a.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(48,113,155,.14);
}
.news-card__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.news-card__date {
  font-size: 13px; font-weight: 800; color: var(--orange);
  letter-spacing: 0.04em;
}
.news-card__category {
  display: inline-block; padding: 3px 12px; border-radius: 999px;
  background: var(--sky); color: var(--deep-blue);
  font-size: 11px; font-weight: 900;
}
.news-card__title {
  font-size: 16px; line-height: 1.6; color: #2b5d78; font-weight: 900;
}
.news-card__snippet {
  margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__body { margin-top: 16px; font-size: 15px; line-height: 1.9; color: #3d5562; }
.news-card__body p { min-height: 1em; margin: 0; }

/* お知らせ詳細ページのときカードを少し大きく */
#news-detail .news-card { padding: 32px 36px; }
#news-detail .news-card__title { font-size: 22px; margin-top: 4px; }

@media (max-width: 620px) {
  #news-detail .news-card { padding: 22px; }
  #news-detail .news-card__title { font-size: 18px; }
}

/* ---------- フッター ---------- */
.footer { padding: 36px 0 28px; background: #263f4d; color: var(--white); }
.footer__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
}
.footer__nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px; font-size: 14px; color: rgba(255, 255, 255, 0.82);
}
.footer__copy { color: rgba(255, 255, 255, 0.68); font-size: 13px; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 980px) {
  .header__inner {
    flex-direction: column; padding: 14px 0; gap: 12px;
  }
  .nav {
    width: 100%; overflow-x: auto; justify-content: flex-start;
    padding-bottom: 4px;
  }
  .nav a { white-space: nowrap; }
  .layout { grid-template-columns: 1fr; }
  .side { position: static; }
  .side-list { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .category-tiles, .category-grid { grid-template-columns: repeat(3, 1fr); }
  .feature, .value-grid, .guide-grid, .check-grid { grid-template-columns: 1fr; }
  .detail { grid-template-columns: 1fr; gap: 28px; }
  .detail__gallery { position: static; }
  .message { grid-template-columns: 1fr; padding: 40px 0 16px; }
  .contact-layout { grid-template-columns: 1fr; }
  .manual-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .info-row__head { padding: 12px 18px 4px; background: transparent; }
  .info-row__body { padding: 0 18px 14px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 72px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
}

@media (max-width: 620px) {
  .page-hero { padding: 62px 0 58px; }
  .search-box__row { grid-template-columns: 1fr; }
  .section-head--row { display: block; }
  .section-head__count { margin-top: 8px; }
  .product-card__links { grid-template-columns: 1fr; }
  .detail__thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 560px) {
  .logo__text-main { font-size: 17px; }
  .hero__title { font-size: 34px; }
  .hero-card__grid, .product-grid, .product-grid--3,
  .category-tiles, .category-grid, .shop-links {
    grid-template-columns: 1fr;
  }
  .intro__box { padding: 20px; text-align: left; }
  .section { padding: 56px 0; }
  .detail__manual-btns { grid-template-columns: 1fr; }
  .shop-buttons { flex-direction: column; }
}
