body {
  font-family: var(--font-base);
  color: #555;
}

/* pc-only / sp-only 共通ユーティリティ */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 500px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* =========================
   ヘッダー
   ========================= */

.site-header {
  position: fixed;
  width: 100%;
  z-index: 99;
  box-shadow: 0 3px 3px rgba(9, 9, 9, 0.2);
  top: 0;
}

/* 右側ブロック（CTA＋ナビ） */
.site-header .container .header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--font-base);
  font-weight: 500;
}

/* CTAボタン */
.site-header .container .header-right .header-cta-group {
  display: flex;
  gap: 10px;
}

.header-cta-btn {
  background-color: #26b4a8;
  color: #fff;
  border-radius: 4px;
  padding: 6px 18px;
  font-size: 14px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.header-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 3px 3px rgba(9, 9, 9, 0.2);
  color: #fff;
}

/* ナビリンク（横並び） */
.site-header .container .header-right .header-nav-links {
  display: flex;
  gap: 32px;
  font-size: 16px;
}

/* 1メニューのラッパー（会社情報だけこれを使う） */
.header-nav-item {
  position: static; /* or このルール自体を削除 */
}

/* 通常のテキストリンク */
.header-nav-link {
  position: relative;
  color: #555;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 12px;
  transition: color 0.2s ease;
}
.py-2 {
  padding-bottom: 0 !important;
}
.navbar {
  --bs-navbar-padding-y: 0 !important;
}

.header-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #26b4a8;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.header-nav-link:hover {
  color: #26b4a8;
}

.header-nav-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ハンバーガーボタン */
.site-header .container .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}

/* PCヘッダー非表示（SP時） */
@media (max-width: 991.98px) {
  .site-header .container .header-right {
    display: none;
  }
}

/* =========================
   PCメニュー：ホバー帯
   ========================= */

/* 帯本体（ヘッダーのすぐ下・横幅いっぱい） */
.header-nav-panel {
  position: absolute;
  left: 0;
  top: 100%; /* .site-header の高さ分の「すぐ下」 */
  width: 100%; /* ヘッダーと同じ横幅（＝画面いっぱい） */
  transform: none; /* もうセンタリングしない */

  background: #e9fffe;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 500;
}

/* 中身の横幅・余白 */
.header-nav-panel-inner {
  width: 400px;
  margin: 0 auto;
  padding: 24px 0;
}

/* 見出し部分 */
.header-nav-panel-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-title-ja {
  font-size: 20px;
  font-weight: 700;
  color: #555;
}

.panel-title-en {
  font-size: 18px;
  font-weight: 700;
  color: #26b4a8;
}

.header-nav-panel-line {
  width: 400px;
  height: 1px;
  background: #d2d2d2;
  margin-bottom: 12px;
}

/* 行レイアウト（左ラベル＋右ボタン群） */
.header-nav-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.panel-label {
  font-size: 15px;
  min-width: 80px;
  color: #26b4a8;
  text-decoration: none;
}

.panel-label:hover {
  opacity: 0.7;
}

.panel-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

/* 枠付きボタン */
.panel-btn {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 5px;
  border: 1px solid #26b4a8;
  color: #26b4a8;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.panel-btn:hover {
  background: #26b4a8;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 3px 3px rgba(9, 9, 9, 0.2);
  opacity: 0.9;
}

/* ホバー時に帯を表示（JS不要） */
.header-nav-item:hover .header-nav-panel {
  max-height: 180px; /* 中身の高さに合わせて調整 */
  opacity: 1;
  pointer-events: auto;
}

/* ▼ 通常のhoverと同じ色にしたい場合（親メニューのリンク） */
.header-nav-links a:hover,
.header-nav-item:hover > a .header-nav-panel:hover ~ a {
  color: #26b4a8;
}

/* ▼ 下線アニメーションもキープする */
.header-nav-links a:hover::after,
.header-nav-item:hover > a::after,
.header-nav-panel:hover ~ a::after {
  opacity: 1;
  transform: translateY(0);
}

/* SPでは帯を無効化 */
@media (max-width: 991.98px) {
  .header-nav-panel {
    display: none;
  }
}

/* ========================= スマホグローバルナビ（offcanvas） ========================= */
.sp-global-nav {
  background: #e9fffe;
  width: 100%; /* 画面いっぱいに */
  max-width: none;
}
.sp-global-nav__head {
  width: 100%;
  padding: 10px 16px 8px;
  border-bottom: 2px solid #26b4a8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-global-nav__logo img {
  height: 28px;
}
.sp-global-nav__close {
  border: none;
  background: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
} /* 本文 */
.sp-global-nav__body {
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
} /* メニューリスト */
.sp-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.sp-menu-item {
  border-bottom: 1px solid #26b4a8;
  font-weight: bold;
  color: #555;
} /* 通常リンク */
.sp-menu-item > a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  text-decoration: none;
  color: #555;
} /* ＋付き親メニュー */
.sp-menu-parent {
  width: 100%;
  padding: 10px 0;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #555;
  cursor: pointer;
}
.sp-menu-icon {
  font-size: 16px;
  font-weight: bold;
  color: #26b4a8;
  width: 24px;
  height: 24px;
  border: 2px solid #26b4a8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease; /* ←これ追加 */
}

/* サブメニュー（最初は閉じる・ふわっと用） */
.sp-sub-menu {
  list-style: none;
  padding: 0 0 8px;
  margin: 0;
  max-height: 0; /* 高さ0からスタート */
  opacity: 0; /* 透明からスタート */
  overflow: hidden; /* はみ出し隠す */
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.sp-sub-menu li a {
  display: block;
  padding: 6px 0 6px 12px;
  font-size: 14px;
  color: #26b4a8;
  text-decoration: underline;
}
/* 開いた状態 */
.sp-menu-item.is-open .sp-sub-menu {
  max-height: 200px; /* サブメニューの想定高さより少し大きめならOK */
  opacity: 1;
}
.sp-menu-item.is-open .sp-menu-icon {
  transform: rotate(45deg); /* ＋ → ×ぽく */
}
/* 下部ボタン */
.sp-menu-cta {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
}
.sp-menu-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 7px 16px;
  border-radius: 4px;
  background: #26b4a8;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
/* この一式はSPだけで見せたいので、念のため */
@media (min-width: 992px) {
  .sp-global-nav {
    display: none;
  }
}

/* =========================
   フッター全体
   ========================= */

.footer-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-cta-btn {
  background-color: #26b4a8;
  color: #fff;
  border-radius: 4px;
  padding: 6px 18px;
  font-size: 14px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  width: 200px;
}

.footer-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0px 3px 3px rgba(9, 9, 9, 0.2);
  color: #fff;
}

.site-footer {
  position: relative;

  background-image: url("assets/img/footer.svg");
  background-repeat: no-repeat;

  /* ★ SVGのサイズを絶対に変えない（元サイズのまま） */
  background-size: auto;

  /* ★ 中央基準で左右が切れていく挙動 */
  background-position: center 0px; /* -80px は縦の調整値 */
  margin-top: 130px;
}

/* ロゴ＋CTA */

.footer-hero {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 80px;
}

.footer-logo {
  margin-bottom: 70px;
}

/* 中段ナビ */

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-nav-block {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 200px;
}

.footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-nav-line {
  width: 100%;
  height: 1px;
  background: #d2d2d2;
  margin-bottom: 10px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.footer-nav-list li + li {
  margin-top: 4px;
}

.footer-nav-list a {
  font-size: 13px;
  color: #555;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.footer-nav-list a:hover {
  opacity: 0.8;
}

/* 枠付きボタン */

.footer-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  transition: all 0.25s ease;
}

.footer-link-btn {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 5px;
  border: 1px solid #26b4a8;
  color: #26b4a8;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-link-btn:hover {
  border: 1px solid #26b4a8;
  color: #fff;
  background: #26b4a8;
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0px 3px 3px rgba(9, 9, 9, 0.2);
}

/* 下部バー */

.footer-bottom {
  background: #ffffff;
  border-top: 1px solid #e1e1e1;
}

.footer-bottom-inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-privacy {
  color: #555;
  text-decoration: underline;
}

.footer-copy {
  color: #777;
}

.footer-inner {
  height: 500px;
  margin: auto;
}

/* =========================
   スマホレイアウト
   ========================= */

@media (max-width: 991.98px) {
  .footer-inner {
    width: min(100%, 100% - 32px);
    height: 850px;
  }

  .site-footer::before {
    width: 100%;
    border-radius: 0 0 0 0; /* モバイルは縦長なので控えめでもOK */
  }

  .footer-hero {
    text-align: center;
    margin-bottom: 60px;
  }

  .footer-cta-row {
    flex-direction: column;
    gap: 10px;
    width: 200px;
    margin: auto;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
    width: 200px;
    margin: auto;
  }

  .footer-nav-block {
    min-width: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* bi */

.bi {
  font-size: 10px;
  margin-left: 4px;
}

/* ▼ TOPへ戻るボタンの初期状態 */
.page-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 900;
}

.page-top-btn img {
  width: 100%;
  height: auto;
}

/* ▼ 表示状態 */
.page-top-btn.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ▼ ホバー */
.page-top-btn:hover {
  opacity: 0.8;
}

@media (min-width: 451px) {
  .sp-450 {
    display: none;
  }
}

@media (min-width: 991.99px) {
  .sp-992 {
    display: none;
  }
}

@media (max-width: 425px) {
  .offcanvas {
    width: 100% !important;
  }
  .form-wrapper {
    top: 500px !important;
  }
}

/* ラベル */
.wpcf7-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

/* テキスト・メール・題名 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* メッセージ本文 */
.wpcf7-form textarea {
  width: 100%;
  min-height: 160px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* 送信ボタン（CF7デフォルト用: 使わないなら消してOK） */
.wpcf7-form input[type="submit"] {
  display: inline-block;
  padding: 10px 40px;
  border: none;
  border-radius: 999px;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.wpcf7-form input[type="submit"]:hover {
  opacity: 0.8;
}

/* =========================
   お問い合わせ：注意書きボックス
   ========================= */

.contact-page {
  margin-top: 50px;
}

.contact-page .contact-note-box {
  max-width: 800px;
  margin: auto;
  padding: 24px 32px;
  border: 2px solid #2bb5a5;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  position: absolute;
}

.contact-page .contact-note-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #2bb5a5;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.contact-page .contact-note-title::after {
  content: "";
  position: absolute;
  left: 53%;
  transform: translateX(-50%);
  bottom: 0;
  width: 95px;
  height: 2px;
  background-color: #2bb5a5;
}

.contact-page .contact-note-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: #2bb5a5;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: bold;
}

.contact-page .contact-note-text p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #333;
  font-size: 14px;
}

/* =========================
   お問い合わせページ本体
   ========================= */

.form-wrapper {
  background-color: #ebebeb;
  display: flex;
  justify-content: center;
  position: relative;
  top: 300px;
}

.contact-page .contact-page__inner {
  max-width: 960px;
  margin: 60px auto 80px;
  padding: 0 16px;
}

.contact-page .contact-page__title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
}

/* カード本体 */
.contact-page .contact-form__card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 60px 250px 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* 行レイアウト */
.contact-page .contact-form__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-page .contact-form__row--policy {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* 左ラベル列（テキスト＋必須バッジを横並び） */
.contact-page .contact-form__label {
  width: 250px;
  justify-content: space-between;
  padding-top: 10px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  /*gap: 20px;*/
  white-space: nowrap;
  margin: 0 20px;
}

.contact-page .contact-form__label p {
  margin-bottom: 0 !important;
}

/* 必須／任意バッジ */
.contact-page .contact-form__badge {
  display: inline-block;
  margin-left: 0;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 11px;
  color: #fff;
}

.contact-page .contact-form__badge--required {
  background: #ff4b4b;
}

.contact-page .contact-form__badge--optional {
  background: #b3b3b3;
}

/* 右フィールド列 */
.contact-page .contact-form__field {
  width: 60%;
  margin-left: 100px;
}

/* input/textarea 共通 */
.contact-page .contact-form__field input[type="text"],
.contact-page .contact-form__field input[type="email"],
.contact-page .contact-form__field input[type="tel"],
.contact-page .contact-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.contact-page .contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

/* ラジオボタン：1行ずつ */
.contact-page .contact-form__field .wpcf7-list-item {
  display: block;
  margin-bottom: 4px;
}

/* プライバシーポリシー行 */
.contact-page .contact-form__row--policy .wpcf7-acceptance {
  margin-right: 6px;
}

.contact-page .contact-form__row--policy a {
  color: #00a0a0;
  text-decoration: underline;
}

.contact-page .contact-form__row--policy a:hover {
  opacity: 0.7;
}

/* 送信ボタン（カード内） */
.contact-page .contact-form__actions {
  text-align: center;
  margin-top: 32px;
}

.contact-page .contact-form__actions input[type="submit"] {
  display: inline-block;
  width: 250px;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  background: #19b9a6;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  cursor: pointer;
  display: flex;
  margin: auto;
}

.contact-page .contact-form__actions input[type="submit"]:hover {
  opacity: 0.85;
}

/* スマホ対応（簡易） */
@media (max-width: 768px) {
  .contact-page .contact-form__card {
    padding: 24px 16px 400px 16px;
  }
  .contact-page .contact-form__row {
    flex-direction: column;
  }
  .contact-page .contact-form__label,
  .contact-page .contact-form__field {
    width: 100%;
    white-space: normal;
    margin-left: 0;
  }
  .contact-page .contact-form__label {
    margin-bottom: 6px;
  }
  .cp-title-wrapper {
    padding-top: 20px !important;
    height: 150px !important;
  }
  .cp-title {
    font-size: 22px !important;
    margin-top: 30px !important;
  }
  .contact-page .contact-note-box {
    margin: 20px;
  }
  .form-wrapper {
    top: 400px;
  }
}

/* =========================
   ラジオボタンのカスタムデザイン
   ========================= */

.contact-page .wpcf7-list-item label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: inline-block;
}

/* 元のラジオを隠す */
.contact-page .wpcf7-list-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* 未選択の丸 */
.contact-page .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid #19b9a6;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

/* 選択された丸（塗りつぶし） */
.contact-page .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #19b9a6;
  border-radius: 50%;
}

/* =========================
   チェックボックス（✓マーク）
   ========================= */

.contact-page .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.contact-page .wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.6;
}

/* 未チェック状態の枠 */
.contact-page .wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #19b9a6;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
}

/* チェック時の✓マーク */
.contact-page .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 20px;
  color: #19b9a6;
  font-weight: bold;
  line-height: 1;
}

/* エラー時メッセージ枠色（オレンジ→赤にしたい場合など） */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: red !important;
}

.wpcf7 form.failed .wpcf7-response-output {
  position: relative;
  top: -300px;
}

@media (max-width: 768px) {
  .wpcf7 form.failed .wpcf7-response-output {
    top: -400px;
  }
}

/* =========================
   お問い合わせページ：画像背景ヒーロー
   ========================= */

.cp-title-wrapper {
  width: 100%;
  height: 300px;
  background-image: url("assets/img/title.svg");
  background-repeat: no-repeat;
  background-size: cover; /* 画像で全体を覆う */
  background-position: center; /* 画像の中央を基準に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

/* タイトル文字 */
.cp-title {
  color: #555;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-header);
}

.form-subtitle-wrapper h2 {
  font-size: 20px;
}

.form-subtitle-wrapper {
  font-size: 20px;
  display: flex;
  justify-content: center;
  margin: 80px auto;
}

.contact-form-wrapper {
  display: flex;
  justify-content: center;
}

/* =========================
   プライバシーポリシー：上部タイトル帯
   ========================= */

.privacy-hero {
  width: 100%;
  height: 180px; /* 背景画像の高さに合わせて調整 */
  background-image: url("assets/img/privacy-hero.png"); /* 背景画像のパスに変更 */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.privacy-hero-title {
  font-size: 26px;
  font-weight: 700;
  color: #555;
  margin: 0;
}

/* =========================
   プライバシーポリシー本文
   ========================= */

.privacy-page__inner {
  max-width: 960px;
  margin: 10px auto 80px;
  padding: 0 16px;
}

.privacy-card {
  background: #fff;
  padding: 40px 60px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* 見出しスタイル（本文側で h2, h3 を使う想定） */
.privacy-card h2 {
  font-size: 18px;
  margin: 24px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ddd;
}

.privacy-card h3 {
  font-size: 16px;
  margin: 18px 0 6px;
}

.privacy-card p {
  margin-bottom: 12px;
}

.privacy-card ul {
  margin: 0 0 12px 1.5em;
  padding: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .privacy-card {
    padding: 24px 16px;
  }
}

/* プライバシーポリシー見出し・本文 */

.privacy-card h2 {
  font-size: 18px;
  margin: 28px 0 8px;
  color: #00a9a3; /* 見出しのグリーン */
  font-weight: 700;
}

.privacy-card p {
  margin-bottom: 8px;
  line-height: 1.8;
  color: #555;
}

.privacy-card ul {
  margin: 0 0 12px 1.5em;
  padding: 0;
  list-style: disc;
}

.privacy-card li {
  margin-bottom: 4px;
}

/* =========================
   お知らせ一覧
   ========================= */

.news-page__inner {
  max-width: 960px;
  margin: 60px auto 80px;
}

/* リスト全体 */
.news-list {
  list-style: none;
  margin: auto;
  padding: 0;
  border-top: 1px solid #e3e3e3;
}

/* 1行分 */
.news-item {
  border-bottom: 1px solid #e3e3e3;
}

.news-item__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  text-decoration: none;
  color: #555;
}

/* 日付 */
.news-date {
  width: 90px;
  font-size: 15px;
}

/* ラベル（丸いタグ） */
.news-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 5px;
  background: #bfece5;
  color: #3a7f78;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

/* タイトル */
.news-title {
  font-size: 14px;
  line-height: 1.6;
}

/* お知らせがない場合 */
.news-empty {
  padding: 40px 0;
  text-align: center;
  color: #777;
}

/* スマホ調整 */
@media (max-width: 600px) {
  .news-item__link {
    flex-wrap: wrap;
    gap: 8px;
  }
  .news-date {
    width: auto;
  }
}

/* =========================
   お知らせ詳細（single）
   ========================= */

.single-news {
  background: #fff;
  padding: 40px 60px;
}

/* 日付＋ラベル行 */
.single-news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 8px;
}

/* 本文 */
.single-news-content p {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #555;
}

.single-news-content ul,
.single-news-content ol {
  margin: 0 0 12px 1.5em;
}

.single-news-back a {
  font-size: 13px;
  color: #26b4a8;
  text-decoration: underline;
}

.single-news-back a:hover {
  opacity: 0.8;
}

/* SP調整 */
@media (max-width: 768px) {
  .single-news {
    padding: 24px 16px;
  }
}

/* お知らせ一覧 ページネーション */
.news-pagination {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
}

.news-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #555;
  border: 1px solid transparent;
}

.news-pagination .page-numbers:hover {
  border-color: #26b4a8;
  color: #26b4a8;
}

/* 現在のページ */
.news-pagination .page-numbers.current {
  background: #26b4a8;
  color: #fff;
  border-color: #26b4a8;
}

.news-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 768px以下：日付＋カテゴリは横並び、タイトルは下段 */

