@charset "UTF-8";
/*------------------------------------
  Sass モジュールの読み込み
------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap");
/*====================

====================*/
/* ==========================================================================
   レスポンシブ・スペース変数宣言（clamp関数）
   ========================================================================== */
/* ==========================================================================
   マージン（Margin）可変ユーティリティ
   ========================================================================== */
/* ── Sサイズ（16px 〜 32px可変） ── */
.m-s {
  margin: clamp(1rem, 2vw, 2rem);
}

/* 全方向 */
.mt-s {
  margin-top: clamp(1rem, 2vw, 2rem);
}

/* 上 */
.mb-s {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

/* 下 */
.ml-s {
  margin-left: clamp(1rem, 2vw, 2rem);
}

/* 左 */
.mr-s {
  margin-right: clamp(1rem, 2vw, 2rem);
}

/* 右 */
.my-s {
  margin-top: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

/* 上下（Y軸） */
.mx-s {
  margin-left: clamp(1rem, 2vw, 2rem);
  margin-right: clamp(1rem, 2vw, 2rem);
}

/* 左右（X軸） */
/* ── Mサイズ（32px 〜 64px可変） ── */
.m-m {
  margin: clamp(2rem, 4vw, 4rem);
}

/* 全方向 */
.mt-m {
  margin-top: clamp(2rem, 4vw, 4rem);
}

/* 上 */
.mb-m {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

/* 下 */
.ml-m {
  margin-left: clamp(2rem, 4vw, 4rem);
}

/* 左 */
.mr-m {
  margin-right: clamp(2rem, 4vw, 4rem);
}

/* 右 */
.my-m {
  margin-top: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

/* 上下（Y軸） */
.mx-m {
  margin-left: clamp(2rem, 4vw, 4rem);
  margin-right: clamp(2rem, 4vw, 4rem);
}

/* 左右（X軸） */
/* ── Lサイズ（48px 〜 112px可変） ── */
.m-l {
  margin: clamp(3rem, 6vw, 7rem);
}

/* 全方向 */
.mt-l {
  margin-top: clamp(3rem, 6vw, 7rem);
}

/* 上 */
.mb-l {
  margin-bottom: clamp(3rem, 6vw, 7rem);
}

/* 下 */
.ml-l {
  margin-left: clamp(3rem, 6vw, 7rem);
}

/* 左 */
.mr-l {
  margin-right: clamp(3rem, 6vw, 7rem);
}

/* 右 */
.my-l {
  margin-top: clamp(3rem, 6vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 7rem);
}

/* 上下（Y軸） */
.mx-l {
  margin-left: clamp(3rem, 6vw, 7rem);
  margin-right: clamp(3rem, 6vw, 7rem);
}

/* 左右（X軸） */
/* ==========================================================================
   パディング（Padding）可変ユーティリティ
   ========================================================================== */
/* ── Sサイズ（16px 〜 32px可変） ── */
.p-s {
  padding: clamp(1rem, 2vw, 2rem);
}

/* 全方向 */
.pt-s {
  padding-top: clamp(1rem, 2vw, 2rem);
}

/* 上 */
.pb-s {
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

/* 下 */
.pl-s {
  padding-left: clamp(1rem, 2vw, 2rem);
}

/* 左 */
.pr-s {
  padding-right: clamp(1rem, 2vw, 2rem);
}

/* 右 */
.py-s {
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

/* 上下（Y軸） */
.px-s {
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-right: clamp(1rem, 2vw, 2rem);
}

/* 左右（X軸） */
/* ── Mサイズ（32px 〜 64px可変） ── */
.p-m {
  padding: clamp(2rem, 4vw, 4rem);
}

/* 全方向 */
.pt-m {
  padding-top: clamp(2rem, 4vw, 4rem);
}

/* 上 */
.pb-m {
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

/* 下 */
.pl-m {
  padding-left: clamp(2rem, 4vw, 4rem);
}

/* 左 */
.pr-m {
  padding-right: clamp(2rem, 4vw, 4rem);
}

/* 右 */
.py-m {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

/* 上下（Y軸） */
.px-m {
  padding-left: clamp(2rem, 4vw, 4rem);
  padding-right: clamp(2rem, 4vw, 4rem);
}

/* 左右（X軸） */
/* ── Lサイズ（48px 〜 112px可変） ── */
.p-l {
  padding: clamp(3rem, 6vw, 7rem);
}

/* 全方向 */
.pt-l {
  padding-top: clamp(3rem, 6vw, 7rem);
}

/* 上 */
.pb-l {
  padding-bottom: clamp(3rem, 6vw, 7rem);
}

/* 下 */
.pl-l {
  padding-left: clamp(3rem, 6vw, 7rem);
}

/* 左 */
.pr-l {
  padding-right: clamp(3rem, 6vw, 7rem);
}

/* 右 */
.py-l {
  padding-top: clamp(3rem, 6vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 7rem);
}

/* 上下（Y軸） */
.px-l {
  padding-left: clamp(3rem, 6vw, 7rem);
  padding-right: clamp(3rem, 6vw, 7rem);
}

/* 左右（X軸） */
/* ==========================================================================
   フォントサイズ
   ========================================================================== */
.fs-l {
  font-size: 25px;
}

.fs-xl {
  font-size: 30px;
}

/*====================

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

html {
  max-width: 1920px;
  margin: 0 auto;
  scroll-padding-top: var(--header-height, 100px);
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
}
@media (max-width: 480px) {
  html {
    font-size: 18px;
  }
}

/* ブラウザのデフォルト余白をリセット */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #202020;
}

ul,
ol {
  list-style: none;
  padding-inline-start: unset;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 1em;
}

figure {
  margin: 0;
}

article {
  padding: 2vw;
}

.c-breadcrumb {
  padding: 15px 0;
  margin-top: var(--header-height, 70px);
  border-bottom: solid 1px #ccc;
}
.c-breadcrumb__inner {
  max-width: 1260px;
  padding-inline: 20px;
  margin-inline: auto;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item::after {
  content: ">";
  margin: 0 10px;
  color: #666;
}
.c-breadcrumb__item:last-child::after {
  display: none;
}
.c-breadcrumb__item:first-child a {
  color: #ed6d00;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.c-breadcrumb__item:first-child a::before {
  /* Font Awesome 家アイコン */
  font-family: "Font Awesome 6 Free";
  content: "\f015";
  font-weight: 900;
  margin-right: 6px;
}
.c-breadcrumb__item a {
  text-decoration: none;
  color: #333;
}
.c-breadcrumb__item a:hover {
  text-decoration: underline;
}

/* パンくず（.c-breadcrumb）が隣接していない l-main にだけ余白を付ける */
.l-main {
  padding-top: var(--header-height, 70px);
  /* トップページは潜り込ませる */
}
.home .l-main {
  padding-top: 0;
}
.l-main__inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* パンくずがある場合は、l-main 側の余白を消す */
.c-breadcrumb + .l-main {
  padding-top: 0;
}

.mx-auto {
  margin-inline: auto;
}

.alignfull {
  margin-right: calc(50% - 50vw + var(--scrollbar-width, 0px) / 2) !important;
  margin-left: calc(50% - 50vw + var(--scrollbar-width, 0px) / 2) !important;
  width: auto !important;
  max-width: none !important;
  position: relative;
}

/* 幅広（alignwide） */
.alignwide {
  /* 1. 幅の設定（120%に広げつつ、画面幅を超えない） */
  width: 120% !important;
  max-width: calc(100vw - var(--scrollbar-width, 0px)) !important;
  /* 
        2. 【重要】左寄りを直す魔法の計算
        「画面の真ん中」から「要素の幅の半分」を引くことで、
        親要素の状態に関わらず、必ず画面中央に配置されます。
     */
  position: relative;
  left: 50%;
  margin-left: -60% !important;
  /* 120% の半分をマイナス */
  /* 
        3. 1920px などの巨大画面で max-width が効いた時のための補正
        これがないと、max-width が効いた時に左に寄ります。
     */
  transform: translateX(-50%);
  left: 50%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* 4. sp-xl（タブレット・スマホ）では100%に戻す */
}
@media (max-width: 480px) {
  .alignwide {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0;
    transform: none;
  }
}

.w800 {
  max-width: 800px;
}

.w1000 {
  max-width: 1000px;
}

.w1200 {
  max-width: calc(1200px + 4vw);
}

.section-title {
  background-color: #ed6d00;
  margin-bottom: 3rem;
  padding-left: 20px;
  padding-right: 20px;
}
.section-title:not(:first-child) {
  margin-top: 3rem;
}
.section-title .wp-block-group__inner-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
.section-title .wp-block-group__inner-container p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 0;
}
.section-title .wp-block-group__inner-container p:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #fff;
  top: 0;
  left: -24px;
}
.section-title.top .wp-block-group__inner-container p {
  text-align: center;
}
.section-title.top .wp-block-group__inner-container p:before {
  content: none;
}

@media (max-width: 480px) {
  .sp-flex-column {
    flex-direction: column;
  }
}

.has-block-left {
  font-size: 25px;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 60px;
  position: relative;
}
.has-block-left:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 26px;
  top: 0;
  left: -40px;
}
.has-block-left.green:before {
  background-color: #1fc695;
}

.has-bg {
  background-color: #ededed;
  border-bottom: 1px solid #ed6d00;
  position: relative;
  font-size: 25px;
  font-weight: 700;
  padding: 20px;
}
.has-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: calc(100% + 1px);
  width: 20px;
  background-color: #ed6d00;
}
.has-bg:not(:first-child) {
  margin-top: 3rem;
}

/*====================

====================*/
.wp-block-buttons .wp-block-button .wp-block-button__link {
  padding: calc(0.667em + 2px) calc(1.333em + 20px);
}
.wp-block-buttons.orange .wp-block-button .wp-block-button__link {
  font-weight: 700;
  border: 2px solid #ed6d00;
  background-color: #ed6d00;
  transition: all 0.3s;
}
.wp-block-buttons.orange .wp-block-button .wp-block-button__link:hover {
  background-color: transparent;
  color: #ed6d00;
}
.wp-block-buttons.transparent .wp-block-button .wp-block-button__link {
  background-color: transparent;
  color: #ed6d00;
  font-weight: 700;
  border: 2px solid #ed6d00;
  width: 780px;
  transition: all 0.3s;
}
.wp-block-buttons.transparent .wp-block-button .wp-block-button__link:hover {
  background-color: #ed6d00;
  color: #fff;
}
@media (max-width: 1024px) {
  .wp-block-buttons.transparent .wp-block-button .wp-block-button__link {
    width: 70%;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.l-header {
  position: fixed !important;
  top: var(--admin-bar-height, 0px) !important;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ed6d00;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1260px;
  margin-inline: auto;
  padding: 0 20px 20px;
  /* 【修正】sp-xl から tablet-xl (1024px) に変更 */
}
@media (max-width: 1024px) {
  .l-header__inner {
    height: 70px;
    align-items: center;
    padding-bottom: 0;
  }
}
.l-header {
  /* --- 左側：ロゴエリア（白背景の左右斜めカット） --- */
}
.l-header__logo-zone {
  background: #ffffff;
  padding: 12px 50px 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  clip-path: polygon(25px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  margin-left: -20px;
}
@media (max-width: 1024px) {
  .l-header__logo-zone {
    /* スマホ時、キャッチコピーが入る分だけ上下の余白を少し調整します */
    padding: 15px 35px 8px 35px;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    margin-left: -20px;
    height: 100%;
  }
}
.l-header {
  /* --- 【修正】キャッチコピー（スマホでも非表示にせず、コンパクトに見せる） --- */
}
.l-header__tagline {
  font-size: 14px;
  color: #202020;
  margin: 0 0 4px 0;
  padding-left: 1em;
  white-space: nowrap;
  /* 1024px 未満（スマホ・タブレット）の時のスタイル */
}
@media (max-width: 1024px) {
  .l-header__tagline {
    display: block;
    /* 非表示（none）を解除して表示させる */
    font-size: 10px;
    /* スマホの画面幅に合わせて文字を小さく */
    margin: 0 0 2px 0;
    /* ロゴとの隙間を少し詰める */
    padding-left: 3em;
    /* 左の余白も少しコンパクトに */
    max-width: 200px;
    /* 万が一画面からはみ出さないための保険 */
    text-overflow: ellipsis;
    /* もし画面幅が極端に狭い時は3点リーダーに */
  }
}
.l-header {
  /* ロゴ */
}
.l-header__logo a {
  display: block;
  line-height: 0;
}
.l-header__logo img {
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: 50px;
  /* 【追加】スマホ・タブレットの時は白背景の中に収まるよう少し小さく調整 */
}
@media (max-width: 1024px) {
  .l-header__logo img {
    max-height: 40px;
    max-width: 200px;
  }
}
@media (max-width: 1024px) {
  .l-header__logo {
    /* 【修正】白背景が維持されるため、テキストロゴの場合でも
       白文字（#ffffff）ではなく、PCと同じ濃い色（$text-colorや#333）に変更します。
    */
  }
  .l-header__logo a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.2;
  }
}
.l-header {
  /* 右側ナビゲーショングループ */
}
.l-header__nav-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-vertical: 8px;
  /* 【修正】1024px 未満は横並びに */
}
@media (max-width: 1024px) {
  .l-header__nav-group {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-vertical: 0;
  }
}
.l-header {
  /* ウィジェット上部 */
}
.l-header__widget-top {
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .l-header__widget-top {
    display: none !important;
  }
}
.l-header {
  /* メニュー + ウィジェット右 の行 */
}
.l-header__nav-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.l-header {
  /* ナビゲーション本体 */
}
.l-header__nav {
  /* 【修正】1024px 未満はドロワーメニュー化 */
}
@media (max-width: 1024px) {
  .l-header__nav {
    position: fixed;
    top: calc(var(--admin-bar-height, 0px) + var(--header-height, 70px));
    left: 0;
    width: 100%;
    height: calc(100vh - (var(--admin-bar-height, 0px) + var(--header-height, 70px)));
    z-index: 999;
    background: #fff;
    padding: 40px 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s;
    visibility: hidden;
  }
  .l-header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
}
.l-header {
  /* メニューリスト（1階層目ベース） */
}
.l-header__menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  /* 【修正】1024px 未満はアコーディオン用にリセット */
}
@media (max-width: 1024px) {
  .l-header__menu {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    font-size: 1.2rem;
  }
}
.l-header__menu .menu-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  transition: opacity 0.2s;
}
.l-header__menu .menu-item a:hover {
  opacity: 0.8;
}
.l-header__menu .menu-item a {
  /* 【修正】1024px 未満のドロワー内は黒文字・左寄せリセット */
}
@media (max-width: 1024px) {
  .l-header__menu .menu-item a {
    color: #333 !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 15px 20px !important;
    position: relative;
    transition: none !important;
  }
}
.l-header__menu .menu-item a .menu-description {
  display: block;
  font-size: 10px;
  color: #202020;
  margin-top: 2px;
  font-weight: normal;
  text-transform: uppercase;
  /* 【修正】 */
}
@media (max-width: 1024px) {
  .l-header__menu .menu-item a .menu-description {
    color: #777 !important;
    text-align: left !important;
  }
}
.l-header {
  /* ウィジェット右 */
}
.l-header__widget-right {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .l-header__widget-right {
    display: none !important;
  }
}
.l-header {
  /* ハンバーガーボタン */
}
.l-header__hamburger {
  display: none;
  /* 【修正】1024px 未満で出現させる */
}
@media (max-width: 1024px) {
  .l-header__hamburger {
    display: block;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
    cursor: pointer;
  }
  .l-header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
  .l-header__hamburger span:nth-child(1) {
    top: 0;
  }
  .l-header__hamburger span:nth-child(2) {
    top: 11px;
  }
  .l-header__hamburger span:nth-child(3) {
    bottom: 0;
  }
  .l-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}
.l-header {
  /* 下段：ページタイトルバー */
}
.l-header__page-title-bar {
  background-color: #ed6d00;
  width: 100%;
  padding: 18px 0;
  /* 【修正】 */
}
@media (max-width: 1024px) {
  .l-header__page-title-bar {
    padding: 12px 0;
  }
}
.l-header__page-title-inner {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 20px;
}
.l-header__page-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.03em;
  /* 【修正】 */
}
@media (max-width: 1024px) {
  .l-header__page-title {
    font-size: 18px;
    text-align: center;
  }
}

/*==========================================================================
   【PC用スタイル】1025px以上でのホバー制御（3階層・孫メニューまで完全対応）
==========================================================================*/
.l-header__nav > ul {
  display: flex;
}
.l-header__nav > ul > li {
  position: relative;
  /* --- 2階層目（子）の初期状態 --- */
}
.l-header__nav > ul > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.l-header__nav > ul > li {
  /* --- 1階層目ホバー時に2階層目（子）を表示 --- */
}
.l-header__nav > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.l-header__nav {
  /* --- 2階層目・3階層目の共通内部リンク設定 --- */
}
.l-header__nav .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header__nav .sub-menu li {
  position: relative;
}
.l-header__nav .sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
}
.l-header__nav .sub-menu li a:hover {
  background: #f5f5f5;
  opacity: 1;
}
.l-header__nav .sub-menu li {
  /* --- 3階層目（孫）の初期状態：2階層目の右隣（横）に配置 --- */
}
.l-header__nav .sub-menu li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  /* 親メニューの完全に右外側へ出す */
  width: 220px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.l-header__nav .sub-menu li {
  /* --- 2階層目ホバー時に3階層目（孫）を横にフワッと表示 --- */
}
.l-header__nav .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   【スマホ・タブレット用】1024px以下（tablet-xl）での縦アコーディオン（孫対応）
   ========================================================================== */
@media (max-width: 1024px) {
  .l-header__nav > ul {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .l-header__nav {
    /* 全全階層共通のメニューアイテム枠リセット */
  }
  .l-header__nav .menu-item {
    width: 100% !important;
    position: static !important;
    /* PC用のabsolute起点を強制破壊 */
    border-bottom: 1px solid #ddd;
  }
  .l-header__nav .menu-item a {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 15px 20px !important;
    width: 100% !important;
    position: relative !important;
    /* ＋ーアイコンの絶対配置用起点 */
    transition: none !important;
  }
  .l-header__nav {
    /* 子、あるいは孫メニューを持つ全ての要素に共通の「＋/－」設定 */
  }
  .l-header__nav .menu-item-has-children > a {
    padding-right: 60px !important;
    /* アイコンと重ならない防護策 */
    /* ＋アイコンを右端に配置 */
  }
  .l-header__nav .menu-item-has-children > a::after {
    content: "＋";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #e67e22;
    transition: none !important;
  }
  .l-header__nav .menu-item-has-children > a {
    /* JSでクラスが付与された瞬間 */
  }
  .l-header__nav .menu-item-has-children > a.is-open::after {
    content: "－" !important;
  }
  .l-header__nav .menu-item-has-children > a.is-open {
    /* すぐ隣にあるサブメニュー（2階層目または3階層目）をガチッと表示 */
  }
  .l-header__nav .menu-item-has-children > a.is-open + .sub-menu {
    display: flex !important;
    /* リセットをかけて縦に展開 */
  }
  .l-header__nav {
    /* サブメニュー（2階層・3階層共通の縦並びリセット） */
  }
  .l-header__nav .sub-menu {
    display: none;
    /* 初期は畳む */
    flex-direction: column;
    width: 100% !important;
    height: auto !important;
    /* PC用の横揺れ・遅延アニメーション・影を完全にリセット */
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    transition: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .l-header__nav .sub-menu li {
    width: 100% !important;
    border-bottom: 1px solid #eee;
  }
  .l-header__nav .sub-menu li a {
    font-size: 14px;
    font-weight: normal;
    color: #555 !important;
    border: none !important;
  }
  .l-header__nav {
    /* --- 階層の深さごとにインデント（ズレ）と背景色を差別化 --- */
  }
  .l-header__nav > ul > .menu-item-has-children > .sub-menu {
    background: #f9f9f9;
    /* 淡いグレー */
  }
  .l-header__nav > ul > .menu-item-has-children > .sub-menu > li > a {
    padding: 12px 20px 12px 35px !important;
    /* 少し右へ下げる */
  }
  .l-header__nav .sub-menu .sub-menu {
    background: #f0f0f0;
    /* 2階層目より濃いめのグレー */
  }
  .l-header__nav .sub-menu .sub-menu li {
    border-bottom: 1px solid #e0e0e0;
  }
  .l-header__nav .sub-menu .sub-menu li:last-child {
    border-bottom: none;
  }
  .l-header__nav .sub-menu .sub-menu li a {
    padding: 12px 20px 12px 55px !important;
    /* さらに右へ下げて孫であることを明示 */
    color: #666 !important;
    font-size: 13px;
  }
}
/* 管理バー調整 */
#wpadminbar {
  position: fixed !important;
}

/*==========================================================================
   フッター（l-footer）
   ========================================================================== */
.l-footer {
  color: #fff;
}
.l-footer .l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .l-footer .l-footer__inner {
    padding: 0;
  }
}
.l-footer {
  /* --- 上段：メニューエリア（背景：黒に近い紺） --- */
}
.l-footer__top {
  background-color: #1a1d24;
  padding: 20px;
}
.l-footer__top .l-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.l-footer__top .l-footer__menu > .menu-item {
  position: relative;
}
.l-footer__top .l-footer__menu > .menu-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}
.l-footer__top .l-footer__menu > .menu-item > a .menu-description {
  font-size: 10px;
  color: #e67e22;
  margin-top: 4px;
  font-weight: normal;
}
.l-footer__top .l-footer__menu > .menu-item {
  /* --- 1階層目ホバー時に2階層目（子）を上に展開 --- */
}
.l-footer__top .l-footer__menu > .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}
.l-footer {
  /* --- サブメニュー共通設定（PC用：2階層目・3階層目共通） --- */
}
.l-footer .sub-menu {
  position: absolute;
  background: #fff;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  list-style: none;
  white-space: nowrap;
  z-index: 10;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.l-footer .sub-menu li {
  position: relative;
}
.l-footer .sub-menu li a {
  display: block;
  padding: 8px 24px;
  color: #333 !important;
  font-size: 13px;
  text-decoration: none;
  font-weight: normal;
  text-align: left;
  /* 【修正】ホバー時の白（薄いグレー）背景の処理を完全撤去しました */
}
.l-footer .sub-menu li a:hover {
  color: #e67e22 !important;
  background: none !important;
  /* 背景色をつけない */
}
.l-footer .sub-menu li {
  /* --- 3階層目（孫メニュー）の初期配置（2階層目の右横に隠す） --- */
}
.l-footer .sub-menu li > .sub-menu {
  bottom: -12px;
  left: 100%;
  transform: translateX(10px);
}
.l-footer .sub-menu li > .sub-menu::after {
  display: none;
}
.l-footer .sub-menu li {
  /* --- 2階層目の項目をホバーした時、3階層目を横に展開 --- */
}
.l-footer .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.l-footer .l-footer__menu > .menu-item > .sub-menu {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
}
.l-footer .l-footer__menu > .menu-item > .sub-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
}
.l-footer {
  /* --- 下段：会社情報エリア（背景：少し明るい紺） --- */
}
.l-footer__bottom {
  background-color: #2c313f;
  padding: 30px 20px 20px;
  text-align: center;
}
.l-footer__bottom .l-footer__line {
  border: none;
  border-top: 1px solid #ddd;
  max-width: 900px;
  margin: 0 auto 30px;
}
.l-footer__bottom .l-footer__company {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.l-footer__bottom .l-footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.l-footer__bottom .l-footer__copyright small {
  font-size: inherit;
}

/* ==========================================================================
   【修正】スマホ・タブレット対応（tablet-xl: 1024px 未満）
   ========================================================================== */
@media (max-width: 1024px) {
  .l-footer__top {
    padding: 30px 20px;
  }
  .l-footer__top .l-footer__menu {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .l-footer__top .l-footer__menu .menu-item {
    width: 100% !important;
    position: static !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .l-footer__top .l-footer__menu .menu-item a {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 15px 20px !important;
    font-size: 14px;
    color: #fff !important;
    width: 100% !important;
    position: relative !important;
    transition: none !important;
    background: none !important;
    /* スマホタップ時の背景白飛びを完全防止 */
  }
  .l-footer__top .l-footer__menu .menu-item a:hover {
    background: none !important;
    /* ホバー時も絶対白くしない */
  }
  .l-footer__top .l-footer__menu .menu-item a .menu-description {
    margin-top: 2px;
    text-align: left !important;
  }
  .l-footer {
    /* 子、あるいは孫メニューを持つ全ての要素に共通の「＋/－」設定 */
  }
  .l-footer .menu-item-has-children > a {
    padding-right: 50px !important;
  }
  .l-footer .menu-item-has-children > a::after {
    content: "＋" !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #e67e22;
  }
  .l-footer .menu-item-has-children > a.is-open::after {
    content: "－" !important;
  }
  .l-footer .menu-item-has-children > a.is-open + .sub-menu {
    display: flex !important;
  }
  .l-footer {
    /* --- スマホ時のサブメニュー共通リセット（アコーディオン化） --- */
  }
  .l-footer .sub-menu {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    white-space: normal !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .l-footer .sub-menu::after {
    display: none !important;
  }
  .l-footer .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .l-footer .sub-menu li:last-child {
    border-bottom: none;
  }
  .l-footer .sub-menu li a {
    font-size: 13px;
    font-weight: normal !important;
  }
  .l-footer .sub-menu li a:hover {
    color: #e67e22 !important;
    background: none !important;
  }
  .l-footer {
    /* --- 階層の深さごとにインデント（ズレ）と背景色を差別化 --- */
  }
  .l-footer .l-footer__menu > .menu-item-has-children > .sub-menu {
    background: rgba(0, 0, 0, 0.15) !important;
  }
  .l-footer .l-footer__menu > .menu-item-has-children > .sub-menu > li > a {
    padding: 12px 20px 12px 35px !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  .l-footer .sub-menu .sub-menu {
    background: rgba(0, 0, 0, 0.3) !important;
  }
  .l-footer .sub-menu .sub-menu li a {
    padding: 12px 20px 12px 55px !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .l-footer__bottom .l-footer__line {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.news-list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-list-container .news-list {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 25px;
  list-style: none;
  margin: 0;
  /* スクロールバーのカスタマイズ (画像準拠) */
}
.news-list-container .news-list::-webkit-scrollbar {
  width: 8px;
}
.news-list-container .news-list::-webkit-scrollbar-track {
  background: #fff;
  border-left: 1px solid #eee;
}
.news-list-container .news-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.news-item {
  border-bottom: 1px solid #ccc;
}
.news-item:first-child {
  border-top: 1px solid #ccc;
}
.news-item__link {
  display: flex;
  align-items: center;
  padding: 25px 0;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
}
.news-item__link:hover {
  background-color: #f9f9f9;
}
.news-item__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
  margin-right: 40px;
  text-align: center;
}
.news-item__date {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 5px;
}
.news-item__category {
  background: #e67e22;
  color: #fff;
  font-size: 12px;
  padding: 3px 0;
  width: 100px;
  text-align: center;
  border-radius: 2px;
  font-weight: bold;
}
.news-item__title {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  line-height: 1.5;
}
.news-item {
  /* レスポンシブ対応 */
}
@media (max-width: 768px) {
  .news-item__link {
    flex-direction: row;
    align-items: flex-start;
  }
  .news-item__meta {
    margin-right: 20px;
    width: 90px;
  }
  .news-item__title {
    font-size: 14px;
  }
}

/*====================

====================*/
.page-id-2 {
  /*====================
  メインスライダー (FV)
  ====================*/
}
.page-id-2 .main-slider {
  width: 100%;
  height: auto;
  /* 高さ固定をやめ、画像のアスペクト比に追従させる */
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .page-id-2 .main-slider {
    margin-top: 30px;
  }
}
.page-id-2 .main-slider .swiper-slide {
  width: 100%;
  height: auto;
}
.page-id-2 .main-slider .swiper-slide picture {
  display: block;
  width: 100%;
  height: auto;
}
.page-id-2 .main-slider .swiper-slide img {
  width: 100%;
  height: auto;
  /* 縦横比を崩さず、画像全体を表示する。
     height: auto と width: 100% を組み合わせることで、
     実質的に最軽量な「contain」と同じ挙動になります。
  */
  object-fit: contain;
}
.page-id-2 .main-slider .swiper-pagination {
  bottom: 20px !important;
}
.page-id-2 .main-slider .swiper-pagination-bullet-active {
  background: #fff !important;
}
.page-id-2 {
  /*====================
  共通スライダーパーツ (売買・賃貸)
  ====================*/
}
.page-id-2 .sale-slider-container,
.page-id-2 .rent-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 50px;
}
.page-id-2 .sale-slider-container .swiper-button-prev,
.page-id-2 .sale-slider-container .swiper-button-next,
.page-id-2 .rent-slider-container .swiper-button-prev,
.page-id-2 .rent-slider-container .swiper-button-next {
  color: #c0392b !important;
}
.page-id-2 .sale-slider-container .swiper-button-prev::after,
.page-id-2 .sale-slider-container .swiper-button-next::after,
.page-id-2 .rent-slider-container .swiper-button-prev::after,
.page-id-2 .rent-slider-container .swiper-button-next::after {
  font-size: 24px !important;
}
.page-id-2 {
  /*====================
  売買物件カード
  ====================*/
}
.page-id-2 .sale-card {
  border: 1px solid #f39800;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.page-id-2 .sale-card__img {
  padding: 10px;
}
.page-id-2 .sale-card__img img,
.page-id-2 .sale-card__img .no-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #ccc;
  display: block;
}
.page-id-2 .sale-card__content {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.page-id-2 .sale-card__type {
  font-size: 14px;
  margin: 0 0 5px;
  color: #333;
}
.page-id-2 .sale-card__title {
  font-size: 14px;
  margin: 0 0 10px;
  color: #333;
  line-height: 1.4;
  font-weight: bold;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-id-2 .sale-card__price {
  font-weight: bold;
  font-size: 16px;
  border-top: 1px solid #eee;
  margin-top: auto;
  padding-top: 10px;
  margin-bottom: 10px;
}
.page-id-2 .sale-card__link {
  background: #f39800;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
  display: block;
}
.page-id-2 .sale-card__link:hover {
  opacity: 0.8;
}
.page-id-2 {
  /*====================
  賃貸物件カード
  ====================*/
}
.page-id-2 .rent-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  background: #fff;
  height: 100%;
}
.page-id-2 .rent-card__img {
  position: relative;
  width: 100%;
}
.page-id-2 .rent-card__img img,
.page-id-2 .rent-card__img .no-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.page-id-2 .rent-card__img .badge-new {
  position: absolute;
  top: 0;
  left: 0;
  background: #e67e22;
  color: #fff;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
}
.page-id-2 .rent-card__body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.page-id-2 .rent-card__type {
  align-self: flex-start;
  border: 1px solid #3498db;
  color: #3498db;
  font-size: 11px;
  padding: 1px 8px;
  margin-bottom: 10px;
}
.page-id-2 .rent-card__title {
  font-size: 15px;
  margin: 0 0 12px;
  font-weight: bold;
  line-height: 1.4;
  min-height: 2.8em;
}
.page-id-2 .rent-card__details {
  margin: 0 0 10px;
  font-size: 13px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.page-id-2 .rent-card__details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.page-id-2 .rent-card__details .detail-item i {
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
  color: #888;
}
.page-id-2 .rent-card__details .detail-item.station {
  min-height: 2.8em;
}
.page-id-2 .rent-card__details .detail-item.station span {
  line-height: 1.4;
}
.page-id-2 .rent-card__details .detail-item.price span {
  color: #c0392b;
  font-weight: bold;
  font-size: 15px;
}
.page-id-2 .rent-card__features {
  margin-top: auto;
  background: #f9f9f9;
  font-size: 11px;
  padding: 8px;
  color: #666;
  line-height: 1.6;
  height: 55px;
  overflow-y: auto;
  flex-shrink: 0;
}
.page-id-2 {
  /*====================
  バナー
  ====================*/
}
.page-id-2 .banner-wrap {
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.page-id-2 .banner-wrap figure img {
  max-width: 312px;
}
@media (max-width: 1024px) {
  .page-id-2 .banner-wrap figure img {
    max-width: 250px;
  }
}

/*====================

====================*/
.property-archive-container {
  max-width: 1200px;
}
.property-archive-container .property-detail-block {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.property-archive-container .property-detail-block .property-header {
  display: flex;
  background: #f0f0f0;
  margin-bottom: 15px;
  border-left: 5px solid #ed6d00;
}
.property-archive-container .property-detail-block .property-header .property-label {
  padding: 8px 15px;
  font-weight: bold;
  background: #e2e2e2;
  min-width: 120px;
  text-align: center;
}
.property-archive-container .property-detail-block .property-header .property-main-title {
  padding: 8px 20px;
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
}
.property-archive-container .property-detail-block .property-main-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .property-archive-container .property-detail-block .property-main-content {
    flex-direction: column;
  }
}
.property-archive-container .property-detail-block .property-main-content .property-main-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1rem 1rem;
}
.property-archive-container .property-detail-block .property-main-content .property-main-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.property-archive-container .property-detail-block .property-main-content .property-info-table {
  flex: 1;
}
.property-archive-container .property-detail-block .property-main-content .property-info-table dl {
  display: grid;
  /* dtの幅を100pxから少し広げて、折り返しを防ぐ */
  grid-template-columns: 120px 1fr;
  border-top: 1px solid #ccc;
  margin: 0;
}
.property-archive-container .property-detail-block .property-main-content .property-info-table dl dt {
  background: #f9f9f9;
  padding: 12px;
  border-bottom: 1px solid #ccc;
  /* 文字を折り返さない設定 */
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.property-archive-container .property-detail-block .property-main-content .property-info-table dl dd {
  margin: 0;
  padding: 12px;
  border-bottom: 1px solid #ccc;
  background: #fff;
  line-height: 1.6;
}
.property-archive-container .property-detail-block .property-gallery {
  /* PCでは全体を左50%に寄せる */
  width: 50%;
}
@media (max-width: 768px) {
  .property-archive-container .property-detail-block .property-gallery {
    width: 100%;
    order: 3;
  }
}
.property-archive-container .property-detail-block .property-gallery .gallery-caption {
  background: #ed6d00;
  color: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.property-archive-container .property-detail-block .property-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.property-archive-container .property-detail-block .property-gallery .gallery-grid .gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.property-archive-container .property-detail-block .property-gallery .gallery-grid .gallery-item img:hover {
  opacity: 0.8;
}

.page-id-252 {
  /*====================

  ====================*/
}
.page-id-252 .table-wrap {
  justify-content: space-between;
  margin-top: 2rem;
}
.page-id-252 .table-wrap > .wp-block-group {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}
.page-id-252 .table-wrap > .wp-block-group .title {
  text-align: center;
  background-color: #ebfcc5;
  border: 5px solid #27872c;
  font-size: 50px;
  font-weight: 700;
  margin: 0 20px 30px;
}
.page-id-252 .table-wrap > .wp-block-group .table-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-id-280 .media-text-wrap {
  justify-content: center;
  gap: 30px;
}
.page-id-280 .media-text-wrap .media {
  flex: 0 0 calc(62% - 30px);
}
.page-id-280 .media-text-wrap .text {
  flex: 0 0 calc(38% - 30px);
}
.page-id-280 .media-list-wrap {
  justify-content: space-between;
  gap: 30px;
}
.page-id-280 .media-list-wrap .media {
  flex: 0 0 calc(45% - 30px);
  text-align: center;
}
.page-id-280 .media-list-wrap .list {
  flex: 0 0 calc(55% - 30px);
  list-style: disc;
}

.page-id-289 .lead {
  font-size: 30px;
}
.page-id-289 .lead strong {
  font-size: 1.2em;
  color: #ed6d00;
  display: inline;
  background-image: linear-gradient(transparent 60%, #fffa6a 60%);
  background-repeat: no-repeat;
}
.page-id-289 .media-list-wrap {
  gap: 30px;
}
.page-id-289 .media-list-wrap .image {
  flex: 0 0 auto;
  z-index: 2;
  margin: 0;
}
.page-id-289 .media-list-wrap .list {
  position: relative;
  margin-top: 8rem;
}
.page-id-289 .media-list-wrap .list::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -30%;
  width: 100vw;
  height: 120%;
  background-color: #fbdcc3;
  z-index: -1;
  border-radius: 35px;
}
.page-id-289 .media-list-wrap .list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.page-id-289 .media-list-wrap .list li:before {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  top: 6px;
  left: 5px;
}
.page-id-289 .icon-wrap {
  justify-content: space-between;
}
.page-id-289 .icon-wrap .item {
  justify-content: center;
  background-color: #fbdcc3;
  padding: 10px 10px;
  border-radius: 25px;
  width: 360px;
  height: 250px;
}
.page-id-289 .icon-wrap .text {
  color: #ed6d00;
  font-weight: 700;
  font-size: 25px;
}
.page-id-289 .accent-yellow {
  margin: 2rem 0;
}
.page-id-289 .title-wrap .title-en {
  font-size: 55px;
  font-weight: 900;
  color: #ed6d00;
  margin-bottom: 10px;
  line-height: 1;
}
.page-id-289 .title-wrap .title-ja {
  font-weight: 700;
  font-size: 25px;
}
.page-id-289 .flow-concl {
  border: solid 2px #ed6d00;
  border-radius: 25px;
  padding: 30px 20px;
  background-color: #fff;
}
.page-id-289 .flow-concl strong {
  font-size: 1.2em;
  color: #ed6d00;
}
.page-id-289 .features {
  position: relative;
}
.page-id-289 .features::after {
  content: "";
  position: absolute;
  top: 80px;
  left: -30%;
  width: 100vw;
  height: 100%;
  background-color: #ed6d00;
  z-index: -1;
}
.page-id-289 .features .title-wrap {
  margin-bottom: 4rem;
}
.page-id-289 .features .title-wrap .title-en {
  color: #fff;
}
.page-id-289 .features .title-wrap .title-ja {
  color: #fff;
}
.page-id-289 .features-wrap .features__item {
  margin-bottom: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.page-id-289 .features-wrap .features__item:nth-child(even) {
  flex-direction: row-reverse;
}
.page-id-289 .features-wrap .features__item .text-wrap {
  flex: 0 0 calc(50% - 10px);
}
.page-id-289 .features-wrap .features__item .text-wrap .number {
  font-size: 55px;
  font-weight: 700;
  color: #F7C6AD;
  line-height: 1;
  margin-bottom: 10px;
}
.page-id-289 .features-wrap .features__item .text-wrap .title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.page-id-289 .features-wrap .features__item .text-wrap .desc {
  color: #fff;
}
.page-id-289 .features-wrap .features__item .image {
  flex: 0 0 calc(50% - 10px);
}

.page-id-311 .flex {
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}
.page-id-311 .flex .wp-block-group {
  max-width: 432px;
}
.page-id-311 .flex .wp-block-group figure {
  margin-bottom: 1rem;
}

.page-id-313 .flex {
  gap: 4rem;
}
.page-id-313 .flex .image {
  flex: 0 0 auto;
}

.page-id-315 .form-item {
  margin-bottom: 40px;
}
.page-id-315 .form-item label {
  display: block;
  font-weight: bold;
}
.page-id-315 .form-item label .required {
  color: #de5d50;
  margin-left: 4px;
}
.page-id-315 .form-item input[type=text],
.page-id-315 .form-item input[type=email],
.page-id-315 .form-item input[type=tel],
.page-id-315 .form-item textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
}
.page-id-315 .form-item textarea {
  height: 200px;
}
.page-id-315 .form-submit input[type=submit] {
  background-color: #ff5353;
  color: #fff;
  border: none;
  padding: 8px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-size: 20px;
}
.page-id-315 .form-submit input[type=submit]:hover {
  opacity: 0.8;
}

.page-id-317 .title {
  font-size: 25px;
  color: #fff;
  background-color: #ed6d00;
  padding: 20px;
}
.page-id-317 .step__item {
  margin-bottom: 4rem;
}
@media (max-width: 480px) {
  .page-id-317 .step__item {
    flex-direction: column;
  }
}
.page-id-317 .step__item .number {
  font-weight: 700;
  font-size: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ed6d00;
  margin-bottom: 16px;
}
.page-id-317 .step__item .wrap {
  gap: 40px;
}
.page-id-317 .step__item .wrap .image {
  flex: 0 0 auto;
}
.page-id-317 .has-underline {
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid #ed6d00;
}
.page-id-317 .wp-block-flexible-table-block-table .has-fixed-layout {
  margin-inline: auto;
}
.page-id-317 .wp-block-flexible-table-block-table tr td {
  padding-right: 2rem !important;
}

.page-id-21 .form-item {
  margin-bottom: 40px;
}
.page-id-21 .form-item label,
.page-id-21 .form-item .form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
.page-id-21 .form-item label .required,
.page-id-21 .form-item .form-label .required {
  color: #de5d50;
  margin-left: 4px;
}
.page-id-21 .form-item label.radio + p,
.page-id-21 .form-item .form-label.radio + p {
  margin-bottom: 0;
}
.page-id-21 .form-item input[type=text],
.page-id-21 .form-item input[type=email],
.page-id-21 .form-item input[type=tel],
.page-id-21 .form-item textarea {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
}
.page-id-21 .form-item textarea {
  height: 200px;
}
.page-id-21 .form-item .wpcf7-radio {
  display: block;
  margin-top: 8px;
}
.page-id-21 .form-item .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
}
.page-id-21 .form-item .wpcf7-radio .wpcf7-list-item input {
  margin-right: 5px;
}
.page-id-21 .form-note {
  color: #333;
  line-height: 1.5;
  margin-top: 6px;
}
.page-id-21 .form-agreement {
  max-width: 650px;
  margin-inline: auto;
}
.page-id-21 .form-agreement .wpcf7-acceptance {
  font-weight: bold;
}
.page-id-21 .form-agreement .wpcf7-acceptance input {
  margin-right: 6px;
}
.page-id-21 .form-agreement .text-link {
  color: #de5d50;
  text-decoration: underline;
}
.page-id-21 .form-agreement .text-link:hover {
  text-decoration: none;
}
.page-id-21 .form-submit {
  text-align: center;
}
.page-id-21 .form-submit input[type=submit] {
  background-color: #ff5353;
  color: #fff;
  border: none;
  padding: 8px 32px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-size: 20px;
}
.page-id-21 .form-submit input[type=submit]:hover {
  opacity: 0.8;
}
.page-id-21 .form-submit input[type=submit]:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}/*# sourceMappingURL=style_cus.css.map */