@charset "UTF-8";
/*メインカラー*/
/*サブカラー*/
/*タブレット*/
/*スマホ*/
* { /*全部*/
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  letter-spacing: 0.15em;
}

html {
  width: 100%;
  height: auto;
  scroll-behavior: smooth;
  font-size: 0.5208333333vw;
  letter-spacing: 0.15em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 599px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  height: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.15em;
}

a, button {
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
}

.font-area {
  font-family: "area-normal", sans-serif;
}

.js-scroll-animation {
  opacity: 0;
  transition: 1s translate ease-in-out, opacity 1s ease-in-out;
  translate: 0 10rem;
  visibility: hidden;
}

.is-active {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.main .news {
  /* ─────────────────────────────────────────
    画面幅ごとの表示切り替え
    ───────────────────────────────────────── */
}
.main .news__kv {
  position: relative;
  height: 46.5rem;
}
@media screen and (max-width: 599px) {
  .main .news__kv {
    height: 20.8rem;
  }
}
.main .news__kv--img {
  width: 100%;
  height: 100%;
}
.main .news__kv--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .news__kv h1 {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 25.1rem;
  max-width: 170rem;
  width: 100%;
  font-size: 6rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  padding: 0 5.3rem 0;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .main .news__kv h1 {
    font-size: 3.5rem;
    top: 8.7rem;
    padding: 0 2rem;
  }
}
.main .news__container {
  max-width: 159rem;
  width: 100%;
  display: flex;
  margin: 8.9rem auto;
}
.main .news__container h2 {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: #080808;
  margin: 0 6rem 0 0;
  letter-spacing: 0.15em;
}
.main .news__container button {
  padding: 0.6rem 3.8rem 0.6rem 3.8rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  border-radius: 100vw;
  margin-right: 2.18rem;
  letter-spacing: 0.15em;
  font-size: 2rem;
  font-weight: 500;
  color: #080808;
}
.main .news__container button.is-active {
  box-shadow: 0;
  box-shadow: inset 0 0 2rem rgba(255, 255, 255, 0.3);
  color: #fff;
  background-color: #13AE68;
}
.main .news__category-sp {
  display: none;
  margin: 4rem 0;
  /* ─── トグルボタン ─── */
  /* ─── アイコン（三角） ─── */
  /* ─── 開閉パネル ─── */
}
.main .news__category-sp__toggle {
  width: 33rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75em 1em;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  margin: auto;
  /* 開いた状態 */
}
.main .news__category-sp__toggle.is-open + .news__category-sp__panel {
  max-height: 500px;
}
.main .news__category-sp__toggle.is-open .news__category-sp__icon {
  transform: rotate(-135deg);
}
.main .news__category-sp__icon {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.main .news__category-sp__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.main .news__category-sp__panel.is-open {
  max-height: 500px;
}
.main .news__category-sp__panel button {
  display: block;
  width: 33rem;
  text-align: left;
  padding: 0.75em 1em;
  border-bottom: 1px solid #eee;
  background: #fafafa;
  margin: auto;
}
@media (max-width: 599px) {
  .main .news .news__container {
    display: none;
  }
  .main .news .news__category-sp {
    display: block;
  }
}
.main .news .posts {
  max-width: 159rem;
  width: 100%;
  margin: 0 auto 10.5rem;
}
@media screen and (max-width: 599px) {
  .main .news .posts {
    max-width: 33rem;
    margin: 0 auto 4rem;
  }
}
.main .news .posts .post {
  width: 100%;
  display: flex;
  padding: 4.2rem 0;
  border-top: #D5D5D5 0.1rem solid;
}
@media screen and (max-width: 599px) {
  .main .news .posts .post {
    padding: 0.86rem 0;
  }
}
.main .news .posts .post:last-child {
  border-bottom: #D5D5D5 0.1rem solid;
}
.main .news .posts .post .content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.main .news .posts .post .content .img {
  max-width: 43.1rem;
  width: 100%;
  overflow: hidden;
  border-radius: 2.2rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  .main .news .posts .post .content .img {
    max-width: 8.693rem;
    height: 7.08rem;
    border-radius: 0.5rem 0 0.7rem 0;
  }
}
.main .news .posts .post .content .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .news .posts .post .content .text {
  width: 100%;
  max-width: 104.7rem;
  margin: auto;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
@media screen and (max-width: 599px) {
  .main .news .posts .post .content .text {
    max-width: 100%;
    margin: 0 0 0 1.7rem;
  }
}
.main .news .posts .post .content .text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #080808;
  padding: 0 0 4.83rem 0;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .main .news .posts .post .content .text h3 {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.main .news .posts .post .content .text .item {
  max-width: 30.48rem;
  width: 100%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .main .news .posts .post .content .text .item {
    max-width: 100%;
    font-size: 0.6rem;
    margin: 0.8rem 0 0 0;
  }
}
.main .news .posts .post .content .text .item h4 {
  width: 12.859rem;
  height: 3.515rem;
  color: #13AE68;
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #13AE68 solid 0.1rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .main .news .posts .post .content .text .item h4 {
    width: 6rem;
    height: 1.3rem;
    border-radius: 0;
    color: #fff;
    background-color: #080808;
    border: none;
  }
}
.main .news .posts .post .content .text .item small {
  font-size: 1.6rem;
  font-weight: 400;
  color: #383635;
}
@media screen and (max-width: 599px) {
  .main .news .posts .post .content .text .item small {
    font-size: 0.6rem;
  }
}
.main .news .posts .post .content:hover .img {
  scale: 1.05;
}
.main .news .posts .post .content:hover .text {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */