html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.833vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  color: #072334;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.pc_n {
  display: none;
}
@media (max-width: 767px) {
  .pc_n {
    display: block;
  }
}

.sp_n {
  display: block;
}
@media (max-width: 767px) {
  .sp_n {
    display: none;
  }
}

.wrap {
  overflow: hidden;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  padding: 1.2rem 3.2rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
@media (max-width: 767px) {
  .sticky-header {
    display: none;
  }
}

.sticky-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10rem;
  padding: 1.2rem 1.2rem 1.2rem 2.4rem;
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.1);
}

.sticky-header__logo {
  flex-shrink: 0;
}

.sticky-header__logo img {
  width: 14rem;
  height: auto;
}

.sticky-header__nav {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.sticky-header__nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.sticky-header__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.sticky-header__nav-item:hover {
  opacity: 0.7;
}

.sticky-header__nav-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #072334;
}

.sticky-header__nav-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #8A8A8A;
}

.sticky-header__nav-lang {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #222;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.sticky-header__nav-lang:hover {
  opacity: 0.7;
}

.sticky-header__nav-instagram {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.sticky-header__nav-instagram svg {
  fill: #222;
}

.sticky-header__nav-instagram:hover {
  opacity: 0.7;
}

.sticky-header__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  height: 4.8rem;
  padding: 0 2.4rem;
  background: #072334;
  border-radius: 10rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #fff;
  transition: opacity 0.3s;
}

.sticky-header__entry:hover {
  opacity: 0.7;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.9rem;
  background: #fff;
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    padding: 1.7rem 2rem;
    background: #fff;
  }
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 17.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 14rem;
  }
}

.header__hamburger {
  display: none;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 3.2rem;
    height: 3.2rem;
    background: #fff;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    padding: 0;
    z-index: 200;
    position: relative;
  }
}

.header__hamburger span {
  display: block;
  width: 1.8rem;
  height: 2px;
  background: #1A1A1A;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
  background: #1A1A1A;
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
  background: #1A1A1A;
}

.header__nav {
  padding: 2.4rem 0;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 2.2vw, 3.2rem);
}

.header__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.header__nav-item:hover {
  opacity: 0.7;
}

.header__nav-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #072334;
}

.header__nav-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #8A8A8A;
}

.header__nav-dropdown {
  position: relative;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 2.4rem rgba(0, 0, 0, 0.15);
  padding: 2.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (max-width: 767px) {
  .header__dropdown {
    display: none;
  }
}

.header__nav-dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
}

.header__dropdown-card {
  display: block;
  width: 22rem;
  transition: opacity 0.3s;
}

.header__dropdown-card:hover {
  opacity: 0.7;
}

.header__dropdown-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 0.4rem;
  overflow: hidden;
}

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

.header__dropdown-label {
  display: block;
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #072334;
  text-align: center;
}

.header__nav-lang {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #072334;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.header__nav-lang:hover {
  opacity: 0.7;
}

.header__nav-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 4.4rem;
  background: linear-gradient(133deg, rgba(0, 159, 227, 1) 2%, rgba(19, 116, 195, 1) 100%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff !important;
  letter-spacing: 0.02em !important;
  transition: opacity 0.3s;
}

.header__nav-contact:hover {
  opacity: 0.7;
}

.header__nav-instagram {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.header__nav-instagram svg {
  fill: #072334;
}

.header__nav-instagram:hover {
  opacity: 0.7;
}

.header__mobile-menu {
  display: none;
}
@media (max-width: 767px) {
  .header__mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5rem;
  }
}

.header__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.header__mobile-close {
  display: none;
}
@media (max-width: 767px) {
  .header__mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 7.2rem;
    height: 7.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
}

.header__mobile-close span {
  display: block;
  position: absolute;
  width: 2.4rem;
  height: 2px;
  background: #1A1A1A;
}

.header__mobile-close span:nth-child(1) {
  transform: rotate(45deg);
}

.header__mobile-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.header__mobile-list {
  margin-top: 10rem;
}

.header__mobile-list li {
  border-top: 1px solid #E5E5E5;
}

.header__mobile-list li:last-child {
  border-bottom: 1px solid #E5E5E5;
}

.header__mobile-list a {
  display: block;
  padding: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.header__mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2.4rem;
  background: none;
  border: none;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  cursor: pointer;
}
.header__mobile-dropdown-toggle::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #1A1A1A;
  border-bottom: 2px solid #1A1A1A;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.header__mobile-dropdown-toggle.is-open::after {
  transform: rotate(-135deg);
}

.header__mobile-submenu {
  display: none;
  background: #F5F7FA;
}

.header__mobile-submenu.is-open {
  display: block;
}

.header__mobile-submenu li {
  border-top: 1px solid #E5E5E5;
}

.header__mobile-submenu a {
  display: block;
  padding: 2rem 2.4rem 2rem 4.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.header__mobile-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 4.8rem);
  height: 5.6rem;
  margin: 3.2rem auto 0;
  background: linear-gradient(133deg, rgb(0, 159, 227) 2%, rgb(19, 116, 195) 100%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #fff;
}

.header__hamburger.is-active span:nth-child(1) {
  top: 0.4rem;
  position: relative;
}

.footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 13.1rem;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 0;
  }
}

.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 54.8rem;
  background: linear-gradient(180deg, rgb(36, 142, 208) 0%, rgb(6, 93, 147) 95%);
}
@media (max-width: 767px) {
  .footer__bg {
    height: 85.5rem;
  }
}

.footer__airplane {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 51.7rem;
  height: 34.4rem;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer__airplane {
    width: 30rem;
    height: 20rem;
  }
}

.footer__airplane img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.footer__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/footer-texture.webp") center/cover;
  opacity: 0.15;
}

.footer__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 144rem;
  margin: 0 auto;
  padding: 12rem 12rem 0;
}
@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    padding: 5.3rem 2.3rem 0;
    gap: 3rem;
  }
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer__left {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .footer__logo {
    text-align: center;
  }
}

.footer__logo img {
  width: 25rem;
  height: auto;
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 17rem;
  }
}

.footer__address p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #C6D7E2;
}
.footer__address p + p {
  margin-top: 0.8rem;
}

.footer__tel {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #C6D7E2;
}

.footer__right {
  display: flex;
  gap: 8rem;
}
@media (max-width: 767px) {
  .footer__right {
    flex-direction: column;
    gap: 2rem;
  }
}

.footer__nav-group h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 1rem 0;
  margin-bottom: 1.4rem;
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__nav-group a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #DCE7EF;
  transition: opacity 0.3s;
}

.footer__nav-group a:hover {
  opacity: 0.7;
}

.footer__bottom {
  position: relative;
  margin-top: 6rem;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .footer__bottom {
    margin-top: 2.4rem;
    padding: 0 2.3rem;
  }
}

.footer__bottom-inner {
  border-top: 1px solid #AFC4D3;
  padding: 2.3rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__bottom-inner {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.8rem 0 2rem;
  }
}

.footer__bottom-links {
  display: flex;
  gap: 2.4rem;
}

.footer__bottom-links a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #AFC4D3;
  transition: opacity 0.3s;
}

.footer__bottom-links a:hover {
  opacity: 0.7;
}

.footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #AFC4D3;
}

.mv {
  position: relative;
  width: 100%;
  height: 85rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mv {
    height: 50rem;
  }
}

.mv__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mv .swiper-slide {
  position: relative;
  width: 100%;
  height: 85rem;
}
@media (max-width: 767px) {
  .mv .swiper-slide {
    height: 50rem;
  }
}

.mv__slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.mv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(11, 42, 60) 1%, rgba(11, 42, 60, 0.4) 54%, rgba(244, 244, 244, 0) 100%);
}

.mv__contents {
  position: absolute;
  top: 33rem;
  left: 12rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .mv__contents {
    top: 17rem;
    left: 1.9rem;
  }
}

.mv__tagline {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .mv__tagline {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
}

.mv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (max-width: 767px) {
  .mv__title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.mv__title-large {
  font-size: 5.6rem;
}
@media (max-width: 767px) {
  .mv__title-large {
    font-size: 2.8rem;
  }
}

.mv__subtitle {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #E6F2F8;
}
@media (max-width: 767px) {
  .mv__subtitle {
    margin-top: 1.6rem;
    font-size: 1.7rem;
    line-height: 1.6;
  }
}

.mv .swiper-pagination {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .mv .swiper-pagination {
    bottom: 12.8rem;
  }
}

.mv .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 1.5px solid #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transition: background 0.3s;
}

.mv .swiper-pagination-bullet-active {
  background: #fff;
}

.news {
  background: #fff;
}

.news__inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  max-width: 120rem;
  margin: 0 auto;
  padding: 2.9rem 2rem;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .news__inner {
    display: block;
    padding: 2.8rem 2rem;
    border-bottom: none;
  }
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news__meta {
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
  }
}

