@charset "UTF-8";
.txt-h2 {
  color: #2A2F4E;
  display: flex;
  align-items: center;
  gap: 1.8229166667vw;
}
.txt-h2 .txt-e {
  line-height: 1;
  display: block;
  color: #223CE5;
  padding-top: 0.15vw;
}

.txt-a {
  display: flex;
  background-image: linear-gradient(90deg, #7285ee, #3e55d8 50%, #142fc6);
  border-radius: 82px;
  padding: 0.8vw 1.6vw;
  padding-right: 3.5vw;
  box-sizing: border-box;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: background-color 1s, color 1s;
}
.txt-a svg {
  display: flex;
  width: 1vw;
  height: 1.25vw;
  position: absolute;
  right: 1.6666666667vw;
  top: 50%;
  transform: translateY(-50%);
}
.txt-a svg path {
  transition: 1s;
}
.txt-a:hover {
  background: #ffffff;
  color: #223CE5;
  border: solid 2px #223CE5;
}
.txt-a:hover svg path {
  fill: #223CE5;
}

@media screen and (max-width: 767px) {
  .txt-h2 {
    font-size: 24px;
    gap: 5px;
  }
  .txt-h2 .txt-e {
    font-size: 14px;
    letter-spacing: 0;
  }
  .txt-a {
    margin-top: 40px;
    font-size: 14px;
    padding: 8px 20px;
    padding-right: 40px;
  }
  .txt-a svg {
    width: 18px;
    height: 16px;
    right: 10px;
  }
}
.video_bg {
  width: 100%;
  height: 100svh;
  position: fixed;
  z-index: -1;
}
.video_bg:before {
    content: '';
    background: rgb(0 0 0 / 25%);


    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.video_bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*==========================================================================
section#mv_area
========================================================================== */
section#mv_area {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 75svh;
  /* スクロールダウンの位置 */
  /* 線のアニメーション */
}
section#mv_area .img-box {
  position: relative;
  width: 100%;
  height: 100svh;
  display: none;
}
section#mv_area .img-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#mv_area .img-box::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section#mv_area .txt-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
section#mv_area .txt-box .txt-h1 {
  color: #ffffff;
  line-height: 1.5em;
  white-space: pre-line;
  opacity: 0;
}
section#mv_area .txt-box .txt-h1.active {
  opacity: 1;
}
section#mv_area .txt-box .txt-h1 span {
  display: inline-block;
  opacity: 0;
  line-height: 1.5em;
}
section#mv_area .txt-box .txt-h1.active span {
  -webkit-animation: fadeInLeft 0.5s forwards;
          animation: fadeInLeft 0.5s forwards;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
