/*-------post------*/
.archive-post-title {
  font-size: var(--b-fs);
  font-weight: var(--b-fw);
}

/* ===== ページ見出し（single / archive 共通ヒーロー） ===== */
.p-page-fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: clamp(120px, 12vw, 170px);
  padding-bottom: clamp(40px, 5vw, 64px);
  background: #e0f7fa;
  border-radius: 0 0 30px 30px;
}
.p-page-fv__tit {
  font-family: var(--b-font-deco);
  line-height: 1.2;
}
.p-page-fv__en {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: 0.08em;
  color: #4fb2cd;
}
.p-page-fv__ja {
  margin-top: clamp(6px, 0.8vw, 12px);
  font-weight: 500;
  font-size: clamp(13px, 1.11vw, 16px);
  letter-spacing: 0.18em;
  color: #000;
}

/* ===== パンくず ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb li::after {
  content: ">";
  margin: 0 0.8em;
  display: inline-block;
  color: #b9c7cb;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb li a,
.breadcrumb li {
  color: #6b6b6b;
  text-overflow: ellipsis;
}
.breadcrumb li a {
  transition: color 0.3s;
}
.breadcrumb li a:hover {
  color: #4fb2cd;
}

/* ===== お知らせ詳細（single） ===== */
.p-single__body {
  max-width: 950px;
  width: 100%;
  margin-inline: auto;
}
.p-single__head {
  position: relative;
  margin-bottom: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(20px, 2.2vw, 28px);
}
/* 見出し下の下線（2px の #4FB2CD ＋ 右端の丸） */
.p-single__head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #4fb2cd;
}
.p-single__head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4fb2cd;
}
.p-single__meta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: clamp(12px, 1.4vw, 18px);
}
.p-single__date {
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 0.06em;
  color: #4fb2cd;
}
.p-single__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 28px;
  padding-inline: 14px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  font-weight: 500;
  font-size: clamp(12px, 0.97vw, 14px);
  letter-spacing: 0.06em;
}
.p-single__title {
  font-size: clamp(20px, 1.94vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.single-post-title {
  font-size: clamp(20px, 1.94vw, 28px);
  font-weight: 700;
}
.p-single__thumb {
  margin-bottom: clamp(28px, 3vw, 44px);
  border-radius: 16px;
  overflow: hidden;
}
.p-single__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 本文（the_content 出力のベースタイポ） */
.p-single__content {
  font-size: clamp(15px, 1.11vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.04em;
}
.p-single__content > * + * {
  margin-top: 1.5em;
}
.p-single__content h2 {
  margin-top: 2em;
  padding: 0.4em 0 0.4em 0.8em;
  border-left: 5px solid #4fb2cd;
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.5;
}
.p-single__content h3 {
  margin-top: 1.8em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #cde9ef;
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.5;
}
.p-single__content a {
  color: #006f9b;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.p-single__content ul,
.p-single__content ol {
  padding-left: 1.4em;
}
.p-single__content ul li {
  list-style: disc;
}
.p-single__content ol li {
  list-style: decimal;
}
.p-single__content ul li,
.p-single__content ol li {
  margin-top: 0.5em;
}
.p-single__content blockquote {
  margin-block: 1.5em;
  padding: clamp(16px, 1.8vw, 24px);
  background: #f4fbfc;
  border-left: 4px solid #89d7e4;
  border-radius: 8px;
  color: #383838;
}
.p-single__content strong {
  font-weight: 700;
}

/* 一覧へ戻る */
.p-single__back {
  margin-top: clamp(40px, var(--px-80), 80px);
  text-align: center;
}
.p-single__back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: clamp(12px, 1.4vw, 16px) clamp(28px, 3vw, 44px);
  background: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(14px, 1.11vw, 16px);
  letter-spacing: 0.08em;
  transition:
    background 0.3s,
    color 0.3s;
}
.p-single__back-link:hover {
  background: #4fb2cd;
  border-color: #4fb2cd;
  color: #fff;
}

/* ===== お知らせ一覧（archive） ===== */
.p-archive__list {
  width: min(950px, 100%);
  margin-inline: auto;
  border-top: 1px solid #cde9ef;
}
.p-archive__item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  padding: clamp(18px, 2vw, 28px) clamp(4px, 1vw, 12px);
  border-bottom: 1px solid #cde9ef;
  color: #000;
  transition: background 0.3s;
}
.p-archive__item:hover {
  background: #f4fbfc;
}
.p-archive__date {
  flex-shrink: 0;
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 0.06em;
  color: #4fb2cd;
}
.p-archive__cat {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 28px;
  padding-inline: 14px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  font-weight: 500;
  font-size: clamp(12px, 0.97vw, 14px);
  letter-spacing: 0.06em;
}
.p-archive__title {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  font-size: clamp(15px, 1.11vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-archive__arrow {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #4fb2cd;
  border-right: 2px solid #4fb2cd;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.p-archive__item:hover .p-archive__arrow {
  transform: rotate(45deg) translate(2px, -2px);
}
.p-archive__empty {
  text-align: center;
  padding-block: clamp(40px, 6vw, 80px);
  font-size: clamp(15px, 1.11vw, 16px);
}

/* ===== ページネーション（archive） ===== */
.pagination-area {
  margin-top: clamp(40px, var(--px-80), 80px);
}
.pagination-area .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em;
}
.pagination-area .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding-inline: 12px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  font-weight: 500;
  font-size: clamp(13px, 1.11vw, 16px);
  transition:
    background 0.3s,
    color 0.3s;
}
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers.current {
  background: #4fb2cd;
  border-color: #4fb2cd;
  color: #fff;
}
.nav-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
}
/*-------hd------*/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 82px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* FV を過ぎたら固定（custom_bodys_end.js が .is-fixed を付与） */
.l-header.is-fixed {
  position: fixed;
}
.l-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(16px, 2.08vw, 30px);
}
.c-logo {
  flex-shrink: 0;
  width: clamp(165px, 16vw, 230px);
}
.c-logo img {
  display: block;
  width: 100%;
}
/* PC グローバルナビ */
.c-gnav {
  margin-left: auto;
}
.c-gnav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.7vw, 40px);
}
.c-gnav__list a {
  font-weight: 500;
  font-size: clamp(12px, 1.11vw, 16px);
  letter-spacing: 0.05em;
  color: #483026;
  white-space: nowrap;
}
/* PC 電話 */
.c-htel {
  flex-shrink: 0;
  margin-left: clamp(18px, 2.2vw, 40px);
  display: flex;
  flex-direction: column;
  color: #483026;
}
.c-htel__lead {
  padding-left: clamp(24px, 2.3vw, 34px);
  font-weight: 500;
  font-size: clamp(11px, 0.97vw, 14px);
  letter-spacing: 0.125em;
}
.c-htel__num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(17px, 1.67vw, 24px);
  letter-spacing: 0.083em;
  line-height: 1.2;
}
.c-htel__icon {
  width: clamp(18px, 1.67vw, 24px);
  height: auto;
}

