@charset "UTF-8";
:root {
  --color-header-border: #060606;
  --color-text: #000000;
  --color-text-invert: #fff;
  --font-sans: "Noto Sans", "Noto Sans JP",
    system-ui, -apple-system, "Segoe UI",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    "Helvetica Neue", Arial, sans-serif;
  --container-max: 1300px;
  --space-2: .8rem;
  --space-3: 1.2rem;
  --space-4: 1.6rem;
  --space-6: 2.4rem;
}

/* デフォルト（下層） */
body:not(.home) .l-header {
  --color-header-bg: #fff;
}

/* TOP（home/front-page） */
body.home .l-header,
body.page-id-32 .l-header {
  --color-header-bg: #0b6d83;
}

body.page-id-34 .l-header {
  --color-header-bg: #ff9900;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  font-size: 62.5%;
  line-height: 1;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  /*letter-spacing: .1em;*/
  color: #1D1515;
}

img {
  width: 100%;
}

.inner {
  padding: 0 min(5.3333vw, 28.27px);
}

.l-header {
  border-bottom: 2px solid var(--color-header-border);
  background: var(--color-header-bg, #fff);
}

.p-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
@media (max-width: 640px) {
  .p-header__inner {
    padding: var(--space-2) var(--space-4);
  }
}
.p-header__menu {
  margin-right: var(--space-2);
}
.p-header__brand {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.p-header__cta {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.l-global-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  /* u-is-hidden が外れるまで非表示 */
}
.l-global-nav.u-is-hidden {
  display: none;
}

.p-global-nav {
  /* 開いた時の状態（JSで .is-open を付与） */
}
.p-global-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5333333333);
  /* 黒の半透明 */
  opacity: 0;
  transition: opacity 0.25s ease;
}
.p-global-nav__panel {
  display: flex;
  flex-direction: column;
  overflow: auto;
  min-height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
  width: min(88vw, 540px);
  max-width: 100%;
  background: #000;
  color: #fff;
  overflow: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 3rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .p-global-nav__panel {
    padding: 2rem;
  }
}
.p-global-nav__top {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  gap: 3rem;
}
.p-global-nav__close {
  font-size: 4rem;
  font-weight: bold;
  /* 左上の × */
}
.p-global-nav__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.p-global-nav__title {
  font-size: 3.2rem;
  font-weight: bold;
}
.p-global-nav__cols {
  padding: 0 2.4rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  flex: 1 1 auto;
}
@media (max-width: 640px) {
  .p-global-nav__cols {
    grid-template-columns: 1fr;
    gap: 0;
    flex: 0;
  }
}
.p-global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-global-nav__list > li {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 4rem 0;
}
@media (max-width: 640px) {
  .p-global-nav__list > li {
    margin: 3rem 0;
  }
}
.p-global-nav__list a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0.15rem 0;
}
.p-global-nav__list a:hover {
  text-decoration: underline;
}
.p-global-nav__list a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.p-global-nav__section ul {
  margin: 3rem 0 3rem 1rem;
  padding: 0 0 0 1rem;
  border-left: 2px solid #fff;
}
@media (max-width: 640px) {
  .p-global-nav__section ul {
    margin: 3rem 0 -3rem 1rem;
  }
}
.p-global-nav__section ul li {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.6rem 0;
}
.p-global-nav__sns {
  margin-top: auto;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-global-nav__sns a {
  font-size: 1.4rem;
  color: #bbb;
  text-decoration: none;
}
.p-global-nav__sns a::before {
  content: "・";
}
.p-global-nav.is-open .p-global-nav__overlay {
  opacity: 1;
}
.p-global-nav.is-open .p-global-nav__panel {
  transform: translateX(0);
}

.l-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}
.l-modal.u-is-hidden {
  display: none;
}

.p-modal {
  /* 開状態（JSで .is-open を付与） */
}
.p-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(0.4rem);
          backdrop-filter: blur(0.4rem);
  /* 4px */
  opacity: 0;
  transition: opacity 0.2s ease;
}
.p-modal__panel {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(90vw, 59rem);
  background: #fff;
  color: #111;
  border-radius: 2.5rem;
  /* 12px */
  box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0;
  padding: 5rem 2.4rem 4rem;
  /* 20px 24px */
  outline: none;
}
.p-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  /* 8px */
  font-size: 2.8rem;
  font-weight: bold;
  color: #0b6d83;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.p-modal__close:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}
.p-modal__body {
  text-align: center;
}
.p-modal__eyebrow {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.p-modal__title {
  font-size: 4.8rem;
  font-weight: bold;
  margin: 0 0 2.5rem;
}
@media (max-width: 640px) {
  .p-modal__title {
    font-size: 2.4rem;
  }
}
.p-modal__note {
  font-size: 1.6rem;
  margin-bottom: 3.6rem;
}
.p-modal__actions .c-btn--primary {
  display: inline-block;
  color: #0b6d83;
  border: 0.1rem solid #0b6d83;
  /* 1px */
  border-radius: 5rem;
  /* 20px pill */
  padding: 1.6rem 1.6rem;
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none;
  width: min(100%, 26.5rem);
  transition: all 0.2s ease;
}
.p-modal__actions .c-btn--primary:hover {
  background: #0b6d83;
  color: #fff;
}
.p-modal__actions .c-btn--primary:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}
.p-modal.is-open .p-modal__overlay {
  opacity: 1;
}
.p-modal.is-open .p-modal__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* スクロール固定ユーティリティ（前に作ったものを流用） */
.u-noscroll {
  overflow: hidden;
}

.l-section {
  padding: 8rem 0;
}
@media (max-width: 640px) {
  .l-section {
    padding: 4rem 0;
  }
}

/* layout */
.l-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
}
.l-modal.u-is-hidden {
  display: none;
}

/* object */
.p-photomodal {
  /* 開状態 */
}
.p-photomodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.p-photomodal__panel {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0.98);
  margin: 0;
  padding: 0;
  outline: none;
  max-width: 96vw;
  max-height: 92vh;
  display: grid;
  place-items: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0;
}
.p-photomodal__img {
  max-width: 96vw;
  max-height: 92vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.6rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.35);
  background: #111;
  /* 読み込み中の下地 */
}
.p-photomodal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.p-photomodal__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.p-photomodal.is-open .p-photomodal__overlay {
  opacity: 1;
}
.p-photomodal.is-open .p-photomodal__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* スクロール固定ユーティリティ（既存流用） */
.u-noscroll {
  overflow: hidden;
}

/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .p-photomodal__panel {
    transition: none;
  }
}
/* layout */
.l-footer {
  background: #eee;
}

/* project */
.p-footer {
  /* 左カラム */
  /* 右カラム nav */
}
.p-footer__inner {
  max-width: 114rem;
  margin: 0 auto;
  padding: 10rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.p-footer__inner > div {
  flex: 1;
  max-width: 44rem;
}
@media (max-width: 960px) {
  .p-footer__inner {
    flex-direction: column-reverse;
    gap: 3.2rem;
    padding: 4rem 2rem;
  }
}
.p-footer__logo img {
  width: auto;
  height: auto;
  max-width: 44rem;
}
.p-footer__addr {
  margin: 3.4rem 0 7rem;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.p-footer__addr__link {
  margin-left: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
}
.p-footer__copy {
  display: block;
  font-size: 1.4rem;
}
/* ====== フッターナビ（Global Navの文法を踏襲） ====== */
.p-footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  /* 列そのもの */
}
.p-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-footer-nav__group {
  margin: 0 0 3.3rem;
}
.p-footer-nav__root {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
}
.p-footer-nav__root:hover {
  text-decoration: underline;
}
.p-footer-nav__root:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}
.p-footer-nav__sub {
  list-style: none;
  margin: 2rem 0 0 1.2rem;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 0.2rem solid #111;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-footer-nav__sub a {
  font-size: 1.4rem;
  text-decoration: none;
}
.p-footer-nav__sub a:hover {
  text-decoration: underline;
}
.p-footer-nav__sub a:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .p-footer__inner {
    padding: 4rem;
  }
  .p-footer__logo {
    display: block;
    text-align: center;
  }
  .p-footer__logo img {
    text-align: center;
    width: auto;
    height: auto;
    max-width: 33rem;
  }
  .p-footer__addr {
    text-align: center;
  }
  .p-footer__copy {
    text-align: center;
  }
}
.c-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
}
.c-btn--icon .c-btn__caption {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
}
.c-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.c-btn02 {
  display: inline-block;
  border-radius: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 1.8rem 2rem;
  width: min(100%, 30rem);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}
.c-btn02.--center {
  display: block;
  margin: 0 auto;
}
.c-btn02.--center-t10 {
  margin: 8rem auto 0;
}
.c-btn02.--center-t5 {
  margin: 5rem auto 0;
}
.c-btn02--ghost {
  border: 0.1rem solid #fff;
  color: #fff;
}
.c-btn02--ghost:hover {
  background: #fff;
  color: #0b6d83;
}
.c-btn02--blue {
  border: 0.1rem solid #0b6d83;
  color: #0b6d83;
}
.c-btn02--blue:hover {
  background: #0b6d83;
  color: #fff;
}
.c-btn02--line {
  border: 0.1rem solid #fff;
  color: #fff;
}
.c-btn02--line:hover {
  background: #fff;
  color: #ff9900;
}
.c-btn02--gray {
  border: 0.1rem solid #fff;
  color: #fff;
}
.c-btn02--gray:hover {
  background: #fff;
  color: #393737;
}
.c-btn02--orange {
  border: 0.1rem solid #e0621d;
  color: #e0621d;
}
.c-btn02--orange:hover {
  background: #e0621d;
  color: #fff;
}
.c-btn02:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}

.c-icon {
  display: inline-block;
  vertical-align: middle;
}

.c-icon--img {
  display: inline-block;
  width: 44px;
  height: auto;
  /* ベースラインズレ対策 */
  vertical-align: middle;
}
@media (max-width: 640px) {
  .c-icon--img {
    width: 32px;
  }
}

.c-logo {
  text-decoration: none;
  color: #000;
}
.c-logo .c-logo__text {
  font-weight: bold;
  font-size: 3.2rem;
}

.c-link {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.25rem;
}
.c-link--icon .c-link__caption {
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
}
.c-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== breadcrumb ===== */
.p-breadcrumb {
  margin: 1.2rem 0 4rem;
}
.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
}
.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: "＞";
  font-size: 1.2rem;
  color: #0b6d83;
}
.p-breadcrumb__link {
  color: #0a66c2;
  text-decoration: none;
}
.p-breadcrumb__link:hover {
  text-decoration: underline;
}
.p-breadcrumb__current {
  color: #333;
}

.p-breadcrumb__home-icon {
  display: inline-block;
  vertical-align: middle;
  height: 1.4rem;
  width: auto;
  margin-right: 0.3rem;
}

.u-visuallyHidden {
  position: absolute !important;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* 汎用テーブル：ヘッダ1セル想定（colspan=2） */
.c-table {
  overflow: auto;
  /* キーボードでのフォーカス枠（アクセシビリティ） */
}
.c-table table {
  width: 100%;
  /* せまい端末で横スクロール */
  border-collapse: collapse;
}
.c-table thead th {
  background: #393737;
  color: #fff;
  text-align: center;
  /* 見出し中央 */
  font-size: 1.6rem;
  padding: 0.8rem 1.2rem;
}
.c-table tbody th,
.c-table tbody td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  width: 50%;
  background: #dddddd;
  text-align: left;
}
.c-table tbody td {
  border-left: 1px solid #fff;
}
.c-table:focus {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .c-table table {
    width: 100%;
    max-width: 100%;
  }
}
/* object/component/_pagination.scss */
/* 土台 */
.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 0;
  /* WP標準のラッパー */
  /* 各ボタン（数字 / 前後 / 省略 …） */
  /* 現在ページ */
  /* 無効状態（必要なら） */
  /* ダーク背景の上に置く場合（任意） */
}
.c-pagination .pagination,
.c-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}
.c-pagination .page-numbers {
  --fg: #0f6673;
  --bg: #ffffff;
  --bd: #0f6673;
  display: inline-grid;
  place-items: center;
  min-width: 3.2rem;
  height: 3.2rem;
  padding: 0 0.6rem;
  border: 0.1rem solid var(--bd);
  border-radius: 9999px;
  background: var(--bg);
  color: var(--fg);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s;
  /* キーボードフォーカス */
  /* 省略記号 */
  /* 前後アイコン（お好みで矢印感を少し） */
}
.c-pagination .page-numbers:hover {
  background: #e6f4f6;
}
.c-pagination .page-numbers:active {
  transform: translateY(0.05rem);
}
.c-pagination .page-numbers:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}
.c-pagination .page-numbers.dots {
  border-color: transparent;
  color: #888;
  background: transparent;
  min-width: auto;
  padding: 0 0.2rem;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  padding: 0 1rem;
}
.c-pagination .page-numbers.current {
  --fg: #fff;
  --bg: #0f6673;
  --bd: #0f6673;
  cursor: default;
  pointer-events: none;
}
.c-pagination .page-numbers.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.c-pagination.is-invert .page-numbers {
  --fg: #fff;
  --bd: #fff;
  --bg: transparent;
}
.c-pagination.is-invert .page-numbers:hover {
  background: rgba(255, 255, 255, 0.1333333333);
}
.c-pagination.is-invert .page-numbers.current {
  --bg: #fff;
  --fg: #0f6673;
  --bd: #fff;
  color: #0f6673;
}

/* 狭い画面で少し大きめのタップ領域 */
@media (max-width: 480px) {
  .c-pagination .page-numbers {
    min-width: 3.6rem;
    height: 3.6rem;
    font-size: 1.2rem;
  }
}
/* ========== Flow / Step timeline ========== */
.c-reform-flow {
  position: relative;
  /* 左側のドット（レール上のマーカー） */
  /* ヘッダー（STEPバッジ + タイトル） */
  /* アイテム */
  /* 左サムネイル */
  /* 右側本文 */
  /* 左側のドット（レール上のマーカー） */
}
.c-reform-flow::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 22rem;
  top: -3%;
  width: 1.2rem;
  height: 106%;
  background: linear-gradient(180deg, #fff 1%, #ddd 10%, #ddd 90%, #fff 99%);
  transform: translate(-50%, 0);
}
.c-reform-flow__head {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
  border: 1px solid #0b6d83;
}
.c-reform-flow__badge {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background: #0b6d83;
  padding: 1.2rem 1.4rem;
  font-size: 2.4rem;
}
.c-reform-flow__title {
  font-weight: bold;
  color: #0b6d83;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.4rem);
}
.c-reform-flow__item {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 9rem;
  position: relative;
  padding: 1.4rem 0;
}
.c-reform-flow__thumb {
  grid-column: 1;
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #e7edf0;
  border-radius: 0.4rem;
  overflow: hidden;
  background: #f2f6f8;
}
.c-reform-flow__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-reform-flow__body {
  grid-column: 2;
}
.c-reform-flow__step {
  color: #0b6d83;
  font-weight: bold;
  font-size: 2.4rem;
  margin: 0 0 1rem;
  position: relative;
}
.c-reform-flow__lead {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 1rem;
}
.c-reform-flow__text {
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.c-reform-flow__item::after {
  content: "";
  position: absolute;
  left: 22rem;
  top: 2.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #0b6d83;
  transform: translate(-50%, 0);
}
.c-reform-flow__item::before {
  content: "";
  width: 4.3rem;
  height: 1px;
  background-color: #0b6d83;
  left: 23.6rem;
  top: 2.6rem;
  position: absolute;
}

/* 既存PC用の .c-reform-flow はそのまま。SP時の見た目を上書き */
@media (max-width: 640px) {
  .c-reform-flow {
    /* 横スライダー（スナップ） */
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.4rem 0.4rem 1.2rem;
    /* タイムラインのレール・ドットは非表示 */
    /* カード */
    /* STEP見出しはヘッダーに集約 */
  }
  .c-reform-flow::after {
    display: none !important;
  }
  .c-reform-flow__item::before, .c-reform-flow__item::after {
    display: none !important;
  }
  .c-reform-flow__item {
    scroll-snap-align: start;
    flex: 0 0 100%;
    display: block;
  }
  .c-reform-flow__thumb {
    border: 0;
    overflow: hidden;
    background: #f3f7f9;
    aspect-ratio: 3/2;
  }
  .c-reform-flow__thumb img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-reform-flow__step {
    display: none;
  }
  .c-reform-flow__lead {
    margin: 2rem 0 1rem;
    position: relative;
  }
  /* SPヘッダー：◀ STEP 01 ▶ */
  .c-reform-flow__spHead {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    color: #0b6d83;
    font-size: 2rem;
  }
  .c-reform-flow__spNav {
    cursor: pointer;
    position: relative;
    width: 3rem;
    height: 3rem;
  }
  .c-reform-flow__spNav::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 3rem;
    height: 3rem;
    background: #0b6d83;
    /* SVGマスクで三角を描画 */
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center/contain;
            mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center/contain;
  }
  .c-reform-flow__spNav--prev::before {
    transform: scaleX(-1);
  }
  .c-reform-flow__spStep .num {
    font-variant-numeric: tabular-nums;
  }
  /* ドット */
  .c-reform-flow__dots {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.2rem 0 1rem;
  }
  .c-reform-flow__dots button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    border: 0;
    background: #cfd8dc;
    cursor: pointer;
  }
  .c-reform-flow__dots .is-active button {
    background: #0b6d83;
  }
}
.c-tab__head__title {
  font-size: 2.4rem;
  color: #fff;
  padding: 1rem 2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  background-color: #0b6d83;
}

