@charset "UTF-8";

/* ベース初期化 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family:
    "Noto Serif JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    Meiryo,
    serif;
}

/* 媒体要素の基本 */
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォームのフォント継承 */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ユーティリティ */
.pc-none {
  display: none;
}
.sp-none {
  display: block;
}

/* スクリーンリーダーのみ表示 */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------
   layout
--------------------------------*/
.alignfull {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.full_box {
  gap: 0;
  position: relative;
}

.full_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}

.white_full_box {
  position: relative;
  z-index: 1;
  margin-left: 45% !important;
  margin-top: 30px !important;
  background-color: #fff;
  padding: 80px 90px 80px 110px;
}

.white_box {
  padding: 60px 40px;
  background-color: #fff;
}

.w-800 {
  max-width: 800px;
  margin: auto;
}

/* 参加者の声のカード部分 */
/* 列間の余白（テーマによって効かない時の保険） */
.voice_cards .wp-block-columns {
  gap: 24px;
}

/* カード本体 */
.voice_card {
  background: #f5f5f5;
  padding: 22px 22px;
  /* min-height: 280px;  */
  display: flex; /* 所属を下に固定するため */
  flex-direction: column;
}

/* 段落のデフォ余白が原因で間延びするのでリセット */
.voice_card p {
  margin: 0;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #222;
}

/* コピペで<u>が混ざって下線が出る対策 */
.voice_card u {
  text-decoration: none;
}

/* リンク扱いになって下線が出る対策 */
.voice_card a {
  text-decoration: none;
  color: inherit;
}

/* 所属（最後の段落想定）を下に寄せて太字に */
.voice_card p:last-child {
  margin-top: auto;
  font-weight: 700;
}

/* スマホ調整 */
@media (max-width: 781px) {
  .voice_cards .wp-block-columns {
    gap: 14px;
  }
  .voice_card {
    padding: 18px 16px;
    min-height: auto;
  }
}

/* -----------------------------
   title
--------------------------------*/
.heading_lv1 {
  color: #333;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.heading_lv2,
h2.wp-block-heading.\.heading_lv2.is-style-vk-heading-plain,
h3.wp-block-heading.\.heading_lv2.is-style-vk-heading-plain {
  font-size: 1.75rem;
  font-weight: 500;
}

.is-style-vk-heading-plain.arrow_heading,
.entry-body .is-style-vk-heading-plain.arrow_heading,
.entry-content .is-style-vk-heading-plain.arrow_heading,
.home .is-style-vk-heading-plain.arrow_heading,
.front-page .is-style-vk-heading-plain.arrow_heading {
  position: relative;
  display: inline-block !important;
  padding: 16px 40px 16px 24px !important;
  background-color: #4b150d !important;
  color: #fff !important;
  line-height: 1.2;
  overflow: visible;
  position: absolute;
  top: -30px;
  left: 60px;
}

.is-style-vk-heading-plain.arrow_heading::after,
.entry-body .is-style-vk-heading-plain.arrow_heading::after,
.entry-content .is-style-vk-heading-plain.arrow_heading::after,
.home .is-style-vk-heading-plain.arrow_heading::after,
.front-page .is-style-vk-heading-plain.arrow_heading::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 31px solid transparent;
  border-left: 24px solid #4b150d;
}

.page_intro_title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.875;
  letter-spacing: 0.1em; /* 10% */
  text-align: center;
}

.sub_title {
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  font-weight: 700; /* Bold */
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0;
  color: #8f8f8f;
  text-align: left;
  margin-bottom: 0 !important;
}

/* -----------------------------
   text
--------------------------------*/
p {
  line-height: 2.1;
}

.font-sans {
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
}

.intro_text {
  text-align: center;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 30px !important;
}

.service_intro {
  color: #40140e;
  font-family: "Noto Serif JP";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
}

.message_text {
  text-align: center;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
}

/* -----------------------------
   table
--------------------------------*/
/* Before / After テーブル */
.before-after-table {
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  text-align: center;
}

/* 見出し（Before / After） */
.before-after-table thead th {
  background-color: #e0e0e0;
  color: #333;
  font-weight: 600;
  text-align: center;
  padding: 14px 10px;
  border: 1px solid #ddd;
}

/* 本文セル */
.before-after-table tbody td {
  padding: 14px 16px;
  border: 1px solid #ddd;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* 左列（Before） */
.before-after-table tbody td:first-child {
  text-align: left;
}

/* 右列（After） */
.before-after-table tbody td:last-child {
  text-align: left;
}

/* スマホ調整 */
@media screen and (max-width: 600px) {
  .before-after-table thead th,
  .before-after-table tbody td {
    padding: 12px 10px;
    font-size: 14px;
  }
}

.info-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
}

