@charset "UTF-8";
:root {
  --table-color: 84, 194, 240;
  --max-width: 1144px;
}

/* モダンリセットCSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 auto;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

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

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

table,
tr,
th,
td {
  border-collapse: collapse;
  border-spacing: 0;
  background: none;
  margin: 0;
  padding: 0;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

code, pre {
  font-family: monospace;
}

/* base.css - サイト全体の基本スタイル（モバイルファースト） */
/* =============== 基本セット（全ブラウザ向け / 安全） =============== */
/* 親に付与：この中の幅で判定（親幅基準にしたいラッパー） */
.cq {
  container-type: inline-size;
}

:root {
  /* ベースのフォントサイズ/行間/スクロール動作 */
  font-size: 62.5%;
  /* 1rem = 10px 相当 */
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  font-size: 1.4rem; /* = 14px */
  line-height: 2.2rem; /* 行間は1.6倍くらいでOK */
  color: var(--font-color);
  background-color: var(--color-background);
  width: 100%;
}

main a {
  color: var(--base-color);
  text-decoration: none;
}

a:hover, a:focus {
  opacity: 0.6;
}

strong {
  font-weight: 900;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
}

address {
  font-style: normal;
}

.inner * {
  max-width: 100%;
  margin: 0 auto;
}

.inner p,
.inner ul {
  margin-bottom: 1rem;
}

.max-width {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.attention {
  color: red;
}

.wp-block-columns.bg-w100 {
  max-width: 100% !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

/*---テキスト並び ここから---*/

.align-l {
  text-align: left !important;
}

/*---テキスト並び ここまで---*/

/*googleフォント　ここから*/

/*googleフォント ここまで*/
@supports (container-type: inline-size) {
  /* タブレット以上（親幅 >= 768px） */
  @container (width >= 768px) {}
  /* PC以上（親幅 >= 1024px） */
  @container (width >= 1024px) {}
}
/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 768px) {
  #site-navigation {
    margin-left: auto; /* これで右端へピタッ */
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    text-align: right;
    /*動き*/
    transition: all 0.6s;
    line-height: 3rem;
    background: var(--menu-color);
    margin: 0;
  }
  #site-navigation .menu-logo {
    width: 60%;
    margin: 2rem auto;
  }
  #site-navigation #primary-menu {
    width: 100%;
    padding: 2rem;
  }
  #site-navigation #primary-menu li {
    display: block;
    margin: 1rem 0;
    line-height: 1.6rem;
  }
  /*アクティブクラスがついたら位置を0に*/
  #site-navigation.panelactive {
    right: 0;
    padding: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #site-navigation.panelactive #primary-menu {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  /*リストのレイアウト設定*/
  #site-navigation #primary-menu li {
    font-size: 1.6rem;
    list-style: none;
    text-align: center;
    display: block;
    margin: 0 auto 1rem;
    padding-bottom: 1rem;
  }
  #site-navigation #primary-menu > li {
    border-bottom: 1px dotted #fff;
  }
  /*ナビゲーション*/
  #site-navigation #primary-menu li ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    top: 1rem;
    margin-top: 0;
    padding: 10rem auto;
  }
  #site-navigation #primary-menu li ul li:first-child {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 8px 2px;
    background-position: left top;
    background-repeat: repeat-x;
  }
  #site-navigation #primary-menu li ul li:last-child {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 8px 2px;
    padding-bottom: 1rem;
    background-position: left 3rem;
    background-repeat: repeat-x;
  }
  /* ホバーアコーディオン　ここから　20250812
  ----------------------------------------------------------- */
  /* Submenu */
  /* ホバーアコーディオン　ここまで
  ----------------------------------------------------------- */
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #0098d8;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(2) {
  top: 15px;
}

.openbtn1 span:nth-of-type(3) {
  top: 23px;
}

.openbtn1 span:nth-of-type(4) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(2) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(3) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(4) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* === PC only (1024px〜) === */
@media screen and (min-width: 768px) and (max-width: 1023px), screen and (min-width: 1024px) {
  .openbtn1 {
    display: none;
  }
}
/* snsナビ　ここから
----------------------------------------------------------- */
.sns_nav {
  height: 24px;
  text-align: right;
  margin-bottom: 5px;
}

