@charset "UTF-8";
/* CSS Document */
/*
 * Top Page Styles
 * ==========================================
 * This file imports styles for top/front page
 *
 * Structure:
 * 1. Config - Variables and Mixins
 * 2. Base - Global styles and utilities
 * 3. Sections - Common reset, Front page
 */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-weight: 500;
}
html body.hidden {
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
}
.fadein.is-active {
  opacity: 1;
}
.fadein.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition-delay: var(--delay, 0s);
}
.fadein.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fadein-before {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
}
.fadein-before.is-active {
  opacity: 1;
}
.fadein-before.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition-delay: var(--delay, 0s);
}
.fadein-before.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .bg-wrap {
  opacity: 1;
}

.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
section {
  padding: 60px 0 0;
}

.more-area {
  width: 100%;
}
.more-area .more {
  display: flex;
  align-items: center;
  gap: 12.5px;
}
.more-area .more .arrow {
  width: 27.5px;
  height: 27.5px;
  border-radius: 50%;
  border: solid 1px #fff;
  flex: none;
  position: relative;
}
.more-area .more .arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 8.5px;
  height: 8.5px;
  background: url(../images/tight_white.png) no-repeat;
  background-size: contain;
  top: 36%;
  left: 50%;
  transform: translate(-50%);
}
.more-area .more .text {
  font: normal normal 600 17px/10px "Noto Sans JP", sans-serif;
  letter-spacing: 1.36px;
  color: #FFFFFF;
  white-space: nowrap;
}
.more-area .more.blue .arrow {
  border: solid 1px #21A7D8;
  background: #21A7D8;
}
.more-area .more.blue .arrow::before {
  background: url(../images/tight_white.png) no-repeat;
  background-size: contain;
}
.more-area .more.blue .text {
  color: #313131;
}
.more-area .more.circle-white {
  width: 100%;
  border: 1px solid #21A7D8;
  border-radius: 100px;
  height: 47.5px;
  justify-content: center;
}
.more-area .more.circle-white .text {
  font: normal normal bold 15px/22px "Noto Sans JP", sans-serif;
  letter-spacing: 1.5px;
  color: #21A7D8;
  padding-bottom: 2px;
  position: relative;
}
.more-area .more.circle-white .text::before {
  content: "";
  display: block;
  position: absolute;
  width: 8.5px;
  height: 8.5px;
  background: url(../images/right_blue.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
}

.sec-title__en {
  display: block;
  font: normal normal normal 50px/60px "presicav", sans-serif;
  letter-spacing: 6px;
  color: #2CB4E6;
  margin-bottom: 5px;
}
.sec-title__en span {
  font: normal normal normal 50px/60px "presicav", sans-serif;
  letter-spacing: 6px;
  color: #2CB4E6;
}
.sec-title__ja {
  display: block;
  font: normal normal bold 19px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 2.28px;
  color: #313131;
  position: relative;
  padding-left: 48px;
}
.sec-title__ja span {
  font: normal normal bold 19px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 2.28px;
  color: #313131;
}
.sec-title__ja::before {
  content: "";
  display: block;
  position: absolute;
  width: 37.5px;
  height: 1px;
  background: transparent linear-gradient(270deg, #008CD5 0%, #00A2D5 100%) 0% 0% no-repeat padding-box;
  top: 14px;
  left: 0;
}
.sec-title.matrix .bg-wrap {
  display: block;
  overflow: hidden;
  opacity: 0;
}
.sec-title.matrix .bg-wrap + .bg-wrap {
  margin-top: 5px;
}
.sec-title.matrix .bg-wrap .inn {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-title.matrix .bg-wrap .inn.large {
  font-size: 25px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: 2.5px;
  text-align: center;
  color: #66ad47;
}
.sec-title.matrix .bg-wrap .inn.small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 1.56px;
  text-align: center;
  color: #1e3c0d;
}
.sec-title.matrix.is-animated .bg-wrap {
  opacity: 1;
}
.sec-title.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

@media only screen and (min-width: 1025px) {
  section {
    padding: 90px 0 0;
  }
  .more-area {
    width: 100%;
  }
  .more-area .more {
    gap: 20px;
  }
  .more-area .more .arrow {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }
  .more-area .more .arrow::before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 36%;
    left: 50%;
    transform: translate(-50%);
    transition: all 0.3s ease;
  }
  .more-area .more .text {
    font: normal normal bold 16px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 1.6px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
  }
  .more-area .more:hover {
    cursor: pointer;
  }
  .more-area .more:hover .arrow {
    background-color: #fff;
    transform: scale(1.2);
  }
  .more-area .more:hover .arrow::before {
    background: url(../images/right_blue.png) no-repeat;
    background-size: contain;
  }
  .more-area .more:hover .text {
    text-decoration-color: #fff;
  }
  .more-area .more.blue .arrow {
    border: solid 1px #21A7D8;
    background: #21A7D8;
  }
  .more-area .more.blue .arrow::before {
    background: url(../images/tight_white.png) no-repeat;
    background-size: contain;
  }
  .more-area .more.blue .text {
    color: #313131;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
  }
  .more-area .more.blue:hover {
    cursor: pointer;
  }
  .more-area .more.blue:hover .arrow {
    border: solid 1px #21A7D8;
    background: #fff;
  }
  .more-area .more.blue:hover .arrow::before {
    background: url(../images/right_blue.png) no-repeat;
    background-size: contain;
  }
  .more-area .more.blue:hover .text {
    color: #21A7D8;
    text-decoration-color: #21A7D8;
  }
  .more-area .more.circle-white {
    height: 46px;
    transition: all 0.4s ease;
  }
  .more-area .more.circle-white .text {
    font: normal normal bold 16px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 1.6px;
    padding-bottom: 1px;
    transition: all 0.4s ease;
    text-decoration: none;
  }
  .more-area .more.circle-white .text::before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    transition: all 0.4s ease;
  }
  .more-area .more.circle-white:hover {
    background-color: #21A7D8;
  }
  .more-area .more.circle-white:hover .arrow {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }
  .more-area .more.circle-white:hover .text {
    color: #fff;
    text-decoration: none;
  }
  .more-area .more.circle-white:hover .text::before {
    background: url(../images/tight_white.png) no-repeat;
    background-size: contain;
  }
  .sec-title__en {
    font: normal normal normal 80px/80px "presicav", sans-serif;
    letter-spacing: 9.6px;
    margin-bottom: 10px;
  }
  .sec-title__en span {
    font: normal normal normal 80px/80px "presicav", sans-serif;
    letter-spacing: 9.6px;
  }
  .sec-title__ja {
    font: normal normal bold 28px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 3.36px;
    padding-left: 90px;
  }
  .sec-title__ja span {
    font: normal normal bold 28px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 3.36px;
  }
  .sec-title__ja::before {
    content: "";
    display: block;
    position: absolute;
    width: 75px;
    height: 2px;
    top: 20px;
    left: 0;
  }
  .sec-title.matrix .bg-wrap {
    display: block;
    overflow: hidden;
    opacity: 0;
  }
  .sec-title.matrix .bg-wrap + .bg-wrap {
    margin-top: 5px;
  }
  .sec-title.matrix .bg-wrap .inn {
    display: block;
    opacity: 0;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .sec-title.matrix .bg-wrap .inn.large {
    font-size: 25px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.08;
    letter-spacing: 2.5px;
    text-align: center;
    color: #66ad47;
  }
  .sec-title.matrix .bg-wrap .inn.small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: 1.56px;
    text-align: center;
    color: #1e3c0d;
  }
  .sec-title.matrix.is-animated .bg-wrap {
    opacity: 1;
  }
  .sec-title.matrix.is-animated .bg-wrap .inn {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .sp {
    display: none !important;
  }
  @keyframes infinity-scroll-left-y {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-50%);
    }
  }
  @keyframes infinity-scroll-right-y {
    from {
      transform: translateY(-50%);
    }
    to {
      transform: translateY(0);
    }
  }
}
/*PC*/
#header *,
#header ::before,
#header ::after,
#footer *,
#footer ::before,
#footer ::after,
#top *,
#top ::before,
#top ::after,
#page-work *,
#page-work ::before,
#page-work ::after,
#page-staff *,
#page-staff ::before,
#page-staff ::after {
  box-sizing: border-box;
}
#header h1,
#header h2,
#header h3,
#header h4,
#header h5,
#header h6,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6,
#top h1,
#top h2,
#top h3,
#top h4,
#top h5,
#top h6,
#page-work h1,
#page-work h2,
#page-work h3,
#page-work h4,
#page-work h5,
#page-work h6,
#page-staff h1,
#page-staff h2,
#page-staff h3,
#page-staff h4,
#page-staff h5,
#page-staff h6 {
  font-size: inherit;
  font-weight: inherit;
}
#header ul,
#header ol,
#footer ul,
#footer ol,
#top ul,
#top ol,
#page-work ul,
#page-work ol,
#page-staff ul,
#page-staff ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header li,
#footer li,
#top li,
#page-work li,
#page-staff li {
  list-style: none;
}
#header .sp,
#footer .sp,
#top .sp,
#page-work .sp,
#page-staff .sp {
  display: none;
}
#header img,
#footer img,
#top img,
#page-work img,
#page-staff img {
  vertical-align: bottom;
}
#header button,
#footer button,
#top button,
#page-work button,
#page-staff button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
#header button,
#header [type=button],
#header [type=reset],
#header [type=submit],
#footer button,
#footer [type=button],
#footer [type=reset],
#footer [type=submit],
#top button,
#top [type=button],
#top [type=reset],
#top [type=submit],
#page-work button,
#page-work [type=button],
#page-work [type=reset],
#page-work [type=submit],
#page-staff button,
#page-staff [type=button],
#page-staff [type=reset],
#page-staff [type=submit] {
  cursor: pointer;
}
#header button:disabled,
#header [type=button]:disabled,
#header [type=reset]:disabled,
#header [type=submit]:disabled,
#footer button:disabled,
#footer [type=button]:disabled,
#footer [type=reset]:disabled,
#footer [type=submit]:disabled,
#top button:disabled,
#top [type=button]:disabled,
#top [type=reset]:disabled,
#top [type=submit]:disabled,
#page-work button:disabled,
#page-work [type=button]:disabled,
#page-work [type=reset]:disabled,
#page-work [type=submit]:disabled,
#page-staff button:disabled,
#page-staff [type=button]:disabled,
#page-staff [type=reset]:disabled,
#page-staff [type=submit]:disabled {
  cursor: default;
}
@media screen and (max-width: 1024px) {
  #header .sp,
  #footer .sp,
  #top .sp,
  #page-work .sp,
  #page-staff .sp {
    display: block;
  }
}

