@charset "UTF-8";
.mvtop .mvtop-top {
  width: 100%;
}

.mvtop {
  background-color: #f2f9fb;
  box-sizing: border-box;
  position: relative;
  height: 100vh;
  overflow: visible;
  z-index: 2;
  background-image: url(../img/fv-bg.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .mvtop {
    height: 85vh;
    height: 85svh;
    background-size: 140%;
  }
}
.mvtop .icon01 {
  position: absolute;
  bottom: 5%;
  left: 0;
  max-width: 380px;
}
@media screen and (max-width: 1320px) {
  .mvtop .icon01 {
    width: 280px;
    bottom: 20%;
  }
}
@media screen and (max-width: 768px) {
  .mvtop .icon01 {
    width: 90px;
    bottom: unset;
    left: 4%;
    top: 15%;
  }
}
.mvtop .icon02 {
  position: absolute;
  top: 2%;
  left: 35%;
  width: 300px;
}
@media screen and (max-width: 1320px) {
  .mvtop .icon02 {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .mvtop .icon02 {
    width: 120px;
    bottom: unset;
    top: 13%;
    left: unset;
    right: 0;
  }
}
.mvtop .icon03 {
  position: absolute;
  top: 6%;
  right: 0;
  max-width: 330px;
}
@media screen and (max-width: 1320px) {
  .mvtop .icon03 {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .mvtop .icon03 {
    width: 110px;
    bottom: unset;
    top: 40%;
    left: unset;
    right: -4%;
  }
}
.mvtop .icon04 {
  position: absolute;
  bottom: -5%;
  right: 30%;
  width: 280px;
}
@media screen and (max-width: 1320px) {
  .mvtop .icon04 {
    width: 240px;
    bottom: 5%;
    right: 35%;
  }
}
@media screen and (max-width: 768px) {
  .mvtop .icon04 {
    width: 130px;
    bottom: 0;
    left: unset;
    right: 8%;
  }
}
.mvtop .icon05 {
  position: absolute;
  bottom: 4%;
  right: 5%;
}
@media screen and (max-width: 1320px) {
  .mvtop .icon05 {
    width: 230px;
    bottom: 15%;
  }
}
@media screen and (max-width: 768px) {
  .mvtop .icon05 {
    width: 100px;
    bottom: 12%;
    left: unset;
    right: unset;
    left: 0;
  }
}

.mvtop-top {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mvtop-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .mvtop-main {
    top: 55%;
  }
}

.mvtop-all {
  position: relative;
}

.mvtop-main h1 {
  text-align: center;
  font-size: 50px;
  color: #505050;
  letter-spacing: 8px;
  padding-bottom: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .mvtop-main h1 {
    line-height: 1.5;
  }
}

.mvtop-main p {
  text-align: center;
  font-size: 14px;
  color: #505050;
  letter-spacing: 4px;
  line-height: 20px;
}

.mvtop-scroll {
  position: absolute;
  bottom: -5%;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .mvtop-scroll {
    width: 8px;
    right: 10px;
  }
}

.abouttop {
  padding: 80px 40px;
  background-color: #f2f9fb;
  position: relative;
}
@media screen and (max-width: 768px) {
  .abouttop {
    padding: 50px 20px;
  }
}

.abouttop-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}

.abouttop-bg {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* 行間 */
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 0;
}

/* 各行 */
.item {
  position: relative;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  --speed: 250s;
  /* ベースの速度（秒）。行ごとに変えられる */
}

/* トラック（実際に動く要素） */
.item .track {
  display: flex;
  align-items: center;
  gap: 34px;
  /* 画像間の余白 */
  white-space: nowrap;
  will-change: transform;
  animation: marquee linear infinite;
  animation-duration: var(--speed);
}

/* 逆方向に流したい行は direction: reverse を付ける（下で指定） */
.item:nth-child(even) .track {
  animation-direction: reverse;
  animation-duration: calc(var(--speed) * 1.15);
  /* 偶数行はやや遅め */
}

/* 画像 */
.item .track img {
  display: block;
  height: 140px;
  /* 好きな高さに調整 */
  width: auto !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

/* アニメーション（トラック幅の半分だけ左へ移動） */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
  /* track を半分スライドしてループさせる */
}
/* レスポンシブ調整（必要なら） */
@media (max-width: 768px) {
  .item .track img {
    height: 120px;
  }
  .abouttop-bg {
    gap: 50px;
    bottom: 10%;
  }
}
.abouttop-inner {
  max-width: 1100px;
  margin: 0 auto -100px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .abouttop-inner {
    margin: 0 auto -80px;
  }
}

.abouttop-title {
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .abouttop-title {
    padding-bottom: 30px;
  }
}

.abouttop-title h2 {
  font-size: 32px;
  color: #505050;
  padding-bottom: 10px;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .abouttop-title h2 {
    font-size: 28px;
  }
}

.abouttop-title p {
  color: #008886;
  font-size: 14px;
  letter-spacing: 3px;
  font-family: "DM Sans", sans-serif;
}

.abouttop-all h3 {
  font-size: 28px;
  color: #505050;
  line-height: 45px;
  letter-spacing: 4px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .abouttop-all h3 {
    font-size: 16px;
    line-height: 1.5;
  }
}

.abouttop-all p {
  font-size: 15px;
  color: #505050;
  letter-spacing: 3px;
  line-height: 30px;
}

.abouttop-all {
  padding-bottom: 90px;
}

.abouttop-more a {
  background: #008886;
  text-decoration: none;
  color: white;
  padding: 18px 0;
  margin: 0 auto;
  border-radius: 24px;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 10px;
  width: 320px;
  display: block;
  max-width: 100%;
  text-align: center;
  border: 1px solid #008886;
  transition: 0.3s ease;
}

.abouttop-more a:hover {
  background-color: #fff;
  background-image: url(../img/arrow-g.png);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 10px;
  color: #008886;
  opacity: 1;
}

.abouttop-more {
  text-align: center;
  font-size: 12px;
}

.ourlabstop {
  padding: 0 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .ourlabstop {
    padding: 0 15px;
  }
}

.ourlabstop-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ourlabstop-title h2 {
  font-size: 32px;
  color: #505050;
  padding-bottom: 10px;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .ourlabstop-title h2 {
    font-size: 28px;
  }
}

.ourlabstop-title p {
  color: #008886;
  font-size: 11px;
  letter-spacing: 3px;
}

.ourlabstop-title {
  text-align: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .ourlabstop-title {
    padding-bottom: 40px;
  }
}

.ourlabstop-contants {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e8f4f7;
  border-radius: 30px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .ourlabstop-contants {
    display: block;
    padding: 30px 20px;
    border-radius: 15px;
  }
}

.ourlabstop-box:nth-of-type(even) .ourlabstop-contants {
  flex-direction: row-reverse;
}

.ourlabstop-p {
  color: #008886;
  font-size: 11px;
  padding-bottom: 10px;
  letter-spacing: 3px;
}

.ourlabstop-text {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .ourlabstop-text {
    width: 100%;
  }
}

.ourlabstop-picture {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .ourlabstop-picture {
    width: 100%;
    margin-bottom: 20px;
  }
}

.ourlabstop-text h3 {
  color: #505050;
  font-size: 28px;
  letter-spacing: 4px;
  line-height: 30px;
  padding-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .ourlabstop-text h3 {
    font-size: 22px;
  }
}

.ourlabstop-pp {
  color: #505050;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 20px;
  padding-bottom: 30px;
}

.ourlabstop-more a {
  text-decoration: none;
  color: #008886;
  background: white;
  border: 1px solid #008886;
  padding: 14px 0;
  text-align: center;
  border-radius: 24px;
  font-size: 13px;
  margin: 0 auto;
  display: block;
  width: 360px;
  max-width: 100%;
  background-image: url(../img/arrow-g.png);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 10px;
  transition: 0.3s ease;
}

.ourlabstop-more a:hover {
  opacity: 1;
  background-color: #008886;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 10px;
  color: #fff;
}

.ourlabstop-box {
  position: relative;
}

.ourlabstop-logo {
  position: absolute;
  top: -15%;
  left: -15px;
  z-index: 2;
  width: 167px;
}
@media screen and (max-width: 768px) {
  .ourlabstop-logo {
    width: 100px;
    top: -7%;
  }
}

.ourlabstop-logo-twoo {
  position: absolute;
  top: -8%;
  left: 90%;
  z-index: 2;
  width: 167px;
}
@media screen and (max-width: 768px) {
  .ourlabstop-logo-twoo {
    width: 100px;
    top: -10%;
    left: 70%;
  }
}

.ourlabstop-box {
  padding-bottom: 30px;
}

.ourlabstop {
  padding-top: 100px;
}

.voicetop {
  padding: 140px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voicetop {
    padding: 80px 20px;
  }
}

.voicetop-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.voicetop-picture img {
  border-radius: 10px;
  /* width: 100%; */
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: -10px;
  top: 20%;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    width: 20px;
    height: 20px;
    left: 2%;
    top: 34%;
  }
}

.swiper-button-next {
  top: 20%;
  right: -10px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    top: 34%;
    width: 20px;
    height: 20px;
    right: 2%;
  }
}

