/* =========================================================
   shoukouannai ANNNAI
   ========================================================= */
:root {
  --y: #f1b90b;
}

/* section label */
.shoukouannai-page .section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.shoukouannai-page .section-label::before {
  content: "●";
  color: var(--blue);
  font-size: .7em;
}

main.shoukouannai-page p {
  font-size: 1.6rem;
}

/* ---- HERO ---- */
.shoukouannai-hero {
  padding: clamp(56px, 8vw, 120px) 0 12px;
}

.shoukouannai-hero__title {
  font-family: "Poppins", "Zen Kaku Gothic Antique", system-ui, sans-serif;
  font-weight: 800;
  color: var(--blue);
  font-size: clamp(40px, 8vw, 120px);
  line-height: 1.1;
  margin: 0 0 .35em;
}
h2 {
  margin: 80px auto;
}
/* ===== HERO：テキストは全幅、画像は 3:7、2枚の高さを共有 ===== */

/* 共通の見た目高さ（必要なら数値だけ調整） */
.shoukouannai-hero {
  --hero-visual-h: clamp(220px, 34vw, 420px);
}

.shoukouannai-hero .contents {
  display: grid;
  grid-template-columns: 3fr 7fr;
  /* 左=ロゴ 3 / 右=紙面 7 */
  gap: 16px;
  align-items: stretch;
}

/* テキスト系は2カラムまたぎ */
.shoukouannai-hero .section-label,
.shoukouannai-hero__title,
.shoukouannai-hero__lead,
.shoukouannai-anchor {
  grid-column: 1 / -1;
}

/* 画像まわり */
.shoukouannai-hero__visual {
  margin: 0;
  height: var(--hero-visual-h);
  border-radius: 14px;
  overflow: hidden;
  /* 角丸からのはみ出し防止 */
}

.shoukouannai-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* トリミングで高さを揃える */
}

/* 逆比率オプション（左を7 / 右を3） */
.shoukouannai-hero.is-leftwide .contents {
  grid-template-columns: 7fr 3fr;
}

/* SPは縦積み・自然比率 */
@media (max-width: 820px) {
  .shoukouannai-hero .contents {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shoukouannai-hero__visual {
    height: auto;
  }

  .shoukouannai-hero__visual img {
    height: auto;
    object-fit: contain;
  }
}

/* ---- POINTS ---- */
/* ===== 商工あんない：ここがスゴイ!! ===== */

/* 2×2 グリッド（SPは1列） */
.point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 44px) clamp(24px, 5vw, 60px);
  align-items: start;
}

@media (max-width: 720px) {
  .point-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* 1カードのレイアウト：バッジ→アイコン→見出し→本文 */
.point-card {
  display: grid;
  grid-template-areas:
    "num"
    "ico"
    "hd"
    "txt";
  justify-items: center;
  row-gap: 12px;
  text-align: center;
  padding: clamp(6px, 1vw, 12px) 6px;
}

/* “POINT 01” バッジ（番号は要素のテキスト、POINTは擬似要素） */
.point-card .p-num {
  font-family: "Poppins", "Zen Kaku Gothic Antique", system-ui, sans-serif;
  grid-area: num;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 12px 6px;
  border-radius: 12px;
  background: var(--blue, #135ba4);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  font-size: clamp(18px, 2.6vw, 40px);
  /* 01 の文字サイズ */
}

.point-card .p-num::before {
  content: "POINT";
  font-size: clamp(10px, 1.4vw, 12px);
  letter-spacing: .08em;
  opacity: .95;
  margin-bottom: 2px;
}

/* アイコン */
.point-card .p-ico {
  grid-area: ico;
  width: clamp(88px, 13vw, 110px);
  height: clamp(88px, 13vw, 170px);
  display: grid;
  place-items: center;
}

.point-card .p-ico img {
  width: 100%;
  height: auto;
  display: block;
}

span.p-ico.ico-70 img {
    width: 70%;
}

/* 見出し（青・太字・少しポップ） */
.point-card h3 {
  grid-area: hd;
  margin: 0;
  color: var(--blue, #135ba4);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: clamp(22px, 3.2vw, 32px);
}

@media (max-width:980px) {
  .point-card h3 {
    margin-top: 24px;
  }
}

/* 説明文（16px・センター・最大幅を絞る） */
.point-card p {
  grid-area: txt;
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}

/* 余白が詰まる端末向けに少しだけ間隔を広げる */
@media (max-width: 480px) {
  .point-card {
    row-gap: 10px;
  }

  .point-card p {
    max-width: 46ch;
  }
}


/* ---- STEPS ---- */
.steps {
  padding: clamp(36px, 7vw, 80px) 0;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width:980px) {
  .step-list {
    grid-template-columns: 1fr;
  }
}

.step-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 16px;
  background: #fff;
}

.step-badge {
    font-family: "Poppins", "Zen Kaku Gothic Antique", system-ui, sans-serif;
    display: inline-grid;
    place-items: center;
    min-width: 80px;
    height: 32px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .2rem;
}

.step-item h3 {
  margin: 8px 0 4px;
  font-weight: 800;
  font-size: 2.4rem;
  margin: 24px auto 40px;
}

.step-item p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.9;
}

/* ---- AREA ---- */
.area {
  padding: clamp(36px, 7vw, 80px) 0;
}

.area-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: center;
}

