@charset "UTF-8";
/* 英字・数字用（Poppins） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

a {
  text-decoration: none;
  color: inherit;
}

input[type=text],
input[type=email],
input[type=url],
input[type=tel],
input[type=password],
input[type=search],
input[type=number],
textarea,
select {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

button,
[role=button],
input[type=button],
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
}

::placeholder {
  opacity: 1;
}

main,
section,
article,
aside,
nav,
header,
footer,
figure,
figcaption {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* hidden 属性は必ず非表示にする（JSトグルの前提を守る） */
[hidden] {
  display: none !important;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--pb-header-h, 0px);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.6;
  color: #484C49;
  background-color: #FCFDFC;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------
   1-1. CSS Custom Properties（必要時にJS/inlineで参照）
   ※ SCSS変数を「CSS変数」としても公開しておくと運用が楽です。
---------------------------------------- */
:root {
  /* Colors */
  --pb-color-primary: #001102;
  --pb-color-secondary-a: #F0F2F1;
  --pb-color-secondary-b: #F2F2E3;
  --pb-color-accent-a: #A7A368;
  --pb-color-accent-b: #366750;
  --pb-color-text: #484C49;
  --pb-color-muted: #707470;
  --pb-color-border: #C7CCC7;
  /* Typography */
  --pb-font-base: Zen Kaku Gothic New, system-ui, -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, sans-serif;
  --pb-font-heading: Zen Kaku Gothic New, system-ui, -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, sans-serif;
  /* Brand scale (Header logo + catchcopy) */
  --pb-brand-logo-w: clamp(240px, 11vw, 340px); /* 少しだけ大きめ */
  --pb-brand-catch-fs: clamp(12px, 0.7vw, 14px); /* キャッチは控えめに流体 */
  --pb-hamburger-safe-area: clamp(108px, 9vw, 160px); /* ③の占有幅（調整OK） */
  /* 創和ネクスト レイアウト設計値（CSS変数公開） */
  --souwa-layout-design: 1440px;
  --souwa-layout-inner: 1440px;
  --souwa-layout-content: 1120px;
  --souwa-layout-narrow: 960px;
  --souwa-layout-wide: 1680px;
  --souwa-layout-fv-stage: 1760px;
  --souwa-layout-sidebar: 64px;
  --souwa-layout-gutter: clamp(30px, 4vw, 96px);
  --souwa-color-green: #366750;
  /* 創和ネクスト カラー変数（CSS カスタムプロパティ公開） */
  --souwa-color-logo-green: #366750;
  --souwa-color-logo-red: #A72024;
  --souwa-color-title: #001102;
  --souwa-color-body: #484C49;
  --souwa-color-white: #FCFDFC;
  --souwa-color-gray-900: #707470;
  --souwa-color-gray-600: #9EA19E;
  --souwa-color-gray-300: #C7CCC7;
  --souwa-color-gray-100: #F0F2F1;
  --souwa-color-bg-green: #EFF8F1;
  --souwa-color-olive: #A7A368;
  --souwa-color-beige: #F2F2E3;
  --souwa-color-red: #A72024;
}

/* 4K寄りで“2.5倍くらい”まで引き上げる */
@media (min-width: 2560px) {
  :root {
    --pb-brand-logo-w: clamp(340px, 12vw, 480px);
    --pb-brand-catch-fs: clamp(14px, 0.7vw, 18px);
  }
}
@media (min-width: 3600px) {
  :root {
    --pb-brand-logo-w: clamp(440px, 15vw, 580px); /* 4Kでだいたい最大580px */
    --pb-brand-catch-fs: clamp(16px, 0.7vw, 22px);
  }
}
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #484C49;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

p {
  margin: 0 0 1rem;
}

small {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #707470;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25em;
}

li {
  margin: 0 0 0.5rem;
}

blockquote {
  margin: 0 0 1rem;
  padding: 1rem;
  border-left: 4px solid #C7CCC7;
  background: #F0F2F1;
}

dl {
  margin: 0 0 1rem;
}

dt {
  font-weight: 500;
}

dd {
  margin: 0 0 0.5rem 0.75rem;
}

a {
  color: #366750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.25s ease-out;
}

a:hover {
  color: #001102;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid #366750;
  outline-offset: 2px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
}

th,
td {
  padding: 0.75rem;
  border: 1px solid #C7CCC7;
  text-align: left;
  vertical-align: top;
}

th {
  background: #F0F2F1;
  font-weight: 500;
}

::selection {
  background: rgba(242, 201, 76, 0.35);
}

:focus:not(:focus-visible) {
  outline: none;
}

.u-br {
  display: block;
}

.u-br--pc {
  display: none;
}

@media (min-width: 1025px) {
  .u-br--pc {
    display: block;
  }
}
.u-br--sp {
  display: block;
}

@media (min-width: 1025px) {
  .u-br--sp {
    display: none;
  }
}
.l-container {
  width: 100%;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .l-container {
    padding-inline: 2rem;
  }
}
.l-container {
  margin-inline: auto;
  max-width: 1280px;
}

.l-container--full {
  width: 100%;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .l-container--full {
    padding-inline: 2rem;
  }
}
.l-container--full {
  margin-inline: 0;
  max-width: none;
}

.l-container--none {
  width: 100%;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .l-container--none {
    padding-inline: 2rem;
  }
}
.l-container--none {
  margin-inline: auto;
  max-width: 1280px;
}

.l-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .l-grid {
    gap: 2rem;
  }
}

.l-grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .l-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .l-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .l-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-grid__item {
  height: 100%;
}

/* 英字・数字用（Poppins） */
/* =======================================
  layout/_header.scss
======================================= */
.l-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #111;
  transform: translateY(0);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.l-header.is-header-hidden {
  transform: translateY(-100%);
}
.l-header.is-header-shown {
  transform: translateY(0);
}
.l-header {
  /* トップ（ヒーロー上） */
}
.l-header.l-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
  color: #fff;
}
.l-header {
  /* sticky（白背景） */
}
.l-header.is-header-sticky {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #111;
}
.l-header a {
  color: inherit;
  text-decoration: none;
}

/* 画面固定はしない（全ページ） */
.l-header--top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* サブページは通常フロー（必要なら調整） */
.l-header--sub {
  position: relative;
  width: 100%;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
}

.l-header__logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
  margin: 2vh 0;
}

.catchcopy {
  display: inline-block;
  font-size: var(--pb-brand-catch-fs);
  width: fit-content;
  line-height: 1.2;
  padding: 6px 10px;
  margin-bottom: 0;
  border-radius: 2px;
  background: #001102;
  color: #F0F2F1;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
}

.c-site-logo__img {
  display: block;
  width: 100%;
  max-width: var(--pb-brand-logo-w);
  height: auto;
}

/* ロゴの出し分け（白⇄濃色） */
.c-site-logo__img--light {
  display: none;
}

.c-site-logo__img--dark {
  display: block;
}

.l-header.l-header--transparent .c-site-logo__img--light {
  display: block;
}
.l-header.l-header--transparent .c-site-logo__img--dark {
  display: none;
}

.l-header.is-header-sticky .c-site-logo__img--light {
  display: none;
}
.l-header.is-header-sticky .c-site-logo__img--dark {
  display: block;
}

/* グローバルナビ（PC） */
.l-global-nav--pc {
  display: none;
}
@media (min-width: 1024px) {
  .l-global-nav--pc {
    display: block;
  }
}

