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

/* モダンリセットCSS */
修正テスト04 *,
*::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,
article .wp-block-column {
  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%;
}

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

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;
}

.content-area > .wp-block-columns {
  max-width: var(--max-width);
  padding: 6rem 2rem 8rem;
}

.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-r {
  text-align: right !important;
}

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

.align-c, .has-text-align-center {
  text-align: center !important;
}

/*---テキスト並び ここまで---*/
.float-r, .alignright {
  float: right;
}

.float-l, .alignleft {
  float: left;
}

/*googleフォント　ここから*/
.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.noto-serif {
  font-family: "Noto Serif", serif;
}

.noto-sans-mono {
  font-family: "Noto Sans Mono", monospace;
}

.source-sans-3 {
  font-family: "Source Sans 3", sans-serif;
}

.special-gothic {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
}

.font-nomal {
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*googleフォント ここまで*/
@supports (container-type: inline-size) {
  /* タブレット以上（親幅 >= 768px） */
  @container (width >= 768px) {}
  /* PC以上（親幅 >= 1024px） */
  @container (width >= 1024px) {}
}
/* p-contact.scss - お問い合わせページスタイル（モバイルファースト） */
#contact-page .inner {
  max-width: var(--max-width);
  padding: 2rem;
}

table.stack2 {
  width: 100%;
  max-width: var(--max-width);
  background-color: rgba(238, 249, 253, 0.7);
}

table.stack2 th, td {
  padding: 2rem !important;
  border: solid 1px #fff;
  min-width: 10rem;
}

table.stack2 th,
table.stack2 td:first-child {
  text-align: center;
  white-space: nowrap;
  background-color: rgb(238, 249, 253);
}

/* PC/タブレット：普通の2カラム */
.stack2 {
  width: 100%;
  border-collapse: collapse;
}

.stack2 th, .stack2 td {
  vertical-align: middle;
}

/* スマホだけ縦1列に（最少CSS） */
@media (max-width: 640px) {
  .stack2, .stack2 tbody {
    display: block;
  }
  .stack2 tr {
    display: block;
    overflow: hidden; /* 角丸を効かせる */
  }
  .stack2 th, .stack2 td,
  .stack2 th, .stack2 th {
    display: block; /* 2セルを縦積み */
    border: 0; /* 行内の罫線は消す */
  }
  .stack2 td {
    min-height: 4rem;
  }
}
/* タブレット以上 */
/* PC以上 */
/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 520px) {
  #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 #g-nav-list {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /*リストのレイアウト設定*/
  #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 ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    top: 1rem;
    margin-top: 0;
    padding: 10rem auto;
  }
  #site-navigation #primary-menu ul.sub-menu li ul li {
    height: 3rem;
  }
  #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
  ----------------------------------------------------------- */
  #site-navigation #primary-menu ul.sub-menu li li a {
    height: auto;
    transition: none;
  }
  #site-navigation #primary-menu ul.sub-menu > li:hover li a {
    height: auto;
  }
  /* Submenu */
  #site-navigation #primary-menu ul.sub-menu li a {
    background-color: transparent;
  }
  /* ホバーアコーディオン　ここまで
  ----------------------------------------------------------- */
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  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: 1000px;
	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;
}

.no-deco {
  background: none;
  margin-bottom: 2rem;
}

/* ================================
   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>

   ================================ */
/* btn.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 !important;
}

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

/* タブレット以上 */
/* PC以上 */
@media (min-width: 1024px) {
  th, td {
    padding: 2rem !important;
  }
  th,
  td:first-child {
    padding: 2rem 3rem !important;
  }
}
/* 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 {
  counter-reset: cp_clist; /*数字をリセット*/
  list-style-type: none;
  padding: 0.5rem;
  text-align: left;
}

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

ol 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 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 li ul {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

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

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

/*吹き出しでカウント　ここまで*/
ul.columns_3 {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2px);
  clear: both;
  justify-content: space-around;
}