@media (max-width:980px) {
  .area-grid {
    grid-template-columns: 1fr;
  }
}

.area-map .ph-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.area-notes {
  list-style: disc inside;
  margin: 0;
  padding: 0;
  color: #374151;
  line-height: 1.9;
}

.area-notes li {
    font-size: 2.4rem;
    line-height: 2;
}

/* ---- PRICE / INFO ---- */
.price-info {
  padding: clamp(36px, 7vw, 80px) 0;
  max-width: 900px;
    margin: 0 auto;
}

.price-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 2px solid #ffd089;
  border-radius: 20px;
  padding: 18px;
  background: #fffaf0;
}
@media (max-width:780px) {
.price-banner {
    display: inline-block;
}
}

.pb-left .edition {
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.pb-left .weekday {
  margin: 0 0 6px;
  font-weight: 800;
}

.pb-left .price {
  margin: 0;
  font-weight: 800;
  color: #d82a2a;
}

.pb-left .price .unit {
  margin-right: .4em;
  color: #0f172a;
}

.pb-left .price .value {
  font-size: clamp(32px, 4vw, 40px);
}

/* merits */
.merits {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  font-size: 1.6rem;
}

@media (max-width:980px) {
  .merits {
    grid-template-columns: 1fr;
  }
}

.merits li {
  background: #FFD91D;
  border-radius: 12px;
  padding: 12px;
  margin: 16px auto;
}

.merits strong {
  color: #0f172a;
}


.pb-right .ph-img {
  display: block;
  width: 140px;
  height: auto;
}
figure.pb-right {
    width: 300px;
}

.spec-and-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}

@media (max-width:880px) {
  .spec-and-cta {
    grid-template-columns: 1fr;
  }
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}

.spec-table th,
.spec-table td {
  padding: 24px 24px;
  border: 0;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.9;
}

.spec-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

.issue-box {
  border: 1px dashed #f59e0b;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  text-align: center;
}

.issue-no {
  font-weight: 800;
  margin: 0;
}

.issue-date {
  margin: .2em 0 .6em;
  color: #6b7280;
  font-size: 14px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--y);
  color: #1f2937;
  font-weight: 800;
  text-decoration: none;
}


/* ---- VOICES ---- */
.voices {
  padding: clamp(36px, 7vw, 80px) 0;
}

.voice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.voice-card {
  border: 1px solid #f3e2cf;
  background: #fffaf7;
  border-radius: 12px;
  padding: 14px;
}

.voice-card h3 {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 1.6rem;
}

.voice-card h4 {
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.voice-card .tag {
  display: inline-grid;
  place-items: center;
  height: 22px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
}

.voice-card p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
}

/* ---- CTA ---- */
.shoukouannai-cta {
  padding: clamp(40px, 7vw, 96px) 0;
}

.shoukouannai-cta .cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(26px, 4.5vw, 44px);
  color: #fff;
  background:
    radial-gradient(120% 160% at 0% 0%, color-mix(in oklab, var(--blue) 80%, #fff 0%) 0%, transparent 60%),
    linear-gradient(120deg, var(--blue), var(--red));
  animation: drift 9s ease-in-out infinite alternate;
}

@keyframes drift {
  0% {
    background-position: 0% 0%, 0% 0%
  }

  100% {
    background-position: 20% 10%, 100% 0%
  }
}

.cta-lead {
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 0 0 12px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-tel,
.cta-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.cta-tel {
  background: #fff;
  color: var(--blue);
  border: 1px solid transparent;
}

.cta-mail {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
}

.cta-mail:hover {
  background: rgba(255, 255, 255, .18);
}

/* ---- Responsive tweaks ---- */
@media (max-width:640px) {
  .shoukouannai-hero__title {
    font-size: clamp(28px, 7vw, 38px);
  }

  .shoukouannai-anchor {
    flex-wrap: wrap;
  }
}