@charset "UTF-8";
@keyframes h_slide {
  100% {
    transform: translate(-100%);
  }
}
#t_fv {
  position: relative;
  background: url("../img/t_fv-bg.png") center center no-repeat;
  background-size: cover;
  background-position: center;
}
#t_fv .slide_container {
  height: 1080px;
  width: 1145px;
  overflow: hidden;
  margin: auto;
  margin-right: -110px;
}
@media screen and (max-width: 1920px) {
  #t_fv .slide_container {
    height: 1080rem;
    width: 1145rem;
    margin-right: -110rem;
  }
}
#t_fv .slide_container .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
}
@media screen and (max-width: 1920px) {
  #t_fv .slide_container .inner {
    gap: 24rem;
  }
}
#t_fv .slide_container .inner .column {
  width: 410px;
  rotate: 15deg;
}
@media screen and (max-width: 1920px) {
  #t_fv .slide_container .inner .column {
    width: 410rem;
  }
}
#t_fv .slide_container .inner .column .wrapper img {
  padding: 3px 0;
}
#t_fv .slide_container .inner .column.slide_up-to-down .wrapper {
  animation: slide_down 15s linear infinite;
}
#t_fv .slide_container .inner .column.slide_down-to-up .wrapper {
  animation: slide_top 15s linear infinite;
}
#t_fv .text {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 70px;
  bottom: 0;
  margin: auto;
  padding-top: 120px;
}
@media screen and (max-width: 1920px) {
  #t_fv .text {
    left: 70rem;
    padding-top: 120rem;
  }
}
@media screen and (max-width: 768px) {
  #t_fv .text {
    left: 20rem;
    padding-top: 80rem;
  }
}
#t_fv .text h4 {
  letter-spacing: 2px;
}
#t_fv .text h2 {
  color: #3CA4EB;
  line-height: 1.5;
  letter-spacing: 5px;
  margin-top: 30px;
}
@media screen and (max-width: 1920px) {
  #t_fv .text h2 {
    margin-top: 30rem;
  }
}
#t_fv .text p.italic {
  margin-top: 130px;
  background: linear-gradient(257.03deg, #65D7FF 9.61%, #008AD2 50.58%, #204483 77.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-style: italic;
  letter-spacing: 10px;
}
@media screen and (max-width: 1920px) {
  #t_fv .text p.italic {
    margin-top: 130rem;
  }
}
@media screen and (max-width: 768px) {
  #t_fv .text p.italic {
    letter-spacing: 5px;
    margin-top: 300rem;
  }
}
#t_fv .man {
  width: 1253px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1920px) {
  #t_fv .man {
    width: 1253rem;
  }
}
@media screen and (max-width: 768px) {
  #t_fv .man {
    width: 100%;
  }
}

@keyframes slide_top {
  100% {
    transform: translateY(100%);
  }
}
@keyframes slide_down {
  100% {
    transform: translateY(-100%);
  }
}
.t_about {
  padding: 100px;
  padding-bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #3CA4EB;
  color: #fff;
}
@media screen and (max-width: 1920px) {
  .t_about {
    padding: 100rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .t_about {
    padding: 80rem 40rem;
    flex-direction: column;
  }
}
.t_about .left {
  position: relative;
  width: 940px;
}
@media screen and (max-width: 1920px) {
  .t_about .left {
    width: 940rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .left {
    width: 100%;
  }
}
.t_about .left .video {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  position: relative;
  /* ビデオコントロールのスタイル */
}
@media screen and (max-width: 1920px) {
  .t_about .left .video {
    padding: 30rem;
  }
}
.t_about .left .video video {
  width: 100%;
  height: auto;
}
.t_about .left .video .video-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  border-radius: 25px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 1920px) {
  .t_about .left .video .video-controls {
    bottom: 20rem;
    left: 20rem;
    right: 20rem;
    padding: 10rem 15rem;
    gap: 15rem;
    border-radius: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .left .video .video-controls {
    bottom: 15rem;
    left: 15rem;
    right: 15rem;
    padding: 8rem 12rem;
    gap: 10rem;
  }
}
.t_about .left .video .volume-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .t_about .left .video .volume-btn {
    padding: 5rem;
    border-radius: 50%;
  }
}
.t_about .left .video .volume-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.t_about .left .video .volume-btn svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1920px) {
  .t_about .left .video .volume-btn svg {
    width: 20rem;
    height: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .left .video .volume-btn svg {
    width: 18rem;
    height: 18rem;
  }
}
.t_about .left .video .progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1920px) {
  .t_about .left .video .progress-bar {
    height: 6rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .left .video .progress-bar {
    height: 5rem;
  }
}
.t_about .left .video .progress-fill {
  height: 100%;
  background: #3CA4EB;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
}
@media screen and (max-width: 1920px) {
  .t_about .left .video .progress-fill {
    border-radius: 3rem;
  }
}
.t_about .left .video .progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1920px) {
  .t_about .left .video .progress-handle {
    width: 16rem;
    height: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .left .video .progress-handle {
    width: 14rem;
    height: 14rem;
  }
}
.t_about .left .video .progress-handle:active {
  cursor: grabbing;
}
.t_about .left .add {
  position: absolute;
  z-index: -1;
  top: 375px;
  left: -192px;
  width: 600px;
  rotate: 2.85deg;
}
@media screen and (max-width: 1920px) {
  .t_about .left .add {
    width: 600rem;
    top: 375rem;
    left: -192rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .left .add {
    width: 500rem;
    top: 250rem;
    left: -150rem;
  }
}
.t_about .left .info-num {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 1920px) {
  .t_about .left .info-num {
    margin-top: 60rem;
    gap: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .left .info-num {
    grid-template-columns: 1fr;
    gap: 40rem;
    margin-top: 100rem;
  }
}
.t_about .left .info-num .item {
  border-radius: 15px;
  border: 5px solid #3CA4EB;
  background-color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .t_about .left .info-num .item {
    padding: 40rem 20rem;
    border-radius: 15rem;
    border: 5rem solid #3CA4EB;
  }
}
.t_about .left .info-num .item:nth-child(2) .info {
  align-items: flex-end;
}
.t_about .left .info-num .item:nth-child(2) .info .txt {
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .t_about .left .info-num .item:nth-child(2) .info .txt {
    margin-bottom: 10rem;
  }
}
.t_about .left .info-num .item h5 {
  color: #000;
  text-align: center;
}
.t_about .left .info-num .item .info {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .t_about .left .info-num .item .info {
    justify-content: flex-end;
  }
}
.t_about .left .info-num .item .info .num {
  background: linear-gradient(257.03deg, #65D7FF 9.61%, #008AD2 50.58%, #204483 77.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.1s ease;
}
.t_about .left .info-num .item .info .num.is-counting {
  animation: numberGlow 0.5s ease-out;
}
.t_about .left .info-num .item .info .txt {
  color: #3CA4EB;
  line-height: 1;
}
.t_about .right {
  width: calc(100% - 990px);
  padding-right: 150px;
}
@media screen and (max-width: 1920px) {
  .t_about .right {
    width: calc(100% - 990rem);
    padding-right: 150rem;
  }
}
@media screen and (max-width: 768px) {
  .t_about .right {
    width: 100%;
    padding-right: 0;
    margin-top: 80rem;
  }
}
.t_about .right .r-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.t_about .right .r-top .more {
  width: 197px;
  height: 197px;
  border-radius: 999px;
  border: 3px solid #fff;
  background-color: #3CA4EB;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .t_about .right .r-top .more {
    width: 197rem;
    height: 197rem;
  }
}
.t_about .right .r-top .more:hover {
  background-color: #fff;
  color: #3CA4EB;
}
.t_about .right .r-top p.f-64 {
  writing-mode: vertical-rl;
  line-height: 1.5;
  letter-spacing: 6px;
}

.ttl-div {
  color: #3CA4EB;
}
.ttl-div h2 {
  letter-spacing: 5px;
  font-style: italic;
}
.ttl-div p {
  margin-top: 30px;
}
@media screen and (max-width: 1920px) {
  .ttl-div p {
    margin-top: 30rem;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
@media screen and (max-width: 1920px) {
  .btn {
    gap: 15rem;
  }
}
.btn .icon {
  width: 57px;
  height: 57px;
}
@media screen and (max-width: 1920px) {
  .btn .icon {
    width: 57rem;
    height: 57rem;
  }
}
.btn .icon svg {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid #fff;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.btn span.f-md {
  color: #fff;
}
.btn:hover .icon svg {
  background-color: #3CA4EB;
}
.btn:hover .icon svg path {
  stroke: #fff;
}
.btn:hover span.f-md {
  color: #F5ED1A;
}

.s_r_business,
.t_business {
  padding: 150px 0 185px;
}
@media screen and (max-width: 1920px) {
  .s_r_business,
  .t_business {
    padding: 150rem 0 185rem;
  }
}
@media screen and (max-width: 768px) {
  .s_r_business,
  .t_business {
    padding: 100rem 40rem;
  }
}
.s_r_business::before,
.t_business::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 50%;
  height: 150px;
  background-color: #3CA4EB;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}
@media screen and (max-width: 1920px) {
  .s_r_business::before,
  .t_business::before {
    height: 180rem;
  }
}
@media screen and (max-width: 768px) {
  .s_r_business::before,
  .t_business::before {
    content: none;
  }
}
.s_r_business .sec-wide .desc,
.t_business .sec-wide .desc {
  text-align: left;
  margin-top: 30px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .desc,
  .t_business .sec-wide .desc {
    margin-top: 30rem;
  }
}
.s_r_business .sec-wide .business-main,
.t_business .sec-wide .business-main {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 27px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main,
  .t_business .sec-wide .business-main {
    gap: 27rem;
    margin-top: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .s_r_business .sec-wide .business-main,
  .t_business .sec-wide .business-main {
    grid-template-columns: 1fr;
    gap: 40rem;
  }
}
.s_r_business .sec-wide .business-main .item,
.t_business .sec-wide .business-main .item {
  background-color: #3CA4EB;
  color: #fff;
  border-radius: 14px;
  padding: 30px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main .item,
  .t_business .sec-wide .business-main .item {
    padding: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s_r_business .sec-wide .business-main .item,
  .t_business .sec-wide .business-main .item {
    padding: 60rem 40rem;
  }
}
.s_r_business .sec-wide .business-main .item .item-ttl h5,
.t_business .sec-wide .business-main .item .item-ttl h5 {
  color: #F5ED1A;
}
.s_r_business .sec-wide .business-main .item p.f-20,
.t_business .sec-wide .business-main .item p.f-20 {
  margin-top: 30px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main .item p.f-20,
  .t_business .sec-wide .business-main .item p.f-20 {
    margin-top: 30rem;
  }
}
.s_r_business .sec-wide .business-main .item .btn-more,
.t_business .sec-wide .business-main .item .btn-more {
  margin-top: 70px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main .item .btn-more,
  .t_business .sec-wide .business-main .item .btn-more {
    margin-top: 70rem;
  }
}
.s_r_business .sec-wide .business-main .item.with-img,
.t_business .sec-wide .business-main .item.with-img {
  grid-column: span 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px;
  padding-left: 100px;
  padding-right: 147px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main .item.with-img,
  .t_business .sec-wide .business-main .item.with-img {
    padding: 45rem;
    padding-left: 100rem;
    padding-right: 147rem;
  }
}
@media screen and (max-width: 768px) {
  .s_r_business .sec-wide .business-main .item.with-img,
  .t_business .sec-wide .business-main .item.with-img {
    flex-direction: column;
    justify-content: center;
    gap: 40rem;
    grid-column: span 1;
    padding: 60rem 40rem;
  }
}
.s_r_business .sec-wide .business-main .item.with-img .img,
.t_business .sec-wide .business-main .item.with-img .img {
  width: 355px;
  border-radius: 999px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main .item.with-img .img,
  .t_business .sec-wide .business-main .item.with-img .img {
    width: 355rem;
  }
}
@media screen and (max-width: 768px) {
  .s_r_business .sec-wide .business-main .item.with-img .img,
  .t_business .sec-wide .business-main .item.with-img .img {
    width: 70%;
  }
}
.s_r_business .sec-wide .business-main .item.with-img .content,
.t_business .sec-wide .business-main .item.with-img .content {
  width: 680px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main .item.with-img .content,
  .t_business .sec-wide .business-main .item.with-img .content {
    width: 680rem;
  }
}
@media screen and (max-width: 768px) {
  .s_r_business .sec-wide .business-main .item.with-img .content,
  .t_business .sec-wide .business-main .item.with-img .content {
    width: 100%;
    margin-top: 50rem;
  }
}
.s_r_business .sec-wide .business-main .item.with-img .content p.f-20,
.t_business .sec-wide .business-main .item.with-img .content p.f-20 {
  margin-top: 50px;
}
@media screen and (max-width: 1920px) {
  .s_r_business .sec-wide .business-main .item.with-img .content p.f-20,
  .t_business .sec-wide .business-main .item.with-img .content p.f-20 {
    margin-top: 50rem;
  }
}

.t_reason {
  padding-bottom: 190px;
}
@media screen and (max-width: 1920px) {
  .t_reason {
    padding-bottom: 190rem;
  }
}
@media screen and (max-width: 768px) {
  .t_reason {
    padding-bottom: 100rem;
  }
}
.t_reason .container .sec-wide {
  margin-top: -120px;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .sec-wide {
    margin-top: -120rem;
  }
}
@media screen and (max-width: 768px) {
  .t_reason .container .sec-wide {
    padding: 0 40rem;
  }
}
.t_reason .container .sec-wide .ttl-div h5 {
  color: #fff;
}
.t_reason .container .sec-wide .desc {
  padding-left: 150px;
  text-align: left;
  color: #3CA4EB;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .sec-wide .desc {
    padding-left: 150rem;
  }
}
@media screen and (max-width: 768px) {
  .t_reason .container .sec-wide .desc {
    padding-left: 0;
    text-align: center;
  }
}
.t_reason .container .reasons-list {
  padding-top: 200px;
  width: 1005;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .reasons-list {
    padding-top: 200rem;
  }
}
.t_reason .container .reasons-list .wrapper {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 105px;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .reasons-list .wrapper {
    gap: 105rem;
  }
}
@media screen and (max-width: 768px) {
  .t_reason .container .reasons-list .wrapper {
    flex-direction: column;
    padding: 0 40rem;
  }
}
.t_reason .container .reasons-list .wrapper .reason-item {
  position: relative;
  width: 895px;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .reasons-list .wrapper .reason-item {
    width: 895rem;
  }
}
@media screen and (max-width: 768px) {
  .t_reason .container .reasons-list .wrapper .reason-item {
    width: 650rem;
  }
}
.t_reason .container .reasons-list .wrapper .reason-item .v_txt {
  writing-mode: vertical-lr;
  position: absolute;
  top: -50px;
  right: -50px;
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .reasons-list .wrapper .reason-item .v_txt {
    top: -50rem;
    right: -50rem;
  }
}
.t_reason .container .reasons-list .wrapper .reason-item .v_txt span {
  display: block;
  padding: 20px 5px;
  background: linear-gradient(257.03deg, #65D7FF 9.61%, #008AD2 50.58%, #204483 77.04%);
  color: #fff;
  letter-spacing: 4px;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .reasons-list .wrapper .reason-item .v_txt span {
    padding: 20rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .t_reason .container .reasons-list .wrapper .reason-item .v_txt span {
    font-size: 36rem;
  }
}
.t_reason .container .reasons-list .wrapper .reason-item p.f-16 {
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 60px;
}
@media screen and (max-width: 1920px) {
  .t_reason .container .reasons-list .wrapper .reason-item p.f-16 {
    bottom: 40rem;
    left: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t_reason .container .reasons-list .wrapper .reason-item p.f-16 {
    left: 20rem;
    bottom: 20rem;
  }
}

.t_work {
  background-color: #3CA4EB;
  padding-top: 175px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1920px) {
  .t_work {
    padding-top: 175rem;
    padding-bottom: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .t_work {
    padding: 100rem 40rem;
  }
}
.t_work .sec-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .t_work .sec-wide {
    flex-direction: column;
    gap: 50rem;
  }
}
.t_work .sec-wide .main-img-slider {
  width: 773px;
}
@media screen and (max-width: 1920px) {
  .t_work .sec-wide .main-img-slider {
    width: 773rem;
  }
}
@media screen and (max-width: 768px) {
  .t_work .sec-wide .main-img-slider {
    width: 100%;
  }
}
.t_work .sec-wide .text {
  width: 590px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1920px) {
  .t_work .sec-wide .text {
    width: 590rem;
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .t_work .sec-wide .text {
    width: 100%;
  }
}
.t_work .sec-wide .text .ttl-div {
  color: #fff;
}
.t_work .works-list {
  width: 100%;
  overflow: hidden;
  margin-top: 95px;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list {
    margin-top: 95rem;
  }
}
.t_work .works-list .wrapper {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .wrapper {
    gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .t_work .works-list .wrapper {
    width: 100%;
    flex-direction: column;
    gap: 70rem;
  }
}
.t_work .works-list .wrapper .works-item .works-link {
  width: 490px;
  padding: 10px;
  background-color: #3CA4EB;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .wrapper .works-item .works-link {
    width: 490rem;
  }
}
@media screen and (max-width: 768px) {
  .t_work .works-list .wrapper .works-item .works-link {
    width: 100%;
    padding: 0;
  }
}
.t_work .works-list .wrapper .works-item .works-link h4 {
  color: #fff;
}
.t_work .works-list .wrapper .works-item .works-link .info {
  margin-top: 15px;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .wrapper .works-item .works-link .info {
    margin-top: 15rem;
  }
}
.t_work .works-list .wrapper .works-item .works-link .info .meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .wrapper .works-item .works-link .info .meta {
    gap: 20rem;
    margin-top: 10rem;
  }
}
.t_work .works-list .wrapper .works-item .works-link .info .meta span {
  padding: 5px 10px;
  background-color: #fff;
  color: #3CA4EB;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .wrapper .works-item .works-link .info .meta span {
    padding: 5rem 10rem;
  }
}
.t_work .works-list .wrapper .works-item .works-link:hover {
  background-color: #fff;
  color: #3CA4EB;
  cursor: pointer;
}
.t_work .works-list .wrapper .works-item .works-link:hover h4 {
  color: #3CA4EB;
}
.t_work .works-list .wrapper .works-item .works-link:hover .info .meta span {
  background-color: #3CA4EB;
  color: #fff;
}
.t_work .works-list .slider {
  width: 1440px;
  height: 40px;
  margin: auto;
  margin-top: 130px;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .slider {
    width: 1440rem;
    height: 40rem;
    margin-top: 130rem;
  }
}
@media screen and (max-width: 768px) {
  .t_work .works-list .slider {
    display: none;
  }
}
.t_work .works-list .slider::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.t_work .works-list .slider .slider-btn {
  width: 940px;
  height: 100%;
  border-radius: 999px;
  background-color: #fff;
  position: absolute;
  cursor: grab;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .slider .slider-btn {
    width: 940rem;
  }
}
.t_work .works-list .slider .slider-btn .left svg {
  width: 11px;
  height: 19px;
  position: absolute;
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .slider .slider-btn .left svg {
    width: 11rem;
    height: 19rem;
    left: 14rem;
  }
}
.t_work .works-list .slider .slider-btn .right svg {
  width: 11px;
  height: 19px;
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 1920px) {
  .t_work .works-list .slider .slider-btn .right svg {
    width: 11rem;
    height: 19rem;
    right: 14rem;
  }
}

.t_voices {
  background: #DBEBF6;
}
.t_voices .container .add {
  width: 167px;
  height: 167px;
  border-radius: 999px;
  position: absolute;
  top: -17px;
  left: 330px;
  z-index: 2;
  background-color: #3CA4EB;
  color: #fff;
  border: 3px solid #fff;
  rotate: -4.5deg;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .add {
    width: 167rem;
    height: 167rem;
    top: -17rem;
    left: 330rem;
    font-size: 32rem;
    border: 3rem solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .t_voices .container .add {
    left: 100rem;
  }
}
.t_voices .container .sec-contain {
  padding-top: 150px;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain {
    padding-top: 150rem;
  }
}
.t_voices .container .sec-contain .ttl-div h5 {
  color: #000;
  text-align: center;
  font-style: italic;
  margin-right: 15%;
}
.t_voices .container .sec-contain .ttl-div h2 {
  margin-top: -75px;
  text-align: center;
  font-style: italic;
  margin-left: 15%;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .ttl-div h2 {
    margin-top: -75rem;
  }
}
@media screen and (max-width: 768px) {
  .t_voices .container .sec-contain .ttl-div h2 {
    margin-top: -50rem;
    margin-left: 25%;
  }
  .t_voices .container .sec-contain .ttl-div h2 .f-150 {
    font-size: 120rem;
  }
}
.t_voices .container .sec-contain .voices-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 100px;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list {
    margin-top: 100rem;
    gap: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t_voices .container .sec-contain .voices-list {
    grid-template-columns: 1fr;
    gap: 80rem;
    padding: 0 40rem;
  }
}
.t_voices .container .sec-contain .voices-list .voice-item {
  background-color: #fff;
  position: relative;
  padding: 25px 20px;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list .voice-item {
    padding: 25rem 20rem;
  }
}
@media screen and (max-width: 768px) {
  .t_voices .container .sec-contain .voices-list .voice-item {
    padding: 50rem 40rem;
  }
}
.t_voices .container .sec-contain .voices-list .voice-item::before {
  content: "”";
  font-size: 96px;
  line-height: 1;
  position: absolute;
  left: 15px;
  top: -30px;
  color: #3CA4EB;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list .voice-item::before {
    font-size: 96rem;
    left: 15rem;
    top: -30rem;
  }
}
.t_voices .container .sec-contain .voices-list .voice-item::after {
  content: "“";
  font-size: 96px;
  line-height: 1;
  position: absolute;
  right: 15px;
  bottom: -30px;
  color: #3CA4EB;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list .voice-item::after {
    font-size: 96rem;
    right: 15rem;
    bottom: -30rem;
  }
}
@media screen and (max-width: 768px) {
  .t_voices .container .sec-contain .voices-list .voice-item::after {
    bottom: -70rem;
  }
}
.t_voices .container .sec-contain .voices-list .voice-item .img {
  width: 120px;
  margin: auto;
  margin-top: -50px;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list .voice-item .img {
    width: 120rem;
    margin-top: -50rem;
  }
}
@media screen and (max-width: 768px) {
  .t_voices .container .sec-contain .voices-list .voice-item .img {
    width: 300rem;
    margin-top: -80rem;
  }
}
.t_voices .container .sec-contain .voices-list .voice-item .item-name {
  text-align: right;
  margin-top: 20px;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list .voice-item .item-name {
    margin-top: 20rem;
  }
}
.t_voices .container .sec-contain .voices-list .voice-item .voice-ttl {
  padding: 50px 0 30px;
  border-bottom: 2px solid #F5ED1A;
  color: #3CA4EB;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list .voice-item .voice-ttl {
    padding: 50rem 0 30rem;
  }
}
.t_voices .container .sec-contain .voices-list .voice-item .voice-text {
  padding: 30px 0 20px;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .sec-contain .voices-list .voice-item .voice-text {
    padding: 30rem 0 20rem;
  }
}
.t_voices .container .h_slide-text {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .t_voices .container .h_slide-text {
    margin-top: 50rem;
  }
}
.t_voices .container .h_slide-text .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.t_voices .container .h_slide-text .wrapper p {
  font-style: italic;
  white-space: nowrap;
  color: #fff;
  animation: h_slide 20s infinite linear;
  padding: 0 25px;
}
@media screen and (max-width: 1920px) {
  .t_voices .container .h_slide-text .wrapper p {
    padding: 0 25rem;
  }
}

.s_flow .container,
.t_flow .container {
  padding: 120px 0 190px;
}
@media screen and (max-width: 1920px) {
  .s_flow .container,
  .t_flow .container {
    padding: 120rem 0 190rem;
  }
}
@media screen and (max-width: 768px) {
  .s_flow .container,
  .t_flow .container {
    padding: 80rem 40rem;
  }
}
.s_flow .container .add-img,
.t_flow .container .add-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.s_flow .container .sec-wide .sec-contain,
.t_flow .container .sec-wide .sec-contain {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 55px;
}
@media screen and (max-width: 1920px) {
  .s_flow .container .sec-wide .sec-contain,
  .t_flow .container .sec-wide .sec-contain {
    margin-top: 70rem;
    gap: 55rem;
  }
}
.s_flow .container .sec-wide .sec-contain .step-item,
.t_flow .container .sec-wide .sec-contain .step-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  width: 100%;
}
@media screen and (max-width: 1920px) {
  .s_flow .container .sec-wide .sec-contain .step-item,
  .t_flow .container .sec-wide .sec-contain .step-item {
    gap: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .s_flow .container .sec-wide .sec-contain .step-item,
  .t_flow .container .sec-wide .sec-contain .step-item {
    align-items: flex-start;
  }
}
.s_flow .container .sec-wide .sec-contain .step-item .left,
.t_flow .container .sec-wide .sec-contain .step-item .left {
  width: 77px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 1920px) {
  .s_flow .container .sec-wide .sec-contain .step-item .left,
  .t_flow .container .sec-wide .sec-contain .step-item .left {
    gap: 15rem;
    width: 77rem;
  }
}
@media screen and (max-width: 768px) {
  .s_flow .container .sec-wide .sec-contain .step-item .left,
  .t_flow .container .sec-wide .sec-contain .step-item .left {
    width: 120rem;
    gap: 30rem;
  }
}
.s_flow .container .sec-wide .sec-contain .step-item .left .f-16,
.t_flow .container .sec-wide .sec-contain .step-item .left .f-16 {
  background: linear-gradient(257.03deg, #65D7FF 9.61%, #008AD2 50.58%, #204483 77.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.s_flow .container .sec-wide .sec-contain .step-item .right,
.t_flow .container .sec-wide .sec-contain .step-item .right {
  width: calc(100% - 128px);
}
@media screen and (max-width: 1920px) {
  .s_flow .container .sec-wide .sec-contain .step-item .right,
  .t_flow .container .sec-wide .sec-contain .step-item .right {
    width: calc(100% - 128rem);
  }
}
@media screen and (max-width: 768px) {
  .s_flow .container .sec-wide .sec-contain .step-item .right,
  .t_flow .container .sec-wide .sec-contain .step-item .right {
    width: calc(100% - 170rem);
  }
}
.s_flow .container .sec-wide .sec-contain .step-item .right h3,
.t_flow .container .sec-wide .sec-contain .step-item .right h3 {
  color: #3CA4EB;
  padding-left: 25px;
}
@media screen and (max-width: 1920px) {
  .s_flow .container .sec-wide .sec-contain .step-item .right h3,
  .t_flow .container .sec-wide .sec-contain .step-item .right h3 {
    padding-left: 25rem;
  }
}
.s_flow .container .sec-wide .sec-contain .step-item .right p.f-16,
.t_flow .container .sec-wide .sec-contain .step-item .right p.f-16 {
  background-color: #fff;
  padding: 15px 25px;
  color: #000;
  border-radius: 10px;
  margin-top: 5px;
}
@media screen and (max-width: 1920px) {
  .s_flow .container .sec-wide .sec-contain .step-item .right p.f-16,
  .t_flow .container .sec-wide .sec-contain .step-item .right p.f-16 {
    padding: 15rem 25rem;
    border-radius: 10rem;
  }
}

.t_contact {
  padding-bottom: 170px;
}
@media screen and (max-width: 1920px) {
  .t_contact {
    padding-bottom: 170rem;
  }
}
.t_contact .sec-wide {
  background: linear-gradient(257.03deg, #65D7FF 9.61%, #008AD2 50.58%, #204483 77.04%);
  padding: 25px;
  color: #fff;
}
@media screen and (max-width: 1920px) {
  .t_contact .sec-wide {
    padding: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .t_contact .sec-wide {
    padding: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .t_contact .sec-wide h2 {
    text-align: center;
  }
}
.t_contact .sec-wide h5 {
  margin-top: 30px;
}
@media screen and (max-width: 1920px) {
  .t_contact .sec-wide h5 {
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .t_contact .sec-wide h5 {
    text-align: center;
  }
}
.t_contact .sec-wide .icon {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  width: 385px;
}
@media screen and (max-width: 1920px) {
  .t_contact .sec-wide .icon {
    left: 50rem;
    width: 385rem;
  }
}
@media screen and (max-width: 768px) {
  .t_contact .sec-wide .icon {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.t_contact .sec-wide .arw {
  width: 213px;
  height: 213px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 75px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1920px) {
  .t_contact .sec-wide .arw {
    width: 213rem;
    height: 213rem;
    right: 75rem;
  }
}
@media screen and (max-width: 768px) {
  .t_contact .sec-wide .arw {
    position: relative;
    transform: unset;
    top: unset;
    right: unset;
    margin: 3% auto;
  }
}
.t_contact .sec-wide .arw svg {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t_contact .sec-wide p.deco-txt {
  opacity: 0.2;
  font-style: italic;
  letter-spacing: 5px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .t_contact .sec-wide p.deco-txt {
    text-align: center;
  }
}
.t_contact .sec-wide:hover .arw svg {
  background-color: #3CA4EB;
}
.t_contact .sec-wide:hover .arw svg path {
  stroke: #fff;
}

.t_recruit {
  padding: 147px 0;
  background: url("../img/t_recruit-bg.png") center center no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1920px) {
  .t_recruit {
    padding: 147rem 0;
  }
}
.t_recruit .sec-contain {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 84px;
  color: #fff;
}
@media screen and (max-width: 1920px) {
  .t_recruit .sec-contain {
    gap: 84rem;
  }
}
.t_recruit .sec-contain .ttl-div {
  color: #fff;
}
.t_recruit .sec-contain .ttl-div h5 {
  font-style: normal;
  text-align: center;
}
.t_recruit .sec-contain .ttl-div h2 {
  font-style: normal;
  margin-top: 20px;
}
@media screen and (max-width: 1920px) {
  .t_recruit .sec-contain .ttl-div h2 {
    margin-top: 20rem;
  }
}
.t_recruit .sec-contain .desc {
  margin-top: 0;
}
.t_recruit .sec-contain .btn-more2 {
  width: 187px;
  height: 187px;
  border-radius: 999px;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .t_recruit .sec-contain .btn-more2 {
    width: 187rem;
    height: 187rem;
  }
}
.t_recruit .sec-contain .btn-more2:hover {
  background-color: #fff;
  color: #3CA4EB;
}

.t_benefit {
  padding: 130px 0;
}
@media screen and (max-width: 1920px) {
  .t_benefit {
    padding: 130rem 0;
  }
}
@media screen and (max-width: 768px) {
  .t_benefit {
    padding: 100rem 40rem;
  }
}
.t_benefit .sec-wide .ttl-div {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .t_benefit .sec-wide .ttl-div {
    padding-bottom: 20rem;
  }
}
.t_benefit .sec-wide .ttl-div::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 5px;
  background-color: #3CA4EB;
}
@media screen and (max-width: 1920px) {
  .t_benefit .sec-wide .ttl-div::after {
    width: 50rem;
    height: 5em;
  }
}
.t_benefit .sec-wide p.f-md {
  width: 590px;
  margin-top: 20px;
}
@media screen and (max-width: 1920px) {
  .t_benefit .sec-wide p.f-md {
    width: 590rem;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .t_benefit .sec-wide p.f-md {
    width: 100%;
  }
}
.t_benefit .sec-wide .empty-div {
  width: 100%;
  height: 200px;
  background: linear-gradient(257.03deg, #65D7FF 9.61%, #008AD2 50.58%, #204483 77.04%);
  margin-top: 60px;
}
@media screen and (max-width: 1920px) {
  .t_benefit .sec-wide .empty-div {
    margin-top: 60rem;
    height: 200rem;
  }
}
.t_benefit .sec-wide .link-div {
  position: absolute;
  bottom: 160px;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1920px) {
  .t_benefit .sec-wide .link-div {
    bottom: 160rem;
    gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .t_benefit .sec-wide .link-div {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    flex-direction: column;
    margin-top: 50rem;
  }
}
.t_benefit .sec-wide .link-div .link {
  width: 356px;
  border-radius: 15px;
  border: 5px solid #3CA4EB;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 25px;
}
@media screen and (max-width: 1920px) {
  .t_benefit .sec-wide .link-div .link {
    width: 356rem;
    border-radius: 15rem;
    border: 5rem solid #3CA4EB;
    padding: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .t_benefit .sec-wide .link-div .link {
    width: 100%;
    padding: 40rem;
  }
}
.t_benefit .sec-wide .link-div .link:hover {
  transform: translateY(5%);
}
.t_benefit .sec-wide .link-div .link .f-lg {
  text-align: center;
  color: #3CA4EB;
}
.t_benefit .sec-wide .link-div .link .icon {
  display: block;
  width: 205px;
  height: 205px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .t_benefit .sec-wide .link-div .link .icon {
    width: 205rem;
    height: 205rem;
    margin: 60rem auto;
  }
}
.t_benefit .sec-wide .link-div .link .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.t_recruit2 .container .slider-div {
  width: 100%;
  height: 985px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: linear-gradient(257.03deg, #65D7FF 9.61%, #008AD2 50.58%, #204483 77.04%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .t_recruit2 .container .slider-div {
    height: 985rem;
    border-top-right-radius: 20rem;
    border-top-left-radius: 20rem;
  }
}
.t_recruit2 .container .slider-div::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.5;
}
.t_recruit2 .container .slider-div .wrapper {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 77px;
}
@media screen and (max-width: 1920px) {
  .t_recruit2 .container .slider-div .wrapper {
    gap: 77rem;
  }
}
.t_recruit2 .container .slider-div .wrapper .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.t_recruit2 .container .slider-div .wrapper .column.column1 .wrap, .t_recruit2 .container .slider-div .wrapper .column.column3 .wrap, .t_recruit2 .container .slider-div .wrapper .column.column5 .wrap {
  animation: slide_top 25s infinite linear;
}
.t_recruit2 .container .slider-div .wrapper .column.column2 .wrap, .t_recruit2 .container .slider-div .wrapper .column.column4 .wrap {
  animation: slide_down 25s infinite linear;
}
.t_recruit2 .container .slider-div .wrapper .column .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 336px;
}
@media screen and (max-width: 1920px) {
  .t_recruit2 .container .slider-div .wrapper .column .wrap {
    width: 336rem;
  }
}
.t_recruit2 .container .slider-div .wrapper .column .wrap img {
  padding: 20px 0;
  border-radius: 25px;
}
@media screen and (max-width: 1920px) {
  .t_recruit2 .container .slider-div .wrapper .column .wrap img {
    padding: 20rem 0;
    border-radius: 25rem;
  }
}
.t_recruit2 .container .content {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.t_recruit2 .container .content .ttl-div {
  color: #fff;
}
.t_recruit2 .container .content .ttl-div h5,
.t_recruit2 .container .content .ttl-div h2 {
  font-style: normal;
  text-align: center;
}
.t_recruit2 .container .content p.f-16 {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 1920px) {
  .t_recruit2 .container .content p.f-16 {
    margin-top: 30rem;
  }
}
.t_recruit2 .container .content .btn-more_r {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1920px) {
  .t_recruit2 .container .content .btn-more_r {
    gap: 20rem;
    margin-top: 70rem;
  }
}
.t_recruit2 .container .content .btn-more_r .f-sm {
  color: #fff;
}
.t_recruit2 .container .content .btn-more_r .icon {
  width: 57px;
  height: 57px;
}
@media screen and (max-width: 1920px) {
  .t_recruit2 .container .content .btn-more_r .icon {
    width: 57rem;
    height: 57rem;
  }
}
.t_recruit2 .container .content .btn-more_r .icon svg {
  width: 1005;
  height: 100%;
  border-radius: 999px;
  background-color: #fff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t_recruit2 .container .content .btn-more_r:hover .f-sm {
  color: #F5ED1A;
}
.t_recruit2 .container .content .btn-more_r:hover .icon svg {
  background-color: #F5ED1A;
}
.t_recruit2 .container .content .btn-more_r:hover .icon svg path {
  stroke: #fff;
}

.t_divider {
  padding: 80px 0;
}
@media screen and (max-width: 1920px) {
  .t_divider {
    padding: 80rem 0;
  }
}
@media screen and (max-width: 768px) {
  .t_divider {
    padding: 80rem 40rem;
  }
}
.t_divider .container .h_slider {
  width: 100%;
}
.t_divider .container .h_slider .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t_divider .container .h_slider .wrapper.slide_left p {
  animation: slide_left 30s linear infinite;
}
.t_divider .container .h_slider .wrapper.slide_right p {
  animation: slide_right 30s linear infinite;
}
.t_divider .container .h_slider .wrapper p {
  white-space: nowrap;
  color: #3CA4EB;
  text-transform: uppercase;
  padding: 0 2%;
  line-height: 1.5;
}
.t_divider .container .img-div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.t_divider .container .img-div img {
  position: absolute;
}
.t_divider .container .img-div img:first-child {
  width: 250px;
  top: 50px;
  left: 745px;
}
@media screen and (max-width: 1920px) {
  .t_divider .container .img-div img:first-child {
    width: 250rem;
    left: 745rem;
    top: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .t_divider .container .img-div img:first-child {
    left: 50%;
    transform: translateX(-50%);
    width: 200rem;
    top: 30rem;
  }
}
.t_divider .container .img-div img:nth-child(2) {
  width: 215px;
  left: 225px;
  bottom: 12px;
}
@media screen and (max-width: 1920px) {
  .t_divider .container .img-div img:nth-child(2) {
    width: 215rem;
    left: 225rem;
    bottom: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .t_divider .container .img-div img:nth-child(2) {
    left: 50rem;
    width: 180rem;
  }
}
.t_divider .container .img-div img:nth-child(3) {
  width: 195px;
  bottom: -40px;
  right: 330px;
}
@media screen and (max-width: 1920px) {
  .t_divider .container .img-div img:nth-child(3) {
    width: 195rem;
    right: 330rem;
    bottom: -40rem;
  }
}
@media screen and (max-width: 768px) {
  .t_divider .container .img-div img:nth-child(3) {
    right: 50rem;
    width: 150rem;
  }
}

@keyframes slide_left {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide_right {
  100% {
    transform: translateX(100%);
  }
}
@keyframes numberGlow {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}
.t_blogs {
  padding-top: 100px;
  padding-bottom: 200px;
}
@media screen and (max-width: 1920px) {
  .t_blogs {
    padding-top: 100rem;
    padding-bottom: 200rem;
  }
}
@media screen and (max-width: 768px) {
  .t_blogs {
    padding: 100rem 40rem 200rem;
  }
}
.t_blogs .sec-contain h2 {
  color: #3CA4EB;
  font-style: italic;
}
.t_blogs .sec-contain .blogs-list {
  margin-top: 50px;
}
@media screen and (max-width: 1920px) {
  .t_blogs .sec-contain .blogs-list {
    margin-top: 50rem;
  }
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0;
  border-top: 1px solid #E5EAF0;
  cursor: pointer;
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link:last-child {
  border-bottom: 1px solid #E5EAF0;
}
@media screen and (max-width: 1920px) {
  .t_blogs .sec-contain .blogs-list .blog-item .blog-link {
    padding: 40rem 0;
  }
}
@media screen and (max-width: 768px) {
  .t_blogs .sec-contain .blogs-list .blog-item .blog-link {
    flex-direction: column;
  }
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link:hover {
  background-color: #f6f6f6;
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link:hover .item-ttl {
  color: #3CA4EB;
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link .meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link .meta .cat {
  width: 180px;
  border-radius: 999px;
  padding: 15px;
  background-color: #3CA4EB;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .t_blogs .sec-contain .blogs-list .blog-item .blog-link .meta .cat {
    width: 180rem;
    padding: 15rem;
  }
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link .meta .date {
  margin-left: 25px;
  color: #BFBFBF;
}
@media screen and (max-width: 1920px) {
  .t_blogs .sec-contain .blogs-list .blog-item .blog-link .meta .date {
    margin-left: 25rem;
  }
}
.t_blogs .sec-contain .blogs-list .blog-item .blog-link .item-ttl {
  margin-left: 80px;
}
@media screen and (max-width: 1920px) {
  .t_blogs .sec-contain .blogs-list .blog-item .blog-link .item-ttl {
    margin-left: 80rem;
  }
}

.t_faq {
  background-color: #DBEBF6;
  border-top-right-radius: 85px;
  border-top-left-radius: 85px;
  padding-top: 100px;
  padding-bottom: 300px;
}
@media screen and (max-width: 1920px) {
  .t_faq {
    border-top-right-radius: 85rem;
    border-top-left-radius: 85rem;
    padding-top: 100rem;
    padding-bottom: 300rem;
  }
}
@media screen and (max-width: 768px) {
  .t_faq {
    padding: 100rem 40rem 250rem;
  }
}
.t_faq .sec-contain .ttl-div {
  color: #fff;
}
.t_faq .sec-contain .ttl-div h2 {
  line-height: 1;
  color: #3CA4EB;
}

.faq-list {
  margin-top: 70px;
}
@media screen and (max-width: 1920px) {
  .faq-list {
    margin-top: 70rem;
  }
}
.faq-list .faq-item {
  margin-top: 50px;
  background-color: #fff;
  padding: 30px;
  cursor: pointer;
}
@media screen and (max-width: 1920px) {
  .faq-list .faq-item {
    margin-top: 50rem;
    padding: 30rem;
  }
}
.faq-list .faq-item .icon {
  width: 40px;
  margin-right: 20px;
}
@media screen and (max-width: 1920px) {
  .faq-list .faq-item .icon {
    width: 40rem;
    margin-right: 20rem;
  }
}
.faq-list .faq-item .q_div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  position: relative;
}
.faq-list .faq-item .q_div .arw {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1920px) {
  .faq-list .faq-item .q_div .arw {
    right: 30rem;
  }
}
.faq-list .faq-item .q_div .arw.is_open .bar2 {
  transform: unset;
}
.faq-list .faq-item .q_div .arw .bar1,
.faq-list .faq-item .q_div .arw .bar2 {
  width: 31px;
  height: 2px;
  position: absolute;
  background-color: #fee101;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1920px) {
  .faq-list .faq-item .q_div .arw .bar1,
  .faq-list .faq-item .q_div .arw .bar2 {
    width: 31rem;
  }
}
.faq-list .faq-item .q_div .arw .bar2 {
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .faq-list .faq-item .q_div .q_content {
    width: calc(100% - 100rem);
    padding-right: 30rem;
  }
}
.faq-list .faq-item .a_div {
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1920px) {
  .faq-list .faq-item .a_div {
    padding-top: 20rem;
  }
}
.faq-list .faq-item .a_div .a_content {
  width: calc(100% - 100px);
}
@media screen and (max-width: 1920px) {
  .faq-list .faq-item .a_div .a_content {
    width: calc(100% - 100rem);
  }
}

.cta {
  background: url("../img/cta-bg.png") no-repeat center center;
  background-size: cover;
  background-position: bottom;
  padding-top: 100px;
  padding-bottom: 150px;
  margin-top: -90px;
  border-top-right-radius: 90px;
  border-top-left-radius: 90px;
}
@media screen and (max-width: 1920px) {
  .cta {
    padding-top: 100rem;
    padding-bottom: 150rem;
    margin-top: -90rem;
    border-top-right-radius: 90rem;
    border-top-left-radius: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 100rem 40rem;
  }
}
.cta .sec-wide h3 {
  color: #3CA4EB;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .cta .sec-wide h3 {
    line-height: 1.5;
    text-align: center;
  }
}
.cta .sec-wide .sec-contain {
  margin-top: 130px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1920px) {
  .cta .sec-wide .sec-contain {
    margin-top: 130rem;
    gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .cta .sec-wide .sec-contain {
    grid-template-columns: 1fr;
  }
}
.cta .sec-wide .sec-contain .link {
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 35px;
}
@media screen and (max-width: 1920px) {
  .cta .sec-wide .sec-contain .link {
    border-radius: 15rem;
    padding: 48rem 35rem;
  }
}
@media screen and (max-width: 768px) {
  .cta .sec-wide .sec-contain .link {
    height: 250rem;
  }
}
.cta .sec-wide .sec-contain .link.contact {
  background-color: #3CA4EB;
  color: #fff;
}
.cta .sec-wide .sec-contain .link.contact:hover {
  background-color: #fff;
  color: #3CA4EB;
}
.cta .sec-wide .sec-contain .link.contact:hover .icon svg circle {
  fill: #3CA4EB;
}
.cta .sec-wide .sec-contain .link.contact:hover .icon svg path {
  stroke: #fff;
}
.cta .sec-wide .sec-contain .link.phone {
  background-color: #fff;
  color: #3CA4EB;
}
.cta .sec-wide .sec-contain .link.phone:hover {
  background-color: #3CA4EB;
  color: #fff;
}
.cta .sec-wide .sec-contain .link.phone:hover .icon svg circle {
  fill: #fff;
}
.cta .sec-wide .sec-contain .link.phone:hover .icon svg path {
  stroke: #3CA4EB;
}
.cta .sec-wide .sec-contain .link .text {
  text-align: center;
}
.cta .sec-wide .sec-contain .link .text .phone-num {
  display: block;
}
.cta .sec-wide .sec-contain .link .icon svg {
  width: 57px;
  height: 57px;
}
@media screen and (max-width: 1920px) {
  .cta .sec-wide .sec-contain .link .icon svg {
    width: 57rem;
    height: 57rem;
  }
}

.fade-in,
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fade-in {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.fade-in-up {
  transform: translateY(50px);
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down {
  transform: translateY(-50px);
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-left {
  transform: translateX(50px);
  animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-right {
  transform: translateX(-50px);
  animation-name: fadeInRight;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadein {
  opacity: 0;
  transition: all 1s ease-in-out;
}
.fadein.visible {
  opacity: 1;
}

.fadeup {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateY(70px);
}
.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadedown {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateY(-70px);
}
.fadedown.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadeleft {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateX(-100px);
}
.fadeleft.visible {
  opacity: 1;
  transform: translateX(0);
}

.faderight {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateX(100px);
}
.faderight.visible {
  opacity: 1;
  transform: translateX(0);
}/*# sourceMappingURL=top.css.map */