.c-tab__head__sub {
  font-size: 1.4rem;
  line-height: 1.6;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.c-tab__head {
  margin-bottom: 4rem;
}

/* --------------------------------------------
 * Tabs / Accordion (PC: tabs, SP: accordion)
 * usage:
 * .c-tab
 *   .c-tab__nav > .c-tab__navItem.is-active > .c-tab__btn
 *   .c-tab__panel(=tab content) .is-active(PC) / .is-open(SP)
 * -------------------------------------------- */
.c-tab {
  --accent: #0b6d83;
  --border: #e5eaee;
  --muted: #9099a1;
  --surface: #f4f6f7;
  --cta: #ff8b2a;
  --cta-text: #fff;
  margin-bottom: 6rem;
  /* ===== PC: タブナビ ===== */
  /* ===== PC: パネル ===== */
  /* CTA（オレンジの角丸ボタン） */
  /* =========================================================
  * SP: アコーディオン（ナビは非表示 / パネルを折畳み）
  * --------------------------------------------------------- */
}
.c-tab__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.c-tab__navItem {
  flex: 1;
  list-style: none;
}
.c-tab__btn {
  padding: 1.4rem 0.2rem;
  background: #bbbbbb;
  border-top: 12px solid #fff;
  display: block;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.c-tab__btn:hover {
  background: #eeeeee;
  color: #000;
}
.c-tab__navItem.is-active .c-tab__btn {
  color: #000;
  background: #eeeeee;
  border-color: var(--accent);
}
.c-tab__panels {
  background: #eeeeee;
  padding: 3.6rem;
}
.c-tab__panel {
  display: none;
}
.c-tab__panel.is-active {
  display: block;
}
.c-tab__desc {
  line-height: 1.9;
  font-size: 1.4rem;
  margin: 2.4rem 0;
}
@media (max-width: 640px) {
  .c-tab {
    /* パネル全体をカード化し、ヘッダーで開閉 */
    /* アコーディオン・ヘッダー */
    /* パネル本文（閉じると高さ0） */
    /* 開いた状態 */
    /* ヘッダーに .is-open が付いた時の + → × */
    /* ギャラリーは1列 */
  }
  .c-tab__nav {
    display: none;
  }
  .c-tab__panels {
    border: 0;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .c-tab__accHead {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    background: #fff;
    border-left: 1rem solid var(--accent);
    padding: 1.2rem 1rem;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    font-size: 1.6rem;
    background: #eeeeee;
    /* 右端の + アイコン（開時は×） */
  }
  .c-tab__accHead::after {
    content: "+";
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.2s ease;
  }
  .c-tab__panel {
    display: block;
    /* SPは常時ブロック、内部で開閉 */
    overflow: hidden;
    background: #fff;
    /* カード内余白（開いたときだけ見せる） */
  }
  .c-tab__panel > .c-tab__inner {
    background: #eeeeee;
    max-height: 0;
    transition: max-height 0.28s ease;
  }
  .c-tab__panel.is-open {
    /* 十分大きく（内容に合わせて） */
  }
  .c-tab__panel.is-open > .c-tab__inner {
    padding: 1.2rem;
    transition: max-height 0.28s ease;
    max-height: -moz-max-content;
    max-height: max-content;
  }
  .c-tab__panel.is-open ~ .c-tab__accHead, .c-tab__panel.is-open + .c-tab__accHead {
    /* 構造に依存するなら JS で accHead に .is-open を付与してください */
  }
  .c-tab__accHead.is-open::after {
    transform: translateY(-50%) rotate(45deg);
  }
  .c-tab__gallery {
    grid-template-columns: 1fr;
  }
  .c-tab .c-btn02 {
    border: none;
    padding: 0.3rem;
    border-radius: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 auto;
    border-bottom: 1px solid #ff8b2a;
  }
}

/* ===== gallery slider (inside tabs) ===== */
.c-gallerySlider {
  --per: 1;
  /* 初期（SP）1枚表示 */
  position: relative;
  /* nav */
  /* dots */
  /* PCでは3枚 */
}
.c-gallerySlider__viewport {
  overflow: hidden;
  border-radius: 0.6rem;
}
.c-gallerySlider__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.35s ease;
}
.c-gallerySlider__slide {
  flex: 0 0 calc(100% / var(--per));
  /* 1ページに --per 枚見せる */
  padding: 0.3rem;
}
.c-gallerySlider__slide figure {
  margin: 0;
  background: #f3f6f8;
  border: 1px solid #e6edf1;
  overflow: hidden;
}
.c-gallerySlider__slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-gallerySlider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  box-shadow: none;
}
.c-gallerySlider__nav:before {
  content: "〉";
  display: block;
  font-size: 2rem;
  color: #ccc;
  margin: auto;
}
.c-gallerySlider__nav--prev {
  left: 1rem;
}
.c-gallerySlider__nav--prev:before {
  transform: rotate(-180deg);
}
.c-gallerySlider__nav--next {
  right: 1rem;
}
.c-gallerySlider__nav--next:before {
  transform: rotate(0deg);
}
.c-gallerySlider__dots {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.c-gallerySlider__dots button {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 0;
  background: #cbd7db;
  cursor: pointer;
}
.c-gallerySlider__dots .is-active button {
  background: #0f6673;
}
@media (min-width: 641px) {
  .c-gallerySlider {
    --per: 3;
  }
  .c-gallerySlider__dots {
    display: none;
  }
  .c-gallerySlider__nav:before {
    font-size: 3.8rem;
  }
  .c-gallerySlider__nav--prev {
    left: -2.5rem;
  }
  .c-gallerySlider__nav--next {
    right: -2.5rem;
  }
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.c-modal.u-is-hidden {
  display: none;
}
.c-modal.is-open {
  display: block;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.c-modal__dialog {
  position: relative;
  max-width: min(600px, 92vw);
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 6rem 2rem 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  outline: none;
}
.c-modal__close {
  color: #0b6d83;
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 24px;
  line-height: 1;
  border: 0;
  background: none;
  cursor: pointer;
}
.c-modal__title {
  font-weight: bold;
  font-size: clamp(18px, 2.2vw, 24px);
  text-align: center;
  margin: 0 0 4rem;
}
.c-modal__lead {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  margin: 0 0 2rem;
}
.c-modal__text {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  margin: 0 0 2rem;
  line-height: 1.8;
}
.c-modal__actions {
  text-align: center;
}

/* layout/_mv.scss */
.l-mv {
  background: #0b6d83;
  /* ヘッダー色に合わせた青緑 */
  color: #fff;
  position: relative;
}

/* object/project/_mv.scss */
.p-mv {
  /* 右：ビジュアル */
  /* 下：最新投稿バー */
}
.p-mv__inner {
  max-width: 130rem;
  /* 1200px */
  margin-inline: auto;
  padding: 1.4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 3fr 5fr;
  /* 左多め */
  gap: 0rem;
  align-items: center;
}
.p-mv__lead {
  padding-left: 5rem;
  margin-bottom: 8rem;
}
.p-mv__title {
  font-size: clamp(2.8rem, 2.2rem + 2vw, 4.8rem);
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1.6rem;
}
.p-mv__subtitle {
  font-weight: bold;
  font-size: 2.6rem;
  margin: 0 0 5rem;
}
.p-mv__visual {
  position: relative;
}
.p-mv__map {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: drop-shadow(0 0.4rem 1.2rem rgba(0, 0, 0, 0.25));
}
.p-mv__pin {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 4rem;
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: 50% 90%;
  filter: drop-shadow(0 0.2rem 0.8rem rgba(0, 0, 0, 0.35));
  animation: mv-float 2.6s ease-in-out infinite var(--delay, 0s), mv-breathe 2.6s ease-in-out infinite var(--delay, 0s);
  will-change: transform;
  pointer-events: none;
  /* 画像上でのクリックを拾わせない */
}
.p-mv__posts {
  padding: 0 2rem 2.4rem;
  /* 下余白 */
}

.p-mv-posts__link {
  color: #000;
  text-decoration: none;
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s ease;
}
.p-mv-posts__link:hover {
  opacity: 0.8;
}
.p-mv-posts__thumb img {
  width: 6.5rem;
  height: auto;
  display: block;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv-posts__date {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  line-height: 1.6;
}
.p-mv-posts__title {
  font-size: 1.4rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* コンテナ */
.p-mv-posts {
  position: relative;
}

.p-mv-posts.is-slider {
  max-width: 130rem;
  margin: -8rem auto 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.2rem;
  padding: 1.2rem;
  overflow: hidden;
}

.p-mv-posts__rail {
  position: relative;
  overflow: hidden;
}

.p-mv-posts__track {
  display: flex;
  gap: 1.2rem;
  will-change: transform;
}

/* カード：3枚が収まる幅。gapが1.2remなのでその分も考慮 */
.p-mv-posts__item {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  /* 3列見せ */
  overflow: hidden;
}

/* レスポンシブ：タブレットで2枚、モバイルで1枚見せ */
@media (max-width: 960px) {
  .p-mv-posts__item {
    flex-basis: calc((100% - 1.2rem) / 2);
  }
}
@media (max-width: 600px) {
  .p-mv-posts__item {
    flex-basis: 100%;
  }
}
/* Hover/Focus時に一時停止用の状態（JSが付与） */
.p-mv-posts.is-paused .p-mv-posts__track {
  transition: none !important;
}

/* 低モーション環境は自動流し停止 */
@media (prefers-reduced-motion: reduce) {
  .p-mv-posts__track {
    transform: none !important;
  }
}
/* ふわふわアニメ */
@keyframes mv-float {
  0% {
    transform: translate(-50%, -50%) translateY(0) rotate(0.2deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-0.8rem) rotate(-0.2deg);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(0.2deg);
  }
}
@keyframes mv-breathe {
  0%, 100% {
    transform-origin: 50% 90%;
  }
  50% {
    transform-origin: 50% 92%;
  }
}
/* 低モーション環境 */
@media (prefers-reduced-motion: reduce) {
  .p-mv__pin {
    animation: none;
  }
}
@media (max-width: 640px) {
  .p-mv__pin {
    width: 2rem;
  }
  .p-mv__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .p-mv__lead {
    padding-left: 0;
    margin-bottom: 0;
  }
  .p-mv__visual {
    order: -1;
    margin: 0 0 4rem 0;
  }
  .p-mv__title {
    text-align: center;
    font-size: 3.6rem;
  }
  .p-mv__subtitle {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 2rem;
  }
  .p-mv__cta {
    display: block;
    margin: 0 auto;
  }
  .p-mv__posts {
    padding: 0 0 2.4rem;
  }
  .p-mv-posts.is-slider {
    max-width: 130rem;
    margin: 0 auto 0;
    border-radius: 0;
    padding: 1.2rem 0;
    overflow: hidden;
  }
}
.p-concept {
  background: #fff;
  color: #000;
  padding-top: 12rem;
}
.p-concept__inner {
  max-width: 110rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  /* 左広め */
  align-items: center;
}
.p-concept__title {
  font-weight: bold;
  line-height: 1.4;
  font-size: clamp(2.4rem, 1.8rem + 1.8vw, 3.2rem);
  margin: 0 0 9rem;
}
.p-concept__text {
  font-weight: bold;
  padding-left: 3.3rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
}
.p-concept__text p {
  margin: 0 0 1rem;
}
.p-concept__visual {
  margin-top: 9rem;
  text-align: right;
}
.p-concept__logo {
  max-width: 100%;
  height: auto;
  margin: 0 0 4rem;
}
.p-concept__more {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
}
.p-concept__more:hover .p-concept__more-label {
  text-decoration: underline;
}
.p-concept__more:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}
.p-concept__more-arrow {
  width: 20rem;
  height: auto;
  display: inline-block;
  transition: all 0.2s ease;
}
.p-concept__more-arrow:hover {
  transform: translateX(1rem);
}
@media (max-width: 960px) {
  .p-concept__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    max-width: 90vw;
    margin: 0 auto;
  }
  .p-concept__title {
    margin: 0 0 4rem;
  }
  .p-concept__content {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 7rem;
  }
  .p-concept__visual {
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 70%;
    margin: 0 auto;
  }
  .p-concept__logo {
    margin: 0 auto 4rem;
    text-align: center;
  }
  .p-concept__more {
    margin: 0 0 0 auto;
  }
}

@media (max-width: 640px) {
  .p-concept {
    padding-top: 4rem;
  }
  .p-concept__inner {
    gap: 0rem;
    max-width: 100%;
    padding: 0 4rem;
    margin: 0 auto;
  }
  .p-concept__title {
    font-weight: bold;
    line-height: 1.4;
    font-size: 2.4rem;
    margin: 0 0 4rem;
  }
  .p-concept__text {
    padding-left: 3rem;
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .p-concept__content {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 3rem;
  }
  .p-concept__visual {
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 100%;
    padding: 0 3rem;
    margin: 0 auto;
  }
  .p-concept__logo {
    margin: 0 auto 2rem;
    text-align: center;
  }
  .p-concept__more {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
  }
  .p-concept__more-arrow {
    width: 60%;
  }
}
.p-valueband {
  background: #0b0b0b;
  color: #fff;
  padding-block: 2.2rem;
  /* 上下36px */
}
.p-valueband__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: 2rem;
  text-align: center;
}
.p-valueband__title {
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 5.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.p-valueband__badge {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  color: #0b0b0b;
  font-weight: bold;
  font-size: 4.5rem;
  padding-left: 0.4rem;
  padding-bottom: 0.5rem;
}
.p-valueband__sub {
  margin: 1.4rem 0 0;
  font-size: 1.6rem;
  font-weight: bold;
}

@media (max-width: 640px) {
  .p-valueband {
    background: #0b0b0b;
    color: #fff;
    padding-block: 1.2rem;
    /* 上下36px */
  }
  .p-valueband__title {
    font-size: 3.2rem;
    gap: 0.7rem;
  }
  .p-valueband__badge {
    margin-top: 0.4rem;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 3rem;
    padding-left: 0.3rem;
    padding-bottom: 0.5rem;
  }
  .p-valueband__sub {
    margin: 1rem 0 0;
    font-size: 1.2rem;
  }
}
.p-points {
  /* カード本体 */
  /* レスポンシブ */
}
.p-points__inner {
  max-width: 114rem;
  margin: 0 auto;
  padding-inline: 2rem;
}
.p-points__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9rem;
  /* 40px */
}
.p-points__card {
  /* 8px */
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 1/1;
  /* 正方形 */
  overflow: hidden;
  /* 背景画像（HTMLで --bg を渡す） */
  background: var(--bg-pc) center/cover no-repeat;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.p-points__card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.18);
  filter: saturate(1.1);
}
.p-points__card:focus-visible {
  outline: 0.2rem solid #fff;
  outline-offset: 0.3rem;
}
.p-points__num {
  font-size: 7rem;
  font-weight: bold;
}
.p-points__title {
  display: block;
  margin-top: 3.6rem;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-points__desc {
  display: block;
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.6rem;
}
@media (max-width: 1024px) {
  .p-points__list {
    gap: 2.4rem;
  }
}
@media (max-width: 840px) {
  .p-points {
    /* SPでは高さ固定でも◎ */
  }
  .p-points__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .p-points__card {
    aspect-ratio: auto;
    background: var(--bg-sp) center/cover no-repeat;
  }
  .p-points__card__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 4rem 3rem;
    text-align: left;
    gap: 10rem;
  }
  .p-points__title {
    margin-top: 1rem;
  }
  .p-points__num {
    font-size: 10rem;
  }
}

@media (max-width: 640px) {
  .p-points__inner {
    max-width: 114rem;
    margin: 0 auto;
    padding-inline: 2rem;
  }
  .p-points__card {
    aspect-ratio: auto;
    background: var(--bg-sp) center/cover no-repeat;
  }
  .p-points__card__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    text-align: left;
    gap: 3rem;
  }
  .p-points__title {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .p-points__num {
    font-size: 4rem;
  }
  .p-points__desc {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}
.p-campaign {
  background: #eeeeee;
  overflow-x: hidden;
  /* 右上のピンク吹き出し（画像） */
  /* サムネとメタ */
}
.p-campaign__inner {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-campaign__title {
  text-align: center;
  font-size: 5.2rem;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 640px) {
  .p-campaign__title {
    font-size: 3.6rem;
  }
}
.p-campaign__lead {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 2.2rem 0 6.5rem;
}
.p-campaign__grid {
  display: flex;
  gap: 3.2rem;
}
@media (max-width: 960px) {
  .p-campaign__grid {
    max-width: 70rem;
    margin: 0 auto;
    flex-direction: column-reverse;
  }
}
@media (max-width: 640px) {
  .p-campaign__grid {
    max-width: 33rem;
  }
}
.p-campaign__box {
  flex: 1;
  position: relative;
}
.p-campaign__box-inner {
  position: relative;
  background: #fff;
  border-radius: 2.5rem;
  padding: 8rem 4.3rem 4.3rem;
}
@media (max-width: 640px) {
  .p-campaign__box-inner {
    border-radius: 1rem;
    padding: 6rem 4.3rem 3rem;
  }
}
.p-campaign__box-title {
  position: absolute;
  width: 100%;
  height: 8rem;
  top: 0;
  left: 0;
  font-size: 3.2rem;
  font-weight: bold;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0.4rem 0 1.6rem;
}
@media (max-width: 640px) {
  .p-campaign__box-title {
    font-size: 1.8rem;
    height: 6rem;
  }
}
.p-campaign__ribbon {
  position: absolute;
  z-index: 1;
  right: -11.8rem;
  top: -6rem;
  width: min(35vw, 46rem);
  height: auto;
  pointer-events: none;
}
@media (max-width: 960px) {
  .p-campaign__ribbon {
    right: 1rem;
    width: 50%;
    top: -4rem;
  }
}
@media (max-width: 640px) {
  .p-campaign__ribbon {
    right: -4rem;
    top: -2rem;
    width: 70%;
  }
}
.p-campaign__thumb {
  display: block;
}
.p-campaign__thumb img {
  width: 100%;
  height: auto;
  display: block;
  background: #ddd;
}
.p-campaign__meta {
  text-align: center;
  margin-top: 4rem;
}
.p-campaign__range {
  font-size: 1.6rem;
  font-weight: bold;
}
.p-campaign__name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 0.7rem;
}

/* --- 汎用スライダー（1枚表示） --- */
.c-slider {
  position: relative;
  /* 左右余白はここで */
  /* スライド内の画像サイズ（設計：440x320） */
  /* ナビ */
  /* ドット */
}
.c-slider__viewport {
  overflow: hidden;
}
.c-slider__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
  gap: 0;
}
.c-slider__slide {
  position: relative;
  flex: 0 0 100%;
}
.c-slider .p-campaign__thumb img {
  max-width: 44rem;
  max-height: 32rem;
  margin: 0 auto;
}
.c-slider__nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  box-shadow: none;
}
.c-slider__nav:before {
  content: "〉";
  display: block;
  font-size: 3.8rem;
  color: #eeeeee;
  margin: auto;
}
.c-slider__nav--prev {
  left: -3.5rem;
}
.c-slider__nav--prev:before {
  transform: rotate(-180deg);
}
.c-slider__nav--next {
  right: -3.5rem;
}
.c-slider__nav--next:before {
  transform: rotate(0deg);
}
.c-slider__dots {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  top: 83%;
  width: 100%;
}
.c-slider__dots button {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 0;
  background: #cfcfcf;
  cursor: pointer;
}
.c-slider__dots .is-active {
  background: #0b6d83;
}
@media (max-width: 640px) {
  .c-slider__dots {
    top: 73%;
  }
  .c-slider__dots button {
    width: 0.6rem;
    height: 0.6rem;
  }
}

.p-flow {
  background: #fff;
  /* 左の丸バッジ */
  /* 下向き矢印（各項目の終わり） */
  /* 右の本文 */
}
.p-flow__inner {
  max-width: 82rem;
  margin: 0 auto;
  padding-inline: 2rem;
}
.p-flow__title {
  text-align: center;
  font-size: 5.2rem;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 640px) {
  .p-flow__title {
    font-size: 3.6rem;
  }
}
.p-flow__lead {
  text-align: center;
  font-size: 1.6rem;
  margin: 2rem 0 4.8rem;
}
.p-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: flow;
  display: flex;
  flex-direction: column;
}
.p-flow__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
.p-flow__badge {
  --badge: #c81e78;
  /* デフォルト（個別は style で上書き） */
  position: relative;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--badge);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.p-flow__num {
  font-weight: bold;
  font-size: 3.8rem;
  line-height: 1;
  padding-left: 0.8rem;
}
.p-flow__arrow {
  position: relative;
  min-height: 7.5rem;
  color: var(--badge);
  font-weight: bold;
  font-size: 3.8rem;
}
.p-flow__arrow__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-flow__content {
  padding-top: 2rem;
  position: relative;
}
.p-flow__step-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.2rem 0 1rem;
}
.p-flow__text {
  font-size: 1.4rem;
  line-height: 2.1rem;
}
/* ===== LINE セクション ===== */
.p-line {
  background: #ff9900;
  padding: 4rem 0;
  /* オレンジ */
}
.p-line__inner {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 36rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* 右側に背景画像を敷く */
}
.p-line__inner::after {
  content: "";
  position: absolute;
  inset: 0 0 0 40%;
  background: var(--bg) right center/contain no-repeat;
  z-index: 0;
}
.p-line__lead {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 33rem;
}
.p-line__title {
  font-size: 5.2rem;
  font-weight: bold;
  margin: 0 0 0.8rem;
}
.p-line__subtitle {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 0 4.5rem;
}
.p-line__text {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin: 0 0 2.3rem;
}
@media (max-width: 960px) {
  .p-line__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 4rem 2rem;
  }
}
@media (max-width: 640px) {
  .p-line__lead {
    padding-top: 25rem;
    margin: 0 auto;
    max-width: 33rem;
  }
  .p-line__inner {
    padding: 0;
  }
  .p-line__btn {
    justify-content: center;
  }
  .p-line__inner::after {
    inset: 0% 10% 0% 10%;
    background: var(--bg) top center/contain no-repeat;
  }
}

