@charset "UTF-8";
/* ----------------------------------------------------------------
   1. 設定値（SCSS Maps）
   ここを編集するだけで、サイト全体のトーンが変わります
---------------------------------------------------------------- */
/* 1. 変数定義 */
/* ----------------------------------------------------------------
   2. CSS変数生成 (:root)
   SCSSのマップをループしてCSS変数を出力します
---------------------------------------------------------------- */
:root {
  --color-primary: #43a4e8;
  --color-secondary: #000;
  --color-text-main: #000;
  --color-text-sub: #a8a8a8;
  --color-bg-base: #ffffff;
  --color-bg-sub: #e8f1f9;
  --color-bg-blue: #e2ecfa;
  --color-bg-teal: #cdeef2;
  --color-border: #707070;
  --color-accent: #ef4444;
  --color-error: #ef4444;
  --color-orange: #ffa462;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --header-height: 80px;
  --admin-bar-offset: 0px;
  --font-sans: system-ui, -apple-system, Hiragino Kaku Gothic ProN, Hiragino Sans, Noto Sans JP, BIZ UDPGothic, Meiryo, sans-serif;
  --font-serif: Yu Mincho, YuMincho, Hiragino Mincho ProN, HGS Mincho E, serif;
  --leading-tight: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;
}

/**
 * uaplus.css version 0.0.1
 */
/**
 * 異なるボックスモデル
 * ボックスモデルは従来のものを使用します。このモデルは要素のpaddingとborderは指定されて幅と高さの内側に描画され、外側には描画されません。
 * そのため<code>inline-size</code>や<code>block-size</code>のようなプロパティで相対単位と絶対単位を組み合わせることが簡単になります。
 */
*,
*::after,
*::before {
  box-sizing: border-box;
}

/**
 * フォーカススタイルを改善する
 * コンテンツとフォーカス時のアウトラインの間にスペースを追加します。
 */
:focus-visible {
  outline-offset: 3px;
}

/**
 * テキストのサイズ調整を無効にする
 * スマホに最適化されていないWebサイトでの読みやすさを改善するために、モバイルSafariなどのブラウザはWebサイトを縦から横に切り替えたときにデフォルトのフォントサイズを大きくします。最適化されたWebサイトではどの動作を望んでいません。
 */
:where(html) {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

/**
 * 行間を広げる
 * 長い段落は行間を広くすると読みやすくなります。
 */
:where(html) {
  line-height: 1.5;
}

/**
 * スクロールバーのガターを追加する
 * 長いページから短いページに切り替える際に、ページがジャンプするのを防ぎます。
 */
:where(html) {
  scrollbar-gutter: stable;
}

/**
 * セクショニングコンテンツ内にあるh1要素のUAスタイルを削除します。
 * sectionやarticleなどでh1要素をネストしてもセマンティックには影響しないため、見出しのスタイルには影響しません。
 */
:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

/**
 * title付きの略語を改善する
 * title付きのabbr要素はブラウザのサポートに一貫性がなく、一部のユーザーにしかアクセシブルでないため、アクセシビリティの観点からあまり役に立ちません。それでも一般的にはよく使用されています。
 * このルールは、すべてのブラウザで略語に点線の下線を表示し（Safariにはバグがあります）、カーソルを変更します。
 */
:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

/**
 * 強制カラーモード（forced-colors）でmark要素を最適化する
 * forced-colorsがacritveの強制カラーモード時はmark要素のカラーが変化しないため、問題が発生する可能性があります。代わりにシステムカラーを使用します。
 */
@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
/**
 * スクリーンリーダーにdel, ins, sを伝えます
 * 「deleteion」をアナウンスするNVDA (2024.4.2)を除いて、一般的なスクリーンリーダーは<s>要素をアナウンスしません。macOSとiOSのVoice OverとNarratorは<ins>と<del>をアナウンスしません。通常、スクリーンリーダーがテキストレベルのセマンティックをアナウンスしないことは許容範囲ですが、デベロッパーが<s>のような要素がセマンティックを伝えない可能性があることを知らずに使用することはよくある問題です。
 * 取り消し・挿入・削除されたコンテンツの開始と終了を疑似要素で伝えます。英語以外の言語の場合は、翻訳して伝える必要があります。たとえば日本語だと、:lang(ja) :where(s::before) { content: "取り消し線付きテキストの開始"; }となります。
 */
:where(del, ins, s)::before,
:where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}

:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}

:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}

:where(ins)::after {
  content: " insertion end";
}

/**
 * 埋め込みコンテンツによるオーバーフローを回避する
 * 埋め込みコンテンツ（音声、動画、画像など）がコンテナからはみ出さないようにします。
 */
:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

/**
 * fieldsetによるオーバーフローを防止する
 * デフォルトのmin-inline-size: min-contentをリセットして、子要素によるfieldsetの拡張を防止します。
 */
:where(fieldset) {
  min-inline-size: 0;
}

/**
 * ラベルをブロック要素にする
 * input, select, textareaのlabel要素をブロック要素にします。
 */
:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

/**
 * textareaのブロックサイズを大きくする
 * テキストエリアのデフォルトの高さは小さいので、少し大きくします。
 */
:where(textarea:not([rows])) {
  min-block-size: 6em;
}

