@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

/* 初期：PC想定 */
.is-sp {
  display: none;
}

/* スマホ */
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
.path-anime.is-active .path-anime__text {
  animation: draw-text 2.5s ease-out forwards;
}

@keyframes draw-text {
  to {
    stroke-dashoffset: 0;
  }
}
/* 本体 */
.c-text-reveal {
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(28px, 5vw, 72px);
  line-height: 1.2;
}

/* JSが組み立てた「行」 */
.c-text-reveal__line {
  position: relative;
  display: block;
  /* 1行 = 1ブロック */
  overflow: hidden;
  /* 行ごとに隠す */
  padding: 0.06em 0;
  /* マスクの角丸が食い込まない用 */
}

/* 行のカバー（白→水色） */
.c-text-reveal__line::before,
.c-text-reveal__line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(var(--cover-x, -101%));
  transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
  pointer-events: none;
}

.c-text-reveal__line::before {
  background-color: #000000;
  transition-delay: calc(var(--d, 0) + 0s);
}

.c-text-reveal__line::after {
  background-color: #222222;
  transition-delay: calc(var(--d, 0) + 0.16s);
}

/* 文字本体（行の中で動かす） */
.c-text-reveal__word {
  display: inline-block;
  transform: translateX(var(--x, -110%)) skewX(var(--skewX, 8deg));
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--d, 0) + 0.3s);
  will-change: transform;
}

/* 発火状態（全部の行に効く） */
.c-text-reveal.is-active {
  --skewX: 0deg;
  --cover-x: 101%;
  --x: 0;
}

/* 動きが苦手な人への配慮 */
@media (prefers-reduced-motion: reduce) {
  .c-text-reveal__line::before,
  .c-text-reveal__line::after,
  .c-text-reveal__word {
    transition: none !important;
    transform: none !important;
  }
}
/* =========================================================
   Stagger Inview : 左からフェードイン
   ========================================================= */
/* 親（inviewコンテナ） */
.js-inview-each[data-inview=stagger-left] {
  /* 子要素（順番に表示されるアイテム） */
}
.js-inview-each[data-inview=stagger-left] .js-inview-eachItem {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.js-inview-each[data-inview=stagger-left] .js-inview-eachItem.is-inview {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   Stagger Inview : 右からフェードイン
   ========================================================= */
.js-inview-each[data-inview=stagger-right] .js-inview-eachItem {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.js-inview-each[data-inview=stagger-right] .js-inview-eachItem.is-inview {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   Stagger Inview : 下からフェードイン
   ========================================================= */
.js-inview-each[data-inview=stagger-up] .js-inview-eachItem {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.js-inview-each[data-inview=stagger-up] .js-inview-eachItem.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Stagger Inview : その場でフェードイン
   ========================================================= */
.js-inview-each[data-inview=stagger-fade] .js-inview-eachItem {
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}
.js-inview-each[data-inview=stagger-fade] .js-inview-eachItem.is-inview {
  opacity: 1;
}

.loading {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading.is-hide {
  opacity: 0;
  visibility: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #111;
}

.d-flex {
  display: flex;
}

@media (max-width: 768px) {
  .d-flex {
    display: block;
  }
}
.u-fullwide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* =========================================================
   margin
   ========================================================= */
/* margin */
.u-mt0 {
  margin-top: 0 !important;
}

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

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

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

/* padding */
.u-pt0 {
  padding-top: 0 !important;
}

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

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

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

/* ============================
  Header
============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #222;
  color: #fff;
}
.header__bar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: #222;
}
.header__inner {
  margin: 0 auto;
  padding: 0 24px;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header {
  /* ---------- logo ---------- */
}
.header__logo {
  flex: 0 0 auto;
}
.header__logo a {
  display: inline-flex;
  align-items: center;
  height: 84px;
}
.header__logo img {
  display: block;
  height: 44px;
  width: auto;
}
.header {
  /* ---------- toggle ---------- */
}
.header__toggle {
  display: none;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: 56px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
}
.header__toggleLines {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: background 0.2s ease;
}
.header__toggleLines::before, .header__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, top 0.2s ease;
}
.header__toggleLines::before {
  top: -8px;
}
.header__toggleLines::after {
  top: 8px;
}
.header {
  /* ============================
  PC（デフォルト）：通常の横並び
  ============================ */
}
.header__nav {
  flex: 1 1 auto;
  min-width: 0;
  position: static;
  height: auto;
  width: auto;
  background: transparent;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  display: block;
}
.header__navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-width: 0;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.header__menu > li {
  position: relative;
}
.header__menu > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.header__menu > li:hover::before {
  transform: scaleX(1);
}
.header__menu > li.is-current::before {
  transform: scaleX(1);
}
.header__menu a {
  display: inline-flex;
  align-items: center;
  height: 84px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.header__menu a:hover {
  opacity: 0.85;
}
.header__item--hasSub::before {
  display: none;
}
.header__item--hasSub .header__accordion {
  display: none;
}
.header__item--hasSub .header__subMenu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.header__item--hasSub .header__subMenu li {
  position: relative;
  width: 100%;
  /* 子要素にも上ライン（hover/current）を付けたいならここで */
}
.header__item--hasSub .header__subMenu li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .header__item--hasSub .header__subMenu li::before {
    display: none;
  }
}
.header__item--hasSub .header__subMenu li:hover::before {
  transform: scaleX(1);
}
.header__item--hasSub .header__subMenu li.is-current::before {
  transform: scaleX(1);
}
.header__item--hasSub .header__subMenu a {
  height: 84px;
}
.header__mobileOnly {
  display: none;
}
.header__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 24px;
}
.header__cta .btn {
  height: 48px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.header__cta .btn + .btn {
  margin-left: 14px;
  position: relative;
}
@media (max-width: 1024px) {
  .header__menu {
    gap: 18px;
  }
  .header__menu a {
    font-size: 14px;
  }
  .header__cta .btn {
    padding: 0 14px;
    font-size: 13px;
  }
}
.header {
  /* ============================
  SP：全画面メニュー
  ============================ */
}
@media (max-width: 768px) {
  .header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header__nav {
    position: fixed;
    left: 0;
    top: 84px;
    width: 100%;
    height: calc(100vh - 84px);
    background: #222;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .header__navInner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: 18px 20px 28px;
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header.is-open .header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header.is-open .header__toggleLines {
    background: transparent;
  }
  .header.is-open .header__toggleLines::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header.is-open .header__toggleLines::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header__menu {
    display: block;
    white-space: normal;
    width: 100%;
  }
  .header__menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header__menu > li::before {
    display: none;
  }
  .header__menu a {
    height: auto;
    width: 100%;
    padding: 10px 44px 10px 0;
    font-size: 16px;
    font-weight: bold;
    position: relative;
  }
  .header__menu a::after {
    content: ">";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
  }
  .header {
    /* SP：インフォメーション（アコーディオン） */
  }
  .header__item--hasSub .header__accordion {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 10px 44px 10px 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    position: relative;
  }
  .header__item--hasSub .header__accIcon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #fff;
  }
  .header__item--hasSub .header__accIcon::before,
  .header__item--hasSub .header__accIcon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #111;
    transform: translate(-50%, -50%);
  }
  .header__item--hasSub .header__accIcon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .header__item--hasSub .header__subMenu {
    display: none;
  }
  .header__item--hasSub.is-expanded .header__subMenu {
    display: flex;
  }
  .header__item--hasSub.is-expanded .header__accIcon::after {
    display: none;
  }
  .header {
    /* ★ SP：ブログ/コラム/ニュース 横一列・12px */
    /* ★ SP：ブログ/コラム/ニュース 横一列（> + 長い下線） */
  }
  .header__subMenu--row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 14px 0 16px;
    list-style: none;
  }
  .header__subMenu--row li {
    border-bottom: 0;
  }
  .header__subMenu--row a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 0 14px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    /* 左の「>」 */
  }
  .header__subMenu--row a::before {
    content: ">";
    display: inline-block;
    margin-right: 10px;
    font-weight: 900;
    opacity: 0.9;
  }
  .header__subMenu--row a {
    /* 下の長いライン */
  }
  .header__subMenu--row a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    top: unset;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
  }
  .header__mobileOnly {
    display: block;
  }
  .header__cta {
    width: 100%;
    margin-left: 0;
    display: grid;
    gap: 16px;
  }
  .header__cta .btn {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-size: 16px;
  }
  .header__cta .btn + .btn {
    margin-left: 0;
  }
  .header .border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .header .border-bottom-none {
    border-bottom: 0;
  }
}

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

