@charset "UTF-8";
/*
 * メディアクエリ用ミックスイン
 *
 * $from: 指定した画面幅を超過した状態をブレークポイントに設定する
 * $until: 指定した画面幅以下の状態をブレークポイントに設定する
 */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 7rem;
  background-color: var(--color-black00);
}
.header img {
  flex-shrink: 0;
  width: 22.6rem;
  max-width: 100%;
  height: 4rem;
  aspect-ratio: 113/20;
}
@media (max-width: 767.98px) {
  .header {
    height: 5.5rem;
  }
  .header img {
    height: 3rem;
  }
}

.l-inner {
  position: relative;
  display: flex;
  justify-content: center;
  background-image: url("/wasureranneyo/assets/images/bg-base.jpg");
  background-attachment: fixed;
}
@media (max-width: 1059.98px) {
  .l-inner {
    display: block;
  }
}

.l-center {
  width: 100%;
  max-width: 1060px;
  border: 1px solid var(--color-black00);
  border-radius: 0 0 15px 15px;
}

.release__img {
  max-width: 1060px;
}

.news {
  background: var(--color-red00);
}
.news__title {
  width: 28.6rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: 0 auto;
  border-top: 1px solid var(--color-black00);
}
@media (max-width: 767.98px) {
  .news__title {
    width: 53.3333333333vw;
    padding-top: 2.177rem;
    padding-bottom: 2.177rem;
  }
}
.news__title-wrapper {
  border-bottom: 1px solid var(--color-black00);
}
.news__list {
  padding-inline: 8rem;
  padding-bottom: 6rem;
}
@media (max-width: 1059.98px) {
  .news__list {
    padding-inline: 2.4rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 767.98px) {
  .news__list {
    padding-inline: 1.6rem;
    padding-bottom: 4rem;
  }
}
.news__list-date {
  display: flex;
  align-items: center;
  font-family: var(--font-family-eb);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-red00);
  transition: opacity 0.3s;
}
@media (max-width: 767.98px) {
  .news__list-date {
    grid-area: date;
    font-size: 1.8rem;
  }
}
.news__list-content {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: opacity 0.3s;
}
@media (max-width: 767.98px) {
  .news__list-content {
    grid-area: content;
  }
}
.news__list li {
  margin-bottom: 1.6rem;
  background-color: var(--color-white00);
  border: 1px solid var(--color-black00);
  border-radius: 5px;
}
.news__list li:last-child {
  margin-bottom: 0;
}
.news__list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  padding-block: 1.2rem;
  padding-inline: 2rem;
  transition: background-color 0.3s ease;
}
@media (max-width: 767.98px) {
  .news__list a {
    grid-template-areas: "date date" "content arrow";
    grid-template-columns: 1fr auto;
    gap: 5px;
  }
}
.news__list a:hover {
  opacity: 1 !important;
}
.news__list a:hover .news__list-date,
.news__list a:hover .news__list-content {
  opacity: 0.4;
}
.news__list a:hover .arrow-icon svg {
  border: 2px solid var(--color-red00);
  border-radius: 50%;
}
.news__list a:hover .arrow-icon .arrow-bg {
  fill: var(--color-white00);
}
.news__list a:hover .arrow-icon .arrow-path {
  fill: var(--color-red00);
}

.release__info {
  padding-bottom: 60px;
  background: url("/wasureranneyo/assets/images/bg-3.jpg");
}
@media (max-width: 767.98px) {
  .release__info {
    padding-bottom: 4rem;
  }
}
.release__info-wrapper {
  border-top: 1px solid var(--color-black00);
  border-bottom: 1px solid var(--color-black00);
}
.release__info-title {
  width: 39.9rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .release__info-title {
    width: 73.8461538462vw;
    padding-top: 2.177rem;
    padding-bottom: 2.177rem;
  }
}
.release__info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .release__info-btn {
    margin-inline: 5.7251908397vw;
  }
}
.release__info-btn:hover {
  opacity: 1 !important;
}
.release__info-btn-inner {
  display: flex;
  gap: clamp(8px, 2vw, 16px);
  align-items: center;
  justify-content: space-between;
  width: 390px;
  padding-block: 10px;
  padding-right: 50px;
  padding-left: 100px;
  margin: 0 auto;
  font-family: var(--font-family-roboto);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-white00);
  background: var(--color-red00);
  border: 1px solid var(--color-black00);
  border-radius: 100px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767.98px) {
  .release__info-btn-inner {
    width: 300px;
    padding-left: 50px;
    font-size: 20px;
  }
}
.release__info-btn:hover .release__info-btn-inner {
  color: var(--color-white00);
  background: var(--color-black00);
}
.release__info-btn:hover .release__info-btn-inner .arrow-icon svg {
  border: 1px solid var(--color-red00);
  border-radius: 50%;
}
.release__info-btn:hover .release__info-btn-inner .arrow-icon .arrow-bg {
  fill: var(--color-white00);
}
.release__info-btn:hover .release__info-btn-inner .arrow-icon .arrow-path {
  fill: var(--color-red00);
}