section#mv_area .txt-box .txt-p {
  margin-top: 0.5vw;
  color: #ffffff;
  line-height: 1.5em;
  opacity: 0;
  letter-spacing: 0.3vw;
}
section#mv_area .txt-box .txt-p.active {
  -webkit-animation: fadeInUp 1s forwards;
          animation: fadeInUp 1s forwards;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section#mv_area .scroll {
  position: absolute;
  right: 2vw;
  bottom: -3vw;
  writing-mode: sideways-lr;
  /* 線のアニメーション部分 */
  /* 線の背景色 */
}
section#mv_area .scroll .txt {
  display: block;
  color: #ffffff;
  font-size: 0.95vw;
}
section#mv_area .scroll .line::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #223CE5;
  background: linear-gradient(0deg, #7285ee, #3e55d8 50%, #142fc6);
  top: -2vw;
  content: "";
  height: 7vw;
  left: -2vw;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
  z-index: 2;
}
section#mv_area .scroll .line::after {
  background-color: #ffffff;
  top: -2vw;
  content: "";
  height: 7vw;
  left: -2vw;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 767px) {
  section#mv_area {
    height: 82svh;
    /* スクロールダウンの位置 */
  }
  section#mv_area .txt-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }
  section#mv_area .txt-box .txt-h1 {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 1.8em;

    /* text-align: center; */
  }
  section#mv_area .txt-box .txt-p {
    font-size: 16px;
        line-height: 2em;

    /* text-align: center; */


    

  }
  section#mv_area .scroll {
    position: absolute;
    right: 20px;
    bottom: 10px;
    /* 線のアニメーション部分 */
    /* 線の背景色 */
  }
  section#mv_area .scroll .txt {
    font-size: 14px;
  }
  section#mv_area .scroll .line::before {
    -webkit-animation: scroll 2s infinite;
            animation: scroll 2s infinite;
    background-color: #223CE5;
    top: -20px;
    content: "";
    height: 80px;
    left: -25px;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
  }
  section#mv_area .scroll .line::after {
    background-color: #ffffff;
    top: -20px;
    content: "";
    height: 80px;
    left: -25px;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
}
/*==========================================================================
section#company_area
========================================================================== */
section#company_area {
  position: relative;
  /* border-left: 4px solid #ffc107; */
}
section#company_area .works-update-notice {
  position: absolute;
  z-index: 2;
  top: 14vw;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  text-align: center;
}
section#company_area .works-update-notice a {
  background: #ffffff;
  padding: 0.78125vw 1vw;
  border-radius: 3.125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #223CE5;
}
section#company_area .inner {
  background: url(../img/top_company_bg002.webp) top no-repeat;
  background-size: cover;
  padding-top: 19.5833333333vw;
  padding-bottom: 19.1666666667vw;
  box-sizing: border-box;
  position: relative;
}
section#company_area .box {
  position: relative;
  width: 87.5%;
  margin: 0 auto;
  gap: 7.65625vw;
  z-index: 2;
  align-items: center;
}
section#company_area .img-box {
  width: 43.8%;
  height: 25vw;
  z-index: 1;
}
section#company_area .txt-box {
  width: 50%;
  box-sizing: border-box;
}
section#company_area .txt-box .txt-h2 {
  color: #ffffff;
  margin-bottom: 1vw;
}
section#company_area .txt-box .txt-h2 .txt-e {
  color: #ffffff;
}
section#company_area .txt-box .txt-p {
  color: #ffffff;
  line-height: 1.8em;
  letter-spacing: 0.3vw;
}
section#company_area .txt-box .txt-a {
  margin: 0;
  margin-top: 1.8vw;
  border: solid 2px #ffffff;
}
section#company_area .txt-box .txt-a:hover {
  border-color: #223CE5;
}
section#company_area .endless_scroll {
  position: absolute;
  bottom: 1vw;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
section#company_area .endless_scroll .slider {
  display: flex;
  gap: 7vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: endless-scroll 120s linear infinite;
          animation: endless-scroll 120s linear infinite;
}
section#company_area .endless_scroll .slider .endless_txt {
  color: #f4f4f4;
  height: 13vw;
  font-size: 13vw;
  font-weight: 900;
  white-space: nowrap;
  opacity: 1;
  display: flex;
  line-height: 1;
  font-family: "font-Oswm", "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5vw;
}

