@charset "UTF-8";

/*
  File Name   : top.css
  Description : Write top content styles
*/
.top-kv {
  position: relative;
}

.top-kv .kv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#27589b), to(#000));
  background: -webkit-linear-gradient(#27589b 0%, #000 100%);
  background: linear-gradient(#27589b 0%, #000 100%);
  opacity: 0.3;
  pointer-events: none;
  /* オーバーレイにクリックを通す場合 */
  z-index: 1;
}

.top-kv .top-kv-logo {
  position: absolute;
  left: 0;
  max-width: 680px;
  top: 25%;
  left: 7%;
  padding-bottom: 47.76%;
  z-index: 3;
  pointer-events: none;
}

@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-logo {
    height: 0;
    top: 50%;
    left: 50%;
    width: 90%;
    padding-bottom: 34.5%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-left: 0;
  }
}

.top-kv .top-kv-logo .kv-maintext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #FFF;
  font-size: 75px;
  font-weight: 900;
  text-shadow: 0px 0px 3px #11121f;
  line-height: 1.4em;
}

@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-logo .kv-maintext {
    font-size: clamp(45px, 4.88vw, 50px);
  }
}

@media only screen and (max-width: 600px) {
  .top-kv .top-kv-logo .kv-maintext {
    font-size: clamp(30px, 6.66vw, 40px);
  }
}

.top-kv .top-kv-logo .kv-subtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  text-shadow: 0px 0px 3px #11121f;
}

@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-logo .kv-subtext {
    font-size: clamp(20px, 4.17vw, 25px);
  }
}

.top-kv .top-kv-slide {
  position: relative;
  font-size: 0;
  line-height: 0;
  padding: 0 0 0;
}

.top-kv .top-kv-slide .top-kv-slide-item {
  padding: 0 0 0;
}

.top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img {
  position: relative;
  display: block;
  width: 100%;
  height: calc(100vh - var(--height-header));
  height: calc(100dvh - var(--height-header));
  min-height: 32.14285714vw;
  overflow: hidden;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img {
    height: calc(100vh - var(--height-header_mbl));
    height: calc(100dvh - var(--height-header_mbl));
  }
}

@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img {
    height: calc(100vh - var(--height-header_mbl));
    height: calc(100dvh - var(--height-header_mbl));
    min-height: min(74.0vw, 350px);
  }
}

.top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img>img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.top-kv .top-kv-slide .slick-arrow {
  position: absolute;
  display: block;
  top: calc(50% - 1.0rem);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.top-kv .top-kv-slide .slick-arrow .arrowInner {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: var(--color_main);
}

.top-kv .top-kv-slide .slick-arrow .arrowInner::before,
.top-kv .top-kv-slide .slick-arrow .arrowInner::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid #fff;
  border-bottom: none;
  border-left: none;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(30%, -50%) rotate(45deg);
  transform: translate(30%, -50%) rotate(45deg);
  pointer-events: none;
}

.top-kv .top-kv-slide .slick-arrow.slick-prev {
  left: 20%;
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
  transform: translate(-50%, -50%) scale(-1, 1);
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-kv .top-kv-slide .slick-arrow.slick-prev {
    left: 10%;
  }
}

@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slide .slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: translate(0, -50%) scale(-1, 1);
    transform: translate(0, -50%) scale(-1, 1);
  }
}

.top-kv .top-kv-slide .slick-arrow.slick-next {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  right: 20%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-kv .top-kv-slide .slick-arrow.slick-next {
    right: 10%;
  }
}

@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slide .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

