@charset "UTF-8";
/*base（設定・基盤）
───────────────────────*/
/*───────────────────────────────────
// Breakpoint & Media Query Mixins
───────────────────────────────────*/
/*────────────────────────────
使用例

a.logo {
  // ==========================================
  // 1. PCレイアウト (デフォルト)
  // ==========================================
  width: 16vw;
  min-width: 200px;
  max-width: 260px;
  h1, span {
    margin: 0;
    padding: 0;
    line-height: 1 !important;
    font-size: 1rem !important;

    img, svg {
      width: 100%;
      height: auto;
      display: block;
    }

    svg {
      path, polygon, rect, circle, polyline, line {
        fill: $black;
      }
    }
  }

  // ==========================================
  // 2. タブレット版 (1024px以下)
  // ==========================================
  @include tablet {
    width: 20vw;
    min-width: 180px;
  }

  // ==========================================
  // 3. スマホ版 (768px以下)
  // ==========================================
  @include sp {
    width: 40vw;   // 画面が狭いのでロゴを相対的に大きく
    min-width: 150px;

    h1, span {
      font-size: 0.8rem !important; // 文字を小さく調整
    }
  }
}
────────────────────────────*/
/*──────────────────────────────────────────────────
余白・幅・レイアウトトークン
──────────────────────────────────────────────────
余白は案件ごとの見た目を左右するため、個別値を散らさずここを基準にします。
*/
:root {
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-section: clamp(4rem, 8vw, 7.5rem);
  --content-width: 1080px;
  --content-width-narrow: 760px;
  --content-width-wide: 1280px;
}

/*──────────────────────────────────────────────────
影・フィルター・重なり表現
──────────────────────────────────────────────────*/
/*──────────────────────────────────────────────────
カラー設計
──────────────────────────────────────────────────
案件化時はこの CSS カスタムプロパティを優先して差し替えます。
デザインの軸となるブランド色、本文色、背景色、境界線色のみを管理します。
*/
:root {
  --color-brand-primary: #7BCCCF;
  --color-brand-secondary: #9A6670;
  --color-text-primary: #171717;
  --color-text-secondary: #959595;
  --color-text-inverse: #FFFFFF;
  --color-background-base: #FFFFFF;
  --color-background-soft: #FFFFFF;
  --color-background-section: #E0DAD4;
  --color-border-default: #E4E1DE;
  --radius-default: 7px;
  --shadow-default: 0 0.4px 1.2px rgba(0, 0, 0, 0.01), 0 1px 3.4px rgba(0, 0, 0, 0.015), 0 2.4px 8.1px rgba(0, 0, 0, 0.02), 0 8px 27px rgba(0, 0, 0, 0.03);
}

/* ダーク背景上の読みやすさを担保する汎用クラス */
.is_dark {
  color: var(--color-text-inverse);
}
.is_dark a,
.is_dark p,
.is_dark span {
  color: inherit;
}

/*─────typography─────*/
/* Fluid Typography
-------------------------------------------------- */
html {
  font-size: clamp(14px, 0.875vw + 8px, 16px);
}

body {
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

/*base（リセット・ベーススタイル）
───────────────────────*/
/*──────────────────────────────────────────────────
モダン CSS リセット
参考: modern-normalize, Josh Comeau's CSS Reset
──────────────────────────────────────────────────*/
/* Box Sizing
すべての要素でborder-boxを使用（直感的なサイズ計算のため）
-------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ドキュメント
-------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Body
-------------------------------------------------- */
body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* タイポグラフィ
テキストの折り返しを安全に処理
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* メディア要素
画像・動画をレスポンシブにデフォルト対応
-------------------------------------------------- */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/* フォーム要素
親要素のフォントを継承（ブラウザのデフォルトを上書き）
-------------------------------------------------- */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* テキストエリア
縦方向のみリサイズ可能に
-------------------------------------------------- */
textarea {
  resize: vertical;
}

/* テーブル
-------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 非表示要素
-------------------------------------------------- */
[hidden] {
  display: none !important;
}

/*─────BASE─────*/
/* Fluid Typography Base
-------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

/* Base Elements
-------------------------------------------------- */
i {
  vertical-align: middle;
  line-height: 1;
  margin: 0;
  padding: 0;
}

a {
  display: block;
}

a,
a img {
  text-decoration: none;
  cursor: pointer !important;
  transition: 0.3s ease-in-out;
}

/* フォーカス表示
-------------------------------------------------- */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid rgba(154, 102, 112, 0.85);
  outline-offset: 4px;
  border-radius: 4px;
}

a:hover {
  cursor: pointer;
}

span {
  letter-spacing: 0.07rem;
}

p {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  line-height: 1.7;
  letter-spacing: 0.07rem;
  font-weight: 500;
  color: #171717;
}
p a {
  display: inline-block;
  border-bottom: 1px solid #7BCCCF;
}

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

figure,
img {
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: bottom;
}

/* Utility Classes
-------------------------------------------------- */
.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

.margin_top {
  margin-top: 150px;
}

.margin_bottom {
  margin-bottom: 150px;
}

.padding {
  padding: 120px 0 30px;
}

::-moz-selection {
  color: #FFFFFF;
  background: #7BCCCF;
}

::selection {
  color: #FFFFFF;
  background: #7BCCCF;
}

/* Screen Reader Text & Skip Link
-------------------------------------------------- */
.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 !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #FFFFFF;
  border-radius: 7px;
  box-shadow: 0 0.4px 1.2px rgba(0, 0, 0, 0.01), 0 1px 3.4px rgba(0, 0, 0, 0.015), 0 2.4px 8.1px rgba(0, 0, 0, 0.02), 0 8px 27px rgba(0, 0, 0, 0.03);
  clip: auto !important;
  clip-path: none;
  color: #7BCCCF;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 10px;
  line-height: normal;
  padding: 15px 23px;
  text-decoration: none;
  top: 10px;
  width: auto;
  z-index: 100000;
  border: 2px solid #7BCCCF;
}

/* Embedded Content
-------------------------------------------------- */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.the_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 42.55%;
  /* Cinemascope aspect ratio (approx. 2.35:1) */
}
.the_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 7px;
}

.googlemap {
  margin: 0 0 70px;
}
.googlemap:last-of-type {
  margin: 0;
}
.googlemap h3 {
  margin: 0 0 15px;
}
.googlemap .map_annotation {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}
.googlemap .map_annotation .map_annotation_content {
  color: #7BCCCF;
  font-size: 0.9rem;
}
.googlemap .map_annotation .map_annotation_link a div {
  color: #A86D69;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
}
.googlemap .map_annotation .map_annotation_link a div span.material-symbols-outlined {
  font-size: 1.2rem;
  color: #A86D69;
  line-height: 1;
}

/* Layout
-------------------------------------------------- */
body {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
body.is-loaded {
  opacity: 1;
  visibility: visible;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  background: #fff;
  color: #171717;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  text-autospace: normal;
  /* 和文中の英数字に余白 */
  overflow-x: hidden;
  overflow-x: clip;
}
body .site {
  position: relative !important;
  overflow-x: hidden;
  overflow-x: clip;
}
body main {
  margin: 0 !important;
  background: #fff;
}
body main .main_wrap {
  display: block;
}

/* Container Widths
-------------------------------------------------- */
.wrap {
  max-width: 1480px;
  width: 92%;
  margin: 0 auto;
}

.wide_wrap {
  max-width: 1245px;
  width: 100%;
  margin: 0 auto;
}

.medium_wrap {
  max-width: 1110px;
  width: 92%;
  margin: 0 auto;
}

.tiny_wrap {
  max-width: 850px;
  width: 92%;
  margin: 0 auto;
}

/* Typography Hierarchy
-------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  margin: 0;
  letter-spacing: 0.07rem;
  font-weight: 600;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

h1,
.h1 {
  font-size: clamp(1.5em, 3vw, 1.8em);
  line-height: 1.333em;
}

h2,
.h2 {
  font-size: clamp(1.2em, 2.5vw, 1.4em);
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

h3,
.h3 {
  font-size: clamp(1em, 2vw, 1.1em);
}

h4,
.h4 {
  font-size: 1em;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 1em;
  line-height: 2.09em;
  letter-spacing: 2px;
}

/* Container Queries for Responsive Components
-------------------------------------------------- */
@container (max-width: 768px) {
  .googlemap .map_annotation {
    flex-direction: column;
  }
  .googlemap .map_annotation .map_annotation_link {
    margin: 5px 0 0;
  }
  .googlemap .map_annotation .map_annotation_link a {
    display: inline-block;
  }
  .light_back,
  .white_back {
    padding: 40px 0;
  }
}
/* レスポンシブ（タブレット以下 1024px）
-------------------------------------------------- */
@media (max-width: 1023.98px) {
  body main {
    width: 100%;
    margin: 0 auto;
    padding: 0 !important;
    min-height: auto;
  }
  body main .main_wrap {
    margin: 0 !important;
  }
}
/* レスポンシブ（スマホ 768px以下）
-------------------------------------------------- */
@media (max-width: 767.98px) {
  body main {
    padding: 0;
  }
  body main .main_wrap {
    margin: 40px auto 0 !important;
  }
  .light_back,
  .white_back {
    padding: 40px 0;
  }
  .googlemap .map_annotation {
    flex-direction: column;
  }
  .googlemap .map_annotation .map_annotation_content {
    font-size: 0.9rem;
  }
  .googlemap .map_annotation .map_annotation_link {
    margin: 5px 0 0;
  }
  .googlemap .map_annotation .map_annotation_link a {
    display: inline-block;
  }
  .googlemap .map_annotation .map_annotation_link a div {
    font-size: 0.9rem;
  }
}
/*modules（共通モジュール）
───────────────────────*/
/*──────────────────────────────────────────────────
ヘッダー共通
──────────────────────────────────────────────────*/
body.is-drawer-open {
  overflow: hidden;
}

header.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
header.header .header_bar {
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 104px;
  padding: 18px 32px;
  pointer-events: none;
}
@media (max-width: 1023.98px) {
  header.header .header_bar {
    min-height: 82px;
    padding: 14px 20px;
  }
}
@media (max-width: 767.98px) {
  header.header .header_bar {
    min-height: 76px;
    padding: 12px 16px;
  }
}
header.header .header_logo {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(210px, 24vw, 320px);
  padding: 10px 12px;
  border-radius: 4px;
  pointer-events: auto;
}
@media (max-width: 1023.98px) {
  header.header .header_logo {
    width: min(48vw, 280px);
  }
}
@media (max-width: 767.98px) {
  header.header .header_logo {
    width: min(66vw, 260px);
    padding: 8px;
  }
}
header.header .header_logo:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 3px;
}
header.header .header_logo .header_logo_inner {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}
header.header .header_logo img {
  display: block;
  width: 100%;
  height: auto;
}

/*──────────────────────────────────────────────────
PC初期ヘッダー
──────────────────────────────────────────────────*/
header.header .header_primary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
  margin-left: auto;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
@media (max-width: 1023.98px) {
  header.header .header_primary {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
header.header .header_quicklinks {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1023.98px) {
  header.header .header_quicklinks {
    display: none;
  }
}
header.header .header_quicklink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(79, 159, 162, 0.6);
  border-radius: 50%;
  color: #4F9FA2;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
header.header .header_quicklink:hover, header.header .header_quicklink:focus-visible {
  border-color: #4F9FA2;
  background: #4F9FA2;
  color: #FFFFFF;
}
header.header .header_quicklink:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 3px;
}
header.header .header_quicklink svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/*──────────────────────────────────────────────────
スクロール後ヘッダー
──────────────────────────────────────────────────*/
header.header.stretch .header_logo,
body.is-drawer-open header.header .header_logo {
  width: clamp(190px, 20vw, 270px);
}
@media (max-width: 767.98px) {
  header.header.stretch .header_logo,
  body.is-drawer-open header.header .header_logo {
    width: min(62vw, 240px);
  }
}
header.header.stretch .header_primary,
body.is-drawer-open header.header .header_primary {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}
header.header.stretch .header_menu_toggle,
body.is-drawer-open header.header .header_menu_toggle {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

/*──────────────────────────────────────────────────
PCメインメニュー
──────────────────────────────────────────────────*/
.header_mainmenu {
  display: block;
}
@media (max-width: 1023.98px) {
  .header_mainmenu {
    display: none;
  }
}
.header_mainmenu .header_mainmenu_list {
  display: flex;
  align-items: stretch;
  gap: clamp(2px, 0.5vw, 10px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.header_mainmenu .header_mainmenu_item {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header_mainmenu .header_mainmenu_trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 32px;
  padding: 8px clamp(7px, 0.8vw, 14px);
  border: 0;
  background: transparent;
  color: #171717;
  cursor: pointer;
}
.header_mainmenu .header_mainmenu_trigger::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 0px;
  left: 12%;
  height: 1px;
  background: #4F9FA2;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.header_mainmenu .header_mainmenu_trigger:hover, .header_mainmenu .header_mainmenu_trigger:focus-visible, .header_mainmenu .header_mainmenu_trigger.is-active, .header_mainmenu .header_mainmenu_trigger.is-current {
  color: #4F9FA2;
}
.header_mainmenu .header_mainmenu_trigger:hover::after, .header_mainmenu .header_mainmenu_trigger:focus-visible::after, .header_mainmenu .header_mainmenu_trigger.is-active::after, .header_mainmenu .header_mainmenu_trigger.is-current::after {
  transform: scaleX(1);
}
.header_mainmenu .header_mainmenu_trigger:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 2px;
}
.header_mainmenu .header_mainmenu_label {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
  white-space: nowrap;
}

/*──────────────────────────────────────────────────
PCメガメニュー
──────────────────────────────────────────────────*/
.header_mega_menu {
  position: fixed;
  z-index: 999;
  top: 86px;
  right: 32px;
  width: min(1100px, 100vw - 64px);
  max-height: calc(100vh - 118px);
  padding: 0;
  overflow-y: auto;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(23, 23, 23, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
@media (max-width: 1023.98px) {
  .header_mega_menu {
    display: none;
  }
}
.header_mega_menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header_mega_menu .header_mega_menu_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 32px;
}
.header_mega_menu .header_mega_menu_heading {
  display: flex;
  grid-row: 1;
  align-items: baseline;
  gap: 12px;
}
.header_mega_menu .header_mega_menu_en {
  color: #4F9FA2;
  font-family: "Comfortaa", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.header_mega_menu .header_mega_menu_cards {
  display: grid;
  grid-row: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header_mega_menu .header_mega_menu_card {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header_mega_menu .header_mega_menu_card a {
  display: block;
  color: #171717;
}
.header_mega_menu .header_mega_menu_card a:hover, .header_mega_menu .header_mega_menu_card a:focus-visible {
  color: #4F9FA2;
}
.header_mega_menu .header_mega_menu_card a:hover img, .header_mega_menu .header_mega_menu_card a:focus-visible img {
  transform: scale(1.04);
}
.header_mega_menu .header_mega_menu_card a:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 4px;
}
.header_mega_menu .header_mega_menu_card a.is-current .header_mega_menu_card_label {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.header_mega_menu .header_mega_menu_image {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 3px;
  background: #F5F5F5;
}
.header_mega_menu .header_mega_menu_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.header_mega_menu .header_mega_menu_card_label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.header_mega_menu .header_mega_menu_card_label > span {
  flex: 0 0 auto;
  color: #4F9FA2;
}

/*──────────────────────────────────────────────────
MENU・CLOSEボタン
──────────────────────────────────────────────────*/
header.header .header_menu_toggle {
  position: absolute;
  top: 50%;
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 126px;
  height: 44px;
  padding: 0 9px;
  border: none;
  border-radius: 999px;
  background: none;
  color: #171717;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(0.84);
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background-color 0.25s ease, color 0.25s ease;
}
@media (max-width: 1023.98px) {
  header.header .header_menu_toggle {
    right: 20px;
    width: 112px;
    height: 58px;
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
  }
}
@media (max-width: 767.98px) {
  header.header .header_menu_toggle {
    right: 16px;
    width: 104px;
    height: 52px;
    padding: 0 14px;
  }
}
header.header .header_menu_toggle:hover, header.header .header_menu_toggle:focus-visible {
  color: #4F9FA2;
}
header.header .header_menu_toggle:hover .header_menu_toggle_lines span:last-child, header.header .header_menu_toggle:focus-visible .header_menu_toggle_lines span:last-child {
  width: 100%;
}
header.header .header_menu_toggle:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 3px;
}
header.header .header_menu_toggle.is-active .header_menu_toggle_menu {
  display: none;
}
header.header .header_menu_toggle.is-active .header_menu_toggle_close {
  display: block;
}
header.header .header_menu_toggle.is-active .header_menu_toggle_lines span:first-child {
  transform: translateY(3px) rotate(45deg);
}
header.header .header_menu_toggle.is-active .header_menu_toggle_lines span:last-child {
  width: 100%;
  transform: translateY(-3px) rotate(-45deg);
}
header.header .header_menu_toggle_label {
  font-family: "Comfortaa", sans-serif;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: color 0.25s ease;
}
header.header .header_menu_toggle_close {
  display: none;
}
header.header .header_menu_toggle_lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  transition: color 0.25s ease;
}
header.header .header_menu_toggle_lines span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: width 0.35s ease, transform 0.3s ease, background-color 0.25s ease;
}
header.header .header_menu_toggle_lines span:last-child {
  align-self: flex-start;
  width: 60%;
}

/*──────────────────────────────────────────────────
全画面ドロワー共通
──────────────────────────────────────────────────*/
.header_drawer {
  position: fixed;
  z-index: 1001;
  inset: 0;
  display: grid;
  grid-template-columns: 38% 62%;
  width: 100%;
  height: 100dvh;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
@media (max-width: 1023.98px) {
  .header_drawer {
    grid-template-columns: 34% 66%;
  }
}
@media (max-width: 767.98px) {
  .header_drawer {
    display: block;
  }
}
.header_drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header_drawer.is-open .header_drawer_visual {
  opacity: 1;
  transform: scale(1);
}
.header_drawer.is-open .header_drawer_group,
.header_drawer.is-open .header_drawer_utility,
.header_drawer.is-open .header_drawer_actions,
.header_drawer.is-open .header_drawer_bottom {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.header_drawer .header_drawer_body {
  height: 100%;
  padding: 122px clamp(34px, 4vw, 68px) 42px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (max-width: 1023.98px) {
  .header_drawer .header_drawer_body {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .header_drawer .header_drawer_body {
    width: 100%;
    padding: 98px 26px 36px;
  }
}

/*──────────────────────────────────────────────────
PCドロワー画像スライダー
──────────────────────────────────────────────────*/
.header_drawer_visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #F5F5F5;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.7s ease 0.08s, transform 1s ease;
}
@media (max-width: 767.98px) {
  .header_drawer_visual {
    display: none;
  }
}

.header_drawer_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.header_drawer_slide.is-active {
  opacity: 1;
}
.header_drawer_slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*──────────────────────────────────────────────────
PCドロワーナビゲーション
──────────────────────────────────────────────────*/
.header_drawer_nav {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.header_drawer_groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vh, 64px) clamp(28px, 4vw, 64px);
}
@media (max-width: 1023.98px) {
  .header_drawer_groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }
}

.header_drawer_group {
  min-width: 0;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px);
  transition: opacity 0.55s ease, filter 0.7s ease, transform 0.55s ease;
}
.header_drawer_group:nth-child(1) {
  transition-delay: 0.135s;
}
.header_drawer_group:nth-child(2) {
  transition-delay: 0.19s;
}
.header_drawer_group:nth-child(3) {
  transition-delay: 0.245s;
}
.header_drawer_group:nth-child(4) {
  transition-delay: 0.3s;
}
.header_drawer_group:nth-child(5) {
  transition-delay: 0.355s;
}
.header_drawer_group:nth-child(6) {
  transition-delay: 0.41s;
}
.header_drawer_group .header_drawer_group_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  background: transparent;
  color: #171717;
  text-align: left;
  cursor: default;
}
.header_drawer_group .header_drawer_group_trigger:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 4px;
}
.header_drawer_group .header_drawer_group_trigger.is-current {
  border-bottom-color: #4F9FA2;
}
.header_drawer_group .header_drawer_group_en {
  display: block;
  color: #4F9FA2;
  font-family: "Comfortaa", sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.header_drawer_group .header_drawer_group_title {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.header_drawer_group .header_drawer_group_icon {
  display: none;
}
.header_drawer_group .header_drawer_links {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.header_drawer_group .header_drawer_links li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header_drawer_group .header_drawer_links a {
  display: block;
  padding: 2px 0;
  color: rgba(23, 23, 23, 0.6);
  font-size: 0.79rem;
  line-height: 1.55;
  transition: color 0.2s ease, transform 0.2s ease;
}
.header_drawer_group .header_drawer_links a:hover, .header_drawer_group .header_drawer_links a:focus-visible {
  color: #4F9FA2;
  transform: translateX(3px);
}
.header_drawer_group .header_drawer_links a:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 2px;
}
.header_drawer_group .header_drawer_links a.is-current {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.header_drawer_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(42px, 6vh, 72px);
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px);
  transition: opacity 0.55s ease 0.48s, filter 0.7s ease 0.48s, transform 0.55s ease 0.48s;
}

.header_drawer_utility {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px);
  transition: opacity 0.55s ease 0.41s, filter 0.7s ease 0.41s, transform 0.55s ease 0.41s;
}
.header_drawer_utility a {
  display: inline-flex;
  padding: 0;
  margin: 0 0 10px;
}
.header_drawer_utility a span.header_drawer_large_title {
  color: #171717;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  transition: color 0.2s ease, transform 0.2s ease;
}
.header_drawer_utility a:last-of-type {
  margin: 0;
}
.header_drawer_utility a:hover span, .header_drawer_utility a:focus-visible span {
  color: #4F9FA2;
  transform: translateX(3px);
}
.header_drawer_utility a:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 2px;
}
.header_drawer_utility .header_drawer_utility_title {
  display: block;
  width: 100%;
  padding: 0 0 13px;
}
.header_drawer_utility .header_drawer_group_title {
  display: block;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.header_drawer_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 28px;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px);
  transition: opacity 0.55s ease 0.56s, filter 0.7s ease 0.56s, transform 0.55s ease 0.56s;
}