@-webkit-keyframes endless-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes endless-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  section#company_area .works-update-notice {
    width: 70%;
    top: 120px;
    left: 0;
    transform: initial;
    z-index: 3;
  }
  section#company_area .works-update-notice a {
    font-size: 10px;
    border-radius: 0;
    padding: 5px 0;
  }
  section#company_area .works-update-notice a span {
    font-size: 10px;
  }
  section#company_area .inner {
    padding-top: 120px;
    padding-bottom: 70px;
    background: url(../img/top_company_bg_sp.svg) top no-repeat;
    background-size: cover;
  }
  section#company_area .box {
    width: 100%;
  }
  section#company_area .img-box {
    width: 70%;
    height: 65vw;
  }
  section#company_area .txt-box {
    position: relative;
    width: 96%;
    padding-top: 50px;
    margin-left: auto;
  }
  section#company_area .txt-box .txt-p {
    font-size: 14px;
  }
  section#company_area .txt-box .txt-a {
    margin-top: 30px;
  }
  section#company_area .endless_scroll {
    position: absolute;
    bottom: initial;
    top: 70vw;
  }
  section#company_area .endless_scroll .slider {
    gap: 30px;
    -webkit-animation: endless-scroll 60s linear infinite;
            animation: endless-scroll 60s linear infinite;
  }
  section#company_area .endless_scroll .slider .endless_txt {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 140px;
    font-size: 140px;
    letter-spacing: 1px;
    opacity: 0.85;
  }
}
/*==========================================================================
section#service_area
========================================================================== */
section#service_area {
  background: #ffffff;
}
section#service_area .inner {
  padding-top: 7.03125vw;
}
section#service_area .ttl-box {
  justify-content: space-between;
  align-items: center;
}
section#service_area .list-box {
  flex-wrap: wrap;
  gap: 0.4vw 0.5%;
  margin-top: 6.7708333333vw;
}
section#service_area .item-box {
  position: relative;
  display: block;
  width: 33%;
  overflow: clip;
  display: flex;
}
section#service_area .item-box img {
  width: 100%;
  height: 20vw;
}
section#service_area .item-box .txt-n {
  position: absolute;
  left: 1vw;
  top: 1vw;
  color: #ffffff;
  background: rgba(34, 60, 229, 0.25);
  padding: 0.5vw 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
section#service_area .item-box .txt-box {
  padding: 1.3020833333vw;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(36, 62, 229, 0.22);
  width: 100%;
  color: #ffffff;
  text-align: center;
}
section#service_area .item-box .txt-box .txt-h3 {
  margin-bottom: 1vw;
}
section#service_area .item-box:hover img {
  transform: scale(1.5);
  transition: 1s;
}