.news__meta::after {
  content: "";
  display: block;
  width: 0;
  height: 1rem;
  border-left: 0.5px solid rgba(0, 159, 227, 0.6);
}

.news__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #009FE3;
}

.news__date {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #6B7280;
}

.news__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  flex: 1;
}
@media (max-width: 767px) {
  .news__title {
    margin-top: 1rem;
    line-height: 1.6;
  }
}

.news__arrow {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news__arrow {
    display: none;
  }
}

.about {
  position: relative;
  overflow: hidden;
  height: 64.5rem;
}
@media (max-width: 767px) {
  .about {
    height: auto;
  }
}

.about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EAF4FB;
}
@media (max-width: 767px) {
  .about__bg {
    height: 67.3rem;
  }
}

.about__airplane {
  position: absolute;
  top: 25rem;
  right: 0;
  width: 84.8rem;
  height: 37.4rem;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .about__airplane {
    top: auto;
    bottom: 0;
    left: -2rem;
    right: auto;
    width: 34.5rem;
    height: 23rem;
  }
}

.about__airplane img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.about__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 8rem;
  max-width: 144rem;
  margin: 0 auto;
  padding: 12.5rem 12rem 0;
  position: relative;
}
.about__inner::after {
  content: "";
  position: absolute;
  background: url(../img/about_bg.webp) no-repeat center center/cover;
  width: 84.8rem;
  height: 37.4rem;
  bottom: -11.7rem;
  right: 0.6rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .about__inner {
    flex-direction: column;
    gap: 0;
    padding: 7.4rem 2rem 5rem;
  }
}

.about__content {
  width: 47.9rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .about__content {
    width: 100%;
  }
}

.about__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .about__heading {
    margin-bottom: 2.4rem;
  }
}

.about__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.about__heading-ja {
  display: flex;
  align-items: center;
}

.about__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.about__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.about__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__text {
    line-height: 1.7;
  }
}

.about__cta {
  display: flex;
  align-items: center;
  width: 20rem;
  height: 5.6rem;
  background: #fff;
  border: 1px solid #DCE6EF;
  margin-top: 4.2rem;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .about__cta {
    width: 22rem;
    height: 4.4rem;
    margin-top: 2.4rem;
  }
}

.about__cta:hover {
  opacity: 0.7;
}

.about__cta-line {
  display: block;
  width: 0.5rem;
  height: 100%;
  background: linear-gradient(135deg, rgb(0, 159, 227) 0%, rgb(6, 93, 147) 100%);
}
@media (max-width: 767px) {
  .about__cta-line {
    width: 0.55rem;
  }
}

.about__cta-text {
  flex: 1;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.about__cta-arrow {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .about__cta-arrow {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.about__links {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .about__links {
    width: 100%;
    order: 2;
  }
}

.about__links a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4B5563;
}

.about__links-separator {
  display: block;
  width: 0;
  height: 1.5rem;
  border-left: 1px solid #D1D5DB;
}

.about__photo {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 38rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about__photo {
    width: 100%;
    height: 20rem;
    margin-top: 2.4rem;
    order: 3;
  }
}

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

.about__photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(1, 150, 217) 0%, rgb(6, 95, 150) 100%);
  opacity: 0.15;
  pointer-events: none;
}

.service {
  background: #fff;
  padding: 10.5rem 0 12.4rem;
}
@media (max-width: 767px) {
  .service {
    padding: 6.2rem 0 5rem;
  }
}

.service__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .service__inner {
    padding: 0 2rem;
  }
}

.service__header {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 7.2rem;
}
@media (max-width: 767px) {
  .service__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }
}

.service__heading {
  flex-shrink: 0;
}

.service__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .service__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.service__heading-ja {
  display: flex;
  align-items: center;
}

.service__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .service__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.service__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.service__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.service__cards {
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .service__cards {
    flex-direction: column;
  }
}

.service__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

.service__card-img {
  position: relative;
  width: 100%;
  height: 42rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service__card-img {
    height: 38rem;
  }
}

.service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service__card:hover .service__card-img img {
  transform: scale(1.05);
}

.service__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 62%, rgba(0, 0, 6, 0.5) 100%);
}

.service__card-body {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}

.service__card-arrow {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .service__card-arrow {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.service__card-arrow img {
  width: 100%;
  height: 100%;
}

.service__card-text {
  padding: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.topics {
  background: #F6F8FA;
  padding: 8rem 0 10rem;
}
@media (max-width: 767px) {
  .topics {
    padding: 6rem 0 8rem;
  }
}

.topics__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .topics__inner {
    padding: 0 2rem;
  }
}

.topics__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .topics__header {
    margin-bottom: 3rem;
  }
}

.topics__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .topics__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.topics__heading-ja {
  display: flex;
  align-items: center;
}

.topics__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .topics__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.topics__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.topics__more {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  transition: opacity 0.3s;
}

.topics__more:hover {
  opacity: 0.7;
}

.topics__more span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #009FE3;
}

.topics__more img {
  width: 1.6rem;
  height: 1.6rem;
}

.topics__cards {
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .topics__cards {
    flex-direction: column;
    gap: 2rem;
  }
}

.topics__card {
  flex: 1;
  background: #fff;
  overflow: hidden;
  transition: opacity 0.3s;
}

.topics__card:hover {
  opacity: 0.8;
}

.topics__card-img {
  width: 100%;
  height: 22rem;
  overflow: hidden;
}

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

.topics__card-body {
  padding: 1.6rem 2rem 2rem;
}

.topics__card-date {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #009FE3;
  margin-bottom: 0.9rem;
}

.topics__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.company {
  position: relative;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.company::after {
  content: "";
  position: absolute;
  background: url(../img/company_bg.webp) no-repeat center center/cover;
  width: 57.7rem;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .company {
    padding: 5rem 0 0;
  }
}

.company__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58.8rem;
  background: #F7FAFC;
}
@media (max-width: 767px) {
  .company__bg {
    height: 56.3rem;
  }
}

.company__airplane {
  position: absolute;
  top: 0;
  left: 0;
  width: 57.7rem;
  height: 63.2rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .company__airplane {
    top: auto;
    bottom: 0;
    left: auto;
    right: -2rem;
    width: 23.5rem;
    height: 15.7rem;
  }
}

.company__airplane img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.company__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8rem;
  max-width: 144rem;
  margin: 0 auto;
  padding: 13.8rem 12rem;
}
@media (max-width: 767px) {
  .company__inner {
    flex-direction: column;
    gap: 2.4rem;
    padding: 0 2rem 5rem;
  }
}

.company__photo {
  width: 52rem;
  height: 32rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company__photo {
    width: 100%;
    height: 20rem;
  }
}

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

.company__content {
  flex: 1;
}
@media (max-width: 767px) {
  .company__content {
    width: 100%;
  }
}

.company__heading {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .company__heading {
    margin-bottom: 2.4rem;
  }
}

.company__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .company__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.company__heading-ja {
  display: flex;
  align-items: center;
}

.company__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .company__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.company__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.company__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.company__cta {
  display: flex;
  align-items: center;
  width: 20rem;
  height: 5.6rem;
  background: #fff;
  border: 1px solid #DCE6EF;
  margin-top: 4.2rem;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .company__cta {
    width: 22rem;
    height: 4.4rem;
    margin-top: 2.4rem;
  }
}

.company__cta:hover {
  opacity: 0.7;
}

.company__cta-line {
  display: block;
  width: 0.5rem;
  height: 100%;
  background: linear-gradient(135deg, rgb(0, 159, 227) 0%, rgb(6, 93, 147) 100%);
}
@media (max-width: 767px) {
  .company__cta-line {
    width: 0.55rem;
  }
}

.company__cta-text {
  flex: 1;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.company__cta-arrow {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 2rem;
}

.recruit {
  position: relative;
  height: 55.2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit {
    height: 34rem;
  }
}

.recruit__bg {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}

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

.recruit__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 159, 227, 0.45) 0%, rgba(6, 93, 147, 0.55) 100%);
}