ul.columns_3 li {
  flex: 1; /* 子要素の均等な割り当て */
  display: block;
  flex-basis: calc(33.3% - 20px);
  margin: 9px;
  padding: 20px 10px;
  box-sizing: border-box; /* borderやpaddingが含まれた幅にする */
  border: 1px solid var(--base-color);
  text-align: center;
}

ul.columns_4 {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2px);
  clear: both;
  justify-content: space-around;
}

ul.columns_4 li {
  flex: 1; /* 子要素の均等な割り当て */
  display: block;
  flex-basis: calc(25% - 20px);
  margin: 5px;
  padding: 20px 10px;
  box-sizing: border-box; /* borderやpaddingが含まれた幅にする */
  border: 1px solid var(--base-color);
  text-align: center;
}

/* タブレット以上 */
/* 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-item {
  flex: 0 0 100%;
  /* 1枚ずつ見せる場合は幅100% */
  box-sizing: border-box;
  padding: 0 1rem;
}

.carousel-arrow {
  position: absolute;
  bottom: 1.5rem;
  z-index: 10;
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
}

.carousel-arrow.prev {
  left: 9rem;
}

.carousel-arrow.next {
  right: 9rem;
}

/* ドット */
.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以上 */
@media (min-width: 1024px) {
  .carousel-item {
    flex: 0 0 33.3333%;
    /* 1枚ずつ見せる場合は幅100% */
  }
  .carousel-arrow.prev {
    left: 43%;
  }
  .carousel-arrow.next {
    right: 43%;
  }
}
/* bg設定
----------------------------------------------------------- */
/*--背景　ここから--*/
.bg_dot {
  background-color: var(--accent-color);
  background-image: radial-gradient(var(--base-color-t10) 15%, transparent 15%);
  background-size: 10px 10px;
}

.bg_base_color,
.bg_primary_color,
.bg_accent_color {
  padding: 2rem 0;
  margin: 2rem auto;
}

.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);
}

.bg_base_color {
  background-color: var(--base-color);
  color: #fff;
}

.bg_primary_color {
  background-color: var(--primary-color);
}

.bg_accent_color {
  background-color: var(--accent-color);
}

.bg_primary_color *,
.bg_primary_color *,
.bg_accent_color * {
  margin: 0 auto;
}

/*--背景　ここまで--*/
#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;
}

/*--走査線横ここまで--*/
/*--画像ここから--*/
.d-shadow img {
  /*drop-shadow*/
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.border-radius img {
  border-radius: 6px;
}

.drop-shadow img {
  margin-bottom: 2rem;
  border-radius: 6px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/*--画像ここまで--*/
/*下線アニメーションここから*/
.effect-underline a {
  position: relative;
  display: inline-block;
  color: #fff; /* テキストの色 */
  text-decoration: none; /* デフォルトの下線を削除 */
  padding-bottom: 4px;
}

.effect-underline a:hover {
  color: #fff; /* テキストの色 */
  opacity: 1;
}

.effect-underline a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px; /* 下線の太さ */
  bottom: 0;
  left: 0;
  background-color: #fff; /* 下線の色 */
  transform: scaleX(0); /* 初期状態では下線を隠す */
  transform-origin: right; /* 右端を基点にスケール */
  transition: transform 0.3s ease; /* アニメーションの時間とイージング */
}

.effect-underline a:hover::before {
  transform: scaleX(1); /* 下線を表示させる（右から左に拡大） */
  transform-origin: left; /* 左端を基点にスケール */
}

/* 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,
input.wpcf7-submit {
  display: flex;
  align-items: center; /* 縦方向の中央 */
  justify-content: center; /* 横方向の中央（不要なら削除） */
  border: solid 2px var(--base-color);
  color: var(--base-color);
  font-weight: bold;
  width: 320px;
  height: 50px;
  border-radius: 25px;
	cursor: pointer;
  transition:0.3s;
  margin: 2rem auto;
}