/* SP（≤820）：白バー60px＋ロゴのみ。PCナビ/電話は隠す。固定挙動は無効 */
@media screen and (max-width: 820px) {
  .l-header {
    height: 60px;
    border-radius: 0 0 10px 10px;
    position: fixed;
    z-index: 700;
  }
  .l-header.is-fixed {
    top: auto;
    left: auto;
    animation: none;
  }
  .l-header__inner {
    padding-inline: 12px;
  }
  .c-logo {
    width: 150px;
  }
  .c-gnav,
  .c-htel {
    display: none;
  }
}
/*-------ft-----*/
/*-------btn------*/
/*-------fv------*/
.p-index-fv {
  position: relative;
}

/* =========================================================
   フロントページ（front-page.php）
   ========================================================= */
.u-underline {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.p-top {
  padding-bottom: clamp(50px, var(--px-120), 120px);
}

/* ---------- MV（index専用・height auto・右下を切り欠き） ---------- */
.p-top-mv {
  position: relative;
  width: min(1380px, 95.8%);
  margin-inline: auto;
}
.p-top-mv__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  /* MV.jpg は 1380:792 比。viewBox を合わせて切り欠きを歪ませない。
     切り欠きは右下 452×141（下層と同じ実寸） */
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1380 792' preserveAspectRatio='none'><path d='M0 0 H1380 V621 A30 30 0 0 1 1350 651 H972 A44 44 0 0 0 928 695 V762 A30 30 0 0 1 898 792 H0 Z' fill='%23000'/></svg>")
    center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1380 792' preserveAspectRatio='none'><path d='M0 0 H1380 V621 A30 30 0 0 1 1350 651 H972 A44 44 0 0 0 928 695 V762 A30 30 0 0 1 898 792 H0 Z' fill='%23000'/></svg>")
    center / 100% 100% no-repeat;
}
.p-top-mv__catch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(398px, 78%);
  padding: clamp(20px, 2.5vw, 32px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  text-align: center;
}
.p-top-mv__catch p {
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(19px, 1.94vw, 28px);
  line-height: 1.85;
  letter-spacing: 0.18em;
  color: #000;
}
.p-top-mv__name {
  color: #006f9b;
  letter-spacing: 0.07em;
}
/* キャッチの下線は text-decoration（太い）ではなく 1px ボーダーで */
.p-top-mv__catch .u-underline {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15em;
}
.p-top-mv__hours {
  position: absolute;
  right: clamp(16px, 7%, 120px);
  bottom: clamp(16px, 5%, 50px);
  font-weight: 500;
  font-size: clamp(12px, 1.25vw, 18px);
  letter-spacing: 0.1em;
  line-height: 1.95;
  color: #000;
}
.p-top-mv__hours span {
  display: inline-block;
  width: 5em;
}

