@charset "UTF-8";
/* cal-clamp 関数（そのまま使う） */
@media screen and (max-width: 1539px) and (min-width: 1px) {
  html:not(:has(.sub-page)) {
    font-size: calc(16 / 1540 * 100vw);
  }
}

@media screen and (max-width: 0px) {
  html:not(:has(.sub-page)) {
    font-size: calc(16 / 1 * 100vw);
  }
}

html {
  overflow-x: hidden;
}

body {
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  background: #F5F5F5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}

@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  /* height: 100%; */
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 1px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  /* メニューが開いている時、背景スクロールを無効化 */
  body.menu-open {
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/* =========================
    ヘッダー全体
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: rgba(0, 18, 27, 0.5);
  -webkit-box-shadow: 0 4px 16.5px 0 rgba(5, 35, 56, 0.1);
  box-shadow: 0 4px 16.5px 0 rgba(5, 35, 56, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.5rem;
  box-sizing: border-box;
}

/* 内側レイアウト */
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* =========================
    ロゴ
========================= */
.site-title {
  width: 20%;
  max-width: 300px;
}

.header-logo {
  max-width: 100%;
}

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

/* =========================
    ハンバーガーボタン
========================= */
.hamburger-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  gap: 8px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
  position: relative;
}

/* ハンバーガーボタンが開いた時 */
.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

/* =========================
    ナビゲーション
========================= */
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1rem;
}

/* スマートフォン表示時のナビゲーション */
@media (max-width: 767px) {
  .header {
    padding: 20px 1rem;
  }

  .site-title {
    width: 40%;
  }

  .hamburger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0, 18, 27, 0.98);
    -webkit-box-shadow: -4px 0 16.5px 0 rgba(5, 35, 56, 0.3);
    box-shadow: -4px 0 16.5px 0 rgba(5, 35, 56, 0.3);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 2rem;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .header-nav.is-open {
    right: 0;
  }

  .header-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .header-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-right: 0;
  }

  .header-menu>li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-menu>li>a,
  .menu-parent {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    background: rgba(0, 18, 27, 0.5);
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-radius: 0;
    margin-top: 0.5rem;
  }

  .has-sub.open>.submenu {
    display: block;
  }

  .submenu li {
    margin-bottom: 0.75rem;
  }

  .submenu a {
    font-size: 0.875rem;
  }
}

/* メニュー基本 */
.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1875rem;
  list-style: none;
  padding-right: 0.5625rem;
}

.header-menu>li {
  position: relative;
}

/* ===== ▼ 親メニュー（開閉ボタン化） ===== */
.menu-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* 「ニュース」など submenu のないもの用 */
.header-menu>li>a {
  color: #fff;
  font-size: 16px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  text-decoration: none;
  font-weight: 700;
}

/* ニュースだけ位置がずれる問題を修正 */
.header-menu>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* ← これで上下中央に揃う */
  /* height: 1.25rem; */
  /* 親メニューと高さを合わせる */
}

@media screen and (max-width: 767px) {
  .header-menu>li>a {
    /* ← これで上下中央に揃う */
    height: 1.25rem;
    /* 親メニューと高さを合わせる */
  }
}

/* ホバー時 */
.header-menu>li>a:hover {
  opacity: 0.6;
}

/* ===== ▼ プラス/マイナスアイコン ===== */
/* アイコン全体 */
.toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* 横棒（常に存在） */
.toggle-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* 縦棒（プラスの時だけ表示） */
.toggle-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #fff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* ▼ 開いた時（マイナスに変形） */
.has-sub.open .toggle-icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* ===== ▼ ドロップダウン（submenu） ===== */
.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 0;
  background: rgba(0, 18, 27, 0.95);
  padding: 0.875rem 1.25rem;
  border-radius: 0.375rem;
  list-style: none;
  white-space: nowrap;
  z-index: 2000;
  min-width: 11.25rem;
}

.submenu li {
  margin-bottom: 16px;
}

.submenu li:last-child {
  margin-bottom: 0;
}

.submenu a {
  color: #fff;
  font-size: 16px;
  opacity: 0.9;
  text-decoration: none;
}

.submenu a:hover {
  opacity: 0.7;
}

/* 開いた状態 */
.has-sub.open>.submenu {
  display: block;
}

/* =========================
    右側ボタン・言語切替
========================= */
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.btn.small {
  padding: 10px 20px;
  border-radius: 25px;
  background: #C3E2F2;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  max-width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn.small:hover {
  opacity: 0.8;
}

.btn.primary {
  padding: 10px 20px;
  border-radius: 25px;
  background: #1278B4;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  max-width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn.primary:hover {
  opacity: 0.8;
}

.lang-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.lang {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.lang.active {
  color: #272B2D;
}

.lang-divider {
  color: #ffffff;
  opacity: 0.7;
}

.mv {
  position: relative;
}

.mv-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

@media screen and (min-width: 1281px) {
  .mv-pc {
    display: block;
  }
}

@media screen and (max-width: 1281px) {
  .mv-pc {
    display: none;
  }
}


.mv-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 2;
}

.mv-top {
  position: relative;
}

.mv-title {
  position: absolute;
  right: 10%;
  bottom: 10%;
  z-index: 2;
  background: linear-gradient(88deg, #FFF 6.15%, #A2DCF9 26.31%, #FFF 38.7%, #FFF 53.39%, #A2DCF9 70.77%, #FFF 84.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}

.mv-title h1 {
  font-family: "IBM Plex Sans";
  font-size: clamp(2.5rem, 1.227rem + 6.36vw, 4.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
}

.mv-subtitle1 {
  color: #FFF;
  font-family: "IBM Plex Sans";
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  /* 57.5px */
  letter-spacing: 0.46px;
}

.mv-subtitle2 {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  -webkit-margin-before: 15px;
  margin-block-start: 15px;
  margin-bottom: 40px;
}

.mv-bg {
  position: relative;
  -webkit-margin-before: -0.625rem;
  margin-block-start: -0.625rem;
}

.wave-white {
  position: relative;
  height: clamp(25rem, 21.136rem + 19.32vw, 35.625rem);
  z-index: 2;
  background: #01131C;
  /* overflow: hidden; */
}

.wave-white::before {
  content: "";
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, rgba(1, 19, 28, 0) 0%, rgba(1, 19, 28, 0.6) 30%, rgba(1, 19, 28, 1) 100%);
  z-index: 2;
}

.webgl {
  height: 100% !important;
  outline: none;
  z-index: 2;
}


@media screen and (max-width: 767px) {
  .mv-title {
    right: 5%;
    bottom: 5%;
  }

  .mv-title h1 {
    font-size: 36px;
    padding-left: 16px;
  }

  .mv-subtitle1 {
    font-size: 24px;
  }

  .mv-subtitle2 {
    font-size: 16px;
  }

  .wave-white {
    height: 400px;
  }
}

/* ===============================
   ボタン全体
================================ */
.btn__link {
  display: inline-block;
  padding: 0.75rem 11.25rem 1.25rem 0;
  font-weight: 700;
  text-decoration: none;
}

.btn__link-text {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #25598C;
  font-family: "IBM Plex Sans";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 0.1rem;
}

.mv-inner .btn__link-text {
  color: #FFF;
}

/* ===============================
   横線（line）
================================ */
.btn__link-arrow {
  position: absolute;
  top: calc(50% + 0.3125rem);
  left: calc(100% + 1.25rem);
  translate: 0 -50%;
  width: 6.875rem;
  height: 0.125rem;
  background: #25598C;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.mv-inner .btn__link-arrow {
  width: 5.6rem;
}

/* 先端の丸 */
.btn__link-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 50% -50%;
  width: 0.625rem;
  height: 0.625rem;
  background: #25598C;
  border-radius: 50%;
}

.mv-inner .btn__link-arrow {
  background: #FFF;
}

.mv-inner .btn__link-arrow::after {
  background: #FFF;
}

/* ===============================
   左が細く欠けた円（circle）
================================ */
.btn__link-circle {
  position: absolute;
  top: calc(50% + 0.3125rem);
  left: calc(100% + 4.375rem);
  translate: 0 -50%;
  width: 7.5rem;
  height: 7.5rem;
}

.mv-inner .btn__link-circle {
  width: 5rem;
  height: 5rem;
}

/* --- 上の弧（欠け幅細い） --- */
.btn__link-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0.125rem solid transparent;
  /* いったん全透明 */
  border-right-color: #25598C;
  /* 右側だけ線を付ける */
  border-top-color: #25598C;
  /* 上側にも線を付ける */
  /* 欠け幅を細くするための角度調整 */
  -webkit-transform: rotate(-28deg);
  transform: rotate(-28deg);
}

.mv-inner .btn__link-circle::before {
  border-right-color: #FFF;
  border-top-color: #FFF;
}

/* --- 下の弧（欠け幅細い） --- */
.btn__link-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0.125rem solid transparent;
  border-right-color: #25598C;
  border-bottom-color: #25598C;
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
}

.mv-inner .btn__link-circle::after {
  border-right-color: #FFF;
  border-bottom-color: #FFF;
}


@media screen and (max-width: 767px) {
  .btn__link {
    padding: 0.75rem 11.25rem 1.25rem 0;
    font-weight: 700;
    text-decoration: none;
  }

  .btn__link-text {
    font-size: 16px;
  }

  .mv-inner .btn__link-text {
    font-size: 16px;
  }

  .btn__link-arrow {
    width: 32px;
  }

  .btn__link-arrow::after {
    width: 4px;
    height: 4px;
  }

  .mv-inner .btn__link-arrow {
    width: 32px;
  }

  .mv-inner .btn__link-arrow::after {
    width: 4px;
    height: 4px;
  }

  .btn__link-circle {
    width: 40px;
    height: 40px;
  }

  .mv-inner .btn__link-circle {
    width: 40px;
    height: 40px;
  }
}