.info-table table {
  border: none;
}

/* セル共通 */
.info-table td {
  border: none;
  padding: 22px 16px;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* 左列（項目名） */
.info-table td:first-child {
  width: 28%;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  padding: 1rem;
  border-bottom: 1px solid #333;
  border-left: none !important;
  border-right: none !important;
}

/* 右列（内容） */
.info-table td:last-child {
  width: 72%;
  padding: 1rem;
  border-bottom: 1px solid #d0d0d0;
  border-left: none !important;
  border-right: none !important;
}

/* 一番上の線（左右で色を分ける） */
.info-table tr:first-child td:first-child {
  border-top: 1px solid #333;
}
.info-table tr:first-child td:last-child {
  border-top: 1px solid #d0d0d0;
}

/* 右列内のリスト調整（費用など） */
.info-table td:last-child ul {
  margin: 0;
  padding-left: 1.2em;
}
.info-table td:last-child li {
  margin: 4px 0;
}

/* スマホ表示：縦並び */
@media screen and (max-width: 600px) {
  .info-table td {
    display: block;
    width: 100%;
    padding: 16px 8px;
  }

  .info-table td:first-child {
    display: block;
    width: 100%;
    border-bottom: none !important;
    padding-bottom: 4px;
    white-space: normal;
  }

  .info-table td:last-child {
    display: block;
    width: 100%;
    border-top: none;
    border-bottom: 1px solid #d0d0d0;
    padding-top: 0;
  }

  .info-table tr:first-child td:last-child {
    border-top: none;
  }
}

/* -----------------------------
   header
--------------------------------*/
.site-header {
  background-color: transparent !important;
  position: fixed;
  box-shadow: none !important; /* 影がついている場合は削除 */
}

.site-header-logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 152px;
  height: auto;
  max-height: none;
}

.global-nav-list > li .global-nav-name {
  color: #fff;
}

#site-header-container {
  margin-right: 0;
  padding-right: 0;
}

#menu-item-47 {
  background-color: #a47f3b;
}

.global-nav-list > li:before {
  border-bottom: 1px solid #a47f3b;
}

.global-nav-list > li .global-nav-name {
  font-weight: 600;
  text-shadow: 0 1px 1px #000;
}

.global-nav-list li#menu-item-47 .global-nav-name {
  text-shadow: none;
}

.header_scrolled .site-header {
  background-color: #fff !important;
}

.header_scrolled .site-header-logo {
  display: block;
}

.header_scrolled .global-nav-list > li .global-nav-name {
  color: #333;
  text-shadow: none;
}

.header_scrolled .global-nav-list > li#menu-item-47 .global-nav-name {
  color: #fff;
}

div#vk-mobile-nav-menu-btn {
  display: none;
}

#rmp-menu-wrap-216 .rmp-menu-item-link {
  padding: 36px 5%;
}

/* -----------------------------
   footer
--------------------------------*/
footer.site-footer {
  border: none;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.footer_logo {
  width: 93px;
}

.footer-nav {
  border: none;
}

.footer-nav-list li,
.footer-nav-list li:first-child {
  border: none;
}

.footer-nav-list li a {
  font-size: 1rem;
}

.container.site-footer-copyright {
  text-align: right;
}

/* -----------------------------
   cta
--------------------------------*/
.heading_cta {
  font-size: 3.375rem;
  font-weight: 500;
}

.cta_intro {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  line-height: 2;
}

.cta_text {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.25rem;
  font-weight: 500;
}

.cta_btn {
  border: solid 1px #fff;
  font-size: 2rem;
  max-width: 600px !important;
}

.cta_btn a.vk_button_link.btn.has-background.btn-lg {
  padding: 40px;
}

.cta_btn span.vk_button_link_txt {
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 12px; /* 文字と画像の間 */
}

.cta_btn span.vk_button_link_txt::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../images/ico_mail.png") no-repeat center / contain;
  margin-left: 12px;
}

/* =========================
   Lightning G3 トップスライド コピー用CSS
   ========================= */

/* スライダー全体を基準にする */
.mv-wrapper {
  position: relative;
}

/* コピー全体（中央寄せ・全面重ね） */
.mv-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  color: #ffffff;

  padding: 0 24px;
  pointer-events: none;
}

/* メインキャッチコピー */
.mv-copy__title {
  font-family: "Noto Serif JP", serif;
  font-size: 5rem;
  line-height: 117px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow:
    0 0 39px rgba(0, 0, 0, 1),
    0 0 70px rgba(0, 0, 0, 1),
    0 0 100px rgba(0, 0, 0, 0.9),
    0 3px 12px rgba(0, 0, 0, 1);
  margin-bottom: 120px;
}