.sns_nav li {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  height: 24px;
  width: 24px;
  margin: 0 0 0 5px;
}

.sns_nav li img {
  max-height: 24px;
  width: auto;
}

/* snsナビ　ここまで
----------------------------------------------------------- */
/*========= ナビゲーションのためのCSS ===============*/
/* news.css - リストのスタイル（モバイルファースト） */
/* 基本設定
----------------------------------------------------------- */
/*ニュース ここから*/
#news-inc {
  padding: 6rem 2rem 8rem;
  max-width: var(--max-width) !important;
  margin: 0 auto;
}

#news-inc section.inner dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 4rem auto;
  text-align: left;
}

#news-inc section.inner dl dt {
  width: 20rem;
}

#news-inc section.inner dl dd {
  width: calc(100% - 20rem);
}

#news-inc section.inner dl dt,
#news-inc section.inner dl dd {
  margin-top: 0;
  padding: 2rem 0;
  line-height: 1.4em;
}

#news-inc section.inner dl dt span {
  margin: 0 10px;
  padding: 0 2px;
  display: inline-block;
  text-align: center;
  min-width: 6rem;
  color: #fff;
}

#news-inc section.inner dl dt,
#news-inc section.inner dl dd {
  border-bottom: 1px dotted var(--base-color);
}

/*---ニュース ここまで---*/
/*---ニュースカテゴリートップ ここから---*/
.news-category .h_title {
  text-align: center;
}

.news-category {
  max-width: var(--max-width);
  margin: 0 auto;
}

.news-category ul {
  background-color: #fff;
  padding-bottom: 2rem;
  border-radius: 4px;
}

.news-category section.inner ul li {
  border-bottom: solid 1px #eee;
  padding-bottom: 2rem;
}

.news-category section.inner ul li span {
  display: inline-block;
  margin-right: 1rem !important;
  margin: 0 auto;
}

/*---ニュースカテゴリートップ ここまで---*/
/*---ブログ ここから---*/
#blog_inc,
#news_thum {
  margin-bottom: 40px;
}

#blog_inc section.inner,
#news_thum section.inner {
  margin: 0 auto;
}

#news_thum section.inner .loop {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  margin: 0 auto;
}

#blog_inc section.inner a.linked_in,
#news_thum section.inner a.linked_in {
  margin: 0 12px 40px 0;
  text-align: left;
  width: calc(25% - 9px);
  color: #333;
}

#news_thum section.inner a.linked_in:nth-child(n+4) {
  margin-right: 0;
}

#blog_inc section.inner dl dt img,
#news_thum section.inner dl dt img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  /* この一行を追加するだけ！ */
}

#news_thum section.inner dl dt + dd {
  text-align: center;
}

/*---ブログ ここまで---*/
/*---イベント ここから---*/
#event_inc,
#list_thum_area {
  margin-bottom: 40px;
}

#event_inc section.inner,
#list_thum_area section.inner {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

#event_inc section.inner a.linked_in {
  margin: 0 5px 40px 5px;
  text-align: left;
  width: 100%;
}

#event_inc section.inner dl {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem;
  border-radius: 5px;
  background-color: #ccc;
}

#event_inc section.inner dl dt {
  width: 30%;
  height: 250px;
  object-fit: cover;
  /* この一行を追加するだけ！ */
  line-height: 1rem;
}

#event_inc section.inner dl dd {
  width: 70%;
  padding-left: 4rem;
  color: #333 !important;
}

#event_inc section.inner dl dt img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  /* 縦横比を保ちながらトリミング */
  object-position: center;
  /* 中央を基準にトリミング */
}

#event_inc section.inner dl dd h3,
#event_inc section.inner dl dd div,
#event_inc section.inner dl dd p,
#event_inc section.inner dl dd {
  color: #000 !important;
  margin: 0;
}

#event_inc section.inner dl dd div {
  margin: 0.5rem 0;
}

#event_inc section.inner dl dd p {
  padding: 0 0 1rem 0;
}

/* タブレット以上 */
/* PC以上 */
@media (min-width: 1024px) {
  .news-category ul {
    padding: 2rem 4rem;
  }
}
/* title.css - タイトルスタイル（モバイルファースト） */
.h_title,
main h2.wp-block-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.h_title em,
.wp-block-heading em {
  font-size: 40%;
  line-height: 1rem;
  margin: 0 auto 0.5rem auto;
  display: inline-block;
  font-style: normal;
}

