/* index.html
---------------------------------------------------- */
body.__no-scroll {
  height: 100vh;
  overflow: hidden;
}

#loading {
  position: fixed;
  z-index: 999;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loading 3.2s forwards;
}

@keyframes loading {
  0%, 80% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 3.2s forwards;
  width: max(15vw, 160px);
}

@keyframes logo_fade {
  0%, 16% {
    transform: translateY(20px);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(0);
    opacity: 0;
  }
}
#main-visual {
  position: relative;
}
#main-visual .mv-content {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 1s ease;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content {
    top: 50%;
  }
}
#main-visual .mv-content.__last-slide {
  top: 30%;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content.__last-slide {
    top: 38%;
  }
}
#main-visual .mv-content .mv-catch {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 6px rgba(51, 51, 51, 0.3);
  transition: all 0.8s ease;
}
#main-visual .mv-content .mv-catch.__loading-delay {
  transition-delay: 2.7s;
}
#main-visual .mv-content .mv-catch h2 {
  font-weight: 700;
  font-size: max(3rem, 2em);
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content .mv-catch h2 {
    font-size: 1.75em;
  }
}
#main-visual .mv-content .mv-catch p {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content .mv-catch p {
    padding-bottom: 60px;
  }
}
#main-visual .mv-img .slider-mv {
  width: 100%;
  aspect-ratio: 16/9.5;
}
@media screen and (max-width: 1199px) {
  #main-visual .mv-img .slider-mv {
    aspect-ratio: unset;
    height: 80lvh;
    max-height: 600px;
    min-height: 400px;
  }
}
#main-visual .mv-img .slider-mv .swiper-wrapper .swiper-slide .swiper-img {
  position: relative;
  width: 100%;
  height: 100%;
}
#main-visual .mv-img .slider-mv .swiper-wrapper .swiper-slide .swiper-img::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 100%;
  height: 65%;
  background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}
#main-visual .mv-img .slider-mv .swiper-wrapper .swiper-slide .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-visual .mv-img .slider-mv .swiper-wrapper .swiper-slide .swiper-img.__01 img {
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}
#main-visual .mv-img .slider-mv .swiper-wrapper .swiper-slide .swiper-img.__02 img {
  -o-object-position: 65% 50%;
     object-position: 65% 50%;
}
#main-visual .mv-img .slider-mv .swiper-wrapper .swiper-slide .swiper-img.__last-slide::before {
  top: 0;
  transform: translateY(0);
}
#main-visual .mv-img .slider-mv .swiper-wrapper .swiper-slide .swiper-img.__last-slide img {
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}
@keyframes zoomPan {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
#main-visual .mv-img .slider-mv .swiper-slide-active .swiper-img img,
#main-visual .mv-img .slider-mv .swiper-slide-duplicate-active .swiper-img img,
#main-visual .mv-img .slider-mv .swiper-slide-prev .swiper-img img {
  animation: zoomPan 4s linear normal both;
}