/* ===============================
   Hover（線が伸びる）
================================ */
@media (any-hover: hover) {
  .btn__link:hover .btn__link-arrow {
    width: 8.125rem;
  }
}

.technology {
  -webkit-padding-before: 11.875rem;
  padding-block-start: 11.875rem;
}

.technology-inner {
  width: min(77.5rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
}

@media screen and (max-width: 0px) {
  .technology-inner {
    width: min(25.3125rem, 100%);
    padding-inline: 0.9375rem;
    margin-inline: auto;
  }
}

.section-title-en {
  font-family: "IBM Plex Sans";
  font-size: 8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(88deg, #072E45 10.84%, #1278B4 33.49%, #072E45 56.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.technology-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.625rem;
  -webkit-margin-before: 4.6875rem;
  margin-block-start: 4.6875rem;
}

.technology-texts {
  width: 62.5%;
}

.technology-text-ja {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.05rem;
}

.technology-text-en {
  color: #333;
  font-family: "IBM Plex Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.05rem;
  -webkit-margin-before: 1.5625rem;
  margin-block-start: 1.5625rem;
  -webkit-margin-after: 4.6875rem;
  margin-block-end: 4.6875rem;
}

.technology-content-right {
  position: relative;
  width: 46.5833333333%;
}

/* 個別の配置（あなたの元コード） */
.technology-content-core {
  position: absolute;
  width: 14.34125rem;
  top: 0;
  right: 20rem;
}

.technology-content-standard {
  position: absolute;
  width: 14.34125rem;
  right: 6.875rem;
}

.technology-content-patents {
  position: absolute;
  width: 14.34125rem;
  right: 13.4375rem;
  top: 11.25rem;
}

.technology-content-wireless {
  position: absolute;
  width: 14.34125rem;
  right: 0.3125rem;
  top: 11.25rem;
}

@media screen and (max-width: 767px) {
  .technology-contents {
    flex-direction: column-reverse;
  }

  .technology-content-right {
    width: 100%;
    height: 200px;
  }

  /* 個別の配置（あなたの元コード） */
  .technology-content-core {
    position: absolute;
    width: 100px;
    top: 0;
    right: 0;
  }

  .technology-content-standard {
    position: absolute;
    width: 100px;
    top: 0;
    right: 90px;
  }

  .technology-content-patents {
    position: absolute;
    width: 100px;
    right: 45px;
    top: 80px;
  }

  .technology-content-wireless {
    position: absolute;
    width: 100px;
    right: 135px;
    top: 80px;
  }

  .technology-texts {
    width: 100%;
  }

  .technology-text-ja {
    font-size: 16px;
  }

  .technology-text-en {
    font-size: 16px;
  }
}

/* 出現前（控えめに右から） */
.fade-item {
  opacity: 0;
  -webkit-transform: translateX(28px);
  transform: translateX(28px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out, opacity 0.8s ease-out;
  transition: transform 0.6s ease-out, opacity 0.8s ease-out, -webkit-transform 0.6s ease-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}

/* 出現後（自然にフェードイン） */
.fade-item.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* 画像用フェードインアニメーション */
.fade-in-image {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover した時だけ控えめに拡大 */
.technology-content-right>div img {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.technology-content-right>div:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.wave-blue {
  -webkit-margin-before: 1.875rem;
  margin-block-start: 1.875rem;
}

.business-inner {
  position: relative;
  width: min(96.25rem, 100%);
  padding: 0 1rem 4rem;
  margin-inline: auto;
}

.business-title {
  text-align: center;
}

.business-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.3125rem;
  -webkit-margin-before: 3.5625rem;
  margin-block-start: 3.5625rem;
  -webkit-margin-after: 4.25rem;
  margin-block-end: 4.25rem;
}

.business-card {
  position: relative;
  border-radius: 1.25rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5.29%, #ECF0F4), to(#C8D6E2));
  background: linear-gradient(180deg, #ECF0F4 5.29%, #C8D6E2 100%);
  width: 23.375rem;
  padding: 2.25rem 2.25rem 7.5rem;
}

.business-card__img img {
  border-radius: 0.625rem;
}

.business-card__title {
  color: #333;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.02125rem;
  -webkit-margin-before: 1.125rem;
  margin-block-start: 1.125rem;
  -webkit-margin-after: 1.25rem;
  margin-block-end: 1.25rem;
}

.business-card__text {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.05rem;
}

.business-btn-more {
  position: absolute;
  bottom: 2.25rem;
  right: 3.75rem;
}

.business-bg {
  position: absolute;
  bottom: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 1.25rem;
  background: linear-gradient(260deg, #2E7599 3.41%, #2E7499 24.04%, #223C52 93.72%);
  width: 100%;
  height: 41.0625rem;
}

.business-bg__title {
  color: #FFF;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.1125rem;
  -webkit-margin-after: 0.8125rem;
  margin-block-end: 0.8125rem;
}

.business-bg__text {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: 0.05rem;
}


@media screen and (max-width: 767px) {
  .business-cards {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 4rem;
  }

  .business-card {
    width: 100%;
    padding: 20px;
    padding-bottom: 50px;
  }

  .business-card__img {
    margin-bottom: 20px;
  }

  .business-card__title {
    font-size: 24px;
    text-align: left;
  }

  .business-card__text {
    font-size: 16px;
  }

  .business-btn-more {
    position: static;
  }

  .business-cards {
    gap: 24px;
  }

  .business-bg__title {
    font-size: 24px;
  }

  .business-bg__text {
    font-size: 16px;
  }

  .business-bg {
    height: 300px;
  }
}

/* ===============================
   ボタン全体（Sサイズ専用）
================================ */
.btn-s {
  display: inline-block;
  padding: 0.375rem 5rem 0.625rem 0;
  font-weight: 700;
  text-decoration: none;
}

.btn-s__text {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #25598C;
  font-family: "IBM Plex Sans";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.075rem;
}


/* ===============================
   横線（line）
================================ */
.btn-s__arrow {
  position: absolute;
  top: calc(50% + 0.1875rem);
  left: calc(100% + 0.875rem);
  translate: 0 -50%;
  width: 4.075rem;
  height: 0.125rem;
  background: #25598C;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

/* 先端の丸 */
.btn-s__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 50% -50%;
  width: 0.5rem;
  height: 0.5rem;
  background: #25598C;
  border-radius: 50%;
}

/* ===============================
   左が少し欠けた円（小サイズ）
================================ */
.btn-s__circle {
  position: absolute;
  top: calc(50% + 0.1875rem);
  left: calc(100% + 2.5rem);
  translate: 0 -50%;
  width: 5rem;
  height: 5rem;
}

/* -- 上の弧 -- */
.btn-s__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0.125rem solid transparent;
  border-right-color: #25598C;
  border-top-color: #25598C;
  -webkit-transform: rotate(-28deg);
  transform: rotate(-28deg);
  /* 欠け幅を少し広げた値 */
}

/* -- 下の弧 -- */
.btn-s__circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0.125rem solid transparent;
  border-right-color: #25598C;
  border-bottom-color: #25598C;
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
}

@media screen and (max-width: 767px) {
  .btn-s {
    padding: 0.375rem 20px 0.625rem 0;
  }

  .btn-s__text {
    font-size: 16px;
  }

  .business-card__text {
    margin-bottom: 20px;
  }

  .btn-s__arrow {
    width: 32px;
  }

  .btn-s__arrow::after {
    width: 4px;
    height: 4px;
  }

  .btn-s__circle {
    width: 40px;
    height: 40px;
  }

}

/* ===============================
   Hover
================================ */
@media (any-hover: hover) {
  .btn-s:hover .btn-s__arrow {
    width: 5.625rem;
  }
}

.animated__fadeIn {
  opacity: 0;
  transform: translateY(40px);
  -webkit-transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated__fadeIn.js-show {
  opacity: 1;
  transform: translateY(0);
}

/* 下層ページ用フェードインアニメーション */
.sub-page .fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sub-page .fade-in-on-scroll.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.info {
  -webkit-padding-before: 12.5rem;
  padding-block-start: 12.5rem;
  -webkit-padding-after: 5.3125rem;
  padding-block-end: 5.3125rem;
}

.info-inner {
  width: min(96.25rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1875rem;
}

.info-card {
  border-radius: 1.25rem;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.info-content {
  padding: 1.6875rem 2.1875rem;
}

.info-tag-dark {
  color: #FFF;
  text-align: center;
  font-family: Lato;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 1.25rem;
  background: #2A6193;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 0.9375rem;
}

.info-tag-light {
  color: #FFF;
  text-align: center;
  font-family: Lato;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 20px;
  background: #1E8EF3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 0.9375rem;
}

.info-title {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-margin-before: 0.875rem;
  margin-block-start: 0.875rem;
}

@media screen and (max-width: 767px) {
  .info-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-card {
    width: 100%;
  }

  .info-content {
    padding: 20px;
  }

  .info-tag-light {
    font-size: 16px;
  }

  .info-tag-dark {
    font-size: 16px;
  }

  .info-title {
    font-size: 20px;
  }

  .info-inner {
    width: 90%;
  }
}

.news {
  padding-block: 5rem;
}

.news-inner {
  width: min(90rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.75rem;
}

/* ----------------------
   タブデザイン
----------------------- */
.news-lists {
  width: 62.5rem;
  -webkit-margin-before: 1.875rem;
  margin-block-start: 1.875rem;
}

@media (max-width: 1100px) {
  .news-lists {
    width: 100%;
  }
}

.news-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 0.5rem;
  -webkit-margin-after: 1.875rem;
  margin-block-end: 1.875rem;
}

.news-tabs__item {
  padding: 0.25rem 2.3125rem;
  color: #0B5AD5;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.035rem;
  border-radius: 1rem;
  border: 0.0625rem solid #0B5AD5;
  font-size: 1rem;
}

.news-tabs__item[aria-selected=true] {
  border-radius: 1rem;
  border: 0.0625rem solid #0B5AD5;
  background: #0B5AD5;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.035rem;
}

.news-tabs__item:hover {
  cursor: pointer;
  opacity: 0.7;
}

/* ----------------------
   パネル（タブ切替表示）
----------------------- */
.news-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  translate: 0 !important;
}

.news-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

/* ----------------------
   記事リスト
----------------------- */
.article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.article-link {
  display: grid;
  grid-template-columns: 8.875rem 10rem 1fr 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 0;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.article-link:hover .article-arrow {
  -webkit-transform: translateX(0.375rem);
  transform: translateX(0.375rem);
}

.article-link:hover .article-title {
  text-decoration: underline;
}

.article-cat {
  display: inline-block;
  padding: 0.25rem 2.3125rem;
  border-radius: 1rem;
  border: 0.0625rem solid var(--h3_en, #0B5AD5);
  color: var(--h3_en, #0B5AD5);
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.035rem;
  white-space: nowrap;
  text-align: center;
  display: block;
  padding: 5px 10px;
}

.article-date {
  color: var(--777, #777);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.04rem;
  text-align: center;
  font-size: 1rem;
}

.article-title {
  color: var(--333, #333);
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  padding-right: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1rem;
  /* 表示させる行数 */
}

.article-arrow {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0C60FF;
  justify-self: end;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (max-width: 767px) {
  .news-inner {
    flex-direction: column;
  }

  .article-list {
    gap: 16px;
  }

  .article-item {
    border-bottom: 1px solid #E0E0E0;
  }

  .article-link {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
  }

  .article-cat {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 40px;
    width: fit-content;
  }

  .article-date {
    font-size: 14px;
  }

  .article-title {
    font-size: 14px;
  }

  .article-arrow {
    font-size: 24px;
  }

  .news-tabs__list {
    flex-wrap: wrap;
    justify-content: left;
    margin-bottom: 24px;
  }

  .news-tabs__item[aria-selected=true] {
    font-size: 14px;
    border-radius: 40px;
  }

  .news-tabs__item {
    font-size: 14px;
    white-space: nowrap;
    border-radius: 40px;
  }
}

.news-more {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.news-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #1A73E8;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;

  color: #1A73E8;
  background: #fff;
  text-decoration: none;

  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.news-more__btn:hover {
  background: #1A73E8;
  color: #fff;
  transform: translateY(-1px);
}

/* =============================
    FOOTER全体
============================= */
.footer {
  background-image: url(../img/footer/footer-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-padding-before: 17.5rem;
  padding-block-start: 17.5rem;
  -webkit-padding-after: 8.5625rem;
  padding-block-end: 8.5625rem;
}

/* =============================
    CTA（フッター上段）
============================= */
.footer-cta {
  width: min(77.5rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
  margin-bottom: 5rem;
}

.footer-cta__inner {
  width: min(81.375rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
}

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cta-card--wide {
  grid-column: 1/3;
}

.cta-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1.8125rem 2.125rem;
  border-radius: 1rem;
  text-decoration: none;
  -webkit-box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.cta-card:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.cta-card--recruit {
  border-radius: 1.25rem;
  background: #09244F;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(45, 77, 93, 0.26);
  box-shadow: 4px 4px 10px 0 rgba(45, 77, 93, 0.26);
}

.cta-card--download {
  border-radius: 1.25rem;
  background: #1668B0;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(45, 77, 93, 0.26);
  box-shadow: 4px 4px 10px 0 rgba(45, 77, 93, 0.26);
}

.cta-card--contact {
  border-radius: 1.25rem;
  background: #EBF4F9;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(45, 77, 93, 0.26);
  box-shadow: 4px 4px 10px 0 rgba(45, 77, 93, 0.26);
}

.cta-text {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.136rem + 1.15vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cta-text--blue {
  color: #0B5AD5;
  font-family: "Noto Sans JP";
  /* font-size: clamp(1.5rem, 1.136rem + 1.55vw, 3rem); */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.recruit-img {
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.recruit-img img {
  border-radius: 0.625rem;
}

.download-img {
  width: 50%;
}

.download-img img {
  border-radius: 0.625rem;
}

.contact-img {
  width: 50%;
}

.contact-img img {
  border-radius: 0.625rem;
}

.footer-inner {
  width: min(67.5rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
  -webkit-margin-before: 15.6875rem;
  margin-block-start: 15.6875rem;
}

.footer-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo {
  width: 19.625rem;
  flex-shrink: 0;
  margin-right: 3rem;
}

.footer-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  min-width: 180px;
  flex: 0 0 auto;
}

.footer-title {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.045rem;
  -webkit-margin-after: 1rem;
  margin-block-end: 1rem;
}

.footer-list {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.035rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.75rem;
}

.footer-list li {
  white-space: nowrap;
}

.footer-list li a {
  white-space: nowrap;
  display: inline-block;
}

.footer-list li a:hover {
  color: #1E8EF3;
}

.footer-bottom {
  -webkit-margin-before: 3.4375rem;
  margin-block-start: 3.4375rem;
}

.footer-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-bottom ul li a {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer-bottom ul li a:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .footer-cta {
    width: 90%;
  }

  .footer-cta__inner {
    width: 100%;
  }

  .cta-card--recruit {
    gap: 16px;
  }

  .cta-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cta-text {
    font-size: 16px;
  }

  .download-img img,
  .recruit-img img,
  .contact-img img {
    aspect-ratio: 152/60;
    object-fit: cover;
  }

  .footer-content-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-list {
    font-size: 14px;
  }

  .footer-bottom ul {
    justify-content: left;
    gap: 16px;
  }

  .footer-bottom {
    margin-top: 32px;
  }

  .footer-bottom ul li a {
    font-size: 12px;
    text-decoration: underline;
  }
}


/* グラデーションテキストのゆらゆらアニメーション */
.gradient-wave {
  background-size: 200% auto;
  animation: gradientWave 4s ease-in-out infinite;
}

@keyframes gradientWave {

  0%,
  100% {
    background-position: 0% center;
  }

  25% {
    background-position: 50% center;
  }

  50% {
    background-position: 100% center;
  }

  75% {
    background-position: 50% center;
  }
}

/* ここから下層 */
.sub-page {
  background: #F7F9FA;
}

.sub-page p {
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
}

.sub-page h1::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 140px;
  height: 14px;
  background: rgba(255, 255, 255, 0.80);
  margin: 16px 0;
}

.sub-page ._inner {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

.sub-page ._title h2 {
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: clamp(2.5rem, 1.286rem + 5.18vw, 7.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(88deg, #072E45 10.84%, #1278B4 33.49%, #072E45 56.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-page .sub-mv {
  height: 600px;
  background-image: url(../img/sub/company/sub-mv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 48px 0;
  box-sizing: border-box;
}

.sub-page .sub-mv .sub-mv-title h1 {
  color: #FFF;
  font-family: Outfit;
  font-size: clamp(2rem, 1.272rem + 3.11vw, 5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 8.82px;
}

.sub-page .sub-mv .sub-mv-title p {
  color: #FFF;
  font-family: Outfit;
  font-size: clamp(1.125rem, 0.791rem + 1.42vw, 2.5rem);
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 3.6px;
}

.sub-page .breadcrumbs {
  margin-bottom: 80px;
}

.sub-page#technology .breadcrumbs,
.sub-page#company .breadcrumbs {
  margin-bottom: 0;
}

.sub-page .breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

.sub-page#technology .breadcrumbs ul,
.sub-page#company .breadcrumbs ul {
  margin-top: 80px;
  margin-bottom: 0;
}

.sub-page .breadcrumbs li {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
  list-style: none;
}

.sub-page .breadcrumbs li::after {
  content: ">";
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.sub-page .breadcrumbs li:last-child::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .sub-page .sub-mv {
    height: 400px;
  }

  .sub-page ._inner {
    width: 90%;
  }

  .sub-page h1::after {
    height: 8px;
    margin: 8px 0;
  }

  .sub-page .breadcrumbs ul {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .sub-page .breadcrumbs li {
    font-size: 14px;
  }
}

/* =============================
  MESSAGE
============================= */
.message {
  position: relative;
  padding-bottom: 100px;
  background: linear-gradient(260deg, #2E7599 3.41%, #2E7499 24.04%, #223C52 93.72%);
  padding-top: 160px;
  padding-bottom: 160px;
}

.message-inner {
  position: relative;
  z-index: 2;
}

.message::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1448/498;
  background-image: url(../img/wave-blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.message p {
  color: #FFF;
}

.message::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 600px;
  background: #F7F9FA;
}

.message .message-title {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.message .message-title h2 {
  width: fit-content;
  margin: 0 auto;
}

.message .message-img {
  margin-bottom: 80px;
  position: relative;
}

.message .message-content-img-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}

.message .message-content-img-text h3 {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
}

.message .message-content-img-text h3 span {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.16px;
}

.message .message-text h3 {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: clamp(1.5rem, 1.136rem + 1.55vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.32px;
  margin-bottom: 56px;
}

.message .message-text-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0;
}

.message .message-text-layout img {
  width: 48%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .message {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .message::before {
    height: 15%;
  }

  .message .message-text-layout {
    flex-direction: column;
    gap: 24px;
  }

  .message .message-text-layout img {
    width: 100%;
    height: 100%;
  }
}

/* =============================
  INFO
============================= */

.info {
  position: relative;
  padding-bottom: 0;
}

.info ._title h2 {
  text-align: left;

}

.info-layout {
  width: 100%;
  display: flex;
  background: #FFF;
  padding-top: 48px;
  padding-bottom: 48px;
  box-sizing: border-box;
  margin-top: 96px;
  padding-left: calc(50vw - 50%);
  margin-left: calc(50% - 50vw);
}

.info-layout-text {
  width: 75%;
  min-width: 600px;
}

.info-layout-map {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 40px;
}

.info-layout-map iframe {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  box-sizing: border-box;
}

.info-layout-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
  padding: 24px 0;
  border-bottom: 1px solid #0B5AD5;
}

.info-layout-item p:first-child {
  width: 150px;
  flex-shrink: 0;
}

.info-layout-item p {
  color: #333;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  width: 100%;
}

.info-layout-item p:last-child {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1700px) {
  .info-layout-map {
    width: 40%;
  }

  .info-layout-text {
    min-width: auto;
  }
}

@media screen and (max-width: 767px) {
  .info {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #FFF;
  }

  .info-layout {
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
  }

  .info-layout-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .info-layout-text {
    width: 100%;
    margin-bottom: 40px;
  }

  .info-layout-map {
    position: static;
    width: 100%;
  }

  .info-layout-map iframe {
    min-height: 300px;
  }
}



/* =============================
  MEMBER
============================= */
.member {
  width: 96%;
  margin: 0 auto;
  padding: 80px 0;
  border-radius: 24px;
  background: linear-gradient(260deg, #0D2E3E 3.41%, #0D2E3E 24.04%, #335D81 93.72%);
}

.member ._title {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 24px;
}

.member ._title h2 {
  background: linear-gradient(88deg, #FFF 6.15%, #A2DCF9 26.31%, #FFF 38.7%, #FFF 53.39%, #A2DCF9 70.77%, #FFF 84.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.member ._title {
  margin-bottom: 56px;
}

.member-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.member-layout:has(._low) {
  grid-template-columns: repeat(3, 1fr);
}

.member-layout-item {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.member-layout-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
  transition: background 0.3s ease;
  pointer-events: none;
}

.member-layout-item:hover::before {
  background: rgba(0, 0, 0, 0.6);
}

.member-layout-img {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.member-layout-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 16px;
  box-sizing: border-box;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  z-index: 1;
}

.member-layout-text p {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
}

.member-layout-text h3 {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.88px;
}

.member-layout-text h3 span {
  color: #FFF;
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 30.6px */
  letter-spacing: 1.8px;
  padding-left: clamp(0.5rem, 0.379rem + 0.52vw, 1rem);
}

.member-layout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1.536px solid #FFF;
}

.member-layout-btn p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  white-space: nowrap;
}

.member-layout-btn::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background-image: url(../img/sub/company/member-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.member-layout-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px 16px;
  box-sizing: border-box;
  display: flex;
  align-items: start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
  overflow-y: auto;
}

.member-layout-hover p {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 16px 0;
  box-sizing: border-box;
}

.member-layout-item:hover .member-layout-hover {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .member-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .member-layout:has(._low) {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
  }

  .member-layout-item {
    width: 100%;
  }

  .member-layout-img {
    width: 100%;
    height: 100%;
  }

  .member-layout-text h3 {
    font-size: 20px;
  }

  .member-layout-text h3 span {
    font-size: 16px;
  }

  ._low .member-layout-content {
    padding: 8px;
  }

  ._low .member-layout-text h3 {
    font-size: 16px;
  }

  ._low .member-layout-text p {
    font-size: 14px;
  }

  ._low .member-layout-text h3 span {
    font-size: 14px;
  }

  ._low .member-layout-btn {
    display: none;
  }

  .member-layout-hover {
    align-items: flex-start;
    padding: 0 16px;
  }

  .member-layout-hover p {
    padding: 8px 0;
  }
}

/* =============================
  FINANCE
============================= */
.finance {
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
}

.finance ._inner {
  position: relative;
  z-index: 2;
}

.finance-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  margin-bottom: 32px;
  margin-top: 56px;
}

.finance-text ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.finance-text li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

.finance-text li::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: #0B5AD5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.finance-text-img {
  width: 260px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

.finance-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.finance-layout-item {
  width: 70%;
  max-width: calc(100% - 300px);
}

.finance-layout-img {
  width: 260px;
  position: absolute;
  right: 0;
  top: 0;
}

.finance-dec {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 2298/470;
}

.finance-text-item p {
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .finance {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .finance-text {
    flex-direction: column;
    gap: 16px;
  }

  .finance-text-item {
    width: 100%;
  }

  .finance-text-item p {
    font-size: 1.25rem;
  }

  .finance-text li {
    font-size: 0.875rem;
  }

  .finance-text-item ul {
    flex-direction: column;
    gap: 8px;
  }

  .finance-text-img {
    position: static;
    width: 100%;
    transform: translate(0, 0);
  }

  .finance-text-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .finance-layout {
    display: block;
  }

  .finance-layout-item {
    width: 100%;
    max-width: 100%;
  }

  .finance-layout-img {
    position: static;
    width: 100%;
    transform: translate(0, 0);
  }

  .finance-layout-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .finance-dec {
    width: 100%;
  }

}

/* =============================
  HISTORY
============================= */

.history {
  padding-top: 160px;
  padding-bottom: 160px;
}

.history ._inner {
  width: 94%;
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: left;
  max-width: 1400px;
}



.history-list {
  position: relative;
}

.history-list::before {
  content: "";
  display: block;
  width: 1px;
  height: 92%;
  background: #C7CED0;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.history-list-item {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}

.history-list-item::after {
  content: "";
  display: block;
  width: 97%;
  height: 1px;
  background: #E9EFF2;
  position: absolute;
  bottom: 0;
  right: 0;
}

.history-list-item h3 {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 24px;
  width: 25%;
  min-width: 160px;
  color: #0B5AD5;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.88px;
  white-space: nowrap;
}

.history-list-item h3::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: #0B5AD5;
  border-radius: 50%;
}

.history-list-item p {
  width: 70%;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

@media screen and (max-width: 767px) {
  .history ._inner {
    flex-direction: column;
    gap: 24px;
  }

  .history-list::before {
    height: 100%;
  }

  .history-list-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .history-list-item::after {
    width: 100%;
  }

  .history-list-item h3 {
    width: 100%;
  }

  .history-list-item p {
    width: 100%;
    padding-left: 32px;
  }
}

/* =============================
  TECHNOLOGY
============================= */
#technology.sub-page .sub-mv {
  background-image: url(../img/sub/technology/sub-mv-bg.webp);
}

.technology-about {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(48, 63, 78, 0.00) 0%, rgba(24, 32, 41, 0.50) 24.94%, #000204 100%);
}

.technology-about::before {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  background-image: url(../img/wave-blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -5%;
  left: 0;
}

.technology-about-inner {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.technology-about-title p {
  color: #FFF;
  font-family: Outfit;
  font-size: clamp(1.125rem, 0.913rem + 0.91vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 51.2px */
  letter-spacing: 2.88px;
  margin-bottom: 16px;
}

.technology-about-title h2 {
  color: #FFF;
  font-family: Outfit;
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 64px */
  letter-spacing: 3.6px;
  margin-bottom: 48px;
}

.technology-about-layout {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 24px;
}

.technology-about-text {
  flex: 1 1 0;
  min-width: 0;
}

.technology-about-text p {
  color: #FFF;
}

.technology-about-img {
  margin-right: calc(50% - 50vw);
  flex: 1;
}

@media screen and (max-width: 767px) {
  .technology-about {
    padding: 40px 0;
  }

  .technology-about-img {
    margin-right: 0;
  }
}

/* =============================
  TECHNOLOGY ISSUE
============================= */
.technology-issue {
  background-image: url(../img/sub/technology/technology-issue-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.technology-issue-inner>h2 {
  white-space: nowrap;
  text-align: center;
  font-family: "Noto Sans";
  font-size: clamp(1.25rem, 0.34rem + 3.48vw, 5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 132.749px */
  letter-spacing: 8.534px;
  background: linear-gradient(263deg, #FCFFCE 1.36%, #FFF 100.49%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.technology-issue-title {
  margin-top: clamp(4rem, 2.847rem + 4.92vw, 8.75rem);
}

.technology-issue-title h2 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans";
  font-size: clamp(1.125rem, 0.549rem + 2.46vw, 3.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 89.6px */
  letter-spacing: 5.04px;
}

.technology-issue-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.technology-issue-item {
  border-radius: 20px;
  background: linear-gradient(180deg, #ECF0F4 5.29%, #C8D6E2 100%);
  box-shadow: 0 4px 9.8px 0 rgba(13, 49, 75, 0.10);
  ;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.technology-issue-img {
  width: 100%;
}

.technology-issue-text {
  text-align: center;
}

.technology-issue-text h3 {
  color: #333;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 37.4px */
  letter-spacing: -0.34px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .technology-issue-title h2 {
    font-size: 24px;
  }

  .technology-issue-layout {
    grid-template-columns: 1fr;
  }
}

/* =============================
  TECHNOLOGY CORE
============================= */
.technology-core {
  position: relative;
  background: linear-gradient(180deg, #0B141B 0%, #2F597A 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 240px 0 400px;
  overflow: hidden;
}

.technology-core::before {
  content: "";
  display: block;
  width: 25%;
  height: 100%;
  background-image: url(../img/sub/technology/core-left.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.technology-core::after {
  content: "";
  display: block;
  width: 25%;
  height: 100%;
  background-image: url(../img/sub/technology/core-right.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.technology-core-inner {
  position: relative;
  z-index: 3;
}

.technology-core-content h2 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans";
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 64px */
  letter-spacing: 3.6px;
}

.technology-core-content img {
  width: 100%;
  max-width: 500px;
  margin: 80px auto 40px;
  display: block;
}

.technology-core-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}

.technology-core-tag {
  border: 2px solid #FFF;
  border-radius: 50px;
  padding: 8px 24px;
  box-sizing: border-box;
}

.technology-core-tag p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}

.technology-core-bg1 {
  position: absolute;
  top: 50%;
  transform: translate(-40%, -50%);
  left: 0;
  width: 55%;
  aspect-ratio: 945.6/626;
  object-fit: cover;
  filter: blur(4px);
  border-radius: 80%;
  overflow: hidden;
  z-index: 1;
}

.technology-core-bg2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  transform: translateX(30%);
  aspect-ratio: 945.6/626;
  object-fit: cover;
  filter: blur(4px);
  border-radius: 80%;
  overflow: hidden;
  z-index: 1;
}

.technology-core-bg3 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(10%, 20%);
  width: 55%;
  aspect-ratio: 945.6/626;
  object-fit: cover;
  filter: blur(4px);
  border-radius: 80%;
  overflow: hidden;
  z-index: 1;
}

/* 大画面（1700px以上）での調整 - 追加 */
@media screen and (min-width: 1700px) {
  .technology-core-bg2 {
    top: 0%;
    width: 45%;
    transform: translateX(25%);
  }

  .technology-core-bg3 {
    bottom: 0%;
    width: 50%;
    transform: translate(10%, 15%);
  }
}

/* 超大画面（2000px以上）での調整 - 追加 */
@media screen and (min-width: 2000px) {
  .technology-core-bg2 {
    top: 0%;
    width: 35%;
    transform: translateX(20%);
  }

  .technology-core-bg3 {
    bottom: 0%;
    width: 40%;
    transform: translate(10%, 10%);
  }
}

@media screen and (max-width: 767px) {
  .technology-core {
    padding: 120px 0 200px;
  }

  .technology-core-content img {
    margin: 40px auto 20px;
  }

  .technology-core-layout {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =============================
  TECHNOLOGY wireless
============================= */
.sub-page ._gradation-title h2 {
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: clamp(1.5rem, 1.015rem + 2.07vw, 3.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(88deg, #072E45 10.84%, #1278B4 33.49%, #072E45 56.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;

}

.wireless {
  position: relative;
  padding: 160px 0 0;
}

.wireless::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1448/498;
  background-image: url(../img/wave-blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0.2;
  top: 0;
  left: 0;
  z-index: 1;
}

.wireless-inner {
  position: relative;
  z-index: 2;
}

.wireless-inner p {
  text-align: center;
  margin-bottom: 80px;
}

.wireless-graph {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.wireless-graph:hover {
  opacity: 0.8;
}

.wireless-graph-img {
  width: 100%;
  height: auto;
  display: block;
}

/* モーダル */
.wireless-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.wireless-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wireless-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.wireless-modal-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.wireless-modal-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.wireless-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 0;
  z-index: 3;
}

.wireless-modal-close:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .wireless {
    padding: 80px 0;
  }
}

/* =============================
  TECHNOLOGY STANDARD
============================= */
.standard {
  padding: 160px 0 0;
}

.sub-page .standard-title h2 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(88deg, #FFF 6.15%, #A2DCF9 26.31%, #FFF 38.7%, #FFF 53.39%, #A2DCF9 70.77%, #FFF 84.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.standard-bg {
  width: 98%;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(260deg, #0D2E3E 3.41%, #0D2E3E 24.04%, #335D81 93.72%);
  padding: 80px 0;
  position: relative;
}

.standard-bg::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1448/498;
  background-image: url(../img/wave-blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 35%;
  left: 0;
  z-index: 1;
}

.standard-inner {
  position: relative;
  z-index: 2;
}

.standard-content-title {
  width: fit-content;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 1.5px solid #FFF;
  margin-bottom: 32px;
}

.standard-content-title p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
}

.standard-content-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.standard-content-flex-text p {
  color: #FFF;
  text-align: center;
  margin: 32px 0 80px;
}

.standard-content-flex .standard-content-flex-text p {
  text-align: left;
  margin: 0;
}

.sub-page .line-btn {
  display: flex;
  gap: 5%;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  border: 1.536px solid #FFF;
  position: relative;
}

.sub-page .line-btn p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
}

.sub-page .line-btn .line-btn-arrow {
  position: relative;
  content: "";
  display: block;
  width: 20%;
  height: 1px;
  background: #FFF;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: width 0.3s ease;
}

.sub-page .line-btn .line-btn-arrow::before {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
}

.sub-page .line-btn:hover .line-btn-arrow {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .standard {
    padding: 0 0 80px;
  }
}




/* =============================
  TECHNOLOGY PATENTS
============================= */
.patents {
  padding: 160px 0 0;
}

.patents-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.patents-content-text {
  width: 60%;
}

.patents-content-img {
  width: 40%;
}

.patents-content-img img {
  object-fit: contain;
}

._list-box {
  border-radius: 16px;
  background: #EAF3F5;
  padding: 24px;
  box-sizing: border-box;
}

.patents-list-title {
  width: fit-content;
  border-radius: 4px;
  border: 1.5px solid #0B5AD5;
  padding: 8px 16px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.patents-list-title p {
  color: #0B5AD5;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
}

.patents-list-item {
  margin-bottom: 16px;
  font-weight: 400;
}

.patents-list-item a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .standard-content-flex {
    flex-direction: column;
    gap: 16px;
  }
}

/* =============================
  TECHNOLOGY PAPERS
============================= */
.papers {
  padding: 160px 0 160px;
}

.papers-inner>p {
  text-align: center;
  margin-bottom: 24px;
}

.papers-list-title {
  width: fit-content;
  border-radius: 4px;
  border: 1.5px solid #0B5AD5;
  padding: 8px 16px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.papers-list-title {
  color: #0B5AD5;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
}

.papers-box a {
  text-decoration: underline;
}



@media screen and (max-width: 767px) {
  .patents-layout {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .papers-box {
    padding: 16px;
  }

  .papers-list-title {
    margin-bottom: 16px;
  }

  .papers-box a {
    font-size: 14px;
  }

  .patents-content-text {
    width: 100%;
  }

  .patents-content-img {
    width: 60%;
    margin: 0 auto;
  }

  .patents-list-title {
    margin-bottom: 16px;
  }

  .patents-list-item {
    margin-bottom: 16px;
  }

  .patents-list-item a {
    text-decoration: underline;
  }

}

/* =============================
  FA TECHNOLOGY
============================= */

#fa.sub-page .sub-mv {
  background-image: url(../img/sub/fa/sub-mv-bg.webp);
}

.fa-about-img-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fa-about-layout {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  gap: 24px;
  margin-bottom: 120px;
}

.fa-about-layout._reverse {
  flex-direction: row-reverse;
}

.fa-about-layout:nth-child(2)::before {
  content: "";
  display: block;
  width: 50vw;
  aspect-ratio: 1448/498;
  background-image: url(../img/wave-blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15%;
  left: calc(50% - 50vw);
  transform: translateY(100%);
  z-index: 2;
}

.fa-about-layout:nth-child(3)::before {
  content: "";
  display: block;
  width: 50vw;
  aspect-ratio: 1448/498;
  background-image: url(../img/wave-blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15%;
  right: calc(50% - 50vw);
  transform: translateY(100%);
  z-index: 2;
}

.fa-about-layout::after {
  content: "";
  display: block;
  width: 70%;
  height: 70%;
  background: #fff;
  position: absolute;
  border-radius: 16px;
  bottom: -15%;
  right: -10%;
  z-index: 1;
}

.fa-about-layout._reverse::after {
  right: auto;
  left: -10%;
}

.fa-about-img {
  width: 50%;
  height: 100%;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(260deg, #2E7599 3.41%, #2E7499 24.04%, #223C52 93.72%);
  position: relative;
  z-index: 3;
}

.fa-about-img-text {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  margin-bottom: 8px;
}

.fa-about-img-text h3 {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1.5px solid #FFF;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.fa-about-img-text p {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 38.4px */
  letter-spacing: 2.16px;
}

.fa-about-text {
  width: 50%;
  position: relative;
  z-index: 3;
}

.fa-about-text p {
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 38.4px */
  letter-spacing: 2.16px;
}

@media screen and (max-width: 767px) {
  .fa-about-layout {
    flex-direction: column;
    gap: 40px;
  }

  .fa-about-layout._reverse {
    flex-direction: column;
  }

  .fa-about-img {
    width: 100%;
  }

  .fa-about-text {
    width: 100%;
    background: none;
  }

  .fa-about-layout::after {
    display: none;
  }

  .fa-solution-img {
    display: none;
  }

  .sub-page .fa-solution-inner {
    width: 100%;
    padding: 0 5%;
    background: linear-gradient(260deg, #2E7599 3.41%, #2E7499 24.04%, #223C52 93.72%);
  }

  .fa-solution-text {
    padding-left: 0;
    margin-left: 0;
    width: 100%;
  }

  .fa-about-img-text h3 {
    font-size: 16px;
    padding: 4px 12px;
  }

  .fa-about-img-text p {
    font-size: 16px;
  }

  .fa-about-text p {
    font-size: 14px;
  }
}

/* =============================
  FA BELT
============================= */
.fa-solution-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.fa-solution-text {
  padding: 80px 0;
  width: 50%;
  padding-left: calc(50vw - 50%);
  margin-left: calc(50% - 50vw);
  background: linear-gradient(260deg, #2E7599 3.41%, #2E7499 24.04%, #223C52 93.72%);
  flex: 1;
}

.fa-solution-img {
  width: 50%;
  padding-right: calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  flex: 1;
  background-image: url(../img/sub/fa/fa-solution-img.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-page .fa-solution-title h2 {
  text-align: left;
  background: linear-gradient(88deg, #FFF 6.15%, #A2DCF9 26.31%, #FFF 38.7%, #FFF 53.39%, #A2DCF9 70.77%, #FFF 84.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-solution-text p {
  color: #FFF;
}

/* =============================
  FA JOINT
============================= */
.fa-joint {
  position: relative;
  padding: 80px 0;
}

.fa-joint-inner p {
  text-align: center;
  margin-bottom: 64px;
}


/* =============================
  FA KIT
============================= */
.fa-kit {
  position: relative;
  padding: 80px 0;
  width: 98%;
  border-radius: 24px;
  background: linear-gradient(260deg, #0D2E3E 3.41%, #0D2E3E 24.04%, #335D81 93.72%);
}

.fa-kit-inner {
  position: relative;
  z-index: 3;
}

.fa-kit-inner>p {
  text-align: center;
  margin-bottom: 64px;
  color: #FFF;
}

.fa-kit::before {
  content: "";
  display: block;
  width: 20%;
  aspect-ratio: 1/3;
  background-image: url(../img/sub/technology/core-left.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}

.fa-kit::after {
  content: "";
  display: block;
  width: 20%;
  aspect-ratio: 1/3;
  background-image: url(../img/sub/technology/core-right.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.sub-page .fa-kit-title h2 {
  background: linear-gradient(88deg, #FFF 6.15%, #A2DCF9 26.31%, #FFF 38.7%, #FFF 53.39%, #A2DCF9 70.77%, #FFF 84.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-kit-text {
  margin: 80px 0;
}

.fa-kit-text p {
  color: #FFF;
  text-align: center;
}





/* =============================
  BM
============================= */
#bm.sub-page .sub-mv {
  background-image: url(../img/sub/bm/sub-mv-bg.webp);
}

#bm ._gradation-title {
  font-size: clamp(1.25rem, 0.825rem + 1.81vw, 3rem);
}

#bm .bm-about-left p,
#bm .bm-about-right p {
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 48px */
  letter-spacing: 2.16px;
}

.bm-about {
  position: relative;
  padding-bottom: 120px;
}

.bm-about ._inner {
  position: relative;
  z-index: 2;
}

.bm-about::before {
  content: "";
  display: block;
  width: 40%;
  border-radius: 40%;
  aspect-ratio: 1.2/1;
  background-image: url(../img/sub/bm/bm-about1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  filter: blur(1px);
  right: 0;
  top: 0;
  box-shadow: inset 0 0 50px 20px rgba(255, 255, 255, 1);
}

.bm-about::after {
  content: "";
  display: block;
  width: 40%;
  border-radius: 40%;
  aspect-ratio: 1.2/1;
  background-image: url(../img/sub/bm/bm-about2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  filter: blur(1px);
  left: 0;
  bottom: 0;
  box-shadow: inset 0 0 50px 20px rgba(255, 255, 255, 1);
}

.bm-about-left {
  width: fit-content;
  margin-right: auto;
  margin-bottom: 80px;
}

.bm-about-right {
  width: fit-content;
  margin-left: auto;
  color: #000;
}

@media screen and (max-width: 767px) {
  .bm-about-left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .bm-about-right {
    width: 100%;
    margin-left: 0;
  }

  #bm .bm-about-left p,
  #bm .bm-about-right p {
    font-size: 16px;
    text-align: left;
  }
}

/* =============================
  BM AIRPLUG
============================= */
.bm-airplug {
  position: relative;
  padding: 80px 0 300px;
}

.bm-airplug::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1448/300;
  background-image: url(../img/wave-blue.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;

}

.bm-airplug-inner {
  position: relative;
  z-index: 3;
}

.bm-airplug-title p {
  color: #09244F;
  text-align: center;
  font-family: Outfit;
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 48px */
  letter-spacing: 2.88px;
  margin-bottom: 24px;
}

.bm-airplug-title {
  max-width: 800px;
  margin: 0 auto;
}

.bm-airplug-title img {
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 1400px) {
  .bm-airplug {
    padding: 80px 0 140px;
  }

  .bm-airplug::after {
    aspect-ratio: 1448/410;
    background-position: center;
  }
}

/* =============================
  BM FEATURES
============================= */
.bm-features {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.bm-features-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 80px;
}

.bm-features-flex-item {
  width: 50%;
}

.bm-features-flex-item img {
  width: 100%;
  height: auto;
  display: block;
}

.bm-features-flex-item>p {
  margin-bottom: 56px;
}

.bm-features-flex-item .line-btn {
  border: 1.5px solid #333;
  margin-left: 0;
}

.bm-features-flex-item .line-btn p {
  color: #333;
}

.bm-features-flex-item .line-btn .line-btn-arrow {
  background: #333;
}

.bm-features-flex-item .line-btn .line-btn-arrow::before {
  background: #333;
}

@media screen and (max-width: 767px) {
  .bm-features-flex {
    flex-direction: column;
    gap: 32px;
  }

  .bm-features-flex-item {
    width: 100%;
  }

  .bm-features-flex-item img {
    width: 100%;
  }
}

/* =============================
  BM ANALYSIS
============================= */
.bm-analysis {
  position: relative;
  padding: 80px 0;
  margin-top: 160px;
}

.bm-analysis::before {
  content: "";
  display: block;
  background-image: url(../img/sub/bm/analysis-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -160px;
  left: 0;
  width: 100%;
  height: 100%;
}

.bm-analysis-inner {
  max-width: 1400px;
}

.bm-analysis-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 0 40px 24px 0;
  position: relative;
  bottom: -40%;
}

.bm-analysis-flex-text {
  width: 40%;
  padding-left: calc(50vw - 50%);
  margin-left: calc(50% - 50vw);
  padding-right: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
  flex: 1;
  background: linear-gradient(90deg, #0D2E3E 3.41%, #0D2E3E 24.04%);
}

.sub-page .bm-analysis-flex-text h2 {
  text-align: left;
  background: linear-gradient(88deg, #FFF 6.15%, #A2DCF9 26.31%, #FFF 38.7%, #FFF 53.39%, #A2DCF9 70.77%, #FFF 84.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bm-analysis-flex-text p {
  color: #FFF;
}

.bm-analysis-flex-img {
  width: 60%;
  padding-right: calc(48vw - 50%);
  margin-right: calc(50% - 48vw);
  flex: 1;
  background: linear-gradient(90deg, #0D2E3E 3.41%, #0D2E3E 24.04%, #335D81 93.72%);
  border-radius: 0 24px 24px 0;
}

.bm-analysis-flex-img img {
  position: relative;
  transform: translateY(10%);
}

@media screen and (max-width: 767px) {
  .bm-analysis-flex {
    flex-direction: column;
    gap: 32px;
  }

  .bm-analysis-flex-text {
    width: 100%;
  }
}

.bm-analysis-flex-img {
  width: 100%;
  padding-right: 0;
  margin-right: 0;
}

.bm-analysis-flex-img img {
  width: 100%;
}



/* =============================
  MI
============================= */
.sub-page#mi .sub-mv {
  background-image: url(../img/sub/mi/sub-mv-bg.webp);
}

.mi-about {
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}

.mi-about::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1448/208;
  background: url(../img/wave-blue.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(15%);
  z-index: 1;
}

.mi-about-layout {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
}

.mi-about-text {
  width: 50%;
}

.mi-about-img {
  width: 50%;
}

.mi-about-img p {
  text-align: right;
  color: #595959;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.44px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .mi-about::before {
    transform: translateY(0);
  }

  .mi-about-layout {
    flex-direction: column;
    gap: 32px;
  }

  .mi-about-text {
    width: 100%;
  }

  .mi-about-img {
    width: 100%;
  }
}

/* =============================
  MI STUDY
============================= */
.mi-study {
  position: relative;
  padding: 80px 0;
  width: 98%;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(260deg, #0D2E3E 3.41%, #0D2E3E 24.04%, #335D81 93.72%);
}

.mi-study h2 {
  text-align: center;
  color: #FFF;
  font-family: "Noto Sans";
  font-size: clamp(1.5rem, 1.136rem + 1.55vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.32px;
  margin-bottom: 56px;
}

.mi-study-layout {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 56px;
}

.mi-study-item-text {
  margin-top: 24px;
}

.mi-study-item-text>p {
  color: #FFF;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .mi-study-layout {
    flex-direction: column;
    gap: 32px;
  }

  .mi-study-item-text>p {
    margin-bottom: 24px;
  }
}

/* =============================
  MI FUTURE
============================= */
.mi-future {
  position: relative;
  padding: 120px 0;
  background: #F7F9FA;
}

.mi-future-inner>p {
  margin-bottom: 80px;
  text-align: center;
}

.mi-future .line-btn {
  margin: 0 auto;
  border: 1.5px solid #333;
}

.mi-future .line-btn p {
  color: #333;
}

.mi-future .line-btn .line-btn-arrow {
  background: #333;
}

.mi-future .line-btn .line-btn-arrow::before {
  background: #333;
}

/* =============================
  PRIVACY POLICY
============================= */

/* プライバシーポリシー専用 */
#privacy-policy {
  margin: 0 auto;
  line-height: 1.8;
  font-size: 14px;
}

/* 見出し */
#privacy-policy h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

/* 通常本文 */
#privacy-policy p {
  margin-bottom: 16px;
}

/* リスト */
#privacy-policy ul {
  margin: 16px 0 24px;
  padding-left: 1.5em;
}

#privacy-policy li {
  margin-bottom: 8px;
}

/* li内pのマージン事故防止 */
#privacy-policy li p {
  margin: 0;
}

/* 制定日など補足文 */
#privacy-policy small {
  display: block;
  margin-top: 40px;
  color: #666;
  font-size: 12px;
}

/* =========================================================
  STANDARDIZATION 
========================================================= */
#standardization {
  --bp-sp: 768px;
  --blue: #007DC6;
}

/* -------------------------
  Standard section
------------------------- */
#standardization .standard-content-flex-text p {
  font-size: 1em;
}

@media (max-width: 768px) {
  #standardization .standard-content-flex-text {
    font-size: 0.9em;
    line-height: 1.8;
  }
}

/* bargraphのみサイズ調整 */
#standardization .bargraph-img {
  max-width: 400px;
  width: 100%;
}

#standardization .bargraph-img img {
  width: 100%;
  height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  #standardization .bargraph-img {
    max-width: 70% !important;
  }

  #standardization .bargraph-img img {
    max-width: 70% !important;
  }
}

/* 世界地図画像を大きく表示 */
#standardization .worldmap-img {
  max-width: 650px !important;
  width: 100%;
  flex: 0 0 auto;
}

#standardization .worldmap-img img {
  max-width: 700px !important;
  width: 100%;
  height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  #standardization .worldmap-img {
    max-width: 100% !important;
  }

  #standardization .worldmap-img img {
    max-width: 100% !important;
  }
}

/* =============================
  Standardizationページ専用設定
============================= */

/* wireless-graphのインタラクションを無効化（Standardizationページのみ） */
#standardization .wireless-graph {
  cursor: default !important;
  transition: none !important;
}

#standardization .wireless-graph:hover {
  opacity: 1 !important;
}

#standardization .wireless-graph-img {
  cursor: default !important;
  pointer-events: none;
}

/* -------------------------
  Rulemaker section
------------------------- */
#standardization .rulemaker .rulemaker-text {
  text-align: center;
  margin: 30px 0;
  line-height: 2em;
  font-size: clamp(0.875rem, 0.5rem + 1.2vw, 1.25rem);
}

@media (max-width: 768px) {
  #standardization .rulemaker .rulemaker-text {
    font-size: 0.875em;
  }
}

/* -------------------------
  Use case base
------------------------- */
#standardization .use-case {
  position: relative;
  padding-top: 120px;
}

@media (max-width: 768px) {
  #standardization .use-case {
    padding-top: 10px;
    /* スマホでは少し小さめ */
  }
}

#standardization .use-case .use-case-inner {
  margin-bottom: 20px;
}

/* Card (blue background) */
#standardization .use-case-layout {
  position: relative;
  background-color: var(--blue);
  width: 100%;
  padding: 30px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #standardization .use-case-layout {
    padding: 10px;
  }
}

/* ここ重要：元の「.use-case-layout p, h3」は h3 全体に当たるので必ず修正 */
#standardization .use-case-layout p,
#standardization .use-case-layout h3 {
  color: #fff;
}

/* Pacemaker */
#standardization .use-case-pacemaker-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  #standardization .use-case-pacemaker-title {
    font-size: 1.1em;
  }
}

#standardization .use-case-pacemaker-title-box {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  #standardization .use-case-pacemaker-title-box {
    margin-bottom: 30px;
  }
}

#standardization .use-case .use-case-pacemaker-sentence {
  font-size: 1.1em;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #standardization .use-case .use-case-pacemaker-sentence {
    font-size: 0.6em;
    margin-bottom: 0;
  }
}

/* 元のこれ↓は構造的に効きにくい（sentenceの中にtitle-boxは入ってない）ので無効化
#standardization .use-case-pacemaker-sentence .use-case-pacemaker-title-box { font-size: 6px; }
*/

/* WPT image */
#standardization .use-case-wpt {
  position: absolute;
  right: 6%;
  top: 22%;
  max-width: 160px;
}

@media (max-width: 768px) {
  #standardization .use-case-wpt {
    right: 3%;
    top: 28%;
    max-width: 100px;
  }
}

/* -------------------------
  TPMS
------------------------- */
#standardization .use-case-tpms-title {
  font-size: 24px;
  margin-bottom: 30px;
}

/* 元コードに 1.5em と 1em が混在していたので、後勝ちの 1em に統一 */
@media (max-width: 768px) {
  #standardization .use-case-tpms-title {
    font-size: 1em;
  }
}

/* TPMS main box */
#standardization .use-case-tpms-main-box {
  background-color: rgba(233, 239, 242, 0.8);
  border-radius: 24px;
  padding: 50px;
}

@media (max-width: 768px) {
  #standardization .use-case-tpms-main-box {
    padding: 10px 20px;
  }
}

#standardization .use-case-tpms-main-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* TPMS sub flex */
#standardization .use-case-tpms-sub-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* left/right widths */
#standardization .use-case-tpms-sub-box-left {
  flex: 0 0 70%;
  min-width: 0;
}

#standardization .use-case-tpms-sub-box-right {
  flex: 0 0 30%;
  min-width: 0;
}

@media (max-width: 768px) {
  #standardization .use-case-tpms-sub-box-left {
    flex: 0 0 48%;
  }

  #standardization .use-case-tpms-sub-box-right {
    flex: 0 0 50%;
  }
}

/* second row special */
#standardization .use-case .second-left {
  flex: 1 1 60%;
  min-width: 0;
}

#standardization .use-case .second-right {
  flex: 1 1 30%;
  min-width: 0;
}

/* sentence */
#standardization .use-case .use-case-tpms-sub-box-sentence {
  font-size: clamp(0.8rem, 0.015rem + 1.87vw, 1.1rem);
  color: var(--blue);
  margin-bottom: 20px;
  font-family: 'Noto sans JP';
}

@media (max-width: 768px) {
  #standardization .use-case .use-case-tpms-sub-box-sentence {
    font-size: 0.8em;
  }
}

