@charset "UTF-8";

.top_spot {
  width: 1100px;
  margin: 30px auto;
}

@media screen and (max-width: 768px) {
  .top_spot {
    width: 100%;
  }
}

.top_spot .top_spot__title__box {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .top_spot .top_spot__title__box {
    height: 420px;
  }
}

.top_spot .top_spot__title__box .spot__title_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.top_spot .top_spot__title__box .abs_img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .top_spot .top_spot__title__box .abs_img {
    max-width: 70%;
    height: auto;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.top_spot .top_spot__title__box .top_spot__title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-weight: bold;
  background-color: #00A73Cde;
  font-size: 28px !important;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .top_spot .top_spot__title__box .top_spot__title {
    font-size: 24px !important;
    padding: 10px 0;
    z-index: 3;
  }
}

.top_spot .top_spot__title__box .top_spot__title .top_spot__title--emphasis {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  .top_spot .top_spot__title__box .top_spot__title .top_spot__title--emphasis {
    font-size: 28px;
  }
}

.top_spot .top_spot__title__box .top_spot__text {
  font-size: 28px;
  line-height: 1.75;
  margin-top: 10px;
  position: absolute;
  width: 100%;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 768px) {
  .top_spot .top_spot__title__box .top_spot__text {
    font-size: 21px;
  }
}

.top_spot .top_spot__title__box .top_spot__text .top_spot__text--emphasis {
  font-weight: bold;
  color: #ff0000;
}

.top_spot .spot_item_list {
  margin: 30px 0 0 0;
}

@media screen and (max-width: 768px) {
  .top_spot .spot_item_list {
    padding-inline: 3%;
  }
}

.top_spot .spot_item_list .spot_item {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

@media screen and (max-width: 768px) {
  .top_spot .spot_item_list .spot_item {
    flex-direction: column;
    margin: 30px 0 30px;
  }
}

.top_spot .spot_item_list .spot_item .spot_item__content {
  margin: 0 0 0 30px;
}

@media screen and (max-width: 768px) {
  .top_spot .spot_item_list .spot_item .spot_item__content {
    margin: 10px 0 0 0;
  }
}

.top_spot .spot_item_list .spot_item .spot_item__content .spot_item__title {
  font-size: 21px;
  text-align: left;
  font-weight: bold;
  color: #00A73C;
}

.top_spot .spot_item_list .spot_item .spot_item__content .spot_item__desc {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: left;
  font-weight: bold;
}

.em-red {
  color: #ff0000;
}

.top_spot .spot_item_list .spot_item .spot_item__content .chips {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}

@media screen and (max-width: 768px) {
  .top_spot .spot_item_list .spot_item .spot_item__content .chips {
    flex-direction: column;
  }
}

.top_spot .spot_item_list .spot_item .spot_item__content .chips .chips__item {
  background-color: #00A73C;
  color: #fff;
  border-radius: 15px;
  padding: 5px 30px;
  margin: 5px;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .top_spot .spot_item_list .spot_item .spot_item__content .chips .chips__item {
    width: fit-content;
    margin: 10px 0 0;
  }
}