.example-top {
  padding: 40px 0 50px;
  width: 100%;
  height: 300px;
  max-height: 600px;
  background-color: #bde2eb;
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .example-top {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.example-top__title {
  font-size: 2rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #1EB8CE;
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .example-top__title {
    font-size: 1.75rem;
  }
}
.example-top__container {
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 20px auto 0;
}
.example-top__catch {
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 780px) {
  .example-top__catch {
    width: 100%;
  }
}
.example-top__caution {
  text-align: center;
}

.scroll-header {
  margin-top: 40px;
}

.tab {
  display: inline-flex;
  padding: 10px 40px;
  width: 210px;
  align-items: center;
  justify-content: center;
  background-color: #e9e9e9;
  font-size: 1.125rem;
  transition: background-color 0.4s;
  box-sizing: border-box;
}
.tab.active {
  background-color: #cbedfb;
  padding-top: 15px;
}
.tab__content {
  padding: 13px 18px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 423px;
  border: 1px solid #e9e9e9;
}
.tab__content input {
  margin-right: 5px;
}
.tab__content label {
  margin-right: 25px;
  cursor: pointer;
}
@media screen and (max-width: 780px) {
  .tab__content {
    padding: 10px;
    width: 100%;
    min-width: auto;
  }
  .tab__content > div {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: space-evenly;
  }
  .tab__content > div label {
    width: 30%;
    text-align: center;
    margin-right: 0;
    display: block;
  }
}
@media screen and (max-width: 780px) {
  .tab {
    width: 50%;
    font-size: 1rem;
    padding: 10px;
  }
}

article {
  margin-bottom: 60px;
}

.content::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -60px;
}
@media screen and (max-width: 780px) {
  .content {
    margin-top: 40px;
  }
  .content::before {
    height: 80px;
  }
}
.content__title {
  font-size: 1.5625rem;
}
.content .items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  -moz-columns: 3;
       columns: 3;
  justify-content: start;
  margin-top: 20px;
}
@media screen and (max-width: 780px) {
  .content .items {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.content .items .item {
  width: calc(33.3333333333% - 20px);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-height: 550px;
}
@media screen and (max-width: 1080px) {
  .content .items .item {
    width: 45%;
  }
}
@media screen and (max-width: 780px) {
  .content .items .item {
    width: 100%;
  }
}
.content .items .item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content .items .item__img img {
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1080px) {
  .content .items .item__img img {
    height: auto;
  }
}
@media screen and (max-width: 780px) {
  .content .items .item__img img {
    height: auto;
  }
}
.content .items .item__cont {
  padding: 13px;
  flex-grow: 1;
}
.content .items .item__logo {
  text-align: center;
  margin: 0 auto 0;
}
.content .items .item__logo img {
  max-height: 80px;
  max-width: 250px;
}
.content .items .item__disc {
  font-weight: bold;
  margin-top: 5px;
  font-size: 1.125rem;
}
.content .items .item__foot {
  bottom: 10px;
  width: 100%;
  padding: 0 13px;
  line-height: 1.4;
}
.content .items .item__sub {
  font-size: 1.0625rem;
  color: #2477C9;
  font-weight: bold;
}
.content .items .item__sub span {
  font-size: 0.875rem;
}
.content .items .item__date {
  text-align: right;
  font-size: 0.8125rem;
}/*# sourceMappingURL=example.css.map */