.l-btn-base a:hover,
input.wpcf7-submit: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;
  }
}
/* 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 - ヘッダーの基本スタイル（モバイルファースト） */
header {
  background-color: var(--header-color);
  padding: 0 2rem;
}

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

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

header nav a {
  color: #fff;
}

/* === mobile only (～768px) === */
/* タブレット以上 */
/* PC以上 */
@media (min-width: 1024px) {
  header div.inner {
    display: flex;
    align-items: flex-end;
    /* ← これで子要素を bottom 揃え */
  }
  #site-navigation {
    color: var(--menu-font-color);
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    width: 100%;
  }
  #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 */
  #site-navigation #primary-menu li ul.sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
  }
  #site-navigation #primary-menu li ul.sub-menu {
    position: absolute;
    top: -1000px;
  }
  #site-navigation #primary-menu li:hover ul.sub-menu {
    transform: translateY(calc(1050px + 1rem));
    -ms-transform: translateY(1055px); /*IE９対策*/
  }
  /* ホバーアコーディオン　ここまで
  ----------------------------------------------------------- */
}
/* 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 img {
  width: 200px;
  margin: 0 auto;
}

footer .footer-nav ul {
  display: flex;
}

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

footer nav.nav-sns ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  /* 水平方向を中央寄せ */
  padding: 2rem;
}

footer nav.nav-sns ul li {
  width: 40px;
  height: 40px;
}