.section {
  padding: 110px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
.section__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .section__inner {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
}
.section-signle {
  padding: 50px 0 110px 0;
}

/* ============================
  Footer
============================ */
.footer {
  background: #f5f5f5;
  padding: 64px 0;
  color: #111;
}
@media (max-width: 768px) {
  .footer {
    padding: 56px 0;
  }
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 380px 1fr 180px;
  gap: 50px;
  align-items: start;
  grid-template-areas: "brand nav sns";
}
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    grid-template-areas: "nav" "sns" "brand";
  }
}
.footer__brand {
  grid-area: brand;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
}
.footer__logo img {
  display: block;
  width: 130px;
  height: auto;
}
.footer__company {
  margin: 12px 0 0;
  margin-bottom: 0 !important;
  font-size: 16px;
}
.footer__address {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 2;
}
.footer__copyright {
  margin: 0;
  font-size: 12px;
}
.footer__nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(3, 0fr);
  gap: 24px 32px;
}
@media (max-width: 768px) {
  .footer__nav {
    gap: 18px 20px;
  }
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li + li {
  margin-top: 16px;
}
.footer__links a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer__links a {
    font-size: 14px;
  }
}
.footer__links a:hover {
  opacity: 0.8;
}
.footer__sns {
  grid-area: sns;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .footer__sns {
    justify-content: flex-start;
  }
}
.footer__snsBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer__snsBtn img {
  width: 54px;
  height: 54px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.footer__snsBtn:hover {
  opacity: 0.9;
}
.footer__snsBtn--line {
  margin-right: 20px;
}

strong,
b {
  font-weight: 700;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.btn:hover {
  opacity: 0.85;
}
.btn--primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.btn--secondary {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.Block__btn {
  width: 300px;
  margin: 100px auto 0 auto;
}

/* ============================
  Page FV
============================ */
.page p {
  margin-bottom: 1.5em;
}

.pageFv {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: #fff;
}
.pageFv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pageFv__bgImg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.pageFv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
@media (max-width: 1024px) {
  .pageFv {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .pageFv {
    height: 360px;
  }
}
.pageFv__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.pageFv__sub {
  margin: 0 0 14px !important;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .pageFv__sub {
    font-size: 18px;
  }
}
.pageFv__title {
  margin: 0;
  font-size: 80px;
  font-weight: 900;
  line-height: 1.1;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .pageFv__title {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .pageFv__title {
    font-size: 36px;
  }
}
.pageFv__ghost {
  position: absolute;
  right: -10px;
  bottom: 22px;
  /* ★固定heightを捨てる */
  height: auto;
  /* 右側に大きく出すけど、FV内に必ず収める */
  width: min(820px, 72vw);
  max-width: 900px;
  /* ★下基準で“上側の余白”を確保して、はみ出し防止 */
  top: 22px;
  max-height: calc(100% - 44px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 2;
  overflow: inherit;
}
.pageFv {
  /* SVGを枠にフィットさせる */
}
.pageFv .pageFv__ghost {
  display: block;
}
.pageFv .pageFv__ghost svg,
.pageFv svg.pageFv__ghost {
  width: 100%;
  height: 100%;
}
.pageFv .path-anime__text {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1px;
  font-size: clamp(96px, 12vw, 260px);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: inherit;
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
}

.pageFv__sub:empty {
  display: none;
}

.sectionBg--gray {
  background: #f5f5f5;
}

/* ===== path anime 共通 ===== */
.path-anime__text {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1px;
  font-size: 180px;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: inherit;
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
}

/* 発火 */
.path-anime.is-active .path-anime__text {
  animation: pathDraw 1.6s ease-out forwards;
}

@keyframes pathDraw {
  to {
    stroke-dashoffset: 0;
  }
}
/* ============================
  Common Typography Utilities
  （ブロックで1要素完結）
============================ */
.c-label {
  position: relative;
  padding-left: 22px;
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: bold;
  color: #111;
}
.c-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #111;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .c-label {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

/* 大見出し（導入セクションのh2想定） */
.c-heading-xl {
  margin: 0 0 40px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.18;
  color: #111;
}
@media (max-width: 768px) {
  .c-heading-xl {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

h2.wp-block-heading {
  margin: 0 0 40px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.18;
  color: #111;
}
@media (max-width: 768px) {
  h2.wp-block-heading {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

h3.wp-block-heading {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.18;
  color: #111;
}
@media (max-width: 768px) {
  h3.wp-block-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

/* 本文（段落の統一用） */
.c-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 1.6px;
  color: rgba(0, 0, 0, 0.85);
}
.c-text + .c-text {
  margin-top: 20px;
}

ul.wp-block-list li {
  list-style-type: disc;
  list-style-position: inside;
}

ol.wp-block-list li {
  list-style-type: decimal;
  list-style-position: inside;
}

/* ============================
  3up Images（左右余白なし）
============================ */
.c-media3 {
  overflow: hidden;
  width: 100%;
  margin-right: calc(24px * -1);
}
@media (max-width: 1024px) {
  .c-media3 {
    margin-left: 0;
    margin-right: 0;
  }
}

/* 横に流れる本体 */
.c-media3__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 28px;
  /* 無限ループ */
  animation: c-media3-loop 22s linear infinite;
}
@media (max-width: 1024px) {
  .c-media3__track {
    gap: 18px;
    animation-duration: 28s;
  }
}
.c-media3__track {
  /* iOSでガタつき軽減 */
  will-change: transform;
  transform: translateZ(0);
}

/* 画像 */
.c-media3__img {
  flex-shrink: 0;
  /* 1枚の横幅：3枚見せたい前提の目安 */
  width: 320px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .c-media3__img {
    width: 420px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .c-media3__img {
    width: 280px;
    height: 220px;
  }
}

/* 左に流れる（trackの幅の半分 = 1セット分だけ移動） */
@keyframes c-media3-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 14px));
  }
}
/* ============================
  Outline Chips（可変個数対応）
============================ */
.c-chipGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
@media (max-width: 768px) {
  .c-chipGrid {
    gap: 14px;
  }
}

.c-chip {
  height: 120px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 17px;
  text-align: center;
  text-decoration: none;
  color: #111;
}

.c-chip__text {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c-chip__text {
    font-size: 18px;
  }
}

/* ============================
  Service Cards（画像 + 見出し + 本文）
============================ */
.c-serviceGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}
@media (max-width: 768px) {
  .c-serviceGrid {
    gap: 22px;
  }
}

.c-serviceCard {
  background: transparent;
}

/* 画像（スクショの比率・大きめ） */
.c-serviceCard__media {
  margin: 0;
}

.c-serviceCard__img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .c-serviceCard__img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .c-serviceCard__img {
    height: 220px;
  }
}

/* 見出し（中央寄せ・太字・大きめ） */
.c-serviceCard__title {
  margin: 24px 0 18px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 2px;
  color: #111;
  text-align: center;
}
@media (max-width: 768px) {
  .c-serviceCard__title {
    font-size: 18px;
    margin: 18px 0 14px;
  }
}

/* 本文（行間広め・読みやすい） */
.c-serviceCard__text {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 1.6px;
  color: #222222;
}
@media (max-width: 768px) {
  .c-serviceCard__text {
    font-size: 15px;
  }
}

/* ============================
  Feature Cards（強み：黒帯ヘッダー）
============================ */
.c-featureGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
}
@media (max-width: 768px) {
  .c-featureGrid {
    gap: 18px;
  }
}

.c-featureCard {
  border: 1px solid rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

/* 上の黒帯 */
.c-featureCard__head {
  margin: 0;
  padding: 22px 20px;
  background: #222;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 36px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-featureCard__head {
    font-size: 22px;
    padding: 22px 14px;
  }
}

/* 本文 */
.c-featureCard__body {
  padding: 30px 20px 30px;
}
@media (max-width: 768px) {
  .c-featureCard__body {
    padding: 24px 18px 22px;
  }
}

/* 中の太いリード（2行） */
.c-featureCard__lead {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  color: #111;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c-featureCard__lead {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

/* 説明文 */
.c-featureCard__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 1.6px;
}

/* ============================
  Post Cards（3カラム）
============================ */
.c-postGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .c-postGrid {
    gap: 22px;
    margin-top: 60px;
  }
}

.c-postCard {
  background: #fff;
}

.c-postCard__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 画像 */
.c-postCard__media {
  margin: 0 0 18px;
}

.c-postCard__media img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .c-postCard__media img {
    height: 200px;
  }
}

/* タイトル */
.c-postCard__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #111;
}
@media (max-width: 768px) {
  .c-postCard__title {
    font-size: 20px;
  }
}