.voicetop {
  overflow: hidden;
}

.voicetop-box img {
  width: 100%;
  height: auto;
}

.voicetop-title {
  text-align: center;
  padding-bottom: 40px;
}

.voicetop-title h3 {
  font-size: 25px;
  color: #505050;
  padding-bottom: 10px;
  letter-spacing: 4px;
}

.voicetop-title p {
  color: #008886;
  font-size: 11px;
  letter-spacing: 3px;
}

.voicetop-text h5 {
  font-size: 17px;
  letter-spacing: 3px;
  color: #505050;
  padding: 20px 0;
  line-height: 25px;
}

.voicetop-text p {
  padding-bottom: 20px;
  font-size: 13px;
  letter-spacing: 3px;
  color: #505050;
  line-height: 20px;
}

.voicetop-picture {
  position: relative;
}

.voicetop-picture .link {
  display: block;
  width: 120px;
  height: 80px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.table {
  width: 100%;
}

.th {
  font-size: 13px;
  color: #505050;
  letter-spacing: 3px;
  text-align: left;
  padding: 10px;
  padding-left: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .th {
    font-size: 12px;
  }
}

.td {
  font-size: 14px;
  color: #505050;
  letter-spacing: 3px;
  padding: 10px;
  box-sizing: border-box;
}
.td .link {
  display: inline-block;
  height: 14px;
  width: 14px;
}
@media screen and (max-width: 768px) {
  .td {
    font-size: 12px;
  }
}

.tr {
  border-bottom: 1px solid #e8e8e8;
}

.thtop,
.tdtop {
  border-top: 1px solid #e8e8e8;
}

@media screen and (max-width: 768px) {
  .mvtop-all {
    width: 100%;
  }
  .mvtop-main h1 {
    font-size: 32px;
  }
  .ourlabstop-contants {
    display: block;
  }
  .ourlabstop-picture img {
    width: 100%;
  }
}/*# sourceMappingURL=top.css.map */