@charset "UTF-8";

:root {
  --color-1: #507dbe;
  --color-2: #73b4e6;
  --color-3: #afd278;
  --color-4: #eb8c64;
  --color-5: #f596be;
  --color-6: #3d3d3d;
  --color-7: #fbfcf7;
  --color-8: #ffffff;
  --color-9: #A9D4F5;
  scroll-padding: 120px;
	scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

/* .line-seed-jp-regular {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-weight: 800;
  font-style: normal;
} */

/* .righteous-regular {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

body {
  background: var(--color-7);
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), var(--color-2) calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), var(--color-2) calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center center;
  background-attachment: fixed;

  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: var(--color-6);
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

body a {
    color: var(--color-1);
    text-decoration: underline;
    transition: opacity 0.2s;
}

body a:hover {
    opacity: 0.6;
}

.container-body {
  max-width: 1440px;
  margin: auto;
  border: solid 3px var(--color-1);
  border-width: 0px 3px;
  background: var(--color-7);
}

@media (max-width: 426px) {
  .container-body {
    border-width: 0px;
  }
}

/* ======== アニメーション ======== */
/* 見出しバウンスイン */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  40% {
    opacity: 1;
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.bounce {
  opacity: 0;
}

.bounce.show {
  animation: bounceIn 1s forwards;
  animation-delay: 0.3s;
}

/* ローディング */
.loading {
  display: flex;
  gap: 10px;
  color: var(--color-1);
  font-family: "Righteous", sans-serif;
  font-size: 2.4rem;
}

@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.loading-img{
  width: 42px;
  animation: jump 1s ease-in-out infinite;
}

.dots::after {
  content: ".";
  animation: dots 1.8s infinite;
}

@keyframes dots {
  0% {
    content: " ";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: " ";
  }
}

/* ======== ヘッダー ======== */
header {
  display: flex;
  justify-content:space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-7);
  border-bottom: solid 3px var(--color-1);

}

.header__mark {
  border-right: solid 3px var(--color-1);
  padding: 10px 2.4%;
}

.header__mark a {
  display: flex;
  align-items: center;
}

.nav {
  background: var(--color-2);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translateX(100%);
  transition: transform 0.4s;
}

.nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 3px var(--color-8);
}

.nav.active {
  transform: translateX(0);
}

.nav__mark {
  border-right: solid 3px var(--color-8);
  padding: 10px 2.4%;
}

.nav__mark a {
  display: flex;
  align-items: center;
}

.nav__mark--img {
  height: 6rem;
  width: auto;
}

.nav__btn {
  display: flex;
  align-items: center;
  padding-right: 4.8%;
}

.nav__btn--close,
.nav__btn--menu {
  height: 3.6rem;
  width: auto;
  transition: opacity 0.2s;
  cursor: pointer;
}

.nav__btn--close:hover,
.nav__btn--menu:hover {
  opacity: 0.6;
}

.nav__list {
  display: flex;
  flex-direction: column;
  padding: 12px 7.2% 18px;
  height: auto;
}

.nav__list a {
  display: block;
  font-family: "Righteous", sans-serif;
  font-size: 2.4rem;
  line-height: 2;
  color: var(--color-8);
  text-decoration: none;
}

.nav__pc {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: auto;
  background-color: var(--color-1);
  border-radius: 999px;
  margin: 0 3%;
}

.nav__pc a {
  padding: 0 1.8rem;
  font-family: "Righteous", sans-serif;
  font-size: 2.4rem;
  color: var(--color-8);
  text-decoration: none;
}

.header__btn {
  display: none;
}

@media (max-width: 890px) {
  .nav__pc a {
    padding: 0 0.9rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .header__btn {
    display: flex;
    align-items: center;
    padding-right: 4.8%;
  }
  .nav__pc {
    display: none;
  }
}

/* ======== メインTOP ======== */
.main-img {
  display: flex;
  align-items: center;
  margin: 90px 0;
  padding: 0 3% 12px 3%;
}

/* 横スクロール */
.divider {
  width: 100%;
  overflow: hidden;
  background: var(--color-1);
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 22s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 24px));
  }
}

.marquee-track span {
  flex-shrink: 0;
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  color: var(--color-2);
  transform: translateY(-0.1rem);
  white-space: nowrap;
}

/* ======== ABOUT ======== */
.about {
  color: var(--color-8);
  background: var(--color-5);
  position: relative;
  overflow: hidden;
}

.about_article {
  width: fit-content;
  margin: 36px auto;
  padding: 0 3%;
  position: relative;
  z-index: 2;
  text-shadow: 
    1px 1px 0 var(--color-5),
    -1px -1px 0 var(--color-5),
    -1px 1px 0 var(--color-5),
    1px -1px 0 var(--color-5);
}

.about_title {
  width: fit-content;
  font-family: "Righteous", sans-serif;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0.15rem;
}

.about_titleJa {
  width: fit-content;
  line-height: 3;
}

.about_item {
  display: inline-block;
  line-height: 1.5;
  margin-right: 320px;
}

.about__text {
  margin-bottom: 1.6rem;
}