.top-kv .top-kv-slide .slick-dots {
  position: absolute;
  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;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5em 0.5em;
  width: 100%;
  bottom: 0;
  left: 0;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.top-kv .top-kv-slide .slick-dots>li {
  position: relative;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color_sub);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.top-kv .top-kv-slide .slick-dots>li>button {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  top: 0;
  left: 0;
}

.top-kv .top-kv-slide .slick-dots>li.slick-active {
  background-color: var(--color_main);
}

.top-aboutus {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: -webkit-linear-gradient(45deg, #d5dce6 0%, #f2f4f7 17.24%, #e7e9ef 25.62%, #f4f4f5 58.13%, #cdd9e6 100%);
  background: linear-gradient(45deg, #d5dce6 0%, #f2f4f7 17.24%, #e7e9ef 25.62%, #f4f4f5 58.13%, #cdd9e6 100%);
  padding: 150px 0 calc(clamp(430px, 50.229vw, 830px) + clamp(0px, calc(5.208vw - 100px), 100px));
  margin: 0 auto 0;
}

@media only screen and (max-width: 1024px) {
  .top-aboutus {
    padding: 100px 0 calc(clamp(490px, 51.758vw, 530px));
  }
}

.top-aboutusInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 110px;
}

@media only screen and (max-width: 1024px) {
  .top-aboutusInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top-aboutusInner .section-title {
  position: relative;
  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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 40px;
  font-weight: 900;
  padding-top: 0.35em;
}

@media only screen and (max-width: 1024px) {
  .top-aboutusInner .section-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 599px) {
  .top-aboutusInner .section-title {
    font-size: 32px;
  }
}

.top-aboutusInner .section-title .title-logo {
  position: relative;
  font-size: 130px;
  font-weight: 300;
  font-family: var(--fontFamily_sub);
  color: #B1B8CC;
  line-height: 0.9em;
  white-space: nowrap;
  z-index: 2;
}

@media only screen and (max-width: 599px) {
  .top-aboutusInner .section-title .title-logo {
    font-size: 90px;
  }
}

.top-aboutusInner .section-title .title-text {
  position: relative;
  letter-spacing: 0.12em;
  line-height: 1em;
  z-index: 2;
}

.top-aboutusInner .section-decorator {
  position: absolute;
  width: 40.05vw;
  z-index: 1;
}

@media print,
screen and (min-width: 1025px) {
  .top-aboutusInner .section-decorator {
    top: 20%;
    left: 0;
    /* -webkit-transform: translate(25%, 0);
    transform: translate(25%, 0); */
  }
}

@media only screen and (max-width: 1024px) {
  .top-aboutusInner .section-decorator {
    top: 10%;
    left: -5%;
    /* -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); */
  }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-aboutusInner  .section-decorator {
    width: 74.05vw;
  }
}

@media only screen and (max-width: 599px) {
  .top-aboutusInner .section-decorator {
    width: 107.73vw;
    top: 0;
    left: -5%;
    bottom: auto;
  }
}

@media only screen and (max-width: 400px) {
  .top-aboutusInner .section-decorator {
    top: 10%;
    left: -3%;
  }
}

.top-aboutusInner .section-decorator .section-decoratorInner {
  width: 100%;
  height: 0;
  padding-bottom: 45.76%;
  background: url(../images/home/section-decorator.svg) no-repeat center/contain;
}

@media only screen and (max-width: 599px) {
  .top-aboutusInner .section-decorator .section-decoratorInner {
    background: url(../images/home/section-decorator.svg) no-repeat center/contain;
  }
}

.top-aboutusInner .section-caption-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  .top-aboutusInner .section-caption-wrap {
    padding-top: 50px;
  }
}

.top-aboutusInner .section-caption-wrap .section-catchcopy {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

@media only screen and (max-width: 599px) {
  .top-aboutusInner .section-caption-wrap .section-catchcopy {
    font-size: 22px;
  }
}

.top-aboutusInner .section-caption-wrap .section-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 50px;
  gap: 1.5em 0;
}

.top-aboutusInner .section-caption-wrap .section-text-wrap .section-text {
  display: block;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 2em;
}

@media only screen and (max-width: 599px) {
  .top-aboutusInner .section-caption-wrap .section-text-wrap .section-text {
    font-size: 18px;
  }
}

.top-aboutus .about-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.top-aboutus .about-image img {
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 680px;
  min-height: 360px;
  width: calc(100% - clamp(20px, 4.33vw, 160px));
  max-width: calc(100% - clamp(20px, 4.33vw, 160px));
}

.top-business {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(70px, 5.72vw, 110px) 0 clamp(200px, 16.4vw, 315px);
  margin: 0 auto 0;
}

.top-businessInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 899px) {
  .top-businessInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top-businessInner .section-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 40px;
  font-weight: 900;
  padding-top: 0.35em;
  padding-left: clamp(0px, calc((100vw - 1025px) * -0.05587 + 50px), 50px);
}

@media only screen and (max-width: 1024px) {
  .top-businessInner .section-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 599px) {
  .top-businessInner .section-title {
    font-size: 32px;
    padding-left: clamp(0px, calc((100vw - 1025px) * -0.05587 + 20px), 20px);
  }
}

.top-businessInner .section-title .title-logo {
  font-size: 130px;
  font-weight: 300;
  font-family: var(--fontFamily_sub);
  color: #B1B8CC;
  line-height: 0.9em;
  white-space: nowrap;
  z-index: 2;
}

@media only screen and (max-width: 599px) {
  .top-businessInner .section-title .title-logo {
    font-size: 90px;
  }
}

.top-businessInner .section-title .title-text {
  letter-spacing: 0.12em;
  z-index: 2;
  color: #FFF;
}

.top-businessInner .section-caption-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: clamp(150px, 16.15vW, 300px);
  z-index: 2;
}

