@charset "UTF-8";
html {
  overflow: auto;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 62.5%;
}

@media all and (max-width: 767px) {
  html.is-fixed {
    height: 100%;
    overflow: hidden;
  }
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }
}
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}
*::before, *::after {
  padding: 0;
  margin: 0;
}

::-moz-selection {
  color: #fff;
  background-color: rgb(25, 45, 101);
}

::selection {
  color: #fff;
  background-color: rgb(25, 45, 101);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  letter-spacing: 0.05em;
  min-width: 100%;
  width: 100%;
  background: #F3F4F7;
  color: #282F6B;
  font-weight: 500;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

/* ==========================================================
   共通見出しスタイル（汎用）
========================================================== */
.section__title {
  display: flex;
  flex-wrap: wrap;
  font-size: 36px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.section__title:after, .section__title:before {
  display: block;
  content: "";
  position: absolute;
  top: -16px;
  width: 10px;
  height: 10px;
  z-index: 0;
}

.section__title:before {
  left: 0;
  background-color: #E56128;
}

.section__title:after {
  left: 20px;
  background-color: #D9D12F;
}

.section__title span {
  font-size: 16px;
  width: 100%;
  color: #2B4693;
}

.section__btn {
  background: rgb(25, 45, 101);
  color: #fff;
  padding: 26px;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
}

@media screen and (max-width: 500px) {
  .section__title {
    font-size: 24px;
  }
  .section__title span {
    font-size: 14px;
  }
  .section__btn {
    font-size: 14px;
    padding: 18px;
  }
}
.heading__subtitle {
  position: absolute;
  right: 0;
  top: 100px;
  font-size: 100px;
  line-height: 1;
  z-index: 0;
  color: rgba(43, 70, 147, 0.3);
  width: 80%;
  text-align: right;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .heading__subtitle {
    font-size: 48px;
    top: 90px;
    width: 80%;
    text-align: right;
    font-size: clamp(50px, 6vw, 80px);
  }
}
@media screen and (max-width: 600px) {
  .heading__subtitle {
    font-size: 40px;
    top: 80px;
    width: 80%;
    text-align: right;
    font-size: clamp(40px, 8vw, 60px);
  }
}

.common__wrapper {
  max-width: 1160px;
  margin: 0 auto;
  width: 90%;
  padding: 120px 0 80px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .common__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
}

.block__header {
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
}

.block__heading,
.block__description {
  width: 100%;
}

.block__description {
  font-size: 16px;
  line-height: 1.75;
}

/* ==========================================================
   共通見出しスタイル（汎用） ここまで
========================================================== */
.header {
  position: absolute;
  top: 0px;
  height: 70px;
  color: white;
  background-color: transparent;
  padding-inline: 20px;
  align-content: center;
  z-index: 100;
}
@media screen and (max-width: 500px) {
  .header {
    top: 0;
  }
}

.logo {
  font-size: 32px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.logo a {
  display: contents;
  height: auto;
}
@media screen and (max-width: 600px) {
  .logo img {
    max-width: 360px;
    width: 80%;
  }
}

.hamburger-fade {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  background: rgb(25, 45, 101); /* 半透明の背景 */
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px); /* ぼかし効果 */
  transition: all 0.3s ease; /* スムーズな変化 */
}

/* ホバー時の効果（オプション） */
.hamburger-fade:hover {
  background: rgba(25, 45, 101, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

/* アクティブ時の背景も調整 */
.hamburger-fade.active {
  background: rgba(25, 45, 101, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.hamburger-fade__wrapper {
  position: relative;
  z-index: auto;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-fade__line:nth-child(1) {
  top: 0;
}
.hamburger-fade__line:nth-child(2) {
  top: 9px;
}
.hamburger-fade__line:nth-child(3) {
  top: 18px;
}

.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}
.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 10000;
  pointer-events: auto;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  background-image: linear-gradient(150deg, rgb(24, 41, 98) 10%, rgb(14, 20, 62) 40%, rgb(11, 14, 59) 68%, rgb(1, 2, 27) 90%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9999;
  position: absolute;
}

.nav-fade.active {
  visibility: visible;
}
.nav-fade.active .nav-fade__bg {
  opacity: 1;
}

.nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15vh 10vw;
  z-index: 10001;
}

.nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-fade__item {
  margin-bottom: 2vh;
  padding-left: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
}

.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-fade.active .nav-fade__item:nth-child(1) {
  transition-delay: 0.2s;
}
.nav-fade.active .nav-fade__item:nth-child(2) {
  transition-delay: 0.3s;
}
.nav-fade.active .nav-fade__item:nth-child(3) {
  transition-delay: 0.4s;
}
.nav-fade.active .nav-fade__item:nth-child(4) {
  transition-delay: 0.5s;
}

.nav-fade__number {
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

.nav-fade__link {
  display: inline-block;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-fade__link:hover {
  color: #4a90e2;
}

.nav-fade__info {
  margin-top: auto;
  padding-left: 60px;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}

.nav-fade.active .nav-fade__info {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade__address, .nav-fade__tel {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .nav-fade__link {
    font-size: 24px;
  }
  .nav-fade__item {
    padding-left: 40px;
    margin-bottom: 1.5vh;
  }
  .nav-fade__info {
    padding-left: 40px;
  }
}
.hamburger-fade {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: #0f224e;
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* スマホ時のサイズ調整 */
@media screen and (max-width: 600px) {
  .hamburger-fade {
    top: 15px;
    right: 15px;
    width: 48px; /* 60px → 48px に縮小 */
    height: 48px; /* 60px → 48px に縮小 */
  }
}
/* より小さなスマホ画面の場合 */
@media screen and (max-width: 480px) {
  .hamburger-fade {
    top: 10px;
    right: 10px;
    width: 44px; /* さらに小さく */
    height: 44px;
  }
}
/* ホバー時の効果 */
.hamburger-fade:hover {
  background: rgba(25, 45, 101, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

/* アクティブ時の背景も調整 */
.hamburger-fade.active {
  background: rgba(25, 45, 101, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.hamburger-fade__wrapper {
  position: relative;
  z-index: auto;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}

/* スマホ時のハンバーガーラインとラッパーのサイズ調整 */
@media screen and (max-width: 600px) {
  .hamburger-fade__wrapper {
    width: 26px; /* 30px → 26px に縮小 */
    height: 18px; /* 20px → 18px に縮小 */
    margin: 15px auto; /* 20px → 15px に調整 */
  }
}
@media screen and (max-width: 480px) {
  .hamburger-fade__wrapper {
    width: 24px; /* さらに小さく */
    height: 16px;
    margin: 14px auto;
  }
}
.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) {
  top: 0;
}

.hamburger-fade__line:nth-child(2) {
  top: 9px;
}

.hamburger-fade__line:nth-child(3) {
  top: 18px;
}

/* スマホ時のライン間隔調整 */
@media screen and (max-width: 600px) {
  .hamburger-fade__line:nth-child(2) {
    top: 8px; /* 9px → 8px */
  }
  .hamburger-fade__line:nth-child(3) {
    top: 16px; /* 18px → 16px */
  }
}
@media screen and (max-width: 480px) {
  .hamburger-fade__line:nth-child(2) {
    top: 7px; /* さらに調整 */
  }
  .hamburger-fade__line:nth-child(3) {
    top: 14px;
  }
}
.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* アクティブ時のスマホ対応 */
@media screen and (max-width: 600px) {
  .hamburger-fade.active .hamburger-fade__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg); /* 9px → 7px */
  }
  .hamburger-fade.active .hamburger-fade__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); /* -9px → -7px */
  }
}
.mv {
  height: 100svh;
  margin: 0;
  display: flex;
  align-items: center;
  max-height: 680px;
}
.mv__image {
  position: absolute;
  z-index: -1;
  height: 100vh;
  max-height: 680px;
  width: 100%;
}
.mv__image img {
  height: 100%;
  width: 100%;
}
.mv__txt {
  width: 500px;
  margin: 0 0 0 80px;
  color: #fff;
}
.mv__catch {
  font-size: 36px;
  line-height: 1.5;
}
.mv__lead {
  font-size: 16px;
  line-height: 1.75;
  margin: 24px 0 0;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .mv {
    align-items: end;
  }
  .mv__catch {
    font-size: 20px;
  }
  .mv__txt {
    width: 490px;
    margin: 0 5% 8%;
  }
  .mv__lead {
    margin: 16px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    align-items: end;
  }
  .mv__catch {
    font-size: 20px;
  }
  .mv__txt {
    width: 490px;
    margin: 0 5% 8%;
  }
  .mv__lead {
    margin: 16px 0 0;
  }
}

.news__wrapper {
  background: rgb(25, 45, 101);
  color: #fff;
}
.news__content {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
}
.news__category {
  font-size: 16px;
  line-height: 1.75;
  color: rgb(25, 45, 101);
  background: #fff;
  padding: 8px 30px;
  border-radius: 10px;
  font-weight: 500;
}
.news__ttl {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .news__content {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .news__content {
    width: 90%;
    gap: 16px;
    flex-wrap: wrap;
  }
  .news__category {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 600;
  }
  .news__ttl {
    font-size: 14px;
  }
}

.service {
  position: relative;
}
.service__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
}
.service__item {
  display: flex;
  flex-wrap: wrap;
  grid-row: span 3;
  display: grid;
}
.service__item-title {
  font-size: 20px;
  font-weight: 500;
  margin: 16px 0 0;
}
.service__item-description {
  font-size: 16px;
  line-height: 1.75;
  margin: 8px 0 0;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .service__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
  .service__header {
    flex-direction: column;
    gap: 16px;
  }
  .service__list {
    gap: 32px;
    margin: 16px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .service__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
  .service__header {
    flex-direction: column;
    gap: 16px;
  }
  .service__list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 16px 0 0;
  }
  .service__item-title {
    font-size: 20px;
  }
  .service__item-description {
    font-size: 14px;
  }
}

.example {
  position: relative;
  background: #EAEBED;
}
.example__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: baseline;
}
.example__image {
  border-radius: 10px;
}
.example__item {
  display: flex;
  flex-wrap: wrap;
}
.example__item-title {
  font-size: 16px;
  margin: 16px 0 0;
}
.example__item-description {
  font-size: 16px;
  line-height: 1.75;
  margin: 8px 0 0;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .example__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
  .example__header {
    flex-direction: column;
    gap: 16px;
  }
  .example__list {
    gap: 32px;
    margin: 16px 0 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .example__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
  .example__header {
    flex-direction: column;
    gap: 16px;
  }
  .example__list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 16px 0 0;
  }
  .example__item-title {
    font-size: 20px;
  }
  .example__item-description {
    font-size: 14px;
  }
}

.flow {
  position: relative;
}
.flow__content {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.flow__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0 0;
}
.flow__item {
  background: #fff;
  color: rgb(25, 45, 101);
  padding: 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgb(25, 45, 101);
}
.flow__item-title {
  font-size: 20px;
}
.flow__item-number {
  font-size: 36px;
  font-family: "Zen Old Mincho", serif;
}
.flow__item-description {
  line-height: 1.75;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .flow__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
  .flow__header {
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
  }
  .flow__list {
    gap: 32px;
    margin: 16px 0 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .flow__item {
    gap: 8px;
    padding: 16px;
  }
}
@media screen and (max-width: 600px) {
  .flow__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
  .flow__header {
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
  }
  .flow__list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 16px 0 0;
  }
  .flow__item {
    gap: 8px;
    padding: 16px;
  }
  .flow__item-title {
    font-size: 20px;
  }
  .flow__item-description {
    font-size: 14px;
  }
}

.faq {
  position: relative;
  background: #EAEBED;
}
.faq__list {
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  gap: 40px;
}
.faq__item {
  display: flex;
  gap: 16px;
  width: 100%;
  background: rgb(25, 45, 101);
  color: #fff;
  padding: 32px;
  border-radius: 10px;
  font-size: 16px;
}
.faq__item-title {
  font-size: 16px;
}
.faq__item-description {
  font-size: 16px;
  line-height: 1.75;
}
.faq__content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
}
.faq__content--box {
  max-width: 1060px;
  margin: 0 auto;
}
.faq__content--list {
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #282F6B;
  margin: 20px auto 20px;
}
.faq__content--list:first-child {
  margin-top: 0;
}
.faq__content--list input {
  position: absolute;
  opacity: 0;
}
.faq__content--list label {
  line-height: 1;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  background: #fff;
  border: 1px solid #282F6B;
  padding: 20px 20px 20px 48px;
  margin: 0;
  color: #282F6B;
  letter-spacing: 0.05em;
  min-height: 45px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.faq__content--list label:before {
  font-size: 20px;
  position: absolute;
  content: "Q.";
  transition: transform 0.4s;
  top: 50%;
  left: 30px;
  transform: translate(-50%, -50%);
  margin: 0;
  font-weight: 500;
}
.faq__content--list label:after {
  font-size: 24px;
  position: absolute;
  content: url("../images/faq-q-icon.svg");
  display: inline-block;
  width: 30px;
  height: 30px;
  transition: transform 0.4s;
  top: 50%;
  right: 0px;
  transform: translate(-50%, -50%);
}
.faq__content--list--answer {
  position: relative;
  overflow: hidden;
  max-height: 0;
  font-size: 16px;
  padding: 0 0 0 31px;
  transition: max-height 0.2s;
}
.faq__content--list--answer:before {
  font-size: 20px;
  position: absolute;
  margin: 14px 0 0 -8px;
  padding: 0;
  content: "A.";
  color: #000;
}
.faq__content--list--answer p {
  margin: 16px 20px;
  color: #000;
}
.faq__content--list input:checked ~ .faq__content--list--answer {
  max-height: 40em;
}
.faq__content--list input[type=checkbox]:checked + label::after {
  content: url("../images/faq-a-icon.svg");
}
.faq__content--img {
  width: 0%;
}
.faq__content--txt {
  margin: 0 0 20px;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .faq__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
}
@media screen and (max-width: 600px) {
  .faq__wrapper {
    width: 90%;
    padding: 80px 0 48px;
  }
  .faq__content--list label {
    padding: 5% 12%;
    line-height: 1.5;
  }
  .faq__content--list label:before {
    left: 6%;
  }
  .faq__content--list label:after {
    right: -4px;
  }
  .faq__content--list--answer {
    padding: 0 0 0 6%;
  }
}

/* フッター全体 */
.footer {
  padding: 120px 5% 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #222;
}

/* 内部コンテナ（横並び） */
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 30px;
  gap: 40px;
}

/* 企業情報（左） */
.footer__company {
  flex: 1 1 250px;
  min-width: 240px;
}

.footer__logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer__text {
  font-size: 14px;
  line-height: 1.6;
}

/* お問い合わせボタン */
.footer__contact-btn {
  margin-top: 20px;
  background-color: #132c61;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
  width: 320px;
  padding: 24px;
  display: block;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

.footer__contact-btn:hover {
  background-color: #0f224e;
}

.footer__arrow {
  margin-left: 8px;
}

.footer__link {
  display: flex;
  gap: 80px;
  width: 40%;
}

/* 中央・右カラム */
.footer__section {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer__heading {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}

.footer__item {
  font-size: 14px;
  width: 100%;
}

.footer__item--link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}

/* コピーライト */
.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* =============================
   レスポンシブ対応
============================= */
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 5% 30px;
  }
  .footer__inner {
    flex-direction: column;
    gap: 32px;
    text-align: left;
  }
  .footer__company,
  .footer__section {
    flex: 1 1 100%;
  }
  .footer__contact-btn {
    width: 100%;
    text-align: center;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s ease-out;
  position: relative;
  z-index: 1;
}

.fadein.scrollin {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
  color: white;
}

.loading-overlay.fade-out {
  opacity: 0;
}

.geometric-loader {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.geo-bar {
  width: 6px;
  background: linear-gradient(to top, #667eea, #764ba2);
  border-radius: 3px;
  animation: geoGrow 1.2s ease-in-out infinite;
}

.geo-bar:nth-child(1) {
  height: 20px;
  animation-delay: 0s;
}

.geo-bar:nth-child(2) {
  height: 30px;
  animation-delay: 0.1s;
}

.geo-bar:nth-child(3) {
  height: 40px;
  animation-delay: 0.2s;
}

.geo-bar:nth-child(4) {
  height: 50px;
  animation-delay: 0.3s;
}

.geo-bar:nth-child(5) {
  height: 40px;
  animation-delay: 0.4s;
}

.geo-bar:nth-child(6) {
  height: 30px;
  animation-delay: 0.5s;
}

.geo-bar:nth-child(7) {
  height: 20px;
  animation-delay: 0.6s;
}

@keyframes geoGrow {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.5);
    opacity: 1;
  }
}
.company-info {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  background: white;
  overflow: hidden;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  border: 1px solid #999;
}

.company-table th,
.company-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.company-table th {
  background-color: #F2F2F2;
  font-weight: 600;
  width: 320px;
  color: #282F6B;
  border-right: 1px solid #e0e0e0;
}

.company-table td {
  background-color: white;
  color: #282F6B;
  line-height: 1.8;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.business-content {
  line-height: 2;
}

.contact-link {
  color: #007bff;
  text-decoration: none;
  word-break: break-all;
}

.contact-link:hover {
  text-decoration: underline;
}

/* タブレット対応 (960px以下) */
@media screen and (max-width: 960px) {
  .company-table {
    font-size: 15px;
  }
  .company-table th,
  .company-table td {
    padding: 16px;
  }
  .company-table th {
    width: 140px;
  }
  .company-table a {
    text-decoration: none;
  }
}
/* スマホ対応 (600px以下) */
@media screen and (max-width: 600px) {
  .company-table {
    font-size: 16px;
  }
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-right: none;
  }
  .company-table th {
    background-color: #F2F2F2;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
  }
  .company-table td {
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f2f5;
    margin-bottom: 0;
  }
  .company-table tr:last-child td {
    border-bottom: none;
  }
  .business-content {
    line-height: 1.9;
  }
  .contact-link {
    font-size: 16px;
  }
}
/* 極小画面対応 */
@media screen and (max-width: 400px) {
  .company-table {
    font-size: 14px;
  }
  .company-table th,
  .company-table td {
    padding: 10px 12px;
  }
  .contact-link {
    font-size: 14px;
  }
}
.underpage {
  margin: 40px 0 0;
}
.underpage .header {
  background: #0f224e;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .underpage .heading__subtitle {
    top: 100px;
    width: 80%;
    text-align: right;
    font-size: clamp(40px, 8vw, 60px);
  }
}/*# sourceMappingURL=style.css.map */