/* import */
@import url(./common.css);
/* //import */

#Visual {
  width: 100%;
  min-height: 280px;
  position: relative;
  padding: 80px 0 30px;
  background-color: #33a7ed;
  background-image: url(../images/sub/visual_sub.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 150%;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  animation: subVisual_zoom 1.2s ease forwards;
}

#Visual span {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.443px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(50px);
  animation: visual_translate 0.55s ease forwards;
  animation-delay: 0.8s;
}

#Visual h1 {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(20, 113, 188, 0.5);
  font-size: 50px;
  font-weight: 600;
  line-height: 125%; /* 73.95px */
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(50px);
  animation: visual_translate 0.55s ease forwards;
  animation-delay: 0.8s;
}

#Visual h1::after {
  content: "";
  width: 24px;
  height: 6px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(20, 113, 188, 0.5);
  display: block;
}

@keyframes subVisual_zoom {
  100% {
    background-size: 88%;
  }
}
@keyframes visual_translate {
  100% {
    transform: translate(0);
    opacity: 1;
  }
}

#Lead {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition-delay: 0.8s;
}

#Lead h2 {
  color: #0d2156;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  line-height: 145%; /* 39.15px */
  margin-bottom: 10px;
}

#Lead p {
  color: #0d2156;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

#Lead.pc span,
#Lead.pc p {
  text-align: center !important;
}

#Lead a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 0 20px;
  background: #0d2156;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  width: fit-content;
  height: 50px;
}

@media (max-width: 1024px) {
  #Lead h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .sub_icon {
    width: 30px;
  }
  #Lead h2 {
    font-size: 20px;
  }

  #Lead p {
    font-size: 16px;
  }
}

#Lead ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: var(--main-width);
  margin-top: 40px;
}

#Lead ul li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 120px) / 4);
  padding: 10px;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: 0.25s ease;
}

#Lead ul li img {
  margin-bottom: 10px;
  max-height: 200px;
  object-fit: cover;
}

#Lead ul li span,
#Lead ul li p {
  padding: 0 10px;
}
#Lead ul li span {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 145%;
  transition: 0.25s ease;
}
#Lead ul li:hover {
  border: 3px solid #0672cb;
}

#Lead ul li:hover span {
  color: #0672cb;
}

#Lead ul li p {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 155%; /* 26.35px */
  margin-top: 8px;
  margin-bottom: 20px;
  text-align: left;
}

#Lead ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0057c7;
  width: 100%;
  height: 48px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 150%;
  margin-top: auto;
}

#Solution {
  width: 100%;
  max-width: var(--main-width);
  background: #f0f6f9;
  padding: 60px 15px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 60px;
}

#Solution h2,
#Solution p {
  text-align: left;
}

#Solution h2 {
  color: #0d2155;
  font-size: 35px;
  font-weight: 400;
  line-height: 145%; /* 50.75px */
  margin-bottom: 10px;
  transform: translateX(-45px);
}

#Solution p {
  color: #0d2155;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}

#Solution ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 60%;
  max-width: 700px;
}

#Solution ul li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 2);
  flex-shrink: 0;
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
}

#Solution a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0057c7;
  width: fit-content;
  height: 48px;
  width: 100%;
  max-width: 280px;
  margin-top: 20px;
  padding: 0 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

#Board {
  width: 100%;
  max-width: var(--main-width);
  padding: 30px 0;
  margin: 0 auto;
  position: relative;
}
#Board h2,
#Reason h2,
#News h2 {
  color: #0d2155;
  text-align: left;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2; /* 50.75px */
  margin-bottom: 45px;
  justify-content: center;
}

#Board nav,
#News nav {
  display: flex;
  margin: 45px 0 30px;
}

#Board nav button,
#News nav button {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cbeeff;
  color: #0672cb;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 145%; /* 34.8px */
  height: 60px;
  transition: 0.3s ease;
}

#Board nav button.is_active,
#News nav button.is_active {
  color: #fff;
  background: #0057c7;
}

#Board div,
#News > div {
  width: 100%;
  background: #f0f6f9;
}

#Board div {
  padding: 50px;
}
#Board div ul {
  flex-wrap: wrap;
  gap: 65px;
  display: none;
}

#Board div ul.is_active {
  display: flex;
}

#Board div ul li {
  width: calc((100% - 130px) / 3);
  background: #fff;
  box-shadow: 0px 0px 26.125px 0px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: 0.25s ease;
}