.c-global-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-global-nav__item > a {
  display: inline-block;
  position: relative;
  padding: 8px 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
.c-global-nav__item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 105%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c-global-nav__item > a {
  /* ✅ ホバーは色だけ薄く（下線は出さない） */
}
.c-global-nav__item > a:hover, .c-global-nav__item > a:focus-visible {
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

/* 現在地（＝表示中ページ）で下線を出す */
.c-global-nav__item.is-current > a::after,
.c-global-nav__item.current-menu-item > a::after,
.c-global-nav__item.current_page_item > a::after,
.c-global-nav__item.current-menu-ancestor > a::after {
  opacity: 1;
}

@media (min-width: 1024px) {
  /* ② PCナビ：右側にハンバーガー分の逃げを作る */
  .l-global-nav--pc {
    padding-right: var(--pb-hamburger-safe-area);
  }
}
@media (min-width: 1024px) {
  .c-hamburger {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10001; /* ← 9999(ドロワー)より上にする */
    cursor: pointer;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .l-global-nav--pc {
    display: none;
  }
}
@media (min-width: 1280px) {
  .l-global-nav--pc {
    display: block;
  }
}

.c-global-nav__link,
.c-global-nav__label {
  white-space: nowrap;
}

.c-global-nav__list--pc {
  gap: clamp(18px, 1.35vw, 28px);
}

.c-global-nav__list--pc .c-global-nav__item > a {
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.45;
}

.p-footer {
  background: #001102;
  color: #F0F2F1;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
}

.p-footer__inner {
  padding: 6rem 0 4rem;
}

.p-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .p-footer__grid {
    grid-template-columns: 300px 1px auto;
    gap: 6rem;
    align-items: stretch;
  }
}

.p-footer__left,
.p-footer__right {
  min-width: 0;
  padding: 0.75rem 0;
  width: 100%;
}

.p-footer__right {
  margin-top: auto;
}

.p-footer__divider {
  display: none;
}
@media (min-width: 1024px) {
  .p-footer__divider {
    display: block;
    background: rgba(240, 242, 241, 0.35);
    width: 1px;
  }
}

.p-footer__catch {
  margin: 0 0 0.5rem;
  letter-spacing: 0.08em;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
}

.p-footer__logo {
  display: inline-block;
  margin: 0 0 2rem;
  text-decoration: none;
}
.p-footer__logo img {
  display: block;
  width: min(360px, 100%);
  height: auto;
}

.p-footer__address {
  margin: 0 0 10rem;
}
@media (max-width: 575px) {
  .p-footer__address {
    margin-bottom: 4rem;
  }
}
.p-footer__address p {
  margin: 0 0 0.5rem;
}

.p-footer__cta {
  display: flex;
  justify-content: right;
  gap: 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 1023px) {
  .p-footer__cta {
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 6rem;
  }
}

.p-footer__btn {
  min-width: 260px;
  padding: 0.75rem 2rem;
}
@media (max-width: 575px) {
  .p-footer__btn {
    min-width: min(320px, 90%);
  }
}

.p-footer__nav {
  margin: 0 0 1rem;
}
@media (max-width: 575px) {
  .p-footer__nav {
    margin-bottom: 6rem;
  }
}
.p-footer__nav ul {
  margin: 0;
}

.p-footer__menu {
  display: flex;
  justify-content: right;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 0.75rem;
  row-gap: 1.5rem;
}
@media (max-width: 575px) {
  .p-footer__menu {
    justify-content: left;
    column-gap: 0.75rem;
    row-gap: 1.5rem;
  }
}
.p-footer__menu a {
  color: #F0F2F1;
  text-decoration: none;
  transition: color 0.25s ease-out;
}
.p-footer__menu a:hover, .p-footer__menu a:focus-visible {
  color: #A7A368;
}
.p-footer__menu li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  min-height: 1.8em;
}
.p-footer__menu li:not(:first-child) {
  border-left: 1px solid rgba(240, 242, 241, 0.45);
  padding-left: 0.75rem;
}

.p-footer__legal {
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
}
@media (max-width: 767px) {
  .p-footer__legal {
    gap: 1rem;
    justify-content: center;
  }
}

.p-footer__legal-link {
  color: #F0F2F1;
  text-decoration: none;
  transition: color 0.25s ease-out;
}
.p-footer__legal-link:hover, .p-footer__legal-link:focus-visible {
  color: #A7A368;
}

.p-footer__copyright {
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  margin: 5rem 0 0;
  opacity: 0.9;
}
@media (max-width: 575px) {
  .p-footer__copyright {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 1023px) {
  .p-footer__right {
    margin-top: 4rem;
  }
}
@media (max-width: 575px) {
  .p-footer__right {
    margin-top: 5rem;
  }
}
.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-mx-0 {
  margin-inline: 0px !important;
}

.u-my-0 {
  margin-block: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-px-0 {
  padding-inline: 0px !important;
}

.u-py-0 {
  padding-block: 0px !important;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-ml-4 {
  margin-left: 4px !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-mx-4 {
  margin-inline: 4px !important;
}

.u-my-4 {
  margin-block: 4px !important;
}

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-pl-4 {
  padding-left: 4px !important;
}

.u-pr-4 {
  padding-right: 4px !important;
}

.u-px-4 {
  padding-inline: 4px !important;
}

.u-py-4 {
  padding-block: 4px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-mx-8 {
  margin-inline: 8px !important;
}

.u-my-8 {
  margin-block: 8px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-px-8 {
  padding-inline: 8px !important;
}

.u-py-8 {
  padding-block: 8px !important;
}

.u-mt-12 {
  margin-top: 12px !important;
}

.u-mb-12 {
  margin-bottom: 12px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

.u-mr-12 {
  margin-right: 12px !important;
}

.u-mx-12 {
  margin-inline: 12px !important;
}

.u-my-12 {
  margin-block: 12px !important;
}

.u-pt-12 {
  padding-top: 12px !important;
}

.u-pb-12 {
  padding-bottom: 12px !important;
}

.u-pl-12 {
  padding-left: 12px !important;
}

.u-pr-12 {
  padding-right: 12px !important;
}

.u-px-12 {
  padding-inline: 12px !important;
}

.u-py-12 {
  padding-block: 12px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-mx-16 {
  margin-inline: 16px !important;
}

.u-my-16 {
  margin-block: 16px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-px-16 {
  padding-inline: 16px !important;
}

.u-py-16 {
  padding-block: 16px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-mx-24 {
  margin-inline: 24px !important;
}

.u-my-24 {
  margin-block: 24px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-px-24 {
  padding-inline: 24px !important;
}

.u-py-24 {
  padding-block: 24px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-mx-32 {
  margin-inline: 32px !important;
}

.u-my-32 {
  margin-block: 32px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-px-32 {
  padding-inline: 32px !important;
}

.u-py-32 {
  padding-block: 32px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-mx-40 {
  margin-inline: 40px !important;
}

.u-my-40 {
  margin-block: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-px-40 {
  padding-inline: 40px !important;
}

.u-py-40 {
  padding-block: 40px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-mx-48 {
  margin-inline: 48px !important;
}

.u-my-48 {
  margin-block: 48px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-px-48 {
  padding-inline: 48px !important;
}

.u-py-48 {
  padding-block: 48px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-mx-64 {
  margin-inline: 64px !important;
}

.u-my-64 {
  margin-block: 64px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-px-64 {
  padding-inline: 64px !important;
}

.u-py-64 {
  padding-block: 64px !important;
}

.u-block {
  display: block !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-flex {
  display: flex !important;
}

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

.u-flex-center {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.u-flex-col {
  display: flex !important;
  flex-direction: column;
}

.u-flex--col-md-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .u-flex--col-md-row {
    flex-direction: row;
  }
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-bold {
  font-weight: 700 !important;
}

.u-text-medium {
  font-weight: 500 !important;
}

.u-text-normal {
  font-weight: 400 !important;
}

.u-text-sm {
  font-size: clamp(0.875rem, 0.8vw, 1rem) !important;
}

.u-text-md {
  font-size: clamp(1rem, 1vw, 1.125rem) !important;
}

.u-text-lg {
  font-size: clamp(1.125rem, 1.2vw, 1.375rem) !important;
}

.u-text-muted {
  color: #707470 !important;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  background-color: #001102;
  color: #F0F2F1 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: background-color 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.25s ease-out, transform 0.15s ease-out;
}
@media (min-width: 768px) {
  .c-button {
    padding: 0.5rem 1.5rem;
    font-size: clamp(1rem, 1vw, 1.125rem);
  }
}
.c-button:hover, .c-button:focus-visible {
  background-color: black;
  color: #F0F2F1;
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}
.c-button:active {
  background-color: black;
  color: #F0F2F1;
  box-shadow: none;
  transform: translateY(0);
}
.c-button[disabled], .c-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  box-shadow: none;
  pointer-events: none;
}

.c-button--accent {
  background-color: #A7A368;
  color: #001102 !important;
}
.c-button--accent:hover, .c-button--accent:focus-visible {
  background-color: rgb(223.6071428571, 227.7928571429, 225.7);
}
.c-button--accent:active {
  background-color: rgb(207.2142857143, 213.5857142857, 210.4);
}

.c-button--outline {
  background-color: #FCFDFC;
  color: #001102;
  border-color: #001102;
  box-shadow: none;
}
.c-button--outline:hover, .c-button--outline:focus-visible {
  background-color: rgba(0, 17, 2, 0.06);
}
.c-button--outline:active {
  background-color: rgba(0, 17, 2, 0.12);
}

.c-button--sub {
  background-color: #F0F2F1;
  color: #484C49;
  border-color: #C7CCC7;
}
.c-button--sub:hover, .c-button--sub:focus-visible {
  background-color: rgb(250.9285714286, 251.4714285714, 251.2);
}
.c-button--sub:active {
  background-color: rgb(234.5357142857, 237.2642857143, 235.9);
}

.c-button--sm {
  padding: 0.25rem 0.75rem;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
}

.c-button--lg {
  padding: 0.75rem 2rem;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
}
@media (min-width: 768px) {
  .c-button--lg {
    padding: 0.75rem 3rem;
  }
}

.c-button--block {
  display: flex;
  width: 100%;
}

.c-button--icon {
  gap: 0.5rem;
}

.c-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-button__label {
  display: inline-block;
}

.c-button--footer-outline {
  background-color: transparent;
  color: #F0F2F1;
  border-color: #F0F2F1;
  box-shadow: none;
  min-width: 200px;
}
.c-button--footer-outline:hover, .c-button--footer-outline:focus-visible {
  background-color: #F0F2F1;
  color: #001102;
  border-color: transparent;
}
.c-button--footer-outline:active {
  background-color: #F0F2F1;
  color: #001102;
  border-color: transparent;
}

@media (max-width: 1023px) {
  .c-button--footer-outline {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: clamp(1rem, 1vw, 1.125rem);
    display: grid;
  }
}
.c-button__text {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c-button__arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.c-button__arrow::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background-color: #A72024;
  transition: transform 0.4s ease;
}
.c-button__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #A72024;
  margin-left: -1px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.c-button--text {
  --button-width: clamp(320px, 19.8vw, 380px);
  --button-height: clamp(64px, 4vw, 76px);
  --arrow-line-width: clamp(72px, 4.6vw, 88px);
  --arrow-head-width: 16px;
  --arrow-head-height: 21px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--button-width);
  min-width: 0;
  min-height: var(--button-height);
  padding: 0;
  border-radius: 9999px;
  border: 2px solid #001102;
  background-color: #FCFDFC;
  color: #484C49 !important;
  box-shadow: none;
  overflow: visible;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.c-button--text .c-button__text {
  position: absolute;
  top: 50%;
  left: calc((100% - var(--arrow-line-width) / 2) / 2);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.c-button--text .c-button__arrow {
  position: absolute;
  top: 50%;
  left: 100%;
  width: var(--arrow-line-width);
  height: var(--arrow-head-height);
  margin-right: 0;
  transform: translate(-50%, -50%);
}
.c-button--text .c-button__arrow::before {
  width: var(--arrow-line-width);
  height: 3px;
}
.c-button--text .c-button__arrow::after {
  border-top-width: calc(var(--arrow-head-height) / 2);
  border-bottom-width: calc(var(--arrow-head-height) / 2);
  border-left-width: var(--arrow-head-width);
}
.c-button--text:hover, .c-button--text:focus-visible {
  background-color: #EFF8F1;
  border-color: #366750;
  color: #366750 !important;
  box-shadow: none;
  transform: none;
}
.c-button--text:hover .c-button__arrow::before,
.c-button--text:hover .c-button__arrow::after, .c-button--text:focus-visible .c-button__arrow::before,
.c-button--text:focus-visible .c-button__arrow::after {
  transform: translateX(10px);
}
.c-button--text:active {
  background-color: #EFF8F1;
  color: #366750 !important;
  box-shadow: none;
  transform: none;
}

.c-button--arrowOnly {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 14vw, 140px);
  height: clamp(52px, 7vw, 72px);
  padding: 0;
  border-radius: 9999px;
  border: 2px solid #001102;
  background-color: #FCFDFC;
  box-shadow: none;
  overflow: visible;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.c-button--arrowOnly:hover, .c-button--arrowOnly:focus-visible {
  background-color: #EFF8F1;
  border-color: #366750;
  box-shadow: none;
  transform: none;
}
.c-button--arrowOnly:hover .c-button__arrow::before,
.c-button--arrowOnly:hover .c-button__arrow::after, .c-button--arrowOnly:focus-visible .c-button__arrow::before,
.c-button--arrowOnly:focus-visible .c-button__arrow::after {
  transform: translateX(10px);
}
.c-button--arrowOnly:active {
  background-color: #EFF8F1;
  box-shadow: none;
  transform: none;
}

.c-card {
  background-color: #FCFDFC;
  color: #484C49;
  border: 1px solid #C7CCC7;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease-out, transform 0.15s ease-out;
}
.c-card:hover {
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.c-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #F0F2F1;
}
.c-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-card__body {
  padding: 1rem;
}
@media (min-width: 768px) {
  .c-card__body {
    padding: 1.5rem;
  }
}

.c-card__title {
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.c-card__text {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.6;
  margin: 0 0 0.75rem;
  color: #707470;
}

.c-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  font-weight: 500;
  color: #001102;
  text-decoration: none;
}
.c-card__link:hover, .c-card__link:focus-visible {
  text-decoration: underline;
}

.c-card--compact .c-card__body {
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .c-card--compact .c-card__body {
    padding: 1rem;
  }
}
.c-card--compact .c-card__title {
  font-size: clamp(1rem, 1vw, 1.125rem);
}

.c-card--borderless {
  border: none;
}

.c-card--shadowless {
  box-shadow: none;
}
.c-card--shadowless:hover {
  box-shadow: none;
  transform: none;
}

@media (min-width: 768px) {
  .c-card--horizontal {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
  }
}
.c-card--horizontal .c-card__media {
  aspect-ratio: auto;
}
@media (min-width: 768px) {
  .c-card--horizontal .c-card__media {
    height: 100%;
    min-height: 180px;
  }
}

.c-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em 0.6em;
  border-radius: 9999px;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  font-weight: 700;
  background-color: rgba(0, 17, 2, 0.12);
  color: #001102;
}

.c-form {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .c-form {
    gap: 1.5rem;
  }
}

.c-form__row {
  display: grid;
  gap: 0.5rem;
}

.c-form__label {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
}

.c-form__required {
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
  padding: 0.1em 0.45em;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  font-weight: 700;
  border-radius: 2px;
  background-color: rgba(167, 163, 104, 0.12);
  color: #A7A368;
}

.c-form__control {
  width: 100%;
  min-height: 44px;
  padding: 0.65em 0.9em;
  border-radius: 4px;
  border: 1px solid #C7CCC7;
  background-color: #FCFDFC;
  color: #484C49;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.6;
  transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out, background-color 0.25s ease-out;
}
@media (min-width: 768px) {
  .c-form__control {
    font-size: clamp(1rem, 1vw, 1.125rem);
  }
}
.c-form__control::placeholder {
  color: #707470;
}
.c-form__control:focus-visible {
  outline: none;
  border-color: #001102;
  box-shadow: 0 0 0 3px rgba(0, 17, 2, 0.18);
}
.c-form__control:disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background-color: #F0F2F1;
}

textarea.c-form__control {
  min-height: 10rem;
  resize: vertical;
}

select.c-form__control {
  padding-right: 2.2em;
  background-image: linear-gradient(45deg, transparent 50%, #707470 50%), linear-gradient(135deg, #707470 50%, transparent 50%);
  background-position: calc(100% - 1.2em) 50%, calc(100% - 0.9em) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.c-form__check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.c-form__check-input {
  width: 1.05em;
  height: 1.05em;
  accent-color: #001102;
}

.c-form__check-label {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.6;
}

.c-form__help {
  margin: 0;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  color: #707470;
}

.c-form__error {
  margin: 0;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  color: #dc2626;
}

.c-form__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.c-media {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .c-media {
    grid-template-columns: 1fr 1.6fr;
    align-items: center;
    gap: 1.5rem;
  }
}

.c-media__figure {
  border-radius: 8px;
  overflow: hidden;
  background-color: #F0F2F1;
  aspect-ratio: 4/3;
}
.c-media__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-media__body {
  display: grid;
  gap: 0.5rem;
}

.c-media__title {
  margin: 0;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: #484C49;
}

.c-media__text {
  margin: 0;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.6;
  color: #707470;
}

@media (min-width: 768px) {
  .c-media--reverse {
    grid-template-columns: 1.6fr 1fr;
  }
  .c-media--reverse .c-media__figure {
    order: 2;
  }
  .c-media--reverse .c-media__body {
    order: 1;
  }
}

.c-media--wide .c-media__figure {
  aspect-ratio: 16/9;
}

.c-media--compact {
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .c-media--compact {
    gap: 0.75rem;
  }
}
.c-media--compact .c-media__title {
  font-size: clamp(1rem, 1vw, 1.125rem);
}

.c-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.c-nav--horizontal {
  flex-direction: row;
}

.c-nav--vertical {
  flex-direction: column;
  align-items: flex-start;
}

.c-nav--gap-sm {
  gap: 0.5rem;
}

.c-nav--gap-md {
  gap: 0.75rem;
}

.c-nav--gap-lg {
  gap: 1rem;
}

.c-nav--center {
  justify-content: center;
}

.c-nav--right {
  justify-content: flex-end;
}

.c-nav__item {
  margin: 0;
  padding: 0;
}

.c-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.5rem;
  border-radius: 2px;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  color: #484C49;
  text-decoration: none;
  transition: color 0.25s ease-out, background-color 0.25s ease-out;
}
.c-nav__link:hover, .c-nav__link:focus-visible {
  color: #001102;
  background-color: rgba(0, 17, 2, 0.06);
  outline: none;
}

.c-nav__item.is-current > .c-nav__link,
.c-nav__link[aria-current=page] {
  color: #001102;
  font-weight: 700;
}

.c-nav--underline .c-nav__link {
  background: none;
  border-radius: 0;
  padding: 0.5rem 0;
  position: relative;
}
.c-nav--underline .c-nav__link:hover, .c-nav--underline .c-nav__link:focus-visible {
  background: none;
}
.c-nav--underline .c-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #001102;
  transition: width 0.25s ease-out;
}
.c-nav--underline .c-nav__link:hover::after, .c-nav--underline .c-nav__link:focus-visible::after {
  width: 100%;
}
.c-nav--underline .c-nav__item.is-current > .c-nav__link::after,
.c-nav--underline .c-nav__link[aria-current=page]::after {
  width: 100%;
}

.c-section-title-1 {
  display: inline-block;
  margin: 0 0 0.25rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #001102;
}
@media (max-width: 1023px) {
  .c-section-title-1 {
    text-align: center;
    display: block;
  }
}

.c-section-title-1-en {
  display: block;
  margin-top: 0.5rem;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #707470;
  margin-bottom: 4rem;
}
@media (max-width: 1023px) {
  .c-section-title-1-en {
    text-align: center;
    display: block;
  }
}

.c-section-title {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  color: #484C49;
}

.c-section-title__sub {
  margin: 0;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #707470;
}

.c-section-title__main {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.c-section-title__lead {
  margin: 0;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.6;
  color: #707470;
  max-width: 60ch;
}

.c-section-title--center {
  text-align: center;
  justify-items: center;
}

.c-section-title--right {
  text-align: right;
  justify-items: end;
}

.c-section-title--bar {
  padding-left: 0.75rem;
  border-left: 4px solid #001102;
}

.c-section-title--underline .c-section-title__main {
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 17, 2, 0.25);
}

.c-section-title--sm {
  margin-bottom: 1rem;
}
.c-section-title--sm .c-section-title__main {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.c-section-title--sm .c-section-title__lead {
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
}

.c-table__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #C7CCC7;
  border-radius: 8px;
  background-color: #FCFDFC;
}

.c-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.6;
  color: #484C49;
  background-color: #FCFDFC;
  border: 0;
}

.c-table th,
.c-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #C7CCC7;
  vertical-align: top;
}

.c-table th {
  font-weight: 700;
  color: #484C49;
  background-color: #F0F2F1;
  white-space: nowrap;
}

.c-table tr:last-child th,
.c-table tr:last-child td {
  border-bottom: 0;
}

.c-table--striped tbody tr:nth-child(even) td {
  background-color: rgba(240, 242, 241, 0.7);
}

.c-table--compact th,
.c-table--compact td {
  padding: 0.5rem 0.75rem;
}

.c-table--small {
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
}

.c-table--center th,
.c-table--center td {
  text-align: center;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .c-table {
    min-width: 0;
  }
}
/* まずコンテナを演出しやすい形に */
[data-media-reveal] {
  overflow: hidden;
}

/* 初期：隠す（ready） */
[data-media-reveal].is-media-ready .is-media-target {
  opacity: 0;
  transform: translateY(18px) scale(var(--pb-media-scale-from, 1.06));
  filter: blur(var(--pb-media-blur-from, 0px));
}

/* 表示：in */
[data-media-reveal].is-media-in .is-media-target {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  transition: opacity var(--pb-media-duration, 700ms) ease var(--pb-media-delay, 0ms), transform var(--pb-media-duration, 700ms) ease var(--pb-media-delay, 0ms), filter var(--pb-media-duration, 700ms) ease var(--pb-media-delay, 0ms);
}

.c-scroll-progress {
  position: fixed;
  left: 0;
  right: 0;
  /* 管理バー・ヘッダーに被らないように上をずらす */
  top: 0;
  height: 4px;
  z-index: 100000; /* admin-bar / header より前に出す */
  pointer-events: none;
  background: rgba(0, 0, 0, 0.08);
}
.c-scroll-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--pb-scroll-progress, 0) * 100%);
  background: red; /* currentColor だと状況によって見えにくいので固定 */
}

/* WP管理バーがあるときのオフセット */
body.admin-bar .c-scroll-progress {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .c-scroll-progress {
    top: 46px;
  }
}
/* レイアウトだけ */
.p-card {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-top: 12px;
  background: #fff;
}

/* stagger：初期（ready） */
[data-stagger].is-stagger-ready .is-stagger-item {
  opacity: 0;
  transform: translateY(14px);
}

/* stagger：開始（in） */
[data-stagger].is-stagger-in .is-stagger-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--pb-stagger-duration, 600ms) ease, transform var(--pb-stagger-duration, 600ms) ease;
  /* ここが“順番”の肝：index × step + delay */
  transition-delay: calc(var(--pb-stagger-index, 0) * var(--pb-stagger-step, 90ms) + var(--pb-stagger-delay, 0ms));
}

/* 見える化（最小） */
[data-marquee] {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-block: 10px;
}

/* 横並びにして流す */
[data-marquee-track] {
  display: inline-flex;
  align-items: center;
  gap: var(--pb-marquee-gap, 24px);
  white-space: nowrap;
  will-change: transform;
  animation: pb-marquee var(--pb-marquee-duration, 12000ms) linear infinite;
}

/* 方向：JSが data-marquee-dir を付ける :contentReference[oaicite:6]{index=6} */
[data-marquee][data-marquee-dir=right] [data-marquee-track] {
  animation-direction: reverse;
}

/* hoverで止める：JSがクラスを付ける :contentReference[oaicite:7]{index=7} */
[data-marquee].is-marquee-pause-hover:hover [data-marquee-track] {
  animation-play-state: paused;
}

/* 流れる距離は「半分」動けば成立（JSが2倍以上に複製しているため） */
@keyframes pb-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* 中身の見える化 */
.p-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

[data-loading] {
  /* ========= 調整用（ここ触ればOK） ========= */
  --pb-loading-bg: #002136;
  /* 中身（ロゴ+スピナー）を先に消す速さ */
  --pb-loading-content-fade: 260ms;
  /* カーテンを動かし始めるまでの待ち（＝中身が消えた後に動かす） */
  --pb-loading-wipe-delay: 260ms;
  /* カーテンの割れスピード（長めにすると「割れてる感」出る） */
  --pb-loading-wipe-duration: 900ms;
  /* カーテン自体のフェード（基本は割れと同じ時間でOK） */
  --pb-loading-wipe-fade: 900ms;
  --pb-loading-logo-w: 140px;
  --pb-loading-seam-overlap: 2px;
  /* ======================================== */
  position: fixed;
  inset: 0;
  z-index: 10000;
  /* z-indexの衝突を確実に防ぐ */
  isolation: isolate;
  /* 中央配置 */
  display: grid;
  place-items: center;
  /* 起動時は即表示（フェードイン不要） */
  opacity: 0;
  pointer-events: none;
  /* ★重要：本体は透明（背景はカーテン擬似要素で作る） */
  background: transparent;
}

/* 起動中：即表示（フェードイン無し） */
body.is-loading-active [data-loading] {
  opacity: 1;
  pointer-events: auto;
}

/* 終了中：最後にオーバーレイ自体を消す（カーテン割れが終わってから） */
body.is-loading-done [data-loading] {
  pointer-events: none;
  opacity: 0;
  /* ほぼ即消しでOK（見せたいのは擬似要素のアニメなので） */
  transition: opacity 1ms linear;
  transition-delay: calc(var(--pb-loading-wipe-delay) + var(--pb-loading-wipe-duration));
}

/* =======================================
   Curtain (左右に割れる + フェードアウト)
   ※必ず中身より“下”に敷く
======================================= */
[data-loading]::before,
[data-loading]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% + var(--pb-loading-seam-overlap));
  background: var(--pb-loading-bg);
  z-index: 0;
  transform: translateX(0);
  opacity: 1;
  will-change: transform, opacity;
  transition: transform var(--pb-loading-wipe-duration) cubic-bezier(0.2, 0.8, 0.2, 1), opacity var(--pb-loading-wipe-fade) ease;
}

[data-loading]::before {
  left: calc(-1 * var(--pb-loading-seam-overlap));
  box-shadow: none;
}

[data-loading]::after {
  right: calc(-1 * var(--pb-loading-seam-overlap));
  box-shadow: none;
}

/* done：中身が消えてから、左右に割れながらフェードアウト */
body.is-loading-done [data-loading]::before,
body.is-loading-done [data-loading]::after {
  transition-delay: var(--pb-loading-wipe-delay);
  opacity: 0;
}

body.is-loading-done [data-loading]::before {
  transform: translateX(-110%);
}

body.is-loading-done [data-loading]::after {
  transform: translateX(110%);
}

/* =======================================
   Center contents (logo + spinner)
======================================= */
.c-loading {
  position: relative;
  z-index: 1; /* カーテンより上に確実に出す */
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 18px 22px;
  opacity: 1;
  transition: opacity var(--pb-loading-content-fade) ease;
}

/* done：先にロゴ/スピナーを消す */
body.is-loading-done .c-loading {
  opacity: 0;
}

/* ロゴ（横幅だけ統一） */
.c-loading__logo {
  width: var(--pb-loading-logo-w);
  max-width: 70vw;
  height: auto;
}

/* スピナー（白系） */
.c-loading__spinner {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 255, 255, 0.9);
  animation: pb-loading-spin 0.9s linear infinite;
}

@keyframes pb-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Skip（開発中のみでOK） */
.c-loading__skip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
}

@keyframes pb-loading-shadow-left {
  to {
    box-shadow: 24px 0 40px rgba(0, 0, 0, 0.35);
  }
}
@keyframes pb-loading-shadow-right {
  to {
    box-shadow: -24px 0 40px rgba(0, 0, 0, 0.35);
  }
}
/* 左右が動き始めて少し離れてから影を出す */
body.is-loading-done [data-loading]::before {
  animation: pb-loading-shadow-left 1ms linear both;
  animation-delay: calc(var(--pb-loading-wipe-delay) + 80ms);
}

body.is-loading-done [data-loading]::after {
  animation: pb-loading-shadow-right 1ms linear both;
  animation-delay: calc(var(--pb-loading-wipe-delay) + 80ms);
}

.c-hamburger {
  --pb-hamburger-size: 48px;
  --pb-hamburger-pad: 12px;
  --pb-hamburger-line: 2px;
  --pb-hamburger-duration: 260ms;
  --pb-hamburger-ease: cubic-bezier(0.55, 0, 1, 1);
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10001;
  width: var(--pb-hamburger-size);
  height: var(--pb-hamburger-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-color: transparent;
  color: #001102;
  padding: 0;
  min-height: 0;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.c-hamburger span {
  position: absolute;
  left: var(--pb-hamburger-pad);
  right: var(--pb-hamburger-pad);
  height: var(--pb-hamburger-line);
  background: currentColor;
  border-radius: 999px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--pb-hamburger-duration) var(--pb-hamburger-ease), opacity var(--pb-hamburger-duration) var(--pb-hamburger-ease);
}
.c-hamburger span:nth-child(1) {
  transform: translateY(calc(-50% - 8px));
}
.c-hamburger span:nth-child(2) {
  transform: translateY(-50%);
}
.c-hamburger span:nth-child(3) {
  transform: translateY(calc(-50% + 8px));
}

.c-hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.c-hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.2);
}
.c-hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

.c-hamburger:hover,
.c-hamburger:active {
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  transform: none;
}

body.is-drawer-lock .c-hamburger span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
body.is-drawer-lock .c-hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.2);
}
body.is-drawer-lock .c-hamburger span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

body.is-drawer-lock .c-hamburger {
  color: #002136;
}

body.is-drawer-lock {
  overflow: hidden;
}

.c-drawer {
  /* JSが読む */
  --pb-drawer-duration: 420ms;
  --pb-drawer-ease: cubic-bezier(0.55, 0, 1, 1); /* ゆっくり→速い */
  --pb-drawer-items-delay: 120ms;
  --pb-drawer-stagger: 90ms;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.c-drawer[hidden] {
  display: none !important;
}

.c-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity var(--pb-drawer-duration) var(--pb-drawer-ease);
}

.c-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: #FCFDFC;
  box-shadow: -12px 0 28px rgba(0, 0, 0, 0.25);
  transform: translateX(12%);
  opacity: 0;
  transition: transform var(--pb-drawer-duration) var(--pb-drawer-ease), opacity var(--pb-drawer-duration) var(--pb-drawer-ease);
  /* ×(固定ボタン)の下にゆとりある余白 */
  padding: calc(var(--pb-header-h, 64px) + 64px) clamp(24px, 5vw, 48px) clamp(24px, 4vh, 48px);
  overflow: auto;
}

/* open */
.c-drawer.is-drawer-panel-open .c-drawer__backdrop {
  opacity: 1;
}
.c-drawer.is-drawer-panel-open .c-drawer__panel {
  transform: translateX(0);
  opacity: 1;
}

/* colose */
.c-drawer__close {
  display: none;
}

/* =========================
   ★ここが今回の修正ポイント
   メニュー（ul）を「内容幅」にして、
   nav側で左右中央に配置する
   ========================= */
/* nav（メニュー全体）を中央寄せの土台に */
.c-drawer .l-global-nav--drawer {
  display: flex;
  justify-content: center; /* ulをパネル中央へ */
}

/* ul自体を “縮む” 形にする（=中央寄せが効く） */
.c-drawer .l-global-nav--drawer .c-global-nav__list {
  display: inline-grid; /* ★ここ重要：内容幅になる */
  gap: clamp(24px, 4vh, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
  /* テキストも中央寄せ（好みで left にしてもOK） */
  text-align: center;
}

/* Drawer内 リンク文字サイズ */
.c-drawer .l-global-nav--drawer .c-global-nav__list a {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* a の見た目（Drawer内は下線なし） */
.c-drawer .l-global-nav--drawer .c-global-nav__list a {
  display: inline-block;
  text-decoration: none;
}

/* PCナビ用の下線（::after）が当たってしまう場合の保険 */
.c-drawer .l-global-nav--drawer .c-global-nav__list a::after {
  display: none !important;
  content: none !important;
}

/* ここが “パネル後に上から順表示＋フェード” */
@keyframes pb-drawer-item-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-drawer .l-global-nav--drawer .c-global-nav__list > li {
  opacity: 0;
  transform: translateY(-10px);
  will-change: transform, opacity;
}

.c-drawer.is-drawer-panel-open .l-global-nav--drawer .c-global-nav__list > li {
  animation: pb-drawer-item-in 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--pb-drawer-item-delay, 0ms);
}

.c-articlePdf {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(199, 204, 199, 0.55);
}

.c-articlePdf__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 17, 2, 0.45);
  color: #001102;
  text-decoration: none;
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.c-articlePdf__btn:hover {
  color: #A7A368;
  border-color: rgba(167, 163, 104, 0.6);
  background-color: rgba(167, 163, 104, 0.06);
}

@keyframes footer-illust-sway {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
@keyframes footer-bird-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.l-footer {
  background: linear-gradient(to bottom, rgba(232, 234, 232, 0) clamp(100px, 10.42vw, 200px), #E8EAE8 clamp(100px, 10.42vw, 200px));
  overflow: hidden;
  position: relative;
}

.l-footer__inner {
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
}

.l-footer__top {
  --footer-illust-width: clamp(590px, 54.948vw, 1055px);
  --footer-contact-width: clamp(360px, 30.104vw, 578px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding-top: clamp(40px, 4vw, 80px);
  padding-bottom: clamp(60px, 6.25vw, 120px);
}

.l-footer__mainIllust {
  flex: 0 0 var(--footer-illust-width);
  width: var(--footer-illust-width);
  margin-left: 0;
  align-self: flex-end;
  position: relative;
  left: 0;
  transform-origin: center center;
}
@media (prefers-reduced-motion: no-preference) {
  .l-footer__mainIllust {
    animation: footer-illust-sway 24s ease-in-out infinite;
  }
}
.l-footer__mainIllust img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1921px) {
  .l-footer__mainIllust {
    left: clamp(-650px, (100vw - 1920px) * -0.3385417, 0px);
  }
}
.l-footer__contact {
  flex: 0 0 var(--footer-contact-width);
  width: var(--footer-contact-width);
  min-width: 0;
  margin-left: calc(100% - var(--footer-illust-width) - var(--footer-contact-width));
  padding-top: clamp(60px, 8vw, 160px);
  margin-top: clamp(60px, 6.25vw, 120px);
}

.l-footer__contactTitle {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #001102;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0 0 clamp(8px, 0.6vw, 12px);
}

.l-footer__contactLead {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 500;
  color: #484C49;
  margin: 0 0 clamp(24px, 2.5vw, 48px);
}

.l-footer__mailCard {
  position: relative;
  background-color: #FCFDFC;
  border-radius: clamp(16px, 2vw, 32px);
  padding: clamp(48px, 5vw, 80px) clamp(24px, 3vw, 56px) clamp(32px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.l-footer__mailBird {
  position: absolute;
  top: 0;
  left: calc(50% - clamp(40px, 4.43vw, 85px));
  transform: translate(-50%, -60%);
  width: clamp(80px, 9vw, 172px);
  height: auto;
}
.l-footer__mailBird img {
  display: block;
  width: 100%;
  height: auto;
}
@media (prefers-reduced-motion: no-preference) {
  .l-footer__mailBird {
    animation: footer-bird-float 3.2s ease-in-out infinite;
  }
}

.l-footer__mailLabel {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #9EA19E;
  margin: 0 0 clamp(4px, 0.3vw, 6px);
  text-align: center;
}

.l-footer__mailBottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(40px, 4.17vw, 80px);
}

.l-footer__mailTitle {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: #001102;
  text-align: center;
  margin: 0 0 clamp(20px, 2vw, 36px);
  line-height: 1.3;
}

.l-footer__mailButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 14vw, 200px);
  height: clamp(52px, 4.5vw, 72px);
  border-radius: 9999px;
  border: 2px solid #001102;
  background-color: #FCFDFC;
  text-decoration: none;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.l-footer__mailButton::before {
  content: "";
  display: block;
  width: clamp(36px, 3.5vw, 54px);
  height: 2px;
  background-color: #A72024;
  transition: transform 0.4s ease;
}
.l-footer__mailButton::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #A72024;
  margin-left: -1px;
  transition: transform 0.4s ease;
}
.l-footer__mailButton:hover, .l-footer__mailButton:focus-visible {
  background-color: #EFF8F1;
  border-color: #366750;
}
.l-footer__mailButton:hover::before, .l-footer__mailButton:hover::after, .l-footer__mailButton:focus-visible::before, .l-footer__mailButton:focus-visible::after {
  transform: translateX(10px);
}
.l-footer__mailButton:active {
  background-color: #EFF8F1;
}

.l-footer__telephone {
  position: relative;
  background-color: #FCFDFC;
  border-radius: clamp(16px, 2vw, 32px);
  padding: clamp(24px, 2.5vw, 40px) clamp(24px, 3vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
  min-height: clamp(100px, 9.4vw, 180px);
  overflow: visible;
  margin-bottom: clamp(80px, 8.75vw, 160px);
}

.l-footer__telephoneDecos {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: -4px;
}

.l-footer__telephoneTrees {
  width: clamp(80px, 9.5vw, 181px);
  height: auto;
  display: block;
  transform: translateY(clamp(26px, 2.86vw, 55px));
}

.l-footer__telephoneDog {
  width: clamp(50px, 5.7vw, 110px);
  height: auto;
  display: block;
  margin-left: clamp(20px, 2.08vw, 40px);
  transform: translateY(clamp(31px, 3.13vw, 60px));
}

.l-footer__telephoneBody {
  flex: 1 1 0;
  min-width: 0;
}

.l-footer__telephoneMain {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding-top: 3.1em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.l-footer__telephoneLabel {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #9EA19E;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.l-footer__telephoneNumber {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.8vw, 16px);
}
.l-footer__telephoneNumber a,
.l-footer__telephoneNumber .l-footer__telephoneNumberText {
  font-size: clamp(2rem, 4.2vw, 5rem);
  font-weight: 700;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: #001102;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
}
.l-footer__telephoneNumber a:hover {
  color: #366750;
}

.l-footer__telephoneNumberText {
  display: inline-block;
}

.l-footer__telephoneNumberLink {
  display: none;
}

@media (max-width: 1040px) {
  .l-footer__telephoneNumberText {
    display: none;
  }
  .l-footer__telephoneNumberLink {
    display: inline-block;
  }
}
.l-footer__telephoneIcon {
  display: block;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.l-footer__telephoneHoliday {
  font-size: clamp(1.25rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: #484C49;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  right: clamp(80px, 8vw, 150px);
  bottom: calc(50% - clamp(1rem, 2.1vw, 2.5rem));
  margin: 0;
}

.l-footer__bottom {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 120px);
  padding-bottom: clamp(32px, 4vw, 80px);
  position: relative;
}

.l-footer__company {
  flex: 0 0 auto;
  width: clamp(280px, 27vw, 400px);
}

.l-footer__logo {
  display: block;
  width: 142px;
  margin-inline: auto;
  margin-bottom: clamp(12px, 1.2vw, 20px);
  text-decoration: none;
}
.l-footer__logo img {
  display: block;
  width: 142px;
  height: auto;
}

.l-footer__companyName {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: #001102;
  text-align: center;
  margin: 0 0 clamp(12px, 1.2vw, 20px);
}

.l-footer__address {
  font-size: clamp(1rem, 1vw, 1.125rem);
  color: #484C49;
  line-height: 1.8;
}
.l-footer__address p {
  margin: 0;
}

.l-footer__addressPostal {
  display: flex;
  align-items: baseline;
  gap: 1em;
}
.l-footer__addressPostal .l-footer__mapLink {
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  color: #366750;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.l-footer__addressPostal .l-footer__mapLink:hover {
  text-decoration: none;
}

.l-footer__telFax {
  margin-top: 0.2em;
  display: flex;
  gap: 1.5em;
}

.l-footer__divider {
  border: none;
  border-top: 1px dashed #C7CCC7;
  margin: clamp(12px, 1.2vw, 20px) 0;
}

.l-footer__info {
  font-size: clamp(1rem, 1vw, 1.125rem);
  color: #484C49;
}
.l-footer__info dl {
  margin: 0;
  display: grid;
  grid-template-columns: 4em 1fr;
  gap: 0.3em 1em;
  line-height: 1.6;
}
.l-footer__info dt {
  font-weight: 600;
  color: #001102;
}
.l-footer__info dd {
  margin: 0;
}

.l-footer__group {
  font-size: clamp(1rem, 1vw, 1.125rem);
  color: #484C49;
}
.l-footer__group .l-footer__groupTitle {
  font-weight: 600;
  color: #001102;
  margin-bottom: 0.4em;
}
.l-footer__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 1.5em;
  row-gap: 0.4em;
}
.l-footer__group li {
  margin: 0;
}
.l-footer__group a {
  color: #366750;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.l-footer__group a:hover {
  text-decoration: none;
}

.l-footer__instagram {
  font-size: clamp(1rem, 1vw, 1.125rem);
  color: #484C49;
  position: absolute;
  bottom: 15px;
  left: calc((100vw - min(1440px, 100vw - 120px)) / 2);
}
.l-footer__instagram a {
  color: inherit;
  text-decoration: none;
}
.l-footer__instagram a:hover {
  color: #366750;
}

.l-footer__right {
  --footer-menu-width: clamp(500px, 35vw, 670px);
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  padding-top: clamp(55px, 5.73vw, 110px);
}

.l-footer__contactButton {
  align-self: flex-end;
  margin-bottom: clamp(20px, 2vw, 36px);
  padding-right: clamp(72px, 4.6vw, 88px);
  transform: translateY(clamp(28px, 2.86vw, 55px));
}

.l-footer__menu {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 16px);
  width: var(--footer-menu-width);
  margin-bottom: clamp(4px, 0.4vw, 8px);
  align-self: flex-end;
  transform: translateY(clamp(28px, 2.86vw, 55px));
}

.l-footer__menuLabel {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 700;
  color: #366750;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.l-footer__nav {
  width: var(--footer-menu-width);
  align-self: flex-end;
  margin-bottom: clamp(8px, 1.04vw, 20px);
  transform: translateY(clamp(28px, 2.86vw, 55px));
}

.l-footer__navList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.l-footer__navList li {
  margin: 0;
  display: flex;
  align-items: center;
}
.l-footer__navList li:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background-color: #C7CCC7;
  margin: 0 clamp(8px, 1vw, 16px);
}
.l-footer__navList a {
  font-size: clamp(1.25rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: #484C49;
  text-decoration: none;
  transition: color 0.25s ease-out;
}
.l-footer__navList a:hover {
  color: #366750;
}

.l-footer__building {
  align-self: flex-end;
  width: clamp(480px, 57.3vw, 1100px);
  margin-right: calc((100vw - min(1440px, 100vw - 120px)) / -2 - 60px);
  margin-top: clamp(8px, 1vw, 20px);
  transform: translateY(clamp(45px, 4.69vw, 90px));
}
.l-footer__building img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1921px) {
  .l-footer__telephoneHoliday {
    right: clamp(16px, 1.8vw, 34px);
  }
  .l-footer__telephoneTrees {
    width: 160px;
  }
  .l-footer__telephoneDog {
    width: 97px;
  }
}
@media (max-width: 1040px) {
  .l-footer__inner {
    width: calc(100vw - 40px);
  }
  .l-footer {
    background: #E8EAE8;
  }
  .l-footer__top {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .l-footer__mainIllust {
    flex: 0 1 auto;
    width: min(100%, 480px);
    margin-left: auto;
    margin-right: auto;
  }
  .l-footer__contact {
    flex: 0 1 auto;
    padding-top: 0;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }
  .l-footer__mailCard {
    max-width: 100%;
  }
  .l-footer__telephoneDecos {
    display: none;
  }
  .l-footer__telephoneBody {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
  }
  .l-footer__telephoneMain {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
  .l-footer__telephoneHoliday {
    position: static;
    margin-top: 8px;
    white-space: normal;
    text-align: center;
  }
  .l-footer__telephoneNumber a {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .l-footer__bottom {
    flex-direction: column;
    gap: 32px;
  }
  .l-footer__company {
    width: 100%;
  }
  .l-footer__right {
    width: 100%;
    align-items: flex-start;
    padding-top: 0;
  }
  .l-footer__menu,
  .l-footer__nav {
    width: 100%;
    align-self: flex-start;
  }
  .l-footer__contactButton {
    padding-right: 0;
    align-self: flex-start;
  }
  .l-footer__building {
    width: min(100%, 480px);
    margin-right: 0;
    align-self: flex-end;
  }
  .l-footer__info dl {
    grid-template-columns: 5em 1fr;
  }
  .l-footer__instagram {
    position: static;
    margin-top: 16px;
  }
}
/* =======================================
   p-hero（背景スライダー）
======================================= */
.p-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.p-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-hero__slides {
  position: absolute;
  inset: 0;
}

.p-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.p-hero__slide.is-active {
  opacity: 1;
}

.p-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 4000ms linear;
  will-change: transform;
}

.p-hero__slide.is-active .p-hero__img {
  transform: scale(1);
}

/* 色味：被せ（テキストより下） */
.p-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10, 30, 45, 0.35) 0%, rgba(10, 30, 45, 0.45) 55%, rgba(10, 30, 45, 0.65) 100%);
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  .p-hero__slide {
    transition: none;
  }
  .p-hero__img {
    transition: none;
    transform: none;
  }
}
/* 高さが短い環境（任意） */
@media (max-height: 650px) {
  .p-hero {
    min-height: 680px;
  }
}
/* =======================================
   p-heroTop（カンプ側の文字・CTA配置）
======================================= */
.p-heroTop__inner {
  position: relative;
  z-index: 2;
  /* ヒーロー領域の高さを確保（ヘッダー分を引く） */
  min-height: calc(100svh - var(--pb-header-h, 0px));
  /* 上は最低限だけ（ヘッダー被り回避） */
  padding-top: calc(var(--pb-header-h, 0px) + clamp(20px, 3vh, 60px));
  /* ★下基準の肝：ヒーロー下からの余白（普段は200px、低い画面では縮む） */
  --pb-hero-bottom-gap: clamp(40px, 10vh, 200px);
  padding-bottom: var(--pb-hero-bottom-gap);
  /* 横の余白は今のままでOK（超ワイド対策） */
  padding-inline: clamp(32px, 5vw, 140px);
  /* ★PCでCTAを「少し上」に持ち上げる量（画面に応じて可変） */
  --pb-hero-cta-lift: clamp(16px, 3.2vh, 64px);
  /* 中身を下へ押し付けられるように縦レイアウトにする */
  display: flex;
  flex-direction: column;
}

.p-heroTop__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(18px, 2vw, 44px);
  /* ★PCは「下揃え」＝Aのボトム基準が安定する */
  align-items: end;
  /* ★これで赤枠全体がヒーロー下へ“押し付け”される */
  margin-top: auto;
}

/* 左：テキストブロック */
.p-heroTop__left {
  min-width: 0;
}

.p-heroTop__label {
  display: inline-block;
  padding: clamp(6px, 0.6vw, 12px) clamp(10px, 1vw, 18px);
  border-radius: 2px;
  background: rgba(10, 30, 45, 0.85);
  color: #fff;
  /* ★スケール */
  font-size: clamp(14px, 0.9vw, 22px);
  letter-spacing: 0.02em;
}

.p-heroTop__brand {
  margin-top: 18px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: clamp(34px, 4vw, 52px);
}

.p-heroTop__catch {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-heroTop__catchLine {
  display: inline-block;
  width: fit-content;
  padding: clamp(2px, 0.2vw, 5px) clamp(9px, 0.8vw, 17px);
  border-radius: 6px;
  background: rgba(10, 30, 45, 0.85);
  color: #fff;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  /* ★ここが「行間がズレる」原因だったので撤去（gapで揃える） */
  margin: 0;
  /* ★スケール（ここが「1.5〜2倍感」の主役） */
  font-size: clamp(26px, 2.2vw, 56px);
  line-height: 1.25;
}

.p-heroTop__sub {
  margin-top: clamp(14px, 1.2vw, 26px);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  /* ★スケール */
  font-size: clamp(26px, 2vw, 56px);
}

.p-heroTop__pills {
  margin-top: clamp(18px, 1.8vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.2vw, 18px);
}

.p-heroTop__pill {
  display: inline-flex;
  align-items: center;
  padding: clamp(12px, 1vw, 18px) clamp(18px, 1.4vw, 28px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 30, 45, 0.25);
  line-height: 1.2;
  white-space: nowrap;
  /* ★スケール */
  font-size: clamp(18px, 1.2vw, 24px);
}

/* 右：CTA */
.p-heroTop__cta {
  display: grid;
  gap: clamp(14px, 1.4vw, 26px);
  justify-items: end;
  /* ★Aのボトム付近に来るように「下揃え」+「持ち上げ」 */
  align-self: end;
  transform: translateY(calc(-1 * var(--pb-hero-cta-lift)));
}

.p-heroTop__cta .c-button {
  /* ★横幅も“でかく” */
  min-width: clamp(260px, 18vw, 520px);
  /* ★高さ・余白も“でかく” */
  padding: clamp(14px, 1.1vw, 24px) clamp(18px, 1.3vw, 28px);
  border-radius: 6px;
  font-weight: 700;
  /* ★文字も“でかく” */
  font-size: clamp(16px, 1vw, 22px);
}

/* レスポンシブ：右CTAを下へ */
@media (max-width: 960px) {
  .p-heroTop__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-content: start;
    /* ボトム揃え・持ち上げが不要なので戻す */
    align-items: start;
  }
  .p-heroTop__cta {
    justify-items: start;
    transform: none;
  }
  .p-heroTop__cta .c-button {
    min-width: 220px;
  }
}
@media (max-width: 560px) {
  .p-heroTop__pills {
    gap: 10px;
  }
  .p-heroTop__pill {
    white-space: normal;
    line-height: 1.35;
  }
}
/* =======================================
   A案：スマホ時ヒーロー体裁（< md）
   ・キャッチは3段、濃紺の帯は消す
   ・「現場知×専門知×判断軸」は中央
   ・3つのピルはスマホ非表示
   ・薄い紺の背景パネルは左右フルブリード
======================================= */
@media (max-width: 767px) {
  .p-hero {
    min-height: 640px;
  }
  .p-heroTop__inner {
    /* ④ パネルを左右フル幅にしたいので、外側の左右paddingは0 */
    padding-inline: 0;
    padding-top: calc(var(--pb-header-h, 0px) + 14px);
    --pb-hero-bottom-gap: clamp(18px, 6vh, 48px);
    padding-bottom: var(--pb-hero-bottom-gap);
  }
  .p-heroTop__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    /* ④ 薄い紺パネルを左右フルブリード */
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    /* 中身の余白はここで確保 */
    padding: 18px 16px 16px;
  }
  .p-heroTop__catch {
    margin-top: 0;
    gap: 8px;
  }
  /* ① キャッチの濃い紺色を消して、3段を同じ行間で統一 */
  .p-heroTop__catchLine {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.25;
    letter-spacing: 0.01em;
    /* gapで揃えるので余白はゼロに固定 */
    margin: 0;
    /* 背景帯を消すので可読性だけ確保 */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  }
  /* ② サブコピーは中央に */
  .p-heroTop__sub {
    margin-top: 12px;
    text-align: center;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    font-size: clamp(18px, 5.6vw, 26px);
    letter-spacing: 0.03em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    /* パネルはそのまま（左右いっぱいにするので角は消す） */
    border-radius: 0;
    background: rgba(10, 30, 45, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  /* ③ ピルはスマホ非表示 */
  .p-heroTop__pills {
    display: none;
  }
  /* CTA：スマホは全幅ボタン */
  .p-heroTop__cta {
    margin-top: 10px;
    justify-items: stretch;
    gap: 10px;
    transform: none;
  }
  .p-heroTop__cta .c-button {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-size: clamp(15px, 4.6vw, 18px);
    border-radius: 10px;
  }
}
.p-heroTop__catch2A,
.p-heroTop__catch2B {
  display: inline;
}

@media (max-width: 767px) {
  .p-heroTop__catch2B {
    display: block;
  }
}
.javascript-textdemo {
  display: flex;
  flex-direction: column;
}
.javascript-textdemo h3 {
  margin: 0 !important;
  padding: 0 !important;
}

/* -----------------------------------------------
   FVメインイラスト：フッターと同系統の左右スイング
----------------------------------------------- */
@keyframes fv-top-illust-sway {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
/* =======================================
   p-fvTop（創和ネクスト トップ FV）

   レイアウト設計: docs/SOUWA_LAYOUT_RULES.md 参照
   - FVステージは justify-content:center で
     4K時も左寄りにならないよう中央配置
   - illustration: clamp(600px, 64vw, 1280px)
   - content: max-width 680px / グリッドで
     キャッチ右・ロゴ情報左下に配置
======================================= */
.p-fvTop {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100vh;
  background-color: #FCFDFC;
  overflow-x: hidden;
}

.p-fvTop__container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100svh;
  min-height: 100vh;
  padding-right: calc(64px + clamp(16px, 1.6vw, 32px));
}

/* 左：メインイラスト（ウィンドウ枠）
   仕組み:
   1. --fv-illust-img-width = 実画像の目標幅（clamp で流体）
   2. .p-fvTop__illust（外枠）はそれより狭いウィンドウ幅を持ち、overflow:hidden でクリップ
   3. .p-fvTop__illustImg は --fv-illust-img-width の固定幅で外枠をはみ出す
      max-width: none で img の全体規則を上書き／flex-shrink:0 で縮まない
   4. justify-content:flex-end で画像を右寄せ → 右側は見え、左側が隠れる
   ---
   クリップ量の制御（CSS only）
   Phase 1: ~2100px+    → ウィンドウ ≥ 画像 → クリップなし（全体が見える）
   Phase 2: ~1319-2100px → calc(100vw - 607px) で段階的にクリップが増加
              1920px: 左約5%クリップ / 1600px: 左約14%クリップ
   Phase 3: ~1024-1319px → 54vw（= 画像の75%幅）で左25%クリップ維持のまま縮小
   横スクロールは .p-fvTop の overflow-x: hidden が防ぐ
*/
.p-fvTop__illust {
  --fv-illust-img-width: clamp(680px, 72vw, 1440px);
  flex: 0 0 auto;
  width: min(var(--fv-illust-img-width), max(100vw - 607px, 54vw, 510px));
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(32px, 4vh, 64px);
}

.p-fvTop__illustImg {
  display: block;
  width: var(--fv-illust-img-width);
  max-width: none;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 1040px) {
  .p-fvTop__illustImg {
    transform-origin: center center;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-fvTop__illustImg {
    animation: none;
  }
}
/* 右：テキストエリア（単列グリッド：キャッチ上・情報下、右端で揃える）
   - 全幅で単列にして、catch を margin-left:auto で右寄せ
   - 1920px 以上・未満で右端の揃いが変わらないよう統一
*/
.p-fvTop__content {
  flex: 1;
  min-width: 0;
  max-width: 750px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-content: start;
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: clamp(40px, 6vh, 72px);
  padding-left: clamp(16px, 1.8vw, 32px);
  row-gap: clamp(16px, 2.5vh, 32px);
  --fv-catch-shift-y: clamp(60px, 7vh, 96px);
  --fv-info-shift-x: clamp(48px, 4vw, 88px);
  --fv-info-shift-y: clamp(-52px, -4.5vh, -32px);
}

/* キャッチコピーブロック：行1・右端寄せ */
.p-fvTop__catch {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-left: auto;
  padding-right: clamp(20px, 2.5vw, 40px);
  transform: translateY(var(--fv-catch-shift-y));
}

/* 縦組みキャッチコピー本体 */
.p-fvTop__catchText {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 2.6vw, 3.25rem);
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: #001102;
}

/* ロゴ・会社名・リード文：行2・上揃え */
.p-fvTop__info {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  transform: translate(var(--fv-info-shift-x, 0), var(--fv-info-shift-y));
}

@media (min-width: 1040px) {
  .p-fvTop__info {
    transform: translate(var(--fv-info-shift-x, 0), calc(var(--fv-info-shift-y) + 60px));
  }
}
.p-fvTop__logoLink {
  display: inline-block;
  line-height: 0;
}
.p-fvTop__logoLink:hover {
  opacity: 0.8;
  transition: opacity 0.25s ease-out;
}

.p-fvTop__logoImg {
  display: block;
  width: clamp(90px, 9vw, 150px);
  height: auto;
}

.p-fvTop__companyName {
  margin-top: clamp(8px, 0.8vw, 14px);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.7vw, 2.125rem);
  color: #001102;
  letter-spacing: 0.1em;
}

.p-fvTop__lead {
  margin-top: clamp(10px, 1vw, 16px);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  line-height: 1.9;
  color: #484C49;
  letter-spacing: 0.04em;
}

/* -----------------------------------------------
   右サイドバー
   - position: absolute でFV内に配置（fixedにしない）
   - スクロールでFVと一緒に流れる
   - 右端から 16〜32px の余白
   - サイドバー自体に背景色なし（各ボタンが個別に緑）
----------------------------------------------- */
.p-fvSidebar {
  position: absolute;
  top: 0;
  right: clamp(16px, 1.6vw, 32px);
  bottom: 0;
  z-index: 10;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 92px;
  padding-bottom: clamp(16px, 3vh, 32px);
  gap: clamp(8px, 0.9vh, 12px);
}

/* 問/採用情報 ボタン：緑背景・角丸・横4:縦5 */
.p-fvSidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 0;
  background-color: #366750;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.25s ease-out;
}
.p-fvSidebar__btn:hover {
  background-color: rgb(43.4751592357, 82.9248407643, 64.4076433121);
}

.p-fvSidebar__icon {
  display: block;
  width: clamp(30px, 2.2vw, 38px);
  height: auto;
}

.p-fvSidebar__recruitText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12em;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.05vw, 1.0625rem);
  line-height: 1.18;
  color: #FCFDFC;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (min-width: 1921px) {
  body.front-page .p-fvSidebar__btn,
  body.home .p-fvSidebar__btn {
    position: fixed;
    right: clamp(16px, 1.6vw, 32px);
    z-index: 11;
    width: 64px;
    height: calc(64px * 1.25);
  }
  body.front-page .p-fvSidebar__btn--contact,
  body.home .p-fvSidebar__btn--contact {
    top: calc(16px + 64px + clamp(8px, 0.9vh, 12px));
  }
  body.front-page .p-fvSidebar__btn--recruit,
  body.home .p-fvSidebar__btn--recruit {
    top: calc(16px + 64px + clamp(8px, 0.9vh, 12px) + 64px * 1.25 + clamp(8px, 0.9vh, 12px));
  }
}
.p-fvSidebar__kanji {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.1vw, 1.0625rem);
  color: #FCFDFC;
  letter-spacing: 0.05em;
}