.h_title p span {
  font-size: 1.2rem;
  line-height: 1rem;
  margin: 0 auto 0.5rem 1rem;
  padding: 0 0.5rem 0.2rem;
}

main h2,
main h3,
main h4,
main h5,
main h6,
.h_title p {
  color: var(--base-color);
  font-weight: 400;
}

.h_title div {
  color: var(--base-color);
}

.h_title p span {
  color: #fff;
}

/* ================================
   Headings (h2–h6)
   - Fallback: 固定サイズ（全環境）
   - Enhance : Container Queriesで親幅に応じて可変
   - ラッパーに .cq を付与して使う
   ================================ */
/* --- Fallback（全環境 / 固定）--- */
main h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 1rem 0 2rem;
}

main h3 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
}

main h4 {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0.75rem 0 1.25rem;
}

main h5 {
  font-size: 1.8rem;
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
}

main h6 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0.5rem 0 0.75rem;
}

/* （任意）非対応でもPC幅で少しだけ押し上げたい時の超軽量フォールバック */
@media (min-width: 1024px) {
  main h2 {
    font-size: 3rem;
  }
  main h3 {
    font-size: 2.6rem;
  }
}
/* --- Enhance（対応ブラウザのみ / 親幅で可変）--- */
@supports (container-type: inline-size) {
  /* タイトルを親幅でスムーズに拡縮（min=モバイル / max=PC想定） */
  main .cq h2 {
    font-size: clamp(2.4rem, 4cqw, 5rem);
  }
  main .cq h3 {
    font-size: clamp(2.2rem, 3.5cqw, 3rem);
  }
  main .cq h4 {
    font-size: clamp(2rem, 3cqw, 2.55rem);
  }
  main .cq h5 {
    font-size: clamp(1.8rem, 2.5cqw, 2.2rem);
  }
  main .cq h6 {
    font-size: clamp(1.6rem, 2.2cqw, 1.8rem);
  }
  /* 親幅が広いときだけマージンをPC寄りに（読みやすさとリズムを確保） */
  @container (width >= 1024px) { /* 元の5remは間延びしやすいので少し控えめに */ }
}
/* ================================
   使い方例
   <section class="cq">
  <h2>見出しタイトルH2</h2>
  <h3>見出しタイトルH3</h3>
  ...
</section>

   ================================ */
/* table.css - テーブルスタイル（モバイルファースト） */
table {
  max-width: var(--max-width);
  background-color: rgba(var(--table-color), 0.1);
  border: solid 1px rgba(var(--table-color), 0.3);
}

th, td {
  border: solid 1px rgba(var(--table-color), 0.3);
  padding: 1rem;
}

th,
td:first-child {
  background-color: rgba(var(--table-color), 0.11);
  text-align: center;
  padding: 1rem;
  white-space: nowrap;
}

/* タブレット以上 */
/* PC以上 */
@media (min-width: 1024px) {
  th, td {
    padding: 2rem;
  }
  th,
  td:first-child {
    padding: 2rem 3rem;
  }
}
/* list.css - リストのスタイル（モバイルファースト） */
/* 基本設定
----------------------------------------------------------- */
ul.wp-block-list {
  margin: 1rem 0 2rem 0;
}

ul.wp-block-list li {
  text-indent: calc(-1.6rem - 3px);
  padding-left: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
}

ul.wp-block-list li::before {
  content: "\f14a"; /* Unicodeのアイコン */
  margin-right: 5px; /* テキストとの間にスペースを追加 */
  color: var(--primary-color);
}

/*吹き出しでカウント　ここから*/
ol.count {
  counter-reset: cp_clist; /*数字をリセット*/
  list-style-type: none;
  padding: 0.5rem;
  text-align: left;
}

ol.count li {
  position: relative;
  line-height: 1.6em;
  padding-left: 3.6rem !important;
  padding-bottom: 1rem !important;
}

ol.count li::before {
  position: absolute;
  display: inline-block;
  top: 1.2rem;
  left: 0;
  /* カウントさせる */
  counter-increment: cp_clist;
  content: counter(cp_clist);
  /*装飾*/
  padding: 0 0.2em 0 0.2em;
  background: var(--base-color);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  transform: translateY(-50%);
}

