@charset "utf-8";
.health_contents {
  padding-top: 60px;
}

.health_section + .health_section {
  margin-top: 90px;
}
@media screen and (max-width: 767px){
  .health_section + .health_section {
    margin-top: 65px;
  }
}

.health_sub_section + .health_sub_section {
  margin-top: 48px;
}

.health_def_txt {
  line-height: 1.8;
}
.health_def_txt + .health_def_txt {
  margin-top: 40px;
}
@media screen and (max-width: 767px){
  .health_def_txt + .health_def_txt {
    margin-top: 30px;
  }
}

.mt40-30 {
  margin-top: 40px;
}
@media screen and (max-width: 767px){
  .mt40-30 {
    margin-top: 30px;
  }
}

.notes {
  font-size: 85%;
  line-height: 1.8;
  margin-top: 14px;
  margin-left: 1em !important;
  position: relative;
}
.notes .mark {
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
}

.health_img_center {
  display: grid;
  justify-content: center;
}

.health_flex_row {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(385px, max-content));
  gap: 30px;
}
@media screen and (max-width: 768px){
  .health_flex_row {
    margin-top: 40px;
    grid-template-columns: auto;
  }
}

.health_num_list >li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  line-height: 1.8;
}
.health_num_list >li:not(:last-of-type) {
  margin-bottom: 5px;
}

.health_sub_hd {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px){
  .health_sub_hd {
    margin-bottom: 15px;
  }
}

.health_indent_list {
  margin-top: 15px;
}
.health_indent_list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  line-height: 1.8;
}
.health_indent_list > li:not(:last-of-type) {
  margin-bottom: 10px;
}

.health_swiper_content {
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .health_swiper_content {
    margin-top: 42px;
  }
}
@media screen and (min-width: 768px){
  .health_swiper_content .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
    gap: 30px 16px;
  }
}

.health_swiper_heading {
  font-size: 16px;
  font-weight: 700;
}

.health_swiper_img {
  display: grid;
  justify-content: center;
}
.health_swiper_img >img {
  max-width: max-content;
  width: 100%;
  height: auto;
}

.health_swiper_txt {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
}

.health_swiper_btn {
  position: relative;
  background: transparent;
  border: none;
  width: 30px !important;
  height: 30px !important;
  top: calc(50% - 40px);
}
@media screen and (min-width: 768px){
  .health_swiper_btn {
    display: none !important;
  }
}
.health_swiper_btn.swiper-button-prev::after,
.health_swiper_btn.swiper-button-next::after {
  content: '';
  width: 100%;
  height: 100%;
}

.health_swiper_btn.swiper-button-prev {
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}
.health_swiper_btn.swiper-button-prev::after {
  left: 0;
  background-image: url('../n_images/activity/health_swiper_icon.svg');
}

.health_swiper_btn.swiper-button-next {
  right: 0;
  transform: translateX(50%) translateY(-50%);
}
.health_swiper_btn.swiper-button-next::after {
  right: 0;
  background-image: url('../n_images/activity/health_swiper_icon.svg');
  transform: scale(-1, 1);
}

.ta-right {
  display: grid;
  justify-content: end;
}