/* スクロール装飾エリア：縦バー → SCROLL → 二本線
   - position:absolute で .p-fvSidebar 内に配置（レイアウトフロー外）
   - top: calc(100svh - 余白) で「初期画面下端より少し上」を基準にする
   - transform: translate(-50%, -100%) でSCROLL要素自身の高さ分だけ上へ戻す
   - 結果として初期表示時に画面右下へ収まる
   - position:absolute（fixed ではない）のでスクロールでFVと一緒に上へ流れる
   - FV高さや次セクションに影響しない
*/
.p-fvSidebar__scrollArea {
  position: absolute;
  top: calc(100vh - clamp(24px, 4vh, 48px));
  top: calc(100svh - clamp(24px, 4vh, 48px));
  left: 50%;
  transform: translate(-50%, -100%);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* 縦装飾バー（白背景上なので緑色） */
.p-fvSidebar__bar {
  display: block;
  width: 1px;
  height: clamp(48px, 7vh, 100px);
  background-color: #366750;
  opacity: 0.45;
  margin-bottom: 4px;
}

/* SCROLL テキスト（縦組み） */
.p-fvSidebar__scrollLabel {
  display: block;
  writing-mode: vertical-rl;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #707470;
  margin-block: 4px;
}

/* 二本線コンテナ */
.p-fvSidebar__scrollLines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

/* 長い線 */
.p-fvSidebar__scrollLine--a {
  display: block;
  width: 1px;
  height: clamp(20px, 2.8vh, 32px);
  background-color: #366750;
  opacity: 0.6;
}

/* 短い線 */
.p-fvSidebar__scrollLine--b {
  display: block;
  width: 1px;
  height: clamp(10px, 1.4vh, 16px);
  background-color: #366750;
  opacity: 0.35;
}

/* -----------------------------------------------
   フロントページ：グローバルナビ文字色
   - 白背景FVなので .l-header--transparent の white を上書き
   - body.front-page + body.home の両方を指定（WordPress body_class に合わせる）
----------------------------------------------- */
body.front-page .l-header--transparent,
body.home .l-header--transparent {
  color: #001102;
}

body.front-page .l-global-nav--pc .c-global-nav__item > a,
body.home .l-global-nav--pc .c-global-nav__item > a {
  color: #484C49;
  opacity: 1;
}

body.front-page .l-global-nav--pc .c-global-nav__item > a:hover,
body.home .l-global-nav--pc .c-global-nav__item > a:hover,
body.front-page .l-global-nav--pc .c-global-nav__item > a:focus-visible,
body.home .l-global-nav--pc .c-global-nav__item > a:focus-visible {
  color: #366750;
  opacity: 1;
}

@media (min-width: 1040px) {
  body.front-page .c-global-nav__list--pc,
  body.home .c-global-nav__list--pc {
    gap: clamp(29px, 2.16vw, 45px);
  }
}
/* -----------------------------------------------
   フロントページ：ハンバーガーボタン
   - 実体の .c-hamburger をグリーン正方形ボタンに
   - 3本線 → 2本線（span:nth-child(2) を hidden）
   - サイドバー buttons と右端を揃える
   - open 時（aria-expanded="true"）は2本線が × に変形
----------------------------------------------- */
body.front-page .c-hamburger,
body.home .c-hamburger {
  top: 16px;
  right: clamp(16px, 1.6vw, 32px);
  width: 64px;
  height: 48px;
  background-color: #366750;
  border-radius: 8px;
  color: #FCFDFC;
}
body.front-page .c-hamburger span:nth-child(2),
body.home .c-hamburger span:nth-child(2) {
  display: none;
}
body.front-page .c-hamburger span:nth-child(1),
body.home .c-hamburger span:nth-child(1) {
  transform: translateY(calc(-50% - 5px));
}
body.front-page .c-hamburger span:nth-child(3),
body.home .c-hamburger span:nth-child(3) {
  transform: translateY(calc(-50% + 5px));
}
body.front-page .c-hamburger:hover,
body.home .c-hamburger:hover {
  background-color: rgb(43.4751592357, 82.9248407643, 64.4076433121);
}

@media (min-width: 1040px) {
  body.front-page .c-hamburger,
  body.home .c-hamburger {
    height: 64px;
    --pb-hamburger-pad: 14px;
    --pb-hamburger-line: 4px;
  }
  body.front-page .c-hamburger span:nth-child(1),
  body.home .c-hamburger span:nth-child(1) {
    transform: translateY(calc(-50% - 6px));
  }
  body.front-page .c-hamburger span:nth-child(3),
  body.home .c-hamburger span:nth-child(3) {
    transform: translateY(calc(-50% + 6px));
  }
}
body.front-page .c-hamburger[aria-expanded=true] span:nth-child(1),
body.home .c-hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
body.front-page .c-hamburger[aria-expanded=true] span:nth-child(2),
body.home .c-hamburger[aria-expanded=true] span:nth-child(2) {
  display: none;
}
body.front-page .c-hamburger[aria-expanded=true] span:nth-child(3),
body.home .c-hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

body.front-page.is-drawer-lock .c-hamburger,
body.home.is-drawer-lock .c-hamburger {
  color: #FCFDFC;
}

body.front-page .l-header__logo,
body.home .l-header__logo {
  visibility: hidden;
}

/* -----------------------------------------------
   レスポンシブ：1920px 未満（パディングのみ調整）
   - グリッド構造はベース定義と同一（単列）のため重複指定は不要
   - 狭めの画面ではパディングを少し詰める
----------------------------------------------- */
@media (max-width: 1919px) {
  .p-fvTop__content {
    padding-top: clamp(72px, 9vh, 100px);
    padding-bottom: clamp(32px, 5vh, 56px);
  }
}
/* -----------------------------------------------
   ハンバーガー：タブレット範囲のみ少し下げる
   1024〜1039px → fixed 配置なので top を上書き
   780〜1023px  → header フロー内・トップページのみ margin-top
----------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1039px) {
  .c-hamburger {
    top: 32px;
  }
}
@media (min-width: 780px) and (max-width: 1023px) {
  .front-page .c-hamburger,
  .home .c-hamburger {
    margin-top: 16px;
  }
}
/* -----------------------------------------------
   リード文 PC専用改行：1040px以上でのみ表示
   （タブレット・SP では非表示にして行を結合する）
----------------------------------------------- */
.p-fvTop__leadBreak--pc {
  display: block;
}

@media (max-width: 1039px) {
  .p-fvTop__leadBreak--pc {
    display: none;
  }
}
/* -----------------------------------------------
   タブレット：780px〜1039px

   ┌────────────────────────────┬──────────┐
   │ ILLUSTRATION               │ [CATCH]  │ ← 右列 absolute
   │ (全幅-右列幅・左5%clip)     │  縦書き  │
   ├────────────────────────────┴──────────┤
   │ [ロゴ] [創和ネクスト株式会社]              │
   │       リード文                            │
   └────────────────────────────────────────┘

   右列幅（キャッチ用）: clamp(92px, 12vw, 140px)
   イラスト幅: calc(100% - 右列幅)
   左clip: illustImg を 105% にし overflow:hidden + justify-content:flex-end で実現

   ・1040px以上の PC レイアウトは維持
   ・779px以下の SP レイアウトには影響しない
----------------------------------------------- */
@media (min-width: 780px) and (max-width: 1039px) {
  /* コンテナ：縦積み・position:relative（キャッチの absolute 基準）
     横 padding 0 → content 側で復活させる */
  .p-fvTop {
    min-height: auto;
  }
  .p-fvTop__container {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto;
    padding-top: clamp(48px, 6vh, 72px);
    padding-bottom: clamp(40px, 6vh, 64px);
    padding-right: 0;
    padding-left: 0;
    gap: clamp(12px, 2vh, 20px);
  }
  .p-fvSidebar {
    display: none;
  }
  /* ─── イラスト ──────────────────────────
     幅 = 全幅 − 右列（キャッチ用空間）
     right_space: clamp(92px, 12vw, 140px)
       780px  → 92px   illust ≈ 688px
       900px  → 108px  illust ≈ 792px
       1039px → 125px  illust ≈ 914px
     illustImg を 105% に → justify-content:flex-end + overflow:hidden で左5%clip
     height: auto → 円形 1:1 SVG の縦比率を保ち上下を切らない
  ─────────────────────────────────────── */
  .p-fvTop__illust {
    width: calc(100% - clamp(92px, 12vw, 140px));
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0;
    margin: 0;
  }
  /* illustImg: container幅の 105% → 左5% が clip される */
  .p-fvTop__illustImg {
    width: 105%;
    height: auto;
    max-width: none;
    flex-shrink: 0;
  }
  /* ─── キャッチコピー ──────────────────────
     container 基準の absolute で右列 + イラスト重複領域に配置
     top: clamp(380px, 47vw, 520px) → 前回より80〜140px下げる
     right: clamp(16px, 2vw, 28px) → 前回より左へ20〜30px寄せる
     width: clamp(160px, 22vw, 220px) → 前回より大きく（イラスト右側に重複OK）
  ─────────────────────────────────────── */
  .p-fvTop__catch {
    position: absolute;
    top: clamp(580px, 71vw, 760px);
    right: clamp(36px, 4vw, 56px);
    width: clamp(120px, 16vw, 185px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    grid-column: unset;
    grid-row: unset;
    align-self: auto;
    margin-left: 0;
    padding-right: 0;
    transform: none;
  }
  /* キャッチテキスト：縦書き維持・サイズ微調整 */
  .p-fvTop__catchText {
    font-size: clamp(1.75rem, 3.8vw, 2.875rem);
    line-height: 2;
  }
  /* ─── コンテンツ（info ブロック）───────────
     キャッチは absolute 脱出済み → content = info のみ
     左右 padding を復活させる
  ─────────────────────────────────────── */
  .p-fvTop__content {
    position: static;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: clamp(16px, 3vw, 32px);
    padding-right: clamp(16px, 3vw, 32px);
    --fv-catch-shift-y: 0px;
    --fv-info-shift-x: 0px;
    --fv-info-shift-y: 0px;
  }
  /* ─── ロゴ等エリア ─────────────────────────
     row1: [ロゴ] | [社名]
     row2: [リード文 全幅]
  ─────────────────────────────────────── */
  .p-fvTop__info {
    grid-column: unset;
    grid-row: unset;
    align-self: stretch;
    transform: none;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: clamp(16px, 2vw, 28px);
    row-gap: clamp(12px, 1.8vh, 20px);
    align-items: start;
  }
  /* ロゴ：左列 row1 のみ（row2 はリード文が全幅で使う） */
  .p-fvTop__logoLink {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }
  /* ロゴ：1.3倍に拡大 */
  .p-fvTop__logoImg {
    width: clamp(104px, 13vw, 168px);
  }
  /* 社名：ロゴ右・カンプに合わせてサイズ縮小 */
  .p-fvTop__companyName {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
    line-height: 1.2;
  }
  /* リード文：全幅・1.6倍大きく・行間読みやすく */
  .p-fvTop__lead {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 0;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    line-height: 1.8;
  }
}
/* -----------------------------------------------
   レスポンシブ：lg 以下（タブレット・SP）
----------------------------------------------- */
@media (max-width: 779px) {
  .p-fvTop {
    min-height: auto;
  }
  /* コンテナ：縦積み・position:relative（catchのabsolute基準）
     padding-top を増やしてイラスト開始位置を約80〜120px下げる */
  .p-fvTop__container {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto;
    padding-top: clamp(150px, 39vw, 220px);
    padding-bottom: clamp(12px, 3vw, 24px);
    padding-right: 0;
    padding-left: 0;
    gap: 0;
  }
  /* ─── イラスト ───────────────────────────────
     画面幅いっぱいに広げ、右端基準（左側を少しclip）
     illustImg を約7〜10%小さく
  ─────────────────────────────────────────── */
  .p-fvTop__illust {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 0;
    transform: translateY(clamp(48px, 13vw, 76px));
  }
  .p-fvTop__illustImg {
    width: clamp(390px, 108vw, 535px);
    max-width: none;
    height: auto;
    flex-shrink: 0;
  }
  /* ─── キャッチ：absolute で右上の白余白へ ────────
     イラストを下げた分、catchも少し上に戻す
  ─────────────────────────────────────────── */
  .p-fvTop__catch {
    position: absolute;
    top: clamp(92px, 24vw, 132px);
    right: clamp(30px, 7vw, 46px);
    z-index: 2;
    width: auto;
    grid-column: unset;
    grid-row: unset;
    transform: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  /* キャッチテキスト：縦書き3列・サイズ軽量化 */
  .p-fvTop__catchText {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(1.12rem, 4.45vw, 1.55rem);
    line-height: 1.72;
    letter-spacing: 0.18em;
    font-weight: 700;
  }
  /* ─── コンテンツ：block（1列）・catch は absolute 脱出済み ─ */
  .p-fvTop__content {
    display: block;
    width: 100%;
    max-width: none;
    margin-top: clamp(0px, 1.5vw, 8px);
    padding-left: clamp(18px, 5vw, 32px);
    padding-right: clamp(18px, 5vw, 32px);
    --fv-catch-shift-y: 0px;
    --fv-info-shift-x: 0px;
    --fv-info-shift-y: 0px;
  }
  /* info：全幅・grid でロゴ+社名／リード文 */
  .p-fvTop__info {
    width: 100%;
    grid-column: unset;
    grid-row: unset;
    align-self: auto;
    transform: none;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: clamp(10px, 3vw, 16px);
    row-gap: clamp(14px, 4vw, 22px);
    align-items: center;
  }
  .p-fvTop__logoLink {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .p-fvTop__logoImg {
    width: clamp(70px, 18vw, 92px);
  }
  .p-fvTop__companyName {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
    font-size: clamp(1.2rem, 4.9vw, 1.65rem);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
  .p-fvTop__lead {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 0;
    font-size: clamp(0.8125rem, 3vw, 0.9375rem);
    line-height: 1.9;
  }
  /* SP での改行制御
     --sp-show: SPでも改行あり（1つ目の br）
     --sp-hide: SPでは改行なし（2つ目の br）
     ※ --pc クラスの display:none を --sp-show で上書き */
  .p-fvTop__leadBreak--sp-show {
    display: block;
  }
  .p-fvTop__leadBreak--sp-hide {
    display: none;
  }
  /* ─── ハンバーガー：SP トップページのみ小型化 ────────
     40px正方形・2本線を太く
  ─────────────────────────────────────────── */
  body.front-page .c-hamburger,
  body.home .c-hamburger {
    top: clamp(24px, 6vw, 34px);
    right: clamp(16px, 5vw, 24px);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    --pb-hamburger-pad: 9px;
    --pb-hamburger-line: 5px;
  }
  body.front-page .c-hamburger span:nth-child(1),
  body.home .c-hamburger span:nth-child(1) {
    transform: translateY(calc(-50% - 6px));
  }
  body.front-page .c-hamburger span:nth-child(3),
  body.home .c-hamburger span:nth-child(3) {
    transform: translateY(calc(-50% + 6px));
  }
  body.front-page .c-hamburger[aria-expanded=true] span:nth-child(1),
  body.home .c-hamburger[aria-expanded=true] span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
  }
  body.front-page .c-hamburger[aria-expanded=true] span:nth-child(3),
  body.home .c-hamburger[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
  }
  .p-fvSidebar {
    display: none;
  }
}
/* -----------------------------------------------
   縦長画面（PC / 幅 1025px 以上 + portrait）
   - min-height: 100vh をやめてコンテンツ高さに合わせる
   - FV下部に長い空白ができないようにする
   - 横長表示の見た目は変えない
----------------------------------------------- */
@media (min-width: 1025px) and (orientation: portrait) {
  .p-fvTop {
    min-height: auto;
  }
  .p-fvTop__container {
    min-height: auto;
    padding-bottom: clamp(64px, 8vh, 120px);
  }
  .p-fvSidebar__scrollArea {
    top: auto;
    bottom: clamp(24px, 4vh, 48px);
    transform: translateX(-50%);
    margin-top: 0;
  }
}
/* -------------------------------------------
   4K（2000px 以上）：情報エリアをさらに右下へ
----------------------------------------------- */
@media (min-width: 2000px) {
  .p-fvTop__content {
    --fv-info-shift-x: clamp(80px, 4vw, 160px);
    --fv-info-shift-y: clamp(-52px, -3.5vh, -20px);
  }
}
/* =======================================
   p-company（会社をのぞいてみるセクション）
   FV直下・会社紹介セクション

   レイヤー構造（前面→背面）
   .p-company__right に isolation:isolate で stacking context を分離

   [1] boyComment z:4 → コメント（最前面・動画より上）
   [2] truckGroup z:3 → トラック（動画より上）
   [3] videoWrap  z:2 → 動画（男の子より前面）
   [4] boyGroup   z:1 → 男の子（動画背面・頭部のみ上から見える）
======================================= */
@keyframes p-company-boyAnim {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  91% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes p-company-exhaust {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6px, 8px);
  }
}
@keyframes p-company-sparkle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.p-company--top {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-top: clamp(32px, 4vw, 56px);
}

.p-company__strip {
  position: absolute;
  left: 0;
  top: clamp(100px, 15.625vw, 300px);
  width: calc(max(0px, (100vw - 1920px) / 2) + clamp(156px, 19vw, 312px));
  height: calc(100% + clamp(80px, 10.4vw, 200px) + clamp(40px, 5vw, 72px));
  background-color: #F0F2F1;
  z-index: 0;
  pointer-events: none;
  border-radius: 0 clamp(4px, 0.5vw, 8px) clamp(4px, 0.5vw, 8px) 0;
}

.p-company__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  max-width: 1920px;
  margin-inline: auto;
}

.p-company__left {
  flex: 0 0 auto;
  width: clamp(340px, 45vw, 680px);
  padding-top: clamp(96px, 11vw, 160px);
  padding-bottom: clamp(64px, 8vw, 120px);
  padding-left: clamp(30px, 4vw, 96px);
  padding-right: clamp(24px, 3vw, 56px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  top: clamp(0px, 10.4vw, 200px);
}

.p-company__textBody {
  margin: 0;
  margin-bottom: clamp(6px, 0.8vw, 12px);
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  font-weight: 500;
  line-height: 1.9;
  color: #484C49;
}

.p-company__textBody--gap {
  margin-top: clamp(16px, 1.8vw, 28px);
}

.p-company__em {
  color: #366750;
  font-weight: 700;
}

.p-company__accent {
  margin: 0;
  color: #366750;
  font-weight: 700;
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  line-height: 1.7;
}

.p-company__btn {
  margin-top: clamp(36px, 4vw, 60px);
}

.p-company__right {
  flex: 1;
  min-width: 0;
  position: relative;
  isolation: isolate;
  padding-top: clamp(64px, 8vw, 104px);
}

.p-company__videoWrap {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16/9;
}

.p-company__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: clamp(12px, 1.5vw, 24px);
  border-bottom-left-radius: clamp(12px, 1.5vw, 24px);
  box-shadow: -6px 0 20px rgba(0, 17, 2, 0.06), -12px 8px 40px rgba(54, 103, 80, 0.1);
}

.p-company__video--sp {
  display: none;
}

.p-company__boyGroup {
  position: absolute;
  top: clamp(-45px, -2.34vw, -12px);
  right: 25%;
  z-index: 1;
  pointer-events: none;
}

.p-company__boyImg {
  display: block;
  width: clamp(72px, 8.5vw, 130px);
  height: auto;
  transform: rotate(10deg);
  transform-origin: bottom center;
}

.p-company__boyAnim {
  position: absolute;
  top: clamp(-28px, -3vw, -10px);
  right: clamp(-28px, -3vw, -10px);
  width: clamp(28px, 3.5vw, 52px);
  height: auto;
  z-index: 1;
  animation: p-company-boyAnim 2.2s linear infinite;
}

.p-company__boyComment {
  position: absolute;
  top: clamp(6px, 0.625vw, 12px);
  right: 40%;
  width: clamp(234px, 29vw, 416px);
  height: auto;
  z-index: 4;
  pointer-events: none;
}

.p-company__truckGroup {
  position: absolute;
  left: clamp(-108px, -1.5625vw, -30px);
  top: calc(clamp(270px, 26.04vw, 500px) + 140px);
  z-index: 3;
  pointer-events: none;
}

.p-company__truckImg {
  display: block;
  width: clamp(170px, 20vw, 300px);
  height: auto;
  position: relative;
  z-index: 1;
}

.p-company__exhaust {
  position: absolute;
  right: clamp(28px, 2.6vw, 50px);
  top: clamp(28px, 2.6vw, 50px);
  width: clamp(32px, 3.5vw, 52px);
  height: auto;
  z-index: 2;
  animation: p-company-exhaust 1s ease-in-out infinite;
}

.p-company__sparkle {
  position: absolute;
  left: clamp(28px, 2.6vw, 50px);
  top: 0;
  width: clamp(24px, 3vw, 44px);
  height: auto;
  z-index: 2;
  animation: p-company-sparkle 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .p-company__boyAnim,
  .p-company__exhaust,
  .p-company__sparkle {
    animation: none;
  }
}
@media (min-width: 1921px) {
  .p-company__videoWrap {
    width: calc(100% + (100vw - 1920px) / 2);
    aspect-ratio: 16/9;
  }
  .p-company__truckGroup {
    top: auto;
    bottom: -63.5px;
  }
  .p-company__right {
    --boy-right: calc(1030px - 37.5vw);
    --boy-w: 130px;
    --boy-gap: 0px;
  }
  .p-company__boyGroup {
    right: var(--boy-right);
  }
  .p-company__boyComment {
    right: calc(var(--boy-right) + var(--boy-w) + var(--boy-gap));
  }
}
@media (max-width: 1040px) {
  .p-company--top {
    padding-top: 0;
    overflow-x: clip;
    overflow-y: visible;
  }
  .p-company__strip {
    display: block;
    top: clamp(460px, 130vw, 1050px);
    width: 33.333%;
    border-radius: 0 clamp(4px, 1vw, 8px) clamp(4px, 1vw, 8px) 0;
  }
  .p-company__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .p-company__right {
    order: 1;
    display: block;
    flex: none;
    width: 100%;
    position: relative;
    z-index: 2;
    isolation: isolate;
    padding-top: clamp(56px, 14vw, 88px);
    padding-bottom: 0;
    min-width: 0;
    margin-top: clamp(-72px, -14vw, -44px);
  }
  .p-company__videoWrap {
    position: relative;
    z-index: 2;
    width: calc(100% - clamp(32px, 8vw, 64px));
    margin-left: auto;
    margin-right: 0;
    aspect-ratio: 4/5;
    padding: 0;
    margin-top: 0;
  }
  .p-company__video--pc {
    display: none;
  }
  .p-company__video--sp {
    display: block;
  }
  .p-company__video {
    border-radius: clamp(8px, 2vw, 16px);
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(54, 103, 80, 0.1), 0 2px 8px rgba(0, 17, 2, 0.06);
  }
  .p-company__boyGroup {
    position: absolute;
    top: clamp(-24px, -4.6vw, -18px);
    right: clamp(28px, 7vw, 52px);
    left: auto;
    z-index: 1;
    display: block;
    padding: 0;
  }
  .p-company__boyImg {
    width: clamp(60px, 18vw, 100px);
  }
  .p-company__boyAnim {
    position: absolute;
    top: clamp(-24px, -6vw, -10px);
    right: clamp(-16px, -4vw, -4px);
    left: auto;
    width: clamp(20px, 6vw, 36px);
    margin-left: 0;
  }
  .p-company__boyComment {
    position: absolute;
    top: clamp(28px, 7vw, 44px);
    right: clamp(64px, 24vw, 140px);
    left: auto;
    width: clamp(168px, 54vw, 286px);
    z-index: 3;
    margin: 0;
    display: block;
  }
  .p-company__left {
    order: 2;
    width: 100%;
    flex: none;
    top: 0;
    padding-top: clamp(60px, 12vw, 96px);
    padding-bottom: clamp(28px, 7vw, 48px);
    padding-left: 7%;
    padding-right: 7%;
    justify-content: flex-start;
  }
  .p-company__textBody,
  .p-company__accent {
    font-size: clamp(0.875rem, 3.5vw, 1.0625rem);
  }
  .p-company__btn {
    display: flex;
    justify-content: center;
    margin-top: clamp(44px, 10vw, 72px);
  }
  .p-company__truckGroup {
    position: absolute;
    bottom: clamp(-60px, -16vw, -28px);
    left: clamp(0px, 2vw, 16px);
    top: auto;
    right: auto;
    z-index: 4;
    display: block;
    transform: none;
    padding: 0;
  }
  .p-company__truckImg {
    width: clamp(120px, 38vw, 220px);
  }
  .p-company__exhaust {
    right: clamp(24px, 6vw, 44px);
    top: clamp(20px, 5vw, 36px);
    left: auto;
    bottom: auto;
    margin-left: 0;
  }
  .p-company__sparkle {
    left: clamp(16px, 4vw, 32px);
    top: clamp(-4px, -1vw, 0px);
    right: auto;
    margin-right: 0;
  }
}
@media (max-width: 1040px) and (min-width: 600px) and (max-width: 1040px) {
  .p-company__boyComment {
    width: clamp(220px, 52vw, 370px);
  }
  .p-company__strip {
    top: clamp(460px, 78vw, 820px);
  }
}
/* =======================================
   p-strength（ちゃんと届くには、ちゃんと理由がある。）
   トップページ第2セクション：PC版実装
======================================= */
@keyframes strength-onpu {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes strength-question {
  0%, 80% {
    opacity: 1;
  }
  80.01%, 100% {
    opacity: 0;
  }
}
@keyframes strength-bird {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.p-strength {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: clamp(80px, 10.4vw, 200px);
}
.p-strength::before {
  content: "";
  position: absolute;
  top: clamp(360px, 25vw, 480px);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #EFF8F1;
  z-index: 0;
}

.p-strength__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 0;
  max-width: 1920px;
  margin-inline: auto;
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(64px, 8vw, 112px);
  padding-left: 0;
  padding-right: 0;
  align-items: start;
}

.p-strength__col--left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 48px);
}

.p-strength__mainPhoto {
  --strength-edge-gutter: max(0px, calc((100vw - 1920px) / 2));
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(54, 103, 80, 0.14), 0 2px 12px rgba(0, 17, 2, 0.08);
  border-radius: 0 clamp(12px, 1.5vw, 24px) clamp(12px, 1.5vw, 24px) 0;
  width: calc(100% + var(--strength-edge-gutter) + clamp(16px, 3.5vw, 48px));
  margin-left: calc(var(--strength-edge-gutter) * -1);
  height: clamp(420px, 31vw, 600px);
}

.p-strength__mainImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-strength__body {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4vw, 68px);
  max-width: clamp(620px, 45vw, 820px);
  padding-left: clamp(24px, 4vw, 72px);
  padding-right: clamp(16px, 3vw, 40px);
}