ol.count li::after {
  position: absolute;
  content: "";
  display: block;
  top: 1.2rem;
  left: 18px;
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--base-color);
  transform: translateY(-50%);
}

ol.count li ul {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

ol.count li ul li {
  padding-bottom: 0rem !important;
}

ol.count li ul li::before {
  /* カウントさせる */
  counter-increment: none;
  content: none;
  /*装飾*/
  background: var(--base-color);
  color: #fff;
}

/*吹き出しでカウント　ここまで*/

/* タブレット以上 */
/* PC以上 */
/* carousel.css - カルーセルのスタイル（モバイルファースト） */
/* ①シンプルなカルーセルの個別CSS */
.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  /* アイテム間の余白 */
  transition: transform 0.4s ease;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ドット */
.carousel-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5em;
}

.carousel-dots button {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: none;
  background-color: var(--color-primary);
  cursor: pointer;
}

.carousel-dots button.active {
  background: #fff;
}

/* 基本設定
----------------------------------------------------------- */
/* タブレット以上 */
/* PC以上 */
/* bg設定
----------------------------------------------------------- */
/*--背景　ここから--*/

.bg_fff {
  background-color: #fff;
  margin-bottom: 4rem !important;
  color: #333;
}

.bg_fff h1,
.bg_fff h2,
.bg_fff h3,
.bg_fff h4,
.bg_fff h5,
.bg_fff h6 {
  color: var(--font-color);
}

/*--背景　ここまで--*/
#main-visual li,
#page_visual_area li {
  position: relative;
  width: 100%;
  margin: 0;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
}

#main-visual li img,
#page_visual_area li img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#main-visual li::after,
#page_visual_area li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*--ドットここから--*/
.over_dot::after {
  background-image: radial-gradient(var(--effect-color) 30%, transparent 31%), radial-gradient(var(--effect-color) 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}

/*--ドットここまで--*/
.over_dot02::after {
  background-image: radial-gradient(var(--effect-color) 30%, transparent 31%), radial-gradient(var(--effect-color) 30%, transparent 31%);
  background-size: 3px 3px;
  background-position: 0 0, 0 0;
}

/*--走査線縦ここから--*/
.over_v_line::after {
  background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, var(--effect-color) 3px, var(--effect-color) 4px);
  background-size: 100% 4px, 4px 100%;
  background-position: 0 0, 0 0;
}

/*--走査線縦ここまで--*/
/*--走査線横ここから--*/
.over_h_line::after {
  background-image: repeating-linear-gradient(0deg, transparent, transparent 1px, var(--effect-color) 1px, var(--effect-color) 2px);
  background-size: 100% 4px, 4px 100%;
  background-position: 0 0, 0 0;
}

/*--走査線横ここまで--*/
/*--画像ここから--*/

/*--画像ここまで--*/
/*下線アニメーションここから*/

/* breadcrumb.scss - パンくずの基本スタイル（モバイルファースト） */
/* パンくずスタイル　ここから
----------------------------------------------------------- */
ul.breadcrumb {
  font-size: 1rem;
  width: 100%;
  max-width: var(--max-width);
  margin: 1rem auto;
  padding: 0 2rem;
  text-align: left;
}

ul.breadcrumb li {
  padding-right: 2rem;
  font-size: 1.4rem;
  display: inline-block;
}

ul.breadcrumb li:not(:last-child) {
  position: relative;
  padding-right: 4rem;
}

ul.breadcrumb li:not(:last-child)::after {
  content: ">";
  display: block;
  position: absolute;
  width: 9px;
  height: 15px;
  top: 0px;
  right: 15px;
}

ul.breadcrumb li a {
  text-decoration: none;
}

/* パンくずスタイル　ここまで
----------------------------------------------------------- */
/* タブレット以上 */
/* PC以上 */
@media (min-width: 1024px) {
  .news-category ul {
    padding: 2rem 4rem;
  }
}
/* btn.css - ボタンスタイル（モバイルファースト） */
.l-btn-base {
  display: flex;
  justify-content: center; /* 横方向の中央（不要なら削除） */
}

