@charset "UTF-8";
/* ---------------- 変数 ---------------- */
/* ---------------- color ---------------- */
/* ---------------- dimention ---------------- */
/* ---------------- spacer ---------------- */
/* ---------------- font ---------------- */
/* montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
/* ---------------- index限定hスタイル ---------------- */
#index h2 {
  display: flex;
  flex-direction: column;
  font-size: clamp(3.2rem, 3.0058252427rem + 0.8284789644vw, 4rem);
  color: var(--btn-label);
  font-weight: 500;
}
#index h2 span {
  font-size: clamp(1.8rem, 1.654368932rem + 0.6213592233vw, 2.4rem);
  color: var(--primary);
}

/* ---------------- スタイル ---------------- */
#mv {
  width: 90%;
  aspect-ratio: 2.4/1;
  background-image: url(../img/img_mv.jpg);
  background-size: cover;
  background-position: center center;
  border-radius: 2rem;
  margin: 0 auto 16rem;
}

@media screen and (max-width: 768px) {
  #mv {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 375px) {
  #mv {
    aspect-ratio: 1.6/1;
  }
}
#news {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 4rem;
}
#news .news_head {
  grid-column: 1/4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#news .news_list {
  grid-column: 4/12;
}
#news .news_list a {
  display: grid;
  grid-template-columns: 20% 20% 1fr;
  padding: 2rem;
  border-bottom: 0.1rem solid var(--line);
  position: relative;
  transition: var(--transition-time);
  text-decoration: none;
  font-weight: 500;
}
#news .news_list a:hover .news_tit {
  text-decoration: none;
}
#news .news_list a::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  aspect-ratio: 1/1;
  border: 0.2rem solid var(--btn-label);
  border-radius: 1000rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#news .news_list a::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  aspect-ratio: 1/1;
  background-color: var(--btn-label);
  border-radius: 1000rem;
  top: 50%;
  right: 0.6rem;
  transform: translate(-50%, -50%) scale(1);
  transition: var(--transition-time);
}
#news .news_list a:hover::after {
  aspect-ratio: 1/1;
  right: 0.6rem;
  transform: translate(-50%, -50%) scale(4);
}
#news .news_list a .news_date {
  color: var(--btn-label);
}
#news .news_list a .news_cate {
  color: var(--text-memo);
}
#news .news_list a .news_tit {
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  #news {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
    grid-column-gap: 0;
    grid-auto-flow: row;
  }
  #news .news_head {
    grid-column: 1/1;
    flex-direction: row;
    align-items: flex-start;
    align-items: center;
  }
  #news .news_list {
    grid-column: 1/1;
  }
}
@media screen and (max-width: 768px) {
  #news .news_head {
    flex-direction: column;
    align-items: left;
    align-items: flex-start;
    gap: 2rem;
  }
  #news .news_list a {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-row-gap: 2rem;
    padding: 1rem;
  }
  #news .news_list a .news_tit {
    grid-column: 1/3;
  }
}
#lineup .lineup_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
  margin-bottom: 4rem;
}
#lineup .lineup_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
#lineup .lineup_list a {
  display: flex;
  align-items: stretch;
  aspect-ratio: 1.6/1;
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  background-color: var(--bg);
  color: var(--btn-label);
  text-decoration: none;
  transition: var(--transition-time);
  position: relative;
  font-weight: 500;
}
#lineup .lineup_list a:hover {
  background-color: var(--btn-label);
  color: var(--bg);
}
#lineup .lineup_list a .lineup_cate {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
  font-size: clamp(2.4rem, 2.2058252427rem + 0.8284789644vw, 3.2rem);
  color: inherit;
  position: relative;
}
#lineup .lineup_list a .lineup_cate span {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.2071197411vw, 1.8rem);
}
#lineup .lineup_list a .lineup_cate::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.2rem solid currentColor;
  border-radius: 1000rem;
  top: 80%;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