/*トップページ*/
/*SMP*/
#top .top__wrapper {
  position: relative;
}
#top .top__wrapper .mv {
  padding-top: 0;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#top .top__wrapper .mv__wrapper {
  display: flex;
  flex-direction: column;
}
#top .top__wrapper .mv__top {
  margin-bottom: 10px;
}
#top .top__wrapper .mv__top .diamond-images {
  display: flex;
  width: 450px;
  height: 215px;
  margin: 0 0 0 min(4vw, 30px);
}
#top .top__wrapper .mv__top .diamond-images .diamond-item {
  width: 510px;
  aspect-ratio: 38/43;
  overflow: hidden;
  position: relative;
}
#top .top__wrapper .mv__top .diamond-images .diamond-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .top__wrapper .mv__top .diamond-images .diamond-item.left {
  clip-path: polygon(20% 0%, 100% 0, 80% 100%, 0% 100%);
}
#top .top__wrapper .mv__top .diamond-images .diamond-item.right {
  clip-path: polygon(20% 0%, 100% 0, 80% 100%, 0% 100%);
  margin-left: -9%;
}
#top .top__wrapper .mv__bottom .scroll-text.scroll-infinity .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
#top .top__wrapper .mv__bottom .scroll-text.scroll-infinity .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding-top: 5px;
}
#top .top__wrapper .mv__bottom .scroll-text.scroll-infinity .scroll-infinity__list--left {
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
#top .top__wrapper .mv__bottom .scroll-text.scroll-infinity .scroll-infinity__item {
  width: 100%;
  margin-right: 20px;
}
#top .top__wrapper .mv__bottom .scroll-text.scroll-infinity .scroll-infinity__item span {
  font: normal normal normal 40px/40px "presicav", sans-serif;
  letter-spacing: 4.8px;
  color: #F4F4F4;
  white-space: nowrap;
}
#top .top__wrapper .mv__bottom .scroll-text.scroll-infinity .scroll-infinity__item > img {
  width: 100%;
  height: 117px;
  object-fit: cover;
}
#top .top__wrapper .mv__bottom .scroll-text p {
  height: 40px;
}
#top .top__wrapper .mv__bottom .scroll-text p {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 40px;
}
#top .top__wrapper .mv__copy {
  width: 325px;
  margin: 0 auto 20px;
}
#top .top__wrapper .mv__copy .large {
  text-align: left;
  font: normal normal bold 21px/31px "Noto Sans JP", sans-serif;
  letter-spacing: 2.52px;
  color: #313131;
}
#top .top__wrapper .mv__cta {
  width: 325px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#top .top__wrapper .mv__cta p {
  font: normal normal 600 15px/26px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
  margin-bottom: 10px;
}
#top .top__wrapper .mv__cta .flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#top .top__wrapper .mv__cta .flex .cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 258px;
  height: 44px;
  border-radius: 100px;
  text-align: center;
}
#top .top__wrapper .mv__cta .flex .cta .cta__text {
  font: normal normal bold 15px/15px "Noto Sans JP", sans-serif;
  letter-spacing: 1.5px;
  position: relative;
  left: -7px;
}
#top .top__wrapper .mv__cta .flex .cta .cta__text::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 54%;
  transform: translateY(-50%);
  right: -15px;
}
#top .top__wrapper .mv__cta .flex .cta:first-child {
  border: solid 1px transparent;
  background-color: #21A7D8;
}
#top .top__wrapper .mv__cta .flex .cta:first-child .cta__text {
  color: #fff;
}
#top .top__wrapper .mv__cta .flex .cta:first-child .cta__text::before {
  background: url(../images/tight_white.png) no-repeat;
  background-size: contain;
}
#top .top__wrapper .mv__cta .flex .cta:last-child {
  border: solid 1px #21A7D8;
}
#top .top__wrapper .mv__cta .flex .cta:last-child .cta__text {
  color: #21A7D8;
}
#top .top__wrapper .mv__cta .flex .cta:last-child .cta__text::before {
  background: url(../images/right_blue.png) no-repeat;
  background-size: contain;
}
#top .banner {
  overflow: hidden;
}
#top .banner .swiper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  height: 133px;
  overflow: visible;
}
#top .banner .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 133px;
}
#top .banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .banner .swiper-button-next,
#top .banner .swiper-button-prev {
  width: 27.5px;
  height: 27.5px;
  border-radius: 50%;
  background: #21A7D8 0% 0% no-repeat padding-box;
  border: 1px solid #21A7D8;
  top: 70px;
}
#top .banner .swiper-button-next::after,
#top .banner .swiper-button-prev::after {
  display: none;
}
#top .banner .swiper-button-next::before,
#top .banner .swiper-button-prev::before {
  content: "";
  display: block;
  position: absolute;
  width: 8.5px;
  height: 8.5px;
  background: url(../images/tight_white.png) no-repeat;
  background-size: contain;
  top: 36%;
  transform: translate(-50%);
}
#top .banner .swiper-button-next {
  right: 44px;
}
#top .banner .swiper-button-next::before {
  left: 50%;
}
#top .banner .swiper-button-prev {
  left: 44px;
}
#top .banner .swiper-button-prev::before {
  transform: rotate(180deg);
  left: 31%;
}
@media screen and (max-width: 390px) {
  #top .banner .swiper-button-next {
    right: 39px;
  }
  #top .banner .swiper-button-prev {
    left: 39px;
  }
}
@media screen and (max-width: 389px) {
  #top .banner .swiper-button-next {
    right: 31px;
  }
  #top .banner .swiper-button-prev {
    left: 31px;
  }
}
#top .banner.is-single .swiper {
  display: flex;
  justify-content: center;
}
#top .banner.is-single .swiper-wrapper {
  justify-content: center;
}
#top .banner.is-single .swiper-button-next,
#top .banner.is-single .swiper-button-prev {
  display: none;
}
#top .reason .img {
  width: 81%;
  height: 217px;
  margin-bottom: 20px;
}
#top .reason .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .reason .content {
  width: 350px;
  margin: 0 auto;
}
#top .reason .content .sec-title {
  margin-bottom: 25px;
}
#top .reason .content .exp {
  margin-bottom: 20px;
}
#top .reason .content .exp p {
  font: normal normal 600 18px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 1.8px;
  color: #313131;
  white-space: nowrap;
}
#top .reason .content .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#top .reason .content .text p {
  font: normal normal 500 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
  white-space: nowrap;
}
#top .reason .list {
  margin-top: 90px;
  background: transparent linear-gradient(337deg, #008CD5 0%, #00A2D5 100%) 0% 0% no-repeat padding-box;
  padding: 75px 0 45px;
  position: relative;
}
#top .reason .list::before {
  content: "";
  display: block;
  position: absolute;
  width: 288px;
  height: 144px;
  background: url(../images/top/SMP/top_4smp.png) no-repeat;
  background-size: cover;
  top: -60px;
  right: 0;
}
#top .reason .list ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 340px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: solid 1px #fff;
}
#top .reason .list ul li .num {
  display: flex;
  align-items: center;
  position: relative;
  top: 15px;
}
#top .reason .list ul li .num__text {
  font: normal normal normal 11px/60px "presicav", sans-serif;
  letter-spacing: 1.82px;
  color: #FFFFFF;
  opacity: 0.45;
}
#top .reason .list ul li .num__num {
  font: normal normal normal 50px/60px "presicav", sans-serif;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 0.13;
  position: relative;
  left: -26px;
}
#top .reason .list ul li h3 {
  font: normal normal bold 17px/17px "Noto Sans JP", sans-serif;
  letter-spacing: 1.7px;
  color: #FFFFFF;
  margin-bottom: 10px;
  padding-left: 46px;
}
#top .reason .list ul li p {
  font: normal normal 500 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #FFFFFF;
}
#top .reason .list .bottom {
  width: 340px;
  margin: 0 auto;
  padding-top: 30px;
}
#top .reason .list .bottom p {
  font: normal normal 600 17px/25px "Noto Sans JP", sans-serif;
  letter-spacing: 1.7px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