.header_drawer_sns {
  display: flex;
  gap: 10px;
}
.header_drawer_sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 50%;
  color: #171717;
}
.header_drawer_sns a:hover, .header_drawer_sns a:focus-visible {
  border-color: #4F9FA2;
  background: #4F9FA2;
  color: #FFFFFF;
}
.header_drawer_sns a:focus-visible {
  outline: 2px solid #4F9FA2;
  outline-offset: 3px;
}
.header_drawer_sns svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.header_drawer_brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 420px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #E4E1DE;
  color: #171717;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.header_drawer_brochure:hover, .header_drawer_brochure:focus-visible {
  background: #7BCCCF;
  color: #FFFFFF;
  border-color: #7BCCCF;
}
.header_drawer_brochure:focus-visible {
  outline: 2px solid #7BCCCF;
  outline-offset: 3px;
}

.header_drawer_brochure_image {
  flex: 0 0 126px;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.header_drawer_brochure_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header_drawer_brochure_label {
  display: block;
  padding: 20px;
}

.header_drawer_copyright {
  margin-left: auto;
  color: rgba(23, 23, 23, 0.62);
  font-family: "Comfortaa", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: right;
}

/*──────────────────────────────────────────────────
SPドロワー
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .header_drawer {
    background: #FFFFFF;
  }
  .header_drawer .header_drawer_body {
    background: #FFFFFF;
  }
  .header_drawer .header_drawer_nav {
    max-width: none;
  }
  .header_drawer .header_drawer_groups {
    display: block;
  }
  .header_drawer .header_drawer_group {
    border-bottom: 1px solid #E4E1DE;
  }
  .header_drawer .header_drawer_utility {
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 18px 4px;
    border-bottom: 1px solid #E4E1DE;
  }
  .header_drawer .header_drawer_utility a {
    font-size: 0.74rem;
  }
  .header_drawer .header_drawer_utility .header_drawer_utility_title {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .header_drawer .header_drawer_utility .header_drawer_utility_title .header_drawer_group_title {
    font-size: 1rem;
  }
  .header_drawer .header_drawer_actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
  }
  .header_drawer .header_drawer_actions .header_drawer_brochure {
    align-self: flex-end;
  }
  .header_drawer .header_drawer_bottom {
    margin-top: 24px;
  }
}

/*──────────────────────────────────────────────────
SPアコーディオン
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .header_drawer_group .header_drawer_group_trigger {
    position: relative;
    padding: 18px 4px;
    border-bottom: 0;
    cursor: pointer;
  }
  .header_drawer_group .header_drawer_group_en {
    font-size: 0.6rem;
  }
  .header_drawer_group .header_drawer_group_title {
    margin-top: 7px;
    font-size: 1rem;
  }
  .header_drawer_group .header_drawer_group_icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
  }
  .header_drawer_group .header_drawer_group_icon::before, .header_drawer_group .header_drawer_group_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: #171717;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }
  .header_drawer_group .header_drawer_group_icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .header_drawer_group .header_drawer_group_trigger.is-open .header_drawer_group_icon::after {
    transform: translate(-50%, -50%) rotate(0);
  }
  .header_drawer_group .header_drawer_links {
    display: block;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.45s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.35s ease;
  }
  .header_drawer_group .header_drawer_links > li a {
    padding: 9px 4px;
    border-top: 1px solid rgba(23, 23, 23, 0.08);
    font-size: 0.8rem;
  }
  .header_drawer_group.is-open .header_drawer_links {
    max-height: 900px;
    padding: 0 0 15px;
    opacity: 1;
    visibility: visible;
  }
}

/*──────────────────────────────────────────────────
モーション低減
──────────────────────────────────────────────────*/
@media (prefers-reduced-motion: reduce) {
  header.header *,
  .header_drawer *,
  .header_mega_menu * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*──────────────────────────────────────────────────
フッター上部 共通お問い合わせ導線
──────────────────────────────────────────────────*/
.footer_contact {
  padding: clamp(110px, 11.2vw, 144px) 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.98) 12%, rgba(235, 246, 255, 0.78) 58%, rgba(255, 239, 242, 0.72) 100%);
}
.footer_contact .footer_contact_inner {
  display: grid;
  max-width: 1028px;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(56px, 9vw, 140px);
}
.footer_contact .footer_contact_copy h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.footer_contact .footer_contact_copy p {
  margin: 18px 0 0;
  color: #83b9e8;
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.footer_contact .footer_contact_button {
  display: flex;
  min-height: 76px;
  padding: 20px 28px 20px 36px;
  border: 1px solid #171717;
  box-shadow: 8px 8px 0 -1px #FFFFFF, 8px 8px 0 #171717;
  color: #171717;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer_contact .footer_contact_button .material-symbols-outlined {
  font-size: 22px;
}
.footer_contact .footer_contact_button:focus-visible {
  outline: 3px solid #4F9FA2;
  outline-offset: 5px;
}
@media (max-width: 1023.98px) {
  .footer_contact .footer_contact_inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 48px;
  }
}
@media (max-width: 767.98px) {
  .footer_contact {
    padding: 64px 0 72px;
  }
  .footer_contact .footer_contact_inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer_contact .footer_contact_copy h2 {
    font-size: 1.55rem;
    line-height: 1.65;
  }
  .footer_contact .footer_contact_copy p {
    margin-top: 12px;
  }
  .footer_contact .footer_contact_button {
    width: calc(100% - 8px);
    min-height: 68px;
    padding: 18px 22px 18px 26px;
  }
}

