@charset "UTF-8";
/* 1120px */
:root {
  --table-color: 84, 194, 240;
  --max-width: 70rem;
}

/* Modern Reset 2025 (safe & accessible) */
/* 1) 箱モデル＋余白初期化 */
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

/* 2) タイポの土台 */
html {
  -webkit-text-size-adjust: 100%;
}

/* 3) 見出しはサイズ/太さだけ継承（中央寄せはしない） */
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  font-weight: inherit;
}

/* 4) メディア要素はブロック＋縮小 */
img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/* 5) リンクは装飾を一旦オフ（必要箇所で再付与） */
a {
  color: inherit;
  text-decoration: none;
}

/* 6) フォームはフォント継承。アウトラインは残す（可視） */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
}

button,
[type=button],
[type=submit] {
  cursor: pointer;
}

/* アクセシブルなフォーカス */

/* 7) テーブルは必要最小限 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8) 強調表記の既定 */
strong,
b {
  font-weight: bolder;
}

em,
i {
  font-style: italic;
}

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

/* 9) 動きを減らしたい設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* base.css - サイト全体の基本スタイル（モバイルファースト） */
:root {
  /* remは16px想定（htmlは100%のまま） */
  line-height: 1.6;
  scroll-behavior: smooth;
  /* BPメモ（@mediaでは var() を使わないのが安全） 
     sm=36rem(576px), md=48rem(768px), lg=64rem(1024px) */
}

html { /* 明示したいなら： */
  font-size: 100%;
}

body {
  font-size: 1rem; /* 16px */
  line-height: 2; /* 単位なし */
  color: rgb(var(--font-color)/1);
  background-color: rgb(var(--base-color)/1);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: var(--color-link);
}

hr {
  margin: 1.5rem auto !important;
  border: none !important;
  border-top: 1px solid #ddd !important;
  width: calc(100% - 10rem);
}

main .inner {
  padding: 1rem 0;
  margin: 0 auto;
}

main .inner > * {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

em,
address {
  font-style: normal;
}

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

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

/*縦書き*/

/*縦書き*/
/*googleフォント　ここから*/

/*googleフォント ここまで*/
@media (width >= 36rem) { /* >= sm */
  .u-show-sp {
    display: block !important;
  }
}
@media (width >= 48rem) { /* >= md */ }
@media (width >= 64rem) { /* >= lg */
  .u-show-sp {
    display: none !important;
  }
}
/*========= ナビゲーションのためのCSS ===============*/
@media (width <= 36rem) {
  #site-navigation {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    /*動き*/
    transition: all 0.6s;
    line-height: 3rem;
  }
  #site-navigation .menu-logo {
    width: 60%;
    margin: 2rem auto;
  }
  #site-navigation #primary-menu {
    padding: 1rem;
  }
  /*アクティブクラスがついたら位置を0に*/
  #site-navigation.panelactive {
    right: 0;
  }
  /*リストのレイアウト設定*/
  #site-navigation #primary-menu li {
    line-height: 1;
    text-align: center;
    margin: 1rem auto;
    padding-bottom: 1rem;
  }
  /*ナビゲーション*/
  #site-navigation #primary-menu li ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    top: 1rem;
    padding: 0.5rem 0 0.2rem;
  }
  #site-navigation #primary-menu li ul li {
    margin: 0;
    padding-bottom: 1rem;
  }
}
@media (width >= 36rem) {
  header div.inner {
    display: flex;
    align-items: flex-end;
    /* ← これで子要素を bottom 揃え */
  }
  #site-navigation > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    /* アイテム間の余白（お好みで） */
    justify-content: flex-end;
    /* ← liを右に寄せる */
    align-items: flex-end;
    /* 下（bottom）に揃える */
    /* 必要に応じて高さを固定 */
    /* height: 60px; */
    margin: 0 auto;
  }
  #site-navigation a {
    color: rgb(var(--header-link-color)/1);
    font-weight: 600;
  }
  #site-navigation a:hover {
    opacity: 0.8;
  }
  #site-navigation .menu-logo {
    display: none;
  }
  /* ホバーアコーディオン　ここから　20251028
  ----------------------------------------------------------- */
  #site-navigation #primary-menu li ul {
    padding: 1rem 1.5rem 0.5rem;
    background-color: rgb(var(--header-color)/var(--header-alpha, 1));
    margin-left: -1rem;
  }
  #site-navigation #primary-menu li li a {
    height: 0;
    transition: all 0.5s ease-out;
    display: flex;
    align-items: center;
    /* ←縦方向の中央揃え */
  }
  #site-navigation #primary-menu > li:hover li a {
    height: 1rem;
    white-space: nowrap;
    margin-bottom: 0.5rem;
  }
  /* Submenu */
  /* ホバーアコーディオン　ここまで
  ----------------------------------------------------------- */
}
@media (width >= 64rem) { /* >= lg */ }
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: rgb(var(--menu-color));
}