.recruit__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.recruit__en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
}
@media (max-width: 767px) {
  .recruit__en {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.recruit__content {
  margin-top: 0;
}

.recruit__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 767px) {
  .recruit__label {
    font-size: 1.7rem;
  }
}

.recruit__title {
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 767px) {
  .recruit__title {
    margin-top: 2rem;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.recruit__cta {
  display: flex;
  align-items: center;
  width: 22.9rem;
  height: 5.6rem;
  background: #fff;
  border: 1px solid #DCE6EF;
  margin-top: 5.7rem;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .recruit__cta {
    width: 22rem;
    height: 4rem;
    margin-top: 3rem;
  }
}

.recruit__cta:hover {
  opacity: 0.7;
}

.recruit__cta-text {
  flex: 1;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.recruit__cta-arrow {
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 2rem;
}

.page-fv__header {
  background: #fff;
  padding: 6.4rem 12rem 0;
}
@media (max-width: 767px) {
  .page-fv__header {
    padding: 7.4rem 2rem 0;
  }
}

.page-fv__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-fv__breadcrumb span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: #6B7C8A;
}
.page-fv__breadcrumb a {
  color: #009FE3;
}
.page-fv__breadcrumb svg {
  flex-shrink: 0;
}

.page-fv__hero {
  position: relative;
  width: 100%;
  height: 36rem;
  overflow: hidden;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .page-fv__hero {
    height: 20rem;
    margin-top: 1rem;
  }
}

.page-fv__hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-fv__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fv__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, rgba(0, 78, 120, 0.7) 0%, rgba(0, 159, 227, 0.4) 100%);
}

/* page-fv--no-overlay 修飾子付きのページのみグラデーション非表示 */
.page-fv--no-overlay .page-fv__hero-overlay {
  background: none;
}

.page-fv__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 767px) {
  .page-fv__hero-content {
    width: 100%;
    padding: 0 2rem;
  }
}

.page-fv__hero-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #CFE3F1;
}
@media (max-width: 767px) {
  .page-fv__hero-en {
    font-size: 1.8rem;
  }
}

.page-fv__hero-title {
  margin-top: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 767px) {
  .page-fv__hero-title {
    font-size: 2.4rem;
    margin-top: 0.8rem;
  }
}

.main-tasks {
  background: #fff;
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .main-tasks {
    padding: 6.4rem 0 5rem;
  }
}

.main-tasks__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8rem;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .main-tasks__inner {
    flex-direction: column;
    gap: 0;
    padding: 0 2rem;
  }
}

.main-tasks__photo-wrap {
  flex-shrink: 0;
  width: 50%;
}
@media (max-width: 767px) {
  .main-tasks__photo-wrap {
    width: 100%;
  }
}

.main-tasks__photo {
  width: 100%;
  height: 36rem;
  overflow: hidden;
}
.main-tasks__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .main-tasks__photo {
    height: 20rem;
  }
}

.main-tasks__caption {
  display: block;
  margin-top: 0.8rem;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #ABB7C1;
}
@media (max-width: 767px) {
  .main-tasks__caption {
    font-size: 1rem;
  }
}

.main-tasks__content {
  flex: 1;
  padding-top: 0;
}
@media (max-width: 767px) {
  .main-tasks__content {
    width: 100%;
    margin-top: 2.4rem;
  }
}

.main-tasks__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #009FE3;
  padding: 1rem;
}
@media (max-width: 767px) {
  .main-tasks__title {
    font-size: 2rem;
    padding: 1rem 0;
  }
}

.main-tasks__list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .main-tasks__list {
    margin-top: 0;
  }
}
.main-tasks__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.airlines {
  background: #EAF4FB;
  padding: 10.7rem 0 14.8rem;
  margin-top: 12.3rem;
}
@media (max-width: 767px) {
  .airlines {
    padding: 5.6rem 0 5rem;
    margin-top: 6rem;
  }
}

.airlines__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .airlines__inner {
    padding: 0 2rem;
  }
}

.airlines__heading {
  margin-bottom: 6.1rem;
}
@media (max-width: 767px) {
  .airlines__heading {
    margin-bottom: 2.4rem;
  }
}

.airlines__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .airlines__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.airlines__heading-ja {
  display: flex;
  align-items: center;
}
.airlines__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .airlines__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.airlines__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.airlines__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .airlines__cards {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.airlines__card {
  width: calc(25% - 2.4rem);
  min-width: 20rem;
  height: 28rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .airlines__card {
    width: 100%;
    min-width: 0;
    height: 17rem;
  }
}

.airlines__card-logo {
  width: auto;
  height: 10rem;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .airlines__card-logo {
    width: 19.3rem;
    height: 6.5rem;
    margin: 1.9rem auto 0;
  }
}
.airlines__card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.airlines__card-info {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
}
@media (max-width: 767px) {
  .airlines__card-info {
    bottom: 1.9rem;
  }
}

.airlines__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .airlines__card-name {
    font-size: 1.4rem;
  }
}

.airlines__card-route {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #4B5563;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .airlines__card-route {
    font-size: 1.5rem;
    padding-left: 0.5rem;
  }
}

.airlines__note {
  margin-top: 2rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #ABB7C1;
}
@media (max-width: 767px) {
  .airlines__note {
    margin-top: 0.3rem;
    line-height: 2;
  }
}

.work-scene {
  background: #F7FAFC;
  padding: 12.3rem 0 12rem;
}
@media (max-width: 767px) {
  .work-scene {
    padding: 4.7rem 0 6rem;
  }
}

.work-scene__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .work-scene__inner {
    padding: 0 2rem;
  }
}

.work-scene__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .work-scene__heading {
    margin-bottom: 2.4rem;
  }
}

.work-scene__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .work-scene__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.work-scene__heading-ja {
  display: flex;
  align-items: center;
}
.work-scene__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .work-scene__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.work-scene__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.work-scene__cards {
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .work-scene__cards {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.work-scene__card {
  flex: 1;
  background: #fff;
  overflow: hidden;
}

.work-scene__card-img {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .work-scene__card-img {
    height: 18.5rem;
  }
}
.work-scene__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-scene__card-body {
  padding: 2.6rem;
}
@media (max-width: 767px) {
  .work-scene__card-body {
    padding: 1.6rem 0.4rem;
  }
}

.work-scene__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.work-scene__card-text {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4B5563;
}
@media (max-width: 767px) {
  .work-scene__card-text {
    line-height: 1.7;
  }
}

.work-scene__photos {
  display: flex;
  gap: 4rem;
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .work-scene__photos {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2.4rem;
  }
}

.work-scene__photo {
  flex: 1;
  height: 32rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .work-scene__photo {
    height: 20rem;
  }
}
.work-scene__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow {
  background: #fff;
  padding: 10rem 0 10rem;
}
@media (max-width: 767px) {
  .workflow {
    padding: 6.4rem 0 6rem;
  }
}

.workflow__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .workflow__inner {
    padding: 0 1.5rem;
  }
}

.workflow__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .workflow__heading {
    margin-bottom: 2.4rem;
  }
}

.workflow__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .workflow__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.workflow__heading-ja {
  display: flex;
  align-items: center;
}
.workflow__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .workflow__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.workflow__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.workflow__sub-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1E3A5F;
  margin-bottom: 2.4rem;
  padding-left: 1.2rem;
  border-left: 4px solid #1E3A5F;
}
@media (max-width: 767px) {
  .workflow__sub-heading {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}

.workflow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 4rem;
}
.workflow__steps:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .workflow__steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.workflow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .workflow__step {
    width: 60%;
    flex: none;
    gap: 1.2rem;
  }
}

.workflow__step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #1E3A5F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 767px) {
  .workflow__step-number {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.2rem;
  }
}

.workflow__step-content {
  text-align: center;
}

.workflow__step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.workflow__step-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #6B7280;
}

.workflow__step-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0.8rem;
  overflow: hidden;
}
.workflow__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  align-self: center;
  flex-shrink: 0;
}
.workflow__step-arrow svg {
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 767px) {
  .workflow__step-arrow {
    padding: 0;
  }
  .workflow__step-arrow svg {
    transform: rotate(90deg);
  }
}

.other-services {
  background: #F5F7FA;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .other-services {
    padding: 6.4rem 0;
  }
}

.other-services__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .other-services__inner {
    padding: 0 2rem;
  }
}

.other-services__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .other-services__heading {
    margin-bottom: 2.4rem;
  }
}

