@charset "UTF-8";

html {
  font-size: 62.5%;
}

/* sec01 */
.container01 {
  width: 100%;
  height: 45vw;
  position: relative;
  background-image: url(../images/posts/mv_news_sp.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* sec03 news*/
#sec03 {
  margin-top: 4.5vw;
}

.container__sec03 {
  letter-spacing: 0.1em;
}

.contents__sec03 {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

.f18_26 {
  position: relative;
  font-size: 1.8rem;
  color: var(--color-main);
  margin-bottom: 1rem;
  display: block;
}

.f18_26::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: var(--color-main);
  width: 100%;
}

.news__sec03 {
  flex: 1;
}

.news__sec03>ul {
  margin-bottom: 2rem;
  /* padding-inline: 2rem; */
}

.news__sec03>ul>li {
  list-style: none;
  margin-bottom: 4px;
  transition-duration: .3s;
}

.news__sec03>ul>li:hover {
  color: var(--color-main);
}

.news__sec03>ul:last-of-type {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;

  &>li {
    flex: 1;
    width: calc(25% - 1rem);
    text-align: center;
  }
}


.item__sec03 {
  border-top: solid 1px var(--color-main);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text__sec03 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.text__sec03 p {
  transition: color 0.3s ease;
}

.text__sec03 p:hover {
  color: var(--color-main);
}

.under {
  border-bottom: solid 1px var(--color-main);
  display: none;
}

.spUnder {
  border-bottom: solid 1px var(--color-main);
}

/* .box__sec03 {
  padding-top: 4.5vw;
} */

.button__news {
  display: block;
  text-align: end;
  padding-top: 9vw;
}

.bottom__sec03 {
  padding-right: 2%;
}

/* sec04 */
.btn__wrapper {
  padding: 4.5vw 0;
  /* padding-bottom: 20%; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-top: solid 1px var(--color-main);
}

.btn__wrapper p {
  color: var(--color-main);
}

.arrow__b {
  transform: rotate(180deg);
}



/* pc */
@media screen and (min-width: 999.8px) {
  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 2.6rem;
  }

  /* sec01 */
  .container01 {
    height: 27vw;
    background-image: url(../images/posts/mv_news.png);
  }

  /* .sec01__link {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 500;
  } */

  /* sec03 */
  #sec03 {
    border-top: 1px solid var(--color-main);
  }

  #sec03 .contents {
    padding: 0;
  }

  .flex__sec03 {
    display: flex;
    justify-content: space-between;
    /* gap: 7%; */
  }

  .f18_26 {
    font-size: 2rem;
    white-space: nowrap;
    display: inline-block;
  }

  .text__title {
    padding-top: 0px;
    font-size: 1.7rem;
  }

  .contents__sec03 {
    flex: 1 1 300px;
    border-left: 1px solid var(--color-main);
    padding-top: 1.5vw;
    padding-left: 1.5vw;
    margin-top: 0;
  }

  .box__sec03 {
    width: 83%;
    padding-top: 0;
    /* padding-bottom: 12rem; */
  }

  .bottom__sec03 {
    font-size: 1.8rem;
  }

  .item__sec03 {
    padding: 3vw 2rem;
  }

  .item__sec03:first-of-type {
    border-top: none;
  }

  .news__sec03>ul {
    margin-bottom: 2rem;
  }

  .news__sec03>ul>li {
    list-style: none;
    margin-bottom: 4px;
  }

  .news__sec03>ul:last-of-type {
    flex-direction: column;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;

    &>li {
      flex: 1;
      width: 100%;
      text-align: left;
    }

    #sec04 {
      padding-bottom: 0;
    }
  }


  .text__sec03 {
    width: calc(100% - 2vw);
  }

  .under {
    display: flex;
  }

  .spUnder {
    border-bottom: none;
  }

  .button__news {
    padding-top: 3vw;
  }

  /* sec09, footer */
  #sec09 {
    display: block;
    width: 100%;
  }

  .footer__container {
    height: auto;
  }

  .footer__menu {
    display: flex;
  }

  p.copy {
    padding-bottom: 40px;
  }
}