/**
 * フォーム要素のフォントスタイルを継承する
 * button, input, select, textareaのfont-familyとfont-sizeは、ページの他の部分と同じにします。
 */
:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

/**
 * 検索入力のスタイルを正規化する
 * macOSおよびiOSの検索入力の角丸を削除し、背景色を正規化します。
 */
:where([type=search]) {
  -webkit-appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
/**
 * 一部の入力欄で方向を維持する
 * 右から左に記述する言語では一部の入力欄は左揃えのままにする必要がありますが、プレースホルダは右揃えにする必要があるため、値が空でない場合のみに限ります。
 */
:where([type=tel], [type=url], [type=email], [type=number]):not(:-moz-placeholder) {
  direction: ltr;
}
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

/**
 * 表のスタイルを改善する
 * デフォルトのスタイル設定では表が見づらいため、paddingと折り返し境界線を追加します。
 */
:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

/**
 * ダイアログのフェードイン
 * ダイアログ要素と背景にフェードインとフェードアウトのトランジションを追加します。
 */
:where(dialog)::backdrop {
  background: oklch(0% 0 0deg / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
/**
 * [hidden]の詳細度を向上させる
 * [hidden]属性を持つ要素が誤って非表示解除されにくくなり、同時に見つかるまでの機能が維持されます。
 */
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

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

html {
  min-height: 100%;
}
@media screen and (max-width: 639px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  min-height: 100%;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
}
@media screen and (max-width: 639px) {
  body {
    font-size: 1.6rem;
  }
}

body.admin-bar {
  --admin-bar-offset: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    --admin-bar-offset: 46px;
  }
}

img {
  vertical-align: top;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}

hr {
  background-color: var(--color-border);
  height: 1px;
  border: none;
}

a {
  color: var(--color-primary);
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

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

button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

input[type=submit] {
  cursor: pointer;
}

/**
 * Swiper 12.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 28, 2026
 */
:root {
  --swiper-theme-color:#007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-cube-shadow, .swiper-slide {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible, .swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

.swiper-pagination-lock {
  display: none;
}

.l-header {
  position: sticky;
  top: var(--admin-bar-offset);
  left: 0;
  width: 100%;
  background-color: #fff;
  min-height: var(--header-height);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.l-header__inner {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 52px 0 34px;
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__inner {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 639px) {
  .l-header__inner {
    padding: 1rem;
  }
}
.l-header__logo {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.l-header__logo a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.l-header__contact {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-header__contact {
    display: none;
  }
}
.l-header__contact-link {
  min-width: 187px;
  min-height: var(--header-height);
  padding: 0 31px 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__contact-link.c-button--primary {
    min-width: unset;
    width: 18vw;
    font-size: 1.7vw;
    padding: 0 1em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__contact-link:hover {
    background-color: #222;
  }
}
.l-header__contact-icon {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.l-header__contact-text {
  display: inline-flex;
  align-items: center;
}

.l-main {
  flex: 1;
}
.l-main--page {
  padding-top: calc(var(--header-height) + var(--admin-bar-offset));
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .l-main--page {
    padding-bottom: 4rem;
  }
}

.l-content {
  flex: 1;
  padding-bottom: 8rem;
}
.l-content--page {
  margin-top: 6rem;
  padding-bottom: 8rem;
}

.l-width--base {
  max-width: 1200px;
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-width--base {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 639px) {
  .l-width--base {
    padding-inline: 6vw;
  }
}
.l-width--m {
  max-width: 1080px;
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-width--m {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 639px) {
  .l-width--m {
    padding-inline: 6vw;
  }
}
.l-width--s {
  max-width: 768px;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-width--s {
    padding-inline: 1.25rem;
  }
}

.l-section {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 3rem;
  }
}

.l-footer {
  margin-top: auto;
  background-color: #f4f4f4;
  padding: 74px 0 52px;
}
.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.l-footer__info {
  flex-shrink: 0;
  width: 300px;
}
@media screen and (max-width: 639px) {
  .l-footer__info {
    width: 100%;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .l-footer__info {
    width: 100%;
  }
}
.l-footer__site-name {
  margin: 0;
  color: var(--color-primary);
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 639px) {
  .l-footer__site-name {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .l-footer__site-name {
    width: 50vw;
  }
}
.l-footer__site-name img {
  width: 100%;
  height: auto;
}
.l-footer__address {
  margin-top: 14px;
  color: var(--color-primary);
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 639px) {
  .l-footer__address {
    font-size: 1.6rem;
  }
}
.l-footer__tel {
  color: var(--color-primary);
}
.l-footer__copyright {
  width: 100%;
  margin: 0;
  color: #b9b9b9;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 639px) {
  .l-footer__copyright {
    font-size: 1rem;
  }
}
.l-footer__nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    width: 100%;
  }
}

.c-global-nav {
  flex-shrink: 0;
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    transform: translateY(2rem);
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    transition: all 0.3s ease;
    overflow-y: auto;
  }
}
.c-global-nav__list {
  display: flex;
  align-items: center;
  gap: 41px;
  height: inherit;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-global-nav__list {
    gap: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-global-nav__list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 3rem;
    min-height: unset;
    padding-top: 32vh;
  }
}
.c-global-nav__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .c-global-nav__item {
    height: auto;
    flex-direction: column;
  }
}
.c-global-nav__item a,
.c-global-nav__item span {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-global-nav__item a,
  .c-global-nav__item span {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .c-global-nav__item a,
  .c-global-nav__item span {
    font-size: 1.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-global-nav__item a:hover {
    opacity: 0.65;
  }
}
.c-global-nav__item.has--children {
  position: relative;
}
.c-global-nav__item.has--children span {
  cursor: pointer;
}
.c-global-nav__sub {
  display: none;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
  position: fixed;
  left: 50%;
  top: var(--header-height);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-global-nav__sub {
    border-top: 1px solid #e6e6e6;
    top: 7.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-global-nav__sub {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
  }
}
.c-global-nav__sub-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-global-nav__sub-list {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
  }
}
.c-global-nav__sub-item {
  padding: 3.125rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-global-nav__sub-item {
    padding: 4vw 2.5vw;
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .c-global-nav__sub-item {
    padding: 0.8rem 1rem;
  }
}
.c-global-nav__sub-item a {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 767px) {
  .c-global-nav__sub-item a {
    font-size: 1.4rem;
    gap: 1em;
  }
}
.c-global-nav__contact {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-global-nav__contact {
    display: block;
    width: 100%;
    padding: 1rem;
  }
  .c-global-nav__contact .c-button--primary {
    width: 100%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .is--menu-open .c-global-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
  }
}

.c-footer-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: end;
  -moz-column-gap: 66px;
  column-gap: 66px;
}
@media screen and (max-width: 639px) {
  .c-footer-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 1279px) {
  .c-footer-nav {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: initial;
    width: 100%;
    gap: 3rem;
  }
}
.c-footer-nav__column {
  min-width: 0;
}
.c-footer-nav__title {
  margin: 0 0 16px;
  color: var(--color-primary);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 639px) {
  .c-footer-nav__title {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.c-footer-nav__title-link, .c-footer-nav__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-nav__title-link:hover, .c-footer-nav__link:hover {
    opacity: 0.65;
  }
}
.c-footer-nav__title-link {
  display: inline-block;
  color: var(--color-primary);
}
.c-footer-nav__list {
  display: grid;
  row-gap: 4px;
}
.c-footer-nav__link {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.8125rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 639px) {
  .c-footer-nav__link {
    font-size: 1.4rem;
  }
}

.c-nav-trigger {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-nav-trigger {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-nav-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }
  .c-nav-trigger__bar {
    width: 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .c-nav-trigger__bar span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main, #111827);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  .c-nav-trigger__text {
    display: block;
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--color-text-main, #111827);
    font-weight: 600;
    line-height: 1;
  }
}

/* メニューオープン時
----------------------------*/
@media screen and (max-width: 767px) {
  .is--menu-open {
    overflow: hidden;
  }
}
.is--menu-open .c-nav-trigger__bar span:nth-of-type(1), .is--menu-open .c-nav-trigger__bar span:nth-of-type(3) {
  opacity: 0;
}
.is--menu-open .c-nav-trigger__bar span:nth-of-type(2) {
  position: relative;
  transform: rotate(45deg);
}
.is--menu-open .c-nav-trigger__bar span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  transform: rotate(90deg);
}

.c-breadcrumb {
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
  }
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item {
  display: inherit;
  align-items: center;
}
.c-breadcrumb__item:not(:last-of-type) {
  padding-right: 1em;
}
.c-breadcrumb__item:not(:last-of-type):after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  transform: rotate(45deg);
  margin-left: 0.5em;
}
.c-breadcrumb a,
.c-breadcrumb span {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb a:hover {
    opacity: 1;
  }
  .c-breadcrumb a:hover span {
    color: var(--color-primary);
    text-decoration: underline;
  }
}

.c-icon--arrow {
  width: 0.6rem;
  height: 0.6rem;
  display: inline-block;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  transform: rotate(45deg);
}

.c-category {
  width: 7em;
  border: 1px solid var(--color-border, #d1d5db);
  color: var(--color-text-sub, #374151);
  font-size: var(--text-sm);
  text-align: center;
  padding: 0.25em 0.5em;
  border-radius: 999px;
}

.c-button {
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.c-button--primary {
  position: relative;
  background-color: var(--color-primary);
  text-decoration: none;
  color: #fff;
  font-size: var(--text-base);
  padding: 0.875em 3em 0.875em 3em;
  font-weight: bold;
  display: inline-flex;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-button--primary {
    font-size: 1.8rem;
  }
}
.c-button--primary .c-icon {
  border-color: #fff;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .c-button--primary:hover {
    background-color: var(--color-primary-hover, #3b82f6);
  }
}
.c-button--primary .fa-solid {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
}
.c-button.is-large, .c-button.is--large {
  font-size: var(--text-2xl);
}

.c-pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
}
.c-pagetop a {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  display: block;
  border: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-pagetop a {
    width: 40px;
    height: 40px;
  }
}
.c-pagetop a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transition: 0.2s;
}
.c-pagetop a:before {
  background: #fff;
  content: "";
  position: absolute;
  height: 0;
  bottom: -35%;
  left: 0;
  transform: skewY(-10deg);
  transition-duration: 0.4s;
  transform-origin: top left;
  width: 100%;
}
.c-pagetop a .arrow {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-pagetop a .arrow:before, .c-pagetop a .arrow:after {
  content: "";
  display: block;
  transition: 0.2s;
}
.c-pagetop a .arrow:before {
  width: 14px;
  height: 1px;
  background-color: #fff;
}
.c-pagetop a .arrow:after {
  border-top: 1px solid;
  border-left: 1px solid;
  border-color: #fff;
  transform: rotate(45deg);
  width: 8.75px;
  height: 8.75px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -5px;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagetop a:hover:before {
    height: 155%;
  }
  .c-pagetop a:hover .arrow:before {
    margin-top: -4px;
    background-color: var(--color-primary);
  }
  .c-pagetop a:hover .arrow:after {
    bottom: 0;
    transition-delay: 0.1s;
    border-color: var(--color-primary);
  }
}

.c-title--section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-title--section .is-en {
  font-size: 3.6875rem;
  color: var(--color-primary);
}
.c-title--section .is-jp {
  font-size: 1.5625rem;
}

.c-heading {
  margin: 0;
  line-height: var(--leading-tight, 1.25);
  font-weight: 700;
  color: var(--color-text-main, #111827);
}
.c-heading--lv2 {
  font-size: var(--text-3xl);
  margin-block: 2em 1em;
}
@media screen and (max-width: 639px) {
  .c-heading--lv2 {
    font-size: 2.2rem;
  }
}
.c-heading--lv3 {
  font-size: var(--text-2xl);
  margin-block: 1.5em 0.75em;
}
@media screen and (max-width: 639px) {
  .c-heading--lv3 {
    font-size: 2rem;
    margin-block: 1.5em 0.5em;
  }
}
.c-heading--lv4 {
  font-size: var(--text-xl);
  margin-block: 1.25em 0.75em;
}
@media screen and (max-width: 639px) {
  .c-heading--lv4 {
    font-size: 1.8rem;
  }
}
.c-heading--lv5 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-block: 1em 0.5em;
}
@media screen and (max-width: 639px) {
  .c-heading--lv5 {
    font-size: 1.6rem;
  }
}
.c-heading--lv6 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-block: 1em 0.5em;
}
@media screen and (max-width: 639px) {
  .c-heading--lv6 {
    font-size: 1.6rem;
  }
}

.c-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed, 1.8);
  color: var(--color-text-main, #111827);
  margin-block: 1.5em;
}
@media screen and (max-width: 639px) {
  .c-text {
    font-size: 1.6rem;
    margin-block: 1em;
  }
}

.c-notes {
  font-size: var(--text-sm);
}
.c-notes.is-size-s {
  font-size: 0.8125rem;
}
@media screen and (max-width: 639px) {
  .c-notes.is-size-s {
    font-size: 1.2rem;
    line-height: 1.6;
    display: inline-block;
    margin-top: 0.5em;
  }
}

.c-list {
  font-size: var(--text-base);
}
@media screen and (max-width: 639px) {
  .c-list {
    font-size: 1.6rem;
  }
}
.c-list--common {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
@media screen and (max-width: 639px) {
  .c-list--common {
    font-size: 1.6rem;
  }
}
.c-list--common .c-list__item {
  position: relative;
  padding-left: 0.6em;
}
.c-list--common .c-list__item:before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  display: block;
  background-color: var(--color-primary);
  position: absolute;
  top: 0.6em;
  left: 0;
  border-radius: 50%;
}
@media screen and (max-width: 639px) {
  .c-list--common .c-list__item:before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.c-list--number {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
@media screen and (max-width: 639px) {
  .c-list--number {
    font-size: 1.6rem;
  }
}
.c-list--number .c-list__item {
  position: relative;
  list-style: decimal;
  margin-left: 1em;
}
.c-list--number .c-list__item::marker {
  color: var(--color-primary);
  font-weight: 700;
}

.c-table {
  width: 100%;
  border: none;
}
.c-table__row {
  border-top: 1px solid var(--color-border);
}
@media screen and (max-width: 639px) {
  .c-table__row {
    display: flex;
    flex-direction: column;
  }
}
.c-table__label, .c-table__value {
  font-size: var(--text-base);
  vertical-align: top;
  line-height: 1.6em;
  padding-block: 1.5em;
  border: none;
}
@media screen and (max-width: 639px) {
  .c-table__label, .c-table__value {
    font-size: 1.6rem;
  }
}
.c-table__label {
  width: 10em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-table__label {
    padding-bottom: 0.5em;
  }
}
@media screen and (max-width: 639px) {
  .c-table__label {
    width: 100%;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 639px) {
  .c-table__value {
    padding-top: 0.5em;
  }
}

.c-date {
  font-size: var(--text-sm);
  color: var(--color-text-sub, #1f2937);
}
@media screen and (max-width: 639px) {
  .c-date {
    font-size: 1.3rem;
  }
}

.c-page-header {
  background-color: #f4f4f4;
}
.c-page-header:first-child {
  margin-top: calc(0px - var(--header-height) - var(--admin-bar-offset));
  padding-top: calc(var(--header-height) + 40px);
}
.c-page-header.is--no-bg {
  background-color: transparent;
}
.c-page-header__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 304px;
  padding-block: 56px;
}
@media screen and (max-width: 639px) {
  .c-page-header__inner {
    height: 60vw;
    min-height: unset;
    padding-block: 1.5625rem;
  }
}
.c-page-header__title {
  margin: 0;
  color: var(--color-text-main);
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 639px) {
  .c-page-header__title {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
.c-page-header__subtitle {
  margin: 8px 0 0;
  color: #7f7f7f;
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 639px) {
  .c-page-header__subtitle {
    font-size: 1.2rem;
  }
}

.c-link {
  color: var(--color-primary);
  display: inline-block;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .c-link:hover {
    text-decoration: none;
    color: #000;
  }
}

.c-post-list {
  border-top: 1px solid #979797;
}
.c-post-list__item {
  border-bottom: 1px solid #979797;
}
.c-post-list__link {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 28px 0 26px;
  color: #111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 639px) {
  .c-post-list__link {
    flex-wrap: wrap;
  }
}
.c-post-list__date {
  flex-shrink: 0;
  padding-top: 2px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 639px) {
  .c-post-list__date {
    font-size: 1.2rem;
  }
}
.c-post-list__category {
  flex-shrink: 0;
  padding-top: 0;
}
.c-post-list__category .c-category {
  width: auto;
  min-width: 102px;
  padding: 5px 10px 4px;
  border: 1px solid #111;
  border-radius: 0;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .c-post-list__category .c-category {
    font-size: 1rem;
    padding: 0.2em 1em;
    min-width: unset;
  }
}
.c-post-list__body {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 639px) {
  .c-post-list__body {
    flex: 0 0 100%;
  }
}
.c-post-list__title {
  margin: 0;
  color: #111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-post-list__excerpt {
  margin: 10px 0 0;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 639px) {
  .c-post-list__excerpt {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-post-list__link:hover {
    opacity: 0.65;
  }
}

.c-form__item.has--unit {
  display: flex;
  align-items: flex-end;
  gap: 0.5em;
}
.c-form__badge {
  font-size: var(--text-xs);
  font-weight: bold;
  border-radius: 2em;
  padding: 0.2em 0.5em;
  line-height: 1;
}
.c-form__badge.is--required {
  color: #fff;
  background-color: var(--color-caution);
}
.c-form__badge.is--optional {
  color: #666;
  background-color: #eee;
}
.c-form__unit {
  font-weight: bold;
}
.c-form__input {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--color-border);
}
.c-form__input:focus {
  border-color: var(--color-primary);
  outline: none;
}
.c-form__check {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.5em;
}
.c-form__check .wpcf7-list-item {
  margin: 0;
}
.c-form__check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  border: 1px solid #000;
  padding: 0.5em;
  transition: border-color 0.2s;
}
.c-form__check .wpcf7-list-item label:has(input:checked) {
  border-color: var(--color-primary);
}
.c-form__check .wpcf7-list-item input[type=checkbox],
.c-form__check .wpcf7-list-item input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid var(--color-border);
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.c-form__check .wpcf7-list-item input[type=checkbox]:checked,
.c-form__check .wpcf7-list-item input[type=radio]:checked {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.c-form__check .wpcf7-list-item input[type=checkbox]:focus,
.c-form__check .wpcf7-list-item input[type=radio]:focus {
  outline: 2px solid rgba(var(--color-primary-rgb, 0, 0, 0), 0.3);
  outline-offset: 2px;
}
.c-form__check .wpcf7-list-item input[type=checkbox] {
  border-radius: 3px;
}
.c-form__check .wpcf7-list-item input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-form__check .wpcf7-list-item input[type=radio] {
  border-radius: 50%;
}
.c-form__check .wpcf7-list-item input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='6' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-form__check .wpcf7-list-item .wpcf7-list-item-label {
  font-size: var(--text-base);
  line-height: 1.5;
}
.c-form__check--col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.c-form__check--col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.c-form__check--col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.c-form__column--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
}
.c-form__column--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}
.c-form__column--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
}
.c-form__column--ymd {
  display: flex;
  gap: 1.5em;
}

.c-input {
  padding: 1rem;
  width: 100%;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 0.4rem;
  background-color: #fff;
}
.c-input:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 2px;
}

.c-textarea {
  padding: 1rem;
  width: 100%;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 0.4rem;
  background-color: #fff;
}
.c-textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 2px;
}

.c-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 0.4rem;
  background-color: #fff;
  padding: 1rem;
  font-size: var(--font-size-base);
}

.c-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  color: var(--color-text, #222222);
}
.c-checkbox > * {
  display: block;
}
.c-checkbox label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.c-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.c-checkbox input + span {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 2.6rem;
  min-height: 2rem;
  color: inherit;
  line-height: 1.6;
}
.c-checkbox input + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.3rem;
  border: 2px solid var(--color-border, #e0e0e0);
  background-color: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.c-checkbox input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.6rem;
  width: 0.5rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.c-checkbox label:hover input + span::before {
  border-color: var(--color-primary, #005bac);
}
.c-checkbox input:focus-visible + span::before {
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.2);
}
.c-checkbox input:checked + span {
  color: var(--color-primary, #005bac);
  font-weight: 600;
}
.c-checkbox input:checked + span::before {
  border-color: var(--color-primary, #005bac);
  background-color: var(--color-primary, #005bac);
}
.c-checkbox input:checked + span::after {
  transform: translateY(-50%) rotate(45deg) scale(1);
}

.c-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  color: var(--color-text, #222222);
}
.c-radio > * {
  display: block;
}
.c-radio label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.c-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.c-radio input + span {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 2.6rem;
  min-height: 2rem;
  color: inherit;
  line-height: 1.6;
}
.c-radio input + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: 2px solid var(--color-border, #e0e0e0);
  background-color: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.c-radio label:hover input + span::before {
  border-color: var(--color-primary, #005bac);
}
.c-radio input:focus-visible + span::before {
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.2);
}
.c-radio input:checked + span {
  color: var(--color-primary, #005bac);
  font-weight: 600;
}
.c-radio input:checked + span::before {
  border-color: var(--color-primary, #005bac);
  background-color: var(--color-primary, #005bac);
  box-shadow: inset 0 0 0 4px #fff;
}

.c-accordion {
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 0.6rem;
  overflow: hidden;
}
.c-accordion__item:not(:first-child) {
  border-top: 1px solid var(--color-border, #e0e0e0);
}
.c-accordion--trigger {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  background-color: var(--color-bg-sub, #f9fafb);
  color: var(--color-text-main, #111827);
  text-align: left;
  font-weight: 600;
  position: relative;
  border: none;
  cursor: pointer;
}
.c-accordion--trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid var(--color-primary, #2563eb);
  border-right: 2px solid var(--color-primary, #2563eb);
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.2s ease;
}
.c-accordion--content {
  display: none;
  padding: 1rem;
  background-color: #fff;
}
.c-accordion .is--open .c-accordion--trigger::after {
  transform: translateY(-50%) rotate(-45deg);
}
.c-accordion .is--open .c-accordion--content {
  display: block;
}

/* tabs
---------------------------------------------------*/
.tabs .ui-tabs-nav {
  background-color: #f8f8f8;
}
.tabs .ui-tabs-tab {
  display: inline-block;
  outline: none;
}
.tabs .ui-tabs-anchor {
  outline: none;
  display: block;
  padding: 12px;
}
.tabs .ui-tabs-active a {
  background-color: #000;
  color: #fff;
}
.tabs .ui-tabs-panel {
  background-color: #f1f1f1;
  padding: 12px;
}

.c-prev-next {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.c-prev-next__link {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--color-border, #e0e0e0);
  text-decoration: none;
  color: var(--color-text-main, #111827);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-prev-next__link--prev {
  text-align: left;
}
.c-prev-next__link--next {
  text-align: right;
}
.c-prev-next__label {
  font-size: var(--text-sm);
  color: var(--color-text-sub, #1f2937);
}
.c-prev-next__title {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-prev-next {
    flex-direction: column;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-prev-next__link:hover {
    background-color: var(--color-bg-sub, #f9fafb);
    border-color: var(--color-primary, #2563eb);
  }
}

.c-pagination {
  font-size: var(--text-base);
}
.c-pagination .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.c-pagination .nav-links ul {
  display: flex;
  justify-content: center;
  border-radius: 4rem;
  padding: 0 1em;
}
.c-pagination .nav-links li {
  padding: 1em;
}
.c-pagination .nav-links a {
  text-decoration: none;
}
.c-pagination .nav-links a,
.c-pagination .nav-links span {
  padding: 0.5em;
  border: 1px solid #000;
  border-radius: 4px;
  display: block;
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination .nav-links .current {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
}
.c-pagination .nav-links .prev,
.c-pagination .nav-links .next {
  width: auto;
}
.p-header-notice {
  background-color: #fff;
  text-align: center;
  padding: 0.5em 1rem;
  border-bottom: 1px solid var(--color-primary);
  width: 100%;
  height: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .p-header-notice {
    height: 4.4rem;
  }
}
.p-header-notice p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-primary);
  font-weight: bold;
  line-height: var(--leading-normal);
}
@media screen and (max-width: 639px) {
  .p-header-notice p {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .p-header-notice p {
    font-size: 0.625rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-header-notice p {
    font-size: 0.8125rem;
  }
}
.p-header-notice + .l-header {
  top: 2.5rem;
}
@media screen and (max-width: 639px) {
  .p-header-notice + .l-header {
    top: 4.4rem;
  }
}

.p-home__border {
  border: none;
  width: 1px;
  height: 15.625rem;
  background-color: var(--color-primary);
  margin: 12.5rem auto;
}
@media screen and (max-width: 639px) {
  .p-home__border {
    height: 9.375rem;
    margin: 6.25rem auto;
  }
}

.p-home-kv {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 639px) {
  .p-home-kv__inner {
    transform: scale(1.5);
    transform-origin: top center;
  }
}
.p-home-kv__video {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 639px) {
  .p-home-kv__video {
    width: 200%;
  }
}
.p-home-kv__image {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}

.p-home-intro {
  margin-top: 18.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .p-home-intro {
    margin-top: 55vw;
    padding-inline: 7vw;
  }
}
.p-home-intro__title {
  font-size: 3.25rem;
  line-height: 1.38;
  color: var(--color-primary);
}
@media screen and (max-width: 639px) {
  .p-home-intro__title {
    font-size: 3.2rem;
  }
}
.p-home-intro__text {
  font-size: 1.375rem;
  line-height: 2;
  font-weight: 700;
  color: var(--color-primary);
}
@media screen and (max-width: 639px) {
  .p-home-intro__text {
    font-size: 1.8rem;
  }
}

.p-home-concept {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.375rem;
}
@media screen and (max-width: 639px) {
  .p-home-concept {
    padding-inline: 7vw;
  }
  .p-home-concept__main {
    width: 60vw;
    height: auto;
  }
  .p-home-concept__content {
    width: 90vw;
    height: auto;
  }
}

@media screen and (max-width: 639px) {
  .p-home-about .c-title--section {
    margin-top: -1em;
  }
}
.p-home-about__logo {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 639px) {
  .p-home-about__logo {
    width: 70vw;
    height: auto;
  }
}
.p-home-about__link {
  max-width: 1280px;
  margin-inline: auto;
  margin-top: 7.5rem;
  padding-inline: 2.5rem;
}
.p-home-about__link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.75rem;
}
@media screen and (max-width: 639px) {
  .p-home-about__link-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
}
.p-home-about__link-item {
  margin-top: 5rem;
}
@media screen and (max-width: 639px) {
  .p-home-about__link-item {
    margin-top: 0;
  }
}
.p-home-about__link-item a {
  display: block;
  height: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 1.25rem;
  font-size: 1.5rem;
  color: var(--color-text-main);
  font-weight: bold;
  padding: 3rem 1em;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 639px) {
  .p-home-about__link-item a {
    border-radius: 0.625rem;
    font-size: 1.8rem;
  }
}
.p-home-about__link-text {
  margin-block: 1em 0;
  display: flex;
  font-weight: normal;
  font-size: 0.9375rem;
  -moz-text-align-last: left;
  text-align-last: left;
}
@media screen and (max-width: 639px) {
  .p-home-about__link-text {
    font-size: 1.4rem;
  }
}
.p-home-about__table {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 7.5rem;
}
@media screen and (max-width: 639px) {
  .p-home-about__table {
    padding-inline: 2.5rem;
  }
}
.p-home-about__map {
  width: 100%;
  margin-top: 4.375rem;
  aspect-ratio: 1100/548;
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .p-home-about__map {
    aspect-ratio: 4/3;
  }
}
.p-home-about__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.p-home-about__address {
  margin-top: 3rem;
  text-align: center;
  font-size: var(--text-base);
  line-height: 2.2;
}
@media screen and (max-width: 639px) {
  .p-home-about__address {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.p-home-about__root {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 4.375rem;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1em 3.125rem;
}
@media screen and (max-width: 639px) {
  .p-home-about__root {
    font-size: 1.4rem;
  }
}
.p-home-about__root dt {
  font-weight: bold;
  align-self: center;
}
.p-home-about__root dd {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin: 0;
}
.p-home-about__root dd span {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.p-home-news {
  margin-top: 11.25rem;
}
.p-home-news .c-post-list {
  margin-top: 3.75rem;
}

.p-contact-list {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
}
.p-contact-list li {
  padding: 0.75em 0 1em 1em;
}
.p-contact-list li:first-child {
  padding-top: 0;
}
.p-contact-list__label {
  display: block;
  text-indent: -1em;
  margin-bottom: 0.25em;
  font-size: var(--text-xl);
}
@media screen and (max-width: 639px) {
  .p-contact-list__label {
    font-size: 1.8rem;
  }
}
.p-contact-list__contact {
  display: inline-flex;
  align-items: flex-start;
  gap: 1em;
}
@media screen and (max-width: 639px) {
  .p-contact-list__contact {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
  }
}
.p-contact-list__contact-item {
  display: inline-block;
}
.p-contact-list.has-border .p-contact-list__item {
  padding: 3.75rem 5rem;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .p-contact-list.has-border .p-contact-list__item {
    padding: 2.5rem 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .p-contact-list.has-border .p-contact-list__item {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 639px) {
  .p-contact-list.has-border .p-contact-list__item {
    padding: 2.5rem 0;
  }
}
.p-contact-list.has-border .p-contact-list__item:first-child {
  padding-top: 2.5rem;
}
@media screen and (max-width: 639px) {
  .p-contact-list.has-border .p-contact-list__item:first-child {
    padding-top: 0;
  }
}
.p-contact-list.has-border .p-contact-list__item:last-child {
  border-bottom: none;
  padding: 1.25rem 5rem 0;
}
@media screen and (max-width: 639px) {
  .p-contact-list.has-border .p-contact-list__item:last-child {
    padding: 2.5rem 0 0;
  }
}
.p-contact-list.has-border .p-contact-list__item .p-contact-list__label {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 639px) {
  .p-contact-list.has-border .p-contact-list__item .p-contact-list__label {
    margin-bottom: 0.25rem;
  }
}
.p-contact-list.has-border .p-contact-list__title {
  margin: 0 0 2em;
}
@media screen and (max-width: 639px) {
  .p-contact-list.has-border .p-contact-list__title {
    margin: 0 0 1em;
  }
}
.p-contact-list.has-border .p-contact-list__title img {
  display: block;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .p-contact-list.has-border .p-contact-list__title img {
    width: auto;
    height: 8.4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .p-contact-list.has-border .p-contact-list__title img {
    width: auto;
    height: 8vw;
  }
}
@media screen and (max-width: 639px) {
  .p-contact-list.has-border .p-contact-list__title img {
    width: auto;
    height: 9vw;
    max-width: 100%;
  }
}
.p-contact-list.has-border .p-contact-list__text {
  margin: 0 0 0 1em;
}
.p-form__label {
  margin-top: 2em;
}
.p-form > *:first-child {
  margin-top: 0;
}
.p-form > *:last-child {
  margin-bottom: 0;
}

.p-post-content h2 {
  font-size: var(--text-3xl);
  margin-top: 2em;
  color: var(--color-text-main, #111827);
}
.p-post-content h3 {
  font-size: var(--text-2xl);
  margin-top: 1.5em;
  color: var(--color-text-main, #111827);
}
.p-post-content h4 {
  font-size: var(--text-xl);
  margin-top: 1.25em;
  color: var(--color-text-main, #111827);
}
.p-post-content h5 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-top: 1em;
}
.p-post-content h6 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: 1em;
}
.p-post-content p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed, 1.8);
  margin-block: 0 1em;
}
.p-post-content ul {
  margin-bottom: 1.5em;
}
.p-post-content ul li {
  position: relative;
  padding-left: 0.9em;
  line-height: var(--leading-relaxed, 1.8);
  margin-bottom: 0.25em;
}
.p-post-content ul li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  display: block;
  background-color: var(--color-primary);
  position: absolute;
  top: 0.65em;
  left: 0;
  border-radius: 50%;
}
.p-post-content ol {
  padding-left: 2em;
  margin-bottom: 1.5em;
}
.p-post-content ol li {
  list-style: decimal;
  line-height: var(--leading-relaxed, 1.8);
  margin-bottom: 0.25em;
}
.p-post-content ol li::marker {
  color: var(--color-primary);
  font-weight: 700;
}
.p-post-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin-block: 1.5em;
}
.p-post-content blockquote {
  border-left: 0.25rem solid var(--color-primary);
  padding: 0.5em 1.25em;
  margin: 2em 0;
  background-color: var(--color-bg-sub, #f9fafb);
  font-style: italic;
  color: var(--color-text-sub, #374151);
}
.p-post-content hr {
  border: none;
  border-top: 1px solid var(--color-border, #d1d5db);
  margin-block: 2em;
}
.p-post-content > *:first-child {
  margin-top: 0;
}
.p-post-content > *:last-child {
  margin-bottom: 0;
}

.p-page-content {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed, 1.8);
  color: var(--color-text-main, #111827);
}
.p-page-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-top: 3em;
  margin-bottom: 1em;
  color: var(--color-text-main, #111827);
  line-height: var(--leading-tight, 1.25);
}
@media screen and (max-width: 767px) {
  .p-page-content h2 {
    font-size: var(--text-2xl);
  }
}
.p-page-content h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: var(--leading-tight, 1.25);
}
@media screen and (max-width: 767px) {
  .p-page-content h3 {
    font-size: var(--text-xl);
  }
}
.p-page-content h4 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.p-page-content h5 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.p-page-content h6 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.p-page-content p {
  margin-bottom: 1em;
}
.p-page-content ul {
  margin-bottom: 1.5em;
}
.p-page-content ul li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 0.9em;
}
.p-page-content ul li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  display: block;
  background-color: var(--color-primary);
  position: absolute;
  top: 0.65em;
  left: 0;
  border-radius: 50%;
}
.p-page-content ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}
.p-page-content ol li {
  list-style: decimal;
  margin-bottom: 0.5em;
}
.p-page-content ol li::marker {
  color: var(--color-primary);
  font-weight: 700;
}
.p-page-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin-block: 1.5em;
}

.p-sitemap {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: var(--text-lg);
}
.p-sitemap__title {
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .p-sitemap__title {
    font-size: 1.8rem;
  }
}
.p-sitemap__title a {
  color: var(--color-text-main);
}
.p-sitemap__title-link, .p-sitemap__link {
  border: 1px solid #d0d0d0;
  padding: 1em;
  border-radius: 6px;
  color: var(--color-text-main);
  display: block;
  position: relative;
}
.p-sitemap__title-link .fa-solid, .p-sitemap__link .fa-solid {
  content: "";
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .p-sitemap__title-link:hover, .p-sitemap__link:hover {
    opacity: 0.65;
  }
}
.p-sitemap__title-link {
  text-decoration: none;
  color: var(--color-text-main);
}
.p-sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.p-sitemap__link {
  text-decoration: none;
}
@media screen and (max-width: 639px) {
  .p-sitemap__link {
    font-size: 1.4rem;
  }
}

.p-error {
  padding-block: 4rem 6rem;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: 3rem 4rem;
  }
}
.p-error__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: 2.2rem;
  }
}
.p-error__subtitle {
  color: var(--color-primary);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 0;
}
.p-error__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed, 1.8);
  color: var(--color-text-main);
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-error__text {
    font-size: 1.5rem;
  }
}
.p-error__action {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 639px) {
  .p-error__action {
    flex-direction: column;
    align-items: center;
  }
}

.u-text--left {
  text-align: left;
}
.u-text--center {
  text-align: center;
}
.u-text--right {
  text-align: right;
}

.u-width--full {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
}

@media screen and (min-width: 768px) {
  .u-pc-hidden {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-hidden {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-hidden {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none;
  }
}

.u-anchor {
  scroll-margin-top: calc(var(--header-height) + var(--admin-bar-offset));
}