.p-strength__header {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 2.8vw, 44px);
}

.p-strength__title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 2.6vw, 2.75rem);
  font-weight: 700;
  line-height: 2;
  color: #001102;
  letter-spacing: 0.04em;
  margin: 0;
  text-decoration: underline dashed #C7CCC7;
  text-underline-offset: clamp(14px, 1.5vw, 20px);
  text-decoration-thickness: 2px;
}

.p-strength__lead {
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  font-weight: 500;
  line-height: 1.9;
  color: #484C49;
  margin: 0;
}

.p-strength__reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-strength__reason {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.1vw, 20px);
  padding-top: clamp(16px, 1.9vw, 30px);
  padding-bottom: clamp(16px, 1.9vw, 30px);
  border-top: none;
}
.p-strength__reason:last-child {
  border-bottom: none;
}

.p-strength__reasonNum {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.125rem, 1.55vw, 1.625rem);
  font-weight: 700;
  color: #366750;
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.5;
}

.p-strength__reasonTitle {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.0625rem, 1.35vw, 1.4375rem);
  font-weight: 700;
  color: #001102;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

.p-strength__reasonText {
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  font-weight: 500;
  line-height: 1.85;
  color: #484C49;
  margin: clamp(2px, 0.3vw, 4px) 0 0;
}