/*──────────────────────────────────────────────────
フッター
学校情報と主要導線を簡潔に整理する。
──────────────────────────────────────────────────*/
footer.footer {
  background-color: #FFFFFF;
  color: #171717;
}
footer.footer .footer_wrapper {
  padding: 24px 0 30px;
}
@media (max-width: 767.98px) {
  footer.footer .footer_wrapper {
    padding: 28px 0 20px;
  }
}
footer.footer .footer_layout {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: clamp(48px, 8vw, 140px);
}
@media (max-width: 1023.98px) {
  footer.footer .footer_layout {
    gap: 48px;
  }
}
@media (max-width: 767.98px) {
  footer.footer .footer_layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
footer.footer .footer_identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
footer.footer .footer_tagline {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  footer.footer .footer_tagline {
    font-size: 0.8125rem;
  }
}
footer.footer .footer_logo {
  display: block;
  width: min(100%, 390px);
  color: #171717;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
footer.footer .footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer.footer .footer_meta {
  margin-top: 6px;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
footer.footer .footer_meta p {
  margin: 0;
}
footer.footer .footer_meta a {
  color: inherit;
  text-decoration: none;
}
footer.footer .footer_meta a:hover, footer.footer .footer_meta a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
footer.footer .footer_identity_links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.5;
}
footer.footer .footer_identity_links a {
  color: #171717;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
footer.footer .footer_identity_links a:hover, footer.footer .footer_identity_links a:focus-visible {
  color: #4c7183;
}
footer.footer .footer_social {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
footer.footer .footer_social > span {
  font-size: 0.6875rem;
  color: #959595;
}
footer.footer .footer_social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer.footer .footer_navigation {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(120px, 1fr);
  gap: 36px;
  align-items: start;
}
@media (max-width: 1023.98px) {
  footer.footer .footer_navigation {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  footer.footer .footer_navigation {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
footer.footer .footer_primary_menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer.footer .footer_primary_menu li {
  margin: 0;
}
footer.footer .footer_primary_menu a {
  display: inline-block;
  color: #171717;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
footer.footer .footer_primary_menu a::before {
  content: "・";
}
footer.footer .footer_primary_menu a:hover, footer.footer .footer_primary_menu a:focus-visible {
  color: #4c7183;
}
@media (max-width: 767.98px) {
  footer.footer .footer_primary_menu {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
footer.footer .footer_subnav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
footer.footer .footer_subnav a {
  color: #959595;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
footer.footer .footer_subnav a:hover, footer.footer .footer_subnav a:focus-visible {
  color: #171717;
}
@media (max-width: 767.98px) {
  footer.footer .footer_subnav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}
footer.footer .footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  font-size: 0.6875rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  footer.footer .footer_bottom {
    margin-top: 36px;
  }
}
footer.footer .footer_copyright {
  margin: 0;
  color: #171717;
}
footer.footer .pagetop a {
  color: #171717;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
footer.footer .pagetop a:hover, footer.footer .pagetop a:focus-visible {
  color: #4c7183;
}

/*──────────────────────────────────────────────────
ローダー
──────────────────────────────────────────────────*/
#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 1000000000000000000000000;
}

.completed {
  opacity: 0;
  visibility: hidden;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4F9FA2;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  animation-delay: 0.9s;
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
/*──────────────────────────────────────────────────
アコーディオンFAQ
──────────────────────────────────────────────────*/
ul.accordion {
  margin: 0 auto;
  max-width: 100%;
  border-top: solid 1px #E4E1DE;
  padding: 1rem 0 0;
}
@media (max-width: 767.98px) {
  ul.accordion {
    padding: 0.5rem 0 0;
  }
}
ul.accordion .toggle {
  display: none;
}
ul.accordion li.option {
  position: relative;
  margin-bottom: 1rem;
}
ul.accordion li.option .title,
ul.accordion li.option .content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
ul.accordion li.option .title {
  padding: 1rem 2rem 2rem 1rem;
  display: block;
  color: #171717;
  font-weight: 500;
  letter-spacing: 0.06rem;
  cursor: pointer;
}
ul.accordion li.option .title::after, ul.accordion li.option .title::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 2px;
  height: 0.75rem;
  background-color: #E4E1DE;
  transition: all 0.3s;
}
ul.accordion li.option .title::after {
  transform: rotate(90deg);
}
@media (max-width: 767.98px) {
  ul.accordion li.option .title {
    padding: 0.5rem 3rem 1rem 0rem;
    font-size: 0.9rem;
  }
  ul.accordion li.option .title::after, ul.accordion li.option .title::before {
    top: 1.5rem;
  }
}
ul.accordion li.option .content {
  max-height: 0;
  overflow: hidden;
  border-bottom: solid 1px #E4E1DE;
}
ul.accordion li.option .content p {
  margin: 0;
  padding: 0 1.5rem 2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  ul.accordion li.option .content p {
    padding: 1rem 1rem 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
ul.accordion li.option .toggle:checked + .title + .content {
  max-height: 800px;
  transition: all 1.5s;
}
ul.accordion li.option .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

/*────────────────────────────
table
────────────────────────────*/
table {
  box-sizing: border-box;
  border-collapse: collapse;
  border-spacing: 0;
}

.tbl_wrap {
  border-radius: 7px !important;
  padding: 60px;
  margin: 60px auto;
  width: 70%;
  background-color: #FFFFFF;
}
.tbl_wrap > span.title {
  display: block;
  font-size: 1.5rem;
  padding: 0 0 20px;
}
.tbl_wrap img.table_header {
  aspect-ratio: 2.35/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
}
.tbl_wrap table.tbl {
  text-align: left;
  width: 100%;
  letter-spacing: 0.07rem;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl {
    margin: 0;
  }
}
.tbl_wrap table.tbl tbody tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E4E1DE;
  padding: 2rem 0;
}
.tbl_wrap table.tbl tbody tr:last-child {
  border-bottom: none;
}
.tbl_wrap table.tbl tbody th {
  flex-basis: 30%;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody th {
    font-size: 0.8rem;
    padding: 1rem 0.5rem;
    flex-basis: 30%;
  }
}
.tbl_wrap table.tbl tbody td {
  flex-basis: 70%;
  font-weight: 400;
  font-size: 1rem;
}
.tbl_wrap table.tbl tbody td span.title {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}
.tbl_wrap table.tbl tbody td span.title::before {
  width: 10px;
  height: 10px;
  content: "";
  border: 1px solid #7BCCCF;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.tbl_wrap table.tbl tbody td a {
  display: inline-block;
  color: #7BCCCF;
  font-weight: 500;
}
.tbl_wrap table.tbl tbody td a:not(:first-child) {
  margin-left: 10px;
}
.tbl_wrap table.tbl tbody td ul li {
  margin-bottom: 10px;
}
.tbl_wrap table.tbl tbody td ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody td ul li {
    margin-bottom: 5px;
  }
}
.tbl_wrap table.tbl tbody td span.annotation {
  display: inline-block;
  margin-top: 15px;
  padding: 15px;
  background: #F8F9FA;
  font-size: 0.8rem;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody td span.annotation {
    font-size: 0.7rem;
  }
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody td {
    font-size: 0.8rem;
    padding: 1rem;
    flex-basis: 70%;
  }
}

/*────────────────────────────
pagination
────────────────────────────*/
.pagination {
  margin: 50px auto;
}
@media (max-width: 767.98px) {
  .pagination {
    margin: 20px auto 0;
  }
}
.pagination div.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination div.nav-links a,
.pagination div.nav-links span {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1 !important;
  padding: 10px;
  font-size: 1.3rem !important;
  margin: 0 8px;
}
@media (max-width: 767.98px) {
  .pagination div.nav-links a,
  .pagination div.nav-links span {
    padding: 10px;
    font-size: 1rem !important;
    margin: 0 5px;
  }
}
.pagination div.nav-links span.current {
  font-family: "Comfortaa", sans-serif;
  color: #4F9FA2;
}
.pagination div.nav-links a {
  color: #171717;
}
.pagination div.nav-links a.page-numbers {
  font-family: "Comfortaa", sans-serif;
}
.pagination div.nav-links a.prev span, .pagination div.nav-links a.next span {
  display: flex;
  width: 23px;
  height: 23px;
  background: #4F9FA2;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 0.9rem !important;
}
.pagination div.nav-links a:hover {
  color: #959595;
}

/*────────────────────────────
prev next
────────────────────────────*/
.footer_navigator {
  margin: 20px auto 0 !important;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .footer_navigator {
    margin: 30px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.footer_navigator .footer_navigator_left {
  display: flex;
  justify-content: flex-start;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_left {
    justify-content: center;
  }
}
.footer_navigator .footer_navigator_left a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.footer_navigator .footer_navigator_left a span.material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.footer_navigator .footer_navigator_left a span.txt {
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_left a span.txt {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_left a {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}
.footer_navigator .footer_navigator_left a:hover span.material-symbols-outlined {
  transform: translateX(-3px);
  color: #7BCCCF;
}
.footer_navigator .footer_navigator_left a:hover span.txt {
  color: #7BCCCF;
}
.footer_navigator .footer_navigator_center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_center {
    position: static;
    transform: none;
    order: -1;
  }
}
.footer_navigator .footer_navigator_center a {
  padding: 12px 24px;
  background: #FFFFFF;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(23, 23, 23, 0.1);
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_center a {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 14px 24px;
  }
}
.footer_navigator .footer_navigator_center a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 23, 23, 0.15);
  background: #7BCCCF;
}
.footer_navigator .footer_navigator_center a:hover span.txt {
  color: #FFFFFF !important;
}
.footer_navigator .footer_navigator_right {
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_right {
    justify-content: center;
  }
}
.footer_navigator .footer_navigator_right a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.footer_navigator .footer_navigator_right a span.material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.footer_navigator .footer_navigator_right a span.txt {
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_right a span.txt {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_right a {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}
.footer_navigator .footer_navigator_right a:hover span.material-symbols-outlined {
  transform: translateX(3px);
  color: #7BCCCF;
}
.footer_navigator .footer_navigator_right a:hover span.txt {
  color: #7BCCCF;
}

/*──────────────────────────────────────────────────
アンカーナビゲーション
──────────────────────────────────────────────────*/
.anchor-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  margin: 40px auto 0;
  position: sticky;
  top: 70px;
  z-index: 900;
  width: 100%;
}
.anchor-nav .wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  gap: 25px;
  border-radius: 7px;
}
.anchor-nav .wrap ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #171717;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
}
.anchor-nav .wrap ul li a::after {
  font-family: "Material Symbols Outlined";
  content: "\e313";
  font-size: 1.2em;
  line-height: 1;
  color: #7BCCCF;
}
.anchor-nav .wrap ul li a:hover {
  color: #7BCCCF;
}

/*──────────────────────────────────────────────────
サブページ共通パーツ (Subpage Components)
──────────────────────────────────────────────────*/
.subpages_wrapper {
  display: block;
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .subpages_wrapper {
    width: 100%;
  }
}

.subpage_section {
  margin: 80px auto;
  min-width: 0;
}
.subpage_section:first-of-type {
  margin-top: 0;
}
.subpage_section:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .subpage_section {
    margin: 50px auto;
  }
  .subpage_section:last-of-type {
    margin-bottom: 0;
  }
}

.site-main .subpage_section:last-of-type {
  margin-bottom: 0;
}

.section_title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 24px;
}
.section_title span {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  color: rgba(155, 155, 155, 0.72);
  font-family: "Comfortaa", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: capitalize;
}
.section_title span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #7BCCCF;
  border-radius: 50%;
}
.section_title h2 {
  margin: 0;
  color: #171717;
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  display: block;
}
@media (max-width: 767.98px) {
  .section_title {
    gap: 6px;
    margin-bottom: 18px;
  }
  .section_title h2 {
    font-size: 1.1rem;
  }
}

.section_title_small {
  margin: 0 auto 30px;
  padding-left: 15px;
  position: relative;
}
.section_title_small::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: #7BCCCF;
  border-radius: 3px;
}
.section_title_small h2, .section_title_small h3 {
  margin: 0;
  padding: 0;
  font-size: 1.3rem !important;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media (max-width: 767.98px) {
  .section_title_small {
    margin: 0 auto 30px;
  }
  .section_title_small h2 {
    font-size: 0.9rem !important;
  }
  .section_title_small span.en {
    font-size: 1.5rem !important;
  }
}

.section_title_icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.section_title_icon span.material-symbols-outlined {
  margin: 0 8px 0 0;
  color: #7BCCCF;
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  .section_title_icon span.material-symbols-outlined {
    font-size: 1.5rem;
  }
}
.section_title_icon h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .section_title_icon h2 {
    font-size: 1.2rem;
  }
}

p.subpage_lead {
  color: #7BCCCF;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto 40px;
  text-align: center;
}
@media (max-width: 767.98px) {
  p.subpage_lead {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 30px;
  }
}

p.subpage_text {
  color: #171717;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
p.subpage_text:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  p.subpage_text {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
}

.first_intro_content,
.overview_content {
  display: grid;
  grid-template-columns: minmax(230px, 34%) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}
.first_intro_content > *,
.overview_content > * {
  min-width: 0;
}
.first_intro_content h2,
.overview_content h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(1.35rem, 1.75vw, 1.8rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.first_intro_content p,
.overview_content p {
  margin: 0;
  color: #171717;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.1;
  letter-spacing: 0.03em;
}
@media (max-width: 1023.98px) {
  .first_intro_content,
  .overview_content {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 767.98px) {
  .first_intro_content,
  .overview_content {
    gap: 18px;
  }
  .first_intro_content h2,
  .overview_content h2 {
    font-size: 1.8rem;
    line-height: 1.45;
  }
  .first_intro_content p,
  .overview_content p {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.95;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

.subpage_split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.subpage_split_reverse {
  flex-direction: row-reverse;
}
.subpage_split_image {
  flex-basis: 48%;
}
.subpage_split_image img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.subpage_split_content {
  flex-basis: 48%;
}
@media (max-width: 767.98px) {
  .subpage_split {
    flex-direction: column;
    gap: 30px;
  }
  .subpage_split_reverse {
    flex-direction: column;
  }
  .subpage_split_image, .subpage_split_content {
    flex-basis: 100%;
    width: 100%;
  }
}

.subpage_note {
  background: #fff9f9;
  border: 1px solid #ffcccc;
  padding: 25px;
  border-radius: 7px;
  margin-bottom: 30px;
}
.subpage_note p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b30000;
}

.subpage_info_box {
  background: #F4F6FA;
  border-left: 4px solid #7BCCCF;
  padding: 25px;
  margin-bottom: 30px;
}
.subpage_info_box p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}
.subpage_info_box.is_center {
  text-align: center;
}
.subpage_info_box p.subpage_info_main {
  font-size: 1.2rem;
  font-weight: 500;
}
.subpage_info_box p.subpage_info_sub {
  margin-top: 10px;
  font-size: 0.9rem;
}

.subpage_note_title {
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffcccc;
  color: #b30000;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

ul.subpage_list {
  margin-bottom: 30px;
  padding: 0;
}
ul.subpage_list.is_compact {
  margin-bottom: 0;
}
ul.subpage_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}
ul.subpage_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #7BCCCF;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  ul.subpage_list li {
    font-size: 0.95rem;
  }
}

.subpage_button_area {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .subpage_button_area {
    justify-content: stretch;
  }
}

.subpage_contact_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  background: #7BCCCF;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
.subpage_contact_button span.material-symbols-outlined {
  font-size: 1.2rem;
  line-height: 1;
}
.subpage_contact_button:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
@media (max-width: 767.98px) {
  .subpage_contact_button {
    width: 100%;
    padding-inline: 24px;
  }
}

.subpage_mt_30 {
  margin-top: 30px;
}

.subpage_mt_50 {
  margin-top: 50px;
}

.subpage_table_wrap {
  width: 100%;
  margin-top: 40px;
  padding: 0;
  background: transparent;
}

table.tbl tr.subpage_table_head {
  border-bottom: 2px solid #171717;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
table.tbl th.subpage_table_label,
table.tbl td.subpage_table_label {
  font-weight: 500;
}

ul.step_list {
  width: 80%;
  margin: 0 auto;
}
ul.step_list li {
  background: #7BCCCF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 7px;
  margin: 0 auto 10px;
}
ul.step_list li span {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Comfortaa", sans-serif;
  color: #7BCCCF;
  margin: 0 40px 0 0;
}
ul.step_list li > div {
  flex-basis: 85%;
}
ul.step_list li > div h3 {
  color: #FFFFFF;
  font-weight: 600;
  margin: 0 0 10px;
}
ul.step_list li > div p {
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 767.98px) {
  ul.step_list {
    width: 100%;
  }
  ul.step_list li {
    padding: 20px;
  }
  ul.step_list li span {
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 0.9rem;
  }
  ul.step_list li > div {
    flex-basis: 78%;
  }
  ul.step_list li > div h3 {
    font-size: 0.9rem !important;
    margin: 0 0 5px;
  }
  ul.step_list li > div p {
    font-size: 0.8rem !important;
  }
}

ul.support_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #F5F5F5;
  padding: 60px 60px 40px;
}
ul.support_list li {
  flex-basis: 32%;
  background: #FFFFFF;
  border-radius: 7px;
  margin: 0 0 20px 0;
  padding: 20px;
  display: flex;
  align-items: center;
}
ul.support_list li span {
  display: flex;
  align-items: center;
}
ul.support_list li span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #7BCCCF;
  border-radius: 50px;
  margin: 0 8px 0 0;
}
@media (max-width: 767.98px) {
  ul.support_list {
    padding: 20px 20px 10px;
  }
  ul.support_list li {
    flex-basis: 47%;
    margin: 0 0 10px 0;
    padding: 10px;
  }
  ul.support_list li span {
    font-size: 0.8rem !important;
    line-height: 1.3;
  }
  ul.support_list li span::before {
    display: none;
  }
}

ul.single_list li {
  background: #F4F6FA;
  border-radius: 7px;
  padding: 40px 40px 50px;
  margin: 0 0 30px;
  display: flex;
  justify-content: space-between;
}
ul.single_list li:last-child {
  margin: 0;
}
ul.single_list li > div:first-of-type {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
ul.single_list li > div:first-of-type span {
  display: block;
  margin: 0 0 10px;
  color: #7BCCCF;
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
}
ul.single_list li > div:first-of-type h3 {
  text-align: center;
  font-weight: 500;
}
ul.single_list li > div:last-of-type {
  flex-basis: 70%;
}
ul.single_list li > div:last-of-type p {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  ul.single_list li {
    padding: 20px 30px 30px;
    margin: 0 0 15px;
    flex-direction: column;
  }
  ul.single_list li > div:first-of-type span {
    font-size: 0.8rem !important;
    margin: 0 0 3px;
    opacity: 0.3;
  }
  ul.single_list li > div:first-of-type h3 {
    font-size: 1rem !important;
    margin: 0 0 10px;
    color: #7BCCCF;
  }
}

ul.double_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.double_list li {
  flex-basis: 49%;
  background: #F4F6FA;
  padding: 20px 30px 30px;
  border-radius: 7px;
  margin: 0 0 30px;
}
ul.double_list li span {
  color: #7BCCCF;
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
}
ul.double_list li h3 {
  font-weight: 500;
  margin: 3px 0 20px;
}
ul.double_list li p {
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 767.98px) {
  ul.double_list {
    flex-direction: column;
  }
  ul.double_list li {
    padding: 20px 30px 30px;
    margin: 0 0 15px;
  }
  ul.double_list li h3 {
    font-size: 1rem !important;
  }
  ul.double_list li p {
    font-size: 0.9rem !important;
  }
}

.subpage_card_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.subpage_card_grid .card_item {
  flex-basis: calc(33.333% - 20px);
  background: #F4F6FA;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid #E4E1DE;
}
@media (max-width: 767.98px) {
  .subpage_card_grid .card_item {
    flex-basis: 100%;
  }
}
.subpage_card_grid .card_item .card_image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.subpage_card_grid .card_item .card_content {
  padding: 20px;
}
.subpage_card_grid .card_item .card_content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #7BCCCF;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(123, 204, 207, 0.2);
  padding-bottom: 10px;
}
.subpage_card_grid .card_item .card_content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.subpage_service_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-bottom: 60px;
}
.subpage_service_grid .service_item {
  flex-basis: calc(50% - 15px);
  background: #FFFFFF;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid #E4E1DE;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .subpage_service_grid .service_item {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.subpage_service_grid .service_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #171717;
  text-decoration: none;
}
.subpage_service_grid .service_item a:hover {
  box-shadow: 0 4px 15px rgba(23, 23, 23, 0.05);
}
.subpage_service_grid .service_item a:hover .service_image img {
  transform: scale(1.03);
}
.subpage_service_grid .service_item a:hover h3 {
  color: #7BCCCF;
}
.subpage_service_grid .service_item a:hover h3::after {
  transform: translateX(5px);
}
.subpage_service_grid .service_item .service_image {
  width: 100%;
  overflow: hidden;
}
.subpage_service_grid .service_item .service_image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.subpage_service_grid .service_item .service_content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.subpage_service_grid .service_item .service_content h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(123, 204, 207, 0.2);
  color: #7BCCCF;
  font-size: 1.2rem;
  font-weight: 500;
}
.subpage_service_grid .service_item .service_content h3::after {
  content: "\e5c8"; /* arrow_forward */
  font-family: "Material Symbols Outlined";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.subpage_service_grid .service_item .service_content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.section_item {
  margin: 100px auto;
}
.section_item:first-of-type {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .section_item {
    margin: 50px auto;
  }
  .section_item_with_bg {
    background: #F5F5F5;
    padding: 40px 0;
  }
}

.section_item_border {
  margin: 80px auto;
  border-top: 1px solid #E4E1DE;
  padding-top: 80px;
}
@media (max-width: 767.98px) {
  .section_item_border {
    margin: 50px auto;
    padding-top: 50px;
  }
}

.section_intro {
  background: #F5F5F5;
  text-align: center;
  position: relative;
  z-index: 0;
  padding: 80px 0 0;
  margin-bottom: 150px;
}
.section_intro::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 280px;
  background: #FFFFFF;
}
.section_intro span.en {
  opacity: 0.05;
  font-family: "Comfortaa", sans-serif;
  font-size: 5rem;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.07rem;
  text-transform: capitalize;
}
.section_intro h2 {
  position: relative;
  margin: 50px auto 60px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7;
}
.section_intro h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: #7BCCCF;
  border-radius: 50px;
}
.section_intro p {
  width: 65%;
  margin: 0 auto 100px;
  text-align: left;
}
.section_intro img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2.35/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 0.4px 1.2px rgba(0, 0, 0, 0.01), 0 1px 3.4px rgba(0, 0, 0, 0.015), 0 2.4px 8.1px rgba(0, 0, 0, 0.02), 0 8px 27px rgba(0, 0, 0, 0.03);
}
@media (max-width: 767.98px) {
  .section_intro {
    padding: 40px 0 0;
    margin-bottom: 70px;
  }
  .section_intro::after {
    height: 90px;
  }
  .section_intro span.en {
    font-size: 1.4rem;
    opacity: 0.2;
  }
  .section_intro h2 {
    margin: 50px auto 30px;
    font-size: 1.2rem;
  }
  .section_intro h2::before {
    top: -28px;
    width: 5px;
    height: 5px;
  }
  .section_intro p {
    width: 90%;
    margin: 0 auto 50px;
    text-align: justify;
  }
}

.subpage_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 32%);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 1023.98px) {
  .subpage_intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 767.98px) {
  .subpage_intro {
    margin-bottom: 46px;
  }
}