/* -------------------------
  TPMS parking block
------------------------- */
#standardization .use-case-tpms-parking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 40px;
  margin-top: 24px;
}

/* 重要：横並びで潰れない */
#standardization .use-case-tpms-parking__media,
#standardization .use-case-tpms-parking__panel {
  min-width: 0;
}

#standardization .use-case-tpms-parking__media {
  flex: 0 1 40%;
  max-width: 350px;
}

#standardization .use-case-tpms-parking__img {
  width: 100%;
  height: auto;
  display: block;
}

#standardization .use-case-tpms-parking__panel {
  flex: 0 1 46%;
  min-width: 320px;
  border-radius: 6px;
  padding: 18px 0;
  margin-top: 80px;
}

#standardization .use-case-tpms-parking__list {
  margin: 0 0 0 -30px;
  padding: 0;
  list-style: none;
}

#standardization .use-case-tpms-parking__list li {
  position: relative;
  padding-left: 1.2em;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.7;
}

#standardization .use-case-tpms-parking__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

#standardization .use-case-tpms-parking__list li+li {
  margin-top: 10px;
}

@media (max-width: 768px) {
  #standardization .use-case-tpms-parking {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  #standardization .use-case-tpms-parking__media {
    flex: 0 1 auto;
    width: 60%;
    max-width: 250px;
    margin: 0 auto;
  }

  #standardization .use-case-tpms-parking__panel {
    flex: 1 1 auto;
    width: 100%;
  }

  #standardization .use-case-tpms-parking__panel {
    margin-top: 0;
    padding: 0;
    min-width: 0;
    /* SPで320px固定が邪魔なので解除 */
  }

  #standardization .use-case-tpms-parking__list li {
    font-size: 0.75em;
  }

  /* スマホでは左マージンをリセット */
  #standardization .use-case-tpms-parking__list {
    margin-left: 0 !important;
  }
}

