@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-header::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #0f3c5c;
  margin-right: 15px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  color: #0f3c5c;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  line-height: 0;
}
.header__logo .logo-img {
  height: 30px;
  width: auto;
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}
.header__nav-item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #0f3c5c;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.header__nav-item a:hover::after {
  width: 100%;
}
.header__lang {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-left: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .header__lang {
    margin-left: auto;
  }
}
.header__lang-item {
  color: #999;
}
.header__lang-item.is-active {
  color: #0f3c5c;
  font-weight: bold;
  text-decoration: underline;
}
.header__lang-item:hover {
  color: #0f3c5c;
}
.header__lang-sep {
  color: #ccc;
}

.mv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 70px;
}
.mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero_bg.png");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .mv__bg {
    background-position: right bottom;
    background-attachment: scroll;
  }
}
.mv__content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.mv__title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .mv__title {
    font-size: 1.5rem;
  }
}
.mv__text {
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .mv__text {
    font-size: 0.9rem;
  }
  .mv__text br {
    display: none;
  }
}
.mv__scroll {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.mv__scroll-text {
  font-size: 0.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.mv__scroll-arrow {
  width: 1px;
  height: 40px;
  background-color: #fff;
  -webkit-animation: scrollDown 2s infinite;
          animation: scrollDown 2s infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
.about {
  background-color: #747985;
}
.about .section-header::before {
  background-color: #fff;
}
.about .section-title {
  color: #fff;
}
.about__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.about__img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about__lead {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .about__lead {
    font-size: 1.3rem;
  }
}
.about__text {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #fff;
}
.about__text:last-child {
  margin-bottom: 0;
}

.service {
  background-color: #EAE9EC;
}
.service__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.service__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service__img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service__lead {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #0f3c5c;
}
.service__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.service__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2891dc;
}
.service__list li ul {
  margin-top: 5px;
}
.service__list li ul li {
  margin-bottom: 5px;
}
.service__list li ul li::before {
  content: "-";
}

.company {
  background-color: #747985;
}
.company .section-header::before {
  background-color: #fff;
}
.company .section-title {
  color: #fff;
}
.company__list {
  border-top: 1px solid #ddd;
  color: #fff;
}
.company__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 0;
  }
}
.company__row dt {
  width: 200px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .company__row dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.company__row dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact {
  background-color: #747985;
  padding-top: 20px;
  padding-bottom: 100px;
}
.contact__box {
  background-color: #747985;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .contact__box {
    padding: 40px 20px;
  }
}
.contact__title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
}
.contact__text {
  margin-bottom: 40px;
  font-size: 1rem;
  color: #fff;
}
.contact__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .contact__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.contact__action {
  background-color: #0f3c5c;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 768px) {
  .contact__action {
    width: 100%;
  }
}
.contact__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact__label {
  font-weight: bold;
  margin-bottom: 5px;
}
.contact__sub {
  font-size: 0.8rem;
  margin-bottom: 15px;
  opacity: 0.9;
}
.contact__tel {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contact__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #2891dc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  width: 100%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.contact__btn:hover {
  background-color: #2891dc;
}
.contact__btn-icon {
  width: 16px;
  height: auto;
  vertical-align: middle;
}

.footer {
  background-color: #071d2c;
  color: #fff;
  position: relative;
  padding-top: 0px;
  padding-bottom: 20px;
}
.footer__content {
  padding-top: 50px;
}
.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.footer__logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__nav-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}
.footer__copyright {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.loading.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading__logo {
  width: 200px;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.loading__logo img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}/*# sourceMappingURL=style.css.map */