.subpage_intro_content h2 {
  margin: 0 0 16px;
  color: #171717;
  font-size: clamp(1.15rem, 1.65vw, 1.6rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
}
.subpage_intro_content p {
  max-width: 680px;
  margin: 0;
  color: #171717;
  font-size: 0.95rem;
  line-height: 1.85;
}
@media (max-width: 767.98px) {
  .subpage_intro_content p {
    font-size: 0.88rem;
  }
}

.subpage_intro_note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px;
  background: rgba(123, 204, 207, 0.055);
  border: 1px solid rgba(123, 204, 207, 0.12);
  border-radius: 7px;
}
.subpage_intro_note > span.material-symbols-outlined {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(123, 204, 207, 0.1);
  border-radius: 50%;
  color: #7BCCCF;
  font-size: 1.5rem;
  line-height: 1;
}
.subpage_intro_note p {
  margin: 0;
  color: #171717;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.75;
}
@media (max-width: 767.98px) {
  .subpage_intro_note {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 20px 18px;
  }
  .subpage_intro_note > span.material-symbols-outlined {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

.section_item .section_sepalate, .section_item_border .section_sepalate {
  display: flex;
  justify-content: space-between;
}
.section_item .section_sepalate > div, .section_item_border .section_sepalate > div {
  flex-basis: 47%;
}
.section_item .section_sepalate > div:first-of-type h3, .section_item_border .section_sepalate > div:first-of-type h3 {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  color: #7BCCCF;
  font-size: 1.3rem;
  font-weight: 500;
}
.section_item .section_sepalate > div:first-of-type h3:after, .section_item_border .section_sepalate > div:first-of-type h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 40px;
  height: 1px;
  background: #7BCCCF;
}
.section_item .section_sepalate > div:last-of-type img, .section_item_border .section_sepalate > div:last-of-type img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
}
@media (max-width: 767.98px) {
  .section_item .section_sepalate, .section_item_border .section_sepalate {
    flex-direction: column;
  }
  .section_item .section_sepalate > div:first-of-type h3, .section_item_border .section_sepalate > div:first-of-type h3 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 1rem;
  }
  .section_item .section_sepalate > div:first-of-type h3:after, .section_item_border .section_sepalate > div:first-of-type h3:after {
    width: 20px;
  }
  .section_item .section_sepalate > div:last-of-type img, .section_item_border .section_sepalate > div:last-of-type img {
    aspect-ratio: 16/9;
  }
}
.section_item > h3, .section_item_border > h3 {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid #7BCCCF;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .section_item > h3, .section_item_border > h3 {
    margin-bottom: 20px;
    padding-left: 10px;
  }
}

.section_special {
  background: #F5F5F5;
  padding: 80px;
  text-align: center;
}
.section_special h3 {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 500;
}
.section_special h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #7BCCCF;
}
.section_special p {
  text-align: left;
}
.section_special .special_image {
  width: 600px;
  height: 300px;
  margin: 60px auto 0;
  background: #FFFFFF;
}
.section_special .special_image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.section_special .special_image a img {
  width: 300px;
}
.section_special .special_image a:hover {
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  .section_special {
    padding: 30px 30px 40px;
  }
  .section_special h3 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 1rem;
  }
  .section_special p {
    text-align: justify;
  }
  .section_special .special_image {
    width: 100%;
    height: 150px;
    margin: 30px auto 0;
  }
  .section_special .special_image a img {
    width: 60%;
  }
}

@keyframes wipeIn {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  99% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: none;
  }
}
@keyframes gradientWipe {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blurFadeIn {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
}
/*──────────────────────────────────────────────────
よくある質問（FAQ）
──────────────────────────────────────────────────*/
.faq .faq_header {
  margin-bottom: 0;
  padding: 40px;
  background: #F3F6FA;
}
.faq .faq_header ul {
  display: flex;
  align-items: center;
}
.faq .faq_header ul li {
  margin: 0 20px 0 0;
}
.faq .faq_header ul li a {
  background: #FFFFFF;
  padding: 15px 30px;
  color: #171717;
  border-radius: 7px;
}
.faq .faq_header ul li a span {
  display: flex;
  align-items: center;
}
.faq .faq_header ul li a span::after {
  font-family: "Material Symbols Outlined";
  content: "\e5cf";
  color: #7BCCCF;
  font-weight: bold;
  margin: 0 0 0 7px;
}
.faq .faq_header ul li a:hover {
  background: #7BCCCF;
}
.faq .faq_header ul li a:hover span {
  color: #FFFFFF;
}
.faq .faq_header ul li a:hover span::after {
  color: #FFFFFF;
}
@media (max-width: 767.98px) {
  .faq .faq_header {
    padding: 20px;
  }
  .faq .faq_header ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq .faq_header ul li {
    margin: 0 0 15px 0;
  }
  .faq .faq_header ul li:last-of-type {
    margin: 0;
  }
  .faq .faq_header ul li a {
    padding: 10px 20px;
  }
  .faq .faq_header ul li a span {
    font-size: 0.9rem;
  }
}
.faq .faq_item {
  padding-top: 100px;
  margin: 0 auto !important;
}
.faq .faq_item ul {
  margin: 30px auto 0;
}
@media (max-width: 767.98px) {
  .faq .faq_item {
    padding-top: 50px;
  }
  .faq .faq_item ul {
    margin: 20px auto 0;
  }
}

/*──────────────────────────────────────────────────
プライバシーポリシー
──────────────────────────────────────────────────*/
.ppr {
  color: #171717;
  margin: 0 auto;
}
.ppr .subpages_wrapper {
  margin: 150px 0 0;
}
.ppr .ppr_item {
  margin-bottom: 80px;
}
.ppr h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.07rem;
  font-weight: 500;
}
.ppr h3 {
  font-size: 1rem;
  font-weight: 500;
}
.ppr p {
  display: block;
  line-height: 1.7;
}
.ppr p span {
  display: block;
}
.ppr ul {
  margin: 0 0 0 1rem;
  list-style: square;
}
.ppr ul li {
  font-size: 0.9rem;
}
.ppr table {
  font-size: 0.8rem !important;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .ppr {
    border-bottom: 1px solid transparent;
  }
  .ppr .subpages_wrapper {
    margin: 40px 0 0;
  }
  .ppr .ppr_item {
    margin-bottom: 40px;
  }
  .ppr h2 {
    font-size: 0.9rem !important;
  }
  .ppr h3 {
    font-size: 0.9rem;
  }
  .ppr p {
    font-size: 0.8rem !important;
  }
  .ppr p span {
    font-size: 0.8rem !important;
  }
  .ppr ul {
    list-style: circle;
  }
  .ppr ul li {
    font-size: 0.8rem;
  }
  .ppr table {
    margin-top: 40px;
  }
}

/*──────────────────────────────────────────────────
404エラーページ
──────────────────────────────────────────────────*/
.error-page section > div {
  display: block;
  margin: 250px auto 150px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .error-page section > div {
    margin: 150px auto 90px;
  }
}
.error-page .error_title {
  font-family: "Comfortaa", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}
.error-page .error_title h1 {
  font-size: 5.5rem !important;
  margin: 0;
  line-height: 1;
  font-weight: 500;
}
.error-page .error_title span.en {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .error-page .error_title {
    margin-bottom: 20px;
  }
  .error-page .error_title h1 {
    font-size: 4rem !important;
  }
}
.error-page p {
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .error-page p {
    width: 80%;
    margin: 0 auto 30px;
  }
}