.p-strength__col--right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-strength__topVisual {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: clamp(40px, 5.5vw, 80px);
}

.p-strength__illustBand {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2;
  margin-bottom: clamp(-56px, -8.5vw, -88px);
  padding-left: clamp(4px, 1.5vw, 16px);
}

.p-strength__womanIllust {
  display: block;
  width: clamp(240px, 80%, 420px);
  height: auto;
}

.p-strength__onpu {
  position: absolute;
  top: clamp(-28px, -1.2vw, -16px);
  left: clamp(68px, 7vw, 110px);
  width: clamp(28px, 3.2vw, 44px);
  height: auto;
  animation: strength-onpu 2.4s ease-in-out infinite;
}

.p-strength__question {
  position: absolute;
  bottom: clamp(55px, 9vw, 91px);
  left: clamp(92px, 25vw, 175px);
  width: clamp(14px, 1.7vw, 22px);
  height: auto;
  animation: strength-question 1.5s linear infinite;
}

.p-strength__subPhoto {
  --strength-edge-gutter: max(0px, calc((100vw - 1920px) / 2));
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(54, 103, 80, 0.12), 0 2px 10px rgba(0, 17, 2, 0.07);
  position: relative;
  z-index: 1;
  border-radius: clamp(16px, 2vw, 28px) 0 0 clamp(16px, 2vw, 28px);
  width: calc(100% + var(--strength-edge-gutter));
  height: clamp(560px, 40vw, 780px);
}

.p-strength__subImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-strength__illustBuilding {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: clamp(56px, 5vw, 96px);
  margin-top: calc(clamp(360px, 33.85vw, 650px) - 380px);
  margin-left: clamp(-80px, -9vw, -140px);
  padding-right: clamp(16px, 3vw, 40px);
}

.p-strength__buildingIllust {
  display: block;
  width: clamp(280px, 92%, 600px);
  height: auto;
}

@media (min-width: 1921px) {
  .p-strength__buildingIllust {
    width: clamp(600px, 18.75vw, 720px);
  }
  .p-strength__bird {
    width: clamp(56px, 1.75vw, 67px);
  }
}
.p-strength__bird {
  position: absolute;
  top: calc(clamp(20px, 2vw, 40px) - 20px);
  left: calc(clamp(220px, 18vw, 320px) - 40px);
  right: auto;
  width: clamp(36px, 4vw, 56px);
  height: auto;
  animation: strength-bird 3.2s ease-in-out infinite;
}

@media (max-width: 1040px) {
  .p-strength {
    margin-top: clamp(24px, 5vw, 48px);
    padding-top: 0;
    padding-bottom: clamp(56px, 14vw, 96px);
  }
  .p-strength::before {
    top: clamp(140px, 36vw, 280px);
    bottom: 0;
  }
  .p-strength__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-width: 100%;
    align-items: stretch;
  }
  .p-strength__col--left,
  .p-strength__col--right {
    display: contents;
  }
  .p-strength__mainPhoto {
    order: 1;
    width: 88%;
    margin-left: 0;
    height: auto;
    border-radius: 0 clamp(10px, 2.5vw, 18px) clamp(10px, 2.5vw, 18px) 0;
    align-self: flex-start;
  }
  .p-strength__mainImg {
    height: auto;
    aspect-ratio: 16/10.5;
    object-fit: cover;
  }
  .p-strength__topVisual {
    order: 2;
    margin-top: calc(clamp(-110px, -26vw, -72px) + 72px);
    align-self: flex-end;
    width: 60%;
    position: relative;
    z-index: 2;
  }
  .p-strength__illustBand {
    position: absolute;
    right: calc(clamp(4px, 2vw, 20px) + 8px);
    bottom: clamp(-92px, -18vw, -64px);
    width: clamp(171px, 50vw, 324px);
    margin-bottom: 0;
    padding-left: 0;
    z-index: 20;
  }
  .p-strength__womanIllust {
    width: 100%;
  }
  .p-strength__womanIllust {
    width: 100%;
  }
  .p-strength__onpu {
    top: clamp(4px, 1.5vw, 10px);
    left: calc(clamp(8px, 2.5vw, 18px) + 32px);
    width: clamp(12px, 2.5vw, 20px);
  }
  .p-strength__question {
    bottom: calc(clamp(22px, 5.5vw, 44px) + 19px);
    left: calc(clamp(36px, 10vw, 80px) + 35px);
    width: clamp(8px, 1.8vw, 16px);
  }
  .p-strength__subPhoto {
    width: 100%;
    height: auto;
    border-radius: clamp(8px, 2vw, 16px) 0 0 clamp(8px, 2vw, 16px);
  }
  .p-strength__subImg {
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
  }
  .p-strength__illustBuilding {
    order: 3;
    position: relative;
    z-index: 8;
    margin-top: calc(clamp(-100px, -24vw, -64px) - 90px);
    margin-left: -50px;
    padding-right: 0;
    padding-top: 0;
    align-self: flex-start;
    width: 74%;
  }
  .p-strength__buildingIllust {
    width: clamp(200px, 90%, 360px);
  }
  .p-strength__bird {
    top: clamp(-16px, -3vw, -8px);
    left: auto;
    right: calc(clamp(-8px, -1.5vw, 4px) + 145px);
    width: clamp(32px, 3.6vw, 50px);
  }
  .p-strength__body {
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(20px, 5vw, 36px);
    padding: clamp(88px, 22vw, 144px) clamp(20px, 5vw, 40px) 0;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }
  .p-strength__header {
    align-items: center;
    gap: clamp(48px, 12vw, 80px);
  }
  .p-strength__title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    text-align: center;
    line-height: 1.75;
  }
  .p-strength__lead {
    font-size: clamp(0.9375rem, 3.5vw, 1.0625rem);
    text-align: center;
  }
  .p-strength__reasons {
    width: 100%;
    text-align: center;
  }
  .p-strength__reason {
    text-align: center;
    padding-top: clamp(18px, 4.5vw, 28px);
    padding-bottom: clamp(18px, 4.5vw, 28px);
    border-top: none;
    gap: clamp(10px, 2.5vw, 20px);
  }
  .p-strength__reason:last-child {
    border-bottom: none;
  }
  .p-strength__reasonNum {
    font-size: clamp(1.125rem, 4.56vw, 1.35rem);
  }
  .p-strength__reasonTitle {
    font-size: clamp(1rem, 4vw, 1.1875rem);
  }
  .p-strength__reasonText {
    font-size: clamp(0.875rem, 3.4vw, 1rem);
    margin-top: clamp(2px, 0.5vw, 6px);
    text-align: center;
  }
}
/* =======================================
   p-work（創和ネクストのしごと）
   トップページ第3セクション
======================================= */
.p-work {
  position: relative;
  overflow: visible;
}

.p-work__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(340px, 48vw, 780px);
  z-index: 0;
  pointer-events: none;
}

.p-work__bgWave {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.p-work__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  max-width: clamp(1280px, 75vw, 1680px);
  margin-inline: auto;
  padding-top: clamp(27px, 2vw, 40px);
  padding-bottom: clamp(64px, 7vw, 120px);
}

.p-work__visual {
  position: relative;
  flex: 0 0 auto;
  width: clamp(360px, 37.5vw, 760px);
  margin-top: clamp(27px, 3.87vw, 75px);
  padding-left: clamp(16px, 3.125vw, 60px);
}

.p-work__cloud,
.p-work__trees,
.p-work__comment,
.p-work__cameraman {
  display: none;
}

.p-work__photoWrap {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 720/512;
  overflow: hidden;
  -webkit-mask-image: url("../img/top/work/work-photo-main.svg");
  mask-image: url("../img/top/work/work-photo-main.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-work__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-work__textGroup {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 29px);
  padding-top: clamp(32px, 4vw, 80px);
  padding-right: clamp(40px, 6.35vw, 122px);
}

.p-work__lead {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.5vw, 24px);
}
.p-work__lead p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
  font-weight: 500;
  color: #484C49;
  line-height: 1.45;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.p-work__title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2.75vw, 3.375rem);
  font-weight: 700;
  color: #001102;
  line-height: 1.05;
  letter-spacing: 0.06em;
}