.tag__text {
  margin-top: 1.6rem;
}

.about-divider {
  background-color: var(--color-8);
  width: 100%;
  height: 1px;
}

.about_img {
  position: absolute;
  z-index: 1;
  width: 500px;
  height: auto;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .about_article {
    margin: 24px auto;
  }
  .about_item {
    margin-right: 0;
  }
  .about_img {
    width: 240px;
    height: auto;
    top: 0;
    right: -70px;
    transform: none;
  }
}

@media (max-width: 425px) {
  .about_article {
    margin: 24px auto;
    padding: 0 4%;
  }
  .main-img {
    margin: 60px 0;
    padding: 0 3% 12px 3%;
  }
}

/* ======== NEWS ======== */
.news {
  position: relative;
  overflow: hidden;
  padding: 0 3%;
}

.news-container {
  max-width: 550px;
  margin: 120px auto;
}

.news_title {
  text-align: center;
  font-family: "Righteous", sans-serif;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: var(--color-1);
  margin-bottom: -1rem;
}

.news_titleJa {
  text-align: center;
  background: var(--color-3);
  color: var(--color-8);
  border: solid 3px var(--color-1);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.news_item {
  text-align: center;
  margin: 1.6rem 0;
}

/* 550pxより大きくならないよ */
.x-embed {
    display: flex;
    /* max-width: 420px !important; */
    /* min-width: 200px !important; */
    padding-top: 6px;
    margin: 0 auto;
}

.news_img {
  position: absolute;
  z-index: 1;
  width: 180px;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}
.news_img_left {
  left: -90px;
}
.news_img_right {
  right: -90px;
}

@media (max-width: 767px) {
  .news_img {
    display: none;
  }
}


/* ======== メインarticle ======== */
.main-article {
  padding: 0 3% 60px;
}

.section-container {
  margin: 120px 0;
}

.section-top {
  display: flex;
  margin-bottom: -1.5rem;
}

.item-title {
  display: flex;
  align-items: center;
  font-family: "Righteous", sans-serif;
  color: var(--color-1);
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.item-title-img {
  height: 7.2rem;
  width: auto;
}

.section-bottom {
  /* margin-bottom: 120px; */
  position: relative;
  z-index: 1;
}

.item-titleJa {
  padding: 1.2rem 2.4rem;
  border: solid 3px var(--color-1);
  border-radius: 18px 18px 0px 0px;
  color: var(--color-8);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  /* box-shadow: var(--color-1) 5px 5px 0px; */
}

#HISTORY .item-titleJa {
  background: var(--color-5);
}

#STREAM .item-titleJa {
  background: var(--color-4);
}

#MEMBERS .item-titleJa {
  background: var(--color-2);
}

.item-body {
  padding: 1.8rem 2.4rem;
  background: var(--color-8);
  border: solid 3px var(--color-1);
  border-width: 0px 3px 3px 3px;
  border-radius: 0px 0px 18px 18px;
  /* box-shadow: var(--color-1) 5px 5px 0px; */
}

@media (max-width: 426px) {
  .section-top {
    margin-bottom: -1rem;
  }
  .item-title {
    font-size: 4rem;
  }
  .item-title-img {
    height: 4.8rem;
    width: auto;
  }
  .item-titleJa {
    padding: 1.2rem 1.8rem;
    font-size: 1.4rem;
  }
    .item-body {
    padding: 1.2rem 1.8rem;
    font-size: 1.4rem;
  }
}

.stream__text {
  padding-bottom: 1.6rem;
}

.members__text {
  padding-bottom: 1.6rem;
}

/* ======== メンバー表 ======== */
.container {
  margin: 0 auto;
  padding: 0 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding-bottom: 0.6rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: white;
  border: solid 3px var(--color-1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

/* 画像ラッパー */
.image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* 画像トリミング */
.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#MEMBER-LIST .card:nth-child(4n+1) .image-wrap {
  background-color: var(--color-2);
}

#MEMBER-LIST .card:nth-child(4n+2) .image-wrap {
  background-color: var(--color-3);
}

#MEMBER-LIST .card:nth-child(4n+3) .image-wrap {
  background-color: var(--color-4);
}

#MEMBER-LIST .card:nth-child(4n+4) .image-wrap {
  background-color: var(--color-5);
}

.card-bottom {
  padding: 12px 16px;
  text-align: left;
}

.name {
  font-weight: 700;
  line-height: 1.5;
}

.yomi {
  font-size: 1.2rem;
  line-height: 1.5;
}

.links {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.roles {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5%;
  margin: 4px -0.5rem 4px;
}

.role {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  padding: 1px 1.2rem;
  border-radius: 999px;
  /* border: solid 1.5px var(--color-6); */
}

/* アイコン */
/* 共通 */
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
} 

.icon-svg {
  display: block;
  color: var(--text-color-1);
  transition: transform 0.2s ease;
}

/* 個別 */
.icon-svg.x {
  height: 2.1rem;
}

.icon-svg.youtube {
  height: 1.68rem;
}

.icon-svg.twitch {
  height: 2.52rem;
}