/* カテゴリタグ */
.c-postCard__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #222;
  color: #fff;
  border-radius: 4px;
}

/* メタ情報 */
.c-postCard__meta {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}

/* 抜粋 */
.c-postCard__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.85);
}

/* ============================
  Pagination
============================ */
.c-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.c-pagination__list {
  display: flex;
  border: 1px solid #CCCCCC;
}

.c-pagination__item {
  border-right: 1px solid #CCCCCC;
}
.c-pagination__item:last-child {
  border-right: none;
}
.c-pagination__item a,
.c-pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: background 0.15s ease, color 0.15s ease;
}
.c-pagination__item {
  /* hover（強制的に同じ色にする） */
}
.c-pagination__item a:hover {
  background: #222;
  color: #fff;
  opacity: 1;
}
.c-pagination__item {
  /* visitedでも色が変わらないように */
}
.c-pagination__item a:visited {
  color: #111;
}
.c-pagination__item {
  /* 現在ページ */
}
.c-pagination__item.is-current span {
  background: #222;
  color: #fff;
}
.c-pagination__item {
  /* 次へ */
}
.c-pagination__item--next a {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
}

/* ============================
  Category Nav（コンパクト版）
============================ */
.c-catNav {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

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

.c-catNav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* ← 丸と文字の間 */
  text-decoration: none;
  color: #222;
}

.c-catNav__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #fff;
  font-size: 12px;
  /* > が潰れないサイズ */
  font-weight: 700;
  line-height: 1;
}

.c-catNav__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* ============================
  News List（PC + SP）
============================ */
.c-newsList {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #CCCCCC;
  margin-top: 40px;
}

.c-newsItem {
  border-bottom: 1px solid #CCCCCC;
}

/* 1行まるごとリンク */
.c-newsItem__link {
  display: flex;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
}