@media (min-width: 1041px) {
  .p-work__bg {
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1920/1115.32;
    transform: none;
    overflow: visible;
    background: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .p-work__bgWave {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: left top;
  }
  .p-work__inner {
    display: block;
    position: relative;
    width: min(1440px, 100vw - 120px);
    max-width: none;
    margin-inline: auto;
    padding-top: 0;
    padding-bottom: 0;
    min-height: clamp(650px, 60vw, 900px);
  }
  .p-work__visual {
    position: absolute;
    left: clamp(48px, 5.56%, 80px);
    top: clamp(70px, 4.8vw, 92px);
    width: clamp(620px, 50vw, 720px);
    margin-top: 0;
    padding-left: 0;
    transform: scale(1.1);
    transform-origin: left top;
  }
  .p-work__textGroup {
    position: absolute;
    right: calc(clamp(44px, 4.51%, 65px) + 100px);
    top: clamp(48px, 4vw, 76px);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    gap: clamp(24px, 2vw, 36px);
    padding-top: 0;
    padding-right: 0;
  }
  .p-work__lead {
    align-items: flex-end;
    gap: clamp(18px, 1.6vw, 28px);
    margin-top: 0;
  }
  .p-work__lead p {
    font-size: clamp(1.375rem, 1.35vw, 1.625rem);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.1em;
  }
  .p-work__title {
    font-size: clamp(2rem, 2.65vw, 3.375rem);
  }
  .p-work__visual::before {
    content: "";
    position: absolute;
    inset: -3px;
    z-index: 1;
    display: block;
    background: #111;
    -webkit-mask-image: url("../img/top/work/work-photo-main.svg");
    mask-image: url("../img/top/work/work-photo-main.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    pointer-events: none;
  }
  .p-work__cloud,
  .p-work__trees,
  .p-work__comment,
  .p-work__cameraman {
    pointer-events: none;
    user-select: none;
  }
  .p-work__cloud--01 {
    display: block;
    position: absolute;
    width: clamp(110px, 7.3vw, 140px);
    left: calc(4.5% + 25px);
    top: calc(-7.5% + 25px);
    z-index: 5;
  }
  .p-work__cloud--02 {
    display: block;
    position: absolute;
    width: clamp(82px, 5.8vw, 112px);
    left: calc(53% + 55px);
    top: -6.6%;
    z-index: 5;
  }
  .p-work__cloud--03 {
    display: block;
    position: absolute;
    width: clamp(112px, 7.4vw, 142px);
    right: calc(4% + 35px);
    top: calc(-9.5% - 30px);
    z-index: 5;
  }
  .p-work__trees {
    display: block;
    position: absolute;
    left: -3.5%;
    bottom: -10.5%;
    width: clamp(88px, 6.2vw, 118px);
    z-index: 4;
  }
  .p-work__tree {
    display: block;
    width: 100%;
    height: auto;
  }
  .p-work__tree--02,
  .p-work__trees img:nth-child(n+2) {
    display: none;
  }
  .p-work__comment {
    display: block;
    position: absolute;
    width: clamp(482px, 32.34vw, 619px);
    left: 34%;
    bottom: calc(-8.2% - 30px);
    z-index: 6;
  }
  .p-work__cameraman {
    display: block;
    position: absolute;
    width: clamp(92px, 6.4vw, 122px);
    right: calc(-10.5% - 65px);
    bottom: calc(-8.5% + 45px);
    z-index: 7;
  }
}
@media (min-width: 1921px) {
  .p-work__inner {
    width: min(75vw, 2880px);
    min-height: clamp(1040px, 42vw, 1320px);
  }
  .p-work__visual {
    left: clamp(96px, 5.56%, 160px);
    top: clamp(110px, 3.6vw, 138px);
    width: clamp(780px, 25vw, 960px);
    transform: scale(1.35);
    transform-origin: left top;
  }
  .p-work__textGroup {
    right: clamp(130px, 5.73%, 165px);
    top: clamp(90px, 2.4vw, 110px);
    gap: clamp(36px, 1.3vw, 50px);
  }
  .p-work__lead {
    gap: clamp(26px, 1.1vw, 42px);
  }
  .p-work__lead p {
    font-size: clamp(1.625rem, 0.88vw, 2.125rem);
  }
  .p-work__title {
    font-size: clamp(3.375rem, 1.65vw, 4rem);
  }
  .p-work__cloud--01 {
    width: clamp(145px, 4.8vw, 185px);
  }
  .p-work__cloud--02 {
    width: clamp(112px, 3.75vw, 145px);
  }
  .p-work__cloud--03 {
    width: clamp(150px, 4.9vw, 190px);
    top: calc(-9.5% - 48.5px);
  }
  .p-work__trees {
    width: clamp(122px, 4vw, 154px);
  }
  .p-work__comment {
    width: clamp(544px, 17.2vw, 660px);
  }
  .p-work__cameraman {
    width: clamp(134px, 4.3vw, 165px);
    right: calc(-10.5% - 102px);
  }
}
@media (max-width: 1040px) {
  .p-work__inner {
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
    min-height: auto;
    padding-top: clamp(32px, 8vw, 52px);
    padding-bottom: clamp(80px, 20vw, 140px);
  }
  .p-work__bg {
    height: clamp(300px, 80vw, 520px);
  }
  .p-work__textGroup {
    order: -1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    box-sizing: border-box;
    padding: 0 7% clamp(28px, 7vw, 48px) 7%;
    gap: clamp(8px, 2.5vw, 20px);
    transform: translateX(-45px);
  }
  .p-work__title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(1.875rem, 7.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
  }
  .p-work__lead {
    display: flex;
    align-items: flex-end;
    gap: clamp(8px, 2vw, 16px);
  }
  .p-work__lead p {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: calc(clamp(0.875rem, 3.2vw, 1.125rem) * 1.3);
    line-height: 1.45;
    white-space: nowrap;
    letter-spacing: 0.07em;
  }
  .p-work__visual {
    position: relative;
    width: 90%;
    max-width: none;
    margin-inline: auto;
    margin-top: clamp(50px, 6vw, 70px);
    padding-left: 0;
    overflow: visible;
  }
  .p-work__visual::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 1;
    display: block;
    background: #111;
    -webkit-mask-image: url("../img/top/work/work-photo-main.svg");
    mask-image: url("../img/top/work/work-photo-main.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    pointer-events: none;
  }
  .p-work__cloud--01,
  .p-work__cloud--02,
  .p-work__cloud--03,
  .p-work__trees,
  .p-work__comment,
  .p-work__cameraman {
    display: block;
    position: absolute;
    pointer-events: none;
    user-select: none;
  }
  .p-work__cloud--01 {
    width: clamp(80px, 22vw, 140px);
    left: 1%;
    top: -6vw;
    z-index: 3;
  }
  .p-work__cloud--02 {
    width: clamp(50px, 14vw, 90px);
    left: 36%;
    top: -4vw;
    z-index: 3;
  }
  .p-work__cloud--03 {
    width: clamp(68px, 19vw, 120px);
    right: 1%;
    top: -5vw;
    z-index: 3;
  }
  .p-work__trees {
    width: clamp(60px, 16vw, 108px);
    left: -4%;
    bottom: -11vw;
    z-index: 2;
  }
  .p-work__tree {
    display: block;
    width: 100%;
    height: auto;
  }
  .p-work__comment {
    width: clamp(225px, 58vw, 265px);
    left: clamp(42px, 13.1vw, 51px);
    bottom: calc(-6vw - 12px);
    z-index: 4;
  }
  .p-work__cameraman {
    width: clamp(75px, 21vw, 135px);
    right: -4%;
    bottom: -11vw;
    z-index: 5;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .p-work__comment {
    left: auto;
    right: calc(clamp(118px, 18.2vw, 150px) - 18px);
    top: clamp(404px, 56.5vw, 452px);
    bottom: auto;
    width: clamp(360px, 50vw, 390px);
    transform: scale(1.2);
    transform-origin: right top;
  }
}
@media (min-width: 860px) and (max-width: 1040px) {
  .p-work__bg {
    height: clamp(660px, 86vw, 900px);
  }
}
@media (min-width: 900px) and (max-width: 1040px) {
  .p-work__comment {
    left: calc(clamp(190px, 22vw, 230px) - 78px);
    right: auto;
    top: calc(clamp(560px, 61.7vw, 642px) - 62px);
    bottom: auto;
    width: clamp(540px, 64vw, 665px);
    transform: none;
  }
  .p-work__cameraman {
    bottom: calc(-11vw + 34px);
  }
  .p-work__bg {
    height: clamp(680px, 85vw, 900px);
  }
}
.p-work__body {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, 4vw, 72px);
  padding-bottom: clamp(70px, 6.4vw, 124px);
}

.p-work__bodyInner {
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
}

.p-work__bodyText {
  max-width: clamp(380px, 35vw, 520px);
  margin-left: auto;
  margin-right: clamp(80px, 15vw, 220px);
}
.p-work__bodyText p {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 500;
  color: #484C49;
  line-height: 1.9;
  margin-block: 0;
}
.p-work__bodyText p + p {
  margin-top: 0.5em;
}

.p-work__bottomArea {
  position: relative;
}
.p-work__bottomArea::before {
  content: "";
  position: absolute;
  top: clamp(140px, 13vw, 240px);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #A7A368;
  z-index: 0;
}

.p-work__cardsArea {
  position: relative;
  z-index: 1;
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
  padding-top: clamp(40px, 4vw, 72px);
  padding-bottom: clamp(24px, 2.5vw, 40px);
}

.p-work__cards {
  display: flex;
  gap: clamp(12px, 1.4vw, 20px);
  align-items: stretch;
}

.p-work__card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #F2F2E3;
  border-radius: clamp(12px, 3vw, 24px);
  padding: clamp(48px, 5vw, 72px) clamp(12px, 1.2vw, 18px) clamp(20px, 2vw, 32px);
}

.p-work__cardIllustration {
  display: none;
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

@media (min-width: 1041px) {
  .p-work__cardIllustration {
    display: block;
    height: auto;
    max-width: none;
    top: clamp(-68px, -3.6vw, -40px);
  }
  .p-work__cardIllustration--01 {
    left: 2%;
    width: 90px;
  }
  .p-work__cardIllustration--02 {
    left: 3%;
    width: 112.78px;
    transform: none;
  }
  .p-work__cardIllustration--03 {
    left: 4%;
    width: 103.24px;
    transform: none;
  }
  .p-work__cardIllustration--04 {
    left: 4%;
    width: 84.41px;
    transform: none;
  }
  .p-work__cardIllustration--05 {
    left: 4%;
    width: 67.53px;
    transform: none;
  }
}
.p-work__cardMedia {
  width: clamp(170px, 13.6vw, 230px);
  aspect-ratio: 4/3;
  border-radius: clamp(86px, 7.55vw, 145px);
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: clamp(14px, 1.4vw, 22px);
  flex-shrink: 0;
}
.p-work__cardMedia picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-work__cardPhoto {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-work__cardBody {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-work__cardHead {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25em;
  margin-bottom: 0.3em;
}

.p-work__cardNumber {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 700;
  color: #366750;
  line-height: 1;
}

.p-work__cardTitle {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 700;
  color: #366750;
  line-height: 1.3;
  margin: 0;
}

.p-work__cardSubTitle {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  font-weight: 700;
  color: #001102;
  text-align: center;
  margin: 0 0 clamp(8px, 0.8vw, 12px);
}

.p-work__cardText {
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  font-weight: 500;
  color: #484C49;
  line-height: 1.9;
  margin: 0;
  flex: 1;
}

.p-work__ctaArea {
  position: relative;
  z-index: 1;
  padding-top: clamp(16px, 1.8vw, 28px);
  padding-bottom: clamp(40px, 4.5vw, 80px);
}

.p-work__ctaInner {
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
}

.p-work__cta {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.35vw, 44px);
  min-height: clamp(108px, 7.4vw, 142px);
  background-color: #FCFDFC;
  border-radius: clamp(8px, 0.85vw, 14px);
  padding: clamp(12px, 1vw, 18px) clamp(58px, 4.8vw, 92px) clamp(10px, 0.9vw, 16px) clamp(36px, 2.8vw, 52px);
  box-shadow: 0 4px 16px rgba(0, 17, 2, 0.08);
  overflow: visible;
}

.p-work__ctaFigure {
  flex: 0 0 auto;
  margin: clamp(-38px, -2vw, -24px) 0 clamp(-18px, -1vw, -10px);
  padding: 0;
  display: flex;
  align-self: flex-end;
  align-items: flex-end;
}

.p-work__ctaFigureImage {
  display: block;
  width: clamp(84px, 6vw, 116px);
  height: auto;
}

.p-work__ctaText {
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(1.25rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: #001102;
  line-height: 1.45;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.p-work__ctaButton {
  flex: 0 0 auto;
  width: clamp(320px, 19.8vw, 380px);
}

@media (min-width: 1921px) {
  .p-work__ctaFigure {
    margin: clamp(-38px, -2vw, -24px) 0 clamp(-18px, -1vw, -10px) calc(20px - clamp(36px, 2.8vw, 52px));
  }
  .p-work__ctaFigureImage {
    width: clamp(76px, 5.4vw, 104px);
  }
  .p-work__bodyText {
    transform: translateY(clamp(72px, 3.2vw, 124px));
  }
}
@media (min-width: 1041px) {
  .p-work__body {
    margin-top: clamp(-160px, -7vw, -112px);
  }
}
@media (max-width: 1040px) {
  .p-work__bodyInner {
    width: 86%;
  }
  .p-work__bodyText {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .p-work__cardsArea {
    width: 100%;
    padding-left: 7%;
    padding-right: 7%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .p-work__cards {
    width: max-content;
    gap: clamp(12px, 3vw, 20px);
  }
  .p-work__card {
    width: clamp(220px, 62vw, 300px);
    flex: 0 0 auto;
  }
  .p-work__ctaInner {
    width: 86%;
  }
  .p-work__cta {
    flex-direction: column;
    text-align: center;
    gap: clamp(12px, 3vw, 20px);
  }
  .p-work__ctaText {
    font-size: clamp(1rem, 1vw, 1.125rem);
  }
}
@media (min-width: 600px) and (max-width: 1040px) {
  .p-strength__illustBand {
    right: clamp(48px, 8vw, 92px);
    bottom: clamp(-112px, -13vw, -78px);
    width: clamp(300px, 42vw, 420px);
  }
  .p-strength__onpu {
    top: clamp(0px, 1.2vw, 10px);
    left: clamp(72px, 10vw, 112px);
    width: clamp(20px, 2.4vw, 28px);
  }
  .p-strength__question {
    bottom: clamp(44px, 6vw, 66px);
    left: clamp(136px, 18vw, 184px);
    width: clamp(12px, 1.4vw, 16px);
  }
  .p-strength__bird {
    top: clamp(-18px, -2vw, -10px);
    right: auto;
    left: clamp(120px, 20vw, 220px);
    width: clamp(34px, 4vw, 46px);
  }
  .p-strength__illustBuilding {
    width: clamp(430px, 56vw, 580px);
    margin-left: clamp(-68px, -5vw, -48px);
    margin-top: calc(clamp(-100px, -24vw, -64px) - 220px);
  }
  .p-strength__buildingIllust {
    width: 100%;
    max-width: none;
  }
}
.p-recruit {
  padding-bottom: clamp(60px, 6vw, 100px);
}

.p-recruit__upperArea {
  padding-top: clamp(60px, 5.5vw, 96px);
  padding-bottom: clamp(40px, 4vw, 72px);
}

.p-recruit__upperInner {
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(0, 700px);
  gap: clamp(72px, 6.25vw, 120px);
  justify-content: center;
  align-items: start;
}

.p-recruit__leftCol {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 3.5vw, 64px);
}

.p-recruit__headRow {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
}

.p-recruit__badge {
  flex-shrink: 0;
  width: clamp(86px, 6.35vw, 112px);
  height: clamp(86px, 6.35vw, 112px);
  border-radius: 50%;
  background-color: #A72024;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
}

.p-recruit__badgeText {
  display: block;
  color: #fff;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-recruit__badgeText:first-child {
  font-size: clamp(0.9rem, 0.88vw, 1.125rem);
}
.p-recruit__badgeText:last-child {
  font-size: clamp(1.125rem, 1.12vw, 1.375rem);
}

.p-recruit__headTexts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35em;
}

.p-recruit__title {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #001102;
  line-height: 1;
  letter-spacing: 0.08em;
  margin: 0;
}

.p-recruit__subtitle {
  align-self: flex-end;
  font-size: clamp(0.9375rem, 0.9vw, 1.125rem);
  font-weight: 500;
  color: #9EA19E;
  letter-spacing: 0.1em;
  margin: 0;
}

.p-recruit__lead {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: clamp(440px, 32vw, 560px);
}

.p-recruit__leadLine {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  font-weight: 700;
  color: #001102;
  line-height: 1.42;
  letter-spacing: 0.04em;
  margin: 0;
  padding-bottom: clamp(8px, 0.8vw, 14px);
}
.p-recruit__leadLine::after {
  content: "";
  position: absolute;
  left: -0.35em;
  right: -0.55em;
  bottom: 0;
  border-bottom: 2px dashed #C7CCC7;
}
.p-recruit__leadLine + .p-recruit__leadLine {
  padding-top: clamp(10px, 1vw, 16px);
}

.p-recruit__body {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65em, 0.85vw, 1em);
  max-width: clamp(440px, 32vw, 560px);
}
.p-recruit__body p {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 0.9vw, 1rem);
  font-weight: 500;
  color: #484C49;
  line-height: 2;
  letter-spacing: 0.03em;
  margin: 0;
}

.p-recruit__rightCol {
  position: relative;
  overflow: visible;
  padding-bottom: clamp(160px, 14vw, 260px);
}

.p-recruit__visual {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: clamp(64px, 4.167vw, 80px);
  margin-top: clamp(70px, 7.916vw, 152px);
  transform: scale(1.2);
  transform-origin: top right;
}

.p-recruit__photoWrap {
  position: relative;
  width: clamp(320px, 36vw, 700px);
  height: clamp(224px, 25.5vw, 490px);
  overflow: visible;
}

.p-recruit__photoWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-color: #001102;
  -webkit-mask-image: url("../img/top/recruit/work-photo-main-mask.svg");
  mask-image: url("../img/top/recruit/work-photo-main-mask.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-recruit__photoWrap picture {
  display: block;
  position: absolute;
  inset: clamp(1.5px, 0.12vw, 2px);
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: url("../img/top/recruit/work-photo-main-mask.svg");
  mask-image: url("../img/top/recruit/work-photo-main-mask.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-recruit__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transform-origin: left center;
}

.p-recruit__photoMask {
  display: none;
}

.p-recruit__ashirai {
  position: absolute;
  top: clamp(-24px, -1.7vw, -9px);
  left: clamp(-2px, -0.4vw, 8px);
  width: clamp(44px, 3.52vw, 66px);
  z-index: 3;
  pointer-events: none;
  animation: pRecruitAshiraiBlink 1.7s steps(1, end) infinite;
}

.p-recruit__cloud {
  position: absolute;
  width: clamp(60px, 5.5vw, 100px);
  z-index: 3;
  pointer-events: none;
  animation: pRecruitCloudFloat 8s ease-in-out infinite;
}

.p-recruit__cloud--01 {
  top: clamp(-6px, -0.156vw, 8px);
  right: clamp(90px, 7.29vw, 140px);
}

.p-recruit__cloud--02 {
  top: clamp(-28px, -1.25vw, -12px);
  right: clamp(20px, 1.84vw, 36px);
}

.p-recruit__tree {
  position: absolute;
  bottom: clamp(-22px, -0.94vw, -12px);
  left: clamp(20px, 1.82vw, 35px);
  width: clamp(84px, 7.8vw, 144px);
  z-index: 3;
  pointer-events: none;
}

.p-recruit__machinami {
  position: absolute;
  bottom: clamp(-50px, -4.5vw, -20px);
  right: clamp(-40px, -2.5vw, -10px);
  width: clamp(180px, 18vw, 340px);
  z-index: 3;
  pointer-events: none;
  transform: translateX(clamp(-25px, -1.3vw, -16px));
}

@keyframes pRecruitAshiraiBlink {
  0%, 88.235% {
    opacity: 1;
  }
  88.236%, 100% {
    opacity: 0;
  }
}
@keyframes pRecruitCloudFloat {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-35px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-recruit__ashirai,
  .p-recruit__cloud {
    animation: none;
  }
}
.p-recruit__middleArea {
  padding-bottom: clamp(40px, 4vw, 64px);
}

.p-recruit__middleInner {
  position: relative;
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
}

.p-recruit__messageRow {
  position: relative;
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 22px);
  margin-bottom: clamp(-52px, -2.6vw, -34px);
  left: calc(clamp(12px, 3.4vw, 64px) - clamp(120px, 9.375vw, 180px));
}

.p-recruit__commentSvg {
  position: relative;
  z-index: 3;
  display: block;
  width: clamp(260px, 28vw, 500px);
  height: auto;
  transform: translateY(calc(clamp(0px, 0.156vw, 3px) + clamp(12px, 1.145vw, 22px)));
}

.p-recruit__workerIllust {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(106px, 9.65vw, 173px);
  height: auto;
  flex-shrink: 0;
  transform: translate(calc(clamp(-5px, -0.26vw, -3px) - clamp(6px, 0.52vw, 10px)), calc(clamp(10px, 1vw, 18px) - clamp(24px, 1.82vw, 35px)));
}

.p-recruit__cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  align-items: stretch;
}

.p-recruit__card {
  flex: 1;
  display: grid;
  grid-template-rows: clamp(170px, 12.5vw, 232px) 1fr;
  min-height: clamp(360px, 27.5vw, 520px);
  background-color: #F6F8F7;
  border-radius: clamp(8px, 0.6vw, 12px);
  overflow: hidden;
}

.p-recruit__cardVisual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(26px, 2.4vw, 44px) clamp(18px, 1.7vw, 28px) 0;
  transform: translateY(clamp(18px, 1.56vw, 30px));
}

.p-recruit__cardIllust {
  display: block;
  height: auto;
  object-fit: contain;
}

.p-recruit__card:nth-child(1) .p-recruit__cardIllust {
  width: clamp(158px, 13.08vw, 223px);
}

.p-recruit__card:nth-child(2) .p-recruit__cardIllust {
  width: clamp(112px, 9.35vw, 160px);
}

.p-recruit__card:nth-child(3) .p-recruit__cardIllust {
  width: clamp(156px, 12.675vw, 218px);
}

.p-recruit__cardBody {
  display: grid;
  grid-template-rows: minmax(clamp(34px, 2.5vw, 48px), auto) 1fr;
  align-items: start;
  gap: clamp(13px, 1.2vw, 18px);
  padding: clamp(20px, 1.9vw, 34px) clamp(22px, 2vw, 36px) clamp(28px, 2.6vw, 48px);
  text-align: center;
  transform: translateY(clamp(18px, 1.56vw, 30px));
}

.p-recruit__cardTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(34px, 2.5vw, 48px);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.125rem, 1.12vw, 1.375rem);
  font-weight: 700;
  color: #366750;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin: 0;
}