.sec-about {
  color: #fff;
}
.sec-about .sec-intro {
  margin-top: -1em;
  margin-bottom: -2em;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-intro {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-about .sec-intro {
    margin-bottom: 0;
  }
}
.sec-about .sec-intro p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-about .sec-intro p {
    text-align: start;
  }
}
.sec-about .sec-intro p:not(:nth-of-type(1)) {
  margin-top: 1em;
}
.sec-about .sec-ttl {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .sec-about .sec-ttl {
    padding-left: 20px;
  }
}
.sec-about .sec-ttl .__large-en-txt {
  position: relative;
  z-index: -1;
  color: #165c96;
  text-align: end;
  margin-bottom: -0.48em;
}
.sec-about .sec-inner {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .sec-about .sec-inner {
    margin-top: 2em;
  }
}
.sec-about .sec-inner .flex-wrap .txt-wrap {
  margin-bottom: 2em;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-inner .flex-wrap .txt-wrap {
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 767px) {
  .sec-about .sec-inner .flex-wrap .txt-wrap {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-inner .flex-wrap .img-wrap {
    width: 100%;
  }
}

.sec-business .sec-ttl {
  margin-top: -1em;
}
@media screen and (max-width: 767px) {
  .sec-business .sec-ttl {
    margin-top: 0;
  }
}
.sec-business .sec-ttl h2 {
  display: flex;
  align-items: flex-end;
}
.sec-business .sec-ttl h2 span.__jp {
  display: inline-block;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .sec-business .business-list {
    margin-top: -1em;
  }
}
.sec-business .business-list ul .business-list-item {
  background-color: #fff;
  box-shadow: 4px 4px 8px rgba(102, 102, 102, 0.1);
  display: flex;
  margin-top: 2em;
}
@media screen and (max-width: 1199px) {
  .sec-business .business-list ul .business-list-item {
    display: block;
    padding: max(5rem, 3em);
    border-top: solid 6px #1685bc;
  }
}
@media screen and (max-width: 767px) {
  .sec-business .business-list ul .business-list-item {
    border-top-width: 2px;
    padding: 20px;
    padding-top: 30px;
  }
}
.sec-business .business-list ul .business-list-item .txt-wrap {
  width: 100%;
  border-left: solid 4px #1685bc;
  padding: max(5rem, 2em);
}
@media screen and (max-width: 1199px) {
  .sec-business .business-list ul .business-list-item .txt-wrap {
    padding: 0;
    border-left: none;
  }
}
.sec-business .business-list ul .business-list-item .txt-wrap .item-name h3 span.__en {
  display: inline;
  margin-left: 0.6em;
}
.sec-business .business-list ul .business-list-item .txt-wrap .item-txt {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .sec-business .business-list ul .business-list-item .txt-wrap .item-txt {
    margin-top: 1em;
  }
}
.sec-business .business-list ul .business-list-item .txt-wrap .item-link {
  margin-top: 3em;
}
.sec-business .business-list ul .business-list-item .txt-wrap .item-link ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1em;
}
.sec-business .business-list ul .business-list-item .txt-wrap .item-link ul li {
  width: calc(33.3333333333% - 2em);
  margin-right: 3em;
  margin-top: 1em;
}
.sec-business .business-list ul .business-list-item .txt-wrap .item-link ul li:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1759px) {
  .sec-business .business-list ul .business-list-item .txt-wrap .item-link ul li {
    width: calc(50% - 1.5em);
  }
  .sec-business .business-list ul .business-list-item .txt-wrap .item-link ul li:nth-of-type(3n) {
    margin-right: 3em;
  }
  .sec-business .business-list ul .business-list-item .txt-wrap .item-link ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-business .business-list ul .business-list-item .txt-wrap .item-link ul li {
    width: 100%;
    margin-right: 0;
  }
  .sec-business .business-list ul .business-list-item .txt-wrap .item-link ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}