#top .reason .list .bottom .more-area {
  display: flex;
  justify-content: center;
}
#top .service {
  position: relative;
}
#top .service__wrapper {
  width: 350px;
  margin: 0 auto;
}
#top .service__wrapper .inner .sec-title {
  margin-bottom: 44px;
}
#top .service__wrapper .content {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
#top .service__wrapper .content .service__swiper .title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#top .service__wrapper .content .service__swiper .title .num {
  font: normal normal normal 25px/25px "presicav", sans-serif;
  letter-spacing: 0px;
  color: #2CB4E6;
  padding-right: 15px;
}
#top .service__wrapper .content .service__swiper .title h3 {
  font: normal normal bold 20px/21px "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
  color: #313131;
  padding-left: 15px;
  border-left: 1.5px solid #DDDDDD;
}
#top .service__wrapper .content .service__swiper .exp {
  margin-bottom: 30px;
}
#top .service__wrapper .content .service__swiper .exp p {
  font: normal normal 500 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
}
#top .service__wrapper .swiper-container {
  width: 300px;
}
#top .service__wrapper .swiper-container .service__list {
  display: flex;
}
#top .service__wrapper .swiper-container .service__item {
  width: 300px;
  flex-shrink: 0;
  transform: translateY(0);
}
#top .service__wrapper .swiper-container .service__item:nth-child(1) {
  --delay: 0s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(2) {
  --delay: 0.2s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(3) {
  --delay: 0.4s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(4) {
  --delay: 0.6s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(5) {
  --delay: 0.8s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(6) {
  --delay: 1s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(7) {
  --delay: 1.2s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(8) {
  --delay: 1.4s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(9) {
  --delay: 1.6s;
}
#top .service__wrapper .swiper-container .service__item:nth-child(10) {
  --delay: 1.8s;
}
#top .service__wrapper .swiper-container .service__item a {
  display: block;
  width: 300px;
}
#top .service__wrapper .swiper-container .service__item a .inner {
  position: relative;
}
#top .service__wrapper .swiper-container .service__item a .inner .top {
  position: relative;
  margin-bottom: 15px;
}
#top .service__wrapper .swiper-container .service__item a .inner .top .img {
  width: 300px;
  height: 200px;
}
#top .service__wrapper .swiper-container .service__item a .inner .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .service__wrapper .swiper-container .service__item a .inner .bottom h3 {
  font: normal normal bold 19px/19px "Noto Sans JP", sans-serif;
  letter-spacing: 1.9px;
  color: #313131;
  margin-bottom: 12.5px;
}
#top .service__wrapper .swiper-container .service__item a .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 37.5px;
  height: 37.5px;
  background: url(../images/top/btn_white.png) no-repeat;
  background-size: contain;
  bottom: 7px;
  right: 15px;
}
#top .service__wrapper .swiper-container .swiper-wrapper {
  transition-property: transform !important;
}
#top .service__wrapper .swiper-scrollbar {
  position: relative !important;
  width: 300px;
  height: 9px;
  margin: 20px auto 30px;
  background-color: #d6d6d6;
  border-radius: 100px;
}
#top .service__wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 9px;
  background-color: #2291BA;
  border-radius: 100px;
}
#top .service .more-area {
  display: flex;
  justify-content: center;
}
#top .faq {
  position: relative;
  padding-bottom: 60px;
}
#top .faq__wrapper {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}
#top .faq__wrapper .inner {
  margin-bottom: 30px;
}
#top .faq__wrapper .inner .sec-title {
  text-align: center;
  margin-bottom: 30px;
}
#top .faq__wrapper .inner .sec-title__ja {
  padding-left: 0;
  text-align: center;
}
#top .faq__wrapper .inner .sec-title__ja::before {
  left: 22px;
}
#top .faq__wrapper .inner .sec-title__ja::after {
  content: "";
  display: block;
  position: absolute;
  width: 37.5px;
  height: 1px;
  background: transparent linear-gradient(270deg, #008CD5 0%, #00A2D5 100%) 0% 0% no-repeat padding-box;
  top: 14px;
  right: 22px;
}
#top .faq__wrapper .inner .exp {
  margin-bottom: 30px;
}
#top .faq__wrapper .inner .exp p {
  text-align: center;
  font: normal normal 600 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
}
#top .faq__wrapper .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#top .faq__wrapper .swiper-container {
  width: 347.5px;
}
#top .faq__wrapper .swiper-container .faq__list {
  display: flex;
}
#top .faq__wrapper .swiper-container .faq__item {
  width: 347.5px;
  height: 517px;
  flex-shrink: 0;
  padding: 30px 0;
  background: transparent linear-gradient(146deg, #F8FDFF 0%, #EDFBFF 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px rgba(17, 98, 128, 0.3529411765);
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(1) {
  --delay: 0s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(2) {
  --delay: 0.2s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(3) {
  --delay: 0.4s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(4) {
  --delay: 0.6s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(5) {
  --delay: 0.8s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(6) {
  --delay: 1s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(7) {
  --delay: 1.2s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(8) {
  --delay: 1.4s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(9) {
  --delay: 1.6s;
}
#top .faq__wrapper .swiper-container .faq__item:nth-child(10) {
  --delay: 1.8s;
}
#top .faq__wrapper .swiper-container .faq__item .inner {
  width: 317.5px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#top .faq__wrapper .swiper-container .faq__item .inner .top {
  position: relative;
  margin-bottom: 15px;
}
#top .faq__wrapper .swiper-container .faq__item .inner .top h3 {
  font: normal normal bold 20px/20px "Noto Sans JP", sans-serif;
  letter-spacing: 4px;
  color: #21A7D8;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
#top .faq__wrapper .swiper-container .faq__item .inner .top h3:before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 1.5px;
  background-color: #21A7D8;
  top: 10px;
  left: -37px;
  transform: rotate(-48deg);
}
#top .faq__wrapper .swiper-container .faq__item .inner .top h3:after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 1.5px;
  background-color: #21A7D8;
  top: 10px;
  right: -37px;
  transform: rotate(-48deg);
}
#top .faq__wrapper .swiper-container .faq__item .inner .top .img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
#top .faq__wrapper .swiper-container .faq__item .inner .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
#top .faq__wrapper .swiper-container .faq__item .inner .bottom {
  width: 100%;
}
#top .faq__wrapper .swiper-container .faq__item .inner .bottom .title {
  font: normal normal bold 18px/28.5px "Noto Sans JP", sans-serif;
  letter-spacing: 1.8px;
  color: #313131;
  margin-bottom: 15px;
  text-align: center;
}
#top .faq__wrapper .swiper-container .faq__item .inner .bottom ul {
  height: 106px;
  margin-bottom: 15px;
}
#top .faq__wrapper .swiper-container .faq__item .inner .bottom ul li {
  font: normal normal 500 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
  margin-left: 22.5px;
  text-indent: -17px;
}
#top .faq__wrapper .swiper-container .swiper-wrapper {
  transition-property: transform !important;
}
#top .faq__wrapper .swiper-scrollbar {
  position: relative !important;
  width: 300px;
  height: 9px;
  margin: 25px auto 0;
  background-color: #d6d6d6;
  border-radius: 100px;
}
#top .faq__wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 9px;
  background-color: #2291BA;
  border-radius: 100px;
}
#top .faq .more-area {
  display: flex;
  justify-content: center;
}
#top .voice {
  background: transparent linear-gradient(335deg, #008CD5 0%, #00A2D5 100%) 0% 0% no-repeat padding-box;
  position: relative;
  padding: 45px 0;
}
#top .voice__wrapper {
  width: 350px;
  margin: 0 auto;
}
#top .voice__wrapper .inner .sec-title {
  margin-bottom: 30px;
}
#top .voice__wrapper .inner .sec-title__en span {
  color: #fff;
}
#top .voice__wrapper .inner .sec-title__ja span {
  color: #fff;
}
#top .voice__wrapper .inner .sec-title__ja::before {
  background: #fff;
}
#top .voice__wrapper .inner .exp {
  margin-bottom: 30px;
}
#top .voice__wrapper .inner .exp p {
  text-align: left;
  font: normal normal 600 18px/25px "Noto Sans JP", sans-serif;
  letter-spacing: 1.8px;
  color: #FFFFFF;
}
#top .voice__wrapper .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#top .voice__wrapper .swiper-container {
  width: 328.5px;
}
#top .voice__wrapper .swiper-container .voice__list {
  display: flex;
}
#top .voice__wrapper .swiper-container .voice__item {
  width: 328.5px;
  height: 459.5px;
  padding-bottom: 30px;
  background-color: #fff;
  flex-shrink: 0;
  transform: translateY(0);
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(1) {
  --delay: 0s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(2) {
  --delay: 0.2s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(3) {
  --delay: 0.4s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(4) {
  --delay: 0.6s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(5) {
  --delay: 0.8s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(6) {
  --delay: 1s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(7) {
  --delay: 1.2s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(8) {
  --delay: 1.4s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(9) {
  --delay: 1.6s;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(10) {
  --delay: 1.8s;
}
#top .voice__wrapper .swiper-container .voice__item .inner {
  position: relative;
}
#top .voice__wrapper .swiper-container .voice__item .inner .top {
  width: 100%;
  height: 152px;
  position: relative;
  margin-bottom: 23px;
  padding: 41px 0 0 34px;
  background: url(../images/top/top_17.png) no-repeat;
  background-size: cover;
}
#top .voice__wrapper .swiper-container .voice__item .inner .top h3 {
  font: normal normal bold 17px/17px "Noto Sans JP", sans-serif;
  letter-spacing: 1.7px;
  color: #2291BA;
}
#top .voice__wrapper .swiper-container .voice__item .inner .top .img {
  width: 110px;
  height: 110px;
  position: absolute;
  bottom: -15px;
  right: 25px;
}
#top .voice__wrapper .swiper-container .voice__item .inner .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
}
#top .voice__wrapper .swiper-container .voice__item .inner .bottom {
  padding: 0 24px 0 34px;
}
#top .voice__wrapper .swiper-container .voice__item .inner .bottom h4 {
  font: normal normal bold 17px/25px "Noto Sans JP", sans-serif;
  letter-spacing: 1.7px;
  color: #313131;
  margin-bottom: 15px;
}
#top .voice__wrapper .swiper-container .voice__item .inner .bottom p {
  font: normal normal 500 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(2) .inner .top {
  background: url(../images/top/top_19.png) no-repeat;
  background-size: cover;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(3) .inner .top {
  background: url(../images/top/top_21.png) no-repeat;
  background-size: cover;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(4) .inner .top {
  background: url(../images/top/top_23.png) no-repeat;
  background-size: cover;
}
#top .voice__wrapper .swiper-container .voice__item:nth-child(5) .inner .top {
  background: url(../images/top/top_25.png) no-repeat;
  background-size: cover;
}
#top .voice__wrapper .swiper-container .swiper-wrapper {
  transition-property: transform !important;
}
#top .voice__wrapper .swiper-scrollbar {
  position: relative !important;
  width: 300px;
  height: 9px;
  margin: 20px 0 30px;
  background-color: #d6d6d6;
  border-radius: 100px;
}
#top .voice__wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 9px;
  background-color: #116280;
  border-radius: 100px;
}
#top .voice .more-area {
  display: flex;
  justify-content: center;
}
#top .company {
  width: 360px;
  margin: 0 auto;
  padding-top: 60px;
}
#top .company .sec-title {
  margin-bottom: 30px;
}
#top .company .img-area {
  width: 350px;
  height: 375px;
  margin: 0 auto 20px;
  position: relative;
}
#top .company .img-area img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .company .img-area img.img01 {
  width: 203px;
  height: 237px;
  top: 0;
  right: 47px;
  z-index: -1;
}
#top .company .img-area img.img02 {
  width: 177px;
  height: 135px;
  bottom: 61px;
  left: 0;
  z-index: 1;
}
#top .company .img-area img.img03 {
  width: 144px;
  height: 96px;
  bottom: 0;
  right: 0;
}
#top .company .content {
  width: 350px;
  margin: 0 auto;
}
#top .company .content .copy {
  margin-bottom: 25px;
}
#top .company .content .copy p {
  font: normal normal bold 19px/23.5px "Noto Sans JP", sans-serif;
  letter-spacing: 1.9px;
  color: #313131;
}
#top .company .content > .text {
  margin-bottom: 25px;
}
#top .company .content > .text p {
  font: normal normal 500 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
}
#top .company .content .more-area {
  display: flex;
  justify-content: center;
}
#top .blog {
  padding-bottom: 60px;
  position: relative;
}
#top .blog__wrapper {
  width: 305px;
  margin: 0 auto;
}
#top .blog__wrapper .inner .sec-title {
  margin-bottom: 30px;
}
#top .blog__wrapper .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#top .blog__wrapper .swiper-container {
  width: 230px;
}
#top .blog__wrapper .swiper-container .blog__list {
  display: flex;
  margin-bottom: 30px;
}
#top .blog__wrapper .swiper-container .blog__item {
  width: 230px;
  flex-shrink: 0;
  transform: translateY(0);
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(1) {
  --delay: 0s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(2) {
  --delay: 0.2s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(3) {
  --delay: 0.4s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(4) {
  --delay: 0.6s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(5) {
  --delay: 0.8s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(6) {
  --delay: 1s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(7) {
  --delay: 1.2s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(8) {
  --delay: 1.4s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(9) {
  --delay: 1.6s;
}
#top .blog__wrapper .swiper-container .blog__item:nth-child(10) {
  --delay: 1.8s;
}
#top .blog__wrapper .swiper-container .blog__item a {
  display: block;
  width: 230px;
}
#top .blog__wrapper .swiper-container .blog__item a .inner {
  position: relative;
}
#top .blog__wrapper .swiper-container .blog__item a .inner .top {
  position: relative;
  margin-bottom: 6px;
}
#top .blog__wrapper .swiper-container .blog__item a .inner .top .img {
  width: 230px;
  height: 153px;
}
#top .blog__wrapper .swiper-container .blog__item a .inner .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .blog__wrapper .swiper-container .blog__item a .inner .bottom time {
  font: normal normal normal 12px/12px "presicav", sans-serif;
  letter-spacing: 0.96px;
  color: #AAAAAA;
  margin-bottom: 5px;
}
#top .blog__wrapper .swiper-container .blog__item a .inner .bottom h3 {
  font: normal normal medium 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
#top .blog__wrapper .swiper-container .blog__item a .inner .bottom .cat {
  display: inline-block;
  height: 25px;
  padding: 0 10px;
  border: 1px solid #2291BA;
  border-radius: 100px;
  font: normal normal 500 12.5px/22px "Noto Sans JP", sans-serif;
  letter-spacing: 1.25px;
  color: #2291BA;
}
#top .blog__wrapper .swiper-container .swiper-wrapper {
  transition-property: transform !important;
}
#top .blog__wrapper .swiper-scrollbar {
  position: relative !important;
  width: 300px;
  height: 9px;
  margin: 0 0 30px;
  background-color: #d6d6d6;
  border-radius: 100px;
}
#top .blog__wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 9px;
  background-color: #2291BA;
  border-radius: 100px;
}
#top .blog .more-area {
  display: flex;
}
#top .recruit {
  padding-bottom: 55px;
  margin-bottom: 60px;
  background: url(../images/top/recruit_bg.png) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