.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;
    }
  }
}
/* utility.scss（モバイルファースト） */
/* Prefixルール：.u-（utility） */
.ds-0-3-3-01 {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.p-2-2 {
  padding: 2rem;
}

.p-4-2 {
  padding: 4rem 2rem;
}

.ds-0-5-5-02 {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.ds-0-5-5-05 {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

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

.u-d-block {
  display: block;
}

.u-d-inline {
  display: inline;
}

.u-d-inblock {
  display: inline-block;
}

.u-d-flex {
  display: flex;
}

.u-d-grid {
  display: grid;
}

.u-d-contents {
  display: contents;
}

.u-d-flowroot {
  display: flow-root;
}

.u-d-none {
  display: none;
}

.u-maxw-500 {
  max-width: 500px;
}

.u-maxw-550 {
  max-width: 550px;
}

.u-maxw-600 {
  max-width: 600px;
}

.u-maxw-800 {
  max-width: 800px;
}

.u-maxh-50 {
  max-height: 50px;
}

.u-text-color-222 {
  color: #222 !important;
}

.u-text-color-333 {
  color: #333;
}

/* === Display === */
.u-display-block {
  display: block !important;
}

.u-display-none {
  display: none !important;
}

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

.u-show-pc {
  display: none !important;
}

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

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

.u-js-center {
  justify-self: center;
}

.u-js-end {
  justify-self: end;
}

.u-js-stretch {
  justify-self: stretch;
}

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

.u-as-center {
  align-self: center;
}

.u-as-end {
  align-self: end;
}

.u-as-stretch {
  align-self: stretch;
}

/* ===== Grid 一括: place-self ===== */
.u-ps-center {
  place-self: center;
} /* 横・縦ともcenter */
/* ===== Flex の右寄せ代替（row想定／LTR） ===== */
.u-ml-auto {
  margin-left: auto;
}

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

.u-gap-xs {
  --u-gap: 8px;
}

.u-gap-sm {
  --u-gap: 12px;
}

.u-gap-md {
  --u-gap: 16px;
}

.u-gap-lg {
  --u-gap: 24px;
}

/* “固定列数”を直接指定したい時（モバイル基準で必要に応じて付与） */
.u-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.u-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.u-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.u-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.u-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* 自動可変カラム（カード最小幅ベース／メディアクエリ不要） */
.u-cols-auto-180 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* 文字サイズを親幅で可変（任意） */
.u-fluid-title {
  font-size: clamp(1rem, 3cqw, 1.5rem);
  line-height: 1.2;
}

/* ==============================================================
   強化（対応ブラウザのみ）：Container Queries で親幅に応じてユーティリティを上書き
   ============================================================== */
@supports (container-type: inline-size) {
  /* タブレット以上（親幅 >= 768px） */
  @container (width >= 768px) {
    /* “タブレット段階”の列数ユーティリティ */
    .u-md-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .u-md-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .u-md-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    /* ギャップや整列の上書き例（必要に応じて） */
    .u-md-gap-lg {
      gap: 24px;
    }
    .u-md-center {
      place-items: center;
    }
  }
  /* PC以上（親幅 >= 1024px） */
  @container (width >= 1024px) {
    /* “PC段階”の列数ユーティリティ */
    .u-lg-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .u-lg-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .u-lg-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .u-lg-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .u-lg-cols-6 {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .u-lg-gap-xl {
      gap: 32px;
    }
  }
}
/* ==============================================================
   （任意）超軽量ソフトフォールバック
   - 非対応ブラウザでも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-p-05 {
  padding: 0.5rem !important;
}

.u-p-1 {
  padding: 1rem !important;
}

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

.u-p-3 {
  padding: 3rem !important;
}

.u-p-4 {
  padding: 4rem !important;
}

.u-p-5 {
  padding: 5rem !important;
}

.u-px-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.u-px-2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.u-px-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.u-px-4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.u-px-5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.u-py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

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

.u-py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.u-py-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.u-py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

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

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

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

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

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

.u-pb-1 {
  padding-bottom: 1rem !important;
}

.u-pb-2 {
  padding-bottom: 2rem !important;
}

.u-pb-3 {
  padding-bottom: 3rem !important;
}

.u-pb-4 {
  padding-bottom: 4rem !important;
}

.u-pb-5 {
  padding-bottom: 5rem !important;
}

.u-pl-1 {
  padding-left: 1rem !important;
}

.u-pl-2 {
  padding-left: 2rem !important;
}

.u-pl-3 {
  padding-left: 3rem !important;
}

.u-pl-4 {
  padding-left: 4rem !important;
}

.u-pl-5 {
  padding-left: 5rem !important;
}

.u-pr-1 {
  padding-right: 1rem !important;
}

.u-pr-2 {
  padding-right: 2rem !important;
}

.u-pr-3 {
  padding-right: 3rem !important;
}

.u-pr-4 {
  padding-right: 4rem !important;
}

.u-pr-5 {
  padding-right: 5rem !important;
}

/*margin*/
.u-m-05 {
  margin: 0.5rem !important;
}

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

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

.u-m-3 {
  margin: 3rem !important;
}

.u-m-4 {
  margin: 4rem !important;
}

.u-m-5 {
  margin: 5rem !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-mx-1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.u-mx-2 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.u-mx-3 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.u-mx-4 {
  margin-left: 4rem !important;
  margin-right: 4 rem !important;
}

.u-mx-5 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

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

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

.u-my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-my-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.u-my-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

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

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

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

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

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

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

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

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

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

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

.u-ml-1 {
  margin-left: 1rem !important;
}

.u-ml-2 {
  margin-left: 2rem !important;
}

.u-ml-3 {
  margin-left: 3rem !important;
}

.u-ml-4 {
  margin-left: 4rem !important;
}

.u-ml-5 {
  margin-left: 5rem !important;
}

.u-mr-1 {
  margin-right: 1rem !important;
}

.u-mr-2 {
  margin-right: 2rem !important;
}

.u-mr-3 {
  margin-right: 3rem !important;
}

.u-mr-4 {
  margin-right: 4rem !important;
}

.u-mr-5 {
  margin-right: 5rem !important;
}

/*サイズ*/
.u-w-100 {
  width: 100px !important;
  height: auto;
}

.u-w-80 {
  width: 80px !important;
  height: auto;
}

.u-w-75 {
  width: 75% !important;
  height: auto;
}

.u-w-50 {
  width: 50% !important;
  height: auto;
}

.u-w-25 {
  width: 25% !important;
  height: auto;
}

.u-w-10 {
  width: 10px !important;
  height: auto;
}

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

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

header .site-branding img {
  height: 100%;
  width: auto;
  aspect-ratio: 65/16;
  margin: 0;
}

.cate-exhibition {
  background-color: var(--base-color);
}

/*ホームページここから*/
/* 1) 2カラムそれぞれを“コンテナ”化（最も近い祖先にする） */
#home-page #main-visual .max-width > div {
  container-type: inline-size !important;
  min-width: 0; /* はみ出し保険（長い語/画像） */
}

/* 2) h2を“カラム幅”で可変させる */
#home-page #main-visual h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 8rem;
  font-size: 8rem;
}

/* 3) 画像/テキストの基本保険 */
#home-page #main-visual img {
  width:75%;
  height:auto;
  margin: 2rem auto;
}

#home-page #main-visual img,
#home-page #main-visual p {
  max-width: 480px;
}

#home-page #main-visual a {
  margin: 0 auto;
  border: solid 1px #65bbe9;
  padding: 1.6rem 4rem;
  display: block;
  color: #65bbe9;
  font-size: 1.6rem;
  font-weight: 700;
}