/* サムネイル付き記事一覧（seminarカテゴリー用） */
ul.post_list_thumbnail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0 0 100px;
  margin: 0;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail {
  background: #FFFFFF;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(23, 23, 23, 0.08);
  transition: all 0.3s ease;
}
ul.post_list_thumbnail li.post_item_thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(23, 23, 23, 0.15);
}
ul.post_list_thumbnail li.post_item_thumbnail a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #171717;
  text-decoration: none;
  position: relative;
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #FFFFFF;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail {
    height: 180px;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail:hover img {
  transform: scale(1.05);
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper {
    padding: 15px;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.date {
  font-size: 0.85rem;
  color: #959595;
  font-family: "Comfortaa", sans-serif;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.date {
    font-size: 0.8rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.cat {
  font-size: 0.75rem;
  color: #7BCCCF;
  font-weight: 500;
  padding: 2px 8px;
  background: rgba(123, 204, 207, 0.1);
  border-radius: 3px;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.cat {
    font-size: 0.8rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper h2.post_title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #171717;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper h2.post_title {
    font-size: 1rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #959595;
  margin-bottom: 0;
  flex: 1;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_excerpt {
    font-size: 0.85rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_excerpt p {
  margin: 0;
}
ul.post_list_thumbnail li.post_item_thumbnail a span.post_arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #7BCCCF;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a span.post_arrow {
    bottom: 15px;
    right: 15px;
    font-size: 1.3rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a:hover span.post_arrow {
  transform: translateX(5px);
}

ul.post_list_text {
  margin: 0 auto;
}
ul.post_list_text li.post_item {
  border-bottom: 1px solid #E4E1DE;
}
ul.post_list_text li.post_item:first-child {
  border-top: 1px solid #E4E1DE;
}
ul.post_list_text li.post_item a {
  padding: 30px 0 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 0;
}
ul.post_list_text li.post_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.3s ease;
  transition-property: transform;
  z-index: -1;
}
ul.post_list_text li.post_item a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  font-size: 1.1rem;
  color: #959595;
  margin-left: 20px;
  font-weight: 100;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
ul.post_list_text li.post_item a .post_item_wrapper {
  display: flex;
  align-items: center;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above {
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.date {
  font-size: 0.7rem;
  margin-right: 10px;
  color: #959595;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.cat {
  padding: 0;
  margin: 0;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.cat > span {
  font-size: 0.7rem;
  border: none;
  background: rgba(123, 204, 207, 0.1);
  padding: 2px 6px;
  color: #7BCCCF;
  font-weight: 500;
  margin-right: 10px;
  line-height: 1;
}
ul.post_list_text li.post_item a .post_item_wrapper span.title {
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
  color: #171717;
}
ul.post_list_text li.post_item a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
ul.post_list_text li.post_item a:hover::after {
  color: #7BCCCF;
  right: 32px;
}
ul.post_list_text li.post_item a:hover .post_item_thumb img {
  transform: scale(1.05);
}
ul.post_list_text li.post_item a:hover .post_item_wrapper span.title {
  color: #4F9FA2;
}
@media (max-width: 767.98px) {
  ul.post_list_text li.post_item a {
    padding: 15px 0;
  }
  ul.post_list_text li.post_item a::after {
    right: 15px;
    font-size: 1rem;
  }
  ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above {
    margin: 0;
  }
  ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.date {
    margin-right: 10px;
  }
  ul.post_list_text li.post_item a .post_item_wrapper span.title {
    font-size: 0.9rem;
  }
}
ul.post_list_text li.nopost {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  font-size: 1.3rem;
  font-weight: 500;
  background: #F5F5F5;
  color: #959595;
}
@media (max-width: 767.98px) {
  ul.post_list_text li.nopost {
    height: 140px;
    font-size: 0.9rem;
  }
}

ul.post_list_thumb {
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  ul.post_list_thumb {
    margin: 30px auto;
    flex-direction: column;
  }
  ul.post_list_thumb:after {
    content: "";
    display: block;
    flex-basis: 31%;
    height: 0;
  }
}
ul.post_list_thumb li.post_item {
  flex-basis: 23.5%;
  box-sizing: border-box;
  margin: 0 0 60px;
  background: #FFFFFF;
  border-radius: 7px;
  padding: 20px;
}
ul.post_list_thumb li.post_item:nth-last-child(-n+4) {
  margin: 0;
}
ul.post_list_thumb li.post_item:hover a .post_item_thumb img {
  transform: scale(1.05);
}
ul.post_list_thumb li.post_item:hover div.post_item_wrapper > a span.title {
  color: #4F9FA2;
}
ul.post_list_thumb li.post_item a .post_item_thumb {
  margin: 0 0 15px;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 7px;
}
ul.post_list_thumb li.post_item a .post_item_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.post_list_thumb li.post_item a:hover .post_item_thumb img {
  transform: scale(1.08);
}
ul.post_list_thumb li.post_item a:hover div.post_item_wrapper span.voice_voice_leaad {
  color: #7BCCCF;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper {
  padding: 0 0 0 10px;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above {
  margin: 0;
  display: flex;
  align-items: center;
  margin: 0 0 5px;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.date {
  font-size: 0.8rem;
  margin-right: 10px;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat {
  padding: 0;
  margin: 0;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat ul.post-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat ul.post-categories li {
  margin-right: 10px;
  padding: 0;
  margin: 0;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat ul.post-categories li a {
  font-size: 0.8rem;
  border: none;
  color: #7BCCCF;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat > span {
  font-size: 0.8rem;
  border: none;
  color: #7BCCCF;
  margin-right: 10px;
  line-height: 1;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper span.title {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}
@media (max-width: 767.98px) {
  ul.post_list_thumb li.post_item {
    margin: 0 0 20px;
  }
  ul.post_list_thumb li.post_item a {
    display: flex;
    justify-content: space-between;
  }
  ul.post_list_thumb li.post_item a .post_item_thumb {
    flex-basis: 40%;
    margin: 0 0 15px;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 7px;
  }
  ul.post_list_thumb li.post_item a .post_item_thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper {
    flex-basis: 57%;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 3px;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.voice_industry {
    font-size: 0.7rem;
    margin: 0 8px 3px 0;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.title {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 3px;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper span.voice_voice_leaad {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}
ul.post_list_thumb li.nopost {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  font-size: 1.3rem;
  font-weight: 500;
  background: #F5F5F5;
  color: #959595;
}
@media (max-width: 767.98px) {
  ul.post_list_thumb li.nopost {
    font-size: 0.9rem;
  }
}

/*──────────────────────────────────────────────────
フォーム (Based on MILLENNIA architecture)
──────────────────────────────────────────────────*/
/**
 * 1. Contact Form 7 Global Reset
 * プラグイン側のスタイルを停止したため、ここでベースを整えます。
 */
.wpcf7-response-output,
.wpcf7 form .wpcf7-response-output,
.wpcf7-validation-errors,
.screen-reader-response,
.ajax-loader,
fieldset.hidden-fields-container {
  display: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
}

.wpcf7 br {
  display: none;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-not-valid,
input:invalid {
  color: #A86D69;
  border-color: #A86D69;
  background-color: #FFFFFF;
  background-position: 99% center;
  background-repeat: no-repeat;
  outline-color: #A86D69;
}

span.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #A86D69;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

.wpcf7 {
  margin: 0;
  padding: 0;
}
.wpcf7 form {
  border: none;
  margin: 0;
  padding: 0;
}
.wpcf7 .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px !important;
  border: 1px solid rgba(23, 23, 23, 0.1) !important;
  background: rgba(23, 23, 23, 0.02);
  font-size: 0.9rem;
  display: none;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  display: block;
  border-color: #4CAF50 !important;
  color: #2E7D32;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  display: block;
  border-color: #A86D69 !important;
  color: #A86D69;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #A86D69;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
  display: block;
}
.wpcf7 p {
  margin: 0;
  padding: 0;
}
.wpcf7 p:empty {
  display: none !important;
}
.wpcf7 span.wpcf7-form-control-wrap {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.wpcf7 span.wpcf7-form-control-wrap:empty {
  display: none !important;
}
.wpcf7 span.wpcf7-form-control-wrap:not(:has(*)):not(:has(input)):not(:has(textarea)):not(:has(select)) {
  display: none !important;
  margin: 0 !important;
}

/**
 * 2. Form Layout (Contactform Wrapper)
 */
.contactform {
  margin: 0 auto;
  width: 100%;
  /*────── 入力画面 / 確認画面の切り替え ──────*/
}
.contactform .form-step-input,
.contactform .form-step-preview {
  width: 100%;
}
.contactform .form-step-input:focus,
.contactform .form-step-preview:focus {
  outline: none;
}
.contactform .form-step-input[aria-hidden=true],
.contactform .form-step-preview[aria-hidden=true] {
  pointer-events: none;
}
.contactform .form-step-preview {
  will-change: opacity, transform;
}
.contactform .haveto {
  font-size: 0.75rem !important;
  border: 1px solid #A86D69;
  padding: 0 10px;
  border-radius: 50px;
  color: #A86D69;
  margin-left: 7px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .contactform .haveto {
    padding: 1px 4px;
    margin-left: 5px;
    font-size: 0.65rem;
  }
}
@media (max-width: 767.98px) {
  .contactform .any {
    padding: 1px 3px;
    margin-right: 5px;
  }
}
.contactform {
  /*────── inquiry Table ──────*/
}
.contactform table.inquiry {
  width: 100%;
}
.contactform table.inquiry tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.contactform table.inquiry tr th {
  width: 100%;
  text-align: left;
  padding: 12px 0px;
  display: flex;
  align-items: center;
}
.contactform table.inquiry tr th > div span.thtitle {
  color: #171717;
  font-weight: 600;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .contactform table.inquiry tr th {
    padding: 0px;
    margin: 0 0 8px 0;
  }
  .contactform table.inquiry tr th > div span.thtitle {
    font-size: 0.9rem;
  }
}
.contactform table.inquiry tr td {
  width: 100%;
  font-size: 0.9em;
}
.contactform table.inquiry tr td > span {
  font-size: 0.8rem;
  text-align: left;
  display: block;
  color: #171717;
}
.contactform table.inquiry tr td > span a {
  display: inline-block;
  border-bottom: 1px solid #4F9FA2;
}
.contactform table.inquiry tr td span.annotation {
  display: block;
  font-size: 0.8rem;
  background: #F7F7F7;
  color: #959595;
  padding: 10px 15px;
}
.contactform table.inquiry tr td div.d_column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contactform table.inquiry tr td div.d_column .d_column_item {
  flex-basis: 48%;
}
@media (max-width: 767.98px) {
  .contactform table.inquiry tr td {
    font-size: 1rem !important;
  }
}
.contactform table.inquiry tr.c_pp td {
  border-top: 1px solid #E4E1DE;
  border-bottom: 1px solid #E4E1DE;
  padding: 40px 0 30px;
}
.contactform table.inquiry tr.c_pp td span.info {
  display: block;
  margin-bottom: 40px;
  color: #959595;
  font-size: 0.9rem !important;
  letter-spacing: 0rem;
  line-height: 1.8;
}
.contactform table.inquiry tr.c_pp td span.info a {
  display: inline;
  border-bottom: 1px solid #959595;
  color: #959595;
}
.contactform table.inquiry tr.c_pp td .acceptance_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .contactform table.inquiry tr.c_pp td {
    margin: 10px 0 0;
    padding: 20px 0 20px;
  }
  .contactform table.inquiry tr.c_pp td span.info {
    margin-bottom: 40px;
    font-size: 0.8rem !important;
  }
}
.contactform {
  /*────── confirm Table ──────*/
}
.contactform .confirm-title h2 {
  color: #7BCCCF;
}
.contactform table.confirm {
  width: 100%;
  margin: 0 0 50px;
}
@media (max-width: 767.98px) {
  .contactform table.confirm {
    margin: 0 auto 40px;
  }
}
.contactform table.confirm tr {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid #E4E1DE;
}
.contactform table.confirm tr th {
  flex-basis: 30%;
  text-align: left;
}
.contactform table.confirm tr th span.thtitle {
  font-weight: bold;
}
.contactform table.confirm tr td {
  flex-basis: 70%;
}
.contactform table.confirm tr td span[data-confirm] {
  display: inline-block;
}
.contactform table.confirm tr td div.d_column {
  display: flex;
  align-items: center;
}
.contactform table.confirm tr td div.d_column .d_column_item {
  margin-right: 15px;
}
@media (max-width: 767.98px) {
  .contactform table.confirm tr {
    flex-direction: column;
    padding: 15px 0;
  }
  .contactform table.confirm tr th {
    text-align: left;
  }
  .contactform table.confirm tr td {
    padding: 15px 0;
  }
}
.contactform .before_sending {
  background: #FFEEEA;
  text-align: center;
  padding: 5px 0;
  border: 1px solid #A86D69;
}
.contactform .before_sending span {
  color: #A86D69;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .contactform .before_sending {
    padding: 0 5px;
    margin-bottom: 40px;
  }
  .contactform .before_sending span {
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
  }
}
.contactform .form_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contactform .form_buttons .btn-back,
.contactform .form_buttons #formbtn {
  margin-top: 0;
}

/*──────────────────────────────────────────────────
CF7 送信完了ページへの遷移演出
──────────────────────────────────────────────────*/
body.is-page-leaving #page {
  opacity: 0;
  transition: opacity 0.18s ease;
}

/**
 * 3. Input Controls
 */
::-moz-placeholder {
  color: #B6B7B8;
  opacity: 1;
}
::placeholder {
  color: #B6B7B8;
  opacity: 1;
}

.darkmode ::-moz-placeholder {
  color: #fff;
}

.darkmode ::placeholder {
  color: #fff;
}

input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: auto;
  padding: 20px !important;
  color: #959595;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 600px;
  background-color: #FFFFFF;
  border-radius: 7px;
  border: 1px solid #E4E1DE;
  transition: all 0.2s ease 0s !important;
  font-size: 1rem;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #F5F5F5;
  border-color: #7BCCCF;
  box-shadow: 0 0 0 3px rgba(123, 204, 207, 0.16);
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #4F7D80;
  border-color: #4F7D80;
  background-color: #FFFFFF;
  background-position: 99% center;
  background-repeat: no-repeat;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #D5D2CF;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #4F7D80;
}
@media (max-width: 767.98px) {
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=url],
  input[type=search],
  input[type=tel],
  input[type=color],
  select,
  textarea,
  .field {
    padding: 15px !important;
  }
}

input[type=password] {
  letter-spacing: 0.3em;
  margin: 20px 0 !important;
}

input[type=number] {
  max-width: 100px !important;
}
@media (max-width: 767.98px) {
  input[type=number] {
    max-width: 100% !important;
  }
}

.zipsection input[type=text] {
  width: 280px !important;
  max-width: 280px !important;
  min-width: 280px !important;
}

textarea {
  max-width: 100%;
  min-height: 250px;
  line-height: 1.5rem;
  padding: 1rem !important;
}
@media (max-width: 767.98px) {
  textarea {
    min-height: 50px;
    max-height: 150px;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: 97.5% center;
  max-width: 100px;
}

/**
 * 4. Buttons
 */
.btn-confirm,
.btn-back,
#formbtn,
#prevbtn {
  cursor: pointer;
  display: block;
  padding: 20px;
  width: 320px !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07rem;
  margin: 0 auto;
  transition: all 0.2s ease 0s !important;
  border-radius: 50px;
}
@media (max-width: 767.98px) {
  .btn-confirm,
  .btn-back,
  #formbtn,
  #prevbtn {
    width: 80% !important;
    font-size: 0.9rem;
  }
}

.btn-confirm,
#formbtn {
  background: #7BCCCF;
  border: 1px solid #7BCCCF;
  color: #fff;
  margin-top: 20px;
}
.btn-confirm:hover,
#formbtn:hover {
  background: #fff;
  color: #7BCCCF;
}
@media (max-width: 767.98px) {
  .btn-confirm,
  #formbtn {
    margin-top: 10px;
  }
}

.btn-back,
#prevbtn {
  color: #171717;
  border: none;
  background: transparent;
}
.btn-back:hover,
#prevbtn:hover {
  background: #171717;
  color: #fff;
}

/**
 * 5. Checkbox & Radio
 */
.wpcf7-list-item {
  display: inline-block;
  margin: 0 10px 10px 18px;
}
@media (max-width: 767.98px) {
  .wpcf7-list-item {
    display: block;
    margin-left: 1.2rem;
  }
}

.wpcf7-checkbox {
  display: block;
  margin: 10px 0 0;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  padding: 0 0 0 13px;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  color: #171717;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 30px 20px 0 !important;
  line-height: 1.3;
  display: inline-block;
}
input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  left: -1rem;
  width: 23px;
  height: 23px;
  border: 1px solid #c4bbb8;
  background-color: #fefefe;
  box-sizing: border-box;
}
input[type=checkbox] + span::after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
  left: -0.5rem;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #7BCCCF;
  border-right: 3px solid #7BCCCF;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}
input[type=checkbox]:checked + span {
  color: #171717;
  transition: all 0.25s ease;
}
input[type=checkbox]:checked + span::before {
  opacity: 1;
  border: 1px solid #7BCCCF;
  background-color: #7BCCCF;
  transition: opacity 0.2s ease;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity 0.2s ease;
}

.wpcf7-radio {
  display: block;
  margin: 10px 0 0;
}

input[type=radio] {
  display: none;
}
input[type=radio] + span {
  cursor: pointer;
  position: relative;
  padding: 0 2rem 0 0.8rem;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  color: #171717;
  font-size: 0.9rem;
  font-weight: 500;
}
input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.2rem;
  width: 20px;
  height: 20px;
  border: 1px solid #c4bbb8;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
input[type=radio]:checked + span {
  color: #171717;
}
input[type=radio]:checked + span::after {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  left: calc(-1.2rem + 5px);
  width: 10px;
  height: 10px;
  background-color: #7BCCCF;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

/**
 * 6. Extra Elements
 */
.recapcopy {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 30px auto !important;
  text-align: center;
}
.recapcopy span {
  font-size: 0.6rem !important;
  line-height: 2;
  letter-spacing: 0.04rem;
}
.recapcopy span:first-of-type {
  flex-basis: 100%;
}
.recapcopy a {
  color: #4F7D80;
  font-size: 0.6rem;
  display: inline-block;
  margin: 0 0.2rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*──────────────────────────────────────────────────
ボタン
──────────────────────────────────────────────────*/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}
.blue-btn:hover, .blue-btn:focus {
  color: #FFFFFF;
  text-decoration: none;
}
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #4F7D80;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: rgb(71.2144927536, 112.6811594203, 115.3855072464);
}
.blue-btn:active {
  background-color: rgb(69.268115942, 109.6014492754, 112.231884058);
}

/*──────────────────────────────────────────────────
標準ボタン
──────────────────────────────────────────────────*/
.btn_standard {
  display: inline-block;
  letter-spacing: 0.1rem;
  padding: 1.2rem 2rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid #7BCCCF;
  border-radius: 7px;
  transition: 0.4s;
}
.btn_standard span {
  color: #7BCCCF;
  font-size: 0.9rem;
  font-family: "Comfortaa", sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_standard:hover {
  background: #7BCCCF;
}
.btn_standard:hover span {
  color: #fff;
}
@media (max-width: 767.98px) {
  .btn_standard {
    padding: 1rem 1.5rem;
  }
}

/*──────────────────────────────────────────────────
アイコン付きボタン
──────────────────────────────────────────────────*/
a.btn_icon_small {
  border-radius: 50px;
  display: inline-block;
  background: rgba(123, 204, 207, 0.9);
  padding: 7px 21px;
}
a.btn_icon_small div {
  display: flex;
  align-items: center;
}
a.btn_icon_small div span {
  color: #FFFFFF;
}
a.btn_icon_small div span.title {
  margin: 0 0 0 5px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
a.btn_icon_small:hover {
  background: rgba(123, 204, 207, 0.2);
}
a.btn_icon_small:hover span {
  color: #7BCCCF;
}

/*──────────────────────────────────────────────────
黒ボタン
──────────────────────────────────────────────────*/
.btn_blk {
  display: inline-block;
  letter-spacing: 0.1rem;
  padding: 0 4.5rem 0 1.4rem;
  text-align: center;
  text-decoration: none;
  background: #7BCCCF;
  transition: 0.3s;
  border-radius: 50px;
  margin: 0 auto;
  height: 50px;
}
.btn_blk span {
  position: relative;
  width: 100%;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.btn_blk span::after {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  font-size: 0.9rem;
  padding: 0;
  line-height: 1;
  vertical-align: baseline;
  width: 10px;
  height: 10px;
  color: #7BCCCF;
  background: #FFFFFF;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  transition: 0.3s;
}
.btn_blk span.en {
  font-family: "Comfortaa", sans-serif;
}
.btn_blk_white {
  background: #FFFFFF;
}
.btn_blk_white span {
  color: #7BCCCF;
}
.btn_blk_white span::after {
  background: #7BCCCF;
  color: #FFFFFF;
}
.btn_blk:hover {
  background: #171717;
}
.btn_blk:hover span {
  color: #FFFFFF;
  transform: translateX(5px);
}
.btn_blk:hover span::after {
  background: #FFFFFF;
  color: #7BCCCF;
  right: -55px;
  width: 30px;
  height: 30px;
  font-family: "Material Symbols Outlined";
  content: "\e409";
}
@media (max-width: 767.98px) {
  .btn_blk {
    padding: 0.8rem 1.2rem;
    text-align: center;
    border-radius: 1px;
  }
  .btn_blk span {
    font-size: 0.85rem !important;
    letter-spacing: 0.07rem;
    font-weight: 500;
  }
  .btn_blk span::after {
    margin: 0 0 0 10px;
    width: 17px;
    height: 17px;
    font-size: 0.8rem;
    font-weight: bold;
  }
}

/*──────────────────────────────────────────────────
テキストボタン
──────────────────────────────────────────────────*/
.btn_text {
  display: inline-block;
  color: #7BCCCF;
  text-decoration: none;
  transition: 0.8s;
}
.btn_text div {
  display: flex;
  align-items: center;
}
.btn_text div:after {
  display: inline-block;
  font-family: "Material Symbols Outlined";
  content: "\e409";
  margin: -3px 0 0 5px;
  color: #7BCCCF;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1;
}
.btn_text div span {
  font-size: 0.8rem;
  line-height: 1.2em;
  font-family: "Comfortaa", sans-serif;
  transition: 0.3s;
}
.btn_text div span:first-of-type {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .btn_text div:after {
    margin: -4px 0 0 0;
    font-size: 1.1rem;
  }
  .btn_text div span {
    font-size: 0.75rem;
  }
}
.btn_text:hover {
  cursor: pointer;
  text-decoration: none;
}
.btn_text:hover span {
  color: #4F9FA2;
}

/*──────────────────────────────────────────────────
シューティングボタン
──────────────────────────────────────────────────*/
.btn_shooting {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: 0.8s;
}
.btn_shooting span {
  transition: 0.3s;
}
.btn_shooting::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.btn_shooting::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #171717;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.btn_shooting_white::after {
  background: #171717;
}
.btn_shooting_white::before {
  background: #FFFFFF;
}
.btn_shooting:hover::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.btn_shooting:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*──────────────────────────────────────────────────
矢印ボタン
──────────────────────────────────────────────────*/
.btn_arrow {
  display: flex;
  align-items: center;
}
.btn_arrow::before {
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  font-size: 0.8rem;
  color: #959595;
  width: 18px;
  height: 18px;
  border: 1px solid #959595;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  margin-bottom: -1px;
  font-weight: 600;
}

.btn_arrow_large {
  display: inline-block;
}
.btn_arrow_large > div {
  display: flex;
  align-items: center;
}
.btn_arrow_large > div::before {
  font-family: "Material Symbols Outlined";
  content: "\e409";
  font-size: 1rem;
  color: #7BCCCF;
  width: 40px;
  height: 40px;
  border: 1px solid #7BCCCF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 600;
  transition: 0.8s;
  -webkit-transition: 0.3s;
}
.btn_arrow_large > div span {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 0;
}
.btn_arrow_large > div span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: transparent;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.btn_arrow_large > div span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #7BCCCF;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.btn_arrow_large > div span_white::after {
  background: #7BCCCF;
}
.btn_arrow_large > div span_white::before {
  background: #FFFFFF;
}
@media (max-width: 767.98px) {
  .btn_arrow_large > div::before {
    font-size: 0.9rem;
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  .btn_arrow_large > div span {
    font-size: 0.9rem;
    letter-spacing: 0.07rem;
  }
}
.btn_arrow_large:hover > div::before {
  background: #7BCCCF;
  color: #fff;
}
.btn_arrow_large:hover > div span {
  color: #7BCCCF;
}
.btn_arrow_large:hover > div span::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.btn_arrow_large:hover > div span::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*──────────────────────────────────────────────────
カード・情報ブロック
──────────────────────────────────────────────────
カードは単一の主題をまとめるための部品として扱い、
ページ固有の装飾はこの module を上書きせず、必要時に modifier を追加します。
*/
.base_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-background-base);
  border: 1px solid var(--color-border-default);
  border-radius: 7px;
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.05);
}
.base_card .card_label {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.65rem;
  background: rgba(123, 204, 207, 0.1);
  border-radius: 999px;
  color: #7BCCCF;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.base_card .card_title {
  margin: 0;
  color: #171717;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}
.base_card .card_text {
  margin: 0;
  color: #171717;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* リソースリスト */
.resource_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media (max-width: 1023.98px) {
  .resource_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .resource_list {
    grid-template-columns: 1fr;
  }
}

/* 注意・補足ボックス */
.notice_box {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(154, 102, 112, 0.08);
  border: 1px solid rgba(154, 102, 112, 0.22);
  border-left: 4px solid #9A6670;
  border-radius: 7px;
}
.notice_box .notice_title {
  display: block;
  margin: 0 0 0.5rem;
  color: #171717;
  font-weight: 700;
  line-height: 1.5;
}
.notice_box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/*──────────────────────────────────────────────────
記事本文・標準タグ
──────────────────────────────────────────────────
投稿本文、固定ページ本文、ブロックエディターの標準タグを読みやすく整えます。
新規案件では、記事の可読性チェックをこの module を基準に行います。
*/
.entry-content,
.article_body {
  max-width: var(--content-width-narrow);
  margin-inline: auto;
  color: #171717;
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.9;
}
.entry-content > *,
.article_body > * {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.entry-content p,
.article_body p {
  line-height: 1.95;
  font-weight: 400;
}
.entry-content a,
.article_body a {
  display: inline;
  color: #7BCCCF;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}
.entry-content a:hover, .entry-content a:focus-visible,
.article_body a:hover,
.article_body a:focus-visible {
  color: rgb(0.05, 0.05, 0.05);
  text-decoration-thickness: 2px;
}
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.article_body h2,
.article_body h3,
.article_body h4,
.article_body h5,
.article_body h6 {
  color: #171717;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.entry-content h2,
.article_body h2 {
  margin-top: 2.7em;
  padding: 0 0 0.65rem;
  border-bottom: 2px solid rgba(123, 204, 207, 0.2);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}
.entry-content h3,
.article_body h3 {
  margin-top: 2.2em;
  padding-left: 0.85rem;
  border-left: 4px solid #7BCCCF;
  font-size: clamp(1.25rem, 2.3vw, 1.5rem);
}
.entry-content h4,
.article_body h4 {
  margin-top: 1.8em;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}
.entry-content ul,
.entry-content ol,
.article_body ul,
.article_body ol {
  padding-left: 1.45em;
}
.entry-content ul li,
.entry-content ol li,
.article_body ul li,
.article_body ol li {
  margin-bottom: 0.65em;
  line-height: 1.85;
}
.entry-content ul li::marker,
.entry-content ol li::marker,
.article_body ul li::marker,
.article_body ol li::marker {
  color: #7BCCCF;
  font-weight: 700;
}
.entry-content blockquote,
.article_body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--color-background-soft);
  border-left: 4px solid #7BCCCF;
  border-radius: 7px;
  color: #171717;
  font-style: normal;
}
.entry-content blockquote p:last-child,
.article_body blockquote p:last-child {
  margin-bottom: 0;
}
.entry-content table,
.article_body table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.entry-content table th,
.entry-content table td,
.article_body table th,
.article_body table td {
  padding: 0.9rem 1rem;
  border: 1px solid #E4E1DE;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.entry-content table th,
.article_body table th {
  background: var(--color-background-soft);
  font-weight: 700;
}
.entry-content pre,
.article_body pre {
  overflow-x: auto;
  padding: 1rem 1.25rem;
  background: #1f2933;
  border-radius: 7px;
  color: #FFFFFF;
  font-size: 0.92rem;
  line-height: 1.7;
}
.entry-content code,
.article_body code {
  padding: 0.1em 0.35em;
  background: rgba(23, 23, 23, 0.08);
  border-radius: 4px;
  font-size: 0.92em;
}
.entry-content pre code,
.article_body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}
.entry-content figure,
.article_body figure {
  margin: 2rem 0;
}
.entry-content figure img,
.article_body figure img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.entry-content figure figcaption,
.article_body figure figcaption {
  margin-top: 0.65rem;
  color: #959595;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
}
.entry-content details,
.article_body details {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border: 1px solid #E4E1DE;
  border-radius: 7px;
  background: #FFFFFF;
}
.entry-content details summary,
.article_body details summary {
  cursor: pointer;
  color: #171717;
  font-weight: 700;
  line-height: 1.6;
}
.entry-content details > *:not(summary),
.article_body details > *:not(summary) {
  margin-top: 1rem;
}

/*──────────────────────────────────────────────────
SNSシェアボタン
──────────────────────────────────────────────────*/
.share {
  margin: 40px auto 0;
  padding: 30px;
  background: #F5F5F5;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .share {
    margin: 30px auto;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.share .share_title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  color: #171717;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .share .share_title {
    font-size: 0.9rem;
  }
}
.share .share_title span {
  font-size: 0.9rem;
  line-height: 1;
}
.share ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .share ul {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }
}
.share ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(23, 23, 23, 0.1);
}
@media (max-width: 767.98px) {
  .share ul li a {
    width: 40px;
    height: 40px;
  }
}
.share ul li a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .share ul li a img {
    width: 18px;
    height: 18px;
  }
}
.share ul li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(23, 23, 23, 0.15);
}
.share ul li a:hover img {
  transform: scale(1.1);
}
.share ul li.tweet a:hover {
  background: rgba(85, 172, 238, 0.1);
}
.share ul li.facebook a:hover {
  background: rgba(49, 80, 150, 0.1);
}
.share ul li.line a:hover {
  background: rgba(0, 195, 0, 0.1);
}

/*──────────────────────────────────────────────────
下層ページヘッダー
──────────────────────────────────────────────────*/
#subpages-header {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 130px auto 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  #subpages-header {
    height: 160px;
    margin: 60px auto 0;
  }
}
#subpages-header .page_title {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px 100px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  #subpages-header .page_title {
    margin: 0;
    padding: 1.5rem 2rem;
    width: 85%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
#subpages-header .page_title h1 {
  letter-spacing: 0.2rem;
  font-size: 1.8rem;
  font-weight: 500 !important;
  color: #171717;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
@media (max-width: 767.98px) {
  #subpages-header .page_title h1 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
  }
}
#subpages-header .page_title span.en {
  display: block;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #171717;
  margin-top: 0.5rem;
  opacity: 0.7;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #subpages-header .page_title span.en {
    font-size: 0.6rem;
    letter-spacing: 0.15rem;
    margin-top: 0.5rem;
    opacity: 0.8;
  }
}
#subpages-header .subpages_image {
  position: absolute;
  width: 97%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
  border-radius: 7px;
}
@media (max-width: 767.98px) {
  #subpages-header .subpages_image {
    width: 95%;
  }
}
#subpages-header .subpages_image img {
  width: 100% !important;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 7px;
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
  transition: filter 1s ease, opacity 1s ease, transform 1.2s ease;
  will-change: filter, opacity, transform;
}
#subpages-header .subpages_image img.is-animating {
  filter: blur(20px);
  opacity: 0;
  transform: scale(1.05);
}
#subpages-header .subpages_image img.visible {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}
#subpages-header::before {
  width: 97%;
  height: 100%;
  background: rgba(123, 204, 207, 0.08);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  content: "";
  display: block;
  z-index: 2;
  border-radius: 7px;
}
@media (max-width: 767.98px) {
  #subpages-header::after {
    width: 95%;
    height: 100%;
    background: rgba(123, 204, 207, 0.45);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border-radius: 7px;
    content: "";
    display: block;
  }
}