/*×に変化*/
.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%;
}

@media (width >= 36rem) {
  .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 {
  margin-bottom: 5rem;
}

#news-inc ul.news-list {
  list-style: none;
  max-width: 60rem;
  margin-bottom: 4rem;
}

#news-inc ul.news-list li {
  border-bottom: solid 1px #eee;
  padding: 1.5rem 0;
}

#news-inc ul.news-list li span {
  display: inline-block;
  width: 6rem;
  background-color: rgb(var(--primary-color));
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  border-radius: 0.25rem;
  margin: 0 0.5rem;
}

@media (width <= 36rem) { /* >= sm */ }
@media (width <= 48rem) { /* >= md */ }
@media (width <= 64rem) { /* >= lg */ }
/* pagination.scss - ページネーション基本スタイル（モバイルファースト） */
/* ページャー　ここから
----------------------------------------------------------- */
/* その5  */
.pagination {
  text-align: center;
}

.pagination ul {
  padding: 0;
  margin: auto;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  width: fit-content;
}

.pagination ul li {
  padding: 0;
  margin: 0;
}

/* ページャー　ここまで
----------------------------------------------------------- */
/*ページネーションここから*/

/*ページネーションここまで*/
/* タブレット以上 */
@media (width >= 48rem) { /* >= md */ }
/* PC以上 */
@media (width >= 64rem) { /* >= lg */
  ul.breadcrumb {
    font-size: 0.75rem;
  }
}
/* title.css - タイトルスタイル（モバイルファースト） */
.h_title * {
  margin-bottom: 2rem;
  text-align: center;
}

.h_title h2 {
  margin-bottom: 0;
}

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

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
.h_title span {
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(var(--primary-color)/1);
  font-weight: 900;
}

.h_title div {
  color: rgb(var(--primary-color)/1);
}

/* ================================
   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 - リストのスタイル（モバイルファースト） */
/* carousel.css - カルーセルのスタイル（モバイルファースト） */
/* ①シンプルなカルーセルの個別CSS */

/* ドット */

/* 基本設定
----------------------------------------------------------- */
/* タブレット以上 */
/* 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: rgb(var(--font-color)/1);
}

/*--背景　ここまで--*/
#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(rgb(var(--effect-color)/var(--effect-alpha, 1)) 30%, transparent 31%), radial-gradient(rgb(var(--effect-color)/var(--effect-alpha, 1)) 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}

/*--ドットここまで--*/
.over_dot02::after {
  background-image: radial-gradient(rgb(var(--effect-color)/var(--effect-alpha, 1)) 30%, transparent 31%), radial-gradient(rgb(var(--effect-color)/var(--effect-alpha, 1)) 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, rgb(var(--effect-color)/var(--effect-alpha, 1)) 3px, rgb(var(--effect-color)/var(--effect-alpha, 1)) 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, rgb(var(--effect-color)/var(--effect-alpha, 1)) 1px, rgb(var(--effect-color)/var(--effect-alpha, 1)) 2px);
  background-size: 100% 4px, 4px 100%;
  background-position: 0 0, 0 0;
}

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

/*--画像ここまで--*/
/* breadcrumb.scss - パンくずの基本スタイル（モバイルファースト） */
/* パンくずスタイル　ここから
----------------------------------------------------------- */
ul.breadcrumb {
  width: 100%;
  max-width: var(--max-width);
  padding: 0.5rem 1rem;
  margin: 0 auto;
  font-size: 0.75rem;
  box-sizing: border-box;
}

ul.breadcrumb li {
  display: inline-block;
}

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

ul.breadcrumb li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 0.5rem;
}

/* パンくずスタイル　ここまで
----------------------------------------------------------- */
/* ページ送り　ここから
----------------------------------------------------------- */
ul.entry_navi {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 10px;
  border-top: solid 1px var(--base-color);
  padding: 0;
}