#Board div ul li:hover {
  border: 3px solid #0672cb;
}

#Board div ul li a {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 20px;
}

#Board div ul li a img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 15px;
}

#Board div ul li a span {
  color: #0672cb;
  font-size: 24px;
  font-weight: 600;
  line-height: 145%; /* 34.8px */
  padding: 0 20px;
}

#Board div ul li a p {
  color: #666;
  font-size: 23.375px;
  font-weight: 400;
  line-height: 155%; /* 36.231px */
  margin-top: 10px;
  padding: 0 20px;
}

#Board div ul li a p:hover {
  color: #0672cb;
}

#News {
  width: 100%;
  max-width: var(--main-width);
  padding: 30px 0;
  margin: 0 auto;
  position: relative;
}

#News .swiper {
  flex-wrap: wrap;
  display: none;
  overflow: visible;
  padding: 50px;
}

#News .swiper.is_active {
  display: flex;
}

#News .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#News .swiper-wrapper {
  display: flex;
}

#News .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

#News .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#News .swiper li {
  width: calc((100% - 100px) / 3);
  max-height: 415px;
  background: #fff;
  box-shadow: 0px 0px 26.125px 0px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: 0.25s ease;
}

#News .swiper li:hover {
  border: 3px solid #0672cb;
}

#News .swiper li a {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 20px;
}

#News .swiper li a img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  margin-bottom: 15px;
}

#News .swiper li a span {
  color: #0672cb;
  font-size: 20px;
  font-weight: 600;
  line-height: 145%; /* 34.8px */
  padding: 0 20px;
  text-align: left;
}

#News .swiper li a p {
  color: #666;
  font-size: 22px;
  font-weight: 400;
  line-height: 155%; /* 36.231px */
  margin-top: 10px;
  padding: 0 20px;
  text-align: left;
}

#News .swiper li a p:hover {
  color: #0672cb;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  color: transparent;
  font-size: 0;
  box-sizing: content-box;
}

.swiper-button-next {
  right: -0;
}
.swiper-button-prev {
  left: -0;
}

.swiper-pagination {
  display: flex;
  position: static;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #cbeeff;
  border-radius: 50%;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #0057c7;
}

@media (max-width: 1800px) {
  .swiper-button-next {
    right: 15px;
  }
  .swiper-button-prev {
    left: 15px;
  }
}

@media (max-width: 1024px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .swiper-pagination {
    gap: 18px;
    margin-top: 30px;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
    background-size: contain;
}

.swiper-button-next:after {
  background-image: url(../images/icon/pagination_r.svg);
}

.swiper-button-prev:after {
  background-image: url(../images/icon/pagination_l.svg);
}



@media (max-width: 768px) {
   .swiper-button-next,
  .swiper-button-prev {
width: 40px;
height: 40px;
border-radius: 100px;
background: #CBEEFF;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    width: 12px;
    height: 20px;
}
  .swiper-button-next {
    right: 2px;
  }
  .swiper-button-prev {
    left: 2px;
  }


}

#Reason {
  width: 100%;
  max-width: var(--main-width);
  padding: 60px 0;
  margin: 0 auto;
}

#Reason ul {
  width: 100%;
  background: #f0f6f9;
  gap: 40px;
  padding: 60px;
  display: flex;
}

#Reason ul li {
  padding: 15px;
  background: #fff;
  border: 3px solid transparent;
  box-shadow: 0px 0px 31.64px 0px rgba(0, 0, 0, 0.1);
  width: 50%;
  display: flex;
  justify-content: space-between;
  transition: 0.25s ease;
}

#Reason ul li p {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 145%; /* 40.6px */
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 320px;
  transition: 0.25s ease;
  padding: 25px;
}

#Reason ul li:hover {
  border: 3px solid #0672cb;
}
#Reason ul li:hover p {
  color: #0672cb;
}

#Reason ul li a {
  width: 200px;
  height: 50px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0057c7;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  margin-top: auto;
}