.p-recruit__cardText {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 0.92vw, 1.0625rem);
  font-weight: 500;
  color: #484C49;
  line-height: 2;
  letter-spacing: 0.03em;
  margin: 0;
}

.p-recruit__galleryArea {
  padding-top: clamp(32px, 3vw, 48px);
}

.p-recruit__galleryInner {
  --recruit-card-gap: clamp(16px, 2vw, 32px);
  --recruit-gallery-gap: clamp(12px, 1.4vw, 20px);
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 65.9% 1fr;
  gap: var(--recruit-card-gap);
  align-items: center;
}

.p-recruit__galleryPhotos {
  display: flex;
  gap: var(--recruit-gallery-gap);
}

.p-recruit__galleryItem {
  flex: 1;
}
.p-recruit__galleryItem picture {
  display: block;
  width: 100%;
}

.p-recruit__galleryPhoto {
  display: block;
  width: 100%;
  aspect-ratio: 296/236;
  object-fit: cover;
  border-radius: clamp(8px, 0.6vw, 12px);
}

.p-recruit__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: clamp(16px, 1.5vw, 24px);
  flex-shrink: 0;
  transform: translateX(clamp(-30px, -1.56vw, -20px));
}

.p-recruit__moreText {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 500;
  color: #484C49;
  line-height: 1.9;
  margin: 0;
}

.p-recruit__button {
  flex-shrink: 0;
}

@media (max-width: 1040px) {
  .p-recruit__upperInner {
    grid-template-columns: 1fr;
  }
  .p-recruit__rightCol {
    padding-bottom: clamp(40px, 6vw, 80px);
  }
  .p-recruit__visual {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: clamp(18px, 5vw, 42px);
    transform: none;
  }
  .p-recruit__photoWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 700/490;
  }
  .p-recruit__galleryInner {
    grid-template-columns: 1fr;
  }
  .p-recruit__galleryPhotos {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .p-recruit__galleryItem {
    flex: 0 0 clamp(200px, 60vw, 280px);
  }
  .p-recruit__messageRow {
    left: auto;
    transform: none;
    margin-bottom: clamp(18px, 4vw, 32px);
  }
  .p-recruit__commentSvg {
    width: clamp(240px, 58vw, 420px);
    transform: none;
  }
  .p-recruit__workerIllust {
    width: clamp(70px, 18vw, 110px);
    transform: none;
  }
  .p-recruit__cards {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .p-recruit__card {
    flex: 0 0 clamp(240px, 68vw, 340px);
    display: grid;
    grid-template-rows: clamp(150px, 44vw, 210px) 1fr;
  }
  .p-recruit__cardVisual,
  .p-recruit__cardBody {
    transform: none;
  }
}
.p-news {
  padding-bottom: clamp(60px, 6.25vw, 120px);
}

.p-news__head {
  padding-top: clamp(60px, 5.5vw, 96px);
  padding-bottom: clamp(32px, 3.5vw, 56px);
}

.p-news__headInner {
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 2vw, 32px);
}

.p-news__headGroup {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.4vw, 8px);
}

.p-news__title {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #001102;
  line-height: 1;
  letter-spacing: 0.08em;
  margin: 0;
}

.p-news__subtitle {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  font-weight: 500;
  color: #707470;
  letter-spacing: 0.1em;
  margin: 0;
}

.p-news__bird {
  display: block;
  width: clamp(80px, 7.3vw, 140px);
  height: auto;
  flex-shrink: 0;
  margin-bottom: clamp(4px, 0.3vw, 6px);
  animation: pNewsBirdFly 2.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .p-news__bird {
    animation: none;
  }
}

@keyframes pNewsBirdFly {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
}
.p-news__carouselWrap {
  width: 100%;
  overflow: hidden;
}

.p-news__track {
  display: flex;
  gap: clamp(12px, 1.67vw, 64px);
  list-style: none;
  margin: 0;
  padding: clamp(14px, 1.2vw, 22px) 0 clamp(32px, 3vw, 56px);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .p-news__track {
    transition: none;
  }
}

.p-news__item {
  flex: 0 0 clamp(240px, 20.83vw, 800px);
  width: clamp(240px, 20.83vw, 800px);
}

.p-news__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-news__link:hover .p-news__image, .p-news__link:focus-visible .p-news__image {
  transform: scale(1.07);
}
.p-news__link:hover .p-news__postTitle, .p-news__link:focus-visible .p-news__postTitle {
  color: #366750;
}

.p-news__thumbWrap {
  position: relative;
  margin-bottom: clamp(24px, 2.5vw, 44px);
}

.p-news__thumb {
  border-radius: clamp(50px, 6.1vw, 180px);
  overflow: hidden;
  aspect-ratio: 8/5;
  width: 100%;
  background-color: #F0F2F1;
}

.p-news__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-news__noThumb {
  width: 100%;
  height: 100%;
  background-color: #F0F2F1;
}

.p-news__new {
  position: absolute;
  top: clamp(10px, 0.9vw, 18px);
  left: clamp(10px, 0.9vw, 18px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  padding: clamp(3px, 0.25vw, 5px) clamp(10px, 0.85vw, 16px);
  background-color: #A72024;
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(0.625rem, 0.65vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  line-height: 1.5;
  pointer-events: none;
}

.p-news__category {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: clamp(4px, 0.3vw, 6px) clamp(16px, 1.35vw, 26px);
  background-color: #FCFDFC;
  border: 1.5px solid #C7CCC7;
  border-radius: 9999px;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  font-weight: 700;
  color: #484C49;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(0, 17, 2, 0.08);
  pointer-events: none;
}

.p-news__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.5vw, 10px);
  text-align: center;
}

.p-news__date {
  display: block;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  font-weight: 500;
  color: #9EA19E;
  letter-spacing: 0.08em;
}

.p-news__postTitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 700;
  color: #001102;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin: 0;
  transition: color 0.25s ease-out;
  width: 100%;
}

.p-news__footer {
  padding-top: clamp(24px, 2.5vw, 40px);
}

.p-news__footerInner {
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  padding-right: clamp(72px, 4.6vw, 88px);
}

.p-news__button {
  flex-shrink: 0;
}

.p-news__empty {
  width: min(1440px, 100vw - 120px);
  margin-inline: auto;
  font-size: clamp(1rem, 1vw, 1.125rem);
  color: #9EA19E;
  padding: clamp(24px, 3vw, 48px) 0;
}

@media (max-width: 1040px) {
  .p-news__headInner {
    width: calc(100vw - 48px);
  }
  .p-news__track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
    transition: none !important;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
    scroll-snap-type: x mandatory;
  }
  .p-news__item {
    flex: 0 0 clamp(240px, 72vw, 320px);
    width: clamp(240px, 72vw, 320px);
    scroll-snap-align: center;
  }
  .p-news__footerInner {
    width: calc(100vw - 48px);
    justify-content: center;
  }
}
/* ==================================================
   Contact Form 7 / Contact page
   ================================================== */
/* フォーム全体 */
.c-form {
  margin-top: 2rem;
}

/* 1行 */
.c-form__row {
  padding: 1.5rem 0;
  border-top: 1px solid #F0F2F1;
}
.c-form__row:first-child {
  border-top: 0;
  padding-top: 0;
}
@media (min-width: 768px) {
  .c-form__row {
    display: grid;
    grid-template-columns: 240px 1fr;
    column-gap: 2rem;
    align-items: start;
    padding: 2rem 0;
  }
}

/* ラベル側 */
.c-form__label {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #001102;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-form__label label {
  cursor: pointer;
}

/* 必須バッジ */
.c-form__req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  height: 22px;
  border-radius: 9999px;
  background: #001102;
  color: #FCFDFC;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  letter-spacing: 0.04em;
  margin-left: 0.5rem;
}

/* 入力側 */
.c-form__field {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .c-form__field {
    margin-top: 0;
  }
}

/* 入力コントロール共通 */
.c-form__control {
  width: 100%;
  display: block;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid #F0F2F1;
  border-radius: 8px;
  background: #FCFDFC;
  color: #484C49;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.6;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s ease-out;
}
.c-form__control::placeholder {
  color: #707470;
  opacity: 0.7;
}
.c-form__control:focus {
  outline: none;
  border-color: #366750;
  box-shadow: 0 0 0 3px rgba(58, 127, 160, 0.18);
  background: #FCFDFC;
}

/* textareaだけ調整 */
textarea.c-form__control {
  padding: 1rem;
  min-height: 200px;
  resize: vertical;
}

/* selectの見た目（最低限） */
select.c-form__control {
  padding-right: 2.5rem; /* ▼のスペース */
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #707470 50%), linear-gradient(135deg, #707470 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* 補足文 */
.c-form__help {
  margin-top: 0.75rem;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #707470;
}

/* アクション（送信ボタン） */
.c-form__actions {
  margin-top: 3rem;
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .c-form__actions {
    justify-content: flex-end;
  }
}
.c-form__actions .wpcf7-submit {
  min-height: 52px;
  padding: 0 3rem;
  border: 0;
  border-radius: 9999px;
  background: #001102 !important;
  color: #FCFDFC;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, box-shadow 0.15s ease-out;
}
.c-form__actions .wpcf7-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
}
.c-form__actions .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

/* CF7 バリデーション */
.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #dc2626;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.16);
}

/* 送信結果メッセージ */
.wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.6;
}

/* 成功・失敗で見た目を寄せる（CF7のclassに依存） */
.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.08);
  color: #484C49;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.08);
  color: #484C49;
}

/* 送信中のスピナー（CF7） */
.wpcf7-spinner {
  margin-left: 0.75rem;
}

/* ==================================================
   Contact Form 7 / Contact page - Tuning
   ================================================== */
/* 1) フォントサイズを少し大きく */
.c-form__label {
  font-size: clamp(1rem, 1vw, 1.125rem); /* sm→md */
  gap: 0.75rem; /* 必須との距離を広げる */
}

/* 必須バッジも少しだけ大きく見せる */
.c-form__req {
  height: 24px; /* 22→24 */
  padding: 0 0.75rem; /* 横余白を増やす */
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
}

/* 2) 各行の“区切りライン領域”を詰める */
.c-form__row {
  padding: 1rem 0; /* 24px→16px相当に */
}
@media (min-width: 768px) {
  .c-form__row {
    padding: 1.5rem 0; /* 48→24相当に */
    align-items: center; /* textarea以外は上下中央 */
  }
}

/* textarea行だけは上寄せ */
@media (min-width: 768px) {
  .c-form__row--textarea {
    align-items: start;
  }
}

/* 3) 入力欄の“枠がない”問題の保険：未適用でも最低限見えるように */
.wpcf7-form-control:not(.c-form__control) {
  border: 1px solid #F0F2F1;
  border-radius: 8px;
  background: #FCFDFC;
}

/* 4) 入力欄をもう少し“見える”ように（薄すぎる場合） */
.c-form__control {
  border-color: #C7CCC7; /* secondary-aより少し存在感 */
}

/* 5) 送信ボタンを左右中央に */
.c-form__actions {
  justify-content: center; /* 常に中央 */
}
@media (min-width: 768px) {
  .c-form__actions {
    justify-content: center; /* md以上も中央 */
  }
}

/* textareaの高さは今のまま（必要なら調整） */
textarea.c-form__control {
  min-height: 220px;
}

input[type=text], input[type=email], input[type=url], input[type=tel], input[type=password], input[type=search], input[type=number], textarea, select {
  border: 1px solid #707470;
}

select.c-form__control {
  border: 1px solid #707470;
}

[data-text-effect] {
  --pb-text-delay: 0ms;
  --pb-text-duration: 600ms;
  --pb-text-stagger: 24ms;
  position: relative;
}

[data-text-effect] .pb-char,
[data-text-effect] .pb-word {
  display: inline-block;
  will-change: transform, opacity, filter, clip-path;
  transition-property: transform, opacity, filter, clip-path;
  transition-duration: var(--pb-text-duration);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--pb-text-delay) + var(--i, 0) * var(--pb-text-stagger));
}

/* ======================================================
  20 Effects（data-text-effect="..."）
====================================================== */
/* 01: fade-up */
[data-text-effect].text-fade-up.is-text-ready .pb-char,
[data-text-effect].text-fade-up.is-text-ready .pb-word {
  opacity: 0;
  transform: translate3d(0, 0.65em, 0);
  filter: blur(2px);
}

[data-text-effect].text-fade-up.is-text-in .pb-char,
[data-text-effect].text-fade-up.is-text-in .pb-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* 02: fade */
[data-text-effect].text-fade.is-text-ready .pb-char,
[data-text-effect].text-fade.is-text-ready .pb-word {
  opacity: 0;
}

[data-text-effect].text-fade.is-text-in .pb-char,
[data-text-effect].text-fade.is-text-in .pb-word {
  opacity: 1;
}

/* 03: slide-left */
[data-text-effect].text-slide-left.is-text-ready .pb-char,
[data-text-effect].text-slide-left.is-text-ready .pb-word {
  opacity: 0;
  transform: translate3d(0.8em, 0, 0);
}

[data-text-effect].text-slide-left.is-text-in .pb-char,
[data-text-effect].text-slide-left.is-text-in .pb-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 04: slide-right */
[data-text-effect].text-slide-right.is-text-ready .pb-char,
[data-text-effect].text-slide-right.is-text-ready .pb-word {
  opacity: 0;
  transform: translate3d(-0.8em, 0, 0);
}

[data-text-effect].text-slide-right.is-text-in .pb-char,
[data-text-effect].text-slide-right.is-text-in .pb-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 05: slide-down */
[data-text-effect].text-slide-down.is-text-ready .pb-char,
[data-text-effect].text-slide-down.is-text-ready .pb-word {
  opacity: 0;
  transform: translate3d(0, -0.6em, 0);
}

[data-text-effect].text-slide-down.is-text-in .pb-char,
[data-text-effect].text-slide-down.is-text-in .pb-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 06: zoom-in */
[data-text-effect].text-zoom-in.is-text-ready .pb-char,
[data-text-effect].text-zoom-in.is-text-ready .pb-word {
  opacity: 0;
  transform: scale(0.92);
}

[data-text-effect].text-zoom-in.is-text-in .pb-char,
[data-text-effect].text-zoom-in.is-text-in .pb-word {
  opacity: 1;
  transform: scale(1);
}

/* 07: zoom-out */
[data-text-effect].text-zoom-out.is-text-ready .pb-char,
[data-text-effect].text-zoom-out.is-text-ready .pb-word {
  opacity: 0;
  transform: scale(1.08);
}

[data-text-effect].text-zoom-out.is-text-in .pb-char,
[data-text-effect].text-zoom-out.is-text-in .pb-word {
  opacity: 1;
  transform: scale(1);
}

/* 08: blur */
[data-text-effect].text-blur.is-text-ready .pb-char,
[data-text-effect].text-blur.is-text-ready .pb-word {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 0.25em, 0);
}

[data-text-effect].text-blur.is-text-in .pb-char,
[data-text-effect].text-blur.is-text-in .pb-word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

/* 09: rotate */
[data-text-effect].text-rotate.is-text-ready .pb-char,
[data-text-effect].text-rotate.is-text-ready .pb-word {
  opacity: 0;
  transform: rotate(-6deg) translate3d(0, 0.35em, 0);
  transform-origin: 50% 80%;
}

[data-text-effect].text-rotate.is-text-in .pb-char,
[data-text-effect].text-rotate.is-text-in .pb-word {
  opacity: 1;
  transform: rotate(0) translate3d(0, 0, 0);
}

/* 10: flip */
[data-text-effect].text-flip.is-text-ready .pb-char,
[data-text-effect].text-flip.is-text-ready .pb-word {
  opacity: 0;
  transform: perspective(800px) rotateX(65deg);
  transform-origin: 50% 100%;
}

[data-text-effect].text-flip.is-text-in .pb-char,
[data-text-effect].text-flip.is-text-in .pb-word {
  opacity: 1;
  transform: perspective(800px) rotateX(0);
}

/* 11: skew */
[data-text-effect].text-skew.is-text-ready .pb-char,
[data-text-effect].text-skew.is-text-ready .pb-word {
  opacity: 0;
  transform: skewY(10deg) translate3d(0, 0.35em, 0);
}

[data-text-effect].text-skew.is-text-in .pb-char,
[data-text-effect].text-skew.is-text-in .pb-word {
  opacity: 1;
  transform: skewY(0) translate3d(0, 0, 0);
}

/* 12: clip-up */
[data-text-effect].text-clip-up.is-text-ready .pb-char,
[data-text-effect].text-clip-up.is-text-ready .pb-word {
  opacity: 1;
  clip-path: inset(100% 0 0 0);
}

[data-text-effect].text-clip-up.is-text-in .pb-char,
[data-text-effect].text-clip-up.is-text-in .pb-word {
  clip-path: inset(0 0 0 0);
}

/* 13: clip-left */
[data-text-effect].text-clip-left.is-text-ready .pb-char,
[data-text-effect].text-clip-left.is-text-ready .pb-word {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
}

[data-text-effect].text-clip-left.is-text-in .pb-char,
[data-text-effect].text-clip-left.is-text-in .pb-word {
  clip-path: inset(0 0 0 0);
}

/* 14: tracking（コンテナ演出） */
[data-text-effect].text-tracking.is-text-ready {
  opacity: 0;
  letter-spacing: 0.18em;
  transform: translate3d(0, 0.35em, 0);
  transition: letter-spacing var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1), opacity var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1), transform var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pb-text-delay);
}

[data-text-effect].text-tracking.is-text-in {
  opacity: 1;
  letter-spacing: 0;
  transform: translate3d(0, 0, 0);
}

/* 15: underline（コンテナ演出） */
[data-text-effect].text-underline {
  display: inline-block;
  padding-bottom: 0.12em;
}

[data-text-effect].text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pb-text-delay);
}

[data-text-effect].text-underline.is-text-in::after {
  transform: scaleX(1);
}

/* 16: marker（コンテナ演出） */
[data-text-effect].text-marker {
  display: inline-block;
  background-image: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.14) 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  transition: background-size var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pb-text-delay);
}

[data-text-effect].text-marker.is-text-in {
  background-size: 100% 100%;
}