/* ---------- NEWS ---------- */
.p-top-news {
  padding-top: clamp(40px, 6vw, 80px);
}
.p-top-news__inner {
  position: relative;
  width: min(800px, 90%);
  margin-inline: auto;
  display: flex;
  gap: clamp(24px, 5.5vw, 80px);
  padding-bottom: clamp(18px, 2.6vw, 32px);
}
/* 下線（2px の #4FB2CD ＋ 右端に 10px の丸） */
.p-top-news__inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #4fb2cd;
}
.p-top-news__inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4fb2cd;
}
.p-top-news__ttl {
  flex-shrink: 0;
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(24px, 2.22vw, 32px);
  letter-spacing: 0.06em;
}
.p-top-news__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 18px);
  min-width: 0;
}
.p-top-news__item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 19px);
  color: #000;
}
.p-top-news__date {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 111px;
  height: 33px;
  background: #fff;
  border: 1px solid #000;
  font-weight: 500;
  font-size: clamp(13px, 1.11vw, 16px);
  letter-spacing: 0.06em;
}
.p-top-news__text {
  font-weight: 500;
  font-size: clamp(13px, 1.11vw, 16px);
  letter-spacing: 0.06em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-top-news__line {
  display: none; /* SP のみ表示（見出しとリストの間） */
}

/* ---------- ABOUT ---------- */
.p-top-about {
  position: relative;
  margin-top: clamp(50px, 7vw, 90px);
  padding-block: clamp(60px, var(--px-120), 120px)
    clamp(40px, var(--px-80), 80px);
  overflow: hidden; /* 装飾雲のはみ出しで横スクロールが出ないように */
}
.p-top-about__box {
  position: relative;
  z-index: 1;
  width: min(1050px, 90%);
  margin-inline: auto;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 90px) 200px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 20px;
}
.p-top-about__pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 92%;
  padding: clamp(9px, 1.2vw, 15px) clamp(22px, 4vw, 60px);
  background: #e0f7fa;
  border: 3px solid #000;
  border-radius: 50px;
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(15px, 1.67vw, 24px);
  letter-spacing: 0.25em;
  text-align: center;
}
.p-top-about__text {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 2.2;
  letter-spacing: 0.125em;
  color: #000;
}
.p-top-about__illust {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 300px;
  height: auto;
}
.p-top-about__cloud {
  position: absolute;
  z-index: 3;
  height: auto;
  pointer-events: none;
}
.p-top-about__cloud--lt {
  left: 0;
  top: 0;
  width: clamp(199px, 31vw, 450px);
}
.p-top-about__cloud--rt {
  right: 20px;
  top: 13%;
  width: clamp(199px, 21vw, 300px);
}
.p-top-about__cloud--lb {
  left: 0;
  bottom: 0;
  width: clamp(200px, 38vw, 550px);
}
.p-top-about__cloud--rb {
  right: 0;
  bottom: 10%;
  width: clamp(137px, 39vw, 567px);
}