ul.entry_navi li {
  display: inline-block;
  width: 50%; /* テーブル幅からdtを引いた分の横幅を指定。 */
}

ul.entry_navi li + li {
  padding-right: 0;
  text-align: right;
}

/* ページ送り　ここまで
----------------------------------------------------------- */
/* タブレット以上 */
@media (width >= 48rem) { /* >= md */ }
/* PC以上 */
@media (width >= 64rem) { /* >= lg */
  ul.breadcrumb {
    font-size: 0.75rem;
  }
}
/* 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 rgb(var(--accent-color)/1);
  background-color: rgb(var(--bace-color)/1);
  color: rgb(var(--accent-color)/1);
  font-weight: bold;
  width: 100% !important;
  margin: 2rem auto;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}

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

@media (width >= 64rem) {
  .l-btn-base a {
    max-width: 320px !important;
  }
  .news-category ul {
    padding: 2rem 4rem;
  }
}
/* category.css - カテゴリースタイル（モバイルファースト） */
.category-badge {
  display: inline-block;
  padding: 0 !important;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 0.4rem;
  margin-right: 0.6rem;
  padding: 0.5rem 1rem;
  color: #fff;
}

/* メディアクエリ - タブレット */
/* メディアクエリ - PC */
/* u-hover.css - ホバースタイル（モバイルファースト） */
/*基本コード*/
/*ラインが引かれる
左からラインが引かれて、マウスカーソルを離すと右に消える*/
a:not(:has(img)) {
  position: relative;
}

a:not(:has(img))::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

a:not(:has(img)):hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

a:not(:has(img))::before {
  background: rgb(var(--link-color)/1);
}

header a:not(:has(img))::before {
  background: rgb(var(--menu-link-color)/1);
}

footer a:not(:has(img))::before {
  background: rgb(var(--footer-link-color)/1);
}

/*ラインが引かれる:センター
transform-originの値を変えて、中央から線が広がる。*/
a:not(:has(img)) a.center::before {
  transform-origin: center top;
}

@media (width >= 36rem) {
  header a:not(:has(img))::before {
    background: rgb(var(--header-link-color)/1);
  }
}
/* header.css - ヘッダーの基本スタイル（モバイルファースト） */
header {
  background-color: rgb(var(--header-color)/var(--header-alpha, 1));
  padding: 1rem;
}

header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

header ul,
header li {
  padding: 0;
  list-style: none;
  line-height: 1rem;
  font-size: 0.875rem;
}

header .site-branding {
  max-width: 20rem;
  height: 3rem;
}

header .site-branding img {
  height: 100%;
  object-fit: contain;
  /* 収まる＝黒帯的に余白が出てもOK */
  margin: 0;
}

header #site-navigation {
  color: rgb(var(--menu-font-color)/1);
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  width: 100%;
  z-index: 9140;
}

header #site-navigation a {
  color: rgb(var(--menu-link-color)/1);
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
}

@media (width <= 36rem) {
  header {
    height: 2rem;
  }
  header .site-branding {
    max-width: 20rem;
    height: 2rem;
  }
  header #site-navigation {
    background: rgb(var(--menu-color)/var(--menu-alpha, 1));
  }
}
@media (width >= 36rem) {
  header #site-navigation a {
    color: rgb(var(--header-link-color)/1);
  }
}
@media (width >= 64rem) {
  header div.inner {
    display: flex;
    align-items: flex-end;
    /* ← これで子要素を bottom 揃え */
  }
}
/* 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;
  overflow: hidden;
}

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

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

ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}

/*swiper ここまで 220913 */
/*メインヴィジュアルここから*/
#main-visual {
  height: calc(100vh - 3rem);
}

#main-visual.top-kv {
  margin-bottom: 5rem;
  height: calc(100vh - 3rem);
}

/* ① ヒーロー全体に高さを与える */
#main-visual .swiper,
#main-visual .swiper-wrapper,
#main-visual .swiper-slide {
  height: 100%;
}

/* ② スライド内の画像をフィットさせる */
#main-visual .swiper-slide picture,
#main-visual .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%; /* ←高さを埋める */
  object-fit: cover; /* ←ここがポイント */
  object-position: center; /* 任意：見せたい位置 */
}

#main-visual h2,
#page_visual_area h2 {
  width: fit-content;
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  font-weight: 900;
  color: #fff !important;
}

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