@media screen and (max-width: 767px) {
  section#service_area .inner {
    padding-top: 50px;
  }
  section#service_area .ttl-box {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  section#service_area .ttl-box .txt-a {
    margin: 0;
  }
  section#service_area .list-box {
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
  }
  section#service_area .item-box {
    width: 100%;
  }
  section#service_area .item-box img {
    width: 100%;
    height: 58vw;
  }
  section#service_area .item-box .txt-n {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 5px 10px;
    font-size: 24px;
  }
  section#service_area .item-box .txt-box {
    padding: 20px 0;
  }
  section#service_area .item-box .txt-box .txt-h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  section#service_area .item-box .txt-box .txt-p {
    font-size: 14px;
  }
  section#service_area .item-box:hover img {
    transform: scale(1.5);
    transition: 1s;
  }
}
/*==========================================================================
section#products_area
========================================================================== */
section#products_area {
  position: relative;
  z-index: 1;
  background: #ffffff;
}
section#products_area .bg {
  position: absolute;
  background: url(../img/bg_water.webp) center no-repeat;
  width: 100%;
  height: 56vw;
  left: 0;
  top: 8vw;
  z-index: -1;
  opacity: 0.8;
}
section#products_area .inner {
  padding-top: 7.03125vw;
}
section#products_area .ttl-box {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section#products_area .ttl-box .txt-p {
  width: 100%;
  order: 3;
  margin-top: 0.8333333333vw;
}
section#products_area .ttl-box .txt-a {
  order: 2;
}
@media screen and (min-width: 768px) {
  section#products_area .products-slider {
    width: 90%;
    margin: 0 auto;
  }
  section#products_area .products-slider .arrows {
    display: none;
  }
  section#products_area .products-slider .swiper-wrapper {
    margin-top: 6.7708333333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#products_area .products-slider .swiper-wrapper .swiper-slide {
    width: 31% !important;
  }
  section#products_area .products-slider .swiper-wrapper .item-box {
    display: block;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .plogo {
    gap: 1vw;
    align-items: center;
    justify-content: center;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .plogo img {
    width: auto;
    height: 1.8vw;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .img-box {
    width: 100%;
    height: 30vw;
    margin-top: 1.5625vw;
    overflow: clip;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .txt-h3 {
    box-sizing: border-box;
    background-image: linear-gradient(90deg, #7285ee, #3e55d8 50%, #142fc6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.82vw;
    transition: 1s;
  }
  section#products_area .products-slider .swiper-wrapper .item-box:hover .img-box img {
    transform: scale(1.2);
    transition: 1s;
  }
  section#products_area .products-slider .swiper-wrapper .item-box:hover .txt-h3 {
    background: #ffffff;
    color: #223CE5;
  }
}

@media screen and (max-width: 767px) {
  section#products_area {
    position: relative;
  }
  section#products_area .bg {
    position: absolute;
    background: url(../img/bg_water_sp.webp) center no-repeat;
    width: 100%;
    height: 80vw;
    left: 0;
    top: initial;
    bottom: 0;
    z-index: -1;
  }
  section#products_area .inner {
    padding-top: 50px;
  }
  section#products_area .ttl-box {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    display: flex;
  }
  section#products_area .ttl-box .txt-p {
    margin-top: 10px;
    font-size: 14px;
    order: 3;
  }
  section#products_area .ttl-box .txt-p br {
    display: none;
  }
  section#products_area .ttl-box .txt-a {
    order: 2;
    margin: 0;
  }
  section#products_area .products-slider {
    margin-top: 40px;
    width: 90%;
    overflow: initial;
  }
  section#products_area .products-slider .swiper-wrapper .item-box {
    display: block;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .plogo {
    gap: 1vw;
    text-align: center;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .plogo img {
    width: auto;
    height: 18px;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .img-box {
    width: 100%;
    height: 84vw;
    margin-top: 10px;
    overflow: clip;
  }
  section#products_area .products-slider .swiper-wrapper .item-box .txt-h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    font-size: 14px;
    transition: 1s;
    background: #223CE5;
    color: #ffffff;
  }
}
/*==========================================================================
section#works_area
========================================================================== */
section#works_area {
  background: #ffffff;
  position: relative;
  z-index: 1;
}
section#works_area .inner {
  padding-top: 7.03125vw;
}
section#works_area .ttl-box {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5.2083333333vw;
}
section#works_area .ttl-box .links {
  gap: 2vw;
}
section#works_area .ttl-box .links .txt-l {
  color: #2A2F4E;
  border-bottom: solid 1px #2A2F4E;
}
section#works_area .ttl-box .links .txt-l:hover {
  transition: 0.5s;
  color: #223CE5;
  border-color: #223CE5;
}
section#works_area .ttl-box .txt-a {
  order: 2;
}
section#works_area .slider-box .simply-scroll-container {
  position: relative;
}
section#works_area .slider-box .simply-scroll-container:nth-child(n+2) {
  margin-top: 2.5vw;
}
section#works_area .slider-box .simply-scroll-clip {
  position: relative;
  overflow: hidden;
}
section#works_area .slider-box .simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
section#works_area .slider-box .simply-scroll-clip > .simply-scroll-list {
    display: flex;
  gap: 1.5vw;
}
section#works_area .slider-box #simplyScroll {
  display: flex;
  gap: 1.5vw;
}
section#works_area .slider-box #simplyScroll-lr {
  display: flex;
  gap: 1.5vw;
}
section#works_area .slider-box .simply-scroll-list li {
  list-style: none !important;
  float: left;
  width: 20vw;
  margin: 0;
  padding: 0;
}
section#works_area .slider-box .simply-scroll-list li > a {
  box-sizing: initial;
  display: block;
  overflow: hidden;
  position: relative;
  background: #FFF;
  width: 18.5vw;
  margin: 0 auto;
}
section#works_area .slider-box .simply-scroll-list li > a .img-box {
  overflow: clip;
  width: 100%;
  height: 13vw;
  position: relative;
}
section#works_area .slider-box .simply-scroll-list li > a .img-box img {
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease; /* アニメーションのスムーズさを設定 */
}
section#works_area .slider-box .simply-scroll-list li > a .img-box .more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.8vw;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-image: linear-gradient(90deg, #7285EE, #4158D9 50%, #142FC6);
  padding: 0.8vw 1.2vw;
  font-size: 0.8vw;
  border-radius: 40px;
  opacity: 0;
  transition: 1s;
}
section#works_area .slider-box .simply-scroll-list li > a .img-box .more svg {
  display: flex;
  width: 1vw;
  height: 1vw;
}
section#works_area .slider-box .simply-scroll-list li > a .txt-h3 {
  margin-top: 0.5vw;
  text-align: center;
  color: #2A2F4E;
}
section#works_area .slider-box .simply-scroll-list li > a:hover .img-box img {
  filter: blur(5px); /* ぼかしを適用 */
  transform: scale(1); /* 比率を0.9に縮小 */
}
section#works_area .slider-box .simply-scroll-list li > a:hover .img-box .more {
  opacity: 1;
}
section#works_area .slider-box .simply-scroll-list li > a:hover .txt-h3 {
  color: #223CE5;
}

@media screen and (max-width: 767px) {
  section#works_area .inner {
    padding-top: 50px;
  }
  section#works_area .ttl-box {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    display: flex;
  }
  section#works_area .ttl-box .links {
    margin-top: 20px;
    gap: 12px 20px;
    display: flex;
    flex-wrap: wrap;
    order: 3;
  }
  section#works_area .ttl-box .links .txt-l {
    font-size: 14px;
  }
  section#works_area .ttl-box .txt-a {
    order: 2;
    margin-top: 0;
  }

section#works_area .slider-box {
  padding-bottom: 10px;
}

section#works_area .slider-box::after {
  content: '';
  background: #ffffff;
  width: 100%;height: 15px;
position: absolute;
bottom: -10px;


  left: 0;
  
  
}
section#works_area .slider-box .simply-scroll-clip > .simply-scroll-list {

  gap: 12px;
}
section#works_area .slider-box #simplyScroll {
  gap: 12px;
}
section#works_area .slider-box #simplyScroll-lr {
  gap: 12px;
}
  section#works_area .slider-box .simply-scroll-container:nth-child(n+2) {
    margin-top: 20px;
  }
  section#works_area .slider-box .simply-scroll-list li {
    width: 220px;
  }
  section#works_area .slider-box .simply-scroll-list li > a {
    width: 205px;
  }
  section#works_area .slider-box .simply-scroll-list li > a .img-box {
    overflow: clip;
    width: 100%;
    height: 170px;
    position: relative;
  }
  section#works_area .slider-box .simply-scroll-list li > a .img-box img {
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease; /* アニメーションのスムーズさを設定 */
  }
  section#works_area .slider-box .simply-scroll-list li > a .img-box .more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.8vw;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #917F46;
    padding: 0.5vw 1vw;
    font-size: 0.8vw;
    border-radius: 40px;
    opacity: 0;
    transition: 1s;
  }
  section#works_area .slider-box .simply-scroll-list li > a .img-box .more svg {
    display: flex;
    width: 1vw;
    height: 1vw;
  }
  section#works_area .slider-box .simply-scroll-list li > a .txt-h3 {
    margin-top: 5px;
    text-align: start;
    font-size: 12px;
  }
  section#works_area .slider-box .simply-scroll-list li > a:hover .img-box img {
    filter: blur(5px); /* ぼかしを適用 */
    transform: scale(1); /* 比率を0.9に縮小 */
  }
  section#works_area .slider-box .simply-scroll-list li > a:hover .img-box .more {
    opacity: 1;
  }
  section#works_area .slider-box .simply-scroll-list li > a:hover .txt-h3 {
    color: #223CE5;
  }
}
/*==========================================================================
section#recruit_area
========================================================================== */
section#recruit_area {
  padding-top: 7.03125vw;
  background: #ffffff;
}
section#recruit_area .inner {
  background: url(../img/bg_sky001.webp) no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 7.03125vw;
  padding-bottom: 13.0208333333vw;
}
section#recruit_area .box {
  justify-content: space-between;
  align-items: flex-end;
}
section#recruit_area .ttl-box {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-flow: column;
  margin: 0;
}
section#recruit_area .ttl-box .txt-p {
  margin-bottom: 3.90625vw;
  color: #ffffff;
}
section#recruit_area .ttl-box .txt-h2 {
  background: #ffffff;
  color: #223CE5;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 16.40625vw;
  height: 16.40625vw;
  border-radius: 0.5vw;
}
section#recruit_area .slider-box {
  width: 61%;
}
section#recruit_area .slider-box .swiper {
  height: 30.7291666667vw;
  padding-top: 2vw;
}
section#recruit_area .slider-box .swiper .swiper-slide a {
  width: 100%;
  height: 100%;
  position: relative;
}
section#recruit_area .slider-box .swiper .swiper-slide a .slide-img {
  width: 100%;
  height: 100%;
}
section#recruit_area .slider-box .swiper .swiper-slide a img {
  border-radius: 0.5vw;
}
section#recruit_area .slider-box .swiper .swiper-slide a .txt-h3 {
  position: absolute;
  bottom: 3vw;
  right: 0;
  background: #ffffff;
  color: #223CE5;
  width: 72%;
  padding: 0.25vw 1vw;
  box-sizing: border-box;
  text-align: center;
}
section#recruit_area .slider-box .swiper .swiper-pagination {
  position: absolute;
  top: 0;
  right: 0;
  gap: 0.8vw;
  display: flex;
  justify-content: flex-end;
}
section#recruit_area .slider-box .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.7vw;
  height: 0.7vw;
  opacity: 1;
  background: #223CE5;
}
section#recruit_area .slider-box .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
}
section#recruit_area .txt-a {
  margin: 0;
  margin-top: 5.2083333333vw;
  background-image: linear-gradient(90deg, #7285ee, #3e55d8 50%, #142fc6);
  transition: background-color 1s, color 1s;
  margin-left: auto;
  border: solid 2px #ffffff;
}
section#recruit_area .txt-a:hover {
  background: #ffffff;
  border-color: #223CE5;
  color: #223CE5;
}

