@charset "UTF-8";
/* news */
.news-contents {
  margin: 50px auto 100px;
}

.eye-catch {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.eye-catch img {
  width: 100%;
  aspect-ratio: 3/2;
}

.single-data {
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 30px;
}

.date {
  font-size: 1.4rem;
}

.article-cat {
  width: fit-content;
  padding: 0 10px;
  border: 1px solid #d7d7d7;
  font-size: 1.4rem;
}

.single-title {
  margin-bottom: 50px;
  font-size: 2.6rem;
}

.main-content h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 400;
}

.main-content h2::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 40px;
  margin-right: 15px;
  background-color: #0599d9;
}

.main-content h3 {
  display: block;
  margin-bottom: 20px;
  padding: 10px 25px;
  font-size: 1.8rem;
  font-weight: 400;
  background-color: #f1f1f1;
}

.main-content p {
  margin-bottom: 20px;
}

.main-content a {
  display: inline;
  text-decoration: underline;
  font-weight: 700;
  color: #0484bc;
}

.main-content figure {
  overflow: hidden;
}

.main-content figure img {
  width: 100%;
  aspect-ratio: 3/2;
}

.sns-list {
  gap: 30px;
  width: 60%;
  max-width: 400px;
  border-radius: 50px;
  padding: 10px 0;
  margin: 100px auto;
  background-color: #e5f4ff;
}

.sns-list a {
  width: 30px;
}

.related-news {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.related-wrapper {
  justify-content: space-between;
  gap: 80px;
}

.title-area {
  width: fit-content;
}

.related-title {
  margin-bottom: 30px;
  font-size: 3.6rem;
  font-weight: 700;
}

.title-area .button {
  margin: 0;
}

.related__list {
  flex: 1;
}

.related__list-item {
  justify-content: flex-start;
  gap: 50px;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #d7d7d7;
}

.related__list-item:last-child {
  border-bottom: 1px solid #d7d7d7;
}

.related__list-item .date {
  font-size: 1.6rem;
  font-weight: 300;
}

@media (max-width: 420px) {
  .single-title {
    margin-bottom: 30px;
    font-size: 2rem;
  }

  .main-content figure {
    width: 100%;
  }

  .main-content h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .main-content h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .sns-list {
    gap: 50px;
    width: 80%;
    margin: 80px auto;
  }
  .related-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .title-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .related-title {
    margin-bottom: 0;
  }

  .related__list {
    flex: auto;
    width: 100%;
  }

  .related__list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* case study */

.case-header {
  align-items: flex-start;
  gap: 30px;
  margin: 50px auto 30px;
}

.case-header .eye-catch {
  width: 40%;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}

.case-header__text-area {
  flex: 1;
}

.case-header__text-area .cat-area {
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.cat-area p {
  padding: 5px 20px;
  background-color: #eaeaea;
  font-size: 1.4rem;
  font-weight: 500;
}

.case-header__text-area .single-title {
  margin-bottom: 10px;
}

.content-area {
  margin-bottom: 50px;
}

.case-table {
  width: 100%;
  margin-bottom: 30px;
}

.case-table th,
.case-table td {
  padding: 10px 50px;
  border: 1px solid #0599d9;
  font-size: 1.8rem;
  font-weight: 500;
}

.case-table th {
  width: 30%;
  background-color: #ecf6fa;
  vertical-align: middle;
}

@media (max-width: 420px) {
  .case-header {
    flex-direction: column;
    gap: 20px;
  }

  .case-header .eye-catch {
    width: 100%;
  }

  .case-table th,
  .case-table td {
    display: block;
    width: 100%;
    padding: 10px 20px;
    border-bottom: none;
    font-size: 1.6rem;
  }

  .case-table td {
    font-weight: 400;
  }

  .case-table tr:last-child td {
    border-bottom: 1px solid #0599d9;
  }
}
