@charset "UTF-8";
/* ====================================
	全体style
==================================== */
.red {
  color: #f01e00;
}

.fw-l {
  font-weight: 300;
}

.fw-r {
  font-weight: 400;
}

.fw-m {
  font-weight: 500;
}

.fw-b {
  font-weight: 700;
}

.fw-h {
  font-weight: 900;
}

.ff-helvetica {
  font-family: Helvetica, sans-serif;
}

html {
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #251714;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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

main,
.entry-content {
  font-size: 1.5rem;
}

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

ul {
  list-style: none;
}

:where(hr) {
  width: 100%;
}

/* 初期状態（非表示） */
.fade-in-item {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

/* 表示状態 */
.fade-in-item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  html {
    font-size: 58.6%;
  }
  .pc-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
/* ====================================
	ヘッダー
==================================== */
.site-header .container {
  max-width: 1000px;
  margin-inline: auto;
}
.site-header .header-widget-area {
  margin-block: 20px;
  position: relative;
  z-index: 10;
}
.site-header .site-title {
  white-space: nowrap;
  font-size: 2.2rem;
  letter-spacing: 0.025em;
}
.site-header .box-01 .text-01 {
  font-size: 2.46rem;
  letter-spacing: 0.25em;
  line-height: 1.5;
}
.site-header .box-01 .text-02 {
  font-size: 1.84rem;
  letter-spacing: 0.25em;
  line-height: 1.5;
}
.site-header .box-01 > *:not(hr) {
  padding-inline: 5px;
}
.site-header .box-02 {
  width: 27.65%;
  max-width: 276.5px;
}
.site-header .box-03 {
  width: 28.91%;
  max-width: 289.1px;
}
.site-header .box-04 {
  width: 5.826%;
  max-width: 58.26px;
}

.header-widget-area hr {
  border-top-width: 1.5px;
}

/* ====================================
	ナビゲーション スタイルとJSトグルアニメーション
==================================== */
.primary-nav {
  color: #0045a0;
  /* 現在のページ */
  /* href="#" の項目はトグルボタンとして機能させる */
  /* [変更点] 開いた状態: 親の li に .is-open クラスが付与されたら回転 (モバイル用) */
  /* サブメニューのスタイル */
}
.primary-nav .menu > li {
  margin-bottom: 0.5rem;
  position: relative;
}
.primary-nav .menu a {
  display: block;
  padding: 0.5rem 0;
}
.primary-nav .menu a:hover {
  background-color: #eff6ff;
  color: #2563eb;
}
.primary-nav .current_page_item a {
  color: #2563eb;
}
.primary-nav a[href="#"] {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* ::after を右端に配置するために使用 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  /* NOTE: 元CSSに justify-content が2回あり、後勝ちで center になります */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* [変更点] 矢印アイコンを ::after で実装 */
}
.primary-nav a[href="#"]::after {
  /* ▼ (下向き三角形) を使用し、開閉時に回転させる */
  content: "▼";
  font-size: 0.8em;
  margin-left: 0.5rem;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
  color: inherit;
}
.primary-nav .menu-item-has-children.is-open > a[href="#"]::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.primary-nav .sub-menu {
  background-color: #f3f4f6;
  border-radius: 0.375rem;
}
.primary-nav .sub-menu li {
  padding: 0 0.5rem;
}
.primary-nav .sub-menu a {
  padding: 0.5rem 1rem;
  /* インデントを兼ねる */
  border-radius: 0.375rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.primary-nav .sub-menu a:hover {
  background-color: #eff6ff;
  color: #628ae2;
}

.home .primary-nav {
  margin-top: 22px;
}

@media (min-width: 768px) {
  body:not(.home) .primary-nav {
    border-block: 2px solid #0045a0;
    padding-block: 8px;
  }
  body:not(.home) .primary-nav .menu > li > a {
    padding-block: 0;
  }
}
@media (max-width: 768px) {
  /* ナビはデフォルト非表示 */
  .primary-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    z-index: 9;
  }
  /* 開いた状態 */
  .primary-nav.is-nav-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* ハンバーガーボタン本体 */
  .hamburger {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    /* 押しやすさ */
    width: 44px;
    height: 44px;
    padding: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    /* iOSのタップハイライトを抑える（任意） */
    -webkit-tap-highlight-color: transparent;
  }
  /* 3本線 */
  .hamburger__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  }
  /* 開いたとき（navに is-nav-open が付く運用） */
  /* 何もしない：セレクタ保険用 */
  /* ボタン側で開閉状態を表現（aria-expandedを見る） */
  .hamburger[aria-expanded=true] .hamburger__bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .hamburger[aria-expanded=true] .hamburger__bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger[aria-expanded=true] .hamburger__bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  /* 背景スクロール停止中：ナビ内はスクロールできるようにする */
  html.is-nav-open,
  body.is-nav-open {
    /* JS側でbodyをfixedにして止めるので、ここは補助 */
  }
  /* ナビが長いときにナビだけスクロールできるように */
  .primary-nav.is-nav-open {
    max-height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    /* iOSでヌルヌル */
  }
  .site-header .container {
    position: relative;
  }
  .header-widget-area.mobile-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6px 1rem;
    margin: 0;
    border-bottom: solid 2px #0045a0;
  }
  .site-header .primary-nav {
    position: absolute;
    top: 44px;
    background: #fff;
    width: 100vw;
    height: 100dvh;
    margin-top: 0;
    padding-block: 30px;
    overflow-y: auto;
  }
  .site-header .primary-nav .menu-item {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
    font-size: 1.5rem;
    padding-inline: 1rem;
    margin-bottom: 1.5em;
    border-left: solid 2px #0045a0;
  }
  .site-header .primary-nav.is-nav-open .menu-item {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .site-header .primary-nav .current_page_item a {
    color: inherit;
  }
  .site-header .primary-nav .sub-menu {
    background-color: unset;
  }
  .site-header .primary-nav .sub-menu .menu-item {
    margin-bottom: 1em;
    padding-left: 0.5em;
  }
  .site-header .primary-nav .sub-menu a {
    padding: 0;
  }
  .site-header .primary-nav a[href="#"] {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    background-color: unset;
  }
  .site-header .menu {
    padding-inline: min(10vw, 5rem);
  }
  .menu-info {
    padding-top: 30px;
    padding-inline: 20px;
  }
  .menu-info .wp-block-columns {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu-info .wp-block-columns .wp-block-column :not(a):not(a *) {
    color: #251714;
  }
}
/* JSトグルクラス (モバイルでの開閉アニメーション用) */
.sub-menu-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

.sub-menu-visible {
  max-height: 500px;
  /* メニューの総高さをカバーできる十分な値 */
  opacity: 1;
  visibility: visible;
  -webkit-transition: max-height 0.5s ease-in, opacity 0.3s ease-in, visibility 0.3s;
  transition: max-height 0.5s ease-in, opacity 0.3s ease-in, visibility 0.3s;
}

/* ====================================
	PC (>= 768px) スタイル: ホバー制御
==================================== */
@media (min-width: 768px) {
  .header-container {
    padding: 0 2rem;
  }
  /* メニューの横並び */
  .primary-nav {
    /* サブメニューの絶対配置と初期非表示 (CSSで開閉を制御) */
    /* JSクラスによる制御を無効化し、CSS :hoverに委譲 */
  }
  .primary-nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* gap: 1.5rem; */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
  }
  .primary-nav .menu > li {
    margin-bottom: 0;
    position: relative;
    /* サブメニューの基点 */
    /* [変更点] PCのホバー時に矢印を回転 */
    /* ホバー時に表示 (PCのみ) */
  }
  .primary-nav .menu > li > a {
    padding: 1rem 0;
    /* ヘッダーの高さに合わせる */
  }
  .primary-nav .menu > li:hover > a[href="#"]::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .primary-nav .menu > li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    /* 上に戻す */
    -webkit-transition: opacity 0.3s, visibility 0s, -webkit-transform 0.3s;
    transition: opacity 0.3s, visibility 0s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, visibility 0s;
    transition: opacity 0.3s, transform 0.3s, visibility 0s, -webkit-transform 0.3s;
  }
  .primary-nav .menu > .menu-item {
    border-left: 1.5px solid #0045a0;
    width: 20%;
    text-align: center;
  }
  .primary-nav .menu > .menu-item:last-of-type {
    border-right: 1.5px solid #0045a0;
  }
  .primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    /* 親メニューの下に配置 */
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
    /* 中央寄せ & わずかに下に配置 */
    min-width: 14rem;
    z-index: 20;
    background-color: white;
    border: 1px solid #e5e7eb;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    white-space: nowrap;
    /* デフォルト状態 */
    visibility: hidden;
    opacity: 0;
    padding: 0.5rem 0;
    /* トランジション設定 */
    -webkit-transition: opacity 0.3s, visibility 0s 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, visibility 0s 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s;
    transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s, -webkit-transform 0.3s;
  }
  .primary-nav .sub-menu li {
    padding: 0;
  }
  .primary-nav .sub-menu-hidden,
  .primary-nav .sub-menu-visible {
    max-height: none !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
body main {
  max-width: 1000px;
  margin: 0 auto;
}
body main::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.2px;
  background-color: #0045a0;
  margin-bottom: 5rem;
}
body article {
  max-width: 900px;
  margin: 0 auto;
}