/* ===== ABOUT スクロールアニメーション ===== */
/* 雲：lt/lb は左の画面外から、rt/rb は右の画面外から、lt→lb→rt→rb の順で */
.p-top-about.js-anime .p-top-about__cloud {
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.9s ease;
}
.p-top-about.js-anime .p-top-about__cloud--lt,
.p-top-about.js-anime .p-top-about__cloud--lb {
  transform: translateX(-160%);
}
.p-top-about.js-anime .p-top-about__cloud--rt,
.p-top-about.js-anime .p-top-about__cloud--rb {
  transform: translateX(160%);
}

.p-top-about.js-anime.is-visible .p-top-about__cloud {
  opacity: 1;
  transform: translateX(0);
}
.p-top-about.js-anime.is-visible .p-top-about__cloud--lt {
  transition-delay: 0s;
}
.p-top-about.js-anime.is-visible .p-top-about__cloud--lb {
  transition-delay: 0.18s;
}
.p-top-about.js-anime.is-visible .p-top-about__cloud--rt {
  transition-delay: 0.36s;
}
.p-top-about.js-anime.is-visible .p-top-about__cloud--rb {
  transition-delay: 0.54s;
}

/* イラスト：スケール 0 → 1（少しオーバーシュート）、雲のあとに */
.p-top-about.js-anime .p-top-about__illust {
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;
}
.p-top-about.js-anime.is-visible .p-top-about__illust {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition-delay: 0.7s;
}

/* ---------- サービス ---------- */
.p-top-service {
  position: relative;
  margin-top: clamp(50px, 8vw, 90px);
  padding-block: clamp(60px, 8vw, 92px);
  /* 影は親（マスク無し）に。マスクは ::before に分離（同一要素だとマスクが影を切り取るため） */
  filter: drop-shadow(0 -5px 15px rgba(0, 0, 0, 0.15))
    drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}