/* ===== 既存 p-modal のQR向け調整（流用） ===== */
.p-modal {
  /* 少し小ぶりのパネル */
}
.p-modal--qr {
  width: min(90vw, 40rem);
}
.p-modal__body--center {
  text-align: center;
}
.p-modal__qr {
  width: 28rem;
  height: 28rem;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 0.6rem;
  border-radius: 0.6rem;
}

/* 1rem=10px 前提 */
.p-case {
  background: #393737;
  color: #fff;
}
.p-case__inner {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-case__title {
  text-align: center;
  font-size: 5.2rem;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 640px) {
  .p-case__title {
    font-size: 3.6rem;
  }
}
.p-case__lead {
  text-align: center;
  font-size: 1.6rem;
  margin: 2rem 0 4.8rem;
}
.p-case__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
.p-case__grid.--archive {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .p-case__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-case__grid.--archive {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .p-case__grid.--archive {
    max-width: none;
  }
}
.p-case__more {
  text-align: center;
  margin-top: 8rem;
}

/* カード */
.p-case-card {
  overflow: hidden;
}
.p-case-card .p-case-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.p-case-card__thumb {
  aspect-ratio: 1/1;
  background: #ddd;
  overflow: hidden;
}
.p-case-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-case-card__title {
  margin: 0.8rem 0 0;
  font-size: 1.4rem;
  line-height: 2.6rem;
  min-height: 5.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-case-card__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.2rem 0 1.2rem;
  border-bottom: 0.1rem solid #8f8f8f;
  position: relative;
  padding-bottom: 1rem;
}
.p-case-card__date {
  font-size: 1.4rem;
}
.p-case-card__arrow {
  position: relative;
  flex: 1 1 auto;
  height: 2rem;
}
.p-case-card__arrow img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.7rem;
  height: auto;
  display: block;
  /* SVG が currentColor を拾う場合は ↓ で色を統一できます */
  /* filter: none; */
  /* 画像側で色が付いているなら不要 */
}

/* フィルタ chips */
.c-chips {
  gap: 1rem 0.6rem;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-chips li {
  min-width: calc(14.2857142857% - 0.6rem);
}

.c-chip {
  display: block;
  text-align: center;
  padding: 0.6rem 1.2rem;
  border: 2px solid #0b6d83;
  border-radius: 2rem;
  text-decoration: none;
  color: #0b6d83;
  background: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  transition: all 0.2s ease;
}
.c-chip:hover {
  background: #0b6d83;
  color: #fff;
}

.c-chip.is-active {
  background: #0b6d83;
  color: #fff;
}

/* カードの Read More オーバーレイ */
.p-case-card {
  position: relative;
}
.p-case-card__thumb {
  position: relative;
  transition: all 0.2s ease;
}
.p-case-card__mask {
  position: absolute;
  inset: 0;
  background: rgba(11, 109, 131, 0.5);
  opacity: 0;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
}
.p-case-card__maskText {
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
}
.p-case-card__maskPlus {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
}
.p-case-card .p-case-card__link:hover .p-case-card__mask {
  opacity: 1;
}
.p-case-card .p-case-card__link:hover .p-case-card__thumb {
  scale: 0.95;
}

/* モーダル（既存 p-modal を流用） */
.p-modal--case {
  width: min(92vw, 660px);
  max-height: 92vh;
  overflow: auto;
  padding: 3rem 2.4rem 3rem;
}

.c-spinner {
  padding: 4rem;
  text-align: center;
  color: #666;
}

.p-case-archive__list {
  padding-bottom: 10rem;
}

/* レイアウトの余白 */
.p-case-archive__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.p-case-archive__filter .p-case-archive__inner {
  padding: 0 2rem 4rem;
}

/* 上のラベル行 */
.p-case-detail__spec {
  border-left: 0.6rem solid #0b6d83;
  padding: 0.6rem 0 0.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.p-case-detail__label {
  margin-right: 0.8rem;
}
.p-case-detail__desc {
  font-size: 1.6rem;
  line-height: 2.1rem;
}

/* スライダー土台をクリップ＆前面にナビを出す */
.c-slider__case {
  position: relative;
  margin: 0.8rem 0 2rem;
  overflow: hidden;
}

.c-slider__case__track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.c-slider__case__item {
  flex: 0 0 100%;
}

.c-slider__case__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.c-slider__case__nav {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  box-shadow: none;
  z-index: 2;
}
.c-slider__case__nav:before {
  content: "〉";
  display: block;
  font-size: 3.8rem;
  color: #eeeeee;
  margin: auto;
}
.c-slider__case__nav--prev {
  left: 1rem;
}
.c-slider__case__nav--prev:before {
  transform: rotate(-180deg);
}
.c-slider__case__nav--next {
  right: 1rem;
}
.c-slider__case__nav--next:before {
  transform: rotate(0deg);
}

.c-slider__case__dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin: 2rem 0 0;
  width: 100%;
}
.c-slider__case__dots button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 0;
  background: #cfcfcf;
  cursor: pointer;
}
.c-slider__case__dots .is-active {
  background: #0b6d83;
}
@media (max-width: 640px) {
  .c-slider__case__dots button {
    width: 0.6rem;
    height: 0.6rem;
  }
}

/* ===== Reform Hero ===== */
.p-reform-hero {
  background: #0b6d83;
  color: #fff;
  position: relative;
  /* 左上の見出し */
  /* ビジュアル */
}
.p-reform-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 5rem 1.6rem;
}
.p-reform-hero__lead {
  position: absolute;
  top: 4.6rem;
  left: calc(50% - 65rem);
  z-index: 2;
}
@media (max-width: 1300px) {
  .p-reform-hero__lead {
    left: 1.6rem;
  }
}
.p-reform-hero__title {
  font-size: clamp(2.4rem, 1.6rem + 2vw, 3.2rem);
  font-weight: bold;
  margin: 0 0 2rem;
}
.p-reform-hero__sub {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-reform-hero__sub span {
  padding: 0.3rem 1rem;
  position: relative;
  display: inline-block;
}
.p-reform-hero__sub span::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
}
.p-reform-hero__sub span:first-child::before {
  background-color: #ed7810;
}
.p-reform-hero__sub span:last-child::before {
  background-color: #51c108;
}
.p-reform-hero__visual {
  position: relative;
}
.p-reform-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ピン（PC: %絶対配置 / SP: 縦カード） ===== */
.p-reform-pin {
  --x: 50%;
  --y: 50%;
  --rotate: 0deg;
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  text-decoration: none;
  color: #fff;
  display: grid;
  justify-items: start;
  z-index: 3;
  transition: opacity 0.2s ease;
  width: -moz-max-content;
  width: max-content;
  /* PCでは非表示 */
}
.p-reform-pin__thumb {
  display: none;
}
.p-reform-pin__label {
  font-size: 2.1rem;
  font-family: "din-condensed-variable", sans-serif;
  font-variation-settings: "wght" 700;
}
.p-reform-pin__note {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0.5rem 0 1.4rem;
}
.p-reform-pin__btn {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  /* ←これが “両方” 版（中央を斜めで分割） */
}
.p-reform-pin__btn[data-variant=green] {
  background: #45c143;
}
.p-reform-pin__btn[data-variant=orange] {
  background: #ff8b2a;
}
.p-reform-pin__btn[data-variant=both] {
  --c1: #45c143;
  /* left/orange */
  --c2: #ff8b2a;
  /* right/green  */
  --angle: -65deg;
  /* 境界の角度（画像に寄せる） */
  background: linear-gradient(var(--angle), var(--c1) 0 49%, var(--c2) 51% 100%);
  /* 49〜51%に2%のぼかし無しギャップを作って“線”をくっきり */
}
.p-reform-pin:hover {
  opacity: 0.8;
}
.p-reform-pin:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ==== pin 基本アニメ ==== */
.p-reform-pin {
  /* 調整用の強さ（必要に応じて数字を変える） */
  --breath-scale: 1.03;
  /* 呼吸のスケール幅 */
  --pulse-size: 12rem;
  /* パルス直径（ラベル長に合わせて増減） */
  /* 初期は薄く→表示（opacityのみを別アニメで制御） */
  opacity: 0;
  animation: pinFade 0.6s ease forwards 0.1s, pinBreathe 5s ease-in-out 0.8s infinite;
  /* ゆっくり呼吸 */
  /* 既存の translate/rotate を含んだ値で上書き（重要） */
  transform: translate(-50%, -50%);
  /* ホバーで少しだけ持ち上げてボタンを出す */
  /* パルス（波紋） */
  /* ラベルにアンダーライン（ホバーでスッと伸びる） */
}
.p-reform-pin:hover {
  animation-play-state: paused;
  /* ホバー中は呼吸を停止してキビキビ見せる */
  transform: translate(-50%, -50%) scale(1.04);
}
.p-reform-pin:hover .p-reform-pin__btn {
  opacity: 1;
  transform: translateY(0);
}
.p-reform-pin:hover .p-reform-pin__label::after {
  width: 100%;
}
.p-reform-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--pulse-size);
  height: var(--pulse-size);
  border: 2px solid currentColor;
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0.25;
  pointer-events: none;
  /* 本体とズラして無限ループ */
  animation: pinPulse 2.8s ease-out 1.2s infinite;
}
.p-reform-pin .p-reform-pin__label {
  position: relative;
}
.p-reform-pin .p-reform-pin__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 2px;
  width: 0;
  margin: 0 auto;
  background: currentColor;
  transition: width 0.35s ease;
}