.other-services__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .other-services__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.other-services__heading-ja {
  display: flex;
  align-items: center;
}
.other-services__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .other-services__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.other-services__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.other-services__cards {
  display: flex;
  gap: 4rem;
}
@media (max-width: 767px) {
  .other-services__cards {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.other-services__card {
  flex: 1;
  position: relative;
  background: #fff;
  overflow: hidden;
  transition: opacity 0.3s;
}

.other-services__card:hover {
  opacity: 0.85;
}

.other-services__card-img {
  width: 100%;
  height: 32rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .other-services__card-img {
    height: 18.5rem;
  }
}
.other-services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.other-services__card:hover .other-services__card-img img {
  transform: scale(1.05);
}

.other-services__card-body {
  padding: 2.4rem 2.4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .other-services__card-body {
    padding: 2rem 1.6rem 2.4rem;
  }
}

.other-services__card-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.other-services__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .other-services__card-title {
    font-size: 2rem;
  }
}

.other-services__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.other-services__card-link {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.other-services__card-link span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #009FE3;
}
.other-services__card-link svg {
  width: 1.6rem;
  height: 1.6rem;
}

.main-tasks__photos {
  display: flex;
  gap: 0;
  width: 60rem;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 767px) {
  .main-tasks__photos {
    width: 100%;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.main-tasks__photo {
  overflow: hidden;
}
.main-tasks__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-tasks__photo--large {
  width: 60rem;
  height: 36rem;
}
@media (max-width: 767px) {
  .main-tasks__photo--large {
    width: 100%;
    height: 20rem;
  }
}

.main-tasks__photo--small {
  position: absolute;
  bottom: -18rem;
  left: 0;
  width: 30rem;
  height: 18rem;
}
@media (max-width: 767px) {
  .main-tasks__photo--small {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 18rem;
  }
}

.main-tasks__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .main-tasks__desc {
    margin-bottom: 2.4rem;
  }
}

.cargo-exp {
  background: #EAF4FB;
  padding: 10.7rem 0 14.8rem;
}
@media (max-width: 767px) {
  .cargo-exp {
    padding: 5.6rem 0 5rem;
    margin-top: 6rem;
  }
}

.cargo-exp__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .cargo-exp__inner {
    padding: 0 2rem;
  }
}

.cargo-exp__heading {
  margin-bottom: 6.1rem;
}
@media (max-width: 767px) {
  .cargo-exp__heading {
    margin-bottom: 2.4rem;
  }
}

.cargo-exp__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .cargo-exp__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.cargo-exp__heading-ja {
  display: flex;
  align-items: center;
}
.cargo-exp__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .cargo-exp__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.cargo-exp__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.cargo-exp__cards {
  display: flex;
  gap: 2.6rem;
}
@media (max-width: 767px) {
  .cargo-exp__cards {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.cargo-exp__card {
  width: 28rem;
  height: 18rem;
  background: #009FE3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cargo-exp__card {
    width: 28rem;
    height: 18rem;
    margin: 0 auto;
    padding: 1.6rem;
  }
}

.cargo-exp__card-icon {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cargo-exp__card-icon img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 767px) {
  .cargo-exp__card-icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.cargo-exp__card-text {
  text-align: center;
}

.cargo-exp__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}

.cargo-exp__card-sub {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 767px) {
  .cargo-exp__card-sub {
    font-size: 1.3rem;
  }
}

.work-detail {
  background: #F5F7FA;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .work-detail {
    padding: 5rem 0;
  }
}

.work-detail__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 9rem;
}
@media (max-width: 767px) {
  .work-detail__inner {
    padding: 0 2rem;
  }
}

.work-detail__heading {
  margin-bottom: 5.8rem;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .work-detail__heading {
    margin-bottom: 2.4rem;
    padding: 0;
  }
}

.work-detail__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .work-detail__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.work-detail__heading-ja {
  display: flex;
  align-items: center;
}
.work-detail__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .work-detail__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.work-detail__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.work-detail__items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .work-detail__items {
    gap: 2.4rem;
  }
}

.work-detail__item {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  .work-detail__item {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .work-detail__item--reverse {
    flex-direction: column-reverse;
  }
}

.work-detail__item-body {
  width: 57%;
  height: 42rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .work-detail__item-body {
    width: 100%;
    padding: 2.4rem 0.8rem;
    height: auto;
    order: 1;
  }
}

.work-detail__item--reverse .work-detail__item-body {
  padding: 0rem 5rem 0rem 0rem;
}
@media (max-width: 767px) {
  .work-detail__item--reverse .work-detail__item-body {
    padding: 2.4rem 0;
  }
}

.work-detail__item-label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .work-detail__item-label {
    margin-bottom: 0.8rem;
    gap: 0.4rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.work-detail__item-label-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .work-detail__item-label-mark {
    font-size: 1.4rem;
    flex-direction: row;
    gap: 0.5rem;
  }
}

.work-detail__item-label-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #009FE3;
}
@media (max-width: 767px) {
  .work-detail__item-label-text {
    font-size: 1.4rem;
  }
}

.work-detail__item-label-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #009FE3;
}
@media (max-width: 767px) {
  .work-detail__item-label-num {
    font-size: 1.4rem;
    gap: 0.5rem;
  }
}

.work-detail__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .work-detail__item-title {
    font-size: 2rem;
  }
}

.work-detail__item-line {
  display: block;
  width: 45rem;
  height: 1px;
  background: #E5E7EB;
}
@media (max-width: 767px) {
  .work-detail__item-line {
    display: none;
  }
}

.work-detail__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4B5563;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .work-detail__item-desc {
    margin-top: 0;
  }
}

.work-detail__item-img {
  width: 50%;
  height: 36rem;
  flex-shrink: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .work-detail__item-img {
    position: static;
    transform: none;
  }
}
.work-detail__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .work-detail__item-img {
    width: 100%;
    height: 22rem;
  }
}

.work-detail__item01 .work-detail__item-body, .work-detail__item03 .work-detail__item-body, .work-detail__item05 .work-detail__item-body {
  padding-right: 11rem;
}
@media (max-width: 767px) {
  .work-detail__item01 .work-detail__item-body, .work-detail__item03 .work-detail__item-body, .work-detail__item05 .work-detail__item-body {
    padding-right: 0;
  }
}
.work-detail__item01 .work-detail__item-img, .work-detail__item03 .work-detail__item-img, .work-detail__item05 .work-detail__item-img {
  right: 0;
}

.work-detail__item02 .work-detail__item-body, .work-detail__item04 .work-detail__item-body, .work-detail__item06 .work-detail__item-body {
  margin-left: auto;
  padding-left: 14rem;
}
@media (max-width: 767px) {
  .work-detail__item02 .work-detail__item-body, .work-detail__item04 .work-detail__item-body, .work-detail__item06 .work-detail__item-body {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    order: 1;
  }
}
.work-detail__item02 .work-detail__item-img, .work-detail__item04 .work-detail__item-img, .work-detail__item06 .work-detail__item-img {
  left: 0;
}
@media (max-width: 767px) {
  .work-detail__item02 .work-detail__item-img, .work-detail__item04 .work-detail__item-img, .work-detail__item06 .work-detail__item-img {
    order: 2;
  }
}

.facility {
  background: #F7FAFC;
  padding: 12.3rem 0 12rem;
}
@media (max-width: 767px) {
  .facility {
    padding: 5rem 0 6rem;
  }
}

.facility__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .facility__inner {
    padding: 0 2rem;
  }
}

.facility__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .facility__heading {
    margin-bottom: 2.4rem;
  }
}

.facility__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .facility__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.facility__heading-ja {
  display: flex;
  align-items: center;
}
.facility__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .facility__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.facility__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.facility__group {
  margin-bottom: 4rem;
}
.facility__group:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .facility__group {
    margin-bottom: 2.4rem;
  }
}

.facility__group-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .facility__group-title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}

.facility__cards {
  display: flex;
  gap: 4rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .facility__cards {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.facility__card {
  flex: 1;
  max-width: 58rem;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .facility__card {
    max-width: 100%;
  }
}

.facility__card-img {
  width: 100%;
  height: 32rem;
  overflow: hidden;
}
.facility__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .facility__card-img {
    height: 20rem;
  }
}

.facility__card-body {
  padding: 1.3rem 1.3rem 1.6rem;
}
@media (max-width: 767px) {
  .facility__card-body {
    padding: 1rem;
  }
}

.facility__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .facility__card-title {
    font-size: 2rem;
  }
}