/* サブコピー（1行） */
.mv-copy__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.625rem;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: #ffffff;

  text-shadow:
    0 0 39px rgba(0, 0, 0, 1),
    0 0 70px rgba(0, 0, 0, 1),
    0 0 100px rgba(0, 0, 0, 0.9),
    0 3px 12px rgba(0, 0, 0, 1);
}

/* 説明文（複数行） */
.mv-copy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  opacity: 1;
  text-shadow:
    0 0 39px rgba(0, 0, 0, 1),
    0 0 70px rgba(0, 0, 0, 1),
    0 0 100px rgba(0, 0, 0, 0.9),
    0 3px 12px rgba(0, 0, 0, 1);
  margin-bottom: 0;
}

/* -----------------------------
   TOP
--------------------------------*/
.home .site-body {
  padding: 0;
}

.section_top_intro {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.top_intro {
  background: linear-gradient(105deg, #006b5f 1.48%, #00675b 46.15%, #003e3b 89.14%);
}

.top_intro p {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 42px; /* 210% */
  position: relative;
  z-index: 2;
}

.top_intro_img_1 {
  position: absolute;
  left: -14%;
  top: 40px;
  max-width: 274px;
  z-index: 1;
}

.top_intro_img_2 {
  position: absolute;
  left: -10%;
  bottom: 80px;
  max-width: 220px;
  z-index: 1;
}

.top_intro_img_3 {
  position: absolute;
  right: -10%;
  top: 60px;
  max-width: 220px;
  z-index: 1;
}

.top_intro_img_4 {
  position: absolute;
  right: -14%;
  bottom: 80px;
  max-width: 294px;
  z-index: 1;
}

.parallax-content {
  padding: 60px;
}

.section_mission p {
  font-size: 1.125rem;
}

.profile_name {
  font-family: "Noto Sans JP";
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.profile_title {
  font-family: "Noto Sans JP";
}

.profile_text {
  font-family: "Noto Sans JP";
}

/* -----------------------------
   下層ページ
--------------------------------*/
body:not(.home):not(.front-page) .site-header {
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}

body:not(.home):not(.front-page) .global-nav-list > li .global-nav-name {
  text-shadow: none;
  color: #333;
}

body:not(.home):not(.front-page) .global-nav-list > li:last-child .global-nav-name {
  color: #fff;
}

.page-header {
  margin-top: 48px;
  background-color: #fff;
  height: 190px;
  border-bottom: 1px solid #d9d9d9;
}

.page-header-title,
h1.page-header-title {
  color: #333;
  font-weight: 500;
  font-size: 2.375rem;
}

.breadcrumb {
  display: none;
}

.day_box {
  border: solid 1px #40140e;
}

.day_box_text {
  padding: 0 20px;
}

.check_wrapper {
  padding: 20px 40px;
}

.check_item {
  font-size: 1.375rem;
  border-bottom: 1px solid #afafaf;
}

/* ============================
   Contact Form 7 お問い合わせCSS
============================ */
.cf7-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  border: none;
}

.cf7-table th,
.cf7-table td {
  padding: 20px 18px;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.8;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: none;
}

.cf7-table th {
  width: 30%;
  font-weight: 700;
  color: #111;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #333;
}

.cf7-table th p {
  display: flex;
  align-items: center;
}

.cf7-table td {
  width: 70%;
  color: #222;
  border-bottom: 1px solid #d0d0d0;
}

.cf7-table td p {
  margin-bottom: 0;
}

.cf7-table tr:first-child th {
  border-top: 1px solid #333;
}

.cf7-table tr:first-child td {
  border-top: 1px solid #d0d0d0;
}

.cf7-table .cf7-help {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.7;
  color: #222;
}

.cf7-table .req-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 22px;
  padding: 0 8px;
  margin-right: 10px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cf7-table .req-label.is-required {
  background: #d40000;
}

.cf7-table .req-label.is-optional {
  background: #1aa36f;
}

.cf7-table input[type="text"],
.cf7-table input[type="email"],
.cf7-table input[type="tel"],
.cf7-table textarea {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #d6d6d6;
  border-radius: 3px;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
  color: #111;
}

.cf7-table textarea {
  min-height: 180px;
  resize: vertical;
}

.cf7-table ::placeholder {
  color: #aaa;
}

.cf7-table .wpcf7-list-item {
  margin: 8px 0 0;
}

.cf7-table input[type="checkbox"] {
  margin-right: 6px;
}

.cf7-table-submit {
  text-align: center;
  padding: 26px 0 10px;
}

.cf7-table-submit input[type="submit"] {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 52px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cf7-table-submit input[type="submit"]:hover {
  opacity: 0.85;
}

.wpcf7-not-valid-tip {
  color: #d40000;
  font-size: 13px;
  margin-top: 8px;
}

.privacy-check {
  margin-top: 40px;
  text-align: center;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
}

/* -----------------------------
   レスポンシブ
--------------------------------*/
@media (max-width: 1300px) {
  .mv-copy__title {
    font-size: 4rem;
    line-height: 1.5;
    margin-bottom: 80px;
  }
  .mv-copy__lead {
    font-size: 2rem;
  }
  .mv-copy__text {
    font-size: 1.25rem;
    bottom: 32px;
  }
}

@media screen and (max-width: 991px) {
  /* 991pxまでの幅の場合に適用される */
  .mv-copy__title {
    margin-bottom: 20px;
    line-height: 1.25;
  }
}

@media screen and (max-width: 768px) {
  /* 768pxまでの幅の場合に適用される */
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .sp-left {
    text-align: left !important;
  }
  .sp-reverse.wp-block-columns {
    flex-direction: column-reverse;
  }
  .full_img {
    width: 100%;
    position: static;
  }
  .white_full_box {
    margin-left: 0 !important;
    padding: 40px 20px;
    margin-top: 100px;
  }
  .top_intro_img_1,
  .top_intro_img_2,
  .top_intro_img_3,
  .top_intro_img_4 {
    display: none;
  }
  .parallax-content {
    padding: 60px 20px;
  }
  .footer_inner {
    flex-direction: column;
  }
  .is-style-vk-heading-plain.arrow_heading,
  .entry-body .is-style-vk-heading-plain.arrow_heading,
  .entry-content .is-style-vk-heading-plain.arrow_heading,
  .home .is-style-vk-heading-plain.arrow_heading,
  .front-page .is-style-vk-heading-plain.arrow_heading {
    left: 0;
  }
  .is-style-vk-heading-plain.arrow_heading::after,
  .entry-body .is-style-vk-heading-plain.arrow_heading::after,
  .entry-content .is-style-vk-heading-plain.arrow_heading::after,
  .home .is-style-vk-heading-plain.arrow_heading::after,
  .front-page .is-style-vk-heading-plain.arrow_heading::after {
    border-bottom: 28px solid transparent;
  }
  .vk_button_link_txt {
    font-size: 1.5rem;
  }
  .white_box {
    padding: 40px 20px;
  }
  .cta_btn a.vk_button_link.btn.has-background.btn-lg {
    padding: 20px;
  }
  .container.site-footer-copyright {
    text-align: left;
  }
  .site-header-logo img {
    width: 90px;
  }
  .page_intro_title {
    font-size: 1.75rem;
  }
  /* .page-header {
    margin-top: 0;
  } */
  .day_box_text {
    padding: 0 10px;
  }
  .check_wrapper {
    padding: 20px 10px;
  }
  .check_item {
    font-size: 1rem;
    line-height: 1.5;
    gap: 10px;
    padding: 10px 0;
  }
  .check_item.wp-block-columns > .wp-block-column {
    flex-basis: 30px !important;
  }
  body:not(.home):not(.front-page) .site-header {
    border-bottom: none;
  }
  .cf7-table,
  .cf7-table tbody,
  .cf7-table tr,
  .cf7-table th,
  .cf7-table td {
    display: block;
    width: 100%;
  }
  .cf7-table th {
    white-space: normal;
    padding-bottom: 6px;
    border-bottom: none;
  }
  .cf7-table td {
    padding-top: 0;
  }
  .cf7-table th p {
    margin-bottom: 0;
  }
  /* タイトル */
  /* SPで「タイトルだけ上下中央」、他（lead/text）は下部に固定して重ならないようにする */
  .mv-copy {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-align: center;
    pointer-events: none;
  }

  /* タイトル：上下左右中央 */
  .mv-copy__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: calc(100% - 20px);
    margin: 0;

    /* 画面幅に追従（可変） */
    font-size: clamp(26px, 7vw, 56px);
  }

  /* サブコピー：下から固定（例：160px） */
  .mv-copy__lead {
    position: absolute;
    left: 50%;
    bottom: 180px;
    transform: translateX(-50%);

    width: calc(100% - 20px);
    margin: 0;

    /* 画面幅に追従（可変） */
    font-size: clamp(16px, 4.5vw, 32px);
  }

  /* 説明文：一番下 */
  .mv-copy__text {
    position: absolute;
    left: 50%;
    bottom: 72px;
    transform: translateX(-50%);

    width: calc(100% - 20px);
    margin: 0;

    /* 画面幅に追従（可変） */
    font-size: clamp(12px, 3.6vw, 16px);
  }
}

/* アニメーションを抑制（ユーザー設定尊重） */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
