@charset "UTF-8";

/* common
=======================================================*/

/* loader
=======================================================
.loader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: calc(var(--vh) * 100);
  background-color: #fff;
  z-index: 100000;
}
.loader .txt {
  position: relative;
  font-size: clamp(18px, 1.388vw, 36px);
  font-weight: 600;
  text-align: center;
  line-height: 2em;
  overflow: hidden;
}
.loader .txt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.1em;
  background-color: var(--color_6);
  animation: loading-anime-line 0.8s ease-out 0.05s forwards;
}
@keyframes loading-anime-line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.loader .txt span {
  display: inline-block;
  transform: translateY(1.5em);
  animation: loading-anime 0.4s ease-out 1.5s forwards;
}
@keyframes loading-anime {
  0% {
    transform: translateY(1.5em);
  }
  100% {
    transform: translateY(0);
  }
}

.loader .txt span:nth-of-type(2) {
  animation-delay: 1.55s;
}
.loader .txt span:nth-of-type(3) {
  animation-delay: 1.6s;
}
.loader .txt span:nth-of-type(4) {
  animation-delay: 1.65s;
}
.loader .txt span:nth-of-type(5) {
  animation-delay: 1.7s;
}
.loader .txt span:nth-of-type(6) {
  animation-delay: 1.75s;
}
.loader .txt span:nth-of-type(7) {
  animation-delay: 1.8s;
}
.loader .txt span:nth-of-type(8) {
  animation-delay: 1.85s;
}
.loader .txt span:nth-of-type(9) {
  animation-delay: 1.9s;
}
.loader .txt span:nth-of-type(10) {
  animation-delay: 1.95s;
}*/

/*2回目以降非表示用*/
/*
.loader.active {
  opacity: 0;
  visibility: hidden;
}

main {
  position: relative;
}
main::before {
}

@media screen and (max-width: 896px) {
}

@media screen and (max-width: 600px) {
}*/

/* fv
=======================================================
記述はstyle.cssへ

*/


/* t-banner__wrap
=======================================================*/
.t-banner__wrap {
  padding: 5rem 0;
}

.t-banner__item {
  margin-top: 2.4rem;
  transition: 0.3s;
}
.t-banner__item:first-of-type {
  margin-top: 0;
}

.t-banner__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.t-banner__item:hover,
.t-banner__item:active,
.t-banner__item:focus {
  opacity: 0.6;
  transform: scale(0.99);
}

@media screen and (max-width: 896px) {
  .t-banner__item {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .t-banner__wrap {
    padding: 2.5rem 0;
  }
  .t-banner__item {
    margin-top: 1rem;
  }
}


/* news
=======================================================*/
#news {
  position: relative;
  padding: 8rem 0 10rem;
}

#news::before {
  content: "";
  position: absolute;
  top: 8rem;
  right: calc(50% + 28rem);
  width: 50rem;
  height: 42.5rem;
  background-color: var(--color_3);
  border-radius: 5rem;
  z-index: -1;
}

.news__ttl {
  margin: 8rem auto 0 0;
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--color_1);
}
.news__ttl span {
  font-size: 2rem;
}

.news__flex {
  display: flex;
}

.news__body {
  width: 74rem;
  margin: 16rem 0 0 11rem;
}

.news__item {
  border-top: var(--color_3) 1px solid;
}
.news__item:last-of-type {
  border-bottom: var(--color_3) 1px solid;
}

.news__item a {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  height: 100%;
  padding: 5rem 6rem 5rem 3.5rem;
  font-size: 1.8rem;
  transition: 0.3s;
}

.post__category {
  display: inline-block;
  padding: 0.1em 0.5em 0;
  font-size: 80%;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.post__category.-info {
  background-color: var(--color_5);
}

.post__category.-blog {
  background-color: #ccc;
}

.post__date {
  margin-left: auto;
  white-space: nowrap;
}

/*ホバー時*/
.news__item a:hover {
  transform: translateX(-1rem);
}
.news__item a:hover .post__ttl,
.news__item a:hover .post__date {
  color: var(--color_3);
}

.news__btn-wrap {
  width: 20rem;
  height: 6rem;
  margin: 6rem 0 0 auto;
}
.news__btn-wrap a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 3rem;
  align-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color_3);
  border: var(--color_3) 2px solid;
  border-radius: 10rem;
  transition: 0.3s;
}
.news__btn-wrap a::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
/*ホバー時*/
.news__btn-wrap a:hover {
  color: var(--color_1);
  background-color: var(--color_3);
}

@media screen and (max-width: 896px) {
  #news::before {
    right: auto;
    left: 0;
    width: 40%;
    height: 22rem;
    border-radius: 0 3rem 3rem 0;
  }
  .news__flex {
    display: block;
  }
  .news__ttl {
    margin: 4rem auto 0 0;
  }
  .news__body {
    width: 100%;
    margin: 14rem 0 0;
  }
}
@media screen and (max-width: 600px) {
  #news {
    padding: 5rem 0;
  }
  #news::before {
    top: 5rem;
    width: 60%;
    height: 13rem;
    border-radius: 0 1.5rem 1.5rem 0;
  }
  .news__ttl {
    margin: 2.5rem auto 0 0;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
  }
  .news__ttl span {
    font-size: 1.6rem;
  }
  .news__body {
    margin: 8rem 0 0;
  }
  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 2rem 0;
    font-size: 1.6rem;
  }
  .news__btn-wrap {
    margin: 4rem auto 0;
  }
}