/* ===== Keyframes ===== */
@keyframes pinFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* translate/rotate を毎フレーム含めた値にしてベースを壊さない */
@keyframes pinBreathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(var(--breath-scale));
  }
}
@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
/* 低速端末＆ユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .p-reform-pin {
    animation: none;
    opacity: 1;
  }
  .p-reform-pin::before {
    display: none;
  }
}
/* ===== SP：カードレイアウトに切替 ===== */
@media (max-width: 960px) {
  .p-reform-hero__inner {
    max-width: 100%;
    padding: 4rem 1.6rem 2rem;
  }
  /* 左上の見出し */
  .p-reform-hero__lead {
    position: relative;
    top: 0;
    left: 0;
  }
  .p-reform-hero__title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
    margin: 0 0 2rem;
  }
  .p-reform-hero__sub {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .p-reform-hero__img {
    display: none;
  }
  /* 大きい背景は非表示 */
  .p-reform-pin {
    transform: 0;
    width: 100%;
    max-width: 35rem;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 2rem 2rem 2rem 14rem;
    margin: 1.2rem auto;
  }
  .p-reform-pin__thumb {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 10rem;
    height: 10rem;
    -o-object-fit: contain;
       object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0.2rem 0.6rem rgba(0, 0, 0, 0.25));
  }
  .p-reform-hero__title {
    margin: 0 0 1rem;
  }
  .p-reform-pin__note {
    font-size: 1.4rem;
  }
  @keyframes pinBreathe {
    0%, 100% {
      transform: translate(0) scale(1);
    }
    50% {
      transform: translate(0) scale(var(--breath-scale));
    }
  }
}
/* ===== recruit hero ===== */
.p-recruit-hero {
  background: #ff9900;
}
.p-recruit-hero__inner {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  padding: 6rem 2rem 15rem;
}
@media (max-width: 640px) {
  .p-recruit-hero__inner {
    padding: 4rem 2rem;
  }
}
.p-recruit-hero__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.p-recruit-hero__pin {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  max-width: 10rem;
  width: 10%;
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: 50% 90%;
  filter: drop-shadow(0 0.2rem 0.8rem rgba(0, 0, 0, 0.35));
  animation: mv-float 2.6s ease-in-out infinite var(--delay, 0s), mv-breathe 2.6s ease-in-out infinite var(--delay, 0s);
  will-change: transform;
  pointer-events: none;
  /* 画像上でのクリックを拾わせない */
}

/* ===== form area ===== */
.p-recruit-form {
  background: #f59f00;
}
.p-recruit-form__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem 14rem;
}
@media (max-width: 640px) {
  .p-recruit-form__inner {
    padding: 0 2rem 4rem;
  }
}

/* tabs (共通) */
.p-tabs__nav {
  display: flex;
  gap: 0.6rem;
}
.p-tabs__tab {
  flex: 1 1 50%;
  padding: 1.6rem;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  border: 0;
  cursor: pointer;
  outline-offset: -2px;
  background: #bbbbbb;
  color: #fff;
  position: relative;
}
.p-tabs__tab.is-active {
  background: #fff;
  color: #0b6d83;
}
.p-tabs__tab.is-active::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 100%;
  height: 1rem;
  background: #0b6d83;
}
@media (max-width: 640px) {
  .p-tabs__tab.is-active::before {
    height: 0.5rem;
  }
}
.p-tabs__panel {
  background-color: #fff;
  padding: 5rem 10rem;
}
@media (max-width: 640px) {
  .p-tabs__panel {
    padding: 1.6rem;
  }
}
.p-tabs__panel[hidden] {
  display: none;
}

/* ===== privacy page ===== */
.p-privacy__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-privacy__title {
  text-align: center;
  font-size: 3.1rem;
  font-weight: bold;
  padding: 2.4rem 0;
  margin-bottom: 8rem;
}
@media (max-width: 640px) {
  .p-privacy__title {
    margin-bottom: 4rem;
  }
}
.p-privacy__body {
  background: #fff;
  padding: 0 0 10rem;
}
.p-privacy__bold {
  font-weight: bold;
}
.p-privacy__right {
  text-align: right;
}
.p-privacy h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.8rem;
  font-weight: 800;
}
.p-privacy p {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

.p-pagehead {
  background: #fff;
}
.p-pagehead__inner {
  max-width: 124rem;
  margin: 0 auto 6rem;
  padding: 1.6rem 2rem 2.4rem;
}
.p-pagehead__kicker {
  text-align: center;
  font-size: 1.6rem;
  margin: 1rem 0 0.6rem;
}
.p-pagehead__title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(2.2rem, 1.6rem + 1.6vw, 3.2rem);
  margin: 0.2rem 0 2rem;
}
.p-pagehead__lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-price__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem 10rem;
}
.p-price__heading {
  margin: 2rem 0 0.8rem;
  font-size: 1.6rem;
}

/* ===========================
 * BLOG archive
 * =========================== */
/* ページ余白 */
.p-blog-archive .p-pagehead {
  background-color: #dd7505;
}
.p-blog-archive .p-pagehead__inner {
  margin-bottom: 0;
}
.p-blog-archive__inner {
  max-width: 100rem;
  margin-inline: auto;
  padding: 0 2rem 4rem;
}
.p-blog-archive__list {
  padding-top: 6rem;
  background: linear-gradient(to bottom, #dd7505 0%, #dd7505 20%, #eeeeee 20%, #eeeeee 100%);
}
.p-blog-archive__empty {
  text-align: center;
  padding: 4rem 0;
  color: #777;
}

/* グリッド */
.p-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
  align-items: stretch;
}

/* カード */
.p-post-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  /* クリック領域をブロック化 */
  /* サムネ：16:9 固定 */
  /* 本文 */
  /* カテゴリchip */
  /* タイトル */
  /* 抜粋（3行で省略） */
  /* フッターメタ */
}
.p-post-card:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.1);
}
.p-post-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.p-post-card__thumb {
  flex: 0 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  /* 近代ブラウザ */
  background: #e9eef0;
}
.p-post-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-post-card__body {
  flex: 1 1 auto;
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.p-post-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.p-post-card__chips .p-chip {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: var(--chip-bg);
  border-radius: 9999px;
  line-height: 1.8rem;
}
.p-post-card__title {
  font-size: clamp(1.6rem, 1.3rem + 0.6vw, 2.4rem);
  font-weight: bold;
  line-height: 1.6;
  margin: 0 0 0.8rem;
  /* 2行で省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-post-card__excerpt {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-post-card__tags {
  margin: 0 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  color: #bbbbbb;
}
.p-post-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.p-post-card__like {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  color: #eb4667;
}
.p-post-card__likeCount {
  font-size: 1.6rem;
  font-weight: bold;
}
.p-post-card__date {
  font-size: 1.6rem;
  white-space: nowrap;
}

/* リンク化したchip/tagの表示 */
.p-post-card__chips a.p-chip,
.p-post-card__chips a.p-tag,
.p-post-card__tags a.p-chip,
.p-post-card__tags a.p-tag {
  display: inline-block;
  text-decoration: none;
}
.p-post-card__chips a.p-chip:hover,
.p-post-card__chips a.p-tag:hover,
.p-post-card__tags a.p-chip:hover,
.p-post-card__tags a.p-tag:hover {
  filter: brightness(0.95);
}
.p-post-card__chips a.p-chip:focus-visible,
.p-post-card__chips a.p-tag:focus-visible,
.p-post-card__tags a.p-chip:focus-visible,
.p-post-card__tags a.p-tag:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}

/* 小さめ端末で少し広めのタップ領域・列調整 */
@media (max-width: 480px) {
  .p-post-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .p-post-card__body {
    padding: 1.4rem;
  }
}
/* 動き控えめ設定 */
@media (prefers-reduced-motion: reduce) {
  .p-post-card {
    transition: none;
  }
}
.c-likeBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #e85d75;
}
.c-likeBtn__icon {
  font-size: 2.4rem;
  font-weight: bold;
}
.c-likeBtn__count {
  font-size: 1.6rem;
  font-weight: bold;
}