#subpages-header-small {
  width: 100%;
  margin: 180px auto 0;
}
#subpages-header-small .page_title {
  margin: 0 auto;
  text-align: center;
}
#subpages-header-small .page_title span.en {
  text-transform: capitalize;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Comfortaa", sans-serif;
  display: block;
  margin: 0;
  letter-spacing: 0.05rem;
  color: #171717;
}
#subpages-header-small .page_title h1 {
  letter-spacing: 0.07rem;
  font-size: 1rem;
  font-weight: 600;
  color: #171717;
}

/*──────────────────────────────────────────────────
下層ページ共通構造
──────────────────────────────────────────────────*/
.subpages_wrapper {
  padding-bottom: 100px;
  background: #FFFFFF;
}
@media (max-width: 767.98px) {
  .subpages_wrapper {
    padding-bottom: 60px;
  }
}

.section_item {
  margin-bottom: 150px;
}
.section_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .section_item {
    margin-bottom: 80px;
  }
}

/*──────────────────────────────────────────────────
パンくずリスト
──────────────────────────────────────────────────*/
.bc_wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  width: 97%;
  margin: 0 auto;
}
.bc_wrapper ol, .bc_wrapper ul {
  margin-left: 0 !important;
}
@media (max-width: 767.98px) {
  .bc_wrapper {
    padding: 15px 0;
    width: 95%;
  }
}

.contents_box::-webkit-scrollbar {
  display: none;
}

