@charset "UTF-8";
@-webkit-keyframes dropBounce {
  0% {
    -webkit-transform: translateY(-60px) scaleY(0.6);
            transform: translateY(-60px) scaleY(0.6);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateY(0) scaleY(1.2);
            transform: translateY(0) scaleY(1.2);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(-10px) scaleY(0.9);
            transform: translateY(-10px) scaleY(0.9);
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
    opacity: 1;
  }
}
@keyframes dropBounce {
  0% {
    -webkit-transform: translateY(-60px) scaleY(0.6);
            transform: translateY(-60px) scaleY(0.6);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateY(0) scaleY(1.2);
            transform: translateY(0) scaleY(1.2);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(-10px) scaleY(0.9);
            transform: translateY(-10px) scaleY(0.9);
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes sway {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  50% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  75% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes sway {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  50% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  75% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
body {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fafafa;
  overflow-x: hidden;
}

.inner, .footer__inner, .contact__inner, .merit__inner, .recruit__inner, .mv__inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .inner, .footer__inner, .contact__inner, .merit__inner, .recruit__inner, .mv__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 60px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #2082df;
  border-radius: 2px;
}

.button, .header__button {
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 12px 40px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#2188de), to(#2bcbc6));
  background: linear-gradient(180deg, #2188de 0%, #2bcbc6 100%);
  background-size: 200%;
  -webkit-transition: background-position 0.4s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-position 0.4s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-decoration: none;
  -webkit-box-shadow: 0 5px 15px rgba(32, 130, 223, 0.3);
          box-shadow: 0 5px 15px rgba(32, 130, 223, 0.3);
}
.button:hover, .header__button:hover {
  background-position: right center;
  -webkit-transform: translateY(-3px) scale(1.02);
          transform: translateY(-3px) scale(1.02);
  -webkit-box-shadow: 0 8px 20px rgba(32, 130, 223, 0.4);
          box-shadow: 0 8px 20px rgba(32, 130, 223, 0.4);
}
.button--large {
  padding: 15px 50px;
  font-size: 18px;
  border-radius: 40px;
}

.header {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 20px 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header__logo .logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Flexboxを使用して画像とテキストを横並びにする */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向中央揃え */
  text-decoration: none; /* 下線を削除 */
  gap: 8px; /* 画像とテキストの間に少し隙間を空ける */
}
@media screen and (min-width: 768px) {
  .header__logo .logo-link {
    -webkit-animation: none;
            animation: none;
  }
}
.header__logo .logo-image {
  height: 40px; /* モバイルでの高さ */
  width: auto; /* 幅は高さに合わせて自動調整 */
  vertical-align: middle; /* 上下中央揃え */
}
@media screen and (min-width: 768px) {
  .header__logo .logo-image {
    height: 80px; /* PCでの高さ */
  }
}
.header__logo .logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2082df;
  white-space: nowrap;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .header__logo .logo-text {
    font-size: 30px;
  }
}
.header__nav {
  position: relative;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.header__nav::before {
  content: "";
  position: absolute;
  top: -10px;
  left: var(--indicator-x, 0);
  width: 0;
  height: 4px;
  background-color: #2082df;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  z-index: 10;
}
.header__nav.has-hover::before {
  width: 80px;
}
.header__button {
  padding: 10px 25px;
  font-size: 14px;
}
.header .header__open {
  margin-top: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header .header__open {
    display: none;
  }
}
.header .drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 9999;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#2188de), to(#2bcbc6));
  background: linear-gradient(180deg, #2188de 0%, #2bcbc6 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 60px 30px;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  pointer-events: none;
}
.drawer-content.is-open {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}
.drawer-content.is-open .drawer-content__link,
.drawer-content.is-open .drawer-content__button {
  -webkit-animation: dropBounce 0.8s ease forwards, sway 2.4s ease-in-out 0.8s infinite;
          animation: dropBounce 0.8s ease forwards, sway 2.4s ease-in-out 0.8s infinite;
}
.drawer-content.is-open .drawer-content__link:nth-child(1) {
  -webkit-animation-delay: 0.1s, 0.9s;
          animation-delay: 0.1s, 0.9s;
}
.drawer-content.is-open .drawer-content__link:nth-child(2) {
  -webkit-animation-delay: 0.3s, 1.1s;
          animation-delay: 0.3s, 1.1s;
}
.drawer-content.is-open .drawer-content__link:nth-child(3) {
  -webkit-animation-delay: 0.5s, 1.3s;
          animation-delay: 0.5s, 1.3s;
}
.drawer-content.is-open .drawer-content__link:nth-child(4) {
  -webkit-animation-delay: 0.7s, 1.5s;
          animation-delay: 0.7s, 1.5s;
}
.drawer-content.is-open .drawer-content__button {
  -webkit-animation-delay: 0.9s, 1.7s;
          animation-delay: 0.9s, 1.7s;
}
.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  padding: 60px 40px;
}
.drawer-content__link {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.drawer-content__button {
  opacity: 0;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.drawer-content__button .button, .drawer-content__button .header__button {
  font-size: 18px;
  padding: 10px 30px;
}

body.is-fixed {
  overflow: hidden;
}

main {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 120px;
  }
}

.mv {
  background-image: url("../img/mv_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  padding-left: 20px;
  overflow: hidden;
  /* オーバーレイ */
}
@media screen and (min-width: 768px) {
  .mv {
    height: 850px;
    padding-left: 80px;
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* 少し透明な暗いオーバーレイ */
  z-index: 1;
}
.mv__inner {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mv__content {
  position: relative;
  z-index: 60;
  padding-right: 20px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
@media screen and (min-width: 768px) {
  .mv__content {
    width: 55%;
    padding-right: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
.mv__lead1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__lead1 {
    font-size: 48px;
  }
}
.mv__description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__description {
    font-size: 20px;
  }
}
.mv .mv__hero-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv .mv__hero-image {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 600px;
    height: 600px;
    overflow: hidden;
    z-index: 55;
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); /* 自身の高さ分だけ下に移動させ、完全に隠す */
    -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: opacity 1.5s ease, -webkit-transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
}
.mv .mv__hero-image img {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.mv .mv__hero-image.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.services {
  background: #fafafa;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .services {
    padding: 100px 0;
  }
}
.services__list {
  display: grid;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .services__list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.services__item {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.services__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.services__item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2082df;
  margin-bottom: 15px;
}
.services__item p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
.services__icon {
  font-size: 50px; /* Font Awesomeアイコンのサイズを制御 */
  color: #2082df;
  margin-bottom: 20px;
}

.about {
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf4f7), to(#ffffff));
  background: linear-gradient(180deg, #eaf4f7 0%, #ffffff 100%);
  padding: 60px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 100px 0;
  }
}
.about__text {
  font-size: 17px;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 20px;
  }
}

.voice {
  background: #fafafa;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .voice {
    padding: 100px 0;
  }
}
.voice__cards {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .voice__cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.voice__card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.voice__card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.voice__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.voice__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #2082df;
}
.voice__name {
  font-size: 18px;
  font-weight: 700;
  color: #2082df;
}
.voice__text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.recruit {
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf4f7), to(#ffffff));
  background: linear-gradient(180deg, #eaf4f7 0%, #ffffff 100%);
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .recruit {
    padding: 100px 0;
  }
}
.recruit__intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}
@media screen and (min-width: 768px) {
  .recruit__intro {
    font-size: 20px;
  }
}
.recruit__boxes {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .recruit__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
.recruit__box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  margin-bottom: 0;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.recruit__box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .recruit__box {
    padding: 40px;
  }
}
.recruit__box h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2082df;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}
.recruit__box h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2188de), to(#2bcbc6));
  background: linear-gradient(180deg, #2188de 0%, #2bcbc6 100%);
  border-radius: 2px;
}
.recruit__box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recruit__box ul li {
  padding-left: 1.8em;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}
.recruit__box ul li::before {
  content: "✔";
  color: #2082df;
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
}
.recruit__box ul li:last-child {
  margin-bottom: 0;
}
.recruit__button-area {
  text-align: center;
  margin-top: 50px;
}

.merit {
  background: #fafafa;
  padding: 60px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .merit {
    padding: 100px 0;
  }
}
.merit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .merit__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}
.merit__list li {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 90px;
  color: #333333;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.merit__list li:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .merit__list li {
    padding: 40px 30px;
    font-size: 22px;
    min-height: 110px;
  }
}

.wave-container {
  position: relative;
  width: 100%;
  height: 100px; /* 波の高さ */
  overflow: hidden;
  margin-bottom: -1px; /* 次のセクションとの隙間をなくす */
}

.waves {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: -7px; /* Fix for safari gap */
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

.contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#2188de), to(#2bcbc6));
  background: linear-gradient(180deg, #2188de 0%, #2bcbc6 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  /* 波のSVGと自然に繋がるように、上部のグラデーション開始位置を調整 */
  background: -webkit-gradient(linear, left top, left bottom, from(#EAF4F7), to(#2bcbc6));
  background: linear-gradient(180deg, #EAF4F7 0%, #2bcbc6 100%);
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 120px 0;
  }
}
.contact .section-title {
  color: #fff;
}
.contact .section-title::after {
  background-color: #2082df;
}
.contact p {
  margin-bottom: 40px;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .contact p {
    font-size: 20px;
  }
}
.contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contact__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}
.contact__buttons .button, .contact__buttons .header__button {
  min-width: 200px;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.contact__buttons .button:hover, .contact__buttons .header__button:hover {
  background: #fff;
  color: #2082df;
  -webkit-transform: translateY(-3px) scale(1.02);
          transform: translateY(-3px) scale(1.02);
}

.footer {
  background: #222;
  color: #fff;
  padding: 25px 0;
  text-align: center;
}
.footer small {
  font-size: 15px;
  letter-spacing: 0.05em;
}

/* パララックスセクションのスタイル */
.parallax-section {
  position: relative;
  height: 400px; /* セクションの高さ */
  background-attachment: fixed; /* これがパララックス効果を生み出す */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff; /* テキスト色を白に */
  overflow: hidden; /* 画像がはみ出さないように */
}
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.4); /* 半透明のオーバーレイ */
  z-index: 1;
}
.parallax-section .parallax-content {
  position: relative;
  z-index: 2; /* オーバーレイの上に表示 */
  padding: 20px;
}
.parallax-section .parallax-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .parallax-section .parallax-title {
    font-size: 48px;
  }
}
.parallax-section .parallax-text {
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .parallax-section .parallax-text {
    font-size: 22px;
  }
}