#home-page #main-visual a:hover {
  background-color: #0098D8;
  color: #fff;
}

.column02 {
  max-width: var(--max-width);
  padding: 4rem 0;
}

#home-page #main-visual button {
  margin: 0 auto;
  display: block;
}

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

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

.kv-area h2 .quote::before,
.kv-area h2 .quote::after {
  content: '"';
  color: #65bbe9;
  /* 閉じダブルクオーテーション */
}

.bg-dots {
  position: relative; /* 擬似要素の基準に */
  isolation: isolate; /* z-indexの地ならし（任意） */
  max-width: 100% !important;
  background-color: #dcf0fa;
  background-image: radial-gradient(circle, #c1e7f8 1px, transparent 1px), radial-gradient(circle, #c1e7f8 1px, transparent 1px);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
}

/* 三角カットを付けたい要素に .hero-cut を付ける（あなたは columns に付与済み） */
.hero-cut {
  position: relative;
  isolation: isolate; /* 任意：z-index地ならし */
  /* 重要：親の背景を消す（bg-dotsの矩形背景を無効化） */
  background: none !important;
}

/* ▼ 背景だけを三角形にクリップ（コンテンツは矩形のまま） */
.hero-cut::before {
  content: "";
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1; /* 背景として下へ */
  /* ここに “ドット背景” を再定義（親からは消したのでここだけに描かれる） */
  background-color: #dcf0fa;
  background-image: radial-gradient(circle, #c1e7f8 1px, transparent 1px), radial-gradient(circle, #c1e7f8 1px, transparent 1px);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
  /* 下中央が尖るシェブロン（三角の深さは --tip） */
  --tip: 60px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--tip)), 50% 100%, 0 calc(100% - var(--tip)));
}

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空ける */
}