.facility__card-desc {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.cargo-hero-photo {
  max-width: 144rem;
  margin: 0 auto;
  padding: 11rem 12rem;
}
@media (max-width: 767px) {
  .cargo-hero-photo {
    padding: 5rem 2rem;
  }
}

.cargo-hero-photo__inner {
  width: 100%;
}
.cargo-hero-photo__inner img {
  width: 100%;
  height: 36rem;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cargo-hero-photo__inner img {
    height: 14rem;
  }
}

.passenger-hero-photo {
  max-width: 144rem;
  margin: 0 auto;
  padding: 8rem 12rem 0;
}
@media (max-width: 767px) {
  .passenger-hero-photo {
    padding: 4rem 2rem 0;
  }
}

.passenger-hero-photo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .passenger-hero-photo__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.passenger-hero-photo__item {
  width: 100%;
}
.passenger-hero-photo__item img {
  width: 100%;
  height: 36rem;
  object-fit: cover;
}
@media (max-width: 767px) {
  .passenger-hero-photo__item img {
    height: 22rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .work-detail__item-body {
    padding-left: 4rem;
    padding-right: 8rem;
  }
  .work-detail__item02 .work-detail__item-body, .work-detail__item04 .work-detail__item-body, .work-detail__item06 .work-detail__item-body {
    padding-left: 10rem;
  }
  .work-detail__item-desc {
    font-size: 1.4rem;
  }
}
.night-ops {
  background: #EAF4FB;
  padding: 10.7rem 0 12rem;
}
@media (max-width: 767px) {
  .night-ops {
    padding: 5.6rem 0 5rem;
    margin-top: 3rem;
  }
}

.night-ops__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .night-ops__inner {
    padding: 0 2rem;
  }
}

.night-ops__bottom {
  display: flex;
  align-items: center;
  gap: 8rem;
}
@media (max-width: 767px) {
  .night-ops__bottom {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.night-ops__photo {
  width: 43.5%;
  height: 32rem;
  overflow: hidden;
  flex-shrink: 0;
}
.night-ops__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .night-ops__photo {
    width: 100%;
    height: 22rem;
  }
}

.night-ops__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.night-ops__heading {
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .night-ops__heading {
    margin-bottom: 1.6rem;
  }
}

.night-ops__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .night-ops__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.night-ops__heading-ja {
  display: flex;
  align-items: center;
}
.night-ops__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .night-ops__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.night-ops__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.night-ops__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.night-ops__stats {
  display: flex;
  gap: 1px;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .night-ops__stats {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}

.night-ops__stat {
  flex: 1;
  background: #309BE5;
  padding: 6rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  height: 24.7rem;
}
@media (max-width: 767px) {
  .night-ops__stat {
    padding: 4rem 2rem;
    min-height: auto;
  }
}

.night-ops__stat-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  color: #fff;
  display: block;
}
@media (max-width: 767px) {
  .night-ops__stat-value {
    font-size: 3rem;
  }
}

.night-ops__stat-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 767px) {
  .night-ops__stat-label {
    font-size: 1.4rem;
  }
}

.aircraft {
  background: #FBFBFB;
}
@media (max-width: 767px) {
  .aircraft {
    padding: 6rem 0;
  }
}

.aircraft__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 10rem 12rem;
  display: flex;
  flex-direction: column;
  gap: 5.8rem;
}
@media (max-width: 767px) {
  .aircraft__inner {
    padding: 0 2rem;
    gap: 3rem;
  }
}

.aircraft__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .aircraft__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.aircraft__heading-ja {
  display: flex;
  align-items: center;
}

.aircraft__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .aircraft__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.aircraft__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.aircraft__cards {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .aircraft__cards {
    flex-direction: column;
    gap: 2rem;
  }
}

.aircraft__card {
  position: relative;
  width: 38rem;
  height: 24.7rem;
  border: 1px solid #E5E7EB;
  background: #FDFEFF;
  overflow: hidden;
}
@media (max-width: 767px) {
  .aircraft__card {
    width: 100%;
    height: 22rem;
  }
}

.aircraft__card--accent {
  border-color: #E5E7EB;
  background: #FDFEFF;
}

.aircraft__card--accent .aircraft__card-bg {
  display: none;
}

.aircraft__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aircraft__card-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.aircraft__card-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
}

.aircraft__card-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.aircraft__card-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #009FE3;
}

.aircraft__card-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .aircraft__card-ja {
    font-size: 1.8rem;
  }
}

.aircraft__card-models {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #6B7280;
  text-align: center;
  white-space: nowrap;
}

.ramp-night-img {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .page-id-6 .page-fv__hero-title {
    font-size: 2.2rem;
  }
}

.about-mission {
  position: relative;
  padding: 10rem 0 12rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-mission {
    padding: 5.6rem 0 6rem;
  }
}

.about-mission__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-mission__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission__inner {
  position: relative;
  z-index: 1;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .about-mission__inner {
    padding: 0 2rem;
  }
}

.about-mission__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .about-mission__heading {
    margin-bottom: 3rem;
  }
}

.about-mission__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about-mission__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.about-mission__heading-ja span:first-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about-mission__heading-ja span:first-child {
    font-size: 1.7rem;
  }
}

.about-mission__heading-line {
  display: block;
  width: 12rem;
  height: 1px;
  background: #D6E4EE;
  flex-shrink: 0;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .about-mission__heading-line {
    width: 6rem;
    margin-top: 0.8rem;
  }
}

.about-mission__content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-mission__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #009FE3;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .about-mission__catchphrase {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.about-mission__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  text-align: left;
}
@media (max-width: 767px) {
  .about-mission__text {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

.about-mission__list {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  text-align: left;
  list-style: none;
  counter-reset: mission-counter;
  padding: 2.4rem;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
  border: 2px solid #1B2B5E;
  border-radius: 8px;
  overflow: hidden;
}
.about-mission__list li {
  counter-increment: mission-counter;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2.4rem;
  border-bottom: 1px solid #E5E5E5;
  white-space: nowrap;
}
.about-mission__list li:last-child {
  border-bottom: none;
}
.about-mission__list li::before {
  content: counter(mission-counter);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #1A1A1A;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .about-mission__list {
    margin-left: 1.6rem;
    margin-right: 1.6rem;
  }
  .about-mission__list li {
    padding: 1.2rem 1.6rem;
    gap: 1rem;
    font-size: 1.2rem;
  }
  .about-mission__list li::before {
    font-size: 2rem;
  }
}

.about-message {
  position: relative;
  padding: 12rem 0 11rem;
  background: #F5F7FA;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-message {
    padding: 5.6rem 0 6rem;
  }
}

.about-message__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-message__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-message__inner {
  position: relative;
  z-index: 1;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .about-message__inner {
    padding: 0 2rem;
  }
}

.about-message__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .about-message__heading {
    margin-bottom: 3rem;
  }
}

.about-message__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about-message__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.about-message__heading-ja {
  display: flex;
  align-items: center;
}
.about-message__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about-message__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.about-message__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.about-message__body {
  max-width: 100rem;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 767px) {
  .about-message__body {
    flex-direction: column;
    align-items: center;
  }
}

.about-message__photo {
  width: 20rem;
  height: 25rem;
  background-color: #E0E0E0;
  border-radius: 4px;
  flex-shrink: 0;
}
.about-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .about-message__photo {
    width: 16rem;
    height: 20rem;
  }
}

.about-message__text-wrap {
  flex: 1;
}

.about-message__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.about-message__text:last-of-type {
  margin-bottom: 2rem;
}

.about-message__sign {
  display: flex;
  flex-direction: column;
}

.about-message__sign-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.about-message__sign-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about-message__sign-name {
    font-size: 2rem;
  }
}

.about-strengths {
  background: #F5F7FA;
  padding: 9rem 0;
}
@media (max-width: 767px) {
  .about-strengths {
    padding: 6.4rem 0;
  }
}

.about-strengths__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .about-strengths__inner {
    padding: 0 2rem;
  }
}

.about-strengths__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .about-strengths__heading {
    margin-bottom: 2.4rem;
  }
}

.about-strengths__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about-strengths__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.about-strengths__heading-ja {
  display: flex;
  align-items: center;
}
.about-strengths__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about-strengths__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.about-strengths__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.about-strengths__cards {
  display: flex;
  gap: 3.3rem;
}
@media (max-width: 767px) {
  .about-strengths__cards {
    flex-direction: column;
    gap: 2rem;
  }
}

.about-strengths__card {
  flex: 1;
  background: #fff;
  text-align: center;
  padding: 6rem 3.2rem;
}
@media (max-width: 767px) {
  .about-strengths__card {
    padding: 4rem 2.8rem;
  }
}

.about-strengths__card-icon {
  width: 12rem;
  height: 12rem;
  background: #EAF4FB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.4rem;
}
.about-strengths__card-icon img {
  width: 5.6rem;
  height: auto;
}
@media (max-width: 767px) {
  .about-strengths__card-icon {
    width: 10rem;
    height: 10rem;
    margin-bottom: 2rem;
  }
}

.about-strengths__card-body {
  text-align: center;
}

.about-strengths__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #009FE3;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .about-strengths__card-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}

.about-strengths__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  text-align: left;
}

.about-safety {
  background: #fff;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .about-safety {
    padding: 6.4rem 0;
  }
}

.about-safety__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .about-safety__inner {
    padding: 0 2rem;
  }
}

.about-safety__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .about-safety__heading {
    margin-bottom: 2.4rem;
  }
}

.about-safety__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about-safety__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.about-safety__heading-ja {
  display: flex;
  align-items: center;
}
.about-safety__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about-safety__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.about-safety__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.about-safety__cards {
  display: flex;
  gap: 3rem;
  padding-top: 2.3rem;
}
@media (max-width: 767px) {
  .about-safety__cards {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.about-safety__card {
  flex: 1;
  position: relative;
  padding-top: 15rem;
  border: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .about-safety__card {
    width: 100%;
    padding-top: 13.5rem;
  }
}

.about-safety__card::before {
  content: "";
  position: absolute;
  top: 2.3rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FCFDFF;
}

.about-safety__card-img {
  position: absolute;
  top: 2rem;
  left: 2.8rem;
  right: 2.8rem;
  height: 13rem;
  z-index: 1;
}
.about-safety__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-safety__card-img {
    left: 2rem;
    right: 2rem;
    height: 12rem;
  }
}

.about-safety__card-content {
  position: relative;
  z-index: 1;
  padding: 2rem 2.8rem 2.8rem;
}
@media (max-width: 767px) {
  .about-safety__card-content {
    padding: 2rem;
  }
}

.about-safety__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 0.8rem;
}