/* ====================================
	フッター
==================================== */
.footer-comment {
  background-image: url(../images/common/footer-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  color: white;
  text-align: center;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 45px;
}
.footer-comment p {
  font-size: inherit;
}
.footer-comment h3 {
  font-size: 2.73em;
  letter-spacing: 0.2em;
}
.footer-comment .large {
  font-size: 1.26em;
  letter-spacing: 0.2em;
}
.footer-comment .inner {
  line-height: 2.25;
}
.footer-comment .inner > * {
  text-shadow: 0 0 3px #0045a0, 0 0 8px #0045a0, 0 0 10px #0045a0, 0 0 20px #0045a0;
}

.footer-contact {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 45px;
}
.footer-contact .inner {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fd0000;
  color: #fff;
  border-radius: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  letter-spacing: 0.1em;
  padding: 0.4em 0.75em;
}
.footer-contact .inner img {
  height: 1.45em;
  margin-right: 0.75em;
}

.footer-tel {
  text-align: center;
}
.footer-tel h4 {
  font-size: 3.6rem;
  margin-bottom: 45px;
}
.footer-tel a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  max-width: 622px;
  width: 62.2%;
  margin-bottom: 45px;
}
.footer-tel p {
  font-size: 2.5rem;
  margin-bottom: 35px;
}

