@charset "UTF-8";
/*------------------------------------------------------
    NEWS一覧・詳細ページ用scss
------------------------------------------------------*/
/*------------------------------------------------------
    Breakpoint　値はサイトに合わせて変更しましょう
------------------------------------------------------*/
/*------------------------------------------------------
    このファイルは基本触らない
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
/*------------------------------------------------------
    NEWS一覧・詳細ページ用scss
------------------------------------------------------*/
/*------------------------------------------------------
    NEWS一覧・詳細ページ用scss
------------------------------------------------------*/
/*------------------------------------------------------
    NEWS一覧・詳細ページ用scss
------------------------------------------------------*/
.news__container {
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  overflow-y: hidden;
  transition: max-height 0.5s ease;
}
.news__container .news__item {
  display: flex;
  gap: 22px;
}
.news__container .news__item p {
  color: #000;
}
.news__container .news__item:hover p {
  color: #00E0A2;
}

a.btn {
  display: block;
  width: 200px;
  text-align: center;
  margin: 0 auto;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 1.3rem;
  font-family: "Lora", serif;
  padding: 9px 18px;
  color: #000;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  width: 210px;
  margin: 44px 0 0 auto;
  justify-content: center;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
a.btn:hover {
  background-color: #000;
  color: #fff;
}
a.btn span {
  height: 6px;
  width: 7px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #000;
  transform: translateY(1px);
  transition: 0.3s;
}
a.btn:hover span {
  background-color: #fff;
}
a.btn.active span {
  transform: translateY(1px) rotate(180deg);
}

.news__article__title .date {
  font-size: 1.3rem;
  font-family: "Lora", serif;
}
.news__article__title h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 70px;
}
.news__article__contents {
  line-height: 2;
}
.news__article__contents a {
  color: #00956C;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.news__article__contents a:hover {
  color: #00E0A2;
}
.news__article__contents ul, .news__article__contents ol {
  margin-top: 30px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news__article__contents ul li, .news__article__contents ol li {
  position: relative;
}
.news__article__contents ul li::before, .news__article__contents ol li::before {
  content: "";
  position: absolute;
  background-color: #000;
  height: 6px;
  width: 6px;
  left: -10px;
  top: 1.05em;
}

a.mt-110 {
  margin-top: 110px;
}

@media screen and (min-width: 768px) and (max-width: 974px) {
  .news__article__title h1 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  .news__article__contents ul {
    margin-top: 20px;
    gap: 20px;
  }
  a.mt-110 {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .news__container {
    flex-direction: column;
    gap: 25px;
    padding-bottom: 25px;
  }
  .news__container .news__item {
    flex-direction: column;
    gap: 10px 22px;
  }
  a.btn {
    margin: 44px auto 0;
  }
  .news__article__title h1 {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }
  .news__article__contents ul {
    margin-top: 20px;
    gap: 20px;
  }
  a.mt-110 {
    margin-top: 50px;
  }
}
.sponly{
  display: none;
}
.pconly{
  display: block;
}
@media screen and (max-width: 768px){
  .sponly{
    display: block;
  }
  .pconly{
    display: none;
  }
}