/* 900px以下のwrap指定は、768以下の縦積みとバッティングするので中間帯だけに適用 */
@media (max-width: 900px) and (min-width: 769px) {
  #standardization .use-case-tpms-parking {
    flex-wrap: wrap;
    gap: 18px;
  }

  #standardization .use-case-tpms-parking__media,
  #standardization .use-case-tpms-parking__panel {
    flex: 1 1 100%;
    padding: 10px;
  }
}

/* -------------------------
  Wave
------------------------- */
/* Standardizationページの背景wave-blueを削除 */
#standardization .standard-bg::before {
  display: none !important;
  background-image: none !important;
}

/* =============================
  news
============================= */
#news.sub-page .sub-mv {
  background-image: url(../img/sub/news/sub-mv-bg.webp);
}

#news .news-inner {
  flex-direction: column;
}

#news .news-lists {
  margin: auto;
}

#news .section-title {
  margin: auto;
}

#news .news-year {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 24px auto 18px;
  width: min(720px, 100%);
  background: #fff;
}

#news .news-year__item {
  appearance: none;
  border: 1px solid #22303a;
  background: #fff;
  color: #22303a;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  min-width: 120px;
  cursor: pointer;
  line-height: 1;
}

/* 角を“連結タブ”っぽく */
#news .news-year__item+.news-year__item {
  margin-left: -1px;

}