.breadcrumb_nav {
  max-width: 100%;
  width: 100%;
}
.breadcrumb_nav .breadcrumb_list {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  white-space: nowrap !important;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.breadcrumb_nav .breadcrumb_list::-webkit-scrollbar {
  display: none;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item a > span {
  color: #7BCCCF;
  font-size: 0.8rem !important;
  transition: opacity 0.3s ease;
}
@media (max-width: 767.98px) {
  .breadcrumb_nav .breadcrumb_list .breadcrumb_item a > span {
    font-size: 0.7rem !important;
  }
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item a:hover > span {
  opacity: 0.7;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item > span {
  color: #959595;
  font-size: 0.8rem !important;
  font-weight: 500;
  padding: 0;
}
@media (max-width: 767.98px) {
  .breadcrumb_nav .breadcrumb_list .breadcrumb_item > span {
    font-size: 0.7rem !important;
  }
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item:not(:last-child)::after {
  content: "/";
  font-weight: 300;
  font-size: 0.8rem;
  margin: 0 0.8rem;
  color: #959595;
}
@media (max-width: 767.98px) {
  .breadcrumb_nav .breadcrumb_list .breadcrumb_item:not(:last-child)::after {
    font-size: 0.7rem !important;
    margin: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb_nav {
    padding: 0;
  }
}

/*──────────────────────────────────────────────────
アニメーション
──────────────────────────────────────────────────*/
[data-animate],
[data-stagger] > * {
  opacity: 0;
  will-change: transform, opacity;
}

[data-animate].is-animated,
[data-stagger] > .is-animated {
  opacity: 1;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0px);
}

.blur {
  filter: blur(10px);
  opacity: 0.6;
  transition: filter 0.5s ease-out, opacity 1.5s ease-out;
}

.blur.active {
  filter: blur(0);
  opacity: 1;
}

.slider_text_wrapper {
  position: relative;
  width: 100vw;
  height: 7rem;
  overflow: hidden;
}
.slider_text_wrapper .slider_text {
  position: absolute;
  bottom: 0;
  z-index: 10;
}
.slider_text_wrapper .slider_text .slider_text_inner {
  position: relative;
  margin-inline: auto;
  white-space: nowrap;
}
.slider_text_wrapper .slider_text .slider_text_inner > div {
  font-size: 7.5rem;
  color: #e5e5e5;
  font-family: "Comfortaa", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  line-height: 1;
}
.slider_text_wrapper .slider_text .slider_text_inner > div.loop {
  animation: looprev 100s linear infinite;
}
.slider_text_wrapper .slider_text .slider_text_inner > div.loop2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: looprev 100s -50s linear infinite;
}
@media (max-width: 767.98px) {
  .slider_text_wrapper .slider_text .slider_text_inner > div {
    font-size: 5rem;
    letter-spacing: 0.2rem;
  }
  .slider_text_wrapper .slider_text .slider_text_inner > div.loop {
    animation: looprev 80s linear infinite;
  }
  .slider_text_wrapper .slider_text .slider_text_inner > div.loop2 {
    animation: looprev 80s -40s linear infinite;
  }
}

@keyframes looprev {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/*pages（ページ固有スタイル）
───────────────────────*/
/*──────────────────────────────────────────────────
トップページ共通
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .home {
    margin-bottom: -70px !important;
  }
}
.home .home_updates_inner,
.home .home_topics_inner {
  width: min(100% - 80px, 1420px);
  margin-inline: auto;
}
@media (max-width: 767.98px) {
  .home .home_updates_inner,
  .home .home_topics_inner {
    width: min(100% - 40px, 1420px);
  }
}
.home .home_section_intro h2 {
  margin: 0;
  color: #b7d9fb;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: clamp(3rem, 4.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.home .home_view_all {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  color: #171717;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
}
.home .home_view_all span {
  position: relative;
  display: block;
  width: 72px;
  height: 1px;
  background: currentColor;
}
.home .home_view_all span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: rotate(40deg);
  transform-origin: right center;
}
.home .home_view_all:hover {
  color: #4F9FA2;
}

/*──────────────────────────────────────────────────
トップページ Hero
──────────────────────────────────────────────────*/
.home_hero {
  position: relative;
  min-height: clamp(720px, 100svh, 960px);
  overflow: hidden;
  background: #FFFFFF;
  isolation: isolate;
}
.home_hero .home_hero_copy {
  position: absolute;
  z-index: 4;
  top: clamp(136px, 15vh, 176px);
  bottom: 36px;
  left: clamp(48px, 9vw, 184px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.home_hero .home_hero_title {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(16px, 2.2vw, 42px);
  margin: 0;
  color: #171717;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.12em;
}
.home_hero .home_hero_title span {
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.home_hero .home_hero_handwrite {
  display: block;
  width: clamp(280px, 30vw, 540px);
  height: auto;
}
.home_hero .home_hero_visual {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.home_hero .home_hero_sky {
  position: absolute;
  z-index: -1;
  top: 32px;
  right: 0;
  width: 70%;
  height: calc(100% - 32px);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.52;
}
.home_hero .home_hero_photo {
  position: absolute;
  margin: 0;
}
.home_hero .home_hero_photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255, 255, 255, 0.66);
  transform: translate(34px, 32px);
}
.home_hero .home_hero_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_hero .home_hero_photo_main {
  z-index: 3;
  top: 20%;
  left: 26.4%;
  width: min(30vw, 620px);
  aspect-ratio: 1150/979;
}
.home_hero .home_hero_photo_runner {
  z-index: 2;
  top: 3.2%;
  right: 6.7%;
  width: min(14.8vw, 304px);
  aspect-ratio: 565/779;
}
.home_hero .home_hero_photo_classroom {
  z-index: 2;
  right: 2.9%;
  bottom: 0;
  width: min(26.8vw, 550px);
  aspect-ratio: 1029/686;
}
@media (max-width: 1023.98px) {
  .home_hero {
    min-height: 760px;
  }
  .home_hero .home_hero_copy {
    left: 32px;
  }
  .home_hero .home_hero_photo_main {
    left: 23%;
    width: 42vw;
  }
  .home_hero .home_hero_photo_runner {
    right: 4%;
    width: 20vw;
  }
  .home_hero .home_hero_photo_classroom {
    width: 36vw;
  }
}
@media (max-width: 767.98px) {
  .home_hero {
    min-height: 1080px;
    padding-top: 76px;
  }
  .home_hero .home_hero_copy {
    top: 100px;
    right: 20px;
    bottom: auto;
    left: 20px;
    display: block;
  }
  .home_hero .home_hero_title {
    justify-content: flex-end;
    gap: 12px;
    font-size: clamp(1.6rem, 7.2vw, 2rem);
    line-height: 1.55;
  }
  .home_hero .home_hero_handwrite {
    width: min(72vw, 300px);
    margin-top: 24px;
  }
  .home_hero .home_hero_sky {
    top: 76px;
    width: 100%;
    height: calc(100% - 76px);
    opacity: 0.36;
  }
  .home_hero .home_hero_photo::before {
    transform: translate(14px, 14px);
  }
  .home_hero .home_hero_photo_main {
    top: 320px;
    left: -5%;
    width: 78vw;
  }
  .home_hero .home_hero_photo_runner {
    top: 520px;
    right: 4%;
    width: 36vw;
  }
  .home_hero .home_hero_photo_classroom {
    right: auto;
    bottom: 48px;
    left: 14%;
    width: 80vw;
  }
}

/*──────────────────────────────────────────────────
トップページ NEWS
──────────────────────────────────────────────────*/
.home_news {
  padding: clamp(80px, 10vw, 150px) 0 clamp(64px, 8vw, 110px);
  background: #FFFFFF;
}
.home_news .home_updates_inner {
  display: grid;
  grid-template-columns: minmax(210px, 310px) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}
.home_news .home_news_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home_news .home_news_list li {
  border-bottom: 1px solid #E4E1DE;
}
.home_news .home_news_list a {
  display: grid;
  grid-template-columns: 125px 110px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 14px 8px;
  color: #171717;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.home_news .home_news_list a:hover {
  color: #4F9FA2;
  background: rgba(123, 204, 207, 0.04);
}
.home_news .home_news_list time {
  color: #959595;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 0.95rem;
  white-space: nowrap;
}
.home_news .home_news_category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  color: #FFFFFF;
  background: #ff668b;
  border-radius: 5px;
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
}
.home_news .home_news_title {
  font-size: 0.96rem;
  line-height: 1.7;
}
.home_news .home_news_empty {
  padding: 24px 8px;
  color: #959595;
}
@media (max-width: 1023.98px) {
  .home_news .home_updates_inner {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 48px;
  }
  .home_news .home_news_list a {
    grid-template-columns: 105px 100px minmax(0, 1fr);
    gap: 14px;
  }
}
@media (max-width: 767.98px) {
  .home_news {
    padding: 72px 0 54px;
  }
  .home_news .home_updates_inner {
    display: block;
  }
  .home_news .home_section_intro {
    margin-bottom: 36px;
  }
  .home_news .home_news_list a {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 16px 0;
  }
  .home_news .home_news_list time {
    font-size: 0.82rem;
  }
  .home_news .home_news_category {
    min-height: 26px;
    padding: 3px 10px;
    font-size: 0.72rem;
  }
  .home_news .home_news_title {
    grid-column: 1/-1;
    font-size: 0.92rem;
  }
}

/*──────────────────────────────────────────────────
トップページ TOPICS
──────────────────────────────────────────────────*/
.home_topics {
  padding: 0 0 clamp(90px, 11vw, 170px);
  background: #FFFFFF;
}
.home_topics .home_section_intro {
  margin-bottom: clamp(48px, 6vw, 82px);
}
.home_topics .home_topics_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}
.home_topics .home_topics_card {
  min-width: 0;
}
.home_topics .home_topics_card a {
  display: block;
  color: #171717;
  text-decoration: none;
}
.home_topics .home_topics_card a:hover .home_topics_image img {
  transform: scale(1.035);
}
.home_topics .home_topics_card a:hover h3 {
  color: #4F9FA2;
}
.home_topics .home_topics_card time {
  display: block;
  margin-top: 14px;
  color: #959595;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 0.82rem;
}
.home_topics .home_topics_card h3 {
  margin: 6px 0 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  transition: color 0.25s ease;
}
.home_topics .home_topics_card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #959595;
  font-size: 0.84rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home_topics .home_topics_image {
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  background: #F5F5F5;
}
.home_topics .home_topics_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.home_topics .home_topics_empty {
  grid-column: 1/-1;
  margin: 0;
  color: #959595;
}
@media (max-width: 1023.98px) {
  .home_topics .home_topics_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .home_topics {
    padding-bottom: 90px;
  }
  .home_topics .home_section_intro {
    margin-bottom: 36px;
  }
  .home_topics .home_topics_grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/*──────────────────────────────────────────────────
トップページ Course
──────────────────────────────────────────────────*/
@keyframes home-course-slide {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(-50%, -50%, 0);
  }
}
@keyframes home-course-slide-reverse {
  from {
    transform: translate3d(-50%, -50%, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}
.home_course {
  background: #FFFFFF;
}
.home_course .home_course_header {
  padding: clamp(76px, 8vw, 118px) 20px clamp(64px, 6vw, 92px);
  text-align: center;
}
.home_course .home_course_header h2 {
  margin: 0;
  color: #b7d9fb;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: clamp(3.4rem, 4.6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.home_course .home_course_header p {
  margin: 18px 0 0;
  color: #171717;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.home_course .home_course_panel {
  --course-panel-height: clamp(590px, 42.2vw, 680px);
  position: relative;
  min-height: var(--course-panel-height);
  overflow: hidden;
  isolation: isolate;
}
.home_course .home_course_panel--general {
  background: #33b8e3;
}
.home_course .home_course_panel--general .home_course_gradient {
  background: linear-gradient(110deg, rgba(15, 169, 218, 0.86) 0%, rgba(52, 190, 228, 0.72) 52%, rgba(0, 157, 216, 0.82) 100%);
}
.home_course .home_course_panel--home-economics {
  background: #ef7797;
}
.home_course .home_course_panel--home-economics .home_course_gradient {
  background: linear-gradient(110deg, rgba(238, 115, 147, 0.86) 0%, rgba(247, 143, 164, 0.72) 52%, rgba(227, 91, 137, 0.84) 100%);
}
.home_course .home_course_panel--home-economics .home_course_script {
  top: 50px;
  left: 150px;
  width: min(52%, 520px);
}
.home_course .home_course_panel--home-economics .home_course_person {
  width: min(47%, 470px);
}
.home_course .home_course_panel--home-economics .home_course_item--left {
  top: 218px;
  left: 300px;
  width: 112px;
}
.home_course .home_course_panel--home-economics .home_course_item--right {
  top: 308px;
  right: 78px;
  width: 154px;
}
.home_course .home_course_slides,
.home_course .home_course_gradient,
.home_course .home_course_mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home_course .home_course_slides {
  z-index: 0;
  overflow: hidden;
}
.home_course .home_course_slides .home_course_slides_track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  height: clamp(235px, 18.5vw, 285px);
  opacity: 0.4;
  transform: translate3d(0, -50%, 0);
  animation: home-course-slide 90s linear infinite;
  will-change: transform;
}
.home_course .home_course_slides .home_course_slides_set {
  display: flex;
  flex: none;
  height: 100%;
}
.home_course .home_course_slides img {
  display: block;
  flex: none;
  width: auto;
  max-width: none;
  height: 100%;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.72) contrast(0.9);
}
.home_course .home_course_slides--reverse .home_course_slides_track {
  transform: translate3d(-50%, -50%, 0);
  animation-name: home-course-slide-reverse;
}
.home_course .home_course_gradient {
  z-index: 1;
}
.home_course .home_course_mesh {
  z-index: 2;
  background-image: radial-gradient(rgba(255, 255, 255, 0.38) 0.8px, transparent 0.9px);
  background-position: 0 0;
  background-size: 4px 4px;
  opacity: 0.72;
}
.home_course .home_course_content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 1000px);
  height: var(--course-panel-height);
  margin-inline: auto;
  color: #FFFFFF;
}
.home_course .home_course_script,
.home_course .home_course_person,
.home_course .home_course_bubble,
.home_course .home_course_item,
.home_course .home_course_copy,
.home_course .home_course_career,
.home_course .home_course_more {
  position: absolute;
}
.home_course .home_course_script {
  top: 52px;
  left: 130px;
  z-index: 1;
  display: block;
  width: min(37%, 365px);
  height: auto;
}
.home_course .home_course_person {
  bottom: -2px;
  left: 50%;
  z-index: 3;
  display: block;
  width: min(40%, 400px);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}
.home_course .home_course_bubble {
  top: 92px;
  right: 168px;
  z-index: 5;
  display: block;
  width: 198px;
  height: auto;
}
.home_course .home_course_item {
  z-index: 2;
  display: block;
  height: auto;
}
.home_course .home_course_item--left {
  top: 190px;
  left: 112px;
  width: 160px;
}
.home_course .home_course_item--right {
  top: 302px;
  right: 116px;
  z-index: 4;
  width: 142px;
}
.home_course .home_course_copy {
  top: 300px;
  left: 146px;
  z-index: 6;
  width: 308px;
  padding: 18px 20px 20px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: #171717;
  box-shadow: 0 8px 24px rgba(22, 91, 120, 0.08);
}
.home_course .home_course_copy .home_course_copy_en {
  margin: 0 0 2px;
  color: #36a9db;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 0.72rem;
  line-height: 1.4;
}
.home_course .home_course_copy h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.4;
}
.home_course .home_course_copy p {
  margin: 10px 0 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}
.home_course .home_course_panel--home-economics .home_course_copy_en {
  color: #ef7197;
}
.home_course .home_course_career {
  top: 468px;
  left: 156px;
  z-index: 6;
  width: 330px;
  text-shadow: 0 1px 8px rgba(15, 101, 139, 0.18);
}
.home_course .home_course_career h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.home_course .home_course_career p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.7;
}
.home_course .home_course_more {
  top: 430px;
  right: 224px;
  z-index: 7;
  display: grid;
  width: 112px;
  height: 112px;
  border: 4px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: #FFFFFF;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.home_course .home_course_more:hover {
  background: #FFFFFF;
  color: #4F9FA2;
  transform: translateY(-4px);
}
.home_course .home_course_more:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 5px;
}
.home_course .home_course_panel--home-economics .home_course_more:hover {
  color: #9A6670;
}
@media (max-width: 1023.98px) {
  .home_course .home_course_panel {
    --course-panel-height: 620px;
  }
  .home_course .home_course_panel--home-economics .home_course_script {
    left: 70px;
  }
  .home_course .home_course_panel--home-economics .home_course_item--left {
    left: 30%;
  }
  .home_course .home_course_panel--home-economics .home_course_item--right {
    right: 34px;
  }
  .home_course .home_course_content {
    width: min(100% - 32px, 820px);
  }
  .home_course .home_course_script {
    left: 72px;
  }
  .home_course .home_course_bubble {
    right: 58px;
  }
  .home_course .home_course_item--left {
    left: 38px;
  }
  .home_course .home_course_item--right {
    right: 34px;
  }
  .home_course .home_course_copy {
    left: 42px;
  }
  .home_course .home_course_career {
    left: 52px;
  }
  .home_course .home_course_more {
    right: 100px;
  }
}
@media (max-width: 767.98px) {
  .home_course .home_course_header {
    padding: 64px 20px 52px;
  }
  .home_course .home_course_header h2 {
    font-size: 3.2rem;
  }
  .home_course .home_course_header p {
    margin-top: 14px;
  }
  .home_course .home_course_panel {
    --course-panel-height: 720px;
  }
  .home_course .home_course_panel--home-economics .home_course_script {
    top: 34px;
    left: 18px;
    width: min(82%, 430px);
  }
  .home_course .home_course_panel--home-economics .home_course_person {
    width: min(105%, 440px);
  }
  .home_course .home_course_panel--home-economics .home_course_item--left {
    top: 222px;
    left: 12px;
    width: 92px;
  }
  .home_course .home_course_panel--home-economics .home_course_item--right {
    top: 322px;
    right: 0;
    width: 118px;
  }
  .home_course .home_course_slides .home_course_slides_track {
    height: 280px;
    opacity: 0.34;
  }
  .home_course .home_course_content {
    width: min(100% - 24px, 500px);
  }
  .home_course .home_course_script {
    top: 38px;
    left: 18px;
    width: min(75%, 350px);
  }
  .home_course .home_course_person {
    width: min(94%, 390px);
  }
  .home_course .home_course_bubble {
    top: 126px;
    right: 6px;
    width: 146px;
  }
  .home_course .home_course_item--left {
    top: 214px;
    left: 0;
    width: 108px;
  }
  .home_course .home_course_item--right {
    top: 286px;
    right: 4px;
    width: 98px;
  }
  .home_course .home_course_copy {
    top: auto;
    bottom: 126px;
    left: 8px;
    width: min(66%, 258px);
    padding: 15px 16px 17px;
  }
  .home_course .home_course_copy h3 {
    font-size: 1.25rem;
  }
  .home_course .home_course_copy p {
    margin-top: 7px;
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .home_course .home_course_career {
    top: auto;
    bottom: 40px;
    left: 16px;
    width: calc(100% - 148px);
  }
  .home_course .home_course_career p {
    font-size: 0.76rem;
    line-height: 1.55;
  }
  .home_course .home_course_more {
    top: auto;
    right: 8px;
    bottom: 34px;
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home_course .home_course_slides .home_course_slides_track {
    animation: none;
    will-change: auto;
  }
  .home_course .home_course_more {
    transition: none;
  }
}
/*──────────────────────────────────────────────────
トップページ Curriculum
──────────────────────────────────────────────────*/
.home_curriculum {
  padding: clamp(88px, 10vw, 150px) 0;
  background-color: #FFFFFF;
  background-image: url("../images/front/curriculum/curriculum-grid.png");
  background-repeat: repeat;
  background-size: 40px;
}
.home_curriculum .home_curriculum_inner {
  width: min(100% - 80px, 1120px);
  margin-inline: auto;
}
.home_curriculum .home_curriculum_header {
  margin-bottom: clamp(54px, 6vw, 84px);
  text-align: center;
}
.home_curriculum .home_curriculum_header h2 {
  margin: 0;
  color: #b7d9fb;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: clamp(3.4rem, 4.6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.home_curriculum .home_curriculum_header p {
  margin: 18px 0 0;
  color: #171717;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
.home_curriculum .home_curriculum_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}
.home_curriculum .home_curriculum_card {
  display: flex;
  min-width: 0;
  color: #171717;
  text-decoration: none;
  flex-direction: column;
}
.home_curriculum .home_curriculum_card:hover .home_curriculum_image img {
  transform: scale(1.035);
}
.home_curriculum .home_curriculum_card:hover .home_curriculum_arrow {
  background: #4F9FA2;
  color: #FFFFFF;
  transform: translateX(4px);
}
.home_curriculum .home_curriculum_card:focus-visible {
  border-radius: 7px;
  outline: 3px solid #4F9FA2;
  outline-offset: 6px;
}
.home_curriculum .home_curriculum_image {
  aspect-ratio: 3/4;
  margin: 0;
  overflow: hidden;
  background: #F5F5F5;
}
.home_curriculum .home_curriculum_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.home_curriculum .home_curriculum_body {
  position: relative;
  display: flex;
  min-height: 168px;
  padding: 22px 64px 12px 0;
  flex: 1;
  flex-direction: column;
}
.home_curriculum .home_curriculum_body h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.55;
}
.home_curriculum .home_curriculum_body p {
  margin: 12px 0 0;
  color: #959595;
  font-size: 0.9rem;
  line-height: 1.75;
}
.home_curriculum .home_curriculum_arrow {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(123, 204, 207, 0.18);
  color: #4F9FA2;
  font-size: 22px;
  line-height: 1;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.home_curriculum .home_curriculum_results {
  display: flex;
  margin-top: clamp(56px, 7vw, 88px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(183, 217, 251, 0.85);
  border-radius: 7px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.96), rgba(225, 242, 255, 0.9));
  color: #171717;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.home_curriculum .home_curriculum_results:hover {
  border-color: #4F9FA2;
}
.home_curriculum .home_curriculum_results:hover .home_curriculum_results_arrow {
  background: #4F9FA2;
  color: #FFFFFF;
  transform: translateX(4px);
}
.home_curriculum .home_curriculum_results:focus-visible {
  outline: 3px solid #4F9FA2;
  outline-offset: 5px;
}
.home_curriculum .home_curriculum_results_text {
  display: grid;
  min-width: 0;
  gap: 6px;
}
.home_curriculum .home_curriculum_results_en {
  color: #83bae9;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.home_curriculum .home_curriculum_results_title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
}
.home_curriculum .home_curriculum_results_description {
  color: #959595;
  font-size: 0.92rem;
  line-height: 1.7;
}
.home_curriculum .home_curriculum_results_arrow {
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(123, 204, 207, 0.65);
  border-radius: 50%;
  color: #4F9FA2;
  font-size: 24px;
  line-height: 1;
  flex: 0 0 auto;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
@media (max-width: 1023.98px) {
  .home_curriculum .home_curriculum_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .home_curriculum {
    padding: 72px 0 84px;
  }
  .home_curriculum .home_curriculum_inner {
    width: min(100% - 40px, 520px);
  }
  .home_curriculum .home_curriculum_header {
    margin-bottom: 44px;
  }
  .home_curriculum .home_curriculum_header h2 {
    font-size: 3.2rem;
  }
  .home_curriculum .home_curriculum_header p {
    margin-top: 14px;
    font-size: 0.92rem;
  }
  .home_curriculum .home_curriculum_grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .home_curriculum .home_curriculum_body {
    min-height: 150px;
    padding-top: 18px;
  }
  .home_curriculum .home_curriculum_results {
    margin-top: 52px;
    padding: 24px 20px;
    gap: 16px;
  }
  .home_curriculum .home_curriculum_results_en {
    font-size: 0.74rem;
  }
  .home_curriculum .home_curriculum_results_title {
    font-size: 1.35rem;
  }
  .home_curriculum .home_curriculum_results_description {
    font-size: 0.82rem;
  }
  .home_curriculum .home_curriculum_results_arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home_curriculum .home_curriculum_image img,
  .home_curriculum .home_curriculum_arrow,
  .home_curriculum .home_curriculum_results,
  .home_curriculum .home_curriculum_results_arrow {
    transition: none;
  }
}
/*──────────────────────────────────────────────────
トップページ School Life / Admissions
──────────────────────────────────────────────────*/
.home_guides {
  padding: 75px 0 34px;
  overflow: hidden;
  background: #FFFFFF;
}
.home_guides .home_guides_row {
  position: relative;
  width: 100%;
}
.home_guides .home_guides_row + .home_guides_row {
  margin-top: 108px;
}
.home_guides .home_guides_row--school-life {
  height: 564px;
}
.home_guides .home_guides_row--school-life .home_guides_panel {
  top: 64px;
  left: 0;
  width: 44%;
  height: 500px;
}
.home_guides .home_guides_row--school-life .home_guides_image {
  top: 0;
  right: 0;
  width: 62%;
  height: 465px;
}
.home_guides .home_guides_row--reverse {
  height: 506px;
}
.home_guides .home_guides_row--reverse .home_guides_panel {
  top: 82px;
  right: 0;
  width: 45%;
  height: 424px;
}
.home_guides .home_guides_row--reverse .home_guides_image {
  top: 0;
  left: 0;
  width: 60%;
  height: 464px;
}
.home_guides .home_guides_panel {
  position: absolute;
  z-index: 2;
  display: flex;
  padding: 0 clamp(70px, 8.8vw, 134px);
  background: linear-gradient(120deg, rgba(224, 240, 255, 0.9), rgba(255, 235, 238, 0.82));
  flex-direction: column;
}
.home_guides .home_guides_header {
  position: absolute;
  top: -44px;
  right: 0;
  left: 0;
  text-align: center;
}
.home_guides .home_guides_header h3 {
  margin: 12px 0 0;
  color: #171717;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
}
.home_guides .home_guides_en_image {
  display: block;
  width: min(70%, 340px);
  height: auto;
  margin-inline: auto;
}
.home_guides .home_guides_links {
  width: 100%;
  margin: 148px auto 0;
  padding-left: 1.2em;
}
.home_guides .home_guides_links li {
  list-style: disc;
  border-bottom: 1px solid rgba(23, 23, 23, 0.32);
  color: #9bcdf8;
}
.home_guides .home_guides_links li::marker {
  font-size: 1.1em;
}
.home_guides .home_guides_links a {
  display: flex;
  min-height: 60px;
  padding: 14px 0 13px 8px;
  color: #171717;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.home_guides .home_guides_links a .material-symbols-outlined {
  color: #4F9FA2;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.home_guides .home_guides_links a:hover {
  padding-left: 14px;
  color: #4F9FA2;
}
.home_guides .home_guides_links a:hover .material-symbols-outlined {
  opacity: 1;
  transform: translateX(0);
}
.home_guides .home_guides_links a:focus-visible {
  border-radius: 2px;
  outline: 3px solid #4F9FA2;
  outline-offset: 3px;
}
.home_guides .home_guides_row--admissions .home_guides_links {
  margin-top: 166px;
}
.home_guides .home_guides_image {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: #F5F5F5;
}
.home_guides .home_guides_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1023.98px) {
  .home_guides .home_guides_row,
  .home_guides .home_guides_row--reverse {
    display: flex;
    width: min(100% - 56px, 760px);
    height: auto;
    margin-inline: auto;
    flex-direction: column;
  }
  .home_guides .home_guides_row .home_guides_panel,
  .home_guides .home_guides_row .home_guides_image,
  .home_guides .home_guides_row--reverse .home_guides_panel,
  .home_guides .home_guides_row--reverse .home_guides_image {
    position: static;
    width: 100%;
    height: auto;
  }
  .home_guides .home_guides_panel {
    padding: 56px clamp(40px, 8vw, 72px);
  }
  .home_guides .home_guides_header {
    position: static;
  }
  .home_guides .home_guides_en_image {
    width: min(68%, 320px);
  }
  .home_guides .home_guides_links,
  .home_guides .home_guides_row--admissions .home_guides_links {
    margin-top: 42px;
  }
  .home_guides .home_guides_image {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767.98px) {
  .home_guides {
    padding: 80px 0 96px;
  }
  .home_guides .home_guides_row,
  .home_guides .home_guides_row--reverse {
    width: min(100% - 32px, 520px);
  }
  .home_guides .home_guides_row + .home_guides_row {
    margin-top: 72px;
  }
  .home_guides .home_guides_panel {
    padding: 44px 26px 48px;
  }
  .home_guides .home_guides_header h3 {
    margin-top: 8px;
    font-size: 0.96rem;
  }
  .home_guides .home_guides_en_image {
    width: min(78%, 300px);
  }
  .home_guides .home_guides_links {
    margin-top: 34px;
  }
  .home_guides .home_guides_links a {
    min-height: 54px;
    padding-top: 12px;
    padding-bottom: 11px;
    font-size: 0.92rem;
  }
  .home_guides .home_guides_image {
    aspect-ratio: 16/10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home_guides .home_guides_links a,
  .home_guides .home_guides_links .material-symbols-outlined {
    transition: none;
  }
}
/*──────────────────────────────────────────────────
お問い合わせ
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .contact {
    padding-bottom: 50px !important;
  }
}
.contact h2.section_title {
  font-size: 1.2rem;
  color: #7BCCCF;
  margin-bottom: 20px;
  text-align: center;
}
.contact .contact_phone {
  margin-bottom: 80px;
  background: #F5F8FA;
  border: 6px solid #F5F8FA;
  border-radius: 7px;
  padding: 25px 20px 30px;
}
.contact .contact_phone .phone_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.contact .contact_phone .phone_content .phone_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  padding: 15px 40px 12px;
  border-radius: 50px;
  gap: 5px;
  transition: all 0.3s ease;
}
.contact .contact_phone .phone_content .phone_button span.material-symbols-outlined {
  font-size: 1.8rem;
  color: #FFFFFF;
  line-height: 1;
}
.contact .contact_phone .phone_content .phone_button span.number {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Comfortaa", sans-serif;
  line-height: 1;
  color: #FFFFFF;
}
.contact .contact_phone .phone_content .phone_button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.contact .contact_phone .phone_content .hours_info {
  width: 100%;
  max-width: 500px;
  border-top: 1px dotted #E4E1DE;
  padding-top: 30px;
}
.contact .contact_phone .phone_content .hours_info .hours_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact .contact_phone .phone_content .hours_info .hours_item span.title {
  flex-basis: 110px;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #171717;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(23, 23, 23, 0.05);
  margin-right: 20px;
  border-radius: 7px;
  padding: 8px 0;
}
.contact .contact_phone .phone_content .hours_info .hours_item span.title.holiday {
  background-color: rgba(168, 123, 93, 0.1);
  color: #A87B5D;
}
.contact .contact_phone .phone_content .hours_info .hours_item .content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #171717;
  font-weight: 600;
  margin: 0;
}
.contact .contact_phone .phone_content .hours_info .hours_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .contact .contact_flow {
    margin: 50px auto 40px;
  }
}
@media (max-width: 767.98px) {
  .contact .contact_flow .contact_flow_item span.circle {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767.98px) {
  .contact .contact_flow .contact_flow_item span.status {
    font-size: 0.7rem;
    margin-top: 6px;
  }
}
.contact .the_form {
  padding: 20px 0;
}
.contact .the_form p.form_avobe {
  margin: 0 auto 60px;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .contact .the_form p.form_avobe {
    margin: 0 auto 10px;
    padding: 20px 0;
    font-size: 0.8rem !important;
    text-align: left;
  }
}
.contact .the_form .form_wrapper {
  background: #FFFFFF;
  padding: 20px 60px;
  border-radius: 7px;
}

/*──────────────────────────────────────────────────
送信完了（サンクスページ）
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .thanks .thankyou_content {
    margin: 50px 0;
  }
}
.thanks .thankyou_content p {
  margin: 0;
  font-size: 0.9rem;
}
.thanks .thankyou_content p + p {
  margin-top: 1em;
}
.thanks ul.thankyou_info {
  margin: 50px auto 60px;
  background: #FFFFFF;
  padding: 25px 40px;
  border-radius: 5px;
}
@media (max-width: 767.98px) {
  .thanks ul.thankyou_info {
    margin: 30px auto 40px;
    padding: 25px 20px;
  }
}
.thanks ul.thankyou_info li {
  display: block;
  font-size: 0.9rem;
  list-style: disc;
  margin: 0 0 15px;
}
@media (max-width: 767.98px) {
  .thanks ul.thankyou_info li {
    font-size: 0.8rem;
  }
}
.thanks ul.thankyou_info li:last-child {
  margin: 0;
}
.thanks ul.thankyou_info li a {
  display: inline-block;
  border-bottom: 1px solid #4F7D80;
  color: #4F7D80;
}
.thanks .backtohome {
  text-align: center;
}

/* 学校紹介 */
.static_page_school {
  --page-accent: #7BCCCF;
}

/* 学校長あいさつ */
.static_page_principal {
  --page-accent: #7BCCCF;
}

/* 学園のあゆみ */
.static_page_history {
  --page-accent: #7BCCCF;
}

/* 校内の施設紹介 */
.static_page_facility {
  --page-accent: #7BCCCF;
}

/* 交通アクセス */
.static_page_access {
  --page-accent: #7BCCCF;
}

/* 学校概要 */
.static_page_profile {
  --page-accent: #7BCCCF;
}

/* 学校評価・情報公開 */
.static_page_disclosure {
  --page-accent: #7BCCCF;
}

/* 学科紹介 */
.static_page_course {
  --page-accent: #7BCCCF;
}

/* 普通科 */
.static_page_usually {
  --page-accent: #7BCCCF;
}

/* 家庭科 */
.static_page_home_economics {
  --page-accent: #7BCCCF;
}

/* 学びの特徴 */
.static_page_learning {
  --page-accent: #7BCCCF;
}

/* 国際教育・多文化共生 */
.static_page_global {
  --page-accent: #7BCCCF;
}

/* 多様性・個別支援 */
.static_page_diversity {
  --page-accent: #7BCCCF;
}

/* 探究・地域／世代間交流 */
.static_page_inquiry {
  --page-accent: #7BCCCF;
}

/* 進学・就職実績 */
.static_page_result {
  --page-accent: #7BCCCF;
}

/* 卒業生インタビュー */
.static_page_og {
  --page-accent: #7BCCCF;
}

/* スクールライフ */
.static_page_life {
  --page-accent: #7BCCCF;
}

/* クラブ活動・同好会 */
.static_page_club {
  --page-accent: #7BCCCF;
}

/* 学校行事 */
.static_page_event {
  --page-accent: #7BCCCF;
}

/* 在校生インタビュー */
.static_page_voice {
  --page-accent: #7BCCCF;
}

/* 保護者様からの声 */
.static_page_parents_voice {
  --page-accent: #7BCCCF;
}

/* スクールバス・寮 */
.static_page_bus {
  --page-accent: #7BCCCF;
}

/* 制服紹介 */
.static_page_uniform {
  --page-accent: #7BCCCF;
}

/* 入試案内 */
.static_page_ent {
  --page-accent: #7BCCCF;
}

/* 入試の種類・要項 */
.static_page_guidelines {
  --page-accent: #7BCCCF;
}

/* 学費・納付金・支援制度 */
.static_page_tuition {
  --page-accent: #7BCCCF;
}

/* 転入・編入情報 */
.static_page_transfer {
  --page-accent: #7BCCCF;
}

/* デジタルパンフレット */
.static_page_brochure {
  --page-accent: #7BCCCF;
}

/* お問い合わせ完了 */
.contact_thanks {
  --page-accent: #7BCCCF;
}

/* よくある質問 */
.static_page_faq {
  --page-accent: #7BCCCF;
}

/* 個人情報保護方針 */
.static_page_privacy_policy {
  --page-accent: #7BCCCF;
}

/* お知らせアーカイブ */
.post_archive .post_archive_inner .blog_content {
  min-width: 0;
}

/* お知らせ詳細
 * 既存の詳細表示スタイルは移行完了までここから読み込む。
 */
/*──────────────────────────────────────────────────
投稿（アーカイブ・シングル）
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .post_archive {
    padding-bottom: 0;
  }
}
.post_archive .post_archive_inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .post_archive .post_archive_inner {
    margin: 50px auto 0;
    flex-direction: column;
  }
}
.post_archive .post_archive_inner .blog_aside {
  flex-basis: 25%;
}
@media (max-width: 767.98px) {
  .post_archive .post_archive_inner .blog_aside {
    order: 1;
    margin: 30px 0 0;
  }
}
.post_archive .post_archive_inner .blog_aside .blog_aside_item .title {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767.98px) {
  .post_archive .post_archive_inner .blog_aside .blog_aside_item .title {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.post_archive .post_archive_inner .blog_aside .blog_aside_item .title::after {
  width: 30px;
  height: 1px;
  background: #E4E1DE;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.post_archive .post_archive_inner .blog_aside .blog_aside_item ul.category-list {
  background: #FFFFFF;
  padding: 0.5rem 1rem 0.5rem 2rem;
  border-radius: 7px;
  list-style: circle;
}
.post_archive .post_archive_inner .blog_aside .blog_aside_item ul.category-list li.category-list__item {
  padding: 0.5rem 0;
}
.post_archive .post_archive_inner .blog_aside .blog_aside_item ul.category-list li.category-list__item a {
  display: inline-block;
  color: #171717;
  font-size: 0.9rem;
  font-weight: 400;
}
.post_archive .post_archive_inner .blog_aside .blog_aside_item ul.category-list li.category-list__item.current a {
  color: #7BCCCF;
  border-bottom: 1px solid #7BCCCF;
}
.post_archive .post_archive_inner .blog_content {
  flex-basis: 70%;
}

/*──────────────────────────────────────────────────
投稿シングル
──────────────────────────────────────────────────*/
.post_single {
  padding-top: 120px;
}
.post_single .subpages_wrapper {
  margin: 80px auto 0;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper {
    margin: 40px 0 0;
    padding: 0 20px;
  }
}
.post_single .subpages_wrapper article header.entry-header {
  margin: 0 auto 40px;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article header.entry-header {
    margin: 0 auto 30px;
  }
}
.post_single .subpages_wrapper article header.entry-header .informations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.post_single .subpages_wrapper article header.entry-header .informations span.date {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #959595;
}
.post_single .subpages_wrapper article header.entry-header .informations ul.post-categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.post_single .subpages_wrapper article header.entry-header .informations ul.post-categories li a {
  display: block;
  background: rgba(123, 204, 207, 0.1);
  color: #7BCCCF;
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: none;
}
.post_single .subpages_wrapper article header.entry-header .informations ul.post-categories li a:hover {
  background: rgb(85.6, 189.55, 193.4);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.post_single .subpages_wrapper article header.entry-header .page_title {
  margin: 10px 0 30px;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article header.entry-header .page_title span.date {
    font-size: 0.85rem;
  }
  .post_single .subpages_wrapper article header.entry-header .page_title ul.post-categories {
    gap: 8px;
  }
  .post_single .subpages_wrapper article header.entry-header .page_title ul.post-categories li a,
  .post_single .subpages_wrapper article header.entry-header .page_title ul.post-categories li > span {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}
.post_single .subpages_wrapper article header.entry-header .page_title h1.single_title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article header.entry-header .page_title h1.single_title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.post_single .subpages_wrapper article header.entry-header img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 4px 20px rgba(23, 23, 23, 0.1);
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article header.entry-header img {
    border-radius: 8px;
  }
}
.post_single .subpages_wrapper article section.entry-content {
  margin: 40px auto;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article section.entry-content {
    margin: 30px auto;
  }
}
.post_single .subpages_wrapper article section.entry-content {
  /* 旧CPTやギャラリーを流用する案件用の本文内レイアウト */
}
.post_single .subpages_wrapper article section.entry-content.works_content .works_text {
  border-top: 1px solid #E4E1DE;
  padding: 20px 0;
}
.post_single .subpages_wrapper article section.entry-content.works_content .works_gallery .gallery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.post_single .subpages_wrapper article section.entry-content.works_content .works_gallery .gallery figure.gallery-item .gallery-icon img {
  width: 100%;
  height: auto;
}
.post_single .subpages_wrapper article footer.entry-footer {
  margin: 60px 0 0;
  border-top: 1px solid #E4E1DE;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article footer.entry-footer {
    margin: 40px 0 60px;
    padding-top: 30px;
  }
}
.post_single .subpages_wrapper article footer.entry-footer > div {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.post_single .subpages_wrapper article footer.entry-footer > div > span.ttl {
  font-size: 0.85rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article footer.entry-footer > div > span.ttl {
    font-size: 0.8rem;
  }
}
.post_single .subpages_wrapper article footer.entry-footer > div.tag {
  padding: 15px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.post_single .subpages_wrapper article footer.entry-footer > div.tag a {
  font-size: 0.85rem;
  padding: 6px 14px;
  background: #F5F5F5;
  border-radius: 20px;
  color: #171717;
  transition: all 0.3s ease;
}
.post_single .subpages_wrapper article footer.entry-footer > div.tag a:hover {
  background: #7BCCCF;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.post_single .subpages_wrapper article footer.entry-footer > div.cat {
  padding: 15px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.post_single .subpages_wrapper article footer.entry-footer > div.cat ul.post-categories {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post_single .subpages_wrapper article footer.entry-footer > div.cat ul.post-categories li a {
  font-size: 0.85rem;
  padding: 6px 14px;
  background: #F5F5F5;
  border-radius: 20px;
  color: #171717;
  transition: all 0.3s ease;
}
.post_single .subpages_wrapper article footer.entry-footer > div.cat ul.post-categories li a:hover {
  background: #7BCCCF;
  color: #FFFFFF;
}
.post_single .subpages_wrapper article footer.entry-footer > div.cat ul.post-categories li > span {
  font-size: 0.85rem;
  color: #959595;
}
.post_single .subpages_wrapper article footer.entry-footer > div.share {
  margin: 30px 0 0;
}
.post_single .subpages_wrapper article footer.entry-footer > div.footer_navigator {
  margin: 40px 0 0;
}

/* お知らせカテゴリー */
.post_archive .category-list__item.current {
  font-weight: 700;
}

/*──────────────────────────────────────────────────
トピックス アーカイブ
──────────────────────────────────────────────────*/
.topics_archive .topics_archive_inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
}
.topics_archive .topics_archive_aside .title {
  display: block;
  margin: 0 0 18px;
  font-weight: 700;
}
.topics_archive .topics_category_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.topics_archive .topics_category_list li {
  border-bottom: 1px solid #E4E1DE;
}
.topics_archive .topics_category_list li.current a {
  color: #4F9FA2;
  font-weight: 700;
}
.topics_archive .topics_category_list a {
  display: block;
  padding: 12px 4px;
  color: #171717;
  text-decoration: none;
}
.topics_archive .topics_category_list a:hover {
  color: #4F9FA2;
}
.topics_archive .topics_archive_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 36px;
}
.topics_archive .topics_archive_card a {
  display: block;
  color: #171717;
  text-decoration: none;
}
.topics_archive .topics_archive_card a:hover figure img {
  transform: scale(1.035);
}
.topics_archive .topics_archive_card a:hover h2 {
  color: #4F9FA2;
}
.topics_archive .topics_archive_card figure {
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  background: #F5F5F5;
}
.topics_archive .topics_archive_card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.topics_archive .topics_archive_card .topics_archive_meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  color: #959595;
  font-size: 0.8rem;
}
.topics_archive .topics_archive_card .topics_archive_meta span {
  color: #4F9FA2;
}
.topics_archive .topics_archive_card h2 {
  margin: 8px 0 6px;
  font-size: 1.1rem;
  line-height: 1.55;
  transition: color 0.25s ease;
}
.topics_archive .topics_archive_card p {
  margin: 0;
  color: #959595;
  font-size: 0.88rem;
  line-height: 1.7;
}
.topics_archive .topics_archive_empty {
  grid-column: 1/-1;
}
@media (max-width: 767.98px) {
  .topics_archive .topics_archive_inner {
    display: block;
  }
  .topics_archive .topics_archive_aside {
    margin-bottom: 48px;
  }
  .topics_archive .topics_category_list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }
  .topics_archive .topics_category_list li {
    flex-shrink: 0;
    border: 1px solid #E4E1DE;
    border-radius: 999px;
  }
  .topics_archive .topics_category_list a {
    padding: 8px 14px;
  }
  .topics_archive .topics_archive_grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/*──────────────────────────────────────────────────
トピックス 詳細
──────────────────────────────────────────────────*/
.topics_single .entry-header .informations .cat {
  color: #4F9FA2;
}
.topics_single .entry-footer > .cat {
  margin-bottom: 30px;
}/*# sourceMappingURL=edit.css.map */