div#copy_posi {
  position: absolute;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.6));
  z-index: 2;
  width: 100%;
  display: block;
  transform: translate(-50%, -50%);
}

/*メインヴィジュアルここまで*/
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination * {
  color: var(--accent-color);
}

@media (width <= 36rem) { /* >= sm */
  #main-visual h2,
  #page_visual_area h2 {
    display: inline-block;
  }
  #main-visual h3,
  #page_visual_area h3 {
    display: block;
    line-height: 3rem !important;
  }
  .sp_posi_v_50 {
    top: 50%;
  }
  .sp_posi_h_50 {
    left: 50%;
  }
}
@media (width >= 36rem) { /* >= md */
  .pc_posi_v_50 {
    top: 50%;
  }
  .pc_posi_h_50 {
    left: 50%;
  }
}
@media (width >= 48rem) { /* >= md */ }
@media (width >= 64rem) { /* >= lg */
  #main-visual {
    height: 400px;
  }
}
/* footer.css - フッターの基本スタイル（モバイルファースト） */
footer {
  padding: 1rem;
  background-color: rgb(var(--footer-color)/var(--footer-alpha, 1));
  color: rgb(var(--footer-font-color)/1);
  font-size: 0.875rem;
  line-height: 1.4rem;
}

footer .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

footer a {
  color: rgb(var(--footer-link-color)/1);
}

footer ul,
footer li {
  padding: 0;
  list-style: none;
}

footer nav li ul li {
  text-align: left; /* ← これで左揃え */
  margin-left: 0.5rem;
}

nav.footer-nav {
  margin-bottom: 2rem;
}

.footer-logo,
.footer-address {
  margin-bottom: 1rem;
}

.copyright {
  text-align: center;
}

@media (width >= 36rem) { /* >= sm */
  .footer-logo {
    max-width: 20rem;
  }
}
@media (width >= 48rem) { /* >= md */ }
@media (width >= 64rem) { /* >= lg */
  footer nav {
    text-align: center;
  }
  footer nav > ul {
    display: flex;
    justify-content: center; /* ← これで中央寄せ */
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
  }
  footer nav li {
    text-align: left; /* ← これで左揃え */
  }
}
/* utility.scss（モバイルファースト） */
/* Prefixルール：.u-（utility） */

/* === 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;
  }
}
/* font.scss（モバイルファースト） */
/* Prefixルール：.u-font */

@media (width >= var(--bp-sm)) { /* >= sm */ }
@media (width >= var(--bp-md)) { /* >= md */ }
@media (width >= var(--bp-lg)) { /* >= lg */ }
/* color.css - カラースタイル（モバイルファースト） */

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

/* ===== Grid/Flex 共通: align-self（縦軸） ===== */

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

/*margin*/

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

/*サイズ*/

/* p-contact.scss - お問い合わせページスタイル（モバイルファースト） */
/* 2カラム → SPで1カラム */
article.contact-form7 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
  padding: 2rem 0 !important;
  box-sizing: border-box;
}

.contact-form7 .full {
  grid-column: 1/-1;
  text-align: center;
}

.contact-form7 .fld {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
  padding: 1rem 0;
  border-bottom: solid 1px rgb(var(--primary-color)/0.2);
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.contact-form7 .req {
  color: #c00;
  font-weight: 600;
  font-size: 0.9em;
}

.contact-form7 .fld input,
.contact-form7 .fld select,
.contact-form7 .fld textarea {
  display: block;
  padding: 0.2em 0.5em;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.contact-form7 .act input {
  align-items: center; /* 縦方向の中央 */
  justify-content: center; /* 横方向の中央（不要なら削除） */
  border: solid 2px rgb(var(--accent-color)/1);
  background-color: rgb(var(--bace-color)/1);
  color: rgb(var(--accent-color)/1);
  font-weight: bold;
  width: 100%;
  max-width: 320px;
  margin: 2rem auto;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 auto;
}

/* スマホだけ縦1列に（最少CSS） */
@media (width <= 36rem) {
  .contact-form7 {
    grid-template-columns: 1fr;
  }
}
@media (width >= 36rem) {
  /* >= sm */
}
@media (width >= 48rem) {
  /* >= md */
}
@media (width >= 64rem) {
  article.contact-form7 {
    max-width: 80% !important;
  }
  .contact-form7 .fld {
    grid-template-columns: 1fr 3fr;
  }
}
