*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  text-align: left;
  vertical-align: top;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 960px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .is-sp {
    display: block;
  }
}

.c-wrapper {
  display: none !important;
}

.c-header {
  padding: 16px 0px;
  box-shadow: 0 1px 4px rgba(102, 102, 102, 0.1);
  position: relative;
}
.c-header > div {
  max-width: 1440px;
  width: 95%;
  margin: auto;
}

.c-main {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .c-main {
    margin-bottom: 20px;
  }
}

.c-breadcrumbs {
  color: #999;
  display: flex;
  gap: 8px;
  font-size: 14px;
  max-width: 1440px;
  width: 95%;
  margin: 16px auto 0;
  overflow: scroll;
  white-space: nowrap;
}
.c-breadcrumbs a {
  color: #1198F2;
  text-decoration: underline;
}
.c-breadcrumbs div:not(:last-child)::after {
  content: "/";
  padding-left: 10px;
}

.c-article {
  max-width: 1280px;
  width: 95%;
  margin: auto;
}
.c-article--detail {
  color: #05161A;
  margin: 80px auto 40px;
  max-width: 850px;
}
@media screen and (max-width: 960px) {
  .c-article--detail {
    width: 90%;
    margin: 40px auto 40px;
  }
}
.c-article--detail p {
  font-size: 16px;
  line-height: 2.2;
  padding: 24px 0;
}
.c-article--detail h1 {
  border-bottom: 1px #ccc solid;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  padding-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .c-article--detail h1 {
    font-size: 28px;
  }
}
.c-article--detail h2 {
  font-size: 28px;
  font-weight: 500;
  border-bottom: 3px #ccc dotted;
  padding-bottom: 20px;
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .c-article--detail h2 {
    font-size: 24px;
  }
}
.c-article--detail h3 {
  font-size: 18px;
  font-weight: 500;
  background: #E4F3F7;
  padding: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 960px) {
  .c-article--detail h3 {
    font-size: 16px;
  }
}
.c-article__caption {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  padding: 40px 40px 20px 0;
  margin-bottom: 40px;
  border-bottom: 2px #ccc solid;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-article__caption {
    padding: 20px 40px 20px 0;
  }
}
.c-article__caption::after {
  display: flex;
  content: "";
  width: 120px;
  position: absolute;
  height: 2px;
  background: #14C3DC;
  bottom: -2px;
}
.c-article__list {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .c-article__list {
    gap: 40px;
  }
}
.c-article__item {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: calc(50% - 40px);
}
@media screen and (max-width: 960px) {
  .c-article__item {
    max-width: 95%;
    margin: auto;
  }
}
.c-article__item a {
  cursor: pointer;
  display: flex;
  gap: 20px;
  align-items: center;
}
.c-article__thumb {
  max-width: 280px;
  width: 50%;
}
.c-article__detail {
  flex: 1;
  overflow: hidden;
}
.c-article__detail h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .c-article__detail h2 {
    font-size: 14px;
  }
}
.c-article__detail p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 960px) {
  .c-article__detail p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .c-article__detail p {
    display: none;
  }
}
.c-article__main {
  margin-bottom: 60px;
}
.c-article__main img {
  width: 80%;
  margin: auto;
}

footer {
  background: #02272e;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 40px;
  margin-top: 80px;
}
footer a {
  text-decoration: underline;
}
footer p {
  margin-top: 16px;
}/*# sourceMappingURL=style.css.map */