#top .recruit::before, #top .recruit::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 35.5px;
  left: 0;
  z-index: 10;
}
#top .recruit::before {
  background: url(../images/top/recruit_top.png) no-repeat;
  background-size: cover;
  top: 0px;
}
#top .recruit::after {
  background: url(../images/top/recruit_bottom.png) no-repeat;
  background-size: cover;
  bottom: 0px;
}
#top .recruit__wrapper .contents {
  width: 351px;
  margin: 0 auto 25px;
}
#top .recruit__wrapper .contents .sec-title {
  text-align: center;
  margin-bottom: 30px;
}
#top .recruit__wrapper .contents .sec-title__ja {
  padding: 0;
}
#top .recruit__wrapper .contents .sec-title__ja::before {
  display: npne;
}
#top .recruit__wrapper .contents {
  position: relative;
}
#top .recruit__wrapper .contents::before {
  content: "";
  display: block;
  position: absolute;
  content: "JoinUs!";
  font: normal normal normal 37.5px/45px "Babylonica", cursive;
  letter-spacing: 1.88px;
  color: #FEE873;
  top: 19px;
  right: -7px;
  z-index: 10;
  transform: rotate(-8deg);
}
#top .recruit__wrapper .contents + .contents {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
}
#top .recruit__wrapper .contents + .contents::before {
  display: none;
}
#top .recruit__wrapper .contents {
  overflow: visible;
}
#top .recruit__wrapper .contents .copy {
  margin-bottom: 25px;
}
#top .recruit__wrapper .contents .copy p {
  text-align: center;
  font: normal normal 600 18px/25px "Noto Sans JP", sans-serif;
  letter-spacing: 1.8px;
  color: #313131;
}
#top .recruit__wrapper .contents > .text {
  width: 351px;
  margin: 0 auto 25px;
}
#top .recruit__wrapper .contents > .text p {
  font: normal normal 500 15px/28px "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  color: #484848;
}
#top .recruit__wrapper .contents .more-area {
  width: 375px;
}
@media screen and (max-width: 399px) {
  #top .recruit__wrapper .contents .more-area {
    transform: scale(0.9);
  }
  #top .recruit__wrapper .contents .more-area .more {
    gap: 5px;
  }
}
#top .recruit .scroll-bg .scroll-infinity {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list--left {
  animation: infinity-scroll-left 10s infinite linear 0.5s both;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list--right {
  animation: infinity-scroll-right 10s infinite linear 0.5s both;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item {
  width: 179px;
  margin-right: 5px;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item > img {
  width: 100%;
  height: 135px;
  object-fit: cover;
}

/*PC*/
@media only screen and (min-width: 1025px) {
  #top .top__wrapper .scroll-text {
    position: absolute;
    top: 105px;
  }
  #top .top__wrapper .scroll-text.scroll-infinity .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
  }
  #top .top__wrapper .scroll-text.scroll-infinity .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding-top: 0px;
  }
  #top .top__wrapper .scroll-text.scroll-infinity .scroll-infinity__list--left {
    animation: infinity-scroll-left 60s infinite linear 0.5s both;
  }
  #top .top__wrapper .scroll-text.scroll-infinity .scroll-infinity__item {
    width: 100%;
    margin-right: 20px;
  }
  #top .top__wrapper .scroll-text.scroll-infinity .scroll-infinity__item span {
    font: normal normal normal 80px/96px "presicav", sans-serif;
    letter-spacing: 9.6px;
    color: #F4F4F4;
    white-space: nowrap;
  }
  #top .top__wrapper .scroll-text.scroll-infinity .scroll-infinity__item > img {
    width: 100%;
    height: 117px;
    object-fit: cover;
  }
  #top .top__wrapper .scroll-text p {
    height: 40px;
  }
  #top .top__wrapper .scroll-text p {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 40px;
  }
  #top .top__wrapper .mv {
    max-width: 1500px;
  }
  #top .top__wrapper .mv__wrapper {
    width: 1280px;
    margin: 0 auto;
    overflow: visible;
    flex-direction: row-reverse;
  }
  #top .top__wrapper .mv__top {
    width: 60%;
    margin-bottom: 10px;
  }
  #top .top__wrapper .mv__top .diamond-images {
    width: 1010px;
    height: calc(100vh - 115px);
    margin: 0 0 0 min(4vw, 30px);
  }
  #top .top__wrapper .mv__top .diamond-images .diamond-item {
    width: 562px;
    aspect-ratio: 38/43;
    overflow: hidden;
    position: relative;
  }
  #top .top__wrapper .mv__top .diamond-images .diamond-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #top .top__wrapper .mv__top .diamond-images .diamond-item.left {
    clip-path: polygon(20% 0%, 100% 0, 80% 100%, 0% 100%);
  }
  #top .top__wrapper .mv__top .diamond-images .diamond-item.right {
    clip-path: polygon(20% 0%, 100% 0, 80% 100%, 0% 100%);
    margin-left: -9%;
  }
  #top .top__wrapper .mv__bottom {
    width: 40%;
    padding: 200px 0 0 60px;
    overflow: visible;
  }
  #top .top__wrapper .mv__copy {
    width: 587px;
    margin: 0 auto 50px;
  }
  #top .top__wrapper .mv__copy .large {
    font: normal normal bold 42px/62px Noto Sans JP;
    letter-spacing: 5.04px;
  }
  #top .top__wrapper .mv__cta {
    width: 587px;
    gap: 0px;
  }
  #top .top__wrapper .mv__cta p {
    font: normal normal 600 16px/42px Noto Sans JP;
    letter-spacing: 0.96px;
    margin-bottom: 50px;
  }
  #top .top__wrapper .mv__cta .flex {
    flex-direction: row;
    gap: 20px;
  }
  #top .top__wrapper .mv__cta .flex .cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 279px;
    height: 56px;
    transition: all 0.4s ease;
  }
  #top .top__wrapper .mv__cta .flex .cta .cta__text {
    font: normal normal bold 16px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 1.6px;
    transition: all 0.4s ease;
  }
  #top .top__wrapper .mv__cta .flex .cta .cta__text::before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 54%;
    transform: translateY(-50%);
    right: -15px;
    transition: all 0.4s ease;
  }
  #top .top__wrapper .mv__cta .flex .cta:fist-child {
    border: solid 1px transparent;
    background-color: #21A7D8;
  }
  #top .top__wrapper .mv__cta .flex .cta:fist-child .cta__text {
    color: #fff;
  }
  #top .top__wrapper .mv__cta .flex .cta:fist-child .cta__text::before {
    background: url(../images/tight_white.png) no-repeat;
    background-size: contain;
  }
  #top .top__wrapper .mv__cta .flex .cta:last-child {
    border: solid 1px #21A7D8;
    background-color: #fff;
    width: 226px;
  }
  #top .top__wrapper .mv__cta .flex .cta:last-child .cta__text {
    color: #21A7D8;
  }
  #top .top__wrapper .mv__cta .flex .cta:last-child .cta__text::before {
    background: url(../images/right_blue.png) no-repeat;
    background-size: contain;
  }
  #top .top__wrapper .mv__cta .flex .cta:hover:first-child {
    cursor: pointer;
    border: solid 1px #21A7D8;
    background-color: #fff;
  }
  #top .top__wrapper .mv__cta .flex .cta:hover:first-child .cta__text {
    color: #21A7D8;
  }
  #top .top__wrapper .mv__cta .flex .cta:hover:first-child .cta__text::before {
    background: url(../images/right_blue.png) no-repeat;
    background-size: contain;
  }
  #top .top__wrapper .mv__cta .flex .cta:hover:last-child {
    cursor: pointer;
    background-color: #21A7D8;
  }
  #top .top__wrapper .mv__cta .flex .cta:hover:last-child .cta__text {
    color: #fff;
  }
  #top .top__wrapper .mv__cta .flex .cta:hover:last-child .cta__text::before {
    background: url(../images/tight_white.png) no-repeat;
    background-size: contain;
  }
  #top .banner {
    width: 1220px;
    margin: 0 auto;
  }
  #top .banner .swiper {
    max-width: 1220px;
    height: 187px;
    overflow: hidden;
  }
  #top .banner .swiper-wrapper {
    justify-content: center;
    gap: 40px;
  }
  #top .banner .swiper-slide {
    width: 380px;
    height: 187px;
    transition: all 0.3s ease;
  }
  #top .banner .swiper-slide:hover {
    cursor: pointer;
    opacity: 0.5;
  }
  #top .banner .swiper-button-next,
  #top .banner .swiper-button-prev {
    display: none;
  }
  #top .reason .flex {
    display: flex;
  }
  #top .reason .img {
    width: 40%;
    height: 592px;
    margin-bottom: 0px;
  }
  #top .reason .content {
    width: 540px;
    margin: 0 0 0 120px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1350px) {
  #top .reason .content {
    margin: 0 0 0 60px;
  }
}
@media only screen and (min-width: 1025px) {
  #top .reason .content .sec-title {
    margin-bottom: 50px;
  }
  #top .reason .content .exp {
    margin-bottom: 40px;
  }
  #top .reason .content .exp p {
    font: normal normal 600 26px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 2.6px;
  }
  #top .reason .content .text {
    gap: 20px;
  }
  #top .reason .content .text p {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
  }
  #top .reason .list {
    margin-top: 0px;
    padding: 25px 0 60px;
  }
  #top .reason .list::before {
    content: "";
    display: block;
    position: absolute;
    width: 285px;
    height: 285px;
    background: url(../images/top/PC/top_4pc.png) no-repeat;
    background-size: cover;
    top: -225px;
    right: 0;
  }
  #top .reason .list ul {
    width: 1262px;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    padding-bottom: 40px;
  }
  #top .reason .list ul li {
    width: 293px;
  }
  #top .reason .list ul li .num {
    display: flex;
    align-items: center;
    position: relative;
    top: 36px;
  }
  #top .reason .list ul li .num__text {
    font: normal normal normal 12px/40px Presicav;
    letter-spacing: 2.04px;
  }
  #top .reason .list ul li .num__num {
    font: normal normal normal 80px/96px "presicav", sans-serif;
    left: -47px;
  }
  #top .reason .list ul li h3 {
    font: normal normal bold 20px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding-left: 20px;
    text-align: center;
  }
  #top .reason .list ul li p {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
    padding-left: 20px;
  }
  #top .reason .list .bottom {
    width: 100%;
    padding-top: 40px;
  }
  #top .reason .list .bottom p {
    font: normal normal 600 24px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 2.4px;
    margin-bottom: 30px;
    text-align: center;
  }
  #top .reason .list .bottom .more-area {
    display: flex;
    justify-content: center;
  }
  #top .service__wrapper {
    width: 1280px;
  }
  #top .service__wrapper .inner .sec-title {
    padding-left: 70px;
    margin-bottom: 60px;
  }
  #top .service__wrapper .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  #top .service__wrapper .content .service__swiper {
    position: relative;
  }
  #top .service__wrapper .content .service__swiper .title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-left: 70px;
  }
  #top .service__wrapper .content .service__swiper .title .num {
    font: normal normal normal 40px/40px "presicav", sans-serif;
    padding-right: 30px;
  }
  #top .service__wrapper .content .service__swiper .title h3 {
    font: normal normal bold 26px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 2.6px;
    padding-left: 30px;
    border-left: 2px solid #DDDDDD;
  }
  #top .service__wrapper .content .service__swiper .exp {
    margin-bottom: 40px;
    padding-left: 70px;
  }
  #top .service__wrapper .content .service__swiper .exp p {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
  }
  #top .service__wrapper .swiper-container .service__list {
    display: flex;
    gap: 27px;
  }
  #top .service__wrapper .swiper-container .service__item a .inner .top {
    margin-bottom: 20px;
  }
  #top .service__wrapper .swiper-container .service__item a .inner .top .img {
    overflow: hidden;
  }
  #top .service__wrapper .swiper-container .service__item a .inner .top .img img {
    transition: all 0.3s ease;
  }
  #top .service__wrapper .swiper-container .service__item a .inner .bottom {
    padding-left: 14px;
  }
  #top .service__wrapper .swiper-container .service__item a .inner .bottom h3 {
    font: normal normal bold 20px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  #top .service__wrapper .swiper-container .service__item a .inner .bottom p {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
  }
  #top .service__wrapper .swiper-container .service__item a:hover .top .img img {
    transform: scale(1.2);
  }
  #top .service__wrapper .swiper-container .service__item a:hover .bottom h3 {
    color: #2CB4E6;
  }
  #top .service__wrapper .swiper-container .swiper-wrapper {
    transition-property: transform !important;
  }
  #top .service__wrapper .swiper-scrollbar {
    display: none;
  }
  #top .service .more-area {
    position: absolute;
    top: 84px;
    left: 846px;
    justify-content: flex-start;
  }
  #top .faq {
    padding-bottom: 90px;
  }
  #top .faq__wrapper {
    max-width: 1280px;
  }
  #top .faq__wrapper .inner {
    margin-bottom: 30px;
  }
  #top .faq__wrapper .inner .sec-title {
    text-align: center;
    margin-bottom: 40px;
  }
  #top .faq__wrapper .inner .sec-title__ja {
    padding-left: 0;
    text-align: center;
  }
  #top .faq__wrapper .inner .sec-title__ja::before {
    left: 375px;
  }
  #top .faq__wrapper .inner .sec-title__ja::after {
    content: "";
    display: block;
    position: absolute;
    width: 75px;
    height: 2px;
    right: 375px;
    top: 20px;
  }
  #top .faq__wrapper .inner .exp {
    margin-bottom: 40px;
  }
  #top .faq__wrapper .inner .exp p {
    font: normal normal 600 26px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 2.6px;
  }
  #top .faq__wrapper .swiper-container {
    width: 100%;
  }
  #top .faq__wrapper .swiper-container .faq__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  #top .faq__wrapper .swiper-container .faq__item {
    width: 417px;
    height: 563px;
    padding: 50px 0;
    box-shadow: none;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner {
    width: 417px;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .top {
    margin-bottom: 20px;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .top h3 {
    font: normal normal bold 20px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .top h3:before {
    content: "";
    display: block;
    position: absolute;
    width: 26px;
    height: 1.5px;
    top: 15px;
    left: -45px;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .top h3:after {
    content: "";
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    top: 15px;
    right: -45px;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .bottom {
    width: 100%;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .bottom .title {
    font: normal normal bold 20px/31px "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .bottom ul {
    width: 362px;
    margin: 0 auto;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .bottom ul li {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
    margin-left: 22.5px;
    text-indent: -17px;
  }
  #top .faq__wrapper .swiper-container .faq__item .inner .bottom .more-area {
    width: 326px;
    margin: 0 auto;
  }
  #top .faq__wrapper .swiper-container .swiper-wrapper {
    transition-property: transform !important;
  }
  #top .faq__wrapper .swiper-scrollbar {
    display: none;
  }
  #top .faq .more-area {
    display: flex;
    justify-content: center;
  }
  #top .voice {
    padding: 90px 0 60px;
  }
  #top .voice__wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  #top .voice__wrapper > .inner {
    width: 450px;
    padding-top: 95px;
  }
  #top .voice__wrapper > .inner .sec-title {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1300px) {
  #top .voice__wrapper > .inner .sec-title__ja {
    padding-left: 70px;
  }
  #top .voice__wrapper > .inner .sec-title__ja span {
    font-size: 26px;
  }
  #top .voice__wrapper > .inner .sec-title__ja:before {
    width: 55px;
  }
}
@media only screen and (min-width: 1025px) {
  #top .voice__wrapper > .inner .exp {
    margin-bottom: 40px;
  }
  #top .voice__wrapper > .inner .exp p {
    font: normal normal 600 26px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 2.6px;
  }
  #top .voice__wrapper > .inner .more-area {
    display: flex;
    justify-content: flex-start;
  }
  #top .voice__wrapper .content {
    width: 60%;
    min-width: 890px;
    overflow: hidden;
  }
  #top .voice__wrapper .swiper-container {
    width: 358px;
  }
  #top .voice__wrapper .swiper-container .voice__item {
    width: 358px;
    height: 535px;
    padding-bottom: 0px;
    margin-right: 40px !important;
  }
  #top .voice__wrapper .swiper-container .voice__item .inner .top {
    height: 165px;
    margin-bottom: 38px;
    padding: 40px 0 0 36px;
  }
  #top .voice__wrapper .swiper-container .voice__item .inner .top h3 {
    font: normal normal bold 20px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
  }
  #top .voice__wrapper .swiper-container .voice__item .inner .top .img {
    width: 120px;
    height: 120px;
    bottom: -21px;
    right: 35px;
  }
  #top .voice__wrapper .swiper-container .voice__item .inner .bottom {
    padding: 0 35px;
  }
  #top .voice__wrapper .swiper-container .voice__item .inner .bottom h4 {
    font: normal normal bold 20px/31px "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  #top .voice__wrapper .swiper-container .voice__item .inner .bottom p {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
  }
  #top .voice__wrapper .swiper-container .swiper-wrapper {
    transition-property: transform !important;
  }
  #top .voice__wrapper .swiper-scrollbar {
    width: 750px;
    height: 8px;
    margin: 40px 0 0;
  }
  #top .voice__wrapper .swiper-scrollbar .swiper-scrollbar-drag {
    height: 8px;
  }
  #top .voice__wrapper .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
  }
  #top .company {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 90px;
  }
  #top .company .sec-title {
    padding-left: 580px;
    margin-bottom: 50px;
  }
  #top .company .flex {
    display: flex;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: visible;
  }
  #top .company .img-area {
    width: 598px;
    height: 640px;
    margin: -160px 0 0 -110px;
  }
  #top .company .img-area img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #top .company .img-area img.img01 {
    width: 348px;
    height: 405px;
    top: 0;
    right: 47px;
    z-index: -1;
  }
  #top .company .img-area img.img02 {
    width: 302px;
    height: 229px;
    bottom: 61px;
    left: 0;
    z-index: 1;
  }
  #top .company .img-area img.img03 {
    width: 246px;
    height: 164px;
    bottom: 0;
    right: 0;
  }
  #top .company .content {
    width: 525px;
    margin: 0 0 0 93px;
  }
  #top .company .content .copy {
    margin-bottom: 40px;
  }
  #top .company .content .copy p {
    font: normal normal 600 26px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 2.6px;
  }
  #top .company .content > .text {
    margin-bottom: 40px;
  }
  #top .company .content > .text p {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
  }
  #top .company .content .more-area {
    justify-content: flex-start;
  }
  #top .blog {
    padding-bottom: 90px;
    position: relative;
  }
  #top .blog__wrapper {
    width: 1190px;
    margin: 0 auto;
  }
  #top .blog__wrapper .inner .sec-title {
    padding-left: 60px;
    margin-bottom: 60px;
  }
  #top .blog__wrapper .content {
    position: relative;
  }
  #top .blog__wrapper .swiper-container {
    width: 370px;
  }
  #top .blog__wrapper .swiper-container .blog__list {
    display: flex;
    margin-bottom: 0px;
    gap: 40px;
  }
  #top .blog__wrapper .swiper-container .blog__item {
    width: 370px;
  }
  #top .blog__wrapper .swiper-container .blog__item a {
    width: 370px;
  }
  #top .blog__wrapper .swiper-container .blog__item a .inner .top {
    margin-bottom: 30px;
  }
  #top .blog__wrapper .swiper-container .blog__item a .inner .top .img {
    width: 370px;
    height: 247px;
    overflow: hidden;
  }
  #top .blog__wrapper .swiper-container .blog__item a .inner .top .img img {
    transition: all 0.4s ease;
  }
  #top .blog__wrapper .swiper-container .blog__item a .inner .bottom time {
    font: normal normal normal 14px/14px "presicav", sans-serif;
    letter-spacing: 1.12px;
    margin-bottom: 10px;
  }
  #top .blog__wrapper .swiper-container .blog__item a .inner .bottom h3 {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.4s ease;
  }
  #top .blog__wrapper .swiper-container .blog__item a .inner .bottom .cat {
    height: 29px;
    padding: 0 12px;
    font: normal normal 500 15px/25px "Noto Sans JP", sans-serif;
    letter-spacing: 1.5px;
  }
  #top .blog__wrapper .swiper-container .blog__item a:hover .inner .top .img img {
    transform: scale(1.2);
  }
  #top .blog__wrapper .swiper-container .blog__item a:hover .inner .bottom h3 {
    text-decoration-color: inherit;
  }
  #top .blog__wrapper .swiper-container .swiper-wrapper {
    transition-property: transform !important;
  }
  #top .blog__wrapper .swiper-scrollbar {
    display: none;
  }
  #top .blog .more-area {
    position: absolute;
    top: -103px;
    right: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
  }
  #top .recruit {
    padding-bottom: 55px;
    margin-bottom: 60px;
    background: url(../images/top/recruit_bg_pc.png) no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  #top .recruit::before, #top .recruit::after {
    content: "";
    display: block;
    position: absolute;
    height: 4.6vw;
  }
  #top .recruit::before {
    background: url(../images/top/recruit_top_pc.png) no-repeat;
    background-size: cover;
  }
  #top .recruit::after {
    background: url(../images/top/recruit_bottom_pc.png) no-repeat;
    background-size: cover;
  }
  #top .recruit__wrapper {
    padding-top: 25px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
  }
  #top .recruit__wrapper .contents {
    width: 566px;
  }
  #top .recruit__wrapper .contents .sec-title {
    margin-bottom: 40px;
  }
  #top .recruit__wrapper .contents .sec-title__ja {
    padding: 0;
  }
  #top .recruit__wrapper .contents .sec-title__ja::before {
    display: none;
  }
  #top .recruit__wrapper .contents {
    position: relative;
  }
  #top .recruit__wrapper .contents::before {
    content: "";
    display: block;
    position: absolute;
    content: "JoinUs!";
    font: normal normal normal 55px/66px "Babylonica", cursive;
    letter-spacing: 2.75px;
    top: 20px;
    right: -64px;
    z-index: 10;
    transform: rotate(-12deg);
  }
  #top .recruit__wrapper .contents + .contents {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
  #top .recruit__wrapper .contents .copy {
    margin-bottom: 40px;
  }
  #top .recruit__wrapper .contents .copy p {
    font: normal normal 600 26px/40px "Noto Sans JP", sans-serif;
    letter-spacing: 2.6px;
  }
  #top .recruit__wrapper .contents > .text {
    width: 575px;
    margin: 0 auto 40px;
  }
  #top .recruit__wrapper .contents > .text p {
    font: normal normal 500 16px/32px "Noto Sans JP", sans-serif;
    letter-spacing: 0.96px;
    text-align: center;
  }
  #top .recruit__wrapper .contents .more-area {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #top .recruit .scroll-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1500px;
    transform: translateX(-50%);
    left: 50%;
  }
  #top .recruit .scroll-bg .scroll-infinity {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__wrap {
    width: 418px;
    flex-direction: column;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list {
    flex-direction: column;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list--left {
    animation: infinity-scroll-left-y 10s infinite linear 0.5s both;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list--right {
    animation: infinity-scroll-right-y 10s infinite linear 0.5s both;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item {
    width: 418px;
    margin-right: 0;
    margin-bottom: 40px;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item > img {
    width: 100%;
    height: 314px;
  }
}

/*# sourceMappingURL=top.css.map */