.sec-business .business-list ul .business-list-item .img-wrap {
  flex-shrink: 0;
  width: 30rem;
}
@media screen and (max-width: 1199px) {
  .sec-business .business-list ul .business-list-item .img-wrap {
    width: min(100%, 480px);
    margin: 0 auto;
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  .sec-business .business-list ul .business-list-item .img-wrap {
    margin-top: 2.4em;
    margin-bottom: 1em;
  }
}
.sec-business .business-list ul .business-list-item .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-business .slider-flowing-wrap {
  position: relative;
  z-index: 2;
  margin-top: 7.5rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 1199px) {
  .sec-business .slider-flowing-wrap {
    margin-top: 60px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-business .slider-flowing-wrap {
    margin-top: 48px;
  }
}
.sec-business .slider-flowing-wrap::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background-color: #fefefe;
}

.sec-recruit .sec-inner {
  position: relative;
}
.sec-recruit .sec-inner .txt-wrap {
  margin-top: 7.5rem;
}
@media screen and (max-width: 1199px) {
  .sec-recruit .sec-inner .txt-wrap {
    margin-top: 0;
  }
}
.sec-recruit .sec-inner .txt-wrap .sec-catch {
  margin-top: 2em;
}
.sec-recruit .sec-inner .txt-wrap .sec-link {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
}
.sec-recruit .sec-inner .txt-wrap .sec-link .__linkbtn01 {
  width: calc(50% - 0.3em);
  margin-top: 0.6em;
  margin-right: 0.6em;
}
.sec-recruit .sec-inner .txt-wrap .sec-link .__linkbtn01:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .sec-recruit .sec-inner .txt-wrap .sec-link .__linkbtn01 {
    width: 100%;
    margin-right: 0;
  }
}
.sec-recruit .sec-inner .txt-wrap .sec-link .__linkbtn01 a span.__txt {
  justify-content: space-between;
}
.sec-recruit .sec-inner .img-wrap {
  box-shadow: none;
}
@media screen and (max-width: 1199px) {
  .sec-recruit .sec-inner .img-wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit .sec-inner .img-wrap {
    display: block;
  }
}
.sec-recruit .sec-inner .img-wrap .img {
  width: 100%;
  height: 100%;
  box-shadow: 4px 4px 8px rgba(102, 102, 102, 0.1);
}
@media screen and (max-width: 1199px) {
  .sec-recruit .sec-inner .img-wrap .img.__main {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit .sec-inner .img-wrap .img.__main {
    width: 100%;
  }
}
.sec-recruit .sec-inner .img-wrap .img.__main img {
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
}
.sec-recruit .sec-inner .img-wrap .img.__sub {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 15rem;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 1199px) {
  .sec-recruit .sec-inner .img-wrap .img.__sub {
    position: relative;
    width: calc(50% - 2em);
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit .sec-inner .img-wrap .img.__sub {
    width: 100%;
    margin-top: 1em;
  }
}

.sec-company {
  color: #fff;
}
.sec-company .sec-ttl {
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .sec-company .sec-ttl {
    margin-top: -2em;
  }
}
@media screen and (max-width: 767px) {
  .sec-company .sec-ttl {
    margin-top: -1.6em;
    padding-left: 20px;
  }
}
.sec-company .sec-ttl .__large-en-txt {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #165c96;
  margin-top: -0.1em;
}
@media screen and (max-width: 991px) {
  .sec-company .sec-ttl .__large-en-txt {
    position: relative;
    margin-top: 0;
    text-align: end;
    margin-bottom: -0.48em;
    transform: translateY(0);
  }
}
.sec-company .flex-wrap {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .sec-company .flex-wrap {
    margin-top: 2em;
  }
}
.sec-company .flex-wrap .txt-wrap .link-list ul {
  margin-top: -1em;
}
@media screen and (max-width: 1199px) {
  .sec-company .flex-wrap .txt-wrap .link-list ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item {
  width: 100%;
  margin-top: 1.6em;
}
@media screen and (max-width: 1199px) {
  .sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item {
    width: calc(50% - 1.5em);
    margin-right: 3em;
  }
  .sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item {
    width: 100%;
    margin-right: 0;
    margin-top: 1em;
  }
}
.sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item a span.__txt {
  display: flex;
}
.sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item a span.__txt .num {
  letter-spacing: 0.1em;
  margin-right: 0.6em;
}
.sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item a span.__txt .name {
  display: block;
  font-size: max(1.6875rem, 1.25em);
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  .sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item a span.__txt .name {
    font-size: 1.125em;
  }
}
.sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item a span.__txt .name .__en {
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sec-company .flex-wrap .txt-wrap .link-list ul .link-list-item a span.__txt .name .__en {
    font-size: 0.8em;
  }
}

.sec-information {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec-information .sec-ttl {
    margin-top: -1.6em;
  }
}
.sec-information .sec-ttl .__large-en-txt {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -0.2em;
  color: #bbb;
  opacity: 0.2;
}
@media screen and (max-width: 991px) {
  .sec-information .sec-ttl .__large-en-txt {
    text-align: center;
    position: relative;
    margin-bottom: -0.4em;
    left: initial;
    transform: translateX(0);
  }
}
.sec-information .information-list {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .sec-information .information-list {
    margin-top: 2em;
  }
}
.sec-information .information-list ul {
  margin-top: -2em;
}
.sec-information .information-list ul .information-list-item {
  width: calc(33.3333333333% - 1.3333333333em);
  margin-right: 2em;
  margin-top: 2em;
}
.sec-information .information-list ul .information-list-item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .sec-information .information-list ul .information-list-item {
    width: 100%;
    margin-right: 0;
  }
}
.sec-information .sec-link {
  margin-top: 3em;
}
.sec-information .sec-link .__linkbtn01 {
  margin: 0 auto;
}/*# sourceMappingURL=index.css.map */