/* ============== single post ============== */
.p-post {
  /* 本文コンテナ */
  /* 前後ナビ */
}
.p-post__inner {
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-post__inner__breadcrumbs {
  max-width: 124rem;
  margin: 0 auto;
  padding: 1.6rem 2rem 2.4rem;
}
.p-post__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.6rem 0 0.4rem;
}
.p-post__date {
  font-size: 1.6rem;
  white-space: nowrap;
}
.p-post__title {
  font-size: clamp(2rem, 1.6rem + 1.2vw, 3.2rem);
  font-weight: bold;
  line-height: 1.6;
  margin: 0.6rem 0 2.4rem;
}
.p-post__article {
  background: #fff;
  margin-bottom: 10rem;
}
.p-post__thumb {
  margin: 0 0 1rem;
  border: 1px solid #e2e2e2;
  border-radius: 0.6rem;
  overflow: hidden;
}
.p-post__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.p-post__meta {
  margin-bottom: 1rem;
}
.p-post__pn {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 4rem 0 3.2rem;
}
.p-post__pn a {
  color: #0f6673;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
}
.p-post__pn a:hover {
  text-decoration: underline;
}

/* ============== Gutenberg / entry body ============== */
.c-entry {
  color: #222;
  font-size: 1.5rem;
  line-height: 1.9;
  /* 見出し */
  /* 画像・動画 */
  /* 2カラム風（画像を横並びにしたいとき） */
  /* 引用・コード・リスト */
}
.c-entry > * + * {
  margin-top: 1.4rem;
}
.c-entry h2 {
  font-size: 2rem;
  font-weight: 800;
  border-left: 0.4rem solid #0f6673;
  padding-left: 0.8rem;
}
.c-entry h3 {
  font-size: 1.8rem;
  font-weight: 800;
}
.c-entry h4 {
  font-size: 1.6rem;
  font-weight: 800;
}
.c-entry img,
.c-entry video {
  max-width: 100%;
  height: auto;
  display: block;
}
.c-entry figure {
  margin: 0;
}
.c-entry figure + p,
.c-entry p + figure {
  margin-top: 1rem;
}
.c-entry .alignwide,
.c-entry .is-style-wide {
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
}
.c-entry .wp-block-gallery {
  gap: 1.2rem;
}
.c-entry .wp-block-image.is-style-rounded img {
  border-radius: 0.6rem;
}
.c-entry blockquote {
  border-left: 0.4rem solid #e0e0e0;
  padding: 0.4rem 1.2rem;
  color: #555;
  background: #fafafa;
}
.c-entry pre {
  background: #222;
  color: #f1f3f5;
  padding: 1rem;
  border-radius: 0.4rem;
  overflow: auto;
}
.c-entry ul,
.c-entry ol {
  padding-left: 2rem;
}
.c-entry li + li {
  margin-top: 0.4rem;
}
.c-entry a {
  color: #0f6673;
}
.c-entry a:hover {
  text-decoration: underline;
}

/* 小さめ端末調整 */
@media (max-width: 480px) {
  .p-post__title {
    font-size: 2rem;
  }
  .p-post__pn {
    flex-direction: column;
    align-items: stretch;
  }
}
.p-company {
  /* ヒーロー */
  /* セクション見出し */
  /* 本文（Gutenberg最小スタイル） */
}
.p-company .p-pagehead__inner {
  margin-bottom: 0;
}
.p-company__inner {
  max-width: 100rem;
  margin-inline: auto;
  padding: 0 2rem;
}
.p-company__hero {
  background: #fff;
}
.p-company__heroMedia {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  /* 画像比率。調整可 */
  background: #e9eef0;
  overflow: hidden;
}
.p-company__heroMedia img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-company__h2 {
  font-size: clamp(2rem, 1.4rem + 1.8vw, 4.5rem);
  font-weight: bold;
  text-align: center;
  margin: 2.4rem 0 7rem;
}
.p-company .c-entry {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.8rem;
  /* サンプルに合わせ中央寄せ */
}
@media (max-width: 640px) {
  .p-company .c-entry {
    text-align: left;
  }
}
.p-company .c-entry > * + * {
  margin-top: 1.2rem;
}
.p-company .c-entry p {
  text-align: center;
}
.p-company .c-entry img {
  max-width: 100%;
  height: auto;
}

/* ========== Company Profile ========== */
.p-company {
  /* Map */
  /* 右側のボディ */
  /* 定義リスト（2列テーブル風） */
}
.p-company__profile {
  background: #393737;
  /* ダークパネル */
  color: #fff;
  padding: 6rem;
}
.p-company__profileInner {
  max-width: 124rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* 左:地図 > 右:情報 */
  gap: 5rem;
  align-items: start;
}
.p-company__profileMap {
  overflow: hidden;
}
.p-company__profileMap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 0;
}
.p-company__profileBody {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-company__profileTitle {
  font-size: clamp(1.8rem, 1.4rem + 0.8vw, 3.2rem);
  font-weight: bold;
  text-align: center;
}
.p-company__def {
  margin: 0;
  padding: 0;
}
.p-company__defRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  padding: 1.2rem 0;
  border-top: 1px solid #fff;
}
.p-company__defRow:first-child {
  border-top: none;
}
.p-company__defTerm {
  line-height: 2.1rem;
  padding-left: 8rem;
  font-size: 1.6rem;
  color: #ddd;
  white-space: nowrap;
}
.p-company__defDesc {
  line-height: 2.1rem;
  font-size: 1.6rem;
  margin: 0;
  color: #fff;
}

/* SP：1カラムにして地図→情報の順に縦並び */
@media (max-width: 768px) {
  .p-company__profileInner {
    grid-template-columns: 1fr;
  }
  .p-company__profileMap iframe {
    height: 28rem;
  }
  .p-company__defRow {
    grid-template-columns: 2fr 3fr;
  }
  .p-company__defTerm {
    padding-left: 0rem;
  }
}
/* 小さめ調整 */
@media (max-width: 640px) {
  .p-company__heroMedia {
    aspect-ratio: 16/9;
  }
}
/* ============== Contact page ============== */
.p-contact {
  /* フォーム枠（CF7 を入れても崩れないベース） */
  /* プレースホルダ（公開までの一時表示） */
}
.p-contact__inner {
  max-width: 74rem;
  margin-inline: auto;
  padding: 0 2rem;
}
.p-contact__form {
  margin: 1.2rem 0 3.2rem;
}
.p-contact__heading {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem;
}
.p-contact__formPlaceholder {
  border: 1px dashed #c8dfe3;
  border-radius: 0.8rem;
  padding: 2.4rem;
  text-align: center;
  color: #6b7b83;
  background: #f6fbfc;
}

.p-contact_emp {
  display: grid;
  border-bottom: 1px solid #000;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  grid-template-columns: 1fr 1fr;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .p-contact_emp {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-contact_comp {
  border-bottom: 1px solid #000;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* ============== CF7 基本スタイル ============== */
/* ===== Recruit Form (Contact Form 7) ===== */
.p-recruitForm {
  --gap: 20px;
  --field-bg: #f1f2f3;
  --field-radius: 10px;
  --field-height: 48px;
  /* 単一行フィールド */
  /* 複数行 */
  /* 同意チェック行 */
  /* 送信ボタン */
  /* スマホ */
  /* CF7 メッセージの見た目を控えめに */
}
.p-recruitForm .p-recruitForm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap) var(--gap);
}
.p-recruitForm .p-recruitForm__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-recruitForm .p-recruitForm__col--full {
  grid-column: 1/-1;
}
.p-recruitForm .p-recruitForm__label {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.p-recruitForm .p-recruitForm__input {
  display: block;
  width: 100%;
  height: var(--field-height);
  padding: 0 1rem;
  border: none;
  border-radius: var(--field-radius);
  background: var(--field-bg);
  outline: none;
  font-size: 1.4rem;
}
.p-recruitForm .p-recruitForm__textarea {
  width: 100%;
  min-height: 14rem;
  padding: 1rem;
  border: none;
  border-radius: var(--field-radius);
  background: var(--field-bg);
  outline: none;
  font-size: 1.4rem;
  resize: vertical;
}
.p-recruitForm .p-recruitForm__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  /* CF7の余白打消し */
}
.p-recruitForm .p-recruitForm__agree .wpcf7-list-item {
  margin: 0;
}
.p-recruitForm .p-recruitForm__agree input[type=checkbox] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.p-recruitForm .p-recruitForm__agree a {
  color: #277cc4;
  text-decoration: underline;
}
.p-recruitForm .p-recruitForm__submitWrap {
  display: grid;
  place-items: center;
  margin-top: 8px;
}
.p-recruitForm .p-recruitForm__submit {
  text-align: center;
  display: inline-block;
  min-width: 30rem;
  font-weight: bold;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid #a9c2cc;
  background: #fff;
  color: #2a5e73;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.04s ease, box-shadow 0.2s ease;
}
.p-recruitForm .p-recruitForm__submit:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.p-recruitForm .p-recruitForm__submit:active {
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .p-recruitForm .p-recruitForm__grid {
    grid-template-columns: 1fr;
  }
}
.p-recruitForm .wpcf7 form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: #c22;
}
.p-recruitForm .wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.wpcf7-spinner {
  display: block;
}

/* ---------- p-faq（セクション） ---------- */
.p-faq {
  background: #393737;
  margin: 4.8rem auto 0;
  padding: 4rem 1.6rem 10rem;
}
.p-faq__inner {
  max-width: 100rem;
  margin: 0 auto;
}
.p-faq__title {
  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 0 4rem;
}

/* ---------- c-accordion（汎用） ---------- */
.c-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  /* 右端の＋／× */
  /* ＋の縦棒 */
  /* ×へ（縦棒消し） */
  /* 好みで：×表現にしたいなら調整可 */
}
.c-accordion__item {
  background-color: #fff;
  margin-bottom: 1rem;
}
.c-accordion__q {
  margin: 0;
}
.c-accordion__btn {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.6rem 1.6rem;
  font-size: 1.6rem;
  cursor: pointer;
}
.c-accordion__btn:focus-visible {
  outline: 2px solid #8fd3dd;
  outline-offset: 2px;
}
.c-accordion__qno {
  color: #0b6d83;
  font-weight: bold;
  width: 4.2rem;
  display: inline-block;
}
.c-accordion__qtext {
  line-height: 1.6;
}
.c-accordion__icon {
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  opacity: 0.9;
}
.c-accordion__icon::before, .c-accordion__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.2rem;
  height: 0.2rem;
  background: #0b6d83;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.c-accordion__icon::after {
  transform: rotate(90deg);
}
.is-open .c-accordion__icon::after {
  transform: rotate(-45deg);
}
.is-open .c-accordion__icon::before {
  transform: rotate(45deg);
}
.c-accordion__panel[hidden] {
  display: none;
}
.c-accordion__panel {
  padding: 0 1.6rem 1.6rem;
}
.c-accordion__a {
  display: grid;
  align-items: baseline;
  grid-template-columns: 4.2rem 1fr;
  gap: 0.8rem;
}
.c-accordion__alabel {
  padding-left: 1.2rem;
  color: #c10543;
  font-weight: bold;
  font-size: 1.6rem;
}
.c-accordion__text {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .c-accordion__btn {
    padding: 1.6rem 1.6rem;
  }
  .c-accordion__qno {
    width: 3.6rem;
  }
  .c-accordion__a {
    grid-template-columns: 3.2rem 1fr;
  }
}
/* ========== Waterproof page ========== */
.p-waterproof__container {
  max-width: 124rem;
  margin-inline: auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 6rem;
}
.p-waterproof__article {
  min-width: 0;
}
.p-waterproof__section {
  padding: 4rem 0;
}
.p-waterproof__h2 {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 1.2rem;
}
@media (max-width: 960px) {
  .p-waterproof__container {
    grid-template-columns: 1fr;
  }
}