.footer-hr {
  max-width: 1000px;
  width: calc(100% - 2rem);
  margin: 0 auto 35px;
}

.footer-info {
  background-color: #f5f5f5;
  padding-top: 20px;
  text-align: center;
}
.footer-info .footer-nav {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-info .site-name {
  font-size: 1.8rem;
  margin-block: 1em 0.5em;
}
.footer-info .item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-inline: auto;
  font-size: 1.5rem;
}
.footer-info .footer-access {
  background-color: #fff;
  border: solid 1.25px;
  border-radius: 9999px;
  padding: 0.2em 2.75em;
  font-size: 1.5rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto;
  line-height: 1.25;
}

.copy {
  text-align: center;
  font-size: 1.2rem;
  padding-bottom: 1em;
}

@media (min-width: 768px) {
  .footer-info .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-info .menu > li {
    margin-bottom: 0;
    position: relative;
    /* サブメニューの基点 */
  }
  .footer-info .menu > .menu-item {
    border-left: 1.5px solid;
    padding-inline: 2rem;
    margin-bottom: 1em;
  }
  .footer-info .menu > .menu-item:last-of-type {
    border-right: 1.5px solid;
  }
}
@media (max-width: 768px) {
  .footer-comment {
    font-size: 1.7rem;
    letter-spacing: 0;
    padding-inline: 0.75em;
  }
  .footer-comment h3 {
    font-size: 1.5em !important;
    letter-spacing: 0.1em;
  }
  .footer-comment .large {
    font-size: 1.2em;
    letter-spacing: 0.1em;
  }
  .footer-contact {
    margin-inline: auto;
    margin-bottom: 30px;
  }
  .footer-contact .inner {
    font-size: 1.8rem;
  }
  .footer-contact .inner img {
    height: 1.1em;
    margin-right: 0.5em;
  }
  .footer-tel h4 {
    font-size: 2.25rem;
    margin-bottom: 0.7em;
  }
  .footer-tel a {
    width: 85%;
    margin-bottom: 18px;
  }
  .footer-nav .menu {
    font-size: 0;
    max-width: calc(100% - 12px);
    margin-inline: auto;
  }
  .footer-nav .menu li {
    font-size: 1.3rem;
    display: inline-block;
    border-inline: 1px solid;
    margin-bottom: 0.5em;
    padding-inline: 0.75em;
  }
  .footer-nav .menu li + li {
    margin-left: -1px;
    line-height: 1.75;
  }
  .footer-nav .menu a {
    display: block;
  }
}
/* ====================================
	ブロックエディタ
==================================== */
.home article {
  padding-bottom: 60px;
}