/* 日付 */
.c-newsItem__date {
  font-size: 18px;
  /* 指定：18px */
  font-weight: 700;
  margin-right: 24px;
  /* 指定：24px */
  white-space: nowrap;
}

/* カテゴリ */
.c-newsItem__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  /* 指定：14px */
  font-weight: 700;
  color: #fff;
  background: #222222;
  /* 指定：#222222 */
  border-radius: 4px;
  /* 指定：4px */
  padding: 6px 12px;
  margin-right: 24px;
  /* 指定：24px */
  white-space: nowrap;
}

/* タイトル */
.c-newsItem__title {
  font-size: 18px;
  /* 指定：18px */
  font-weight: 700;
  line-height: 1.6;
}

/* ============================
  SP（スマホ）
  - フォント -2px
  - 余白 24px → 10px
  - タイトルは1段下
============================ */
@media (max-width: 767px) {
  .c-newsItem__link {
    flex-wrap: wrap;
    /* タイトルを下段に落とす */
  }
  .c-newsItem__date {
    font-size: 16px;
    /* 18 → 16 */
    margin-right: 10px;
    /* 24 → 10 */
  }
  .c-newsItem__cat {
    font-size: 12px;
    /* 14 → 12 */
    margin-right: 0;
    /* 下段に落とすので右余白不要 */
  }
  .c-newsItem__title {
    width: 100%;
    /* 1段下 */
    margin-top: 8px;
    font-size: 16px;
    /* 18 → 16 */
  }
}
/* ============================
  Company Info
============================ */
.c-companyInfo {
  border-top: 1px solid #CCCCCC;
}

.c-companyInfo__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  line-height: 1.8;
}

.c-companyInfo__head {
  font-weight: 700;
}

.c-companyInfo__body a {
  color: #1a5cff;
  text-decoration: none;
}
.c-companyInfo__body a:hover {
  text-decoration: underline;
}

/* ============================
  SP（1カラムに解除）
============================ */
@media (max-width: 767px) {
  .c-companyInfo__row {
    grid-template-columns: 1fr;
    row-gap: 6px;
    font-size: 14px;
    /* -2px */
  }
}
/* ============================
  Contact Box
============================ */
.c-contactBox {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
  border: 1px solid #222;
  border-radius: 6px;
  text-align: center;
  background: #fff;
}

.c-contactBox__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.c-contactBox__text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.c-contactBox__btnWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.c-contactBox__btn {
  margin-bottom: 32px;
  width: 100%;
}
.c-contactBox__btn .btn--primary {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
  height: 80px;
  padding: 11px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #222;
  color: #fff;
}

