#visual {
  background: url("../img/what/visual.png") no-repeat;
  background-size: cover;
  background-position: center;
}
#section01 .inner .img2 {
  margin: 60px auto 0;
}
#section01 .inner .img2 video {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #section01 .inner .img2 {
    margin: 30px auto 0;
  }
}

#section02 {
  background: url("../img/what/s02-01.png");
  background-size: cover;
  background-position: center;
  height: 300px;
}
@media screen and (max-width: 1024px) {
  #section02 {
    height: 140px;
  }
}

#section03 {
  background: linear-gradient(161deg, #419fe7 0%, #1e63a0 100%);
}
#section03 .inner {
  max-width: 1100px;
}
#section03 .list {
  margin: 60px auto 0;
}
#section03 .list ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#section03 .list ul li:nth-child(odd) {
  flex-direction: row-reverse;
}
#section03 .list ul li .img {
  width: 345px;
}
#section03 .list ul li .txt {
  width: calc(100% - 400px);
}
#section03 .list ul li .txt div {
  font-family: "nb";
  font-size: 28px;
  color: #fff;
}
#section03 .list ul li .txt p {
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
  word-break: keep-all;
  font-family: "nl";
}

@media screen and (max-width: 1024px) {
  #section03 .list {
    margin: 30px auto 0;
  }
  #section03 .list ul li {
    display: block;
    margin-top: 30px;
  }
  #section03 .list ul li:first-child {
    margin-top: 0;
  }
  #section03 .list ul li:nth-child(odd) {
    flex-direction: initial;
  }
  #section03 .list ul li:nth-child(even) {
    text-align: right;
  }
  #section03 .list ul li:last-child {
    text-align: center;
  }
  #section03 .list ul li .img {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }
    #section03 .list ul li .img.small {
    max-width: 250px;
  }
  #section03 .list ul li .txt {
    max-width: 340px;
    width: 100%;
    margin: 10px auto 0;
  }
  #section03 .list ul li .txt div {
    font-size: 20px;
  }
  #section03 .list ul li .txt p {
    font-size: 13px;
    margin-top: 10px;
  }
}

#section04 {
  background: linear-gradient(161deg, #419fe7 0%, #1e63a0 100%),
    url("../img/what/bg.png") no-repeat center center / cover;
}
#section04 .inner .list {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  display: grid;
  grid-template-areas:
    "a b"
    "d c";
}
.item-a {
  grid-area: a;
}
.item-b {
  grid-area: b;
}
.item-c {
  grid-area: c;
}
.item-d {
  grid-area: d;
}
#section04 .inner .list .box {
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}
#section04 .inner .list .box:nth-child(1):after,
#section04 .inner .list .box:nth-child(4):after,
#section04 .inner .list .box:nth-child(5):after {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  border-top: 1px dashed #fff;
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
#section04 .inner .list .box:nth-child(2):after,
#section04 .inner .list .box:nth-child(4):before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  border-left: 1px dashed #fff;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
#section04 .inner .list .box .img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section04 .inner .list .box .subject {
  color: #fff;
  font-family: "nb";
  font-size: 28px;
  margin: 10px 0;
}
#section04 .inner .list .box p {
  color: #fff;
  font-size: 16px;
  word-break: keep-all;
  font-family: "nl";
}
#section04 .inner .list .contact-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: calc((100% / 2) - 90px);
  gap: 10px;
  font-size: 16px;
  font-family: "nb";
  border: 1px solid #fff;
  border-radius: 30px;
  width: 180px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 6px 0 15px;
}

@media screen and (max-width: 1024px) {
  #section04 .inner .list {
    margin: 30px auto 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    grid-template-areas: initial;
  }
  .item-a {
    grid-area: initial;
  }
  .item-b {
    grid-area: initial;
  }
  .item-c {
    grid-area: initial;
  }
  .item-d {
    grid-area: initial;
  }
  #section04 .inner .list .box {
    border-radius: 10px;
    padding: 10px;
  }
  #section04 .inner .list .box:nth-child(1):after,
  #section04 .inner .list .box:nth-child(4):after,
  #section04 .inner .list .box:nth-child(5):after {
    display: none;
  }
  #section04 .inner .list .box:nth-child(2):after,
  #section04 .inner .list .box:nth-child(4):before {
    display: none;
  }

  #section04 .inner .list .box:nth-child(1):after,
  #section04 .inner .list .box:nth-child(2):after,
  #section04 .inner .list .box:nth-child(3):after,
  #section04 .inner .list .box:nth-child(4):after,
  #section04 .inner .list .box:nth-child(5):after {
    content: "";
    display: block !important;
    width: 1px;
    height: 30px;
    border-left: 1px dashed #fff;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    right: initial;
    top: initial;
  }

  #section04 .inner .list .box .img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  #section04 .inner .list .box .subject {
    font-size: 20px;
  }
  #section04 .inner .list .box p {
    font-size: 13px;
  }
  #section04 .inner .list .contact-btn {
    position: initial;
    left: initial;
    bottom: initial;
    font-size: 14px;
    width: 180px;
    height: 50px;
    margin: 0 auto;
  }
}

#section05 {
  background: linear-gradient(161deg, #419fe7 0%, #1e63a0 100%);
}
#section05 .list {
  margin-top: 60px;
}
#section05 .list ul li {
  border-bottom: 1px solid #fff;
  padding: 30px 0;
  background: url("../img/common/move-section.png") no-repeat;
  background-size: 30px;
  background-position: right 0 top 30px;
}
#section05 .list ul li div {
  color: #fff;
  font-size: 20px;
  font-family: "nb";
  padding: 0 100px 0 0;
  cursor: pointer;
}
#section05 .list ul li p {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  margin-top: 15px;
  display: none;
  font-family: "nl";
}

@media screen and (max-width: 1024px) {
  #section05 .list {
    margin-top: 30px;
  }
  #section05 .list ul li {
    padding: 10px 0;
    background: url("../img/common/move-section.png") no-repeat;
    background-size: 22px;
    background-position: right 0 top 10px;
  }
  #section05 .list ul li div {
    font-size: 15px;
    font-family: "nm";
    padding: 0 50px 0 0;
  }
  #section05 .list ul li p {
    padding: 10px;
    margin-top: 10px;
    font-family: "nl";
    font-size: 13px;
  }
}