.release__info-jacket {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media (max-width: 767.98px) {
  .release__info-jacket {
    padding-bottom: 15px;
  }
}
.release__info-jacket img {
  width: 390px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #c4c4c4;
}
@media (max-width: 767.98px) {
  .release__info-jacket img {
    width: 100%;
    max-width: 300px;
    margin-inline: 4.5rem;
  }
}
.release__info-jacket-title {
  margin-bottom: 25px;
  text-align: center;
}
.release__info-jacket-title-date {
  font-family: var(--font-family-eb);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-red00);
}
@media (max-width: 767.98px) {
  .release__info-jacket-title-date {
    font-size: 24px;
  }
}
.release__info-jacket-title-name {
  padding-top: 1.5rem;
  font-family: var(--font-family-roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .release__info-jacket-title-name {
    font-size: 32px;
  }
}
.release__info-jacket-title-number {
  padding-top: 1.5rem;
  font-family: var(--font-family-roboto);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  color: var(--black20, #2b2c2f);
}

.movie {
  background: var(--color-black00);
}
.movie__title {
  width: 320px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .movie__title {
    width: 59.2307692308vw;
    padding-top: 2.177rem;
    padding-bottom: 2.177rem;
  }
}
.movie__title-wrapper {
  border-bottom: 1px solid var(--color-gray30);
}
.movie__iframe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 6.5rem;
}
@media (max-width: 767.98px) {
  .movie__iframe {
    padding-bottom: 4.5rem;
  }
}
.movie__iframe iframe {
  width: 640px;
  max-width: 100%;
  height: 330px;
}
@media (max-width: 767.98px) {
  .movie__iframe iframe {
    width: 87.6923076923vw;
    height: 47.4358974359vw;
    padding-inline: 2.4rem;
  }
}
.movie__iframe p {
  padding-top: 2rem;
  font-family: var(--font-family-roboto);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-white00);
}

.topics {
  padding-bottom: 6rem;
  background: var(--color-red00);
}
@media (max-width: 1059.98px) {
  .topics {
    padding-bottom: 5rem;
  }
}
@media (max-width: 767.98px) {
  .topics {
    padding-bottom: 4rem;
  }
}
.topics__info-text {
  padding-bottom: 49px;
  font-family: var(--font-family-mincho);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-white00);
  text-align: center;
  letter-spacing: -0.72px;
}
@media (max-width: 767.98px) {
  .topics__info-text {
    padding-bottom: 25px;
    font-size: 2.4rem;
  }
}
.topics__title {
  width: 34.9rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .topics__title {
    width: 64.6153846154vw;
    padding-top: 2.177rem;
    padding-bottom: 2.177rem;
  }
}
.topics__title-wrapper {
  margin: 0 auto;
  border-top: 1px solid var(--color-black00);
  border-bottom: 1px solid var(--color-black00);
}
.topics__list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 1059.98px) {
  .topics__list {
    padding-inline: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .topics__list {
    display: block;
  }
}
.topics__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.topics__item a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  overflow: hidden;
  pointer-events: auto;
}
.topics__item a:hover {
  opacity: 1;
}
.topics__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--color-black00);
  border-radius: 5px;
}
.topics__item p {
  padding-top: 1.5rem;
  font-family: var(--font-family-mincho);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  color: var(--color-white00);
  text-align: center;
}
@media (max-width: 767.98px) {
  .topics__item p {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .topics__item:last-child p {
    padding-bottom: 0;
  }
}

.plus__button {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 25px;
  height: 25px;
  background-color: var(--color-black00);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.plus__button::before, .plus__button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background-color: var(--color-white00);
}
.plus__button::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.plus__button::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.profile {
  background: var(--color-white00);
}
.profile__title {
  width: 396px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: 0 auto;
  overflow: hidden;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 767.98px) {
  .profile__title {
    width: 73.3333333333vw;
    padding-top: 2.177rem;
    padding-bottom: 2.177rem;
  }
}
.profile__title-wrapper {
  border-top: 1px solid var(--color-black00);
  border-bottom: 1px solid var(--color-black00);
}
.profile__detail {
  padding-block: 4rem;
  padding-inline: 4.4rem;
  margin-inline: 8rem;
  margin-top: 2.4rem;
  background: var(--color-gray00);
  border: 1px solid var(--color-black00);
  border-radius: 15px;
}
@media (max-width: 1059.98px) {
  .profile__detail {
    margin-inline: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .profile__detail {
    padding: 2.4rem;
  }
}
.profile__detail-name {
  padding-bottom: 2.4rem;
  font-family: var(--font-family-roboto);
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.profile__detail-description {
  font-family: var(--font-family-roboto);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.profile__content {
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--color-black00);
}
@media (max-width: 1059.98px) {
  .profile__content {
    padding-bottom: 5rem;
  }
}
@media (max-width: 767.98px) {
  .profile__content {
    padding-bottom: 4rem;
  }
}

.profile__img {
  display: block;
  width: 300px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .profile__img {
    width: 200px;
  }
}

.sns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.sns__info {
  padding-bottom: 40px;
  background-color: var(--color-white00);
  border-radius: 0 0 15px 15px;
}
@media (max-width: 767.98px) {
  .sns__info {
    padding-bottom: 5rem;
  }
}
.sns__icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 15px;
}
.sns__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21.667px;
  height: 22.884px;
  transform: translate(-50%, -50%);
}

.x {
  background-color: var(--color-black00);
}

.tiktok {
  background-color: var(--color-white00);
  border: 1px solid var(--color-black00);
}

.insta {
  background-image: url("/wasureranneyo/assets/images/icon-insta-bg.png");
  background-position: center;
  background-size: cover;
}

.youtube {
  background-color: #ff0000;
}

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.3s ease;
}
@media (max-width: 767.98px) {
  .arrow-icon {
    grid-area: arrow;
  }
}
.arrow-icon svg {
  display: block;
}
.arrow-icon .arrow-bg {
  fill: var(--color-black00);
  transition: fill 0.3s ease;
}
.arrow-icon .arrow-path {
  fill: var(--color-white00);
}

h3 {
  display: block;
  gap: 10px;
  width: fit-content;
  padding-block: 2.5rem;
  padding-bottom: 1rem;
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-white00);
  text-align: center;
  border-bottom: 2px solid var(--color-white00);
}

.release__info h3,
.news h3,
.sns__info h3,
.profile__content h3 {
  color: var(--color-black00);
  border-bottom: 2px solid var(--color-black00) !important;
}

.page__scroll-top {
  position: fixed;
  right: -18px;
  bottom: 5px;
  z-index: 1000;
  cursor: pointer;
}
@media (max-width: 1059.98px) {
  .page__scroll-top {
    position: relative;
  }
}
.page__scroll-top a:hover {
  opacity: 1 !important;
}
@media (max-width: 1059.98px) {
  .page__scroll-top a {
    position: absolute;
    top: -250px;
    right: -18px;
  }
}
@media (max-width: 767.98px) {
  .page__scroll-top a {
    top: -190px;
  }
}
.page__scroll-top img {
  width: 178px;
  height: 235px;
}
@media (max-width: 767.98px) {
  .page__scroll-top img {
    width: 150px;
    height: 198.034px;
  }
}

.topics__modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-block: 74px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.topics__modal.is-active {
  opacity: 1;
}
.topics__modal::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--color-red00);
  opacity: 0.9;
}
.topics__modal-content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
  background-color: var(--color-white00);
  border-radius: 5px;
}
.topics__modal-image {
  max-height: calc(100vh - 148px);
  overflow-y: auto;
  border-radius: 5px;
}
.topics__modal-image img {
  display: block;
  width: 700px;
  height: auto;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
}
@media (max-width: 767.98px) {
  .topics__modal-image img {
    width: 340px;
  }
}
.topics__modal-close {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--color-black00);
  border-radius: 50%;
}
.topics__modal-close:before, .topics__modal-close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28.263px;
  height: 1.713px;
  content: "";
  background: var(--color-white00);
}
.topics__modal-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.topics__modal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.topics__modal-button {
  position: absolute;
  top: -25px;
  right: -20px;
  z-index: 99999;
}

.copyright {
  padding-block: 50px;
  font-family: var(--font-family-roboto);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-gray30);
  text-align: center;
  background-image: url("/wasureranneyo/assets/images/bg-base.jpg");
}
@media (max-width: 767.98px) {
  .copyright {
    padding-block: 6.95rem;
  }
}

.l-left,
.l-right {
  position: fixed;
  top: 260px;
  width: 2.2rem;
  height: 22.3rem;
}
@media (max-width: 1059.98px) {
  .l-left,
  .l-right {
    display: none;
  }
}

.l-left {
  left: 1.7361111111vw;
}

.l-right {
  right: 1.7361111111vw;
}