.c-contactBox__tel {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-contactBox__telNum {
  font-size: 32px;
  font-weight: 700;
  margin: 0 6px;
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-contactBox__telNum img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5px;
}

.c-contactBox__telTime {
  font-size: 12px;
  font-weight: 700;
}

/* ============================
  SP
============================ */
@media (max-width: 767px) {
  .c-contactBox {
    padding: 32px 16px;
    text-align: left;
  }
  .c-contactBox__title {
    font-size: 18px;
  }
  .c-contactBox__tel {
    display: block;
    text-align: center;
  }
  .c-contactBox__text {
    font-size: 14px;
  }
  .c-contactBox__telNum {
    font-size: 20px;
  }
  .c-contactBox__telNum img {
    width: 20px;
    height: 20px;
  }
  .c-contactBox__telTime {
    display: block;
  }
}
/* ============================
    single
  Interview Hero
============================ */
.c-interviewHero {
  position: relative;
  height: 400px;
  /* 写真全体の高さ */
  overflow: hidden;
  margin-bottom: 50px;
}

/* 写真 */
.c-interviewHero__image {
  height: 100%;
  width: 700px;
}
@media (max-width: 767px) {
  .c-interviewHero__image {
    width: 100%;
  }
}

.c-interviewHero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* テキストボックス */
.c-interviewHero__content {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 300px;
  /* ★指定：300px */
  width: 45%;
  background: rgba(34, 34, 34, 0.9);
  color: #fff;
  padding: 32px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* タイトル */
.c-interviewHero__title {
  font-size: 36px;
  /* 指定 */
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* メタ情報 */
.c-interviewHero__meta {
  font-size: 24px;
  /* 指定 */
  line-height: 1.6;
}

/* ============================
  SP
============================ */
@media (max-width: 767px) {
  .c-interviewHero {
    height: auto;
  }
  .c-interviewHero__image {
    height: 240px;
  }
  .c-interviewHero__content {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: auto;
    padding: 24px;
  }
  .c-interviewHero__title {
    font-size: 24px;
  }
  .c-interviewHero__meta {
    font-size: 16px;
  }
}
/* ============================
  Q Heading
============================ */
.c-qHeading {
  margin-bottom: 24px;
}

.c-qHeading__title {
  position: relative;
  padding-left: 20px;
  /* 線との余白 */
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
.c-qHeading__title::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 5px;
  /* 線の太さ */
  height: 1.2em;
  background: #222;
}

/* ============================
  Q Text
============================ */
.c-qText {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}
.c-qText:not(:last-child) {
  margin-bottom: 16px;
}

/* ============================
  SP
============================ */
@media (max-width: 767px) {
  .c-qHeading__title {
    font-size: 22px;
  }
  .c-qText {
    font-size: 14px;
  }
}
/* ============================
  People Grid
============================ */
.c-peopleGrid {
  position: relative;
  margin-top: 80px;
}

/* ===== 見出しエリア ===== */
.c-peopleGrid__head {
  position: relative;
  margin-bottom: 48px;
}

.c-peopleGrid__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* アウトライン文字（PERSON） */
.c-peopleGrid__ghost {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px #cccccc;
  text-stroke: 1px #cccccc;
  z-index: 1;
  pointer-events: none;
}

/* ===== カードリスト ===== */
.c-peopleGrid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===== カード ===== */
.c-peopleCard {
  list-style: none;
}

.c-peopleCard__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* 画像 */
.c-peopleCard__thumb {
  width: 340px;
  height: 200px;
  overflow: hidden;
  margin-bottom: 16px;
}
.c-peopleCard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 画像下タイトル */
.c-peopleCard__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* メタ情報 */
.c-peopleCard__meta {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}
.c-peopleCard__meta:not(:last-child) {
  margin-bottom: 4px;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 1024px) {
  .c-peopleGrid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-peopleGrid__title {
    font-size: 28px;
  }
  .c-peopleGrid__ghost {
    font-size: 100px;
    top: -20px;
  }
  .c-peopleGrid__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .c-peopleCard__thumb {
    width: 100%;
    height: 200px;
  }
}
/* ============================
  Post Layout (single)
============================ */
.l-post {
  border: 1px solid #CCC;
  border-top: 5px solid #222222;
}

.l-post__inner {
  padding: 50px;
}
@media (max-width: 768px) {
  .l-post__inner {
    padding: 20px;
  }
}

/* ============================
  Post Hero
============================ */
.c-postHero__media {
  position: relative;
  width: 610px;
  margin-bottom: 50px;
  /* 画像が無い場合でもカテゴリを表示できるように */
  display: inline-block;
}

/* カテゴリー（画像上 or 単体表示） */
.c-postHero__cat {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #222;
  padding: 8px 14px;
  width: 116px;
  display: flex;
  justify-content: center;
}

/* アイキャッチ（ある場合のみ） */
.c-postHero__thumb {
  width: 100%;
  height: 400px;
}
.c-postHero__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ▼ 画像が無い場合用の調整 */
.c-postHero__media:not(:has(.c-postHero__thumb)) {
  margin-bottom: 24px;
}
.c-postHero__media:not(:has(.c-postHero__thumb)) .c-postHero__cat {
  position: static;
}

/* タイトル */
.c-postHero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  color: #000;
}

/* 日付 */
.c-postHero__date {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 40px;
  color: #000;
}

/* ===== SP ===== */
@media (max-width: 768px) {
  .c-postHero__media {
    width: 100%;
    margin-bottom: 24px;
  }
  .c-postHero__thumb {
    height: auto;
  }
  .c-postHero__thumb img {
    height: auto;
  }
  .c-postHero__title {
    font-size: 28px;
  }
  .c-postHero__date {
    font-size: 18px;
  }
}
/* ============================
  Post Body
============================ */
.c-postBody {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}
.c-postBody p {
  margin: 0 0 24px;
}
.c-postBody {
  /* 見出し（縦線あり） */
}
.c-postBody h2 {
  position: relative;
  padding-left: 20px;
  margin: 0 0 32px;
  font-size: 24px;
  font-weight: 700;
}
.c-postBody h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #222;
}
.c-postBody {
  /* 小見出し（■） */
}
.c-postBody h3 {
  margin: 48px 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.c-postBody h3::before {
  content: "■";
  display: inline-block;
  margin-right: 10px;
}

/* ===== SP ===== */
@media (max-width: 768px) {
  .c-postBody {
    font-size: 14px;
  }
  .c-postBody p {
    margin-bottom: 20px;
  }
  .c-postBody__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .c-postBody__subheading {
    font-size: 18px;
    margin: 40px 0 20px;
  }
}
/* ============================
  Sidebar Category Box
============================ */
.c-sideBox {
  width: 340px;
  border: 1px solid #cccccc;
  background: #fff;
  margin-left: 30px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .c-sideBox {
    width: 100%;
    margin-left: 0;
    margin-top: 60px;
  }
}

.c-sideBox__title {
  margin: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.c-sideBox__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sideBox__item {
  border-top: 1px solid #cccccc;
}
.c-sideBox__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #222222;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

/* ============================
  Side: New Posts
============================ */
.c-sideNew {
  width: 340px;
  max-width: 100%;
  margin-left: 30px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .c-sideNew {
    margin-left: 0px;
  }
}

.c-sideNew__head {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.c-sideNew__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-sideNew__item {
  border-bottom: 1px solid #cccccc;
  padding: 30px 0;
}

.c-sideNew__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-sideNew__thumb {
  margin: 0 0 20px;
  width: 100%;
  aspect-ratio: 394/295;
  overflow: hidden;
  background: #f5f5f5;
}
.c-sideNew__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sideNew__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.c-sideNew__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.c-sideNew__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 4px;
  background: #222222;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.c-sideNew__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* SP */
@media (max-width: 768px) {
  .c-sideNew {
    width: 100%;
  }
}
/* ============================
  Contact Form
============================ */
.c-contactForm {
  padding: 60px 0 120px;
}

.c-contactForm__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.c-contactForm__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
}

.c-contactForm__lead {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
  color: #222;
}

.c-contactForm__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
}

.c-contactForm__telIcon {
  font-size: 16px;
  line-height: 1;
}

.c-contactForm__telNum {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

.c-contactForm__telNote {
  font-size: 12px;
  font-weight: 700;
  color: #222;
}

/* ============================
  Form base
============================ */
.c-form__row {
  margin-bottom: 30px;
}

.c-form__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.c-form__label {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
@media (max-width: 768px) {
  .c-form__label {
    font-size: 16px;
  }
}

.c-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #b30000;
  border-radius: 2px;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  color: #222;
  outline: none;
}
@media (max-width: 768px) {
  .c-form__input,
  .c-form__select,
  .c-form__textarea {
    font-size: 14px;
  }
}

.c-form__input,
.c-form__select {
  height: 43px;
  padding: 0 14px;
}

.c-form__textarea {
  height: 180px;
  padding: 12px 14px;
  resize: vertical;
}

.c-form__input::-moz-placeholder, .c-form__textarea::-moz-placeholder {
  color: rgba(34, 34, 34, 0.45);
}

.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: rgba(34, 34, 34, 0.45);
}

/* 生年月日 */
.c-form__birth {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.c-form__birthItem {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-form__unit {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

/* 郵便番号 + リンク */
.c-form__zip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.c-form__input--zip {
  width: 220px;
  max-width: 100%;
}

.c-form__zipLink {
  font-size: 16px;
  font-weight: 400;
  color: #1a73e8;
  text-decoration: none;
}

/* ラジオ */
.c-form__radios {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.c-form__radioLabel {
  font-size: 14px;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* 同意 */
.c-form__consent {
  margin: 30px 0 22px;
  display: flex;
  justify-content: center;
}

.c-form__consentLabel {
  font-size: 16px;
  color: #1a73e8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.c-form__consentLabel input {
  transform: translateY(1px);
}

/* 送信 */
.c-form__actions {
  display: flex;
  justify-content: center;
}

.c-form__submit {
  width: 440px;
  max-width: 100%;
  height: 80px;
  border: none;
  border-radius: 2px;
  font-size: 24px;
  font-weight: 700;
  background: #f2f2f2;
  color: rgba(34, 34, 34, 0.4);
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .c-form__submit {
    width: 100%;
    height: 60px;
    font-size: 18px;
  }
}

/* 有効時（JS等でdisabled外したら） */
.c-form__submit:not(:disabled) {
  background: #222;
  color: #fff;
  cursor: pointer;
}

.c-form__copyright {
  margin-top: 40px;
  text-align: center;
}

.c-form__copyrightText {
  font-size: 12px;
  line-height: 1.6;
  color: #000;
  font-weight: 700;
  display: block;
}
@media (max-width: 768px) {
  .c-form__copyrightText {
    font-size: 11px;
  }
}

/* ============================
  SP
============================ */
@media (max-width: 768px) {
  .c-contactForm {
    padding: 40px 0 80px;
  }
  .c-contactForm__inner {
    padding: 0 16px;
  }
  .c-contactForm__telNum {
    font-size: 20px;
  }
  .c-form__birth {
    gap: 10px;
  }
  .c-form__birthItem {
    width: 100%;
  }
  .c-form__birthItem .c-form__select {
    width: 100%;
  }
  .c-form__zip {
    gap: 10px;
  }
  .c-form__input--zip {
    width: 100%;
  }
}
.wpcf7-list-item {
  display: block !important;
  margin: 0 !important;
}

.wpcf7-spinner, .wpcf7-response-output {
  display: none !important;
}

.c-form__consentLabel {
  color: #000 !important;
}

/* =========================
   添付資料
========================= */
.c-form__files {
  border-top: 1px solid #ddd;
}

/* 1行（履歴書 / 職務経歴書） */
.c-form__fileRow {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 768px) {
  .c-form__fileRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* 左ラベル（履歴書 / 職務経歴書） */
.c-form__fileLabel {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

/* 右：ファイル入力 */
.c-form__fileField {
  position: relative;
  /* CF7 file input */
}
.c-form__fileField .c-form__file {
  font-size: 14px;
  color: #888;
}
.c-form__fileField .c-form__file::file-selector-button {
  margin-right: 12px;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  color: #111;
  font-size: 13px;
  cursor: pointer;
}
.c-form__fileField .c-form__file::file-selector-button:hover {
  background: #f5f5f5;
}

/* 未選択テキスト（「選択されていません」） */
.c-form__fileField .wpcf7-form-control-wrap {
  display: inline-block;
}
.c-form__fileField input[type=file]:not(:valid) {
  color: #999;
}

/* 注意書き */
.c-form__fileNotes {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.c-linkExternal {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1571DA;
  font-weight: 500;
}
.c-linkExternal::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-right: 4px;
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-linkExternal:hover {
  opacity: 0.8;
}

/* ============================
  CF7 Error Styles
============================ */
/* 入力エラー（input / textarea / select 共通） */
.c-form .wpcf7-not-valid {
  border-color: #B00000;
  background: rgba(178, 30, 20, 0.1);
  outline: none;
}
.c-form {
  /* フォーカス中も赤系で統一 */
}
.c-form .wpcf7-not-valid:focus {
  border-color: #B00000;
  box-shadow: 0 0 0 2px rgba(176, 0, 0, 0.1);
}
.c-form {
  /* エラーメッセージ */
}
.c-form .wpcf7-not-valid-tip {
  margin-top: 10px;
  display: block;
  color: #B00000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.c-form {
  /* wrapがp等に包まれても崩れないように */
}
.c-form .wpcf7-form-control-wrap {
  display: block;
}

/* 添付資料：CF7の個別tipは出さない（1つだけ自前で出す） */
.c-form__files .wpcf7-not-valid-tip {
  display: none;
}

/* 添付資料：まとめて出すエラー文言 */
.c-form__filesError {
  line-height: 1.4;
  color: #B00000;
  font-size: 18px;
  font-weight: 700;
  margin-top: -20px;
}

/* 添付資料：未選択の行を赤くしたい場合（任意） */
.c-form__fileRow.is-error input[type=file] {
  color: #B00000;
}

/* メニューグリッド */
.c-menuGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.c-menuGrid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: 1px solid #333;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
  background: #fff;
}

/* =========================================
  FV (First View)
========================================= */
.fv {
  position: relative;
  height: 680px;
  overflow: hidden;
  color: #fff;
  /* ---------- background image ---------- */
}
.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv {
  /* ---------- overlay (readability) ----------
     FVは“軽く”暗くする（messageセクションほど濃くしない）
  ----------------------------------------- */
}
.fv__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(to right, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 32%, rgba(0, 0, 0, 0) 70%);
}
.fv__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
.fv {
  /* ---------- main headline (top-left) ---------- */
}
.fv__headline {
  font-size: 80px;
  text-shadow: 0 0 250px #000;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .fv__headline {
    font-size: 40px;
  }
}
.fv__headline .fv__br-sp {
  display: none;
}
@media (max-width: 768px) {
  .fv__headline .fv__br-sp {
    display: inline;
  }
}
.fv {
  /* ---------- FIX logo (right) ---------- */
}
.fv__mark {
  position: absolute;
  bottom: 70px;
  right: 24px;
  opacity: 0.5;
  z-index: 2;
}
.fv__mark img {
  width: 362px;
  max-width: 32vw;
  height: auto;
}
.fv {
  /* ============================
    Responsive
  ============================ */
}
@media (max-width: 768px) {
  .fv {
    height: 400px;
  }
  .fv__inner {
    padding: 45px 24px;
    gap: 24px;
  }
  .fv__headline {
    font-size: 40px;
  }
  .fv__mark {
    bottom: 100px;
  }
  .fv__mark img {
    width: 158px;
  }
  .fv {
    /* SPは読みやすさを少しだけ上げる（濃くしすぎない） */
  }
  .fv__shade {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.46) 100%), linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0) 86%);
  }
}

/* =========================================
  MESSAGE
========================================= */
.message {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 120px 0;
  min-height: 520px;
  margin-top: -140px;
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
}
@media (max-width: 768px) {
  .message {
    width: 100%;
    box-sizing: border-box;
  }
}
.message {
  /* ---------- inner ---------- */
}
.message__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  /* ゴーストと本文の重なりを安定させる */
  min-height: 420px;
  display: flex;
  align-items: center;
}
.message {
  /* ---------- ghost text (SVG) ---------- */
}
.message .message__ghost {
  position: absolute;
  left: 70%;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 300px;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: visible;
}
@media (max-width: 768px) {
  .message .message__ghost {
    width: 100%;
    top: auto;
    bottom: -15%;
    transform: translate(-50%, 50%);
    height: 100px;
    left: 60%;
  }
}
.message .path-anime__text {
  font-size: 260px;
  font-weight: 700;
  letter-spacing: -7.8px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2px;
  /* パスアニメ用 */
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
@media (max-width: 768px) {
  .message .path-anime__text {
    font-size: 200px;
  }
}
.message .path-anime.is-active .path-anime__text {
  animation: draw-text 2.5s ease-out forwards;
}
@keyframes draw-text {
  to {
    stroke-dashoffset: 0;
  }
}
.message {
  /* ---------- content block ---------- */
}
.message__content {
  position: relative;
  z-index: 2;
}
.message__catch {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 28px;
}
.message__text {
  font-size: 20px;
  line-height: 2;
  opacity: 0.92;
  margin: 0;
}
.message {
  /* ============================
    Responsive
  ============================ */
}
@media (max-width: 768px) {
  .message {
    padding: 100px 0;
    min-height: 420px;
  }
  .message__inner {
    min-height: 0;
    align-items: flex-start;
  }
  .message__content {
    max-width: 100%;
  }
  .message__catch {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .message__text {
    font-size: 14px;
    line-height: 30px; /* 214.286% */
    letter-spacing: 1.4px;
  }
  .message {
    /* SPは少し濃くして読みやすさ優先 */
  }
  .message__shade {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.62) 100%), linear-gradient(to right, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0) 92%), radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.28) 100%);
  }
}