.l-btn-base a {
  display: flex;
  align-items: center; /* 縦方向の中央 */
  justify-content: center; /* 横方向の中央（不要なら削除） */
  border: solid 2px var(--base-color);
  color: var(--base-color);
  font-weight: bold;
  width: 320px !important;
  height: 50px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  margin: 2rem auto;
}

.l-btn-base a:hover {
  background-color: var(--base-color);
  color: #fff;
  text-decoration: none; /* 下線を消す */
  transition: 0.3s;
}

/* タブレット以上 */
/* PC以上 */
@media (min-width: 1024px) {
  .news-category ul {
    padding: 2rem 4rem;
  }
}
/* form.css - フォームスタイル（モバイルファースト） */

/* タブレット以上 */
/* PC以上 */
/* category.css - カテゴリースタイル（モバイルファースト） */
.category-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 0.4rem;
  margin-right: 0.6rem;
  padding: 0.5rem 1rem;
  color: #fff;
}

/* メディアクエリ - タブレット */
/* メディアクエリ - PC */
/* header.css - ヘッダーの基本スタイル（モバイルファースト） */
body {
  transition: padding-top 0.25s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem;
  /* デフォルトは表示 */
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 一旦隠す */
.site-header.is-hide {
  transform: translateY(-110%);
}

/* 追従表示状態（見た目用。不要なら消してOK） */
.site-header.is-sticky {
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.08); */
}

header .site-branding {
  height: 50px;
  max-width: 320px;
  margin: 0;
  padding: 0;
}

header nav a {
  color: #fff;
}

/* === mobile only (～768px) === */
@media (max-width: 768px) {
  #site-navigation .menu-logo {
    display: none;
  }
}
/* タブレット以上 */
@media (min-width: 768px) {
  header div.inner {
    display: flex;
    align-items: flex-end;
    /* ← これで子要素を bottom 揃え */
  }
  #site-navigation {
    color: var(--menu-font-color);
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    width: calc(100% - 240px);
    margin-right: 0;
  }
  #site-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* アイテム間の余白（お好みで） */
    justify-content: flex-end; /* ← liを右に寄せる */
    align-items: flex-end;
    /* 下（bottom）に揃える */
    /* 必要に応じて高さを固定 */
    /* height: 60px; */
    margin: 0 auto;
  }
  #site-navigation #primary-menu li a {
    color: var(--menu-font-color);
    font-weight: 600;
  }
  #site-navigation #primary-menu li a:hover {
    opacity: 0.8;
  }
  #site-navigation #primary-menu li {
    width: auto;
    display: inline-block;
    margin: 0 0 0 0;
    line-height: 1.6rem;
    padding: 1rem 0;
  }
  #site-navigation .menu-logo {
    display: none;
  }
  /* ホバーアコーディオン　ここから　20250812
  ----------------------------------------------------------- */
  #site-navigation #primary-menu li li a {
    width: auto;
    padding: 0 2rem;
    height: 0;
    transition: all 0.5s ease-out;
    display: flex;
    align-items: center; /* ←縦方向の中央揃え */
    background-color: var(--header-color);
  }
  #site-navigation #primary-menu > li:hover li a {
    height: 3rem;
  }
  #site-navigation #primary-menu li a {
    overflow: hidden;
  }
  /* Submenu */
  /* ホバーアコーディオン　ここまで
  ----------------------------------------------------------- */
}
/* PC以上 */
/* kv.css - キービジュアルの基本スタイル（モバイルファースト） */
/* 基本設定
----------------------------------------------------------- */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

/*swiper ここまで 220913 */
/*メインヴィジュアルここから*/
#main-visual, #page_visual_area {
  margin-bottom: 2rem;
}

#main-visual img, #page_visual_area img {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}

#main-visual h2,
#page_visual_area h2 {
  width: fit-content;
  display: inline-block;
  margin-bottom: 0;
  position: relative;
}

#main-visual h3,
#page_visual_area h3 {
  display: block;
}

li div#posi_v {
  position: absolute;
  margin: 0 auto;
  top: 50%;
  transform: translate(0, -50%);
  font-weight: 600;
  color: #fff;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.6));
  z-index: 2;
  width: 100%;
  display: block;
}

li div#posi_w {
  max-width: 1000px;
}