.icon-svg.tiktok {
  height: 2.52rem;
}

/* hover */
/* .icon:hover .icon-svg {
  transform: scale(1.20);
} */
.icon-svg:hover {
  transform: scale(1.20);
}

/* その他URL */
.other {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease;
}

/* ======== 配信スケジュール ======== */
.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  transition: transform 0.2s ease;
}

.card-link:hover .card {
  transform: translateY(-3px);
  box-shadow: 3px 4px 8px rgba(0,0,0,0.1);
}

.thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.thumb-empty {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  background: #AAAAAA;
  font-size: 21px;
  font-weight: 700;
  color: #CCCCCC;
  justify-content: center;
  align-items: center;
}

.StatusDate {
  display: flex;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.status {
  width: fit-content;
}

.status-ended { 
  background: var(--color-1);  
  color: var(--color-8);
  padding: 0 0.75rem;
  border: solid 1.5px var(--color-1);
  border-radius: 999px;
}
.status-now { 
  background: var(--color-4); 
  color: var(--color-8);
  padding: 0 0.75rem;
  border: solid 1.5px var(--color-1);
  border-radius: 999px;
}
.status-futurePlan { 
  background: var(--color-8); 
  color: var(--color-1);
  padding: 0 0.75rem;
  border: solid 1.5px var(--color-1);
  border-radius: 999px;
}

.title {
  font-size: 1.2rem;
  width: 100%;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  overflow: hidden;
  text-overflow: ellipsis;

  word-break: break-word;
}

.empty {
  color: #666;
  font-size: 14px;
}

/* ======== 過去イベント ======== */
.history-wrapper {
  position: relative;
}

.history-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 12px 24px;
  &::-webkit-scrollbar {
    height: 8px;
  }
  &::-webkit-scrollbar-track {
    background-color: var(--color-9);
    border-radius: 4px;
  }
  &::-webkit-scrollbar-thumb {
    background-color: var(--color-1);
    border-radius: 4px;
  }
}

.history-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: solid 3px var(--color-1);
  border-radius: 50%;
  background: var(--color-2);
  color: var(--color-8);
  cursor: pointer;
  z-index: 10;
}

.history-btn:hover {
  background: var(--color-8);
}

.history-btn:hover .arrow_left, .history-btn:hover .arrow_right {
  background-color: var(--color-1);
}

.history-prev {
  left: 0px;
}

.history-next {
  right: 0px;
}

.arrow_left {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background-color: var(--color-8);
  mask-image: url('/img/arrow_left.svg');
  mask-size: 100%;
}

.arrow_right {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background-color: var(--color-8);
  mask-image: url('/img/arrow_right.svg');
  mask-size: 100%;
}

.history-card {
  flex: 0 0 280px;
  text-decoration: none;
  border: solid 3px var(--color-1);
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: center;
}

@media (max-width: 374px) {
  .history-card {
    flex: 0 0 240px;
  }
}

.history-image img {
  display: block;
  width: 100%;
  height: auto;
}

.history-info {
  padding: 12px;
  background-color: var(--color-2);
  color: var(--color-8);
  line-height: 1.5;
  border-top: solid 3px var(--color-1);
}

.history-title {
  font-weight: 700;
  font-size: 1.4rem;
}

.history-date {
  font-size: 1.2rem;
}


/* ======== フッター ======== */

footer {
  background: var(--color-1);
  padding: 4.5rem 3%;
}

@media (max-width: 768px) {
  footer {
    padding: 4.5rem 5%;
  }
}

footer a {
  text-decoration: none;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer_logo {
  display: flex;
  font-family: "Righteous", sans-serif;
  color: var(--color-9);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.footer_link {
  display: flex;
  gap: 10px;
}

.footer_link--in {
  display: flex;
  align-items: center;
  color: var(--color-1);
  background-color: var(--color-9);
  overflow: hidden;
  border: solid 2px var(--color-9);
  border-radius: 8px;
}

.footer_link--in p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: -0.05em;
  padding: 0 1rem 0 0.8rem;
}

.footer_icon {
  height: 100%;
  color: var(--color-9);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-1);
  padding: 0 0.8rem;
}

.icon-svg.footer-x {
  height: 1.25rem;
  transform: scale(1);
}

.icon-svg.footer-youtube {
  height: 1.3rem;
  transform: scale(1);
}

@media (max-width: 560px) {
  .footer_top {
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer_logo, .footer_link {
    justify-content: center;
  }
  .footer_link--in p {
    font-size: 1rem;
    padding: 0 0.8rem 0 0.64rem;
  }
  .icon-svg.footer-x {
    height: 1rem;
    transform: scale(1);
  }
  .icon-svg.footer-youtube {
    height: 1.04rem;
    transform: scale(1);
  }
  .footer_link--in {
    border: solid 1px var(--color-9);
    border-radius: 6px;
  }
}

hr.footer-divider {
  background-color: var(--color-9);
  height: 1px;
  border: none;
}

.footer_bottom {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-9);
  font-size: 1.2rem;
  font-weight: 700;
}
