@charset "UTF-8";
/* CSS Document */

.sec1 {
  width: 100%;
  height: 375px;
  position: relative;
  background: url(../images/common/other-top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sec1__h1 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.6rem;
  font-weight: 700;
  color: #FFFFFF;
  width: 100%;
  text-align: center;
}


@media (max-width: 1024px) {
  .sec1__h1 {
    font-size: 2.8rem;
  }
}


@media (max-width: 600px) {
  .sec1__h1 {
    font-size: 2rem;
  }
}




.sec2 {
  width: 90%;
  max-width: 1200px;
  margin: 150px auto;
}

.sec2__h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.sec2__tagarea {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.sec2__h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #486284;
  display: block;
  width: fit-content;
  padding: 5px 10px;
  border: solid 1px #aaaaaa;
  color: #486284;
  line-height: 1;
}

.sec2__tag {
  width: 100px;
}

.sec2__image {
  margin-bottom: 150px;
}

.sec2__image img {
  object-fit: contain;
  width:100%;
  height:auto;
}

.sec2__contents {
  display: flex;
  justify-content: space-between;
  gap: 10%;
  margin-bottom: 150px;
}

.sec2__contents__article {
  flex: 1;
}

.sec2__contents__article h2,
.sec2__contents__article h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.sec2__contents__article p {
  margin-bottom: 100px;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

.sec2__contents__article p img {
  object-fit: contain;
}

.sec2__contents__article p:last-of-type {
  margin-bottom: 0;
}


.sec2__contents__list {
  width: 300px;
}

.sec2__contents__list__h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.sec2__contents__list__ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sec2__contents__list__ul__li__a__image {
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}

.sec2__contents__list__ul__li__a__image img {
  aspect-ratio: 16/9;
  object-fit: cover;
  transform-origin: center;
  transition: 0.5s;
  transition-timing-function: ease-out;
}

.sec2__contents__list__ul__li__a:hover .sec2__contents__list__ul__li__a__image img {
  scale: 1.1;
}

.sec2__contents__list__ul__li__a__h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.sec2__contents__list__ul__li__a__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sec2__button {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 12px 0;
  border-radius: 100px;
  color: #FFFFFF;
  letter-spacing: 0.05rem;
  background: #486284;
  text-align: center;
  transition: 0.5s;
  transition-timing-function: ease-out;
}

.sec2__button:hover {
  opacity: 0.5;
}

.articlesp {
  display: none;
}


@media (max-width: 1024px) {
  .sec2 {
    margin: 125px auto;
  }

  .sec2__h1 {
    font-size: 2.6rem;
  }

  .sec2__h2 {
    font-size: 1.5rem;
  }

  .sec2__image {
    margin-bottom: 125px;
  }
}


@media (max-width: 767px) {
  .sec2__contents {
    flex-direction: column;
    gap: 100px;
    margin-bottom: 0;
  }

  .sec2__contents__list {
    width: 100%;
  }

  .articlesp {
    display: block;
  }

  .articlepc {
    display: none;
  }
}


@media (max-width: 600px) {
  .sec2 {
    margin: 100px auto;
  }

  .sec2__h1 {
    font-size: 2.4rem;
  }

  .sec2__h2 {
    font-size: 1.4rem;
  }

  .sec2__image {
    margin-bottom: 100px;
  }

  .sec2__contents__article p {
    margin-bottom: 50px;
  }

  .sec2__time {
    font-size: 2rem;
  }
}