/* 目次（共通トーン） */
.c-toc {
  position: sticky;
  top: 8rem;
  align-self: start;
  background: #fff;
}
.c-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.c-toc__link {
  display: block;
  padding: 1.2rem 1.1rem;
  color: #eeeeee;
  text-decoration: none;
  line-height: 1.5;
  border-left: 6px solid #eeeeee;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-toc__link:hover {
  background: #e6f4f6;
  border-color: #0f6673;
  color: #0b6d83;
}
.c-toc__link:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}
.c-toc .is-active > .c-toc__link {
  border-color: #0f6673;
  color: #0b6d83;
}
@media (max-width: 960px) {
  .c-toc {
    display: none;
  }
}

/* 本文（最小整形） */
.c-entry {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #222;
}
.c-entry p,
.c-entry ul,
.c-entry ol {
  margin: 0 0 1.2rem;
}
.c-entry ol {
  padding-left: 1.8rem;
}

/* ================= sec-importance ================= */
.p-wp-imp {
  /* 左カラム */
  /* 黒リボン風タグ */
  /* 手書き”important”の装飾 */
  /* 大きな疑問見出し */
  /* 右カラムの本文 */
  /* 下段タイトル（黄色ライン付き） */
  /* リスク3項目 */
  /* 円フレーム（色違い） */
}
.p-wp-imp__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 960px) {
  .p-wp-imp__grid {
    grid-template-columns: 1fr;
  }
}
.p-wp-imp__lead {
  position: relative;
  margin-top: 2rem;
}
.p-wp-imp__tag {
  width: 90%;
}
.p-wp-imp__tag img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 960px) {
  .p-wp-imp__tag {
    margin: 0 auto;
    width: 70%;
  }
}
.p-wp-imp__scribble {
  position: absolute;
  left: 0.6rem;
  top: -3.5rem;
  z-index: -1;
  transform: rotate(-1deg);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 80%;
}
.p-wp-imp__scribble img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-wp-imp__q {
  position: relative;
  padding-left: 4.7rem;
  margin: 4rem 0 0;
  font-size: clamp(2rem, 1.6rem + 1.6vw, 3.2rem);
  font-weight: bold;
  line-height: 1.25;
}
@media (max-width: 960px) {
  .p-wp-imp__q {
    text-align: center;
    padding-left: 0;
  }
}
.p-wp-imp__desc {
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.p-wp-imp__riskTitle {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.4rem + 2vw, 3.2rem);
  background: linear-gradient(transparent 70%, #fff000 0);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
  padding: 0 0.7rem 0.4rem;
}
@media (max-width: 960px) {
  .p-wp-imp__riskTitle {
    font-size: 1.8rem;
  }
}
.p-wp-imp__risk {
  --line: #cfd8dc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  counter-reset: risk;
  position: relative;
  padding-bottom: 2.4rem;
  /* タイムラインの横線 */
}
.p-wp-imp__risk::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 22.6rem;
  height: 0.2rem;
  background: #e9e9e9;
  border-radius: 0.2rem;
}
@media (max-width: 960px) {
  .p-wp-imp__risk {
    grid-template-columns: 1fr;
    gap: 10rem;
  }
  .p-wp-imp__risk::after {
    display: none;
  }
}
.p-wp-imp__riskItem {
  text-align: center;
  position: relative;
  padding-bottom: 2.8rem;
  /* ドット分 */
  /* 下のドット */
  /* 2つ目の矢印だけ画像を差し替え（= 2番目のアイテムの右側） */
}
.p-wp-imp__riskItem::after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 22.1rem;
  translate: -50% 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e9e9e9;
}
.p-wp-imp__riskItem:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -4rem;
  /* 位置はデザインに合わせて調整 */
  top: 25%;
  transform: translateY(-50%) rotate(-90deg);
  width: 4rem;
  height: 6rem;
  background: url("../images/reform/lisk_next01.svg") no-repeat center/contain;
}
@media (max-width: 960px) {
  .p-wp-imp__riskItem:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 50%;
    /* 位置はデザインに合わせて調整 */
    top: 100%;
    transform: translateY(0%) translateX(50%);
    width: 4rem;
    height: 6rem;
  }
}
.p-wp-imp__riskItem:nth-child(2)::before {
  background-image: url("../images/reform/lisk_next02.svg");
}
@media (max-width: 960px) {
  .p-wp-imp__riskItem::after {
    display: none;
  }
}
.p-wp-imp__circle {
  max-width: 19rem;
  width: 90%;
  aspect-ratio: 1/1;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  /* default */
}
.p-wp-imp__circle img {
  width: 100%;
  height: auto;
}
.p-wp-imp__riskHead {
  font-weight: bold;
  font-size: 1.6rem;
  color: #fac129;
  /* 1枚目の見出し色 */
  margin: 6.7rem 0 1rem;
}
@media (max-width: 960px) {
  .p-wp-imp__riskHead {
    margin: 2rem 0;
  }
}
.p-wp-imp__riskItem--m .p-wp-imp__riskHead {
  color: #ac2b90;
}
.p-wp-imp__riskItem--g .p-wp-imp__riskHead {
  color: #6dbe42;
}
.p-wp-imp__riskText {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 960px) {
  .p-wp-imp__riskText {
    width: 60%;
    margin: 0 auto;
  }
}

/* ============== sec-check ============== */
.p-wp-check {
  /* slider box */
  /* checklist */
}
.p-wp-check__head {
  text-align: center;
  margin-bottom: 6rem;
}
.p-wp-check__title {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.6rem;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.4rem + 2vw, 3.2rem);
}
.p-wp-check__tick {
  width: 3.2rem;
  height: 3.2rem;
}
@media (max-width: 960px) {
  .p-wp-check__tick {
    width: 2rem;
    height: 2rem;
  }
}
.p-wp-check__sub {
  margin: 1rem 0 0;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 960px) {
  .p-wp-check__sub {
    font-size: 1.6rem;
  }
}
.p-wp-check__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
@media (max-width: 960px) {
  .p-wp-check__grid {
    grid-template-columns: 1fr;
  }
}
.p-wp-check__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-wp-check__li {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.p-wp-check__num {
  flex: 0 0 auto;
  width: 4.2rem;
  height: 4.2rem;
}
.p-wp-check__text {
  padding-top: 1rem;
  font-size: 1.4rem;
}

.c-slider__check {
  position: relative;
  /* ナビ */
  /* ドット */
}
.c-slider__check__viewport {
  overflow: hidden;
}
.c-slider__check__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
  gap: 0;
}
.c-slider__check__slide {
  position: relative;
  flex: 0 0 100%;
}
.c-slider__check__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  box-shadow: none;
}
.c-slider__check__nav:before {
  content: "〉";
  display: block;
  font-size: 3.8rem;
  color: #eeeeee;
  margin: auto;
}
.c-slider__check__nav--prev {
  left: 1rem;
}
.c-slider__check__nav--prev:before {
  transform: rotate(-180deg);
}
.c-slider__check__nav--next {
  right: 1rem;
}
.c-slider__check__nav--next:before {
  transform: rotate(0deg);
}
.c-slider__check__dots {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  top: auto;
  bottom: -2.4rem;
  width: 100%;
}
.c-slider__check__dots button {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 0;
  background: #cfcfcf;
  cursor: pointer;
}
.c-slider__check__dots .is-active button {
  background: #0b6d83;
}
@media (max-width: 640px) {
  .c-slider__check__dots button {
    width: 0.6rem;
    height: 0.6rem;
  }
}

/* ========== Types table section ========== */
.p-wp-typesTbl {
  /* カラードットの飾り */
}
.p-wp-typesTbl__head {
  text-align: center;
  margin-bottom: 1.4rem;
}
.p-wp-typesTbl__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.5rem + 2vw, 3.2rem);
}
.p-wp-typesTbl__dots {
  display: inline-grid;
}
.p-wp-typesTbl__dots img {
  width: 8.5rem;
  height: auto;
}
@media (max-width: 960px) {
  .p-wp-typesTbl__dots img {
    width: 4.5rem;
    height: auto;
  }
}
.p-wp-typesTbl__lead {
  margin: 1.4rem 0 0;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 960px) {
  .p-wp-typesTbl__lead {
    font-size: 1.6rem;
  }
}
.p-wp-typesTbl__wrap {
  margin-top: 5rem;
  overflow-x: auto;
}

/* ========== WP types table ========== */
.p-types__table--wpTypes {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  font-size: 1.4rem;
  overflow: hidden;
  /* for rounded */
}
.p-types__table--wpTypes .is-index {
  width: 3%;
}
.p-types__table--wpTypes .is-name {
  width: 18%;
}
.p-types__table--wpTypes .is-life {
  width: 18%;
}
.p-types__table--wpTypes .is-price {
  width: 18%;
}
.p-types__table--wpTypes .is-note {
  width: auto;
}
.p-types__table--wpTypes thead th {
  background: #0b6d83;
  color: #fff;
  font-weight: bold;
  padding: 1.6rem 0.8rem;
  text-align: center;
}
.p-types__table--wpTypes thead th:first-child, .p-types__table--wpTypes thead th:nth-child(2) {
  background-color: transparent;
}
.p-types__table--wpTypes tbody th.p-types__table__idx {
  vertical-align: middle;
  background: #0b6d83;
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 0.8rem 0.4rem;
}
.p-types__table--wpTypes tbody th.p-types__table__idx span {
  display: inline-block;
  min-width: 1.8rem;
}
.p-types__table--wpTypes tbody td {
  padding: 1.6rem 1rem;
  vertical-align: middle;
  background-color: #eee;
  text-align: center;
}
.p-types__table--wpTypes tbody tr:first-child td,
.p-types__table--wpTypes tbody tr:first-child th {
  border-top: none;
}
.p-types__table--wpTypes .p-types__table__name {
  background: #0b6d83;
  font-weight: bold;
  color: #fff;
}
.p-types__table--wpTypes .p-types__table__md {
  display: grid;
  gap: 2rem;
  text-align: left;
}
.p-types__table--wpTypes .p-types__table__label {
  font-weight: bold;
  margin: 0 0 0.2rem;
  /* ピンク */
  /* ブルー */
}
.p-types__table--wpTypes .p-types__table__label--pros {
  color: #e91e63;
}
.p-types__table--wpTypes .p-types__table__label--cons {
  color: #258ad6;
}
.p-types__table--wpTypes .p-types__table__proscons ul {
  line-height: 1.6;
}
.p-types__table--wpTypes .p-types__table__proscons ul li::before {
  content: "・";
  padding-right: 0.4rem;
}

/* SP調整 */
@media (max-width: 720px) {
  .p-types__table--wpTypes {
    min-width: 0;
    width: 600px;
  }
}
/* =========================
 * HomePainting table (page専用)
 * ========================= */
.p-homepainting-table {
  margin-top: 5rem;
  --teal-dark: #034250;
  --teal: #0b6d83;
  --gr: #eeeeee;
  --star: #f7a21a;
  /* ---------- SP：行カード（左に縦帯 No + 塗料名） ---------- */
}
.p-homepainting-table__title {
  background: var(--teal-dark);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 1rem 1rem;
  margin: 0 0 1rem;
  font-size: 1.6rem;
  display: none;
}
.p-homepainting-table__wrap {
  overflow-x: auto;
}
.p-homepainting-table__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  overflow: hidden;
  font-size: 1.4rem;
}
.p-homepainting-table__table thead th {
  background: var(--teal);
  color: #fff;
  font-weight: 500;
  padding: 1.6rem 0.6rem;
  white-space: nowrap;
  text-align: center;
}
.p-homepainting-table__table thead th.is-title {
  background: var(--teal-dark);
  text-align: center;
  font-weight: 500;
}
.p-homepainting-table__table tbody td,
.p-homepainting-table__table tbody th {
  padding: 1.6rem 0.6rem;
  text-align: center;
  vertical-align: middle;
  width: 13%;
}
.p-homepainting-table__table tbody td {
  background: var(--gr);
}
.p-homepainting-table__table .is-name,
.p-homepainting-table__table .is-index {
  background: var(--teal);
  color: #fff;
}
.p-homepainting-table__table .is-stars {
  text-align: left;
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  color: var(--star);
  white-space: nowrap;
}
.p-homepainting-table__table .is-index {
  width: 5%;
}
.p-homepainting-table__table .is-name {
  width: auto;
}
@media (max-width: 768px) {
  .p-homepainting-table .p-homepainting-table {
    /* 1行＝1カード */
    /* 左の No（上） */
    /* 左の「塗料名」帯（Noの下〜下端まで） */
    /* 値セル（右側） */
    /* 星行は色維持 */
  }
  .p-homepainting-table .p-homepainting-table__wrap {
    overflow: visible;
  }
  .p-homepainting-table .p-homepainting-table__title {
    display: block;
  }
  .p-homepainting-table .p-homepainting-table__table, .p-homepainting-table .p-homepainting-table__table thead {
    display: block;
  }
  .p-homepainting-table .p-homepainting-table__table thead {
    display: none;
  }
  .p-homepainting-table .p-homepainting-table__table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .p-homepainting-table .p-homepainting-table__table tr {
    position: relative;
    overflow: hidden;
    --left: calc(35% + 3px);
    padding-left: var(--left);
  }
  .p-homepainting-table .p-homepainting-table__table tr > th.is-index {
    position: absolute;
    left: 0;
    top: 0;
    width: 8%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-homepainting-table .p-homepainting-table__table tr > th.is-index span {
    display: inline-block;
    min-width: 1.4rem;
  }
  .p-homepainting-table .p-homepainting-table__table tr > td.is-name {
    position: absolute;
    left: calc(8% + 3px);
    top: 0;
    width: calc(27% - 3px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 短い名称なら横書きで収まる。足りなければ下の 2 行を有効化
       writing-mode: vertical-rl;
       text-orientation: upright;
    */
  }
  .p-homepainting-table .p-homepainting-table__table tr > td.is-name::before {
    content: none;
  }
  .p-homepainting-table .p-homepainting-table__table tr > td {
    /* 「見出しバッジ ＋ 値」の2カラム */
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 3px;
    align-items: center;
    padding: 0;
    width: calc(100% - 3px);
    margin-bottom: 3px;
    /* 左ラベル（デザインの小見出し） */
  }
  .p-homepainting-table .p-homepainting-table__table tr > td:last-child {
    margin-bottom: 0;
  }
  .p-homepainting-table .p-homepainting-table__table tr > td::before {
    content: attr(data-label);
    display: inline-block;
    font-weight: 500;
    color: #fff;
    background: var(--teal);
    padding: 1rem 0.9rem;
    font-size: 1.4rem;
    text-align: center;
    white-space: nowrap;
  }
  .p-homepainting-table .p-homepainting-table__table tr > td.is-stars {
    text-align: center;
    color: var(--star);
    font-size: 1.5rem;
    letter-spacing: 0.12rem;
  }
}

.p-merit__head__title {
  margin-bottom: 3rem;
}
.p-merit__head__title img {
  width: 80%;
  max-width: 27.4rem;
  height: auto;
}
@media (max-width: 640px) {
  .p-merit__head__title {
    text-align: center;
  }
  .p-merit__head__title img {
    width: 50%;
  }
}
.p-merit__head__sub {
  text-align: center;
}
.p-merit__head__sub img {
  width: 90%;
  max-width: 70rem;
  height: auto;
}

/* =========================================
 * Roofcover: sec-diff
 * ========================================= */
.p-rc-diff {
  /* SP：縦積み */
}
.p-rc-diff__inner {
  padding: 3rem 0;
  margin-bottom: 8rem;
  background: linear-gradient(90deg, #a50e59 50%, #1c6e7c 50%);
}
.p-rc-diff__title {
  color: #fff;
  font-weight: bold;
  font-size: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  text-align: center;
  margin: 0 0 4rem;
}
.p-rc-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* PCは左右2枚 */
  align-items: start;
}
.p-rc-diff__left, .p-rc-diff__right {
  padding: 3rem;
}
.p-rc-diff__fig {
  aspect-ratio: 3/2;
  display: flex;
  align-items: flex-end;
}
.p-rc-diff__fig img {
  display: block;
  width: 100%;
  height: auto;
  /* 透過PNG/SVGのにじみ防止 */
  image-rendering: -webkit-optimize-contrast;
}
.p-rc-diff__notes {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 3rem;
  line-height: 1.6;
}
.p-rc-diff__huki {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  width: 90%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: #a50e59;
  position: relative;
}
.p-rc-diff__huki::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  /* ↓ 下向き三角（下辺だけ色、他は透明） */
  border-width: 13px 9px 0 9px;
  border-color: #fff transparent transparent transparent;
}
.p-rc-diff__right .p-rc-diff__huki {
  color: #1c6e7c;
}
@media (max-width: 640px) {
  .p-rc-diff__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    background: linear-gradient(-180deg, #a50e59 50%, #1c6e7c 50%);
  }
  .p-rc-diff__inner {
    padding: 0 0;
    margin-bottom: 8rem;
    background: #fff;
  }
  .p-rc-diff__title {
    background: linear-gradient(90deg, #a50e59 50%, #1c6e7c 50%);
    padding: 0.8rem;
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }
  .p-rc-diff__fig {
    padding: 0.8rem;
  }
}

.p-roofcover__section__types__head {
  margin-bottom: 6rem;
}

.p-roofcover__tab__grid {
  display: flex;
  gap: 3rem;
}
.p-roofcover__tab__grid__img {
  width: 30%;
  aspect-ratio: 1;
}
.p-roofcover__tab__grid__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-roofcover__tab__grid__txt {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .p-roofcover__tab__grid {
    display: block;
  }
  .p-roofcover__tab__grid__img {
    width: 100%;
    margin-bottom: 2rem;
  }
}

/* =========================================
   Roofcover : weight compare
   ========================================= */
.p-rc-weight {
  margin-top: 8rem;
  --bg1: #022847;
  /* 濃い */
  --bg2: #133e5b;
  --bg3: #33627c;
  --bg4: #507d91;
  /* 淡い */
  --chip-bg: #fff;
  --chip-fg: #0f6673;
  /* 小さな吹き出しラベル */
  /* 179x80 サンプル枠（画像なくても形を出したい時） */
  /* 車アイコン群（個数は <li> を増減） */
}
.p-rc-weight__inner {
  padding: 3rem 0;
  background: linear-gradient(90deg, var(--bg1) 0 25%, var(--bg2) 25% 50%, var(--bg3) 50% 75%, var(--bg4) 75% 100%);
}
.p-rc-weight__title {
  margin: 0 0 3rem;
  text-align: center;
  font-weight: bold;
  font-size: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  color: #fff;
}
.p-rc-weight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.p-rc-weight__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.8rem 0;
  color: #fff;
  min-height: 100%;
  text-align: center;
}
.p-rc-weight__chip {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #507d91;
  position: relative;
}
.p-rc-weight__chip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  /* ↓ 下向き三角（下辺だけ色、他は透明） */
  border-width: 13px 9px 0 9px;
  border-color: #fff transparent transparent transparent;
}
.p-rc-weight__ph {
  width: 100%;
  height: auto;
  aspect-ratio: 179/80;
  background: #bfc7cc;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.p-rc-weight__ph img {
  aspect-ratio: 179/80;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-rc-weight__kg {
  font-size: clamp(2.2rem, 1.4rem + 2vw, 4.8rem);
  font-weight: bold;
  margin: 0 0 2rem;
  font-family: "Helvetica Neue";
}
.p-rc-weight__cars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 1.6rem;
  margin: 0;
  list-style: none;
}
.p-rc-weight__cars li {
  width: 100%;
  height: 4rem;
  margin: 0 auto;
  background: #fff;
  -webkit-mask: url(../images/roofcover/car.svg) center/contain no-repeat;
          mask: url(../images/roofcover/car.svg) center/contain no-repeat;
}
@media (max-width: 900px) {
  .p-rc-weight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-rc-weight__item {
    padding: 2rem 0.8rem;
    min-height: 100%;
  }
  .p-rc-weight__item:first-child {
    background-color: var(--bg1);
  }
  .p-rc-weight__item:nth-child(2) {
    background-color: var(--bg2);
  }
  .p-rc-weight__item:nth-child(3) {
    background-color: var(--bg3);
  }
  .p-rc-weight__item:nth-child(4) {
    background-color: var(--bg4);
  }
  .p-rc-weight__inner {
    padding: 0;
    background: #fff;
  }
  .p-rc-weight__title {
    margin: 0;
    padding: 2rem 0;
    background: linear-gradient(90deg, var(--bg1) 0 50%, var(--bg2) 50% 100%);
  }
}

/* =========================================
 * Roofcover : 重ね替え可否マトリクス
 * ========================================= */
.p-rc-compat {
  --th-bg: #232323;
  /* 見出し(黒) */
  --th-fg: #fff;
  --rowth-bg: #232323;
  /* 行見出し(濃いグレー) */
  --cell-bg: #eeeeee;
  /* セル背景 */
  --bd: #eeeeee;
}
.p-rc-compat__inner {
  margin-top: 8rem;
}
.p-rc-compat__title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.4rem + 2vw, 3.2rem);
  margin: 0 0 4rem;
}
.p-rc-compat__tableWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-rc-compat__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  min-width: 620px;
  /* SPで横スクロール可 */
  font-size: 1.6rem;
}
.p-rc-compat__table thead th {
  background: var(--th-bg);
  color: var(--th-fg);
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0.8rem;
  white-space: nowrap;
}
.p-rc-compat__table thead .is-corner {
  background: transparent;
}
.p-rc-compat__table tbody th {
  background: var(--rowth-bg);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0.8rem;
  white-space: nowrap;
  width: auto;
}
.p-rc-compat__table td {
  background: var(--cell-bg);
  text-align: center;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0.8rem;
  width: 20%;
}

.u-is-hidden {
  display: none;
}

.u-visuallyHidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* デフォルトはPC想定 */
.u-only-sp {
  display: none !important;
}

.u-only-pc {
  display: inline-flex !important;
}

/* SP時に切り替え（ブレークポイントは任意で調整） */
@media (max-width: 640px) {
  .u-only-sp {
    display: inline-flex !important;
  }
  .u-only-pc {
    display: none !important;
  }
  /* 念のためSPではモーダル自体も完全非表示 */
  #modal-qr {
    display: none !important;
  }
}
/* object/utility/_scroll.scss */
.u-noscroll {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */