#main .visual {
  position: relative;
  overflow: hidden;
}
#main .visual .text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 9;
  text-align: center;
  transform: translateY(-50%);
}
#main .visual .text div {
  color: #fff;
}
#main .visual .text .line-1 {
  font-size: 9rem;
  font-family: 'Lato',sans-serif;
  font-weight: 100;
  line-height: 1.2;
}
#main .visual .text img {
  width: auto !important;
  height: 9.02em !important;
  max-height: 121px;
}
@media (max-width:1080px) {
  #main .visual .text img {
    height: 7em !important;
  }
}
@media (max-width:640px) {
  #main .visual .text img {
    height: 5em !important;
  }
}
#main .visual .text .line-1 b {
  font-weight: 900;
  color: var(--c-blue3);
}
#main .visual .text .line-2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: .3em;
}
#main .visual .visual-swiper {
  position: relative;
}
#main .visual .visual-swiper img {
  width: 100%;
}
@media (max-width:768px) {
  #main .visual .visual-swiper .swiper-img {
    aspect-ratio: 1 / 1;
  }
  #main .visual .visual-swiper .swiper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
#main .visual .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 1em;
  transform: translateX(-50%);
  z-index: 9;
}
#main .visual .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #fff;
  margin: 0 5px;
}
#main .visual .swiper-pagination-bullet-active {
  background: var(--c-blue);
}
@media (max-width:540px) {
  #main .visual .swiper-pagination {
    bottom: .5em;
  }
  #main .visual .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}
#main .visual .topics {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
  max-width: calc(50% - 100px);
  width: 100%;
}
#main .visual .topics .item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: 10px;
  background: #fff;
}
#main .visual .topics .item:hover {
  color: var(--c-blue);
}
#main .visual .topics .item:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--c-blue);
  border-right: 1px solid var(--c-blue);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -5px;
}
#main .visual .topics .item .col {
  width: calc(100% - 100px);
  padding-left: 1em;
}
#main .visual .topics .item .meta {
  font-weight: 700;
  font-family: 'Lato',sans-serif;
  color: var(--c-blue);
}
#main .visual .topics .item .category {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  padding: .3em .5em;
  background: var(--c-blue);
  margin-right: .4em;
}
#main .visual .topics .item .time {
  visibility: hidden;
  vertical-align: middle;
}
#main .visual .topics .item .title {
  line-height: 1.5;
  margin-top: .5em;
}
@media (max-width:1180px) {
  #main .visual .topics {
    position: static;
    max-width: 100%;
  }
}
@media (max-width:768px) {
  #main .visual .topics .item .photo {
    width: 80px;
  }
  #main .visual .topics .item .col {
    width: calc(100% - 80px);
  }
}
@media (max-width:1080px) {
  #main .visual .text .line-1 {
    font-size: 6rem;
  }
  #main .visual .text .line-2 {
    font-size: 3rem;
  }
}
@media (max-width:640px) {
  #main .visual .text .line-1 {
    font-size: 4rem;
  }
  #main .visual .text .line-2 {
    font-size: 2rem;
  }
}
@media (max-width:440px) {
  #main .visual .text .line-1 {
    font-size: 3.6rem;
  }
  #main .visual .text .line-2 {
    font-size: 2rem;
  }
}

#main .feature {
  background: var(--c-blue2);
}
#main .feature .body {
  width: 1140px;
}
#main .feature .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#main .feature .list .card {
  width: 47.37%;
  display: flex;
  background: #fff;
}
#main .feature .list .card:nth-child(2n+2) {
  margin-left: 5.26%;
}
#main .feature .list .card:nth-child(n+3) {
  margin-top: 5.26%;
}
#main .feature .list .card .photo {
  width: 55.56%;
  overflow: hidden;
}
#main .feature .list .card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s;
}
#main .feature .list .card:hover .photo img {
  transform: scale(1.05);
}
#main .feature .list .card .content {
  width: 44.44%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 1.5em;
}
#main .feature .list .card .content > div {
  max-width: 160px;
  width: 100%;
}
#main .feature .list .card .num {
  font-size: 4rem;
  font-family: 'Lato',sans-serif;
  font-weight: 700;
  line-height: 1;
  color: var(--c-blue3);
  margin-bottom: .2em;
}
#main .feature .list .card .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1.33;
}
#main .feature .list .card .btn-1 {
  width: 100%;
  height: 40px;
  margin-top: 2em;
}
@media (max-width:1080px) {
  #main .feature .list .card {
    width: 49%;
  }
  #main .feature .list .card:nth-child(2n+2) {
    margin-left: 2%;
  }
  #main .feature .list .card:nth-child(n+3) {
    margin-top: 2%;
  }
}
@media (max-width:1024px) {
  #main .feature .list .card {
    max-width: 100%;
    width: 540px;
    margin: 0 auto !important;
  }
  #main .feature .list .card ~ .card {
    margin-top: 30px !important;
  }
}
@media (max-width:768px) {
  #main .feature .list .card .photo {
    width: 45%;
  }
  #main .feature .list .card .content {
    width: 55%;
  }
}
@media (max-width:540px) {
  #main .feature .list .card .num {
    font-size: 3rem;
    font-family: 'Lato',sans-serif;
    font-weight: 700;
    line-height: 1;
    color: var(--c-blue3);
    margin-bottom: .2em;
  }
  #main .feature .list .card .title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-blue);
    line-height: 1.33;
  }
  #main .feature .list .card .btn-1 {
    width: 100%;
    height: 35px;
    margin-top: 1em;
  }
}
#main .feature .btn-1 {
  margin-left: auto;
  margin-right: auto;
}

#main .case {
  overflow: hidden;
}
#main .case .header {
  margin-bottom: 2.5em;
}
#main .case .header .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main .case .header .title-1 {
  width: 270px;
  margin-bottom: 0;
}
#main .case .header .content {
  width: calc(100% - 270px - 270px - 60px);
}
#main .case .header .btn {
  width: 270px;
}
#main .case .header .btn .btn-1 {
  width: 100%;
  justify-content: flex-start;
}
@media (max-width:1180px) {
  #main .case .header .title-1 {
    width: 180px;
    margin-bottom: 0;
  }
  #main .case .header .content {
    width: calc(100% - 180px - 220px - 50px);
  }
  #main .case .header .btn {
    width: 220px;
  }
}
@media (max-width:960px) {
  #main .case .header .body {
    flex-wrap: wrap;
  }
  #main .case .header .title-1 {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
  }
  #main .case .header .content {
    width: 100%;
  }
  #main .case .header .btn {
    margin: 1.5em auto 0;
  }
}
@media (max-width:768px) {
  #main .case .header .btn-1 {
    height: auto;
    padding: 1em;
  }
}
#main .case .case-swiper {
  position: relative;
  max-width: calc(100% - 30px);
  width: 1080px;
  margin: 0 auto;
}
#main .case .case-swiper .item {
  display: block;
  padding: 0 10px;
}
#main .case .case-swiper .item .photo {
  text-align: center;
  overflow: hidden;
}
#main .case .case-swiper .item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s;
}
#main .case .case-swiper .item .photo:hover img {
  transform: scale(1.05);
}
#main .case .case-swiper .item .title {
  font-weight: 700;
  color: var(--c-blue);
  text-align: center;
  padding-top: .4em;
}
#main .case .case-swiper .inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
#main .case .case-swiper .inner .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  width: 60px;
  height: 30px;
  background: var(--c-blue);
}
#main .case .case-swiper .inner .swiper-button-next:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
#main .case .case-swiper .inner .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  width: 60px;
  height: 30px;
  background: var(--c-blue);
}
#main .case .case-swiper .inner .swiper-button-prev:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
}
#main .case .case-swiper .inner .swiper-button-next:hover,
#main .case .case-swiper .inner .swiper-button-prev:hover {
  filter: brightness(110%);
}

#main .strength {
  background: var(--c-blue2);
}
#main .strength .header {
  margin-bottom: 2em;
}
#main .strength .header .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#main .strength .header .col-1 {
  width: 50%;
}
#main .strength .header .col-2 {
  width: 50%;
  font-size: 6rem;
  line-height: 1.5;
}
#main .strength .header .col-2 b {
  font-weight: 700;
  color: var(--c-blue);
}
#main .strength .list {
  max-width: 100%;
  width: 1600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 80px auto 0;
}
#main .strength .list .item {
  position: relative;
  width: 32.5%;
}
#main .strength .list .item .num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9;
  font-size: 7.2rem;
  font-family: 'Lato',sans-serif;
  font-weight: 700;
  line-height: 1;
  color: var(--c-blue3);
}
#main .strength .list .item .photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#main .strength .list .item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s;
}
#main .strength .list .item:hover .photo img {
  transform: scale(1.05);
}
#main .strength .list .item .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
  bottom: .5em;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
#main .strength .list .item .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 60px;
  height: 30px;
  background: #fff;
}
#main .strength .list .item .arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--c-blue);
  border-right: 1px solid var(--c-blue);
  transform: rotate(45deg);
  margin-top: -5px;
  margin-left: -5px;
}
#main .strength .list .item:hover .arrow {
  background: var(--c-blue);
}
#main .strength .list .item:hover .arrow:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media (max-width:1024px) {
  #main .strength .header .col-2 {
    font-size: 5.5rem;
  }
}
@media (max-width:960px) {
  #main .strength .header .col-2 {
    width: 45%;
    font-size: 4.5rem;
  }
}
@media (max-width:880px) {
  #main .strength .header .col-1 {
    width: 100%;
  }
  #main .strength .header .col-1 .title-1 {
    text-align: center;
  }
  #main .strength .header .col-1 .btn-1 {
    margin-left: auto;
    margin-right: auto;
  }
  #main .strength .header .col-2 {
    width: 100%;
    font-size: 4.5rem;
    text-align: center;
    margin-top: 1em;
  }
  #main .strength .list {
    max-width: 100%;
    width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  #main .strength .list .item {
    width: 100%;
  }
  #main .strength .list .item ~ .item {
    margin-top: 4em;
  }
}
@media (max-width:768px) {
  #main .strength .header .col-1 .btn-1 {
    height: auto;
    padding: 1em;
  }
  #main .strength .header .col-2 {
    font-size: 3rem;
  }
}

#main .company {
  
}
#main .company .inner {
  max-width: 100%;
  width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
#main .company .content {
  width: 50%;
}
#main .company .content > div {
  max-width: 100%;
  width: 600px;
  padding: 0 60px;
}
#main .company .content .list {
  margin-top: 2em;
}
#main .company .content .list .item {
  position: relative;
  display: block;
  padding: .75em 0;
  transition: .2s;
}
#main .company .content .list .item:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
}
#main .company .content .list .item:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-blue);
  transition: .2s;
  z-index: 1;
}
#main .company .content .list .item:hover:before {
  width: 100%;
  right: 0;
}
#main .company .content .list .item .text {
  font-size: 2rem;
  line-height: 1.33;
}
#main .company .content .list .item .text:before {
  content: attr(data-txt);
  display: block;
  font-size: 1.6rem;
  font-family: 'Lato',sans-serif;
  font-weight: 700;
  line-height: 1.33;
}
#main .company .content .list .item .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 60px;
  height: 30px;
  border: 1px solid var(--c-blue);
  transform: translateY(-50%);
}
#main .company .content .list .item .arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--c-blue);
  border-right: 1px solid var(--c-blue);
  transform: rotate(45deg);
  margin-top: -5px;
  margin-left: -5px;
}
#main .company .content .list .item:hover {
  color: var(--c-blue);
}
#main .company .content .list .item:hover .arrow {
  background: var(--c-blue);
}
#main .company .content .list .item:hover .arrow:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
#main .company .photo {
  position: relative;
  width: 50%;
  aspect-ratio: 8 / 6;
  order: -1;
}
#main .company .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: .2s;
}
#main .company .photo img.active {
  opacity: 1;
}
@media (max-width:1024px) {
  #main .company {
    padding-top: 0;
  }
  #main .company .photo {
    width: 100%;
    text-align: center;
  }
  #main .company .content {
    width: 100%;
    padding: 20px 0;
  }
  #main .company .content > div {
    margin: 1em auto 0;
  }
  #main .company .content .title-1 {
    text-align: center;
  }
  #main .company .btn-1 {
    margin: 0 auto;
  }
}
@media (max-width:768px) {
  #main .company .content > div {
    padding: 0 15px;
  }
  #main .company .btn-1 {
    height: auto;
    padding: 1em;
  }
}

#main .recruit {
  background: var(--c-blue2);
}
#main .recruit .photo img {
  width: 100%;
}
#main .recruit .content {
  padding: 60px 0;
}
#main .recruit .content .col-1 .line-1 {
  font-size: 6rem;
  line-height: 1.4;
  margin-bottom: .25em;
}
#main .recruit .content .col-1 .line-1 b {
  font-weight: 700;
  color: var(--c-blue);
}
#main .recruit .content .col-2 .btn-1 {
  justify-content: flex-start;
  padding-left: 1.25em;
}
@media (max-width:1024px) {
  #main .recruit .content .col-1,
  #main .recruit .content .col-2 {
    width: 100%;
  }
  #main .recruit .content .col-2 {
    text-align: center;
    margin-top: 40px;
  }
  #main .recruit .content .col-2 .btn-1 {
    margin: 0 auto;
  }
}
@media (max-width:768px) {
  #main .recruit .content .col-1 .line-1 {
    font-size: 5rem;
  }
  #main .recruit .content .col-2 .btn-1 {
    height: auto;
    padding: 1em;
  }
}
@media (max-width:540px) {
  #main .recruit .content {
    padding: 50px 0;
  }
  #main .recruit .content .col-1 .line-1 {
    font-size: 3.6rem;
  }
}

#main .topics {
  
}
#main .topics .header {
  width: 280px;
}
#main .topics .btn-1 {
  width: 160px;
  height: 40px;
}
#main .topics .content {
  width: calc(100% - 280px - 50px);
}
@media (max-width:1140px) {
  #main .topics .header {
    width: 240px;
  }
  #main .topics .content {
    width: calc(100% - 240px - 20px);
  }
}
@media (max-width:880px) {
  #main .topics .header,
  #main .topics .content {
    width: 100%;
  }
  #main .topics .header .title-1 {
    margin-bottom: .75em;
  }
}