#news .news-year__item.is-active,
.news-year__item[aria-selected="true"] {
  background: #22303a;
  color: #fff;
}

/* ホバー（任意） */
#news .news-year__item:hover {
  background: #f3f6f8;
}

#news .news-year__item.is-active:hover,
.news-year__item[aria-selected="true"]:hover {
  background: #22303a;
}

/* スマホ：2段にしても崩れない */
@media (max-width: 640px) {
  #news .news-year__item {
    min-width: 33.33%;
    padding: 12px 10px;
  }
}

#news .news-pagination {

  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
  width: 100%;
}

#news .news-tabs__list {
  justify-content: center;
  font-size: 1.5rem;
}

#news .news-pagination__list {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;

}

#news .news-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  border: 1px solid #22303a;
  background: #fff;
  color: #22303a;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}

#news .news-pagination__link.is-active,
.news-pagination__link[aria-current="page"] {
  background: #22303a;
  color: #fff;
}

#news .news-pagination__link:hover {
  background: #f3f6f8;
}

#news .news-pagination__link.is-active:hover,
.news-pagination__link[aria-current="page"]:hover {
  background: #22303a;
}



/* =========================
  News Detail (legacy ACF template)
  Scope: #news-single
========================= */

#news-single {
  overflow: hidden;
  /* float混在の保険 */
}