@media only screen and (max-width: 899px) {
  .top-businessInner .section-caption-wrap {
    padding-left: clamp(0px, calc((100vw - 1025px) * -0.05587 + 50px), 50px);
  }
}

@media only screen and (max-width: 599px) {
  .top-businessInner .section-caption-wrap {
    padding-left: clamp(0px, calc((100vw - 1025px) * -0.05587 + 20px), 20px);
  }
}

.top-businessInner .section-caption-wrap .section-catchcopy {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.8em;
}

.top-businessInner .section-caption-wrap .section-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 50px;
  gap: 1.5em 0;
}

.top-businessInner .section-caption-wrap .section-text-wrap .section-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: clamp(18px, 1.041vw, 20px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 2em;
  color: #FFF;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-businessInner .section-caption-wrap .section-text-wrap .section-text {
    display: inline;
    white-space: normal;
  }
}

@media only screen and (max-width: 899px) {
  .top-businessInner .section-caption-wrap .section-text-wrap .section-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 599px) {
  .top-businessInner .section-caption-wrap .section-text-wrap .section-text {
    display: inline;
    white-space: normal;
  }
}

.top-businessInner .section-caption-wrap .guide-button {
  max-width: 250px;
  margin-top: 45px;
  text-decoration: none;
}

@media only screen and (max-width: 1024px) {
  .top-businessInner .section-caption-wrap .guide-button {
    padding-top: 1.3em;
  }
}