@media (max-width: 768px) {
  /* 全体を縦並びにする */
  .news-item__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* ← ここがポイント：上段の横並びブロックを作る */
  .news-top-row {
    gap: 12px;
  }

  .news-date {
    font-size: 12px;
    width: auto;
  }

  .news-label {
    font-size: 12px;
    padding: 2px 10px;
  }

  .news-title {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* TOPのお知らせブロック用 */
.top-news {
  margin: 60px auto 40px;
}

.top-news .news-page__title {
  text-align: left; /* TOPだけ左寄せにしたい場合 */
  margin-bottom: 16px;
}

/* 「お知らせ一覧を見る」リンク */
.top-news-more {
  margin-top: 12px;
  text-align: right;
}

.top-news-more a {
  font-size: 13px;
  color: #26b4a8;
  text-decoration: underline;
}

.top-news-more a:hover {
  opacity: 0.8;
}

.fv-recycle {
  position: relative;
  overflow: hidden;
  padding: 200px 0;
  background: url("assets/img/white-veil.svg") center/cover no-repeat;
  top: -160px;
  z-index: -1;
  height: 1000px;
}

/* もし PHP 判定が効かない場合は、ここは通常の相対パスでOK
   background: #f7fafc url("../images/fv_bg_pc.png") center/cover no-repeat;
*/

.fv-recycle__inner {
  width: min(1400px, 100% - 40px);
  margin: 0 auto;
}

.fv-recycle__main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-recycle__circle {
  position: relative;
  width: 500px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(assets/img/about-maintitle.svg) center/cover no-repeat;
  z-index: 10;
  right: -100px;
}

.fv-recycle__catch {
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: var(--font-header);
  font-weight: bold;
}

.fv-recycle__textbox {
  background: #ffffff;
  border-radius: 10px;
  padding: 100px 50px 24px 230px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  line-height: 1.9;
  width: 800px;
  height: 350px;
  font-size: 1.1rem;
  text-align: center;
  position: relative;
  right: 100px;
}

.fv-recycle__textbox p + p {
  margin-top: 0.8em;
}

.fv-recycle__float {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.fv-recycle__float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-recycle__float--1 {
  top: 150px;
  left: 0;
}

.fv-recycle__float--2 {
  top: 250px;
  right: 12%;
}

.fv-recycle__float--3 {
  top: 450px;
  left: 200px;
}

.fv-recycle__float--4 {
  top: 250px;
  right: 0;
}

@media (prefers-reduced-motion: reduce) {
  .fv-recycle__float {
    animation: none;
  }
}

@media (min-width: 1460px) {
  .sp-1460 {
    display: none;
  }
}

@media (max-width: 475px) {
  .sp-1460 {
    display: none;
  }
}
@media (max-width: 1459px) {
  .sp-1920 {
    display: none;
  }
}

@media (min-width: 476px) {
  .sp-475 {
    display: none;
  }
}

@media (max-width: 475px) {
  .sp-475-r {
    display: none;
  }
}

@media (max-width: 1459px) and (min-width: 476px) {
  .fv-recycle__circle {
    width: 450px;
    height: 485px;
    position: static;
    margin: auto;
  }

  .fv-recycle__catch {
    font-size: 1.4rem;
  }

  .fv-recycle__textbox {
    max-width: 350px;
  }
}

@media (max-width: 475px) {
  .fv-recycle__circle {
    width: 290px;
    height: 310px;
    position: static;
    margin: auto;
  }

  .fv-recycle__catch {
    font-size: 1.05rem;
  }

  .fv-recycle__textbox {
    max-width: 250px;
  }

  .fv-recycle__float--1 {
    display: none;
  }

  .fv-recycle__float--2 {
    display: none;
  }
}

/* SP レイアウト */
@media (max-width: 1459px) {
  .fv-recycle {
    padding: 56px 0 80px;
    background-position: center top;
  }

  .fv-recycle__inner {
    position: relative;
    top: 100px;
  }

  .fv-recycle__main {
    flex-direction: column;
  }

  .fv-recycle__textbox {
    font-size: 0.9rem;
    padding: 230px 20px 20px 20px;
    margin: auto;
    position: static;
    margin-top: -200px;
    height: 500px;
  }

  .fv-recycle__float--1 {
    top: 10px;
    left: 0;
  }

  .fv-recycle__float--2 {
    top: 220px;
    right: 150px;
  }

  .fv-recycle__float--3 {
    top: 600px;
    left: -100px;
  }

  .fv-recycle__float--4 {
    top: 350px;
    right: -20px;
  }
}

/* leaf-effect */

@keyframes leafFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

body.is-fv-show .fv-leaf-effect {
  animation: leafFloat 4s ease-in-out infinite;
  transform-origin: center bottom;
}

/* product */

@keyframes productFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

body.is-fv-show .fv-product {
  animation: productFloat 4.5s ease-in-out infinite;
  animation-delay: 1.2s;
  transform-origin: center bottom;
}

@keyframes fv-float-y {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(30px);
  }
}

@keyframes fv-float-x {
  0% {
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(10px);
  }
}

.fv-recycle__float {
  animation: fv-float-y var(--fv-float-duration, 8s) ease-in-out infinite alternate;
}

/* sp-only */

@media (max-width: 500px) {
  .fv-product.sp-only {
    width: 100%;
    top: -50px;
  }

  .fv-leaf-effect.sp-only {
    width: 100%;
    top: -50px;
  }

  .fv-leaf-.sp-only {
    width: 100%;
    top: -50px;
  }
}

/* =========================
    fast-view
   ========================= */

/* fv */

.fv {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: url("assets/img/fastview-base.svg") center center / cover no-repeat;
  overflow: visible;
  top: 50px;
}

@media (max-width: 1024px) {
  .fv {
    height: 50vh;
    max-height: 300px;
    top: 10px;
  }
}

/* fv-inner */

.fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* fv-item */

.fv-item {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.is-fv-show .fv-item {
  opacity: 1;
  transform: translateY(0);
}

/* fv-leaf-effect */

.fv-leaf-effect {
  position: absolute;
  width: 100%;
  top: -50px;
  opacity: 0;
  transform: translateX(-50%) translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  z-index: 1;
}

body.is-fv-show .fv-leaf-effect {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.8s;
}

/* fv-product */

.fv-product {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 100px;
}

body.is-fv-show .fv-product {
  transition-delay: 0.2s;
}

/* fv-title */

.fv-title {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 55px;
  color: #fff;
  font-family: var(--font-title);
  letter-spacing: 1.5px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

body.is-fv-show .fv-title {
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: 1.6s;
}

/* fv-title-product */

.fv-title-product {
  position: absolute;
  top: 45%;
  width: 250px;
}

@media (max-width: 1024px) {
  .fv-title-product {
    width: 150px;
  }
}

/* h1-title */

.h1-title {
  width: 735px;
  z-index: 3;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .h1-title {
    width: 455px;
  }
}

@media (max-width: 1024px) {
  .h1-title {
    top: 15%;
    font-size: 35px;
    width: 295px;
  }
}

/* =========================
    topics
   ========================= */

.topics-section {
  padding: 120px 0 40px;
  position: relative;
  z-index: 98;
}

.topics-inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.topics-head {
  margin-bottom: 32px;
}

.topics-title-jp {
  font-family: var(--font-header);
  font-size: 24px;
  letter-spacing: 0.15em;
  margin: 0 0 4px;
  font-weight: bold;
}

.topics-title-en {
  font-family: var(--font-base);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 16px;
}

.underline {
  max-width: 1100px;
  height: 2px;
  margin: 0 auto;
  background: #b7e4cb;
}

/* ===== slider ===== */

.topics-slider {
  position: relative;
  margin-top: 28px;
}

.topics-window {
  overflow: hidden;
  border-radius: 4px;
}

.topics-track {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
}

.topics-slide {
  flex: 0 0 calc((100% - 15px * 3) / 4);
  max-width: calc((100% - 15px * 3) / 4);
  transition: all 0.25s ease;
}

.topics-slide:hover {
  opacity: 0.8;
}

.topics-slide img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .topics-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .product-lead {
    text-align: left;
    margin: 10px;
  }
}

.topics-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  color: #26b4a8;
}

.topics-arrow-prev {
  left: 10px;
  z-index: 99;
}

.topics-arrow-next {
  right: 10px;
  z-index: 99;
}

.topics-dots {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}

.topics-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
}

.topics-dots button.is-active {
  background: #c5efe8;
}

/* =========================
    recycle セクション
   ========================= */

.recycle-section {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* 左パーツ */
.recycle-section::before,
.recycle-section::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1000px;
  height: 1000px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

/* 左側 */
.recycle-section::before {
  background-image: url("assets/img/left-effect.svg");
}

/* 右側 */
.recycle-section::after {
  right: -250px;
  background-image: url("assets/img/right-effect.svg");
}

.recycle-inner {
  width: min(1420px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .recycle-section {
    padding-top: 40px;
  }

  .recycle-section::before,
  .recycle-section::after {
    width: 180px;
    height: 180px;
    top: auto;
    bottom: 0; /* 下側に寄せる */
    transform: none;
    opacity: 0.7; /* 少し薄くして主張を弱める（お好み） */
  }

  .recycle-section::before {
    left: 0px;
    top: 1200px;
  }

  .recycle-section::after {
    right: -60px;
    top: 0;
  }
}

/* --- メイン白カード --- */

.recycle-main {
  flex: 1 1 auto;
  position: relative;
  background-image: url("assets/img/main-container.png");
  padding: 50px 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.recycle-main-body {
  position: relative;
  max-width: 600px;
  top: -60px;
}

.recycle-main-copy {
  font-size: 28px;
  line-height: 1.8;
  font-family: var(--font-header);
  font-weight: bold;
}

.recycle-main-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.recycle-products img {
  width: 72px;
  height: auto;
  display: block;
}

.recycle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 5px;
  background: linear-gradient(90deg, #38a967 0%, #6cbf94 50%, #66a9ae 100%);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.recycle-button-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 5px;
  background: #2eb6aa;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.recycle-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 3px rgba(9, 9, 9, 0.2);
  opacity: 0.9;
}

.recycle-button-g:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 3px rgba(9, 9, 9, 0.2);
  opacity: 0.9;
}

.recycle-button-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.recycle-button-container_r {
  display: flex;
  justify-content: center;
}

/* タイトル下画像 */
.recycle-main-img-top {
  margin: 20px 0 16px;
}

.recycle-main-img-top img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* 本文下画像 */
.recycle-main-img-bottom {
  margin: 30px 0 50px;
  display: flex;
  justify-content: center;
}

.recycle-main-img-bottom img {
  width: 70%;
  display: block;
  border-radius: 8px;
}

/* --- 葉っぱマーク --- */

.recycle-badge {
  width: 120px;
  position: relative;
  top: 20px;
  left: 450px;
}

.recycle-badge img {
  max-width: 100%;
}

.original-badge {
  width: 120px;
  position: relative;
  top: 0;
  left: 230px;
  z-index: 10;
}

.original-badge img {
  width: 70px;
}

/* --- 右側のキャラクター吹き出し --- */

.recycle-callout {
  flex: 0 0 200px;
  position: relative;
}

.recycle-callout-bubble {
  position: relative;
  padding-top: 50px;
  margin-bottom: 12px;
  background-image: url("assets/img/main-container-r.png");
  z-index: 0;
  width: 500px;
  height: 700px;
  right: 50px;
}

.arrow-btn-g {
  position: absolute;
  right: 150px;
  bottom: 350px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  background: #26b4a8;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.25s ease;
}

.arrow-btn-g:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 3px rgba(9, 9, 9, 0.2);
  opacity: 0.9;
}

/* キャラクター */

.recycle-character {
  position: absolute;
  bottom: 100px;
}

.recycle-character img {
  width: 100%;
  height: auto;
}

.arrow-btn {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: none;
  background: #ffffff;
  color: #6a9ca7;
  font-size: 12px;
  cursor: pointer;
  margin-left: 20px;
  font-weight: bold;
}

/* =========================
   アニメーション用（PC: 左→右 / SP: 上→下）
   ========================= */

.js-recycle-slide {
  opacity: 0;
}

/* PC：左から右にスライドイン */
@media (min-width: 992px) {
  .js-recycle-slide {
    transform: translateX(-30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .js-recycle-slide.is-show {
    opacity: 1;
    transform: translateX(0);
  }

  /* 葉っぱとキャラはメインカードより少し遅らせる */
  .recycle-badge.is-show {
    transition-delay: 0.2s;
  }
  .recycle-callout.is-show {
    transition-delay: 0.3s;
  }
}

/* SP：上から下にスライドイン */
@media (max-width: 1460px) {
  .js-recycle-slide {
    transform: translateY(-24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .js-recycle-slide.is-show {
    opacity: 1;
    transform: translateY(0);
  }

  .recycle-badge.is-show {
    transition-delay: 0.2s;
  }
  .recycle-callout.is-show {
    transition-delay: 0.3s;
  }

  .recycle-inner {
    padding: 0;
  }
}

/* =========================
    レスポンシブ（レイアウト）
   ========================= */

@media (max-width: 1460px) {
  .recycle-section {
    padding-top: 60px;
  }

  .recycle-inner {
    flex-direction: column;
    gap: 24px;
    height: 1400px;
  }

  .recycle-main {
    width: 920px;
    height: 820px;
  }

  .recycle-callout {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .recycle-character {
    left: -20px;
    bottom: 300px;
  }

  .recycle-callout-bubble {
    background-image: url("assets/img/main-container-u.png");
    width: 690px;
    bottom: 80px;
    right: 170px;
    overflow: hidden;
  }

  .speech {
    left: 250px;
  }
}

@media (min-width: 1461px) {
  .speech {
    left: 90px;
  }
}

/* 吹き出し全体の箱 */
.speech {
  position: relative;
  width: 400px;
  height: 400px;
  background-image: url("assets/img/speach.svg");
}

/* 中のテキスト用（背景より前面に出す） */
.speech-inner {
  position: relative;
  z-index: 1;
  font-size: 15px;
  top: 80px;
  left: 40px;
}

.shredder {
  width: 60%;
  border-radius: 5px;
}

.shredder-text {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .recycle-main {
    padding-bottom: 100px;
  }

  .recycle-main-body {
    width: 500px;
    top: -50px;
  }

  .recycle-badge img {
    width: 70%;
    position: relative;
    right: 100px;
  }
  .recycle-main-copy {
    font-size: 23px;
  }

  .recycle-character img {
    width: 110%;
  }
}

@media (max-width: 540px) {
  .recycle-main-body {
    width: 280px;
    bottom: 0;
    top: -60px;
  }

  .recycle-badge img {
    position: relative;
    right: 260px;
  }

  .recycle-button {
    font-size: 16px;
  }

  .recycle-main-img-bottom img {
    width: 80%;
  }

  .recycle-main-copy {
    margin-top: 30px;
  }

  .recycle-character {
    left: 60px;
    bottom: 300px;
  }

  .recycle-character img {
    width: 80%;
  }
}

@media (max-width: 450px) {
  .recycle-character img {
    width: 70%;
    position: relative;
    z-index: 5;
  }

  .recycle-character {
    left: 100px;
  }

  .speech {
    margin-top: 30px;
    background-image: url("assets/img/speach-r.svg");
    position: relative;
    left: 180px;
  }

  .shredder-text {
    position: relative;
    top: -160px;
    right: 25px;
  }

  .shredder {
    position: relative;
    top: 120px;
  }

  .arrow-btn-g {
    top: 190px;
    left: 380px;
  }

  .original-arrow {
    left: 230px;
  }
}

/* =========================
   製品紹介セクション
   ========================= */

.product-section {
  padding: 150px 0 100px;
  background-image: url("assets/img/wave.svg");
  background-size: cover; /* 要素全体を覆う */
  background-repeat: no-repeat; /* 繰り返しなし */
  height: 1430px;
}

.product-inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

/* 見出し */

.product-head {
  text-align: center;
  margin-bottom: 40px;
}

.product-title-jp {
  font-family: var(--font-header);
  font-size: 24px;
  letter-spacing: 0.15em;
  margin: 0 0 4px;
  font-weight: bold;
}

.product-title-en {
  font-family: var(--font-base);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 16px;
}

.product-divider {
  width: 260px;
  height: 1px;
  margin: 0 auto 16px;
  background: #75c9b9;
}

.product-lead {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-top: 20px;
}

/* 3つの製品タイプ */

.product-type-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.product-type-card {
  width: 260px;
  text-align: center;
}

.product-type-visual {
  margin-bottom: 10px;
}

.product-type-visual img {
  width: 100%;
  display: block;
}

.product-type-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* =========================
    オリジナルトイレットペーパー
   ========================= */

.original-tp {
  padding-top: 150px;
}

.original-tp-title {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

/* レイアウト：PCで左右、SPで縦並び */

.original-tp-layout {
  display: flex;
}

/* 左ブロック */

.original-tp-left {
  position: relative;
  flex: 0 0 260px;
}

.original-tp-bubble {
  position: relative;
  padding: 50px;
  margin-bottom: 16px;
  width: 320px;
  height: 320px;
  background-image: url("assets/img/original-container.png");
  z-index: 1;
  top: -70px;
}

.original-tp-copy {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
  text-align: justify;
}

.original-tp-text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 10px;
  letter-spacing: 0.15em;
  text-align: justify;
}

.original-tp-recycle {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 56px;
  height: 56px;
}

.original-tp-recycle img {
  width: 100%;
  height: auto;
}

/* 右ブロック */

.original-tp-right {
  flex: 1 1 auto;
  position: relative;
  height: 260px;
  width: 770px;
  right: 100px;
}

.original-tp-head-strip {
  font-size: 17px;
  font-weight: 700;
  position: relative;
  top: 50px;
  left: 250px;
  z-index: 5;
  width: 300px;
}

.original-tp-panel {
  background-image: url("assets/img/original-container-r.png");
  position: relative;
  height: 260px;
  width: 770px;
  left: 50px;
  z-index: 0;
}

/* 表部分 */

.original-tp-table {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px;
  width: 400px;
}

.original-tp-row {
  top: -110px;
  left: 300px;
  position: relative;
}

.original-tp-label {
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 16px;
  font-weight: 700;
  color: #2eb6aa;
  margin-bottom: 5px;
}

.original-tp-desc {
  padding: 9px;
  font-size: 14px;
  background: #f1f6e0;
  border-bottom: 5px solid #a1dad3;
  margin-bottom: 10px;
  border-radius: 10px 10px 0 0;
}

.original-arrow {
  top: 270px;
  right: 50px;
  z-index: 2;
}

.original-tp-flex {
  display: flex;
  gap: 30px;
  position: relative;
  top: -110px;
  left: 155px;
}

.original-tp-flex img {
  height: 150px;
}

.original-tp-effect {
  position: relative;
  top: 85px;
  z-index: 0;
}

/* =========================
   レスポンシブ
   ========================= */

@media (max-width: 991.98px) {
  .product-inner {
    width: min(100%, 100% - 32px);
  }

  .product-type-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .product-type-card {
    width: 100%;
    max-width: 320px;
  }

  .product-cta-wrap {
    margin: 24px 0 40px;
  }

  .original-tp-layout {
    flex-direction: column;
  }

  .original-tp-left {
    flex: none;
    margin: 0 auto;
    top: -40px;
    width: 300px;
  }

  .original-tp-row {
    grid-template-columns: 1fr;
  }

  .original-tp-right {
    margin: 0 auto;
  }

  .original-tp-panel {
    background-image: url("assets/img/original-container-u.png");
    width: 280px;
    height: 360px;
    position: relative;
    left: -5px;
    top: -200px;
  }

  .original-badge {
    top: 70px;
    right: 500px;
    width: 70px;
  }

  .original-tp-row {
    left: 0;
    top: 0;
  }

  .original-tp-bubble {
    top: 0;
    right: 15px;
  }

  .original-arrow {
    top: 340px;
  }
  .original-tp-right {
    right: 0;
    width: 280px;
  }

  .original-tp-table {
    position: relative;
    top: -30px;
    display: flex;
    width: 270px;
  }

  .original-tp-head-strip {
    top: -50px;
    left: 5px;
    font-size: 15px;
    width: 260px;
  }

  .product-section {
    height: 100%;
  }

  .original-tp-flex {
    gap: 10px;
    height: 150px;
    left: 20px;
    top: 20px;
    width: 90px;
    flex-direction: column;
  }

  .original-tp-flex img {
    width: 50px;
    height: 70px;
  }

  .original-tp-effect {
    position: relative;
    top: 180px;
    z-index: 0;
  }
}

/* =========================
   レスポンシブ
   ========================= */

@media (max-width: 1100px) {
  .original-tp-layout {
    position: relative;
    left: 0;
  }
}

@media (max-width: 1200px) {
  .original-tp-layout {
    position: relative;
    left: 0;
  }
}

@media (min-width: 991.99px) and (max-width: 1100px) {
  .original-tp-right {
    right: 190px;
  }
}

/* =========================
   お知らせセクション
   ========================= */

.news-section {
  padding: 60px 0 80px;
  background: #fff;
}

.news-inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

/* 見出し */

.news-head {
  text-align: center;
  margin-bottom: 32px;
}

.news-title-jp {
  font-family: var(--font-header);
  font-size: 24px;
  letter-spacing: 0.15em;
  margin: 0 0 4px;
  font-weight: bold;
}

.news-title-en {
  font-family: var(--font-base);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 16px;
}

/* 一覧 */

.news-list {
  list-style: none;
  margin: 24px 0 24px;
  padding: 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.news-item {
  border-top: 1px solid #e4e4e4;
  display: flex;
  padding: 15px 16px;
  text-decoration: none;
  color: inherit;
}

.news-item:first-child {
  border-top: 2px solid #b7e4cb;
}

.news-item:hover {
  background: #f6fbfa;
}

/* PC：日付＋タグ＋本文を横並びに近い形に */

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.news-date {
  color: #666;
  min-width: 90px;
}

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 5px;
  background: #bfece5;
  font-size: 12px;
  font-weight: 700;
  color: #3a7f78;
}

.news-text {
  font-size: 13px;
  color: #555;
  margin: 10px;
}

/* =========================
   レスポンシブ
   ========================= */

@media (max-width: 991.98px) {
  .news-inner {
    width: min(100%, 100% - 32px);
  }

  .news-item {
    /*padding: 10px 8px;*/
    display: block;
  }

  .news-meta {
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-bottom: 2px;
  }

  .news-date {
    min-width: auto;
    font-size: 13px;
  }

  .news-text {
    font-size: 12px;
  }

  .news-list {
    margin: auto;
    width: 80%;
  }

  .news-section {
    padding: 0;
  }
}

/* ▼ オリジナルトイレットペーパー（右ブロック）のアニメ初期状態 */
.js-otp-slide {
  opacity: 0;
}

/* PC：991.99px以上 → 左から右へスライドイン */
@media (min-width: 992px) {
  .js-otp-slide {
    transform: translateX(-30px); /* 少し右にずらしておく */
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .js-otp-slide.is-show {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SP：991.98px以下 → 上から下へスライドイン */
@media (max-width: 991.98px) {
  .js-otp-slide {
    transform: translateY(-24px); /* 少し上から */
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .js-otp-slide.is-show {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-main {
  margin-top: 50px;
  margin-bottom: -200px;
}

.company-blocks {
  margin: 80px auto;
}

.company-block {
  text-align: center;
  margin-bottom: 80px;
}

.company-block__icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.company-block__icon_l {
  margin-bottom: 24px;
  display: flex;
}

.company-block__icon img {
  width: 160px;
  max-width: 100%;
  height: auto;
}

.company-block__icon_l img {
  width: 160px;
  max-width: 100%;
  height: auto;
}

.company-block__title {
  font-size: 28px;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  font-family: var(--font-header);
  font-weight: bold;
}

.company-block__title-sub {
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  font-family: var(--font-header);
  font-weight: bold;
}

.company-block__line {
  width: 40px;
  height: 2px;
  background-color: #6ec3a9;
  margin: 35px auto 24px;
}

.company-block__line_l {
  width: 40px;
  height: 2px;
  background-color: #6ec3a9;
  margin: 35px 80px 24px;
}

.company-block__text {
  font-size: 18px;
  line-height: 2;
}

.company-block__text_r {
  font-size: 15px;
  line-height: 2;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .company-blocks {
    margin: 60px auto;
  }

  .company-block {
    margin-bottom: 60px;
  }

  .company-block__title {
    font-size: 22px;
  }

  .company-block__title-sub {
    font-size: 15px;
  }

  .company-block__text {
    font-size: 15px;
  }
}

.company-page {
  position: relative;
  top: -200px;
}

/* =========================
   会社概要セクション
   ========================= */

/* 全体ラッパー：背景SVGをここに指定 */
.company-overview {
  /* ▼ SVG 背景画像（パスは自分のファイルに変更） */
  background-image: url("assets/img/wave2.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 140px 0 230px;
}

/* 中身の最大幅 */
.company-overview__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* タイトル */
.company-overview__header {
  text-align: center;
  margin-bottom: 40px;
}

/* 概要テーブル本体 */
.company-overview__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  table-layout: fixed; /* 幅をきれいにそろえる */
}

.company-overview__table th,
.company-overview__table td {
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  font-size: 15px;
  vertical-align: top;
  line-height: 1.8;
}

/* 左側ラベル列 */
.company-overview__table th {
  width: 160px;
  background: #f6f6f6;
  text-align: left;
  font-weight: 600;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .company-overview {
    padding: 120px 0 60px;
  }

  .company-overview__table th,
  .company-overview__table td {
    display: block;
    width: 100%;
  }

  .company-overview__table th {
    border-bottom: none;
  }
}

/* =========================
   会社概要：周辺地図
   ========================= */

.company-access {
  margin-top: 80px;
  padding: 40px 0 80px;
}

.company-access__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.company-access__map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px; /* お好みで角丸 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .company-access__map iframe {
    height: 280px;
  }
}

/* =========================
   商品紹介ページ
   ========================= */

/* 商品カード一覧 */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 1商品 */
.product-card {
  display: flex;
  gap: 24px;
  padding: 24px 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card__image img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

/* 商品テキスト部分 */
.product-card__body {
  flex: 1;
}

.product-card__name {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card__catch {
  font-size: 14px;
  margin-bottom: 16px;
}

/* スペック表 */
.product-card__specs {
  margin: 0;
}

.product-card__specs div {
  display: flex;
  gap: 16px;
  font-size: 13px;
  border-top: 1px solid #eee;
  padding: 6px 0;
}

.product-card__specs dt {
  width: 80px;
  font-weight: 600;
  color: #555;
}

.product-card__specs dd {
  margin: 0;
  color: #555;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    padding: 16px 14px;
  }

  .product-card__image img {
    width: 100%;
  }
}

/* =========================
   ４つのエコな特徴
   ========================= */

.eco-features {
  padding: 60px 0 150px;
  text-align: center;

  background-image: url("assets/img/product-mainline.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.eco-features__inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
}

.eco-features__heading {
  font-size: 25px;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
  font-family: var(--font-header);
  font-weight: bold;
}

.eco-features__list {
  display: flex;
  justify-content: space-between;
  /*gap: 24px;*/
}

.eco-feature {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.eco-feature__circle1 {
  width: 220px;
  height: 220px;
  /*background: linear-gradient(135deg, #8ed9c8, #84aee7);*/
  background-image: url("assets/img/product-circle1.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 6px;
  box-sizing: border-box;
}

.eco-feature__circle2 {
  width: 220px;
  height: 220px;
  /*background: linear-gradient(135deg, #8ed9c8, #84aee7);*/
  background-image: url("assets/img/product-circle2.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 6px;
  box-sizing: border-box;
}

.eco-feature__circle3 {
  width: 220px;
  height: 220px;
  /*background: linear-gradient(135deg, #8ed9c8, #84aee7);*/
  background-image: url("assets/img/product-circle3.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 6px;
  box-sizing: border-box;
}

.eco-feature__circle4 {
  width: 220px;
  height: 220px;
  /*background: linear-gradient(135deg, #8ed9c8, #84aee7);*/
  background-image: url("assets/img/product-circle4.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 6px;
  box-sizing: border-box;
}

.eco-feature__circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  padding: 22px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-header);
  font-weight: bold;
}

.eco-feature__title {
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.eco-feature__value {
  font-size: 20px;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
}

.eco-feature__sub {
  font-size: 11px;
  margin-bottom: 4px;
}

.eco-feature__sub_r {
  font-size: 15px;
  margin-bottom: 5px;
}

.eco-feature__line {
  width: 70%;
  height: 1px;
  background: #999;
  margin: 4px auto 10px;
}

.eco-feature__icon img {
  max-width: 80px;
  height: auto;
}

/* =========================
   スマホ表示（縦4つ）
   ========================= */
@media (max-width: 900px) {
  .eco-features {
    padding: 40px 0 60px;

    background-image: url("assets/img/product-mainline-sp.svg");
    background-size: contain;
    background-position: center top;
  }

  .eco-features__list {
    flex-direction: column;
    align-items: center;
  }

  .eco-feature__circle {
    width: 200px;
    height: 200px;
  }

  .eco-feature__title {
    font-size: 12px;
  }

  .eco-feature__value {
    font-size: 18px;
  }

  .eco-feature:nth-child(2n + 1) {
    margin-right: 80px;
  }

  .eco-feature:nth-child(2n) {
    margin-left: 80px;
  }
}

.eco-feature__box1 {
  height: 70px;
  padding-top: 10px;
}

.eco-feature__box2 {
  height: 70px;
  padding-top: 20px;
}

.eco-feature__box3 {
  height: 70px;
  padding-top: 30px;
}

.eco-feature__box4 {
  height: 70px;
  padding-top: 10px;
}

/* =========================
   商品説明：無包装・記号のご説明ボックス
   ========================= */

.spec-note-box {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  position: relative;
  top: -100px;
}

.spec-note-box__inner {
  background: #dbf9e5;
  border-radius: 18px;
  padding: 24px 32px 28px;
  width: 900px;
}

/* ●説明リスト */
.spec-note-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.spec-note-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* 丸いマーク（白抜きの○） */
.spec-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #6bc19a;
  background: #fff;
}

/* ▼ 記号のご説明 枠 */
.spec-code {
  background: #8fd4cf;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 左のラベル部分 */
.spec-code__label {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: #355;
  width: 150px;
  text-align: center;
}

/* 右側の白い箱 */
.spec-code__body {
  flex: 1 1 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.7;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* =========================
   スマホ調整
   ========================= */
@media (max-width: 900px) {
  .spec-note-box__inner {
    padding: 18px 16px 22px;
    margin: 20px;
    position: relative;
    top: 100px;
  }

  .spec-code {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .spec-code__label {
    font-size: 12px;
  }

  .spec-code__body {
    font-size: 12px;
  }

  .scroll-btn-wrap {
    margin: 80px 0 !important;
  }

  .scroll-btn-wrap.is-fixed {
    top: -20px !important;
  }
}

@media (max-width: 475px) {
  .spec-code__body {
    text-align: left;
  }

  .spec-code__body {
    padding: 8px 30px;
  }

  .scroll-btn-wrap {
    gap: 5px !important;
  }

  .scroll-btn {
    padding: 15px 5px !important;
  }

  .scroll-btn_b {
    padding: 15px 5px !important;
  }
}

.scroll-btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
  position: relative;
  top: -50px;
  padding: 0 5px;
  transition: all 0.3s ease;
}

.scroll-btn-wrap.is-fixed {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.scroll-btn {
  padding: 12px 24px 20px;
  border: 2px solid #26b4a8;
  color: #26b4a8;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  transition: 0.2s;
  width: 200px;
  font-family: var(--font-header);
  font-weight: bold;
}

.scroll-btn_b {
  padding: 12px 24px 20px;
  border: 2px solid #008ccf;
  color: #008ccf;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  transition: 0.2s;
  width: 200px;
  font-family: var(--font-header);
  font-weight: bold;
}

.scroll-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #26b4a8;
  border-bottom: 2px solid #26b4a8;
  transform: translateX(-50%) rotate(45deg);
}

.scroll-btn_b::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #008ccf;
  border-bottom: 2px solid #008ccf;
  transform: translateX(-50%) rotate(45deg);
}

.scroll-btn:hover {
  background: #e7f7f5;
}

.scroll-btn_b:hover {
  background: #e7f2f7;
}

/* =========================
   商品一覧（固定ページ運用）
   ========================= */

.roll-products {
  margin: 40px 0 80px;
}

.roll-products__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 28px; /* 縦 横 */
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}

.roll-card {
  width: min(320px, 100%);
  text-align: center;
  color: #555;
}

/* 画像＋淡い丸背景 */
.roll-card__img {
  width: 190px;
  height: 150px;
  margin: 0 auto 6px;
  position: relative;
}
/*.roll-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 25%, #f8ffff 0%, #e4f7ff 55%, #ddf7f0 100%);
}*/
.roll-card__img img {
  position: relative;
  z-index: 1;
  width: auto;
  max-height: 130px;
  margin-top: 18px;
}

.roll-card__title {
  font-size: 16px;
  margin: 6px 0 8px;
  font-weight: 600;
}

/* テーブル */
.roll-card__table {
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 12px;
}
.roll-card__table th,
.roll-card__table td {
  border: 1px solid #d5f0ee;
  padding: 4px 8px;
  text-align: left;
}
.roll-card__table th {
  width: 80px;
  background: #d5f0ee;
  font-weight: 600;
}
.roll-card__table td {
  background: #fff;
}

/* =========================
   SP用 トグル：○＋ / ○×
   ========================= */

.roll-card__toggle {
  display: none;
  margin: 6px auto 12px;
  background: none;
  border: none;
  color: #26b4a8;
  font-size: 13px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}

/* 丸枠 */
.roll-card__toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #26b4a8;
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* 横線 */
.roll-card__toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  background: #26b4a8;
  transform: translateY(-50%);
}

/* 縦線（＋の縦棒） */
.roll-card__toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #26b4a8;
  transform: translateX(-50%);
}

/* SP表示 */
@media (max-width: 768px) {
  .roll-card__toggle {
    display: inline-flex;
  }
}

/* 開いた状態：＋ → × */
.roll-card.is-open .roll-card__toggle-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .roll-card__details {
    max-height: 0;
    overflow: hidden;
  }
  .roll-card.is-open .roll-card__details {
    max-height: 600px;
  }
}
/* =========================
   商品カード 背景の大きな円
   ========================= */

.roll-card {
  position: relative;
  padding-top: 40px; /* 円と被らないよう少し余白 */
}

/* 背景円（カード全体をまたぐ） */
.roll-card::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px; /* ← 円の大きさ（調整OK） */
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 25%, #f8ffff 0%, #e4f7ff 55%, #ddf7f0 100%);
  z-index: 0;
}

/* 中身は円より前に */
.roll-card__img,
.roll-card__title,
.roll-card__details,
.roll-card__toggle {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .roll-card::before {
    width: 250px;
    height: 250px;
    top: 50px;
  }
}

/* =========================
  P3 共通
========================= */

.p3-hero,
.p3-tabs,
.p3-block,
.p3-contact {
  font-family: var(--font-base, sans-serif);
  color: #555;
}

.p3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: #19b9a6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: none;
}

.p3-btn:hover {
  opacity: 0.9;
}

.p3-btn--green {
  background: #19b9a6;
}

.p3-section-mini {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin: 0 0 8px;
  color: #2eb6aa;
}

.p3-section-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 16px;
  font-family: var(--font-header);
  color: #299d93;
}

@media (max-width: 768px) {
  .p3-section-title {
    font-size: 22px;
  }
}

/* =========================
  ヒーロー
========================= */

.p3-hero {
  position: relative;
  padding: 140px 0 40px; /* 固定ヘッダー分を想定 */
  overflow: hidden;
}

.p3-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p3-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
  text-align: center;
  top: -50px;
}

.p3-hero__title {
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 700;
}

.p3-hero__lead {
  margin: 0 0 18px;
  line-height: 1.8;
  font-weight: 600;
  font-family: var(--font-header);
  font-size: 25px;
}

.p3-hero__lead_r {
  margin: 0 0 50px;
  line-height: 1.8;
  font-weight: 600;
  font-family: var(--font-header);
  font-size: 20px;
  text-align: center;
  padding: 20px;
}

.p3-hero__lead_rr {
  margin: 80px 0 18px;
  line-height: 1.8;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #2eb6aa;
}

.p3-hero__lead_c {
  position: relative;
  top: -150px;
}

@media (max-width: 768px) {
  .p3-hero__lead {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .p3-hero {
    padding-top: 110px;
  }
  .p3-hero__title {
    font-size: 20px;
  }
}

/* 中央の帯ボックス */
.p3-flowbox {
  margin: 0 auto 18px;
  width: min(900px, 100%);
  background-image: url("assets/img/green-back.svg");
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  background-size: 900px;
  height: 550px;
  top: -230px;
  z-index: 1;
  padding: 50px;
}

@media (max-width: 768px) {
  .p3-flowbox {
    background-image: url("assets/img/green_back_sp.svg");
    height: 1000px;
  }
}

.p3-flowbox__icon img {
  width: 70px;
  height: auto;
  margin: 8px auto;
  display: block;
}

.p3-flowbox__text {
  margin: 30px 50px 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #2eb6aa;
  line-height: 1.7;
  font-size: 13px;
  text-align: center;
}

.p3-flowbox__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0 8px;
}

.p3-flowcard {
  background-image: url("assets/img/container.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding: 30px;
}

.p3-flowcard__icon img {
  width: 50px;
  height: auto;
  margin: 20px auto 6px;
  display: block;
}

.p3-flowcard__text {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  padding: 25px 0 10px;
  text-align: center;
}

.p3-flowbox__note {
  font-size: 11px;
  opacity: 0.8;
  margin: 6px 0 0;
  text-align: right;
}

.p3-hero__sublead {
  margin: 10px 0 12px;
  font-size: 12px;
  line-height: 1.7;
}

.p3-hero__cta {
  margin: 12px 0 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .p3-flowbox {
    padding: 14px 12px;
    position: relative;
    top: -190px;
  }
  .p3-flowbox__cards {
    grid-template-columns: 1fr;
  }
  .p3-flowbox__text {
    margin: 40px 20px 25px;
  }
}

/* =========================
  タブ（スクロールボタン）
========================= */

.p3-tabs {
  padding: 26px 0 16px;
  background: #fff;
  position: relative;
  top: -50px;
}

.p3-tabs__inner {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

.p3-tabs__btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 60px;
}

.p3-tabbtn {
  position: relative;
  min-width: 220px;
  height: 55px;
  background: #fff;
  color: #26b4a8;
  border: 2px solid #26b4a8;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.p3-tabbtn__v {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #26b4a8;
  border-bottom: 2px solid #26b4a8;
  transform: translateX(-50%) rotate(45deg);
  content: "";
}

.p3-tabbtn_b {
  position: relative;
  min-width: 220px;
  height: 55px;
  background: #fff;
  color: #008ccf;
  border: 2px solid #008ccf;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.p3-tabbtn__vb {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #008ccf;
  border-bottom: 2px solid #008ccf;
  transform: translateX(-50%) rotate(45deg);
  content: "";
}

@media (max-width: 768px) {
  .p3-tabs__btns {
    flex-direction: column;
    align-items: center;
  }
  .p3-tabbtn {
    width: 230px;
  }
  .p3-tabbtn_b {
    width: 230px;
  }
}

/* =========================
  ブロック：リサイクルできる/できない
========================= */

.p3-block {
  padding: 36px 0 56px;
}
.p3-block__inner {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

.p3-block--green {
  background: rgba(25, 185, 166, 0.1);
}
.p3-block--blue {
  background: rgba(82, 136, 230, 0.1);
}

.p3-block__title {
  text-align: center;
  font-weight: 700;
  margin: 30px 0 50px;
  font-size: 20px;
  font-family: var(--font-header);
}

.p3-block__title .span-g {
  font-size: 25px;
  color: #2eb6aa;
}

.p3-block__title .span-b {
  font-size: 25px;
  color: #008ccf;
}

.p3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0 18px;
}

.p3-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  border: 3px solid rgba(25, 185, 166, 0.35);
  text-align: center;
  height: 250px;
}

@media (max-width: 768px) {
  .p3-card {
    height: 230px;
  }
  .p3-block__title {
    font-size: 18px !important;
  }

  .p3-block__title .span-g {
    font-size: 20px !important;
  }

  .p3-block__title .span-b {
    font-size: 20px !important;
  }
}

.p3-card_r {
  background: #fff;
  border-radius: 10px;
  padding: 12px 12px 10px;
  border: 3px solid rgba(25, 185, 166, 0.35);
  text-align: center;
  height: 200px;
}

.p3-card__img img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  margin-top: 20px;
}

.p3-card__img_r img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-top: 20px;
}

.p3-card__name {
  margin: 0 0 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #2eb6aa;
  border-bottom: 1px solid #2eb6aa;
}

@media (max-width: 768px) {
  .p3-card__name {
    font-size: 13px;
  }
  .p3-hero__lead_r {
    font-size: 16px;
  }
  .p3-card__text {
    margin: 0 !important;
  }
  .p3-block--green .p3-card__img img {
    margin-top: 0;
  }
  .p3-card__name_r {
    font-size: 13px !important;
  }
  .green img {
    margin-top: 0;
  }
}

.p3-card__name_r {
  margin: 0 0 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #008ccf;
  border-bottom: 1px solid #008ccf;
}

.p3-card__text {
  font-size: 11px;
  line-height: 1.4;
  margin-top: 15px;
}

.p3-card__textbox {
  display: flex;
  justify-content: center;
}

.p3-card__textbox p {
  font-size: 11px;
  margin-top: 50px;
}

.p3-card__list {
  font-size: 14px;
  color: #008ccf;
  text-align: left;
}

.p3-card__list li {
  margin-top: 15px;
}

/* 青いカード（できない紙） */
.p3-grid--blue .p3-card,
.p3-card--blue {
  border-color: rgba(82, 136, 230, 0.45);
}

@media (max-width: 768px) {
  .p3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p3-card__textbox p {
    margin-top: 20px;
  }
  .p3-alert--green {
    flex-direction: column;
  }
  .p3-alert--blue {
    flex-direction: column;
  }
  ul {
    padding-left: 1.2rem !important;
  }
  .p3-card__list li {
    margin-top: 0;
  }
}

/* 小見出し（紙類/紙以外） */
.p3-subhead {
  width: 100%;
  margin: 16px 0 10px;
  padding: 6px 10px;
  background: #008ccf;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}

/* 注意ボックス */
.p3-alert {
  margin: 16px auto 0;
  width: min(1100px, 100%);
  border-radius: 8px;
  padding: 14px 16px;
}

.p3-alert--green {
  background: #2eb6aa;
  display: flex;
}

.p3-alert--blue {
  background: #75a1e3;
  display: flex;
}

.p3-alert__title {
  font-weight: 800;
  background: #fff;
  padding: 10px 25px;
  color: #2eb6aa;
  border-radius: 5px;
  margin: 20px;
  text-align: center;
}

.p3-alert__title_r {
  font-weight: 800;
  background: #fff;
  padding: 10px 25px;
  color: #75a1e3;
  border-radius: 5px;
  margin: 10px;
  text-align: center;
}

.p3-alert__text {
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
  color: #fff;
  margin: 20px;
}

/* =========================
  お問い合わせ
========================= */

.p3-contact {
  padding: 46px 0 70px;
  background: #fff;
}

.p3-contact__inner {
  width: min(900px, 100% - 32px);
  margin: 0 auto;
  text-align: center;
}

.p3-contact__lead {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.7;
}

/* =========================
  P4：リサイクル回収ボックス
========================= */

.p4-page {
  color: #555;
  font-family: var(--font-base, sans-serif);
  position: relative;
  top: -260px;
  z-index: -1;
}

.p4-wrap {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

.p4-mini {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin: 0 0 8px;
}

.p4-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1aa39a;
}

.p4-title-line {
  width: 36px;
  height: 2px;
  background: #1aa39a;
  margin: 12px auto 0;
  border-radius: 99px;
}

/* ボタン */
.p4-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: #2aa88f;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: none;
  margin-bottom: 20px;
}

.p4-btn:hover {
  opacity: 0.9;
}
.p4-btn--small {
  min-width: 180px;
  height: 40px;
  font-size: 13px;
}

/* =========================
  HERO
========================= */

.p4-hero {
  position: relative;
  padding-top: 130px;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 1025px) {
  .p4-hero__bg-sp {
    display: none;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .p4-hero {
    padding-top: 200px;
  }
  .p4-hero__bg-sp {
    display: none;
  }
}

@media (max-width: 768px) and (min-width: 476px) {
  .p4-hero {
    padding-top: 230px;
  }
  .p4-hero__bg-sp {
    display: none;
  }
}

@media (max-width: 475px) {
  .sp-1460 {
    display: none;
  }
  .p4-hero__bg {
    display: none;
  }
}

.p4-hero__bg {
  inset: 0;
  z-index: 0;
  width: 100%;
}

.p4-hero__bg-sp {
  inset: 0;
  z-index: 0;
  width: 100%;
}

.p4-hero__bg img {
  width: 100%;
}

.p4-hero__bg-sp img {
  width: 100%;
}

.p4-hero__title {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.p4-hero__frame {
  position: relative;
  top: 95px;
}

.p4-hero__frame-text {
  margin: auto;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 600;
  width: 500px;
}

/* =========================
  COLLECT
========================= */

.p4-collect {
  padding: 36px 0 50px;
  background-image: url("assets/img/box-bg-2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p4-collect__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-top: 26px;
  align-items: center;
}

/* 左の白いカード */
.p4-note-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.p4-note-item + .p4-note-item {
  margin-top: 18px;
}

.p4-note-item:not(:last-child) {
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.p4-note-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.p4-note-bar {
  width: 3px;
  height: 18px;
  background: #1aa39a;
  border-radius: 99px;
}

.p4-note-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-header);
}

.p5-note-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #299d93;
}

.p4-note-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.9;
}

.p4-note-text span {
  color: #1aa39a;
  font-size: 15px;
  font-weight: bold;
  margin-right: 5px;
}

.p4-diagram img {
  width: 370px;
  height: auto;
  display: block;
  margin: 20px auto;
}

@media (max-width: 475px) {
  .p4-diagram img {
    width: 280px;
  }
}

/* =========================
  2 cards
========================= */

.p4-cards {
  background: #fffbe8;
  padding: 46px 0 70px;
}

.p4-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.p4-card {
  border-radius: 10px;
  padding: 26px 24px;
  text-align: center;
  position: relative;
}

.p4-card-bg {
  background: #fff;
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  text-align: center;
  position: relative;
  height: 530px;
}

.p4-card__icon img {
  width: 65px;
  height: auto;
  display: block;
  margin: 20px auto;
}

.p4-card__title {
  margin: 25px 0;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-header);
}

.p4-card__text {
  margin: 50px 50px 40px;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

.p4-card__text_r {
  margin: 70px 50px 40px;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

.p4-card__text span {
  color: #299d93;
  font-weight: bold;
}

.p4-card__link {
  display: block;
  font-size: 12px;
  color: #1aa39a;
  margin-bottom: 12px;
  font-weight: 700;
}

.p4-card__img img {
  height: auto;
  display: block;
  margin: 10px auto 0;
}

/* =========================
  SP
========================= */

@media (max-width: 768px) {
  .p4-hero__title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .p4-hero__frame {
    clip-path: none;
    border-radius: 14px;
    padding: 16px 14px;
  }
  .p4-hero__frame-text {
    font-size: 12px;
  }

  .p4-title {
    font-size: 18px;
  }

  .p4-collect__grid {
    grid-template-columns: 1fr;
    display: block;
  }
  .p4-two {
    grid-template-columns: 1fr;
  }

  .p4-btn {
    min-width: 200px;
  }
}

/* =========================
  P5：オリジナルトイレットペーパー
========================= */

.p5-page {
  color: #555;
  font-family: var(--font-base, sans-serif);
}
.p5-wrap {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  top: -150px;
}

.p5-mini {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin: 0 0 8px;
}

.p5-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: #1aa39a;
}

.p5-title-line {
  width: 36px;
  height: 2px;
  background: #1aa39a;
  margin: 12px auto 0;
  border-radius: 99px;
}

/* ボタン */
.p5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: #2aa88f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.p5-btn:hover {
  opacity: 0.9;
}

/* =========================
  HERO（上部グラデ＋軌道）
========================= */

.p5-hero {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  background: #eaf7f4;
}

.p5-hero__bg {
  position: absolute;
  inset: 0;
  /* カンプの上部曲線背景はここに差し替え */
  background: linear-gradient(90deg, rgba(92, 205, 178, 0.35), rgba(83, 145, 233, 0.35));
  z-index: 0;
}

.p5-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
  padding: 28px 0 40px;
  text-align: center;
}

.p5-hero__title {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* 中央の円と周囲アイコン */
.p5-orbit {
  position: relative;
  height: 360px;
  margin: 0 auto;
  max-width: 980px;
}

.p5-orbit__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.75);
  border: 4px solid #1aa39a;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.p5-orbit__tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1aa39a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

.p5-orbit__head {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  color: #1aa39a;
}

.p5-orbit__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  font-weight: 700;
}

/* 周囲の丸（仮：位置は調整） */
.p5-orbit__node {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1aa39a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p5-orbit__node img {
  width: 54px;
  height: auto;
  display: block;
}

/* 位置（必要なら後でカンプに合わせて微調整します） */
.p5-orbit__node--n1 {
  left: 6%;
  top: 18%;
}
.p5-orbit__node--n2 {
  left: 24%;
  top: 52%;
}
.p5-orbit__node--n3 {
  left: 42%;
  top: 6%;
}
.p5-orbit__node--n4 {
  right: 22%;
  top: 54%;
}
.p5-orbit__node--n5 {
  right: 6%;
  top: 56%;
}

/* =========================
  BENEFIT
========================= */

.p5-bcard {
  width: 290px;
  grid-column: span 2; /* ← 1〜3枚目は2カラム */

  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(26, 163, 154, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: 180px;
  background-repeat: no-repeat;
  background-size: 70px;
  background-position: right;
  background-position-x: 200px;
  background-position-y: 80px;
  border-top: 5px solid #2eb6aa;
}

.p5-bcard img {
  padding: 10px;
}

.p5-benefit__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* ← 3→6に */
  gap: 18px;
  justify-items: center;
  width: 100%;
  max-width: 950px;
  margin: 60px auto;
}

.p5-bcard1 {
  background-image: url("assets/img/original-box1.svg");
}
.p5-bcard2 {
  background-image: url("assets/img/original-box2.svg");
}
.p5-bcard3 {
  background-image: url("assets/img/original-box3.svg");
}
.p5-bcard4 {
  background-image: url("assets/img/original-box4.svg");
}
.p5-bcard5 {
  background-image: url("assets/img/original-box5.svg");
}

.p5-bcard__no {
  position: absolute;
  left: 30px;
  top: 10px;
  font-weight: 900;
  font-size: 35px;
  color: rgba(26, 163, 154, 0.2);
}

.p5-bcard__title {
  margin: 14px 0 20px;
  font-size: 16px;
  font-weight: 900;
}

.p5-bcard__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
  letter-spacing: 0.03rem;
}

/* 下段2枚を中央寄せにする（4枚目は2〜4、5枚目は4〜6） */
.p5-benefit__grid .p5-bcard:nth-child(4) {
  grid-column: 2 / span 3;
}
.p5-benefit__grid .p5-bcard:nth-child(5) {
  grid-column: 4 / span 3;
}

.p5-benefit__grid-bottom {
  grid-column: 1 / -1; /* 全幅にする */
  display: flex;
  gap: 18px;
}

/* =========================
  HOW
========================= */

.p5-how {
  background: linear-gradient(to bottom, rgba(232, 247, 244, 0) 0%, rgba(232, 247, 244, 0.4) 30%, rgba(232, 247, 244, 1) 70%);
  padding: 30px 0 60px;
  text-align: center;
}

.p5-how__lead {
  margin: 14px 0 26px;
  font-size: 14px;
}

.p5-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.p5-step {
  text-align: center;
  position: relative;
}

.p5-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p5-step__icon img {
  width: 140px;
  height: auto;
  display: block;
  z-index: 1;
}

.p5-step__title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #1aa39a;
}

.p5-step__text {
  font-size: 12px;
  margin-top: 10px;
}

.p5-step__textbox {
  margin-top: 10px;
}

/* 点線っぽい繋ぎ（PCっぽく） */
.p5-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -43px;
  width: 52px;
  height: 2px;
  background: repeating-linear-gradient(to right, #acacac 0 6px, transparent 6px 12px);
  opacity: 0.7;
}
.p5-how__note {
  margin: 18px 0 0;
  font-size: 13px;
  opacity: 0.8;
  color: #299d93;
}

/* =========================
  MESSAGE / DESIGN
========================= */

.p5-message {
  position: relative;
  padding: 30px 0 76px;
  background: #fff;
  overflow: hidden;
}

.p5-message__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/original-bg.png");
  background-repeat: no-repeat;
  background-size: cover; /* 画像で全体を覆う */
  background-position: center; /* 画像の中央を基準に配置 */
  z-index: 0;
}

.p5-message__inner {
  position: relative;
  z-index: 1;
}

.p5-message__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  position: relative;
  top: 150px;
}

.p5-message__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #1aa39a;
  line-height: 1.4;
  font-family: var(--font-header);
}

.p5-message__points {
  width: 500px;
}

.p5-message__chip {
  margin-top: 16px;
  display: inline-block;
  padding: 20px;
  border-radius: 8px;
  background: #d1f5e1;
  font-size: 12px;
  width: 500px;
  border: 1px solid #299d93;
}

.p5-message__chip span {
  color: #299d93;
  font-weight: 700;
}

.p5-design {
  background: #ebebeb;
  border-radius: 10px;
  padding: 18px 16px;
  margin-top: 220px;
  max-width: 400px;
}

.p5-design__head {
  margin: 30px 0;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.p5-design__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.p5-design__thumb {
  height: 110px;
  border-radius: 8px;
  background: #f2f2f2; /* 仮サムネ */
  border: 1px solid #e5e5e5;
}

.p5-design__cap {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
.p5-design__cap .span-under {
  font-weight: 700;
  opacity: 0.9;
}

.p5-design__cap .span-top {
  font-weight: 700;
  color: #2eb6aa;
}

.p5-design__item img {
  display: flex;
  justify-content: center;
  margin: auto;
}

.p5-design__box {
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  padding: 10px;
  border-radius: 10px;
  height: 200px;
}

/* =========================
  CONTACT
========================= */

.p5-contact {
  padding: 62px 0 80px;
  text-align: center;
}

.p5-contact__text {
  margin: 16px 0 18px;
  font-size: 13px;
  line-height: 1.8;
}

/* =========================
  SP
========================= */

@media (max-width: 1024px) {
  .p5-hero {
    padding-top: 92px;
  }
  .p5-hero__title {
    font-size: 18px;
  }

  .p5-orbit {
    height: 420px;
  }
  .p5-orbit__center {
    width: 260px;
    height: 260px;
    border-width: 3px;
    padding: 16px;
  }
  .p5-orbit__head {
    font-size: 15px;
  }
  .p5-orbit__text {
    font-size: 11px;
  }

  .p5-orbit__node {
    width: 70px;
    height: 70px;
  }
  .p5-orbit__node img {
    width: 42px;
  }

  /* SPは周囲ノードを少し縦寄せ */
  .p5-orbit__node--n1 {
    left: 0%;
    top: 10%;
  }
  .p5-orbit__node--n2 {
    left: 8%;
    top: 62%;
  }
  .p5-orbit__node--n3 {
    left: 42%;
    top: -4%;
  }
  .p5-orbit__node--n4 {
    right: 8%;
    top: 62%;
  }
  .p5-orbit__node--n5 {
    right: 0%;
    top: 42%;
  }

  .p5-title {
    font-size: 18px;
  }

  .p5-benefit__grid-bottom {
    display: grid;
  }
  .p5-message__grid {
    grid-template-columns: 1fr;
  }
  .p5-step:not(:last-child)::after {
    top: 100%;
    left: 60px;
    right: auto;
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(to bottom, #acacac 0 6px, transparent 6px 12px);
    transform: translateX(-50%);
  }

  .p5-benefit__grid {
    grid-template-columns: 1fr; /* 1列 */
    justify-items: stretch; /* 横いっぱい */
    gap: 14px; /* 任意 */
    width: 290px;
  }

  /* ★ これが重要：4・5枚目のPC用指定をSPで解除 */
  .p5-benefit__grid .p5-bcard:nth-child(4),
  .p5-benefit__grid .p5-bcard:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .p5-steps {
    display: grid;
  }
  .p5-step {
    margin: auto;
    display: flex;
    width: 290px;
    justify-content: space-between;
  }

  .p5-step__textbox {
    margin: 30px auto;
  }

  .p5-design {
    margin: auto;
  }

  .p5-message__left {
    margin: auto;
  }

  .p5-message__points {
    width: 100%;
  }

  .p5-message__chip {
    width: 100%;
  }

  .p5-wrap {
    padding: 0;
  }
}

.hero-visual {
  text-align: center;
  padding: 40px 0 10px;
}

.hero-visual__lead {
  margin: 0 0 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #555;
}

.hero-visual__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

/* 左右 */
.hero-visual__side {
  width: 280px;
  display: flex;
  justify-content: center;
}

/* 背景の大きい薄い円 */
.hero-visual__circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #fbf7d8;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 円の中の画像 */
.hero-visual__circle img {
  width: 72%;
  height: auto;
  display: block;
}

/* 中央のアイコン */
.hero-visual__center {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  top: -80px;
}

.hero-visual__icon {
  width: 50px;
  height: auto;
  display: block;
  opacity: 0.9;
}

.hero-visual__arrow {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

/* SP */
@media (max-width: 768px) {
  .hero-visual__row {
    gap: 18px;
  }
  .hero-visual__side {
    width: 100%;
  }
  .hero-visual__circle {
    width: 210px;
    height: 210px;
  }
  .hero-visual__center {
    justify-content: center;
    margin: 4px 0 8px;
  }
}

@media (max-width: 768px) {
  .hero-visual__row {
    flex-wrap: nowrap; /* ← 折り返さない */
    gap: 12px; /* すき間を詰める */
  }

  .hero-visual__side {
    width: auto; /* 横幅固定をやめる */
  }

  .hero-visual__circle {
    width: 160px; /* 円を小さく */
    height: 160px;
  }

  .hero-visual__circle img {
    width: 70%;
  }

  .hero-visual__center {
    width: auto;
    margin: 0;
    gap: 6px;
  }

  .hero-visual__icon {
    width: 24px; /* 中央アイコンも縮小 */
  }

  .hero-visual__arrow {
    font-size: 18px;
  }

  .hero-visual__lead {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .hero-visual__row {
    flex-wrap: nowrap; /* ← 折り返さない */
    gap: 12px; /* すき間を詰める */
  }

  .hero-visual__side {
    width: auto; /* 横幅固定をやめる */
  }

  .hero-visual__circle {
    width: 160px; /* 円を小さく */
    height: 160px;
  }

  .hero-visual__circle img {
    width: 70%;
  }

  .hero-visual__center {
    width: auto;
    margin: 0;
    gap: 6px;
  }

  .hero-visual__icon {
    width: 24px; /* 中央アイコンも縮小 */
  }

  .hero-visual__arrow {
    font-size: 18px;
  }

  .hero-visual__lead {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .p4-card {
    padding: 0;
  }
  .p4-card__title {
    font-size: 18px;
  }
  .p4-card__text {
    margin: 30px 20px;
  }
  .p4-card__text_r {
    margin: 30px 20px;
  }
  .p3-hero__lead_rr {
    margin: 30px 0 18px;
  }
  .p4-card__img img {
    width: 180px;
  }
  .p4-card-bg {
    height: 430px;
  }
}

.mg-20 {
  margin-bottom: 20px;
  z-index: 5;
}

body {
  position: relative;
  z-index: -1;
}

.mg-top {
  margin-bottom: -200px;
}

:root {
  --c-main: #008f5d; /* メイン緑 */
  --c-mint: #d1f5e6; /* 背景ミント */
  --c-accent: #ffab00; /* アクセント黄/オレンジ */
  --c-bg: #f4fbf8; /* ベース背景色 */
  --font-jp: "M PLUS Rounded 1c", sans-serif;
  --font-en: "Barlow", sans-serif; /* 背景の英字用 */
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロール防止 */
}

/* --- 中央ビジュアルエリア --- */
.hero-visual {
  position: relative;
  z-index: 2; /* 文字より手前に */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 円形のベース */
.cycle-circle {
  width: 420px;
  height: 420px;
  position: relative;
  background: rgba(255, 255, 255, 0.9); /* 少し透過 */
  border-radius: 50%;
  /* 光彩のような影 */
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.5), 0 30px 60px rgba(0, 143, 93, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  animation: floatMain 6s ease-in-out infinite;
}

/* 中央のテキスト */
.center-text {
  text-align: center;
  font-family: var(--font-jp);
  color: var(--c-main);
  z-index: 2;
}
.center-text small {
  display: block;
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.center-text strong {
  display: block;
  font-size: 2rem;
  background: linear-gradient(45deg, var(--c-main), #4caf50);
  -webkit-text-fill-color: transparent;
}

/* 周りを回るアイコンたち */
.icon-box {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  border: 4px solid var(--c-mint);
  transition: transform 0.3s;
}
.icon-label {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--c-main);
  margin-top: 5px;
  font-family: var(--font-jp);
}

/* アイコン配置アニメーション */
.pos-top {
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  animation: iconPulse 4s infinite;
}
.pos-right {
  top: 60%;
  right: -35px;
  animation: iconPulse 4s infinite 1s;
}
.pos-left {
  top: 60%;
  left: -35px;
  animation: iconPulse 4s infinite 2s;
}

/* 矢印（SVG） */
.arrows-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: spin 30s linear infinite;
}
.arrow-path {
  fill: none;
  stroke: var(--c-main);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  opacity: 0.4;
}

@keyframes floatMain {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1) translateX(var(--tx, -50%));
  }
  50% {
    transform: scale(1.05) translateX(var(--tx, -50%));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
}
/* X軸の補正用変数 */
.pos-top {
  --tx: -50%;
}
.pos-right {
  --tx: 0;
  transform: translateX(0);
}
.pos-left {
  --tx: 0;
  transform: translateX(0);
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .bg-typo {
    font-size: 35vw;
  }
  .typo-left {
    left: -15vw;
  }
  .typo-right {
    right: -15vw;
  }

  .cycle-circle {
    width: 340px;
    height: 340px;
  }
  .icon-box {
    width: 85px;
    height: 85px;
    font-size: 2.2rem;
  }
  .pos-top {
    top: -25px;
  }
  .pos-right {
    right: -20px;
  }
  .pos-left {
    left: -20px;
  }

  .recycle-fv {
    min-height: 750px !important;
    top: -150px !important;
  }
}
/* =========================
   Recycle First View
   ========================= */

.recycle-fv {
  position: relative;
  overflow: hidden;
  min-height: 1000px;
  padding: 90px 0;
  background: #f7fffd;
  top: -250px;
  z-index: -1;
}

/* 背景 */
.recycle-fv__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/original-bgall.png");
  background-repeat: no-repeat;
  background-size: cover; /* 画像で全体を覆う */
  background-position: center; /* 画像の中央を基準に配置 */
}

.product-text {
  font-size: 13px;
  margin: auto;
  max-width: 1000px;
  padding: 50px 20px;
}

/* =========================================
   Products Page (Online Shop style)
   - page-products.php / トイレットペーパー商品一覧用
   ========================================= */

/* ページ全体 */
.products-page {
  padding: 40px 0 70px;
}

.products-page__inner {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

/* 上部タイトル（任意：あなたの cp-title-wrapper 用） */
.cp1-title-wrapper {
  padding: 30px 40px 0;
  text-align: center;
}
.cp1-title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

/* カテゴリ見出し */
.shop-category-title {
  margin: 38px 0 12px;
  padding: 15px 14px;
  border-left: 6px solid #26b4a8;
  background: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* 説明文（旧 #summary #summary1 対応用） */
#summary,
#summary1 {
  margin: 12px 0 50px;
  line-height: 1.9;
  font-size: 14px;
  text-align: left;
}

/* ====== 商品グリッド ====== */
.shop-grid {
  margin: 16px 0 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ====== 商品カード ====== */
.shop-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/*.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}*/

/* サムネ */
.shop-card__thumb {
  display: block;
  background: #f6f7f8;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
}

/* 本文 */
.shop-card__body {
  padding: 14px 14px 16px;
}

.shop-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  color: #26b4a8;
}

.shop-card__title a {
  text-decoration: none;
}

.shop-card__desc {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  min-height: 2.8em; /* 2行分を揃える */
}

/* 価格 */
.shop-card__price {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
}

.shop-card__price-main {
  font-size: 16px;
  font-weight: 900;
}

.shop-card__price-sub {
  font-size: 12px;
  color: #666;
}

/* ボタン */
.shop-card__actions {
  display: flex;
  gap: 10px;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  border-radius: 12px;
  background: #26b4a8;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* おすすめバッジ */
.shop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4b4b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

/* ====== レスポンシブ ====== */
@media (max-width: 991.98px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cp-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .products-page {
    padding: 26px 0 56px;
    margin: 10px;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-card__desc {
    min-height: auto;
  }
  .cp1-title-wrapper {
    padding: 10px 10px 0 !important;
  }
  .product-title-jp {
    font-size: 20px;
  }
}

.shop-btn.is-disabled {
  background: #bbb;
  cursor: not-allowed;
  pointer-events: none;
}

.shop-guide {
  margin: 12px 0 20px;
  font-size: 13px;
  color: #555;
}

.shop-guide__link {
  color: #26b4a8;
  font-weight: 700;
  text-decoration: underline;
}

/* =========================================
   商品詳細ページ（single-about.php）
   ========================================= */

.single-about {
  background: #f6f7f8;
  padding: 130px 0 60px;
}

.single-about table {
  border-collapse: collapse;
}

/* 全体レイアウト */
.single-about .syasin {
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* 左：商品画像＋価格 */
.single-about .photo {
  width: 380px;
  padding: 24px;
  text-align: center;
  vertical-align: top;
  background: #fafafa;
  border-right: 1px solid #e5e5e5;
}

.single-about .photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
}

/* 価格 */
.single-about .photo {
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.single-about .photo small {
  font-size: 12px;
  color: #666;
}

/* カートフォーム */
.single-about .photo form {
  margin-top: 16px;
}

.single-about .photo input[type="text"] {
  width: 60px;
  padding: 6px;
  font-size: 14px;
  text-align: center;
}

.single-about .photo input[type="submit"] {
  margin-top: 12px;
  padding: 10px 24px;
  background: #26b4a8;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.single-about .photo input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* 右：商品情報 */
.single-about .syasin > tbody > tr > td:last-child {
  padding: 24px 30px;
  vertical-align: top;
}

/* 情報テーブル */
.single-about .hidari {
  width: 140px;
  padding: 10px 12px;
  background: #f2f2f2;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #e0e0e0;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
}

.single-about .migi {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.7;
  border: 1px solid #e0e0e0;
}

.single-about .tokutyo {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.8;
  border: 1px solid #e0e0e0;
}

/* 一覧へ戻る */
.single-about .button {
  margin-top: 26px;
  text-align: center;
}

.single-about .button a {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: #eee;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.single-about .button a:hover {
  background: #ddd;
}

/* =========================================
   レスポンシブ（スマホ）
   ========================================= */
@media (max-width: 768px) {
  .single-about {
    padding: 50px 0 40px;
  }

  .single-about .syasin,
  .single-about .syasin tbody,
  .single-about .syasin tr,
  .single-about .syasin td {
    display: block;
    width: 100%;
  }

  .single-about .photo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .single-about .syasin > tbody > tr > td:last-child {
    padding: 20px 16px;
    display: flex;
    justify-content: center;
  }

  .single-about .hidari,
  .single-about .migi,
  .single-about .tokutyo {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .single-about .hidari {
    background: #fafafa;
    border-bottom: none;
    text-align: left;
  }

  .single-about .migi,
  .single-about .tokutyo {
    border-top: none;
    margin-bottom: 10px;
  }
}

/* =========================================
   注文方法ページ（page-order.php）
   ========================================= */

.order-guide {
  background: #f6f7f8;
  padding: 120px 0 70px;
}

.order-guide__inner {
  width: min(980px, 100% - 32px);
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 34px 30px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.order-guide__head {
  text-align: center;
  margin-bottom: 28px;
}

.order-guide__title {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 10px;
  color: #333;
}

.order-guide__lead {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  font-weight: 700;
}

.order-guide__section {
  border-top: 1px solid #e6e6e6;
  padding-top: 22px;
  margin-top: 22px;
}

.order-guide__h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: #1aa39a;
}

.order-guide__icon {
  display: inline-block;
}

.order-guide__text {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.9;
  color: #444;
}

.order-guide__text a {
  color: #1aa39a;
  text-decoration: underline;
  font-weight: 800;
}

.order-guide__steps {
  margin: 10px 0 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.9;
}

.order-guide__title2 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #333;
}

.order-guide__lead2 {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  font-weight: 700;
}

.order-guide__bank {
  background: #eefaf8;
  border: 1px solid rgba(26, 163, 154, 0.25);
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 900;
  color: #1aa39a;
  margin: 10px 0;
}

.order-guide__note {
  margin: 0 0 14px;
  font-size: 12px;
  color: #666;
}

.order-guide__table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}

.order-guide__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 640px;
}

.order-guide__table th,
.order-guide__table td {
  border: 1px solid #e2e2e2;
  padding: 10px 12px;
  vertical-align: top;
}

.order-guide__table thead th {
  background: #f2f2f2;
  font-weight: 900;
  text-align: left;
}

.order-guide__table tbody th {
  background: #fafafa;
  width: 120px;
  white-space: nowrap;
  font-weight: 900;
}

@media (max-width: 768px) {
  .order-guide {
    padding: 24px 0 40px;
  }
  .order-guide__inner {
    padding: 22px 16px;
    border-radius: 12px;
  }
  .order-guide__title {
    font-size: 20px;
  }
  .order-guide__table {
    min-width: 720px;
  }
}