@media screen and (max-width: 767px) {
  section#recruit_area {
    padding-top: 50px;
  }
  section#recruit_area .inner {
    padding-top: 50px;
    padding-bottom: 70px;
    background-size: 200%;
  }
  section#recruit_area .box {
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
    width: 96%;
    margin-right: 0;
  }
  section#recruit_area .ttl-box {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-flow: column;
    display: flex;
    margin: 0;
    width: 42%;
  }
  section#recruit_area .ttl-box .txt-p {
    margin-bottom: 20px;
    font-size: 24px;
  }
  section#recruit_area .ttl-box .txt-h2 {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: initial;
    max-width: 170px;
    width: 100%;
    border-radius: 5px;
    padding: 12px;
    box-sizing: border-box;
  }
  section#recruit_area .slider-box {
    width: 52%;
    margin-left: auto;
  }
  section#recruit_area .slider-box .swiper {
    height: 65vw;
    padding-top: 20px;
  }
  section#recruit_area .slider-box .swiper .swiper-slide a img {
    border-radius: 5px;
  }
  section#recruit_area .slider-box .swiper .swiper-slide a .txt-h3 {
    position: absolute;
    bottom: 20px;
    right: 0;
        width: 90%;
        padding: 3px 5px;
        font-size: 10px;


  }
  section#recruit_area .slider-box .swiper .swiper-pagination {
    gap: 5px;
  }
  section#recruit_area .slider-box .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  section#recruit_area .txt-a {
    margin: 0;
    margin-top: 40px;
    margin-left: auto;
  }
}
/*==========================================================================
section#sdgs_area
========================================================================== */
section#sdgs_area {
  padding-top: 2vw;
  position: relative;
  margin-top: -13.0208333333vw;
}
section#sdgs_area .inner {
  padding-top: 13.0208333333vw;
  background: url(../img/sdgs_bg.webp) no-repeat;
  background-size: 100%;
  background-position: top;
}
section#sdgs_area .ttl-box {
  align-items: center;
  gap: 7vw;
  margin-bottom: 5.2083333333vw;
}
section#sdgs_area .ttl-box img {
  width: auto;
  height: 5vw;
}
section#sdgs_area .box {
  gap: 5%;
}
section#sdgs_area .img-box {
  width: 46%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
section#sdgs_area .txt-box {
  width: 49%;
}
section#sdgs_area .txt-box .txt-p {
  line-height: 1.8em;
}
section#sdgs_area .txt-box .txt-a {
  margin-top: 3.75vw;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  section#sdgs_area {
    padding-top: 30px;
    margin-top: -60px;
  }
  section#sdgs_area .inner {
    padding-top: 60px;
    padding-bottom: 0;
    position: relative;
  }
  section#sdgs_area .inner::before {
    content: "";
    background: #ffffff;
    width: 100%;
    height: calc(100% - 60px);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  section#sdgs_area .ttl-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
  }
  section#sdgs_area .ttl-box img {
    width: auto;
    height: 28px;
  }
  section#sdgs_area .box {
    gap: 0;
  }
  section#sdgs_area .img-box {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  section#sdgs_area .txt-box {
    width: 100%;
    margin-top: 30px;
  }
  section#sdgs_area .txt-box .txt-p {
    line-height: 1.8em;
    font-size: 14px;
  }
  section#sdgs_area .txt-box .txt-a {
    margin-top: 40px;
  }
}
/*==========================================================================
section#news_area
========================================================================== */
section#news_area {
  background: #ffffff;
}
section#news_area .inner {
  padding-top: 7.03125vw;
  padding-bottom: 7.03125vw;
}
section#news_area .box {
  justify-content: space-between;
}
section#news_area .img-box {
  width: 44%;
  height: 25vw;
}
section#news_area .img-box img {
  -o-object-position: left;
     object-position: left;
}
section#news_area .txt-box {
  width: 50%;
}
section#news_area .txt-box .ttl-box {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.1666666667vw;
}
section#news_area .txt-box .ttl-box .txt-a {
  margin: 0;
}
section#news_area .txt-box .txt-p {
  line-height: 1.8em;
}
section#news_area .txt-box .list-box {
  border-top: solid 2px #223CE5;
  border-bottom: solid 2px #223CE5;
}
section#news_area .txt-box .list-box li a {
  border-bottom: solid 1px #223CE5;
  display: flex;
  align-items: center;
  padding: 1.5vw 0.5vw;
  gap: 6%;
}
section#news_area .txt-box .list-box li a .txt-d {
  color: #2A2F4E;
  transition: 0.8s;
}
section#news_area .txt-box .list-box li a .txt-h3 {
  color: #2A2F4E;
  transition: 0.8s;
}
section#news_area .txt-box .list-box li:last-child a {
  border: none;
}
section#news_area .txt-box .list-box li a:hover .txt-d {
  color: #223CE5;
}
section#news_area .txt-box .list-box li a:hover .txt-h3 {
  color: #223CE5;
}