/* ============================
  About (mediaはposition配置)
============================ */
.section--about {
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .section--about {
    padding: 60px 0 70px;
  }
}

/* ---------- left (text) ---------- */
.about__content {
  padding-top: 6px;
}
@media (max-width: 768px) {
  .about__content {
    margin-bottom: 40px;
  }
}

.about__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: bold;
  color: #111;
}
@media (max-width: 768px) {
  .about__label {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.about__label-mark {
  width: 16px;
  height: 16px;
  background: #111;
  display: inline-block;
}

.about__title {
  margin: 0 0 60px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: #111;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.about__text {
  margin: 0;
  max-width: 520px;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  color: #111;
}
@media (max-width: 768px) {
  .about__text {
    font-size: 15px;
  }
}

/* ---------- right (images / position) ---------- */
.about__media {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}
@media (max-width: 1024px) {
  .about__media {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .about__media {
    height: auto;
    position: static;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.about__media__content {
  display: flex;
}

/* 共通：白フレーム＋画像フィット */
.about__photo {
  margin: 0;
  background: #fff;
  padding: 10px;
}
@media (max-width: 768px) {
  .about__photo {
    padding: 0px;
  }
}
.about__photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 左の大きい画像 */
.about__photo--main {
  width: 400px;
  height: 450px;
}
@media (max-width: 768px) {
  .about__photo--main {
    width: 100%;
    height: 234px;
    margin-right: 10px;
  }
}

/* 右の細長い縦画像 */
.about__photo--sub {
  width: 300px;
  height: 350px;
}
@media (max-width: 768px) {
  .about__photo--sub {
    width: 100%;
    height: 182px;
    margin-top: 16px;
  }
}

/* ============================
  Business section（背景CSS）
============================ */
.section--business {
  position: relative;
  overflow: hidden;
  padding-top: 126px;
  padding-bottom: 80px;
  background: #fff;
  /* 背景画像（ここだけ差し替えればOK） */
}
.section--business::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: url("../img/top/business-hero.jpg") center/cover no-repeat;
  z-index: 0;
}
.section--business {
  /* 暗くするオーバーレイ */
}
.section--business::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 430px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
@media (max-width: 768px) {
  .section--business {
    padding-top: 65px;
    padding-bottom: 60px;
  }
  .section--business::before, .section--business::after {
    height: 360px;
  }
}

.section--business .section__inner {
  position: relative;
  z-index: 2;
}

/* ---------- 左上コピー ---------- */
.businessLead {
  color: #fff;
  max-width: 720px;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .businessLead {
    margin-bottom: 90px;
  }
}
.businessLead__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .businessLead__label {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.businessLead__mark {
  width: 16px;
  height: 16px;
  background: #fff;
}
.businessLead__title {
  margin: 0;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .businessLead__title {
    font-size: 24px;
  }
}

/* ---------- カード ---------- */
.businessCards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media (max-width: 1024px) {
  .businessCards {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 120px;
  }
}
.businessCards__item {
  position: relative;
}
@media (max-width: 768px) {
  .businessCards__item {
    margin-bottom: 100px;
  }
  .businessCards__item:last-child {
    margin-bottom: 0;
  }
}
.businessCards__thumb {
  margin: 0;
  position: relative;
  top: -80px;
}
.businessCards__thumb img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.businessCards__name {
  margin: -50px 0 16px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .businessCards__name {
    margin: -60px 0 16px;
    font-size: 20px;
  }
}
.businessCards__text {
  margin: 0;
  font-size: 16px;
}

/* ---------- ボタン ---------- */
.section__btn--center {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.btn--ghost {
  min-width: 300px;
  height: 60px;
  border: 1px solid #222222;
  background: transparent;
  font-weight: bold;
  color: #000;
  border-radius: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
  People section（スクショ再現）
============================ */
.section--people {
  background: #f5f5f5;
  padding: 60px 0;
}

/* 上段：左テキスト / 右画像 */
.peopleHead {
  display: grid;
  grid-template-columns: minmax(500px, 1.2fr) minmax(500px, 1fr);
  gap: 50px;
  align-items: start;
}
@media (max-width: 1024px) {
  .peopleHead {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.peopleHead__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: bold;
  color: #111;
}
@media (max-width: 1024px) {
  .peopleHead__label {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.peopleHead__mark {
  width: 16px;
  height: 16px;
  background: #111;
  display: inline-block;
}

.peopleHead__title {
  margin: 0 0 30px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.18;
  color: #111;
}
@media (max-width: 768px) {
  .peopleHead__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.peopleHead__text {
  margin: 0;
  max-width: 560px;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  color: #111;
}
@media (max-width: 768px) {
  .peopleHead__text {
    font-size: 15px;
  }
}

.peopleHead__image {
  margin: 0;
  max-width: 500px;
}
.peopleHead__image img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .peopleHead__image img {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .peopleHead__image img {
    height: 220px;
  }
}

.peopleMessage {
  margin-top: 60px;
  padding: 50px 40px 43px;
  background: #fff;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .peopleMessage {
    margin-top: 40px;
    padding: 30px 25px;
  }
}

.peopleMessage__headline {
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  color: #111;
}
@media (max-width: 768px) {
  .peopleMessage__headline {
    margin: 0 0 10px;
    font-size: 18px;
  }
}

.peopleMessage__body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 1024px) {
  .peopleMessage__body {
    grid-template-columns: 1fr;
  }
}

.peopleMessage__photo img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .peopleMessage__photo img {
    height: 200px;
  }
}

.peopleMessage__text p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 2;
  color: #333;
  letter-spacing: 1.6px;
}
.peopleMessage__text p:last-child {
  margin-bottom: 0;
}

.section__btn--center {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* ============================
  Info (BLOGまで)
============================ */
.section--info {
  background: #fff;
  padding: 80px 0 0 0;
}

/* 見出し（インフォメーション） */
.infoHead__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}
@media (max-width: 768px) {
  .infoHead__label {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.infoHead__mark {
  width: 16px;
  height: 16px;
  background: #111;
  display: inline-block;
}

.infoHead__title {
  margin: 0 0 50px;
  font-size: 48px;
  line-height: normal;
  font-weight: bold;
  color: #111;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .infoHead__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

/* BLOGブロック */
.infoBlock {
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .infoBlock {
    margin-bottom: 90px;
  }
}

.infoBlock__top {
  position: relative;
  margin-bottom: 30px;
}

.infoBlock__title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: #111;
}
@media (max-width: 768px) {
  .infoBlock__title {
    text-align: center;
  }
}

/* 右側に薄い巨大文字「BLOG」 */
.infoBlock__ghost {
  position: absolute;
  top: -40px;
  right: -8px;
  margin: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
  overflow: visible;
  /* SVGの箱サイズ（見た目の当たり） */
  width: 900px;
  height: 220px;
}
@media (max-width: 768px) {
  .infoBlock__ghost {
    width: 100%;
    height: 140px;
    top: -50px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

/* 線の見た目 & アニメ準備 */
.infoBlock__ghost .path-anime__text {
  font-size: 180px;
  font-weight: 700;
  letter-spacing: -5.4px;
  fill: none;
  stroke: rgba(34, 34, 34, 0.2);
  stroke-width: 2px;
  /* パスアニメ */
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

/* 3枚カード */
.infoCards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1024px) {
  .infoCards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .infoCard {
    margin-bottom: 30px;
  }
  .infoCard:last-child {
    margin-bottom: 0;
  }
}

.infoCard__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.infoCard__thumb {
  margin: 0 0 15px;
}
.infoCard__thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .infoCard__thumb img {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .infoCard__thumb img {
    height: 200px;
  }
}

.infoCard__title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.02em;
}

.infoCard__meta {
  margin: 0 0 15px;
}

.infoCard__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  background: #222222;
  color: #fff;
  font-size: 14px;
}

.infoCard__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* 下のボタン（中央・薄枠） */
.infoBlock__btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* ============================
  News（スクショ再現）
============================ */
.newsList {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
  position: relative;
  z-index: 1;
}

/* liは枠線だけ担当（レイアウトはaで組む） */
.newsList__item {
  border-bottom: 1px solid #cccccc;
}

/* 1行まるごとリンク + レイアウト本体 */
.newsList__link {
  display: grid;
  grid-template-columns: 180px 120px 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.7);
  color: #111;
  text-decoration: none;
  text-align: left;
  grid-template-areas: "date tag title";
}
@media (max-width: 1024px) {
  .newsList__link {
    grid-template-columns: 220px 140px 1fr;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .newsList__link {
    grid-template-columns: auto 1fr;
    grid-template-areas: "date tag" "title title";
    gap: 10px;
    padding: 18px 0;
  }
}
.newsList__link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* 日付 */
.newsList__date {
  grid-area: date;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
@media (max-width: 768px) {
  .newsList__date {
    font-size: 16px;
  }
}

/* タグ */
.newsList__tag {
  grid-area: tag;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.55);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .newsList__tag {
    height: 30px;
    font-size: 14px;
    width: -moz-fit-content;
    width: fit-content;
    justify-self: start;
  }
}

/* タイトル（右） */
.newsList__title {
  grid-area: title;
  font-size: 20px;
  font-weight: 800;
  color: #111;
  width: 100%;
}
@media (max-width: 768px) {
  .newsList__title {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ============================
  Recruit（スクショ再現）
============================ */
.section--recruit {
  background: #fff;
}
@media (max-width: 768px) {
  .section--recruit {
    padding: 0 0 80px 0;
  }
}

/* ラベル＋見出し */
.recruitHead__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
@media (max-width: 768px) {
  .recruitHead__label {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.recruitHead__mark {
  width: 16px;
  height: 16px;
  background: #111;
  display: inline-block;
}

.recruitHead__title {
  margin: 0 0 45px;
  font-size: 48px;
  font-weight: 700;
  color: #111;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .recruitHead__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

/* 本文＋画像 */
.recruit {
  display: grid;
  grid-template-columns: minmax(500px, 1.5fr) minmax(450px, 1fr);
  gap: 30px;
  align-items: start;
  grid-template-areas: "text image";
}
@media (max-width: 1024px) {
  .recruit {
    grid-template-columns: 1fr;
    gap: 28px;
    grid-template-areas: "image" "text";
  }
}

.recruit__text {
  grid-area: text;
}
.recruit__text p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}
.recruit__text p:last-child {
  margin-bottom: 0;
}

/* 右の写真（白フレーム） */
.recruit__image {
  grid-area: image;
  margin: 0;
}
.recruit__image img {
  width: 100%;
  height: 260px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .recruit__image img {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .recruit__image img {
    height: 220px;
  }
}

/* 下の2ボタン（横並び・同幅・黒） */
.recruitCta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 45px auto 0;
  width: 100%;
}
@media (max-width: 768px) {
  .recruitCta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }
}

.recruitCta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  border-radius: 4px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}
.recruitCta__btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .recruitCta__btn {
    height: 64px;
    font-size: 16px;
  }
}