#news-single h1::after {
  content: none;
}

#news-single h2 {
  margin: 48px 0 20px;
  padding-left: 14px;
  font-size: 1.25rem;
  /* 約20px */
  font-weight: 700;
  line-height: 1.5;
  color: #0b3c5d;
  /* ブランドカラー寄せ */
  border-left: 4px solid #0b3c5d;
}


/* ===== Top visual ===== */
#news-single .top {
  position: relative;
}

#news-single .top__main-visual {
  display: block;
  width: 100%;
}

#news-single .top__main-visual--img {
  display: block;
  width: 100%;
  height: auto;
}

/* 画面上のカテゴリテキスト */
#news-single .s-news__top-text {
  position: absolute;
  left: 20px;
  bottom: 18px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ===== Content wrapper ===== */
#news-single .content {
  padding: 28px 0 64px;
}

#news-single .s-news__contents-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Head ===== */
#news-single .s-news__head {
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#news-single .s-news__head--release-date {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

#news-single .s-news__head--information-type {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 12px;
  line-height: 1.4;
}

/* カテゴリ別の軽い色分け（必要なら調整） */
#news-single .news__list--item_cat_press {}

#news-single .news__list--item_cat_info {}

#news-single .news__list--item_cat_media {}

#news-single .news__list--item_cat_funding {}

#news-single .news__list--item_cat_other {}

#news-single .s-news__head--h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* タイトル中央寄せ用（テンプレが付けるalign-center） */
#news-single .s-news__head--h2.align-center {
  text-align: center;
}

/* ===== Body ===== */
#news-single .s-news__body {
  padding-top: 22px;
  font-size: 16px;
  line-height: 1.9;
}

/* セクション間 */
#news-single .s-news__body>section {
  margin-top: 26px;
}

/* 見出し */
#news-single .s-news__body--h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  line-height: 1.45;
}

#news-single .s-news__body--h4 {
  margin: 20px 0 10px;
  font-size: 18px;
  line-height: 1.5;
}

/* 本文 */
#news-single .s-news__body--text {
  margin: 0 0 16px;
}

#news-single .mb-1em {
  margin-bottom: 1em;
}

/* リンク */
#news-single a {
  text-underline-offset: 3px;
}

#news-single .s-news__link {
  text-decoration: underline;
}

/* block link（テンプレが使ってる） */
#news-single .s-news__link--block {
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
}

#news-single .s-news__link--block:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* 外部リンク表示 */
#news-single .anchor-url {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

/* ===== Images / Movies ===== */
#news-single .s-news__img,
#news-single .s-news__movie {
  margin: 18px 0;
}

#news-single .s-news__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

#news-single .s-news__fig-caption {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

/* 動画 */
#news-single .s-news__movie video,
#news-single .s-news__movie iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
}

/* ===== Media layout wrappers ===== */
#news-single .s-news__img-wrapper--full {
  margin: 18px 0;
}

#news-single .s-news__img-wrapper--flex_2col,
#news-single .s-news__img-wrapper--flex_3col {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

#news-single .s-news__img-wrapper--flex_2col {
  grid-template-columns: repeat(2, 1fr);
}

#news-single .s-news__img-wrapper--flex_3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Text + Media (txtmda) ===== */
#news-single .s-news__txtmda--flex {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 18px 0;
}

#news-single .s-news__txtmda--float {
  margin: 18px 0;
}

#news-single .s-news__txtmda--float_left {
  float: left;
  margin: 0 18px 12px 0;
}

#news-single .s-news__txtmda--float_right {
  float: right;
  margin: 0 0 12px 18px;
}

/* サイズ指定（flex/float共通で効くように） */
#news-single .s-news__txtmda--wrapper_30 {
  width: 30%;
}

#news-single .s-news__txtmda--wrapper_35 {
  width: 35%;
}

#news-single .s-news__txtmda--wrapper_40 {
  width: 40%;
}

#news-single .s-news__txtmda--wrapper_45 {
  width: 45%;
}

#news-single .s-news__txtmda--wrapper_50 {
  width: 50%;
}

#news-single .s-news__txtmda--wrapper_55 {
  width: 55%;
}

#news-single .s-news__txtmda--wrapper_60 {
  width: 60%;
}

#news-single .s-news__txtmda--wrapper_65 {
  width: 65%;
}

#news-single .s-news__txtmda--wrapper_70 {
  width: 70%;
}

/* flex order */
#news-single .s-news__txtmda--flex_order-1 {
  order: 1;
}

#news-single .s-news__txtmda--flex_order-2 {
  order: 2;
}

/* ===== Child block ===== */
#news-single .s-news__child-block {
  margin: 18px 0;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}

#news-single .s-news__child--wrapper_indent {
  padding-left: 16px;
  border-left: 2px solid rgba(0, 0, 0, 0.10);
}

/* 見出し装飾（テンプレが付ける class） */
#news-single .s-news__body--h4.bold {
  font-weight: 700;
}

#news-single .s-news__body--h4.oblique {
  font-style: italic;
}

#news-single .s-news__body--h4.underline {
  text-decoration: underline;
}

/* ===== List ===== */
#news-single .s-news__list-wrapper {
  margin: 14px 0 18px;
}

#news-single .s-news__list-type_ul,
#news-single .s-news__list-type_ol {
  margin: 0;
  padding-left: 1.3em;
}

#news-single .s-news__list-item {
  margin: 6px 0;
}

/* ===== Table ===== */
#news-single .s-news__body--table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 14px;
  line-height: 1.7;
}

#news-single .s-news__body--table th,
#news-single .s-news__body--table td {
  border: 1px solid rgba(0, 0, 0, 0.10);
  padding: 10px 12px;
  vertical-align: top;
}

#news-single .s-news__body--table th {
  width: 220px;
  background: rgba(0, 0, 0, 0.03);
  font-weight: 600;
}

/* ===== Notes ===== */
#news-single .s-news__notes,
#news-single .s-news__notes--ex-small {
  display: inline-block;
  opacity: 0.85;
  font-size: 13px;
  line-height: 1.6;
}

#news-single .s-news__notes--ex-small {
  font-size: 12px;
}

/* ===== Button wrapper (parts/btn) ===== */
#news-single .s-news__btn {
  margin: 18px 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  #news-single .s-news__img-wrapper--flex_3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #news-single .s-news__top-text {
    left: 12px;
    bottom: 12px;
    font-size: 13px;
  }

  #news-single .content {
    padding: 18px 0 48px;
  }

  #news-single .s-news__img-wrapper--flex_2col,
  #news-single .s-news__img-wrapper--flex_3col {
    grid-template-columns: 1fr;
  }

  #news-single .s-news__txtmda--flex {
    flex-direction: column;
  }

  #news-single .s-news__txtmda--wrapper_30,
  #news-single .s-news__txtmda--wrapper_35,
  #news-single .s-news__txtmda--wrapper_40,
  #news-single .s-news__txtmda--wrapper_45,
  #news-single .s-news__txtmda--wrapper_50,
  #news-single .s-news__txtmda--wrapper_55,
  #news-single .s-news__txtmda--wrapper_60,
  #news-single .s-news__txtmda--wrapper_65,
  #news-single .s-news__txtmda--wrapper_70 {
    width: 100%;
  }

  #news-single .s-news__txtmda--float_left,
  #news-single .s-news__txtmda--float_right {
    float: none;
    margin: 0 0 12px 0;
  }

  #news-single .s-news__body--table th {
    width: auto;
  }
}


/* =============================
  TOP NEWS English
============================= */

/* newsページ内のカテゴリタブとカテゴリバッジを消す */

.news-en-top .article-cat {
  display: none !important;
}

.news-en-top .article-link {
  grid-template-columns: 13.875rem 46rem 1fr 1.25rem;
}

.news-en-top .news-year {
  background: none !important;

}


/* SP調整 */
@media (max-width: 768px) {
  #privacy-policy {
    font-size: 13px;
    line-height: 1.7;
  }

  #privacy-policy h2 {
    font-size: 16px;
    margin-top: 40px;
  }
}


@media screen and (max-width: 767px) {
  .wireless-modal-content {
    max-width: 95%;
    padding: 20px;
  }

  .wireless-modal-close {
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
}


.sp-only {
  display: none;
}

.tablet-only {
  display: none;
}

@media screen and (max-width: 1280px) {
  .tablet-only {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .tablet-only {
    display: none;
  }

  body:has(.sub-page) footer {
    padding-top: 80px;
  }

  body:has(.sub-page) footer .cta-card--recruit {
    padding: 16px;
  }

  body:has(.sub-page) footer .cta-card--download {
    padding: 16px;
  }

  body:has(.sub-page) footer .cta-card--contact {
    padding: 16px;
  }

  body:has(.sub-page) footer .footer-cta__inner {
    padding: 0;
  }

  body:has(.sub-page) footer .footer-cta {
    width: 100%;
  }

  body:has(.sub-page) footer .footer-inner {
    margin-top: 40px;
  }
}