.section01 {
  padding-bottom: 20px;
}

.photoCardList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.photoCardList .item {
  width: 50%;
  height: 360px;
  position: relative;
  overflow: hidden;
}

.photoCardList .photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s ease;
}

.photoCardList .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 35px 40px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.photoCardList .item:nth-child(2n+1) .txt {
  padding-left: 260px;
}

.circleCardList {
  margin: 15px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.circleCardList .item {
  width: 333px;
  text-align: center;
}

.circleCardList .photo {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.circleCardList .tag {
  display: inline-block;
  min-width: 224px;
  height: 72px;
  line-height: 72px;
  background: #0043D5;
  border-radius: 36px;
  font-size: 24px;
  text-align: center;
  color: #fff;
  padding: 0 30px;
}

@media all and (min-width: 1240px) {
  .photoCardList .item:hover .photo {
    transform: scale(1.1);
  }
  .circleCardList .item:hover .photo {
    transform: translateY(-15px);
  }
}

@media all and (max-width: 1239px) {
  .topBanner .textBox {
    width: 100%;
    padding: 0 16px;
    text-align: left !important;
  }
  .section01 {
    padding-bottom: 10px;
  }
  .section01 .comTitle .ttl {
    line-height: 1;
  }
  .section01 .comTitle .subTtl {
    letter-spacing: -0.2px;
  }
  .circleCardList {
    margin: 5px -5px -10px;
    flex-wrap: wrap;
  }
  .circleCardList .item {
    width: 50%;
    padding: 10px 5px;
  }
  .circleCardList .photo {
    width: 100%;
    margin-bottom: 10px;
  }
  .circleCardList .tag {
    display: block;
    width: 100%;
    min-width: 0;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding: 0 10px;
  }
}

@media all and (min-width: 0) and (max-width: 749px) {
  .photoCardList {
    display: block;
  }
  .photoCardList .item {
    width: 100%;
    height: auto;
    position: relative;
  }
  .photoCardList .photo {
    position: static;
    height: auto;
  }
  .photoCardList .txt {
    padding: 20px 16px;
    font-size: 12px;
  }
  .photoCardList .item:nth-child(2n+1) .txt {
    padding-left: 16px;
  }
}

@media all and (min-width: 750px) and (max-width: 1239px) {
  .photoCardList .item {
    width: 50%;
    height: 200px;
  }
  .photoCardList .txt {
    padding: 10px 10px;
    font-size: 16px;
    line-height: 1.2;
  }
  .photoCardList .item:nth-child(2n+1) .txt {
    padding-left: 10px;
  }
  .circleCardList .item {
    width: 25%;
  }
  .circleCardList .tag {
    display: inline-block;
    width: auto;
    min-width: 120px;
    padding: 0 25px;
  }
}