.about-safety__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #6A6B6E;
}

.about-history {
  background: #F5F5F5;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .about-history {
    padding: 6.4rem 0;
  }
}

.about-history__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .about-history__inner {
    padding: 0 2rem;
  }
}

.about-history__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .about-history__heading {
    margin-bottom: 2.4rem;
  }
}

.about-history__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about-history__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.about-history__heading-ja {
  display: flex;
  align-items: center;
}
.about-history__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about-history__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.about-history__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.about-history__timeline {
  position: relative;
}

.about-history__items {
  display: flex;
  flex-direction: column;
}

.about-history__item {
  display: grid;
  grid-template-columns: 10.5rem 1.8rem 1fr;
  gap: 0 3rem;
  align-items: baseline;
  padding: 1.5rem 0;
  position: relative;
}
.about-history__item::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1.8rem;
  height: 1.8rem;
  border: 2.5px solid #309BE5;
  background: #fff;
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 1;
  top: 41%;
  transform: translateY(-50%);
}
.about-history__item::after {
  content: "";
  position: absolute;
  left: 14.35rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #309BE5;
  z-index: 0;
}
.about-history__item:first-child::after {
  top: 50%;
}
.about-history__item:last-child::after {
  bottom: 50%;
}
@media (max-width: 767px) {
  .about-history__item {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 1.8rem 3.5rem;
    margin-bottom: 0;
    align-items: initial;
  }
  .about-history__item::before {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.8rem;
    height: 1.8rem;
    transform: none;
    grid-column: auto;
    grid-row: auto;
  }
  .about-history__item::after {
    left: 0.85rem;
  }
  .about-history__item:first-child::after {
    top: 1rem;
  }
  .about-history__item:last-child::after {
    bottom: calc(100% - 1rem);
  }
}

.about-history__item-year {
  grid-column: 1;
  grid-row: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #309BE5;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .about-history__item-year {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.about-history__item-text {
  grid-column: 3;
  grid-row: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #6B6C6E;
}
@media (max-width: 767px) {
  .about-history__item-text {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.about-group {
  background: #EEF1F5;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .about-group {
    padding: 6.4rem 0;
  }
}

.about-group__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .about-group__inner {
    padding: 0 2rem;
  }
}

.about-group__content {
  display: block;
}

.about-group__heading {
  margin-bottom: 0;
}

.about-group__companies {
  display: flex;
  gap: 8rem;
  margin-top: 4rem;
  align-items: stretch;
}
@media (max-width: 767px) {
  .about-group__companies {
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 2.4rem;
  }
}

.about-group__company {
  flex: 1;
  min-width: 0;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-group__company-logo {
  width: 30rem;
  height: 10rem;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .about-group__company-logo {
    width: 80%;
    height: 8rem;
    margin: 2rem auto 0;
  }
}
.about-group__company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-group__company-info {
  padding: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .about-group__company-info {
    padding: 2rem;
  }
}

.about-group__company-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .about-group__company-name {
    font-size: 1.8rem;
  }
}

.about-group__company-relation {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #4B5563;
}

.about-group__heading-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-group__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about-group__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.about-group__heading-ja {
  display: flex;
  align-items: center;
}
.about-group__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about-group__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.about-group__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.about-group__cta {
  display: flex;
  align-items: center;
  position: relative;
  width: auto;
  height: 5.6rem;
  border: 1px solid #DCE6EF;
  background: #fff;
  text-decoration: none;
  padding: 0 2rem 0 2.4rem;
  transition: opacity 0.3s;
  margin: auto 3rem 3rem;
}
@media (max-width: 767px) {
  .about-group__cta {
    padding: 0 1.6rem 0 2rem;
    margin: auto 2rem 2rem;
  }
}

.about-group__cta:hover {
  opacity: 0.7;
}

.about-group__cta-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.5rem;
  height: 100%;
  background: linear-gradient(135deg, rgb(0, 159, 227) 0%, rgb(5, 92, 146) 100%);
}

.about-group__cta-text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.about-group__cta-arrow {
  width: 1.6rem;
  height: 1.6rem;
}

.company-outline {
  background: #fff;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .company-outline {
    padding: 6.4rem 0;
  }
}

.company-outline__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
  display: flex;
  gap: 14.9rem;
}
@media (max-width: 767px) {
  .company-outline__inner {
    flex-direction: column;
    padding: 0 2rem;
    gap: 2.4rem;
  }
}

.company-outline__heading {
  flex-shrink: 0;
}

.company-outline__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .company-outline__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.company-outline__heading-ja {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.company-outline__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .company-outline__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.company-outline__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.company-outline__table {
  flex: 1;
}

.company-outline__row {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .company-outline__row {
    flex-direction: column;
  }
}

.company-outline__label {
  width: 20.6rem;
  flex-shrink: 0;
  padding: 3rem 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #009FE3;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .company-outline__label {
    width: 100%;
    padding: 1.8rem 1.6rem;
    background: #F5F7FA;
    border-bottom: 1px solid #E5E7EB;
  }
}

.company-outline__value {
  flex: 1;
  padding: 3rem 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #6B6C6E;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .company-outline__value {
    padding: 1.8rem 1.6rem;
    font-size: 1.5rem;
  }
}

.company-outline__value a {
  color: inherit;
  text-decoration: underline;
}

.company-clients {
  position: relative;
  background: #fff;
  padding: 12rem 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-clients {
    padding: 6.4rem 0 4rem;
  }
}

.company-clients__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.company-clients__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-clients__inner {
  position: relative;
  z-index: 1;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .company-clients__inner {
    padding: 0 2rem;
    overflow-x: auto;
  }
}

.company-clients__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .company-clients__heading {
    margin-bottom: 2.4rem;
  }
}

.company-clients__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .company-clients__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.company-clients__heading-ja {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.company-clients__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .company-clients__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.company-clients__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.company-clients__table {
  width: 100%;
}
@media (max-width: 767px) {
  .company-clients__table {
    min-width: 68rem;
  }
}

.company-clients__header {
  display: flex;
}
.company-clients__header > div {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #309BE6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #F5F7FA;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.company-clients__header > div:last-child {
  border-right: none;
}

.company-clients__header-airline {
  width: 35rem;
  justify-content: flex-start !important;
  padding-left: 2.4rem;
}

.company-clients__header-code {
  width: 17rem;
}

.company-clients__header-cargo,
.company-clients__header-pax,
.company-clients__header-ramp,
.company-clients__header-ops {
  width: 17rem;
}

.company-clients__row {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
}
.company-clients__row > div {
  height: 4.5rem;
  display: flex;
  align-items: center;
  background: #F5F7FA;
  border-right: 1px solid #E5E7EB;
}
.company-clients__row > div:last-child {
  border-right: none;
}

.company-clients__airline {
  width: 35rem;
  padding-left: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #309BE6;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.company-clients__logo {
  width: 6rem;
  height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
}

.company-clients__code {
  width: 17rem;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #9C9EA4;
}

.company-clients__check {
  width: 17rem;
  justify-content: center;
}

.company-clients__icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: #309BE6;
  border-radius: 0.2rem;
  position: relative;
}

.company-clients__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
}

.company-clients__airline a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.company-clients__airline a:hover {
  opacity: 0.7;
}

.company-clients__note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #ABB7C1;
}

.company-clients__note-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: #309BE6;
  border-radius: 0.2rem;
}

.company-access {
  background: #F0F4F9;
  padding: 13rem 0 12.5rem;
}
@media (max-width: 767px) {
  .company-access {
    padding: 6.4rem 0;
  }
}

.company-access__inner {
  display: flex;
  align-items: center;
  gap: 8rem;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 18.4rem;
}
@media (max-width: 767px) {
  .company-access__inner {
    flex-direction: column;
    gap: 2.4rem;
    padding: 0 2rem;
  }
}

.company-access__map {
  width: 50%;
  height: 26rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-access__map {
    width: 100%;
    height: 17rem;
  }
}

.company-access__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-access__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .company-access__info {
    gap: 2rem;
    width: 100%;
  }
}

.company-access__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .company-access__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.company-access__heading-ja {
  display: flex;
  align-items: center;
}