#lineup .lineup_list a .lineup_cate::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  background-color: currentColor;
  border-radius: 1000rem;
  top: 80%;
  bottom: 0;
  right: 0.6rem;
  transform: translate(-50%, -50%) scale(1);
  transition: var(--transition-time);
  pointer-events: none;
}
#lineup .lineup_list a:hover .lineup_cate::after {
  transform: translate(-50%, -50%) scale(4);
  background-color: var(--bg);
}
#lineup .lineup_list a:hover .lineup_cate::before {
  border-color: var(--bg);
}

@media screen and (max-width: 1200px) {
  #lineup .lineup_list {
    grid-template-columns: repeat(2, 1fr);
  }
  #lineup .lineup_list a {
    aspect-ratio: 1.6/1;
  }
  #lineup .lineup_list a .lineup_cate {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    font-size: clamp(2.4rem, 2.2058252427rem + 0.8284789644vw, 3.2rem);
    color: inherit;
    position: relative;
  }
  #lineup .lineup_list a .lineup_cate span {
    font-size: clamp(1.6rem, 1.5514563107rem + 0.2071197411vw, 1.8rem);
  }
}
@media screen and (max-width: 768px) {
  #lineup .lineup_head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: left;
    gap: 2rem;
  }
  #lineup .lineup_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  #lineup .lineup_list a {
    display: flex;
    align-items: stretch;
    aspect-ratio: 1.6/1;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    background-color: var(--bg);
    color: var(--btn-label);
    text-decoration: none;
    transition: var(--transition-time);
    position: relative;
    font-weight: 500;
  }
  #lineup .lineup_list a:hover {
    color: var(--btn-label);
    background-color: var(--bg);
  }
  #lineup .lineup_list a .lineup_cate {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    font-size: clamp(2.4rem, 2.2058252427rem + 0.8284789644vw, 3.2rem);
    color: inherit;
    position: relative;
  }
  #lineup .lineup_list a .lineup_cate span {
    font-size: clamp(1.6rem, 1.5514563107rem + 0.2071197411vw, 1.8rem);
  }
  #lineup .lineup_list a .lineup_cate::before {
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.2rem solid currentColor;
    border-radius: 1000rem;
    top: 80%;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    pointer-events: none;
  }
  #lineup .lineup_list a .lineup_cate::after {
    content: "";
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    background-color: currentColor;
    border-radius: 1000rem;
    top: 80%;
    bottom: 0;
    right: 0.6rem;
    transform: translate(-50%, -50%) scale(1);
    transition: var(--transition-time);
    pointer-events: none;
  }
  #lineup .lineup_list a:hover .lineup_cate::before {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media screen and (max-width: 500px) {
  #lineup .lineup_head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: left;
    gap: 2rem;
  }
  #lineup .lineup_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
  #lineup .lineup_list a {
    display: flex;
    align-items: stretch;
    aspect-ratio: 1.6/1;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    background-color: var(--bg);
    color: var(--btn-label);
    text-decoration: none;
    transition: var(--transition-time);
    position: relative;
    font-weight: 500;
  }
  #lineup .lineup_list a:hover {
    color: var(--btn-label);
    background-color: var(--bg);
  }
  #lineup .lineup_list a .lineup_cate {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    font-size: clamp(2.4rem, 2.2058252427rem + 0.8284789644vw, 3.2rem);
    color: inherit;
    position: relative;
  }
  #lineup .lineup_list a .lineup_cate span {
    font-size: clamp(1.6rem, 1.5514563107rem + 0.2071197411vw, 1.8rem);
  }
  #lineup .lineup_list a .lineup_cate::before {
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.2rem solid currentColor;
    border-radius: 1000rem;
    top: 80%;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    pointer-events: none;
  }
  #lineup .lineup_list a .lineup_cate::after {
    content: "";
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    background-color: currentColor;
    border-radius: 1000rem;
    top: 80%;
    bottom: 0;
    right: 0.6rem;
    transform: translate(-50%, -50%) scale(1);
    transition: var(--transition-time);
    pointer-events: none;
  }
  #lineup .lineup_list a:hover .lineup_cate::before {
    transform: translate(-50%, -50%) scale(1);
  }
}/*# sourceMappingURL=index.css.map */