li div#posi_v.pc_posi-top {
  top: 2rem;
  transform: translate(0, 0);
}

li div#posi_v.pc_posi-bottom {
  top: calc(100% - 10rem);
}

li div#posi_w.pc_posi-left {
  text-align: left;
}

li div#posi_w.pc_posi-center {
  text-align: center;
}

li div#posi_w.pc_posi-right {
  text-align: right;
}

/*メインヴィジュアルここまで*/
@media screen and (max-width: 520px) {
  li div#posi_v.pc_posi-top,
  li div#posi_v.pc_posi-middle,
  li div#posi_v.pc_posi-bottom {
    top: 0;
    transform: translate(0, 0);
  }
  li div#posi_w.pc_posi-left,
  li div#posi_w.pc_posi-center,
  li div#posi_w.pc_posi-right {
    text-align: left;
  }
  #main-visual h2,
  #page_visual_area h2 {
    display: block;
  }
  #main-visual h3,
  #page_visual_area h3 {
    display: block;
    line-height: 3rem !important;
  }
  li div#posi_v {
    width: fit-content;
    height: 100%;
  }
  li div#posi_v.sp_posi-left {
    left: 0;
  }
  li div#posi_v.sp_posi-right {
    right: 1rem;
  }
  li div#posi_w {
    width: fit-content;
    height: 100%;
    padding: 2rem;
  }
  li div#posi_v.sp_posi-top div#posi_w {
    text-align: left;
  }
  li div#posi_v.sp_posi-middle div#posi_w {
    text-align: center;
  }
  li div#posi_v.sp_posi-bottom div#posi_w {
    text-align: right;
  }
}
/* === mobile only (～768px) === */
/* タブレット以上 */
/* PC以上 */
/* footer.css - フッターの基本スタイル（モバイルファースト） */
footer {
  padding: 2rem 2rem 6rem;
  background-color: var(--footer-color);
  color: var(--footer-font-color);
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

footer .footer-brand {
  width: 100%;
}

footer .footer-brand img {
  width: 200px;
  margin: 0 auto;
}

footer .footer-nav {
  width: 100%;
}

footer .footer-nav ul li {
  margin: 0 1rem;
}

.copyright {
  text-align: center;
}

/* タブレット以上（親幅 >= 768px） */
@supports (container-type: inline-size) {
  /* タブレット以上（親幅 >= 768px） */
  @container (width >= 768px) {}
  /* PC以上（親幅 >= 1024px） */
  @container (width >= 1024px) {
    footer .footer-grid .footer-info {
      text-align: left !important;
    }
    footer .footer-brand {
      text-align: left;
    }
    footer .footer-brand a.footer-logo {
      display: inline-block;
    }
    footer .footer-nav ul {
      display: flex;
      justify-content: flex-end;
    }
    footer .footer-nav ul {
      display: flex;
      justify-content: flex-end;
    }
  }
}
/* utility.scss（モバイルファースト） */
/* Prefixルール：.u-（utility） */
.ds-0-3-3-01 {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.ds-in-0-5-5-02 {
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.2);
}

/* border-radius */

/* === Display === */

.u-show-sp {
  display: block !important;
}

/* メディアクエリ - タブレット */
/* メディアクエリ - PC */
@media screen and (min-width: 768px) and (max-width: 1023px), screen and (min-width: 1024px) {
  .u-show-sp {
    display: none !important;
  }
}
/* color.css - カラースタイル（モバイルファースト） */

/* メディアクエリ - タブレット */
/* メディアクエリ - PC */
/* breakpoints は既存の $breakpoints（sm/md/lg/...）を使う前提 */
/* ===== Grid: justify-self（横軸） ===== */

/* ===== Grid/Flex 共通: align-self（縦軸） ===== */
.u-as-start {
  align-self: start;
}

/* ===== Grid 一括: place-self ===== */ /* 横・縦ともcenter */
/* ===== Flex の右寄せ代替（row想定／LTR） ===== */

/* 論理プロパティ版（双方向対応したい場合はこちらを使う）
.u-mis-auto { margin-inline-start: auto; }
*/
/* ====== Responsive variants （例：md以上で右寄せ） ====== */
@media (min-width: 480px) {
  /* .u-sm-mis-auto { margin-inline-start: auto; } */
}
@media (min-width: 768px) {
  /* .u-md-mis-auto { margin-inline-start: auto; } */
}
@media (min-width: 1024px) {
  /* .u-lg-mis-auto { margin-inline-start: auto; } */
}
/* grid.css - グリッドスタイル（モバイルファースト + Container Queries） */
/* グリッドの土台とギャップ */

/* “固定列数”を直接指定したい時（モバイル基準で必要に応じて付与） */

/* 自動可変カラム（カード最小幅ベース／メディアクエリ不要） */

/* 文字サイズを親幅で可変（任意） */

/* ==============================================================
   強化（対応ブラウザのみ）：Container Queries で親幅に応じてユーティリティを上書き
   ============================================================== */
@supports (container-type: inline-size) {
  /* タブレット以上（親幅 >= 768px） */
  @container (width >= 768px) {
    /* “タブレット段階”の列数ユーティリティ */
    /* ギャップや整列の上書き例（必要に応じて） */
  }
  /* PC以上（親幅 >= 1024px） */
  @container (width >= 1024px) {
    /* “PC段階”の列数ユーティリティ */
  }
}
/* ==============================================================
   （任意）超軽量ソフトフォールバック
   - 非対応ブラウザでもPC幅でだけ3カラムにしたい場合
   - いらなければ削除OK
   ============================================================== */
/*
@media (min-width: 1024px) {
  .u-grid.u-soft-fallback-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
*/
/* ==============================================================
使い方例
<section class="cq">
  <h2 class="u-fluid-title">Section Title</h2>
  <div class="u-grid u-gap-md u-cols-1 u-md-cols-2 u-lg-cols-3">
    <article>…</article>
    <article>…</article>
    <article>…</article>
  </div>
</section>
*/
/* space.css - スペーススタイル */
/*padding*/

.u-pt-2 {
  padding-top: 2rem !important;
}

/*margin*/

.u-mt-1 {
  margin-top: 1rem !important;
}

.u-mt-2 {
  margin-top: 2rem !important;
}

.u-mb-1 {
  margin-bottom: 1rem !important;
}

/*サイズ*/

/* style.css - サイトスタイル（モバイルファースト） */
header {
  background-color: var(--header-color);
  z-index: 10;
}

header .site-branding img {
  height: 100%;
  width: auto;
  margin: 0;
}

main {
  padding-top: 70px;
}

body.home main {
  padding-top: 0;
}

footer .copyright {
  width: 100%;
  display: flex;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

footer .copyright .align-l {
  flex-grow: 1;
  text-align: left;
}

/*ホームページここから*/
/* 1) 2カラムそれぞれを“コンテナ”化（最も近い祖先にする） */

/* 2) h2を“カラム幅”で可変させる */

/* 3) 画像/テキストの基本保険 */

#news-inc .post-area {
  background-color: #fff;
  padding: 2rem 2rem 3rem;
  margin-bottom: 4rem;
  border-radius: 4px;
}

/*ホームページここまで*/
.kv-area {
  background: #f9f9f9;
}

header div.inner,
footer div.inner,
.wp-block-columns > * {
  max-width: var(--max-width);
  margin: 0 auto !important;
}

/*キービジュアル　ここから*/
.kv-area {
  height: 500px;
  display: flex;
  align-items: center;
  /* 縦方向の中央 */
  justify-content: center;
  /* 横方向の中央（不要なら削除） */
  z-index: 1;
}

.kv-area .inner {
  width: 100%;
  max-width: 500px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: auto !important;
  text-align: center;
}

.kv-area h2 {
  margin-bottom: 2rem;
}

.kv-area h2 .quote {
  font-family: "Noto Serif", serif;
  font-size: 7.2rem;
}

.kv-area h3 {
  font-size: clamp(1.2rem, 3.5cqw, 3rem) !important;
  letter-spacing: 0.1em;
  /* 文字間を0.1em空ける */
}

/*キービジュアル　ここまで*/
/* スマホでの余白と視認性だけ微調整 */
@media (max-width: 784px) {
  /* 2) h2を“カラム幅”で可変させる */
}
/*Codelegdeページ ここまで*/
@media (min-width: 1024px) {
  footer .copyright ul {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }
}