.company-access__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .company-access__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.company-access__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.company-access__address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #6B6C6E;
}
@media (max-width: 767px) {
  .company-access__address {
    font-size: 1.5rem;
  }
}

.gse-intro {
  background: #fff;
  padding: 0;
}

.gse-intro__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 8rem 12rem 4rem;
  display: block;
}
@media (max-width: 767px) {
  .gse-intro__inner {
    padding: 6.4rem 2rem 3rem;
  }
}

.gse-intro__img {
  width: 100%;
  height: 50rem;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 767px) {
  .gse-intro__img {
    height: 24rem;
  }
}

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

.gse-intro__text {
  display: block;
  width: 100%;
  margin: 0 0 4rem;
  padding: 0;
}
@media (max-width: 767px) {
  .gse-intro__text {
    margin-bottom: 2.4rem;
  }
}

.gse-intro__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.gse-list {
  position: relative;
  background: #fff;
  padding: 12rem 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gse-list {
    padding: 6.4rem 0;
  }
}

.gse-list__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gse-list__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gse-list__inner {
  position: relative;
  z-index: 1;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .gse-list__inner {
    padding: 0 2rem;
    gap: 2.4rem;
  }
}

.gse-list__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .gse-list__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.gse-list__heading-ja {
  display: flex;
  align-items: center;
}

.gse-list__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .gse-list__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.gse-list__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.gse-list__items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .gse-list__items {
    gap: 2rem;
  }
}

.gse-list__row {
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .gse-list__row {
    flex-direction: column;
    gap: 2rem;
  }
}

.gse-list__card {
  flex: 1;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gse-list__card {
    flex: none;
  }
}

.gse-list__card--wide {
  max-width: calc(33.333% - 2rem);
}
@media (max-width: 767px) {
  .gse-list__card--wide {
    max-width: 100%;
  }
}

.gse-list__card-img {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gse-list__card-img {
    height: 18rem;
  }
}

.gse-list__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gse-list__card-body {
  padding: 1.6rem 2.6rem 2.6rem;
}
@media (max-width: 767px) {
  .gse-list__card-body {
    padding: 1.6rem 2rem 2rem;
  }
}

.gse-list__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .gse-list__card-title {
    font-size: 1.8rem;
  }
}

.gse-list__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4B5563;
}

.gse-list__note {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4B5563;
  text-align: right;
}
@media (max-width: 767px) {
  .gse-list__note {
    margin-top: 1.6rem;
    font-size: 1.2rem;
  }
}

.gse-other {
  background: #fff;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .gse-other {
    padding: 6.4rem 0;
  }
}

.gse-other__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .gse-other__inner {
    padding: 0 2rem;
  }
}

.gse-other__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 767px) {
  .gse-other__heading {
    margin-bottom: 2.4rem;
  }
}

.gse-other__heading-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(114deg, rgb(0, 159, 227) 2%, rgb(5, 102, 158) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .gse-other__heading-en {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.gse-other__heading-ja {
  display: flex;
  align-items: center;
}

.gse-other__heading-ja span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .gse-other__heading-ja span:last-child {
    font-size: 1.7rem;
  }
}

.gse-other__heading-line {
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: #1A1A1A;
  flex-shrink: 0;
}

.gse-other__cards {
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .gse-other__cards {
    flex-direction: column;
    gap: 2rem;
  }
}

.gse-other__card {
  flex: 1;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.3s;
}

.gse-other__card:hover {
  opacity: 0.8;
}

.gse-other__card-img {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gse-other__card-img {
    height: 18rem;
  }
}

.gse-other__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gse-other__card-body {
  padding: 2rem 2.6rem 2.6rem;
}
@media (max-width: 767px) {
  .gse-other__card-body {
    padding: 2rem;
  }
}

.gse-other__card-text {
  margin-bottom: 1.4rem;
}

.gse-other__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .gse-other__card-title {
    font-size: 1.8rem;
  }
}

.gse-other__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4B5563;
}

.gse-other__card-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gse-other__card-link span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #009FE3;
}

.gse-other__card-link img {
  width: 1.6rem;
  height: auto;
}

.contact-form {
  background: #F7FAFC;
  padding: 8rem 0 12rem;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 2.4rem 0 6rem;
  }
}

.contact-form__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .contact-form__inner {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .contact-form__inner {
    padding: 0 4rem;
  }
}

.contact-form__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #4B5563;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .contact-form__desc {
    margin-bottom: 2.4rem;
  }
}

.contact-form__desc-required {
  display: inline-block;
  background: #009FE3;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding: 0 0.6rem;
  border-radius: 0.2rem;
  vertical-align: middle;
}

.contact-form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.contact-form__row {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-top: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .contact-form__row {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
  }
}

.contact-form__row:last-of-type {
  border-bottom: 1px solid #E5E7EB;
}

.contact-form__row--address textarea {
  min-height: 14rem;
  resize: vertical;
}
@media (max-width: 767px) {
  .contact-form__row--address textarea {
    min-height: 10rem;
  }
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 38.6rem;
  min-width: 38.6rem;
  flex-shrink: 0;
  padding: 2.3rem 3rem;
  background: #fff;
  border-right: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .contact-form__label {
    width: 100%;
    min-width: auto;
    padding: 0;
    background: transparent;
    border-right: none;
    border-bottom: none;
    gap: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .contact-form__label {
    width: 24rem;
    min-width: 24rem;
    padding: 2rem 2rem;
  }
}

.contact-form__label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}

.contact-form__badge {
  display: inline-block;
  background: #009FE3;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding: 0 0.6rem;
  border-radius: 0.2rem;
}

.contact-form__field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 2.3rem 3rem;
  background: #fff;
}
@media (max-width: 767px) {
  .contact-form__field {
    padding: 0;
    background: transparent;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .contact-form__field {
    padding: 2rem 2rem;
  }
}
.contact-form__field input[type=text],
.contact-form__field input[type=email],
.contact-form__field input[type=tel] {
  width: 100%;
  height: 4.8rem;
  padding: 0 1.6rem;
  background: #FAFAFA;
  border: 1px solid #E5E7EB;
  border-radius: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #072334;
}
.contact-form__field input[type=text]::placeholder,
.contact-form__field input[type=email]::placeholder,
.contact-form__field input[type=tel]::placeholder {
  color: #ABB7C1;
}
@media (max-width: 767px) {
  .contact-form__field input[type=text],
  .contact-form__field input[type=email],
  .contact-form__field input[type=tel] {
    height: auto;
    padding: 1.1rem 1.7rem;
    font-size: 1.4rem;
  }
}
.contact-form__field select {
  width: 100%;
  height: 4.8rem;
  padding: 0 1.6rem;
  background: #FAFAFA;
  border: 1px solid #E5E7EB;
  border-radius: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #575D61;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23072334' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact-form__field select {
    height: auto;
    padding: 1.1rem 1.7rem;
    font-size: 1.4rem;
  }
}
.contact-form__field textarea {
  width: 100%;
  min-height: 20rem;
  padding: 1.6rem;
  background: #FAFAFA;
  border: 1px solid #E5E7EB;
  border-radius: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #072334;
  resize: vertical;
}
.contact-form__field textarea::placeholder {
  color: #ABB7C1;
}
@media (max-width: 767px) {
  .contact-form__field textarea {
    min-height: 16rem;
    padding: 1.1rem 1.7rem;
    font-size: 1.4rem;
  }
}

.contact-form__field--postal {
  gap: 1rem;
}
.contact-form__field--postal input[type=text] {
  width: 12rem;
}
@media (max-width: 767px) {
  .contact-form__field--postal input[type=text] {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}

.contact-form__field--tel {
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-form__field--tel input[type=tel] {
  width: auto;
  flex: 1;
  min-width: 0;
}

.contact-form__postal-mark {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #9CA5AD;
}

.contact-form__separator {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #9CA5AD;
}

.contact-form__submit {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-form__submit {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    text-align: center;
  }
}

.contact-form__btn {
  display: block;
  width: 30rem;
  height: 6.2rem;
  background: linear-gradient(133deg, rgb(0, 159, 227) 2%, rgb(19, 116, 195) 100%);
  border: none;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .contact-form__btn {
    width: 100%;
    max-width: 30rem;
  }
}

.contact-form__btn:hover {
  opacity: 0.8;
}

.contact-form__btn--back {
  background: #6B7280;
}

.contact-form__btn--link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-form__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form__submit--confirm {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-form__submit--confirm {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.6rem;
  }
}

.contact-form__confirm-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #072334;
}
@media (max-width: 767px) {
  .contact-form__confirm-value {
    font-size: 1.4rem;
  }
}

.contact-form__confirm-value--pre {
  white-space: pre-wrap;
  word-break: break-word;
}

.contact-form__thanks-content {
  text-align: center;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .contact-form__thanks-content {
    padding: 3rem 0;
  }
}
.contact-form__thanks-content .contact-form__btn {
  margin: 0 auto;
}

.contact-form__thanks-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #072334;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .contact-form__thanks-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.contact-form__thanks-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4B5563;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .contact-form__thanks-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}

/* ==========================================================================
   お問い合わせフォーム（自前実装）エラー表示
   ========================================================================== */
.contact-form__error {
  display: block;
  width: 100%;
  margin: 0.8rem 0 0;
  padding: 0.8rem 1.2rem;
  background: #FEF2F2;
  border-left: 3px solid #DC2626;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #B91C1C;
}

.contact-form__error--global {
  margin: 0 0 2.4rem;
  padding: 1.2rem 1.6rem;
}

.sitemap {
  background: #fff;
  padding: 10rem 0 12rem;
}
@media (max-width: 767px) {
  .sitemap {
    padding: 6rem 0 8rem;
  }
}

.sitemap__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .sitemap__inner {
    padding: 0 2rem;
  }
}