@media (max-width: 1600px) {
  #Board div ul {
    gap: 40px;
  }
  #Board div ul li {
    width: calc((100% - 130px) / 3);
  }

  #News .swiper-slide {
    gap: 20px;
  }

  #News .swiper {
    padding: 30px;
  }

  #News .swiper li {
    width: calc((100% - 40px) / 3);
  }

  #News .swiper li a img {
    height: auto;
    width: 100%;
  }

  #Board div ul li a span,
  #News .swiper li a span {
    font-size: 20px;
  }

  #Board div ul li a p,
  #News .swiper li a p {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  #Visual h1 {
    font-size: 46px;
  }
  #Visual span {
    font-size: 20px;
  }

  #Lead ul,
  #Board div ul {
    gap: 40px;
  }

  #Lead ul li,
  #Board div ul li {
    width: calc((100% - 40px) / 2);
  }

  #Solution {
    flex-direction: column;
    gap: 30px;
  }

  #Solution ul {
    width: 100%;
  }

  #Solution * {
    text-align: center;
  }

  #Solution h2 {
    transform: none;
  }

  #Solution a {
    margin: 30px auto 0;
  }
  #Solution h2,
  #Solution p {
    text-align: center;
  }

  #Reason ul li p {
    font-size: 20px;
    padding: 0 10px;
  }

  #Reason ul li img {
    width: 160px;
  }

  #Reason ul li a {
    font-size: 18px;
  }
  #Board nav button,
  #News nav button {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  #Visual h1 {
    font-size: 42px;
  }
  #Visual span {
    font-size: 18px;
  }

  #Board div,
  #Reason ul {
    padding: 30px;
  }

  #Lead ul,
  #Board div ul,
  #Reason ul {
    gap: 20px;
  }

  #Lead ul li,
  #Board div ul li,
  #News .swiper li {
    width: calc((100% - 20px) / 2);
  }

  #Board div ul li a span,
  #News .swiper li a span {
    font-size: 20px;
  }

  #Board div ul li a p,
  #Board div ul li a {
    padding: 0 0 20px;
  }

  #Board div ul li a img {
    height: 140px;
  }

  #Solution {
    padding: 30px 15px;
  }

  #Solution h2 {
    font-size: 24px;
  }

  #Solution p {
    font-size: 16px;
  }

  #Solution ul {
    gap: 30px;
  }

  #Lead ul li img {
    height: fit-content;
  }

  #Reason ul li p {
    width: auto;
    font-size: 16px;
  }

  #Reason ul li a {
    width: 100%;
    max-width: 200px;
    height: 40px;
    font-size: 16px;
  }

  #Reason ul li img {
    width: 120px;
  }

  #Board nav button:nth-child(1) {
    border-right: 5px solid #fff;
  }
}

@media (max-width: 768px) {
  #Visual {
    min-height: 164px;
    background-size: cover;
    animation: none;
  }

  #Visual span,
  #Visual h1 {
    animation-delay: unset !important;
  }

  #Visual h1 {
    font-size: 30px;
  }
  #Visual span {
    font-size: 15px;
    margin-bottom: 10px;
  }

  #Lead ul li,
  #Board div ul li,
  #News .swiper li {
    width: 100%;
  }

  #Lead {
    transition-delay: 0.45s;
  }

  #Lead a,
  #Solution a,
  #Lead ul li a {
    font-size: 16px;
  }

  #Solution ul {
    gap: 15px;
  }

  #Solution ul li {
    width: 50%;
  }

  #Board h2,
  #Reason h2,
  #News h2 {
    font-size: 20px;
    margin-bottom: 0px;
  }

  #Board nav {
    margin-top: 20px;
  }

  #News .swiper li a img {
    height: auto;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
  }

  #News .swiper li a span,
  #News .swiper li a p {
    padding: 0;
  }

  #Board nav button,
  #News nav button {
    font-size: 15px;
    height: 40px;
  }

  #Board div,
  #Reason ul {
    padding: 20px;
  }

  #News .swiper {
    padding: 15px;
  }

  #Board div ul li a span {
    font-size: 18px;
  }
  #News .swiper li a span {
    font-size: 14px;
    text-align: center;
  }
  #News .swiper li a p {
    font-size: 16px;
  }

  #Board div ul li a p {
    font-size: 16px;
    margin-top: 5px;
  }

  #Reason ul {
    flex-direction: column;
  }

  #Reason ul li {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 550px) {
  #Reason ul li {
    flex-direction: column-reverse;
    height: fit-content;
    align-items: center;
  }

  #Reason ul li img {
    width: 180px;
    margin-bottom: 20px;
  }

  #Reason ul li p {
    gap: 10px;
  }

  #Reason ul li a {
    max-width: 100%;
  }
}
