/* ===============================
基本リセット
=============================== */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.65;
}
h2, h3, h4 {
  line-height: 1.45;
}
p {
  color: #333333;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}
/* =========================================
   アンカーリンクの調整
========================================= */
h2 {
  scroll-margin-top: 100px;
}

/* ===============================
kaigyou
=============================== */
.sp {
  display: none;
}
@media (max-width:767px) {
  .sp {
    display: block;
  }
}
/* ===============================
HEADER
=============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1360;
  background: #fff;
}
.header-inner {
  width: min(1360px, calc(100% - 32px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  background-image: url(../img/common/logo.png);
  background-repeat: no-repeat;
  background-size: auto 59px;
  padding-left: 100px;
}
.logo__main {
  font-size: 23px;
  font-weight: 700;
}
.logo__sub {
  font-size: 14px;
}
@media (max-width:420px) {
  .logo {
    display: flex;
    flex-direction: column;
    background-image: url(../img/common/logo.png);
    background-repeat: no-repeat;
    background-size: auto 50px;
    padding-left: 85px;
  }
  .logo__main {
    font-size: 20px;
    font-weight: 700;
  }
  .logo__sub {
    font-size: 12px;
  }
}
@media (max-width:370px) {
  .logo {
    background-size: auto 45px;
    padding-left: 80px;
  }
  .logo__main {
    font-size: 18px;
    font-weight: 700;
  }
}
@media (max-width:345px) {
  .logo {
    background-size: auto 40px;
    padding-left: 70px;
    background-position: left center;
  }
  .logo__main {
    font-size: 16px;
    font-weight: 700;
  }
}
/* ===============================
HEADER-LINE
=============================== */
.header-line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 10px;
  background: #0f2c4c;
  overflow: hidden;
  box-shadow: inset 0 0 2px rgba(0, 81, 229, 0.15);
}
/* 電気本体 */
.header-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -28%;
  width: 28%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 81, 229, 0) 0%, rgba(0, 81, 229, 0.6) 20%, #0051e5 40%, #0556e9 50%, #0051e5 60%, rgba(0, 81, 229, 0.6) 80%, rgba(0, 81, 229, 0) 100%);
  filter: blur(0.6px);
  animation: electricFlow 4s infinite;
}
/* 残光 */
.header-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -28%;
  width: 28%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 81, 229, 0) 0%, rgba(0, 81, 229, 0.15) 35%, rgba(0, 81, 229, 0.35) 50%, rgba(0, 81, 229, 0.15) 65%, rgba(0, 81, 229, 0) 100%);
  filter: blur(2px);
  opacity: 0;
  animation: electricAfterGlow 4s infinite;
  animation-delay: 0.08s;
}
/* 電気の流れ */
@keyframes electricFlow {
  0% {
    left: -28%;
    opacity: 0;
  }
  4% {
    left: -10%;
    opacity: 1;
  }
  12% {
    left: 2%;
  }
  30% {
    left: 24%;
  }
  50% {
    left: 50%;
  }
  70% {
    left: 74%;
  }
  88% {
    left: 92%;
  }
  96% {
    left: 100%;
    opacity: 0.6;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
/* 残光 */
@keyframes electricAfterGlow {
  0% {
    left: -30%;
    opacity: 0;
  }
  8% {
    opacity: 0.2;
  }
  30% {
    left: 20%;
    opacity: 0.18;
  }
  55% {
    left: 48%;
    opacity: 0.16;
  }
  80% {
    left: 78%;
    opacity: 0.12;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
/* ===============================
NAVIGATION
=============================== */
.gnav {
  display: flex;
  align-items: center;
}
.gnav__list {
  display: flex;
  gap: 8px;
}
.gnav__list a {
  display: block;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
}
.gnav__list a:hover {
  background: #eef5ff;
  color: #004ea2;
}
/* ===============================
HAMBURGER
=============================== */
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  /*border-radius: 10px;*/
  background: #0d2a4a;
  cursor: pointer;
  position: relative;
  z-index: 1400;
}
.hamburger span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 29px;
}
.hamburger.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}
/* ===============================
DRAWER OVERLAY
=============================== */
.drawer-overlay {
  display: none;
}
/* ===============================
FOOTER
=============================== */
.site-footer {
  background: #0f2c4c;
  color: #ffffff;
  padding: 28px 0 14px;
}
.footer-inner {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-info li {
  font-size: 14px;
  line-height: 1.8;
  color: #ffffff;
  white-space: nowrap;
}
.footer-info strong {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.footer-nav a {
  min-width: 140px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color .25s, border-color .25s, opacity .25s;
}
.footer-nav a:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
  opacity: 1;
}
.footer-copy {
  width: min(1360px, calc(100% - 32px));
  margin: 18px auto 0;
  padding-top: 10px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .75);
}
/* ===============================
SP FOOTER
=============================== */
@media (max-width:959px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-info ul {
    flex-direction: column;
    gap: 18px;
  }
  .footer-info li {
    white-space: normal;
    font-size: 12px;
    line-height: 1.7;
  }
  .footer-info strong {
    font-size: 14px;
  }
  .footer-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .footer-nav a {
    min-width: unset;
    width: 100%;
    max-width: 280px;
    font-size: 16px;
  }
  .footer-copy {
    margin-top: 16px;
    font-size: 10px;
  }
}
/* ===============================
SP MENU
=============================== */
@media (max-width:959px) {
  .hamburger {
    display: block;
  }
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #ebecfc 0%, #ccc 100%);
    transform: translateX(100%);
    transition: 0.3s;
    padding: 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
    z-index: 1390;

  }
  .gnav.is-active {
    transform: translateX(0);
  }
  .gnav__list {
    flex-direction: column;
	width: 90%;
    gap: 15px;
  }
  .gnav__list a {
    padding: 14px;
    background: #f7fbff;
    border-radius: 0px;
	border-left: 3px solid #333;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------- */
/* =============================================================
PAGE TITLE AREA
============================================================= */
.page-title {
  position: relative;
  width: 100%;
  min-height: 248px;
  background: #0f2c4c;
  overflow: hidden;
}
/* 左側の文字は 1360px 内に収める */
.page-title__inner {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 248px;
  display: flex;
  align-items: center;
  /* 右画像とかぶらないように余白を確保 */
  padding-right: 42%;
  box-sizing: border-box;
}
.page-title__text {
  color: #fff;
  width: 100%;
  max-width: 420px;
}
.page-title__text h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-subtitle {
  margin: 10px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.8rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  opacity: 0.98;
  color: white;
}
/* 右画像はセクション外側まで見せる */
.page-title__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.page-title__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
/* 左と右の境目を自然に */
.page-title__image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 160px;
  background: linear-gradient(90deg, #0f2c4c 0%, rgba(15, 44, 76, 0.96) 22%, rgba(15, 44, 76, 0.72) 46%, rgba(15, 44, 76, 0.28) 72%, rgba(15, 44, 76, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
/* 画像全体を少し落ち着かせる */
.page-title__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 44, 76, 0.08);
  z-index: 1;
  pointer-events: none;
}
/* -------------------------------------------------------------
タブレット
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .page-title {
    min-height: 220px;
  }
  .page-title__inner {
    min-height: 220px;
    padding-right: 46%;
  }
  .page-title__image {
    width: 62%;
  }
  .page-title__text {
    max-width: 360px;
  }
  .page-title__image::before {
    width: 130px;
  }
}
/* -------------------------------------------------------------
スマホ
------------------------------------------------------------- */
@media (max-width: 490px) {
  .page-title {
    min-height: 160px;
  }
  .page-title__inner {
    min-height: 160px;
    padding-right: 46%;
  }
  .page-title__image {
    width: 62%;
  }
  .page-title__text {
    max-width: 360px;
  }
  .page-title__image::before {
    width: 130px;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------- */
/* =============================================================
BREADCRUMB
============================================================= */
.breadcrumb {
  width: min(1360px, calc(100% - 32px));
  margin: 20px auto 100px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb__item {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
}
.breadcrumb__item:not(:last-child) {
  padding-right: 18px;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #333;
}
.breadcrumb__item a {
  color: #0f2c4c;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.breadcrumb__item a:hover {
  opacity: 0.7;
}
.breadcrumb__item[aria-current="page"] {
  color: #111827;
  font-weight: 700;
}
/* -------------------------------------------------------------
SP
------------------------------------------------------------- */
@media (max-width: 767px) {
  .breadcrumb {
    width: min(1200px, calc(100% - 24px));
    margin: 20px auto 50px;
  }
  .breadcrumb__item {
    font-size: 16px;
  }
  .breadcrumb__item:not(:last-child) {
    padding-right: 14px;
  }
  .breadcrumb__item:not(:last-child)::after {
    right: 2px;
    font-size: 10px;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------- */
/* =============================================================
LAYOUT
============================================================= */
.content-area {
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width:1360px) {
  .content-area {
    max-width: 100%;
    margin: 0 1rem;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------- */
/* =============================================================
TITLE MIDASHI
============================================================= */
.misashi- {}