.top-business .section-float-background {
  position: absolute;
  top: -30%;
  right: 0;
  width: calc(100% - clamp(25px, 4.33vw, 160px));
  height: 110%;
  background: -webkit-gradient(linear, left top, left bottom, from(#485f9a), to(#1b326e));
  background: -webkit-linear-gradient(#485f9a 0%, #1b326e 100%);
  background: linear-gradient(#485f9a 0%, #1b326e 100%);
}

.top-parallaxSectionInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: calc(100% - ((100% - var(--width_base))* 0.5));
  max-width: inherit;
  height: calc(100vh - var(--height-header));
  height: calc(100dvh - var(--height-header));
  padding-left: 0;
  margin: 0 auto 0 0;
}

@media only screen and (max-width: 989px) {
  .top-parallaxSectionInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-right: 0;
    padding-bottom: 100px;
    height: auto;
  }
}

@media print,
screen and (min-width: 1025px) and (max-width: 1199px) {
  .top-parallaxSectionInner {
    width: 100%;
    margin: 0 0 0;
  }
}

@media only screen and (max-width: 1024px) {
  .top-parallaxSectionInner {
    width: 100%;
    margin: 0 0 0;
  }
}

.top-parallaxSection__pict {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  position: relative;
}

@media only print {
  .top-parallaxSection__pict {
    -webkit-clip-path: unset;
    clip-path: unset;
  }
}

@media only screen and (max-width: 989px) {
  .top-parallaxSection__pict {
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}

.top-parallaxSection__pictInner {
  position: fixed;
  top: var(--height-header);
  bottom: 0;
  left: 0;
  inline-size: 50vw;
}

@media only print {
  .top-parallaxSection__pictInner {
    position: static;
    height: 100%;
  }
}

@media only screen and (max-width: 989px) {
  .top-parallaxSection__pictInner {
    top: 0;
    position: relative;
    inline-size: 100vw;
  }
}

.top-parallaxSection__content {
  position: relative;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 50%;
  max-width: 600px;
  padding: 3.5rem;
}

@media only screen and (max-width: 989px) {
  .top-parallaxSection__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    width: 100%;
    max-width: none;
  }
}

.top-parallaxSection__content--hl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 40px;
  color: #33487E;
  z-index: 2;
}

@media only screen and (max-width: 989px) {
  .top-parallaxSection__content--hl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (max-width: 599px) {
  .top-parallaxSection__content--hl {
    font-size: 32px;
  }
}

.top-parallaxSection__content--hl .title-logo {
  font-size: 130px;
  font-weight: 300;
  font-family: var(--fontFamily_sub);
  color: #B1B8CC;
  line-height: 0.9em;
  white-space: nowrap;
}

@media only screen and (max-width: 989px) {
  .top-parallaxSection__content--hl .title-logo {
    padding: 1rem;
    padding-bottom: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .top-parallaxSection__content--hl .title-logo {
    font-size: 90px;
  }
}

.top-parallaxSection__content--description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 40px 0 0;
  font-size: clamp(18px, 1.61vw, 20px);
  z-index: 2;
}

@media only screen and (max-width: 599px) {
  .top-parallaxSection__content--description {
    display: inline;
    white-space: normal;
    font-size: 18px;
  }
}

.top-parallaxSection__content--moreBtn {
  margin: 40px auto 0;
  z-index: 2;
}

.top-parallaxSection .guide-button-container {
  position: relative;
  max-width: 250px;
  margin-top: 45px;
  width: 100%;
}

.top-parallaxSection .guide-button-container .guide-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: -webkit-linear-gradient(135deg, #485f9a 0%, #1b326e 100%);
  background: linear-gradient(-45deg, #485f9a 0%, #1b326e 100%);
  z-index: 2;
}

.top-parallaxSection .guide-button-container .section-decorator {
  position: absolute;
  top: 0;
  left: 0;
  width: 31.09vw;
  -webkit-transform: translate(25%, 0);
  transform: translate(25%, 0);
  z-index: 1;
}

@media (max-width: 1440px) {
  .top-parallaxSection .guide-button-container .section-decorator {
    bottom: 10%;
    left: 25%;
  }
}

@media only screen and (max-width: 599px) {
  .top-parallaxSection .guide-button-container .section-decorator {
    width: 41.6vw;
    top: 0;
    left: 2%;
    bottom: auto;
  }
}

.top-parallaxSection .guide-button-container .section-decorator .section-decoratorInner {
  width: 100%;
  height: 0;
  padding-bottom: 45.76%;
  background: url(../images/home/section-decorator.svg) no-repeat center/contain;
  opacity: 0.4;
}

@media only screen and (max-width: 599px) {
  .top-parallaxSection .guide-button-container .section-decorator .section-decoratorInner {
    background: url(../images/home/section-decorator.svg) no-repeat center/contain;
    padding-bottom: 105.769%;
  }
}

.top-contract {
  padding: 120px 0;
  margin-top: 130px;
  background: -webkit-linear-gradient(225deg, #485f9a 0%, #1b326e 100%);
  background: linear-gradient(-135deg, #485f9a 0%, #1b326e 100%);
}

@media only screen and (max-width: 599px) {
  .top-contract {
    padding: 100px 0;
    margin-top: 0;
  }
}

.top-contractInner {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-contract .section-title {
  position: relative;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  padding-top: 0.35em;
}

.top-contract .section-title .title-logo {
  font-size: 130px;
  font-weight: 300;
  font-family: var(--fontFamily_sub);
  color: #B1B8CC;
  line-height: 0.9em;
  white-space: nowrap;
  z-index: 2;
}

@media only screen and (max-width: 599px) {
  .top-contract .section-title .title-logo {
    font-size: 90px;
  }
}

.top-contract .section-title .title-text {
  letter-spacing: 0.12em;
  z-index: 2;
  color: #FFF;
}

@media only screen and (max-width: 599px) {
  .top-contract .section-title .title-text {
    font-size: 32px;
  }
}

.top-contract .contract-link-wrap {
  padding-top: 50px;
}

.top-contract .contract-link-wrap .contract-link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 0 60px;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-contract .contract-link-wrap .contract-link-list {
    gap: 0 clamp(20px, 5.85vw, 60px);
  }
}

@media only screen and (max-width: 599px) {
  .top-contract .contract-link-wrap .contract-link-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item>a {
  background: #f2f4fa;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .thumb {
  overflow: hidden;
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .thumb>img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap {
  position: relative;
  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;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 25px;
  gap: 15px 0;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap {
    padding: 30px 25px;
  }
}

@media only screen and (max-width: 599px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap {
    padding: 30px 25px 40px;
  }
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap .caption-title {
  font-size: 30px;
  font-weight: 700;
  color: #33487E;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap .caption-title {
    font-size: clamp(25px, 2.93vw, 30px);
  }
}

@media only screen and (max-width: 599px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap .caption-title {
    font-size: 25px;
  }
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap .caption-text {
  color: var(--color_font);
  font-size: 20px;
  margin-top: 10px;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap .caption-text {
    font-size: clamp(18px, 1.95vw, 20px);
  }
}

@media only screen and (max-width: 599px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap .caption-text {
    font-size: 18px;
  }
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap::after {
  position: absolute;
  content: "→";
  display: inline-block;
  right: 1em;
  margin-left: 0.5em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
  color: #33487E;
  font-weight: 700;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap::after {
    right: 0.5em;
  }
}

@media only screen and (max-width: 1024px) {
  .top-contract .contract-link-wrap .contract-link-list .contract-link-item>a .caption-wrap::after {
    bottom: 0.5em;
  }
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.top-contract .contract-link-wrap .contract-link-list .contract-link-item:hover .caption-wrap::after {
  right: 0.5em;
}

.top-news {
  padding: 120px 0;
}

@media only screen and (max-width: 599px) {
  .top-news {
    padding: 100px 0;
  }
}

.top-newsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 250px;
}

@media only screen and (max-width: 1024px) {
  .top-newsInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top-newsInner .top-news-section-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.top-newsInner .top-news-section-title-container .section-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 40px;
  font-weight: 900;
  padding-top: 0.35em;
}
@media only screen and (max-width: 599px) {
  .top-newsInner .top-news-section-title-container .section-title {
    font-size: 32px;
  }
}

.top-newsInner .top-news-section-title-container .section-title .title-logo {
  font-size: 130px;
  font-weight: 300;
  font-family: var(--fontFamily_sub);
  color: #B1B8CC;
  line-height: 0.9em;
  white-space: nowrap;
  z-index: 2;
}

.top-newsInner .top-news-section-title-container .section-title .title-text {
  letter-spacing: 0.12em;
  z-index: 2;
  color: #33487E;
}

.top-news .top-news-header .top-news-header-catTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5em 0.5em;
}

@media only screen and (max-width: 1024px) {
  .top-news .top-news-header .top-news-header-catTab {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top-news .top-news-header .top-news-header-catTab>li {
  display: block;
}

.top-news .top-news-header .top-news-header-catTab>li>a {
  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;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 10em;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  letter-spacing: var(--letterSpacing_base);
  text-indent: var(--letterSpacing_base);
  text-decoration: none;
  border: 1px solid var(--color_main);
  background-color: var(--color_main);
  padding: 0.25em 0.5em;
}

.top-news .top-news-list-wrap {
  margin: 0 0 3rem 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.top-news .top-news-list-wrap .com-news-list>ul {
  border-top: none;
}

.top-news .guide-button-container {
  position: relative;
  max-width: 250px;
  margin-top: 70px;
  width: 100%;
}

.top-news .guide-button {
  position: relative;
  display: block;
  max-width: 250px;
  width: 250px;
  text-decoration: none;
  background: -webkit-linear-gradient(225deg, #485f9a 0%, #1b326e 100%);
  background: linear-gradient(-135deg, #485f9a 0%, #1b326e 100%);
  z-index: 2;
}

.top-news .guide-button.dNone-pc {
  right: 0;
  margin-top: 0;
}

.top-news .mbl-more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}

.top-news .mbl-more-btn .mbl-button {
  margin-top: 0;
}

.top-recruit {
  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;
}

@media print, screen and (min-width: 1025px) {
  .top-recruit .top-recruit-container {
    height: 600px;
  }
}
@media only screen and (max-width: 1024px) {
  .top-recruit .top-recruit-container {
    height: 530px;
  }
}

@media only screen and (max-width: 599px) {
  .top-recruit .top-recruit-container {
    padding: 0;
  }
}

.top-recruitInner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.top-recruitInner::before {
  content: "";
  position: absolute;
  bottom: 13%;
  right: calc(3em + 10px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
  z-index: 2;
}
.top-recruitInner::after {
  content: "";
  position: absolute;
  bottom: 13%;
  right: 3em;
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
  z-index: 2;
}
.top-recruitInner:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-recruitInner:hover::before {
    right: calc(2em + 10px );
  }
  .top-recruitInner:hover::after {
    right: 2em;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-recruitInner::before, .top-recruitInner::after {
    bottom: 12%;
  }
}
@media only screen and (max-width: 599px) {
  .top-recruitInner::before, .top-recruitInner::after {
    bottom: 10%;
  }
}

.top-recruitInner picture {
  height: 100%;
}

.top-recruitInner picture img {
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-position: 5% center;
  object-position: 5% center;
}

@media only screen and (max-width: 1024px) {
  .top-recruitInner picture img {
    -o-object-position: center 20%;
    object-position: center 20%;
  }
}

.top-recruitInner picture::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid #FFF;
  pointer-events: none;
  z-index: 2;
}

@media print, screen and (min-width: 1025px) {
  .top-recruitInner picture::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(6, 19, 34, 0)), color-stop(17.24%, rgba(15, 30, 51, 0.5)), to(#1a1d24));
    background: -webkit-linear-gradient(left, rgba(6, 19, 34, 0) 0%, rgba(15, 30, 51, 0.5) 17.24%, #1a1d24 100%);
    background: linear-gradient(90deg, rgba(6, 19, 34, 0) 0%, rgba(15, 30, 51, 0.5) 17.24%, #1a1d24 100%);
    pointer-events: none;
    z-index: 1;
  }
}

@media only screen and (max-width: 1024px) {
  .top-recruitInner picture::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 19, 34, 0)), color-stop(29.18%, rgba(15, 30, 51, 0.5)), to(#1a1d24));
    background: -webkit-linear-gradient(top, rgba(6, 19, 34, 0) 0%, rgba(15, 30, 51, 0.5) 29.18%, #1a1d24 100%);
    background: linear-gradient(180deg, rgba(6, 19, 34, 0) 0%, rgba(15, 30, 51, 0.5) 29.18%, #1a1d24 100%);
    pointer-events: none;
    z-index: 1;
  }
}

.top-recruit .caption-container {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: 50%;
  right: 3%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 3;
}

@media only screen and (max-width: 1024px) {
  .top-recruit .caption-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: auto;
    right: 50%;
    bottom: 5%;
    -webkit-transform: translate(50%, -8%);
            transform: translate(50%, -8%);
    width: calc(100% - (((20px + 8px) * 2) + 2px));
  }
}

.top-recruit .caption-container .section-title {
  position: relative;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(30px, 3.33vw, 40px);
  font-weight: 900;
  padding-top: 0.35em;
}

@media only screen and (max-width: 1024px) {
  .top-recruit .caption-container .section-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.top-recruit .caption-container .section-title .title-logo {
  font-size: 3.25em;
  font-weight: 300;
  font-family: var(--fontFamily_sub);
  color: #B1B8CC;
  line-height: 0.9em;
  white-space: nowrap;
  z-index: 2;
}

.top-recruit .caption-container .section-title .title-text {
  letter-spacing: 0.12em;
  z-index: 2;
  color: #FFF;
}

.top-recruit .caption-container .section-caption-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}

.top-recruit .caption-container .section-caption-wrap .section-catchcopy {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.8em;
}

.top-recruit .caption-container .section-caption-wrap .section-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 50px;
  gap: 1.5em 0;
}

@media only screen and (max-width: 1024px) {
  .top-recruit .caption-container .section-caption-wrap .section-text-wrap {
    padding: 40px 0;
  }
}

.top-recruit .caption-container .section-caption-wrap .section-text-wrap .section-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: clamp(18px, 1.041vw, 20px);
  font-weight: 400;
  line-height: 2em;
  color: #FFF;
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-recruit .caption-container .section-caption-wrap .section-text-wrap .section-text > span {
    text-align: center;
  }
}

.top-banner {
  padding: 100px 0 135px;
}

.top-bannerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
}

@media print,
screen and (min-width: 1025px) {
  .top-banner .top-banner-link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - (30px * 2)) / 3);
    flex: 0 0 calc((100% - (30px * 2)) / 3);
  }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-banner .top-banner-link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - (30px)) / 2);
    flex: 0 0 calc((100% - (30px)) / 2);
  }
}

@media only screen and (max-width: 599px) {
  .top-banner .top-banner-link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1;
    flex: 0 0 1;
  }
}

.guide-text {
  display: block;
  position: relative;
  padding: 13px 60px;
  border: solid 2px #FFF;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1024px) {
  .guide-text {
    padding: 18px 35px;
  }
}

.guide-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(1em + 10px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
}

.guide-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 10px solid #fff;
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
}

.guide-text:hover {
  opacity: 1 !important;
}

@media print,
screen and (min-width: 1025px) {
  .guide-text:hover::before {
    right: calc(0.5em + 10px);
  }

  .guide-text:hover::after {
    right: 0.5em;
  }
}