/*キービジュアル　ここまで*/
/*Codelegdeページ ここから*/
.introduction-area {
  background: radial-gradient(at 20% -10%, #4e4be7, transparent 40%), radial-gradient(at 70% 10%, #54c2f0, transparent 40%), radial-gradient(at 80% 50%, #1dade5, transparent 80%), radial-gradient(at 0% 100%, #7dccf3, transparent 100%);
  background-attachment: fixed;
  padding: 4rem 0;
  text-align: center;
}


.introduction-area .wp-block-columns .wp-block-column:first-child img {
  margin: 3rem auto;
}

.introduction-area p {
  font-size: 2.0rem;
  line-height: 1.5;
  margin: 2rem auto 0;
}

.issues-area {
  padding: 4rem 0 10rem;
}

.issues-area h2 {
  letter-spacing: -0.05em;
  font-family: "Noto Sans Mono", monospace;
  font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
  line-height: 2.4rem;
  color: rgba(101, 187, 233, 0.5);
  font-weight: 900;
  margin-bottom: 6rem;
  background: linear-gradient(transparent 85%, rgba(101, 187, 233, 0.3) 85%);
  background-position: 0rem 0%;
}

.issues-area h3 {
  font-size: clamp(1.8rem, 8vw, 2rem) !important;
  margin-bottom: 3rem;
  font-weight: 700;
}

.issues-area .issue01 .wp-block-column {
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  border: solid 6px #65bbe9;
  font-size: 1.6rem;
  padding-bottom: 1rem;
}

.issues-area .issue01 .wp-block-column h4 {
  background-color: #65bbe9;
  color: #fff;
  padding: 1rem 0 1.6rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.issues-area .issue01 .wp-block-column img {
  max-height: 150px;
  margin: 2rem auto;
  justify-self: end;
}

.issues-area .issue02 .wp-block-column {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  background-color: #fff;
  border-radius: 10px;
  border: solid 6px #65bbe9;
  font-size: 1.6rem;
  padding: 1rem;
}

.issues-area .issue02 .wp-block-column p {
  align-self: center;
}

.issues-area .issue02 .wp-block-column figure {
  justify-self: end;
}

.issues-area .issue02 .wp-block-column img {
  height: 100px;
}

.auto-area,
.point-area,
.comparison-area,
.service-area,
.contact-area {
  padding: 3rem 2rem;
}

.auto-area h2 {
  line-height: 150%;
  font-weight: 300;
  color: #333;
}

.auto-area h2 img {
  width: 80%;
  max-width: 390px;
  display: inline;
}

.auto-area h2 + figure {
  margin-bottom: 4rem;
}

/* 見出し左右のライン付き（値は自由に調整可） */
.auto-area h3 {
  --line-color: #cbe7f5; /* ライン色（画像の水色に近い） */
  --line-height: 6px; /* 太さ */
  --gap: clamp(8px, 2vw, 24px); /* 文字との間隔 */
  --line-max: clamp(48px, 18vw, 160px); /* ラインの最大長（長すぎ防止） */
  display: flex;
  align-items: center;
  justify-content: center; /* 見出し文字を中央に */
  gap: var(--gap);
  line-height: 1.2; /* タイトめに */
  margin-bottom: 3rem;
}

/* 左右ライン */
.auto-area h3::before,
.auto-area h3::after {
  content: "";
  height: var(--line-height);
  background: var(--line-color);
  border-radius: 999px; /* 角を少し丸く（お好みで） */
  flex: 1 1 0; /* 余白を均等に埋める */
  max-inline-size: var(--line-max); /* ラインが伸びすぎないよう制限 */
}

.auto-area .realization-area .wp-block-column:first-child {
  border-bottom: solid 3px #bae2f8;
  padding-bottom: 2rem;
}

.auto-area .realization-area figure {
  justify-self: start;
  margin: 0;
}

.auto-area .realization-area img {
  height: 55px;
}

.point-area h2 img {
  width: 80%;
  max-width: 390px;
}

.point-area {
  text-align: center;
}

.point-area p:first-child {
  color: #ff8833;
}

.point-area p:first-child strong {
  font-size: 3rem;
}

.point-area p:first-child strong::before {
  content: "\a";
  white-space: pre;
}

.point-area h3 {
  color: #333;
  margin-bottom: 1rem;
}

.comparison-area {
  text-align: center;
}

.comparison-area h2.wp-block-heading {
  display: inline-block; /* ←要。テキスト幅に要素自体を合わせる */
  line-height: 1.2;
  /* 下側だけ色が乗る帯を描く */
  background-image: linear-gradient(transparent 30%, rgba(101, 187, 233, 0.3) 0);
  background-size: 100% 0.55em; /* 帯の厚さ */
  background-repeat: no-repeat;
  background-position: 0 100%;
  /* 複数行でも各行ごとに帯をクローン（対応ブラウザで有効） */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-align: center;
}

/* PC/タブレットは従来どおりテーブル＋横スクロール */
.comparison-area .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-area .wp-block-table table.has-fixed-layout {
  border-collapse: collapse;
  table-layout: fixed;
  width: max(720px, 100%);
}

.comparison-area .wp-block-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

/* ロゴのNaN上書き */
.comparison-area .wp-block-table img {
  width: auto !important;
  height: 1.4em;
  vertical-align: -0.1em;
}

.comparison-area table {
  max-width: var(--max-width);
}

.comparison-area table th, td {
  border: solid 1px #fff !important;
  padding: 1rem !important;
}

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

.comparison-area table img {
  height: 40px;
}

.service-area h3 {
  text-align: center;
}

.service-area .wp-block-column .wp-block-column {
  background-color: #0098d8;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 1.6rem;
  padding: 4rem;
  aspect-ratio: 1/1;
}

.service-area h3 {
  display: inline-block;
  color: #fff;
  font-size: 2.4rem;
  line-height: 3.4rem;
  min-height: 0;
  margin: 1rem auto 3rem;
}

.service-area h3 strong {
  font-family: "Special Gothic Expanded One", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 300%;
  line-height: 4rem;
}

.service-area h3 strong::after {
  content: "\a";
  white-space: pre;
}

.service-area .wp-block-column .wp-block-column p {
  text-align: left;
}

/* ========== 安定版の基本 ========== */
.service-area .wp-block-table {
  overflow-x: auto; /* 狭幅は横スクロール */
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  margin-bottom: 4rem;
}

.service-area .wp-block-table table.has-fixed-layout {
  border-collapse: collapse;
  table-layout: fixed;
  width: max(720px, 100%); /* スマホではスクロール, 広ければ100% */
}

.service-area .wp-block-table td,
.service-area .wp-block-table th {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
  word-break: break-word;
}

/* 画像の正規化（NaN対策・はみ出し防止） */
.service-area .wp-block-table img {
  display: block;
  height: auto;
  width: auto;
  max-height: 28px; /* ロゴ/アイコンの上限（調整可） */
  max-width: 100%;
  vertical-align: -0.1em;
  object-fit: contain;
}

/* ヘッダー行に見せたい行（最上段）だけ少し見やすく */
.service-area .wp-block-table tbody tr:first-child td {
  background: #f3f8fc;
  font-weight: 600;
}

/* スマホでの余白と視認性だけ微調整 */
@media (max-width: 640px) {
  .service-area .wp-block-table td,
  .service-area .wp-block-table th {
    padding: 0.6rem;
  }
}
/*Codelegdeページ ここまで*/
@media (min-width: 480px) {
  .issues-area h2 {
    font-size: clamp(2.4rem, 8vw, 10rem) !important;
    line-height: 10rem;
  }
}
@media (min-width: 1024px) {
  .issues-area h2 {
    font-size: clamp(2.4rem, 8vw, 10rem) !important;
    line-height: 10rem;
  }
  .issues-area h3 {
    font-size: 3.6rem !important;
    margin-bottom: 6rem;
  }
  .issues-area .issue02 .wp-block-column {
    padding: 1rem 3rem;
  }
  .issues-area .issue02 .wp-block-column p {
    text-align: center;
  }
  .issues-area .issue02 .wp-block-column img {
    height: 120px;
  }
  .hero-cut::before {
    --tip: 120px;
  }
  .auto-area,
  .point-area,
  .comparison-area,
  .service-area {
    padding: 6rem 2rem;
  }
  .auto-area h2 {
    font-size: clamp(2.4rem, 8vw, 4rem) !important;
  }
  .auto-area .realization-area .wp-block-column:first-child {
    border-right: solid 3px #bae2f8;
    border-bottom: none;
  }
  .auto-area .realization-area figure {
    margin: 0 auto;
  }
  .auto-area .realization-area img {
    height: 60px;
  }
  .auto-area .realization-area p {
    text-align: center;
  }
  .point-area h3 + p {
    min-height: 7rem;
    margin-bottom: 0 !important;
  }
  .service-area h3 {
    min-height: 12rem;
    margin: 3rem auto 2rem;
  }
}

/*# sourceMappingURL=common.css.map */