/* 17: wave（短いアニメ） */
@keyframes pbWaveIn {
  0% {
    transform: translate3d(0, 0.45em, 0);
    opacity: 0;
  }
  60% {
    transform: translate3d(0, -0.1em, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[data-text-effect].text-wave .pb-char,
[data-text-effect].text-wave .pb-word {
  transition: none;
}

[data-text-effect].text-wave.is-text-ready .pb-char,
[data-text-effect].text-wave.is-text-ready .pb-word {
  opacity: 0;
}

[data-text-effect].text-wave.is-text-in .pb-char,
[data-text-effect].text-wave.is-text-in .pb-word {
  animation: pbWaveIn var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--pb-text-delay) + var(--i, 0) * var(--pb-text-stagger));
}

/* 18: bounce（短いアニメ） */
@keyframes pbBounceIn {
  0% {
    transform: translate3d(0, 0.8em, 0);
    opacity: 0;
  }
  70% {
    transform: translate3d(0, -0.08em, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[data-text-effect].text-bounce .pb-char,
[data-text-effect].text-bounce .pb-word {
  transition: none;
}

[data-text-effect].text-bounce.is-text-ready .pb-char,
[data-text-effect].text-bounce.is-text-ready .pb-word {
  opacity: 0;
}

[data-text-effect].text-bounce.is-text-in .pb-char,
[data-text-effect].text-bounce.is-text-in .pb-word {
  animation: pbBounceIn var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--pb-text-delay) + var(--i, 0) * var(--pb-text-stagger));
}

/* 19: glitch（コンテナ演出） */
@keyframes pbGlitch {
  0% {
    text-shadow: 0 0 0 transparent;
  }
  30% {
    text-shadow: 2px 0 0 rgba(0, 0, 0, 0.35), -2px 0 0 rgba(0, 0, 0, 0.2);
  }
  60% {
    text-shadow: -1px 0 0 rgba(0, 0, 0, 0.35), 1px 0 0 rgba(0, 0, 0, 0.2);
  }
  100% {
    text-shadow: 0 0 0 transparent;
  }
}
[data-text-effect].text-glitch.is-text-ready {
  opacity: 0;
  transform: translate3d(0, 0.35em, 0);
  transition: opacity var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1), transform var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pb-text-delay);
}

[data-text-effect].text-glitch.is-text-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: pbGlitch 380ms linear 1;
  animation-delay: calc(var(--pb-text-delay) + 120ms);
}

/* 20: shine（コンテナ演出） */
@keyframes pbShine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
[data-text-effect].text-shine {
  display: inline-block;
  background-image: linear-gradient(90deg, currentColor 0%, currentColor 40%, rgba(255, 255, 255, 0.9) 50%, currentColor 60%, currentColor 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-text-effect].text-shine.is-text-ready {
  opacity: 0;
  transform: translate3d(0, 0.35em, 0);
  transition: opacity var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1), transform var(--pb-text-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pb-text-delay);
}

[data-text-effect].text-shine.is-text-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: pbShine 900ms ease-out 1;
  animation-delay: calc(var(--pb-text-delay) + 100ms);
}

@media (prefers-reduced-motion: reduce) {
  [data-text-effect] .pb-char,
  [data-text-effect] .pb-word {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
  [data-text-effect].text-tracking,
  [data-text-effect].text-glitch,
  [data-text-effect].text-shine {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    letter-spacing: 0 !important;
    background-size: 100% 100% !important;
  }
}
[data-typewriter] {
  visibility: hidden !important;
}

[data-typewriter].is-typewriter-pending {
  visibility: hidden !important;
}

[data-typewriter].is-typewriter-running,
[data-typewriter].is-typewriter-done {
  visibility: visible !important;
}

/* =======================================
   p-pillars（トップ第2セクション）
======================================= */
.p-pillars {
  position: relative;
  padding: clamp(56px, 7vw, 120px) 0;
  background: #fff;
  overflow: hidden;
}

/* 背景の斜めの淡い帯（カンプの雰囲気） */
.p-pillars::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(110deg, rgba(176, 203, 217, 0.25) 0%, rgba(176, 203, 217, 0.25) 38%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.p-pillars .l-container {
  position: relative;
  z-index: 1;
}

.p-pillars__head {
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 54px);
}

.p-pillars__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #001102;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.25;
}

.p-pillars__sub {
  margin: 10px 0 0;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(10, 30, 45, 0.62);
  font-size: clamp(13px, 1vw, 16px);
}

/* グリッド */
.p-pillars__grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 36px);
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin-inline: auto;
  /* 「タブレットも3列」方針 */
}
@media (min-width: 768px) {
  .p-pillars__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* カード */
.p-pillarsCard {
  --card-radius: 14px;
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  /* Staggerのtransformと競合しにくいように */
  will-change: transform, opacity;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

/* 画像（上段） */
.p-pillarsCard__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.p-pillarsCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* タイトル帯（白） */
.p-pillarsCard__body {
  position: relative;
  background: #fff;
  padding: clamp(14px, 1.6vw, 22px) clamp(14px, 1.6vw, 22px);
  text-align: center;
  min-height: 82px;
  display: grid;
  place-items: center;
}

/* 吹き出しの▼ */
.p-pillarsCard__body::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #fff;
}

.p-pillarsCard__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #001102;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
}

/* 下段：濃紺＋うっすら画像 */
.p-pillarsCard__foot {
  position: relative;
  padding: clamp(18px, 1.8vw, 26px);
  color: rgba(255, 255, 255, 0.92);
  background: #001102;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
}

/* 画像を薄く敷く（PHPから渡した --pb-card-bg を使用） */
.p-pillarsCard__foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pb-card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.05);
  filter: blur(0.5px);
}

/* 濃紺のグラデで締める（高級感） */
.p-pillarsCard__foot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 30, 45, 0.45) 0%, rgba(10, 30, 45, 0.7) 55%, rgba(10, 30, 45, 0.86) 100%);
}

.p-pillarsCard__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.015em;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.85;
}

/* ホバー（PCだけ上品に） */
@media (hover: hover) and (pointer: fine) {
  .p-pillarsCard {
    transition: transform 420ms ease, box-shadow 420ms ease;
  }
  .p-pillarsCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
  }
  .p-pillarsCard__img {
    transition: transform 700ms ease;
  }
  .p-pillarsCard:hover .p-pillarsCard__img {
    transform: scale(1.03);
  }
}
/* =======================================
   p-pillars：質感の最終調整
======================================= */
/* 斜め帯を“薄く・上品に” */
.p-pillars::before {
  inset: -26% -12%;
  background: linear-gradient(112deg, rgba(176, 203, 217, 0.22) 0%, rgba(176, 203, 217, 0.22) 40%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%);
}

/* 角丸と影を少しだけ“締める” */
.p-pillarsCard {
  --card-radius: 12px; /* 14→12で少し硬派に */
  box-shadow: 0 14px 34px rgba(10, 30, 45, 0.12);
}

/* 画像の角丸がボディと完全一致するように */
.p-pillarsCard__media {
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

/* タイトル帯の“白”をほんの少し柔らかく（真っ白すぎるとチープに見えやすい） */
.p-pillarsCard__body {
  background: rgba(255, 255, 255, 0.98);
}

/* ▼をほんの少し細く見せる（エッジの繊細さ） */
.p-pillarsCard__body::after {
  border-left-width: 8px;
  border-right-width: 8px;
  border-top-width: 8px;
  bottom: -8px;
}

/* 下段のオーバーレイを“上品に統一” */
.p-pillarsCard__foot::before {
  opacity: 0.18; /* 0.22→0.18 */
  filter: blur(0.8px);
}

.p-pillarsCard__foot::after {
  background: linear-gradient(to bottom, rgba(10, 30, 45, 0.42) 0%, rgba(10, 30, 45, 0.72) 55%, rgba(10, 30, 45, 0.9) 100%);
}

/* ホバー：動きを控えめに（高級感寄せ） */
@media (hover: hover) and (pointer: fine) {
  .p-pillarsCard {
    transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
  }
  .p-pillarsCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(10, 30, 45, 0.16);
  }
  .p-pillarsCard__img {
    transition: transform 900ms ease;
  }
  .p-pillarsCard:hover .p-pillarsCard__img {
    transform: scale(1.02);
  }
}
/* モーション配慮（stagger含め） */
@media (prefers-reduced-motion: reduce) {
  .p-pillarsCard,
  .p-pillarsCard__img {
    transition: none !important;
  }
}
/* =======================================
   p-pillars：SP余白をしっかり確保（体感2倍）
======================================= */
@media (max-width: 767px) {
  .p-pillars {
    padding: 88px 0;
  }
  .p-pillars__head {
    margin-bottom: 52px;
  }
  .p-pillars__title {
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .p-pillars__grid {
    gap: 44px;
    max-width: 520px;
    margin-inline: auto;
  }
  .p-pillarsCard__body {
    padding: 18px 16px;
    min-height: 78px;
  }
  .p-pillarsCard__title {
    font-size: clamp(18px, 5.2vw, 23px);
    line-height: 1.35;
  }
  .p-pillarsCard__foot {
    padding: 22px 20px;
    min-height: 122px;
  }
  .p-pillarsCard__desc {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.75;
  }
}
.p-news-latest {
  padding: 110px 0;
  background: #FCFDFC;
}

.p-news-latest__inner {
  max-width: 980px;
}

.p-news-latest__head {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .p-news-latest__head {
    margin-bottom: 28px;
  }
}

.p-news-latest__body {
  border-top: 1px solid rgba(0, 17, 2, 0.18);
}

.p-news-latest__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-news-latest__item {
  border-bottom: 1px solid rgba(0, 17, 2, 0.12);
}

.p-news-latest__link {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  color: #001102;
  text-decoration: none;
  transition: opacity 0.25s ease-out, color 0.25s ease-out;
}
.p-news-latest__link:hover {
  opacity: 0.72;
}
@media (max-width: 767px) {
  .p-news-latest__link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
}

.p-news-latest__date {
  display: block;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #707470;
}

.p-news-latest__title {
  display: block;
  min-width: 0;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.7;
  color: #001102;
  word-break: break-word;
}

.p-news-latest__more {
  margin-top: 28px;
  text-align: right;
}
@media (max-width: 767px) {
  .p-news-latest__more {
    margin-top: 22px;
  }
}

.p-news-latest__moreLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #001102;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.4;
  transition: opacity 0.25s ease-out;
}
.p-news-latest__moreLink::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
}
.p-news-latest__moreLink:hover {
  opacity: 0.72;
}

.p-news-latest__empty {
  margin: 24px 0 0;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #707470;
}

/* 英字・数字用（Poppins） */
.p-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}
@media (min-width: 1024px) {
  .p-article {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.p-article__header {
  display: flex;
  flex-direction: column;
}

.p-article__breadcrumb {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #F2F2E3;
  padding: 0.75rem 1rem;
}
@media (min-width: 1024px) {
  .p-article__breadcrumb {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.p-article__breadcrumb .c-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  line-height: 1.6;
}
.p-article__breadcrumb .c-breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-article__breadcrumb .c-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: #707470;
}
.p-article__breadcrumb .c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin: 0 0.5rem;
  color: #707470;
}
.p-article__breadcrumb .c-breadcrumb__link {
  color: #707470;
  text-decoration: none;
  transition: color 0.25s ease-out;
}
.p-article__breadcrumb .c-breadcrumb__link:hover {
  color: #A7A368;
}
.p-article__breadcrumb .c-breadcrumb__item[aria-current=page] {
  color: #001102;
  font-weight: 500;
}

.c-breadcrumb a {
  text-decoration: none !important;
  text-decoration-thickness: initial;
  text-underline-offset: initial;
}

.p-article__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  margin-top: 4rem;
}

.p-article__cat {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 0.75rem;
  border: 1px solid #C7CCC7;
  border-radius: 9999px;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #707470;
  background: #FCFDFC;
  text-decoration: none;
  transition: background 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out;
}
.p-article__cat:hover {
  background: #001102;
  color: #F0F2F1;
  border-color: #001102;
}

.p-article__title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #001102;
}

.p-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.p-article__metaItem {
  display: inline-flex;
  gap: 0.5rem;
  align-items: baseline;
}

.p-article__metaLabel {
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  color: #707470;
}

.p-article__metaValue {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #484C49;
}

.p-article__pdf {
  margin-top: 0.5rem;
}

.c-articlePdf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: #366750;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.25s ease-out;
}
.c-articlePdf:hover {
  color: #001102;
}

.c-articlePdf__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  line-height: 1;
}

.c-articlePdf__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.c-articlePdf__label {
  display: inline;
}

.p-article__thumb {
  margin: 2rem 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
}

.p-article__thumbImg {
  width: 100%;
  height: auto;
  display: block;
}

.p-article__body {
  margin-top: 2rem;
}

.p-article__content {
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.6;
  color: #484C49;
}

.p-article__locked {
  padding: 2rem;
  border: 1px solid #C7CCC7;
  border-radius: 8px;
  background: #F0F2F1;
}

.p-article__summary {
  font-size: clamp(1rem, 1vw, 1.125rem);
  color: #484C49;
  margin: 0;
}

.p-article__cta {
  margin-top: 1.5rem;
}

.p-article__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 3rem;
  border-radius: 9999px;
  background: #001102;
  color: #FCFDFC;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}
.p-article__ctaBtn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.p-articlePager {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #C7CCC7;
}

.p-articlePager__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .p-articlePager__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.p-articlePager__item {
  display: grid;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 1px solid #C7CCC7;
  border-radius: 8px;
  background: #FCFDFC;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.p-articlePager__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
}
.p-articlePager__item.is-empty {
  display: none;
}

.p-articlePager__kicker {
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  color: #707470;
}

.p-articlePager__title {
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  color: #001102;
  line-height: 1.35;
}

.p-taxArchive {
  padding: 3rem 0;
}

.p-taxArchive__title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #001102;
}

.p-taxArchive__list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.p-taxArchiveCard__link {
  display: block;
  padding: 1.5rem;
  border: 1px solid #C7CCC7;
  border-radius: 8px;
  background: #FCFDFC;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.p-taxArchiveCard__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
}

.p-taxArchiveCard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  color: #707470;
}

.p-taxArchiveCard__type {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 0.5rem;
  border-radius: 9999px;
  background: #EFF8F1;
  color: #001102;
}

.p-taxArchiveCard__title {
  margin-top: 0.75rem;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  line-height: 1.35;
  color: #001102;
}

.p-taxArchiveCard__excerpt {
  margin-top: 0.75rem;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #484C49;
}

.p-taxArchiveCard__lock {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: clamp(0.75rem, 0.7vw, 0.875rem);
  color: #707470;
}

/* 英字・数字用（Poppins） */
/* =========================================
   Archive
========================================= */
.l-main--archive {
  background: #FCFDFC;
}

.l-archive {
  padding: 3rem 0;
}

.l-archive__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .l-archive__inner {
    padding: 0 2rem;
  }
}

.l-archive__header {
  margin-bottom: 2rem;
}

.c-archive-title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.3;
  color: #001102;
  margin: 0 0 0.75rem;
}

.c-archive-description {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #707470;
  margin: 0;
}

/* 一覧（カードリスト）は既存の c-card-list を想定 */
/* =========================================
   Pagination (WP標準 the_posts_pagination)
========================================= */
.l-archive__pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.navigation.pagination {
  width: 100%;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #707470;
}

/* prev / next / number 共通 */
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25em;
  height: 2.25em;
  padding: 0 0.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: #707470;
  transition: color 0.25s ease-out, background 0.25s ease-out;
}

/* hover */
.navigation.pagination .nav-links a:hover {
  color: #001102;
  background: #F2F2E3;
}

/* 現在ページ：スクショの “下線だけ” っぽい見え方 */
.navigation.pagination .nav-links .current {
  color: #001102;
  background: transparent;
  border-radius: 0;
  height: auto;
  min-width: auto;
  padding: 0 0.25rem;
  border-bottom: 2px solid #001102;
}

/* 省略… */
.navigation.pagination .nav-links .dots {
  min-width: auto;
  padding: 0 0.25rem;
}

.p-archiveIntro {
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: 1.5rem 2rem;
  border-left: 1px solid #C7CCC7;
  background: #F2F2E3;
}
@media (max-width: 767px) {
  .p-archiveIntro {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
  }
}

.p-archiveIntro__text {
  margin: 0;
  color: #484C49;
  font-size: clamp(15px, 14.0909090909px + 0.2424242424vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-archiveIntro__text {
    font-size: clamp(0.875rem, 0.8vw, 1rem);
    line-height: 1.9;
  }
}

.p-archiveIntro__text + .p-archiveIntro__text {
  margin-top: 0.75rem;
}

/* 英字・数字用（Poppins） */
.p-company {
  padding: 4rem 0;
}
.p-company__header {
  margin-bottom: 2rem;
}
.p-company__title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #001102;
  margin-bottom: 4rem;
}
.p-company__lead {
  margin-top: 1rem;
  max-width: 64rem;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.6;
  color: #707470;
  margin-bottom: 4rem;
}
.p-company__table {
  border-top: 1px solid #F0F2F1;
}
.p-company__row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #F0F2F1;
}
@media (max-width: 767px) {
  .p-company__row {
    grid-template-columns: 13rem 1fr;
  }
}
@media (max-width: 575px) {
  .p-company__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.p-company__th {
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  font-weight: 500;
  color: #707470;
  letter-spacing: 0.02em;
}
.p-company__td {
  font-size: clamp(1rem, 1vw, 1.125rem);
  color: #001102;
  line-height: 1.6;
}
.p-company__td a {
  color: #366750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: 0.15s ease-out;
}
.p-company__td a:hover {
  opacity: 0.75;
}

/* ==================================================
   固定ページ（Gutenberg）共通
   ================================================== */
.c-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 5rem;
}
@media (min-width: 1024px) {
  .c-page {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.c-page__header {
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #F0F2F1;
}

.c-page__title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #001102;
}

.c-page__thumb {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.12);
}

.c-page__thumb-img {
  display: block;
  width: 100%;
  height: auto;
}

.c-page__body {
  margin-top: 2rem;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.6;
  color: #484C49;
  /* 余白ルール（読みやすさ） */
}
.c-page__body > * + * {
  margin-top: 1rem;
}
.c-page__body {
  /* 見出し */
}
.c-page__body h2, .c-page__body h3, .c-page__body h4 {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  color: #001102;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin-top: 3rem;
}
.c-page__body h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.c-page__body h3 {
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
}
.c-page__body h4 {
  font-size: clamp(1.25rem, 1.4vw, 1.5rem);
}
.c-page__body {
  /* リンク */
}
.c-page__body a {
  color: #366750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: 0.15s ease-out;
}
.c-page__body a:hover {
  opacity: 0.75;
}
.c-page__body {
  /* リスト */
}
.c-page__body ul, .c-page__body ol {
  padding-left: 1.4em;
}
.c-page__body li + li {
  margin-top: 0.5rem;
}
.c-page__body {
  /* 引用 */
}
.c-page__body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid #001102;
  background: #F0F2F1;
  border-radius: 4px;
  color: #484C49;
}
.c-page__body {
  /* Gutenbergの表 */
}
.c-page__body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #F0F2F1;
  background: #FCFDFC;
}
.c-page__body .wp-block-table th,
.c-page__body .wp-block-table td {
  border: 1px solid #F0F2F1;
  padding: 0.75rem 1rem;
  vertical-align: top;
}
.c-page__body .wp-block-table th {
  background: #EFF8F1;
  color: #001102;
  font-weight: 500;
}
.c-page__body {
  /* Gutenbergボタン（WP標準） */
}
.c-page__body .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 2rem;
  border-radius: 9999px;
  background: #001102;
  color: #FCFDFC;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}
.c-page__body .wp-block-button__link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.c-page__links {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F0F2F1;
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  color: #707470;
}

.c-page__links-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2em;
  height: 2.2em;
  margin-right: 0.5rem;
  border: 1px solid #F0F2F1;
  border-radius: 4px;
  text-decoration: none;
  color: #001102;
}

.c-page__edit-link {
  margin-top: 2rem;
}

.p-plans {
  background-color: #EFF8F1;
}

.p-plans__header {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.p-plans__title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #001102;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.p-plans__lead {
  margin-top: 1rem;
  color: #484C49;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.6;
}

.p-plans__notes {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #F0F2F1;
  padding-bottom: 6rem;
}

.p-plans__notes-title {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  color: #001102;
  letter-spacing: 0.02em;
}

.p-plans__list {
  margin-top: 1rem;
  padding-left: 1.2em;
  color: #484C49;
}
.p-plans__list li + li {
  margin-top: 0.5rem;
}
.p-plans__list strong {
  font-weight: 500;
  color: #001102;
}

.p-plans__links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.p-plans__link {
  color: #366750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: 0.15s ease-out;
}
.p-plans__link:hover {
  opacity: 0.75;
}

.p-company__nameImage {
  display: inline-block;
  width: auto;
  max-width: 75px;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 575px) {
  .p-company__nameImage {
    max-width: 60px;
  }
}