@media screen and (max-width: 767px) {
  section#news_area .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  section#news_area .box {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
  }
  section#news_area .img-box {
    order: 1;
    width: 100%;
    height: 55vw;
    margin-bottom: 30px;
  }
  section#news_area .txt-box {
    width: 100%;
    order: 2;
  }
  section#news_area .txt-box .ttl-box {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    display: flex;
  }
  section#news_area .txt-box .ttl-box .txt-a {
    margin: 0;
  }
  section#news_area .txt-box .txt-p {
    line-height: 1.8em;
  }
  section#news_area .txt-box .list-box {
    border-top: solid 2px #223CE5;
    border-bottom: solid 2px #223CE5;
  }
  section#news_area .txt-box .list-box li a {
    border-bottom: solid 1px #223CE5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 8px;
    gap: 5px;
  }
  section#news_area .txt-box .list-box li a .txt-d {
    font-size: 12px;
  }
  section#news_area .txt-box .list-box li a .txt-h3 {
    font-size: 14px;
  }
  section#news_area .txt-box .list-box li:last-child a {
    border: none;
  }
  section#news_area .txt-box .list-box li a:hover .txt-d {
    color: #223CE5;
  }
  section#news_area .txt-box .list-box li a:hover .txt-h3 {
    color: #223CE5;
  }
}
/*==========================================================================
section#contact_area
========================================================================== */
section#contact_area {
  position: relative;
}
section#contact_area .bg {
  position: absolute;
  z-index: -1;
  background: url(../img/contact_bg003.webp) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
section#contact_area .inner {
  padding-top: 10vw;
  padding-bottom: 10vw;
}
section#contact_area .box {
  justify-content: center;
  gap: 7.03125vw;
}
section#contact_area .line {
  width: 2px;
  height: 9vw;
  background: #ffffff;
}
section#contact_area .tel-box {
  color: #ffffff;
  text-align: center;
}
section#contact_area .tel-box .txt-h3 {
  margin-bottom: 1.5vw;
}
section#contact_area .tel-box .txt-t, section#contact_area .tel-box .txt-f {
  color: #ffffff;
  letter-spacing: 0.1vw;
  line-height: 1;
  transition: 0.8s;
  display: block;
}
section#contact_area .tel-box .txt-t {
  margin-bottom: 0.5vw;
}
section#contact_area .tel-box .txt-t:hover {
  color: #223CE5;
}
section#contact_area .tel-box .txt-o {
  margin-top: 1vw;
}
section#contact_area .form-box {
  color: #ffffff;
  text-align: center;
}
section#contact_area .form-box .txt-h3 {
  margin-bottom: 1.5vw;
}

@media screen and (max-width: 767px) {
  section#contact_area {
    position: relative;
  }
  section#contact_area .bg {
    position: absolute;
    z-index: -1;
    background: url(../img/contact_bg003.webp) center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  section#contact_area .inner {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  section#contact_area .box {
    justify-content: center;
    gap: 0;
  }
  section#contact_area .line {
    width: 100%;
    height: 2px;
    margin: 30px auto;
  }
  section#contact_area .tel-box {
    width: 100%;
  }
  section#contact_area .tel-box .txt-h3 {
    margin-bottom: 30px;
    font-size: 20px;
  }
  section#contact_area .tel-box .txt-t, section#contact_area .tel-box .txt-f {
    font-size: 28px;
    letter-spacing: normal;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 10px;
  }
  section#contact_area .tel-box .txt-t span, section#contact_area .tel-box .txt-f span {
    font-size: 16px;
  }
  section#contact_area .tel-box .txt-t {
    margin-bottom: 10px;
  }
  section#contact_area .tel-box .txt-o {
    margin-top: 15px;
    font-size: 14px;
  }
  section#contact_area .form-box {
    width: 100%;
  }
  section#contact_area .form-box .txt-h3 {
    margin-bottom: 0;
    font-size: 20px;
  }
  section#contact_area .form-box .txt-a {
    margin: 30px auto 0;
    padding: 15px 40px;
    padding-right: 60px;
  }
}
/*# sourceMappingURL=top.css.map */