.sitemap__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 8rem;
}
@media (max-width: 767px) {
  .sitemap__columns {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.sitemap__category {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #009FE3;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .sitemap__category {
    font-size: 1.7rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.6rem;
  }
}

.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media (max-width: 767px) {
  .sitemap__list {
    gap: 1.2rem;
  }
}

.sitemap__list li {
  position: relative;
  padding-left: 1.6rem;
}

.sitemap__list li::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: #009FE3;
  border-radius: 50%;
}

.sitemap__list a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4B5563;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap__list a:hover {
  color: #009FE3;
}

.privacy {
  background: #fff;
  padding: 8rem 0 12rem;
}
@media (max-width: 767px) {
  .privacy {
    padding: 4rem 0 6rem;
  }
}

.privacy__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .privacy__inner {
    padding: 0 2rem;
  }
}

.privacy__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4B5563;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .privacy__lead {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}

.privacy__section {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .privacy__section {
    margin-bottom: 3.2rem;
  }
}

.privacy__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #009FE3;
}
@media (max-width: 767px) {
  .privacy__section-title {
    font-size: 1.8rem;
    padding-bottom: 1rem;
    margin-bottom: 1.6rem;
  }
}

.privacy__section-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4B5563;
}
@media (max-width: 767px) {
  .privacy__section-text {
    font-size: 1.5rem;
  }
}

.privacy__list {
  margin-top: 1.6rem;
  padding-left: 2.4rem;
  list-style: disc;
}
@media (max-width: 767px) {
  .privacy__list {
    margin-top: 1.2rem;
    padding-left: 2rem;
  }
}

.privacy__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4B5563;
}
@media (max-width: 767px) {
  .privacy__list li {
    font-size: 1.5rem;
  }
}

.privacy__contact {
  margin-top: 6rem;
  padding: 4rem;
  background: #F5F7FA;
  border-radius: 0.8rem;
}
@media (max-width: 767px) {
  .privacy__contact {
    margin-top: 4rem;
    padding: 2.4rem 2rem;
  }
}

.privacy__contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .privacy__contact-title {
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
  }
}

.privacy__contact-info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4B5563;
}
@media (max-width: 767px) {
  .privacy__contact-info {
    font-size: 1.5rem;
  }
}

.privacy__contact-info a {
  color: #009FE3;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.privacy__contact-info a:hover {
  opacity: 0.7;
}

.news-archive {
  background: #fff;
  padding: 8rem 0 12rem;
}
@media (max-width: 767px) {
  .news-archive {
    padding: 4rem 0 6rem;
  }
}

.news-archive__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .news-archive__inner {
    padding: 0 2rem;
  }
}

.news-archive__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .news-archive__filter {
    gap: 0.8rem;
    margin-bottom: 3rem;
  }
}

.news-archive__filter-item {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid #D1D5DB;
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4B5563;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .news-archive__filter-item {
    padding: 0.6rem 1.4rem;
    font-size: 1.3rem;
  }
}

.news-archive__filter-item:hover {
  background: #009FE3;
  border-color: #009FE3;
  color: #fff;
}

.news-archive__filter-item.is-active {
  background: #009FE3;
  border-color: #009FE3;
  color: #fff;
}

.news-archive__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-archive__item {
  border-bottom: 1px solid #E5E7EB;
}

.news-archive__item:first-child {
  border-top: 1px solid #E5E7EB;
}

.news-archive__link {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 0;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .news-archive__link {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    padding: 2rem 0;
  }
}

.news-archive__link:hover {
  opacity: 0.7;
}

.news-archive__date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #6B7C8A;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-archive__date {
    font-size: 1.3rem;
  }
}

.news-archive__category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: #009FE3;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-archive__category {
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
  }
}

.news-archive__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.8;
  color: #072334;
}
@media (max-width: 767px) {
  .news-archive__title {
    font-size: 1.5rem;
    width: 100%;
  }
}

.news-archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .news-archive__pagination {
    margin-top: 4rem;
  }
}

.news-archive__pagination a,
.news-archive__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #072334;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .news-archive__pagination a,
  .news-archive__pagination span {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.3rem;
  }
}

.news-archive__pagination a:hover {
  background: #009FE3;
  color: #fff;
}

.news-archive__pagination span.current {
  background: #009FE3;
  color: #fff;
}

.news-archive__empty {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2;
  color: #4B5563;
  text-align: center;
  padding: 6rem 0;
}

.news-single {
  background: #fff;
  padding: 8rem 0 12rem;
}
@media (max-width: 767px) {
  .news-single {
    padding: 4rem 0 6rem;
  }
}

.news-single__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .news-single__inner {
    padding: 0 2rem;
  }
}

.news-single__header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .news-single__header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
}

.news-single__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .news-single__meta {
    margin-bottom: 1.6rem;
  }
}

.news-single__date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #6B7C8A;
}
@media (max-width: 767px) {
  .news-single__date {
    font-size: 1.3rem;
  }
}

.news-single__category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: #009FE3;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
}
@media (max-width: 767px) {
  .news-single__category {
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
  }
}

.news-single__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #072334;
}
@media (max-width: 767px) {
  .news-single__title {
    font-size: 2rem;
  }
}

.news-single__content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4B5563;
}
@media (max-width: 767px) {
  .news-single__content {
    font-size: 1.5rem;
  }
}

.news-single__content p {
  margin-bottom: 2em;
}

.news-single__content p:last-child {
  margin-bottom: 0;
}

.news-single__content h2 {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.6;
  color: #072334;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #009FE3;
}
@media (max-width: 767px) {
  .news-single__content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.6rem;
  }
}

.news-single__content h3 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #072334;
  margin-top: 3rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .news-single__content h3 {
    font-size: 1.7rem;
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
  }
}

.news-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  margin: 2rem 0;
}

.news-single__content ul,
.news-single__content ol {
  margin: 1.6rem 0;
  padding-left: 2.4rem;
}

.news-single__content li {
  margin-bottom: 0.8rem;
}

.news-single__content a {
  color: #009FE3;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.news-single__content a:hover {
  opacity: 0.7;
}

.news-single__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .news-single__nav {
    margin-top: 4rem;
    padding-top: 3rem;
  }
}

.news-single__nav-prev,
.news-single__nav-next {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #009FE3;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .news-single__nav-prev,
  .news-single__nav-next {
    font-size: 1.3rem;
  }
}

.news-single__nav-prev:hover,
.news-single__nav-next:hover {
  opacity: 0.7;
}

.news-single__nav-prev.is-disabled,
.news-single__nav-next.is-disabled {
  color: #D1D5DB;
  pointer-events: none;
}

.news-single__nav-back {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  border: 1px solid #072334;
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #072334;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .news-single__nav-back {
    padding: 1rem 2rem;
    font-size: 1.3rem;
  }
}

.news-single__nav-back:hover {
  background: #072334;
  color: #fff;
}

.not-found {
  background: #fff;
  padding: 10rem 0 14rem;
}
@media (max-width: 767px) {
  .not-found {
    padding: 6rem 0 8rem;
  }
}

.not-found__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
  text-align: center;
}
@media (max-width: 767px) {
  .not-found__inner {
    padding: 0 2rem;
  }
}

.not-found__code {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12rem;
  line-height: 1;
  color: #009FE3;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .not-found__code {
    font-size: 8rem;
    margin-bottom: 1.6rem;
  }
}

.not-found__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #072334;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .not-found__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.not-found__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4B5563;
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .not-found__text {
    font-size: 1.5rem;
    margin-bottom: 3.6rem;
  }
}

.not-found__btn {
  display: inline-block;
  padding: 1.6rem 4.8rem;
  background: #009FE3;
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .not-found__btn {
    padding: 1.4rem 3.6rem;
    font-size: 1.5rem;
  }
}

.not-found__btn:hover {
  opacity: 0.7;
}