/* 白い波帯（上下を波形にくり抜き。body 背景が波の谷から覗く。振幅20px） */
.p-top-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  -webkit-mask:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 177 20' preserveAspectRatio='none'><path fill='%23000' d='M0 10 Q44.25 -10 88.5 10 T177 10 L177 20 L0 20 Z'/></svg>")
      top left / 177px 20px repeat-x,
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 177 20' preserveAspectRatio='none'><path fill='%23000' d='M0 10 Q44.25 30 88.5 10 T177 10 L177 0 L0 0 Z'/></svg>")
      bottom left / 177px 20px repeat-x,
    linear-gradient(#000 0 0) center / 100% calc(100% - 38px) no-repeat;
  mask:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 177 20' preserveAspectRatio='none'><path fill='%23000' d='M0 10 Q44.25 -10 88.5 10 T177 10 L177 20 L0 20 Z'/></svg>")
      top left / 177px 20px repeat-x,
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 177 20' preserveAspectRatio='none'><path fill='%23000' d='M0 10 Q44.25 30 88.5 10 T177 10 L177 0 L0 0 Z'/></svg>")
      bottom left / 177px 20px repeat-x,
    linear-gradient(#000 0 0) center / 100% calc(100% - 38px) no-repeat;
}
.p-top-service__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
}
.p-top-service__deco {
  flex-shrink: 0;
  width: clamp(28px, 2.8vw, 40px);
  height: auto;
}
.p-top-service__ttl {
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(17px, 1.67vw, 24px);
  letter-spacing: 0.125em;
  text-align: center;
}
.p-top-service__list {
  width: min(1000px, 92%);
  margin: clamp(28px, 4vw, 50px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 30px);
}
.p-top-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
}
.p-top-card__no {
  align-self: flex-start;
  margin-left: 4%;
  font-weight: 700;
  font-size: clamp(28px, 2.5vw, 36px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #4fb2cd;
}
.p-top-card__en {
  font-size: clamp(14px, 1.39vw, 20px);
  margin-right: 5px;
}
.p-top-card__icon {
  margin-top: 10px;
  width: 100%;
  max-width: 185px;
  aspect-ratio: 1;
  background: #89d7e4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1vw, 10px);
}
.p-top-card__icon img {
  width: clamp(64px, 7.6vw, 110px);
  height: auto;
}
.p-top-card__label {
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(15px, 1.39vw, 20px);
  letter-spacing: 0.125em;
  color: #383838;
}
.p-top-card__desc {
  width: 100%;
  margin-top: 14px;
  font-size: clamp(13px, 1.11vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* ---------- 報酬について / 事務所案内 ---------- */
.p-top-guide {
  margin-top: clamp(50px, 7vw, 90px);
}
.p-top-guide__cta {
  position: relative;
  width: min(900px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
}
.p-top-guide__cta-illust {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: clamp(90px, 9vw, 130px);
  height: auto;
}
.p-top-guide__cta-text {
  flex: 1;
  margin-left: clamp(-26px, -2vw, -16px);
  margin-bottom: 15px;
  padding: 13px 0 13px clamp(10px, var(--px-35), 35px);
  background: #fff;
  border: 3px solid #000;
  border-radius: 0 50px 50px 0;
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(14px, 1.67vw, 24px);
  letter-spacing: 0.125em;
}
.p-top-guide__list {
  width: min(1050px, 92%);
  margin: clamp(36px, 5vw, 65px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 45px);
}
.p-top-guide__item {
  display: block;
  color: #000;
}
.p-top-guide__img {
  display: block;
  overflow: hidden;
  border-top-right-radius: 30px;
  aspect-ratio: 500 / 240;
}
.p-top-guide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-guide__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(12px, 1.5vw, 18px) clamp(4px, 1vw, 12px);
  border-bottom: 1px solid #9a9a9a;
}
.p-top-guide__txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-top-guide__ja {
  font-family: var(--b-font-deco);
  font-weight: 700;
  font-size: clamp(17px, 1.39vw, 20px);
  letter-spacing: 0.125em;
}
.p-top-guide__en {
  font-weight: 700;
  font-size: clamp(13px, 1.11vw, 16px);
  letter-spacing: 0.125em;
  color: #c0c0c0;
}
.p-top-guide__arrow {
  flex-shrink: 0;
  width: clamp(22px, 2vw, 28px);
  height: auto;
}

/* ---------- SP ---------- */
@media screen and (max-width: 820px) {
  .p-top-service__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 5vw, 40px);
  }
}
@media screen and (max-width: 680px) {
  /* MV：縦長・切り欠きマスクあり（横60%・高160px）・キャッチは画像に直接 */
  .p-top-mv__img img {
    height: auto;
    aspect-ratio: 350 / 720;
    object-fit: cover;
    border-radius: 30px;
    -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 720' preserveAspectRatio='none'><path d='M0 0 H350 V530 A30 30 0 0 1 320 560 H184 A44 44 0 0 0 140 604 V690 A30 30 0 0 1 110 720 H0 Z' fill='%23000'/></svg>")
      center / 100% 100% no-repeat;
    mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 720' preserveAspectRatio='none'><path d='M0 0 H350 V530 A30 30 0 0 1 320 560 H184 A44 44 0 0 0 140 604 V690 A30 30 0 0 1 110 720 H0 Z' fill='%23000'/></svg>")
      center / 100% 100% no-repeat;
  }
  .p-top-mv__catch {
    top: 18%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0;
    background: none;
    border-radius: 0;
  }
  .p-top-mv__catch p {
    font-size: 18px;
    line-height: 1.95;
  }
  .p-top-mv__name {
    font-size: 18px;
  }
  .p-top-mv__hours {
    left: 70%;
    width: 50%;
    right: auto;
    top: 80%;
    transform: translateX(-50%);
    font-size: 14px;
    line-height: 2.15;
    text-align: left;
  }
  .p-top-mv__hours p {
    margin: 0;
  }
  .p-top-mv__hours span {
    display: block;
    width: auto;
  }

  /* NEWS：縦積み（見出し → 線 → リスト） */
  .p-top-news__inner {
    flex-direction: column;
    gap: clamp(20px, 5vw, 30px);
    padding-bottom: 0;
  }
  .p-top-news__inner::before,
  .p-top-news__inner::after {
    display: none; /* SP は __line を使う */
  }
  .p-top-news__line {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background: #4fb2cd;
  }
  .p-top-news__line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4fb2cd;
  }

  /* ABOUT */
  .p-top-about__text {
    font-size: 16px;
    line-height: 2.2;
  }
  .p-top-about__pill {
    width: 88%;
    white-space: normal;
    line-height: 1.5;
    letter-spacing: 0.18em;
    font-size: 18px;
  }
  .p-top-about__cloud--rb {
    bottom: 2%;
  }
  .p-top-about__cloud--lt {
    left: -90px;
    top: -5px;
  }
  .p-top-about__cloud--rt {
    right: -90px;
    top: 0;
  }

  /* サービス見出し（2行） */
  .p-top-service__ttl {
    font-size: 18px;
    line-height: 1.5;
  }
  /* 波装飾のタイルを小さく（SP は山を細かく） */
  .p-top-service::before {
    -webkit-mask-size:
      90px 18px,
      90px 18px,
      100% calc(100% - 34px);
    mask-size:
      90px 18px,
      90px 18px,
      100% calc(100% - 34px);
  }

  /* 報酬／事務所案内：CTA は人物が上・カードは縦積み */
  .p-top-guide__cta {
    flex-direction: column;
    align-items: center;
    width: min(360px, 96%);
  }
  .p-top-guide__cta-illust {
    width: 70px;
    margin-bottom: -15px;
  }
  .p-top-guide__cta-text {
    width: 100%;
    margin-left: 0;
    padding: clamp(18px, 5vw, 24px) 20px clamp(14px, 4vw, 18px);
    border-radius: 50px;
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
  }
  .p-top-guide__list {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  /* ページ見出し / お知らせ詳細 */
  .p-page-fv {
    padding-top: clamp(110px, 30vw, 140px);
    border-radius: 0 0 20px 20px;
  }
  .p-single__meta {
    flex-wrap: wrap;
    gap: 10px;
  }
  .p-single__title {
    font-size: 20px;
    line-height: 1.7;
  }
  .p-single__content {
    font-size: 15px;
    line-height: 2;
  }
  .p-single__back-link {
    width: 100%;
    min-width: 0;
  }

  /* お知らせ一覧 */
  .p-archive__item {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding-right: 24px;
  }
  .p-archive__title {
    order: 3;
    width: 100%;
    white-space: normal;
  }
  .p-archive__arrow {
    margin-left: auto;
  }
}
/* CSS Document */