h2.is-style-vk-heading-both_ends::before, h2.is-style-vk-heading-both_ends::after {
  border-bottom-width: 2px;
}

figure.wp-block-image figcaption {
  font-size: 1.35rem;
  margin-block: 0.25em 0.75em;
  line-height: 1.25;
}

:where(.is-layout-flex) {
  gap: unset;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

.gap-s {
  gap: 1rem;
}

.entry-content h2:not(.original) {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  display: block;
  position: relative;
}
.entry-content h2:not(.original) span {
  position: relative;
  clip-path: polygon(0% 0, calc(100% - 1.75em) 0%, 100% 100%, 0% 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
  background-color: #658FC7;
  display: inline-block;
  padding-inline: 1em 3.5em;
}
.entry-content h2:not(.original)::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cad8eb;
}
.entry-content h3 {
  font-size: 1.8rem;
}
.entry-content > *:not(h2) {
  margin-inline: 2.25em;
}
.entry-content .wp-block-column > p,
.entry-content .wp-block-column > ol,
.entry-content .wp-block-column > ul,
.entry-content .wp-block-column .border-left {
  border-left: solid 1.5px #0045a0;
  margin-left: 0.5em;
  padding-left: 0.75em;
  padding-block: 0.5em;
}
.entry-content .wp-block-column ol.wp-block-list,
.entry-content .wp-block-column ul.wp-block-list {
  padding-left: 2em;
}
.entry-content .wp-block-column ol.wp-block-list li,
.entry-content .wp-block-column ul.wp-block-list li {
  padding-bottom: 0.5em;
}
.entry-content > p,
.entry-content > ol,
.entry-content > ul,
.entry-content .border-left {
  border-left: solid 1.5px #0045a0;
  padding-left: 0.75em;
  padding-block: 0.5em;
  margin-left: 4em;
}
.entry-content p,
.entry-content ol,
.entry-content ul {
  line-height: 1.35;
}
.entry-content figure.gallery-3x2.wp-block-gallery.has-nested-images.columns-default {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  /* お好みで */
}
.entry-content figure.gallery-3x2.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image {
  width: 100% !important;
  display: block;
}
.entry-content figure.gallery-3x2.wp-block-gallery.has-nested-images.columns-default img {
  width: 100%;
  height: 100%;
}
.entry-content table {
  border-color: #0045a0;
}
.entry-content figure.table-company tr :first-of-type {
  width: 12em;
}
.entry-content iframe[src*="google.com/maps/"] {
  display: block;
  margin-inline: auto;
  width: 90%;
}

@media (max-width: 768px) {
  .home :where(.wp-block-columns.is-layout-flex) {
    gap: unset;
  }
  article {
    padding-inline: 1.5rem;
  }
  article p {
    line-height: 1.7;
  }
  .entry-content > *:not(h2) {
    margin-inline: 1.2em;
  }
  .entry-content > p,
  .entry-content > ol,
  .entry-content > ul,
  .entry-content .border-left {
    margin-left: 1.2em;
  }
  .entry-content iframe[src*="google.com/maps/"] {
    max-height: 58vh;
  }
  .entry-content figure.table-company tr :first-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .entry-content figure.table-company tr :first-of-type + td {
    padding-top: 0;
  }
  div:has(.support-flow) {
    padding: 15px;
  }
  div:has(.support-flow) .has-fit-text {
    font-size: 14px !important;
    white-space: unset !important;
    line-height: 1.4;
  }
  .support-flow .wp-block-column:has(.wp-block-group) {
    display: grid;
    grid-template-columns: 1fr 3fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    line-height: 1.2;
  }
  .support-flow .wp-block-column:has(.wp-block-group) + div.vk_block-margin-md--margin-top {
    margin-top: 0 !important;
  }
  .support-flow .wp-block-column:has(.wp-block-group) + div figure {
    display: block;
    width: 30px;
    margin: 7px auto 5px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .support-flow.gap-s {
    gap: 0.25em;
  }
  .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    padding: 0.25em 0.5em;
  }
}
/* ====================================
	post
==================================== */
.post-article {
  padding-block: 40px;
}
.post-article .entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post-article .entry-meta {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-article .entry-meta time {
  display: inline-block;
  margin-right: 10px;
}
.post-article .post-categories {
  display: inline-block;
}
.post-article .post-categories li {
  border: solid 1px #0045a0;
  border-radius: 0.25em;
  padding: 0.5em;
  line-height: 1;
  font-size: 1.4rem;
  display: inline-block;
  background-color: #eff6ff;
  color: #0045a0;
}

@media (max-width: 768px) {
  .post-article .entry-header {
    margin-bottom: 30px;
  }
}
/* ====================================
	single
==================================== */
.single-article .wp-block-columns {
  margin-left: 4em;
}
.single-article .wp-block-columns > :first-child > p {
  margin-left: 0;
}

.post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  padding: 0 4rem 40px;
  text-decoration: underline;
}

/* ====================================
	404
==================================== */
.error-404 .contents-wrap {
  width: 80%;
  margin: 9rem auto;
}
.error-404 .page-headline {
  margin-bottom: 40px;
}
.error-404 .link-wrap {
  margin-top: 30px;
}
.error-404 .link-wrap a {
  background-color: #0045a0;
  color: #fff;
  padding: 1em 2em;
  text-decoration: underline;
  border-radius: 999px;
  display: inline-block;
}
.error-404 .link-wrap a + a {
  margin-left: 40px;
}

@media (max-width: 768px) {
  .error-404 .contents-wrap {
    width: 85%;
    margin: 4rem auto;
  }
  .error-404 .contents-wrap p {
    line-height: 1.75;
  }
  .error-404 .link-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .error-404 .link-wrap a {
    padding: 0.3em 1em;
    font-size: 1.4rem;
  }
  .error-404 .link-wrap a + a {
    margin-left: unset;
  }
}
/* ====================================
	新着投稿表示
==================================== */
.news-cards-wrapper {
  margin-bottom: 4rem;
}

.news-cards {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-cards__more {
  grid-column: 1/-1;
  text-align: right;
  margin-top: 0.4em;
}
.news-cards__moreLink {
  display: inline-block;
  padding: 0.3em 0.75em 0.2em;
  border-bottom: 0.2rem dotted #0045a0;
  text-decoration: none;
  color: #0045a0;
}

/* カード全体リンク */
.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0.3rem;
  border: 0.125rem solid #0045a0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.news-card:hover {
  opacity: 0.8;
}
.news-card:hover .news-card__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news-card__thumb {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news-card__noimg {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  opacity: 0.6;
}
.news-card__body {
  padding: 1.2em 1em;
}
.news-card__title {
  line-height: 1.4;
  margin-bottom: 0.8em;
}
.news-card__excerpt {
  font-size: 1.4rem;
  opacity: 0.85;
  line-height: 1.6;
  /* 3行だけ表示 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news-card__readmore {
  font-size: 1.4rem;
  display: block;
  border-bottom: solid 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.4em 0 0 auto;
  padding-inline: 0.5em;
}

/* 一覧ページのページネーション用 */
.news-pagination {
  margin-top: 1.6em;
}
.news-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6em;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: 3em;
}
.news-pagination a, .news-pagination span {
  display: inline-block;
  padding: 0.6em 0.9em;
  border: 0.125rem solid #0045a0;
  text-decoration: none;
  color: #0045a0;
  background-color: #eff6ff;
  line-height: 1.5;
}
.news-pagination .current {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .news-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 15px;
  }
  .news-card__body {
    padding: 1em 0.6em;
  }
  .news-card__excerpt {
    line-height: 1.3;
  }
}
/* ====================================
	新着投稿表示 カテゴリ一覧ページ
==================================== */
.archive-header h1 {
  margin-top: 2em;
}

.category-archive.news-cards-wrapper {
  margin-bottom: 8rem;
}