@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.attention__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #0078D7;
}
@media screen and (max-width: 768px) {
  .attention__tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: none;
  }
}
.attention__tab .tab-button {
  border-radius: 1rem 1rem 0 0;
  border-top: 1px solid #0078D7;
  border-left: 1px solid #0078D7;
  border-right: 1px solid #0078D7;
  background-color: #DEF1FF;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .attention__tab .tab-button {
    font-size: 2.8rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 48%;
    border-bottom: 1px solid #0078D7;
    border-radius: 1rem;
  }
}
.attention__tab .tab-button h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #8EC2EB;
  line-height: 1.5;
  padding: 0.8rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .attention__tab .tab-button h3 {
    font-size: 2.8rem;
  }
}
.attention__tab .tab-button.--active {
  background-color: #0078D7;
}
.attention__tab .tab-button.--active h3 {
  color: #ffffff;
}
.attention__content {
  position: relative;
}
.attention__content .area-content {
  display: none;
}
.attention__content .area-content.--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}