/* loader */
/* ============================================ */

.js-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
}

.js-loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #131313;
  z-index: 10001;
}

/* header */
/* ============================================ */

.logo {
  min-width: 112px;
  max-width: 112px;
}

.nav {
  padding: 10px 30px;
  width: 90%;
  max-width: 1160px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 45px;
  align-items: center;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border-radius: 27px;
}

.header__list {
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

.header__item {
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.header__item-link {
  position: relative;
  font-family: var(--font-microgramma);
  font-weight: 600;
  font-size: 0.875rem;
}

.header__dropdown {
  display: none;
}

.header__item::after {
  background-color: #fff;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  width: 100%;
}

.header__item:hover::after {
  transform: scale(1, 1);
}

.header__dropdown{
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  padding: 20px 0 0 0;
}

.header__dropdown.open {
  display: block;
}

.header__dropdown-item {
  border: 1px solid #828282;
  padding: 8px 10px 8px 15px;
  background-color: #040404;
  font-family: "microgramma-extended", sans-serif;
  font-weight: bold;
}

.header__dropdown-item-link.open::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.hamburger {
  display: none;
}

.gtranslate_wrapper {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}

a.glink {
  font-family: var(--font-microgramma);
  font-weight: bold;
  color: rgba(255, 255, 255, 0.5);
}
a.glink.gt-current-lang {
  color: rgba(255, 255, 255, 1);
}

a.glink:nth-child(2).nturl.notranslate::after {
  content: ' / ';
  display: inline-block;
  margin: 0 0.5em;
  color: #fff;
}


@media screen and (max-width: 1080px) {
  .logo {
    position: relative;
    top: 40px;
    left: 45px;
  }
  .nav {
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    transform: initial;
    background: initial;
    border-radius: 0;
    backdrop-filter: blur(0);
  }

  .header__list {
    display: none;
  }

  .hamburger {
    position: fixed;
    display: block;
    top: 40px;
    right: 45px;
    width: 48px;
    height: 48px;
    cursor: pointer;
  }

  .hamburger__line {
    position: absolute;
    display: block;
    width: 48px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
  }

  .hamburger__line:nth-of-type(1) {
    top: 14px;
  }
  .hamburger__line:nth-of-type(2) {
    top: 26px;
  }
  .hamburger__line:nth-of-type(3) {
    top: 38px;
  }

  /* hamburger active */
  .hamburger.active .hamburger__line:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }

  .hamburger.active .hamburger__line:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
  }

  .header__list.active{
    width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    gap: 0;
  }

  .header__item {
    position: relative;
    width: 80%;
    border-bottom: 2px solid #fff;
    box-sizing: border-box;
    padding: 25px 0 5px 10px;
  }

  .header__item:hover {
    background-color: initial;
  }

  .header__dropdown {
    position: static;
    margin: 5px 0 20px 0;
  }

  .header__dropdown-item {
    border: none;
    background: none;
  }

  .header__item::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    width: 15px;
    height: 15px;
    display: block;
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
    background-color: #fff;
  }

  
  .header__item-glink {
    position: relative;
    width: 80%;
    box-sizing: border-box;
    padding: 25px 0 5px 10px;
  }
}

/* fotoer */
/* ============================================ */

.footer {
  width: 85%;
  padding: 85px 0 20px 0;
  max-width: 1160px;
  margin: 0 auto;
}

.footer__inner {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 130px;
  margin: 0 0 100px 0;
}

.footer__logo {
  width: 140px;
  height: auto;
}


.footer__list {
  display: flex;
  font-weight: bold;
  gap: 30px;
  margin: 0 0 30px 0;
}

.footer__list {
  font-size: 0.87rem;
}

.footer__list:last-child {
  margin: 0;
}

.sns__links {
  display: flex;
  justify-content: center;
  gap: 37px;
}

.copyright {
  margin: 40px 0 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}


/* media query */
/* ============================================ */

@media screen and (max-width: 1160px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

@media screen and (max-width: 860px) {
  .footer__list-wrap {
    display: none;
  }

  .footer {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
  }

  .sns__links {
    order: 1;
  }

  .footer__inner {
    margin: 30px auto;
    order: 2;
  }

  .copyright {
    order: 3;
    margin: 0;
  }
}


/* main */
/* ============================================ */

.mv__container {
  max-width: 1160px;
  width: 85%;
  margin: 50px auto 0 auto;
  padding: 100px 0 0 0;
}

.mv {
  position: relative;
}

.mv video{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  min-width: 337px;
  height: auto;
  z-index: -1;
}

.mv__container-hero {
  font-size: 3.4rem;
  padding-top: 100px;
  font-family: microgramma-extended, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.news__container {
  padding: 90px 0;
}

.news {
  max-width: 1160px;
  width: 79%;
  margin: 0 auto;
}

.news__heading-ttl,
.event__heading-ttl {
  font-size: 55px;
  color: #32ff92;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid #32ff92;
  font-family: "microgramma-extended", sans-serif;
}

.news__list {
  max-width: 1160px;
  margin: 55px auto 80px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}


.news__item-img {
  aspect-ratio: 7 / 4;
  object-fit: cover;
  transition: transform .6s ease;
}

.news__item-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: transform .6s ease;
}


.news__item-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.news__item-link:hover .news__item-img-bg {
  background-color: rgba(0 ,0, 0, 0.3);
}

.news__item-link:hover .news__item-img {
  transform: scale(1.1);
}

.news__item-title {
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  font-size: 12px;
}

.news__item-latest {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 15px;
  background-color: red;
  color: #fff;
}

.news__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.news__morelink a{
  display: block;
  width: 100%;
  padding: 28px 0;
  background-color: #717171;
  color: #32ff92;
  border-radius: 35px;
  transition: ease-in 0.1s;
  font-weight: bold;
}

.news__morelink a:hover {
  opacity: 0.7;
}

/* brand */

.brand__container {
  background-color: #1f1f1f;
  padding: 100px 0;
}

.brand {
  width: 79%;
  max-width: 1160px;
  margin: 0 auto;
}

.brand__logo {
  max-width: 100px;
  margin: 0 auto;
}

.brand__heading-ttl {
  margin: 40px 0 0 0;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.brand__desc {
  text-align: center;
  line-height: 3;
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 0 0 ;
}


.brand__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.brand__morelink a {
  background-color: #717171;
  display: block;
  border-radius: 35px;
  width: 100%;
  padding: 28px 0;
  font-weight: bold;
  transition: ease-in 0.1s
}

.brand__morelink a:hover {
  opacity: 0.7;
}

.feature__container {
  padding: 41px 0;
}

.feature {
  max-width: 1016px;
  width: 79%;
  margin: 0 auto;
}

.feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 58px;
}

.feature__list a {
  display: flex;
  flex-direction: column;
  padding: 40px 0 30px 0;
  box-sizing: border-box;
  background-color: #32ff92;
  border-radius: 20px;
}

.feature__list a:hover {
  opacity: 0.8;
}

.feature__item-note {
  margin: 20px 0 0 0;
}

.feature__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature__list a:nth-child(2n) {
  background-color: #ffab27;
}

.feature__list a:nth-child(3) .feature__item-note {
  margin: 15px 0 0 0;
}

.feature__list a:nth-child(4) .feature__item-note {
  margin: 15px 0 0 0;
}

.feature__item-ttl-en {
  font-size: 2.75rem;
  font-weight: bold;
  color: #000;
  font-family: "microgramma-extended", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.feature__item-ttl-ja {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
}

.feature__item-note {
  font-size: 1.37rem;
  font-weight: 900;
  color: #000;
}

.feature__fandom .feature__item-ttl-ja {
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* event */

.event__container {
  background: url("../img/event_bg.jpg");
  background-position: center center;
  padding: 100px 0;
}

.event {
  width: 79%;
  max-width: 1160px;
  margin: 0 auto;
}

.event__desc p{
  font-size: 20px;
  text-align: center;  
  line-height: 2;
  color: #32ff92;
  font-weight: bold;
  margin: 40px 0 0 0;
}

.event__list-wrap {
  max-width: 1160px;
  margin: 70px auto 0 auto;
}

.event__list {
  grid-template-columns: repeat(8, 1fr);
}

.event__item {
  aspect-ratio: 131/164;
}

.event__item img {
  width: 100%;
  height: 100%;
}

.event__works {
  line-height: 2.5;
  text-align: center;
  margin: 60px 0 0 0;
}

.event__works p {
  font-size: 1rem;
  font-weight: bold;
}


.event__note {
  margin: 60px 0 0 0;
  line-height: 2;
  text-align: center;
}

.event__note p {
  color: #32ff92;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 400;
}

.event__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.event__morelink a{
  display: block;
  width: 100%;
  background-color: #717171;
  border-radius: 35px;
  color: #32ff92;
  font-weight: bold;
  padding: 28px 0;
  transition: ease-in 0.1s;
  font-size: 16px;
}

.event__morelink a:hover {
  opacity: 0.7;
}


.music__container {
  background: url("../img/music_bg.jpg");
  padding: 90px 0;
  background-position: center center;
}

.music {
  width: 87%;
  max-width: 1160px;
  margin: 0 auto;
}

.music__heading-ttl {
  font-size: 55px;
  color: #ffab27;
  font-weight: bold;
  text-align: center;
  margin: 40px auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid #ffab27;
  font-family: microgramma-extended, sans-serif;
  font-weight: 700;
}

.music__heading-subttl {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #ffab27;
  margin: 0 0 30px 0;
}

.music__desc p{
  font-size: 20px;
  text-align: center;  
  line-height: 2;
  color: #ffab27;
  font-weight: bold;
}


.music__list-wrap {
  max-width: 1160px;
  margin: 40px auto;
}

.music__works {
  line-height: 2.5;
  text-align: center;
  margin: 60px 0 0 0;
}

.music__works p {
  font-size: 1rem;
  font-weight: bold;
}


.music__feature {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  max-width: 690px;
  margin: 35px auto 0 auto;
  gap: 90px;
}

.music__feature-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 25px;
  width: 100%;
}

.music__feature-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255, 171, 39, 0.5);
  text-align: center  ;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.2;
}

.music__feature-item p span{
  font-size: 11px;
}

.music__feature-border {
  display: block;
  width: calc(50% + 25px);
  height: 20px;
  border-left: 2px solid #ffab27;
  border-right: 2px solid #ffab27;
  border-bottom: 2px solid #ffab27;
  margin: 5px auto 0 auto;
}

.music__feature-note {
  margin: 12px 0 0 0;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  font-weight: bold;
}

.music__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.music__morelink a {
  transition: ease-in 0.1s;
  display: block;
  width: 100%;
  border-radius: 35px;
  background-color: #717171;
  color: #ffab27;
  font-weight: bold;
  padding: 28px 0;
}

.music__morelink a:hover {
  opacity: 0.7;
}

/* dance */

.dance__container {
  background: url("../img/dance_bg.jpg");
  padding: 90px 0;
  background-position: center center;
}

.dance {
  width: 85%;
  max-width: 1160px;
  margin: 0 auto;
}

.dance__heading-ttl {
  font-size: 55px;
  color: #32ff92;
  font-weight: bold;
  text-align: center;
  margin: 40px auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid #32ff92;
  font-family: "microgramma-extended", sans-serif;
  font-weight: 700;
}

.dance__list-wrap {
  max-width: 1160px;
  margin: 40px auto;
}

.dance__desc p{
  font-size: 20px;
  text-align: center;  
  line-height: 2;
  color: #32ff92;
  font-weight: bold;
  margin: 20px 0 0 0;
}


.dance__works {
  line-height: 2.5;
  text-align: center;
  margin: 60px 0 0 0;
  font-weight: bold;
}

.dance__event {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1060px;;
  gap: 17px;
  padding: 10px;
  margin: 37px auto 65px auto;
  background-color: rgba(144, 144, 144, 0.9);
  border-radius: 5px;
}

.dance__event-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 60%;
  gap: 16px;
}


.dance__event-item {
  aspect-ratio: 117 / 146;
  width: 100%;
  height: 100%;
}

.dance__event-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dance__event-text {
  width: 40%;
}

.dance__event-text p {
  color: #000;
  font-weight: bold;
}

.dance__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.dance__morelink a{
  display: block;
  width: 100%;
  background-color: #717171;
  transition: ease-in 0.1s;
  padding: 28px 0;
  border-radius: 35px;
  color: #32ff92;
  font-weight: bold;
  font-size: 16px;
}

.dance__morelink a:hover {
  opacity: 0.7;
}

.casting__container {
  background: url("../img/casting_bg.jpg");
  padding: 90px 0;
  background-position: center center;
}

.casting {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

.casting__heading-ttl {
  font-size: 55px;
  color: #ffab27;
  font-weight: bold;
  text-align: center;
  margin: 40px auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid #ffab27;
  font-family: microgramma-extended, sans-serif;
  font-weight: 700;
}

.casting__desc {
  font-size: 20px;
  text-align: center;  
  line-height: 2.5;
  color: #ffab27;
  font-weight: bold;
}

.casting__desc p {
  color: #ffab27;
}


.casting__list-wrap {
  max-width: 1160px;
  margin: 0 auto 100px auto;
}

.casting__item {
  aspect-ratio: 377/242;
  width: 100%;
  height: 100%;
}

.casting__list-ttl {
  font-size: 30px;
  font-weight: bold;
  color: #ffab27;
  text-align: center;
  margin: 70px 0 46px 0;
}

.casting__note {
  text-align: center;
  line-height: 2;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 400;
}

.casting__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.casting__morelink a {
  background-color: #717171;
  transition: ease-in 0.1s;
  display: block;
  border-radius: 35px;
  width: 100%;
  color: #ffab27;
  font-weight: bold;
  padding: 28px 0;
}

.casting__morelink a:hover {
  opacity: 0.7;
}

.fandom__container {
  background: url("../img/fandom_bg.jpg");
  padding: 90px 0;
  background-position: center center;
}


.fandom {
  width: 87%;
  max-width: 1160px;
  margin: 0 auto;
}
.fandom__heading-ttl {
  font-size: 55px;
  color: #32ff92;
  font-weight: bold;
  text-align: center;
  margin: 40px auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid #32ff92;
  font-family: microgramma-extended, sans-serif;
  font-weight: 700;
}

.fandom__desc {
  font-size: 20px;
  text-align: center;  
  line-height: 2;
  font-weight: bold;
}

.fandom__desc p {
  color: #32ff92;
}

.fandom__bstage {
  margin: 50px 0 0 0;
}

.fandom__bstage-ttl {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #32ff92;
}

.fandom__bstage-note {
  margin: 20px 0 0 0;
  font-size: 18px;
  text-align: center;
  color: #32ff92;
  line-height: 2;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 400;
}

.fandom__list-wrap {
  position: relative;
  max-width: 1080px;
  border-radius: 38px;
  margin: 30px auto 0 auto;
}

.fandom__list-ttl {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #32ff92;
}

.fandom__list {
  margin: 12px auto 0 auto;
}

.fandom__item {
  text-align: center;
}

.fandom__item span {
  display: block;
  margin: 10px 0 0 0;
}

.fandom__note {
  text-align: center;
  line-height: 2;
  font-size: 14px;
  margin: 50px 0 0 0;
}

.fandom__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.fandom__morelink a{
  transition: ease-in 0.1s;
  background-color: #717171;
  display: block;
  border-radius: 35px;
  width: 100%;
  padding: 28px 0;
  color: #32ff92;
  font-weight: bold;
}

.fandom__morelink a:hover {
  opacity: 0.7;
}

.drink__container {
  background: url("../img/drink_bg.jpg");
  padding: 90px 0;
  background-position: center center;
}

.drink {
  width: 90%;
  margin: 0 auto;
}

.drink__wonsoju-logo {
  width: 50%;
  max-width: 752px;
}

.drink__heading-ttl {
  font-size: 55px;
  color: #ffab27;
  font-weight: bold;
  text-align: center;
  margin: 40px auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid #ffab27;
  font-family: "microgramma-extended", sans-serif;
  font-weight: 700;
}

.drink__desc {
  font-size: 20px;
  text-align: center;  
  line-height: 2;
  font-weight: bold;
}

.drink__desc p{
  color: #ffab27;
}

.drink__wonsoju-logo {
  max-width: 750px;
  margin: 120px auto 0 auto
}

.drink__note {
  text-align: center;
  margin: 100px 0 0 0;
}

.drink__morelink {
  text-align: center;
  width: 91%;
  max-width: 383px;
  margin: 50px auto 0 auto;
}

.drink__morelink a{
  transition: ease-in 0.1s;
  width: 100%;
  background-color: #717171;
  border-radius: 35px;
  display: block;
  padding: 28px 0;
  color: #ffab27;
  font-weight: bold;
}

.drink__morelink a:hover {
  opacity: 0.7;
}

/* Swiper */
/* ============================================ */

.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  top: 0;
  height: 100%;
  background-color: rgb(255, 255, 255, 0.5);
  margin: 0;
}

.swiper .swiper-button-prev {
  left: 0;
}

.swiper .swiper-button-next {
  right: 0;
}

.prev-arrow,
.next-arrow {
  width: 24px;
  height: 44px;
  background-color: #000;
}

.prev-arrow {
  position: absolute;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  margin: 0 0 0 8px;
  left: 0;
}

.next-arrow {
  position: absolute;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: 0 8px 0 0;
  right: 0;
}

.fandom .swiper .swiper-button-prev,
.fandom .swiper .swiper-button-next {
  background-color: initial;
}

.fandom .swiper .swiper-button-next{
  right: -24px;
}

@media screen and (max-width: 768px) {
  .prev-arrow,
  .next-arrow {
    display: none;
  }

  .fandom .prev-arrow,
  .fandom .next-arrow {
    display: block;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    filter: blur(1.5rem);
    background-color: #000;
    cursor: default;
  }
}

/* media query */
/* ============================================ */
@media screen and (max-width: 1200px) {
  .feature__list {
    gap: 18px;
  }
}


@media screen and (max-width: 1080px) {
  .main {
    padding: 100px 0 0 0;
  }

  .feature__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 6px;
  }
}

@media screen and (max-width: 768px) {
  .mv__container {
    padding: 0;
  }

  .mv {
    width: 85%;
    margin: 0 auto;
  }

  .mv video{
    position: static;
    margin: 0 auto;
    transform: none;
    width: 100%;
    min-width: 0;
  }

  .mv__container-hero {
    font-size: 1.9rem;
    line-height: 3;
    padding: 30px 0 0 0;
  }

  .news__heading-ttl,
  .event__heading-ttl,
  .music__heading-ttl,
  .dance__heading-ttl,
  .casting__heading-ttl,
  .fandom__heading-ttl,
  .drink__heading-ttl {
    font-size: 2.19rem;
    width: 100%;
    padding: 0 0 15px 0;
  }

  .news__list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* brand */

  .brand__heading-ttl {
    font-size: 1rem;
    line-height: 2;
    margin: 30px 0 0 0;
  }

  .brand__desc {
    font-size: 0.75rem;
    text-align: left;
    line-height: 2;
  }

  .feature__item a {
    padding: 15px 0;
  }
  
  .feature__list a:nth-child(2n) {
    background-color: #32ff92;
  }

  .feature__list a:nth-child(2),
  .feature__list a:nth-child(3),
  .feature__list a:nth-child(6) {
    background-color: #ffab27;
  }

  .feature__list a {
    padding: 12px 0 20px 0;
    border-radius: 10px;
    height: 93px;
  }

  .feature__item-ttl-en {
    font-size: 1.25rem;
  }
  
  .feature__item-ttl-ja {
    font-size: 0.875rem;
  }

  .feature__fandom .feature__item-ttl-ja {
    font-size: 0.875rem;
  }

  .feature__item-note {
    font-size: 0.75rem;
    margin: 15px 0 0 0;
  }

  .feature__list a:nth-child(5) .feature__item-note {
    margin: 5px 0 0 0;
  }

  .feature__list a:nth-child(6) .feature__item-note,
  .feature__list a:nth-child(6) span:last-child {
    margin: 10px 0 0 0;
  }


  /* EVENT */
  .event__desc p{
    font-size: 0.75rem;
    text-align: left;
  }

  .event__list-wrap {
    margin: 0 auto;  
  }

  .event__works p{
    font-size: 0.75rem;
  }

  .event__note {
    margin: 30px 0 0 0;
    font-size: 0.75rem;
    text-align: left;
  }

  .event__morelink a{
    font-size: 16px;
  }

  .music__feature {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .music__heading {
    width: 90%;
    margin: 0 auto;
  }

  .music__desc {
    width: 90%;
    margin:  0 auto;
  }

  .music__desc p{
    font-size: 0.93rem;
    text-align: left;
  }

  .music__works p{
    font-size: 0.75rem;
  }
  
  /* DANCE */
  .dance__heading {
    width: 90%;
    margin: 0 auto
  }

  .dance__desc {
    width: 90%;
    margin: 0 auto;
  }

  .dance__desc p{
    font-size: 0.93rem;
    margin: 0;
    text-align: left;
  }
  .dance__event {
    display: block;
  }

  .dance__works {
    width: 90%;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.75rem;
  }

  .dance__works p{
    margin: 0 0 20px 0;
  }

  .dance__event-list {
    width: 100%;
  }

  .dance__event-text {
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 15px 0 0 0;
  }

  .dance__event-text {
    width: 100%;
  }

  .dance__morelink a {
    font-size: 16px;
  }

  /* casting */
  .casting__heading {
    width: 90%;
    margin: 0 auto;
  }

  .casting__desc {
    width: 90%;
    margin: 0 auto;
  }

  .casting__desc p{
    font-size: 0.93rem;
    text-align: left;
  }

  .casting__list-ttl {
    font-size: 0.93rem;
  }

  .fandom__heading {
    width: 90%;
    margin: 0 auto;
  }

  .fandom__desc {
    width: 90%;
    margin: 0 auto;
  }

  .fandom__desc p {
    font-size: 0.97rem;
    text-align: left;
  }

  .fandom__bstage-ttl {
    font-size: 0.97rem;
    font-weight: bold;
  }

  .fandom__bstage-note {
    width: 90%;
    margin: 20px auto;
    font-size: 0.75rem;
    text-align: left;
  }

  .fandom__list-ttl {
    font-size: 0.93rem;
  }

  .fandom__item span {
    font-size: 0.62rem;
  }

  .fandom__note {
    width: 90%;
    margin: 30px auto 0 auto;
    font-size: 0.75rem;
    text-align: left;
  }

  .drink__heading {
    width: 90%;
  }

  .drink__desc {
    font-size: 0.93rem;
    text-align: left;
  }

  .drink__note {
    text-align: left;
    line-height: 2;
  }


  .drink__wonsoju-logo {
    width: 100%;
    margin: 50px 0 0 0;
  }

  .drink__note {
    margin: 50px 0 0 0;
    font-size: 0.75rem;
  }
}

/* music page */
/* ============================================ */

.musicpage {
  padding: 40px 0;
  width: 87%;
  max-width: 905px;
  margin: 0 auto;
}

.musicpage__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.musicpage__item {
  display: flex;
  justify-content: space-between;
}

.musicpage__item-img {
  width: 30%;
}

.musicpage__item-text {
  width: 60%;
}

.musicpage__item-ttl {
  font-family: "microgramma-extended", sans-serif;
  font-size: 30px;
  margin: 0 0 30px 0;
}

.musicpage__item-ttl p {
  color: #ffab27;
  font-weight: bold;
}

.musicpage__item-note {
  display: flex;
  justify-content: space-between;
  margin: 0 0 15px 0;
}

.musicpage__item-note-heading {
  width: 20%;
  color: #ffab27;
}

.musicpage__item-note-content {
  width: 70%;
  color: #fff;
}

.musicpage__credit p{
  line-height: 2;
  margin-top: calc((1 - 2) * 0.5em);
}

.musicpage__item-morelink {
  margin: 20px auto 0 auto;
  width: 50%;
  font-size: 1.3rem;
  text-align: center;
}

.musicpage__item-morelink a {
  transition: ease-in 0.1s;
  border-radius: 35px;
  background-color: #fff;
  display: block;
  width: 100%;
  color: #ffab27;
  padding: 10px 0;
  font-weight: bold;
  font-family: "Noto Sans JP","Meiryo", sans-serif;
}

.musicpage__item-morelink a:hover {
  opacity: 0.7;
}

/* music page media query*/
/* ============================================ */

@media screen and (max-width: 768px) {
  .musicpage__item {
    display: block;
  }

  .musicpage__item-ttl {
    text-align: center;
    margin: 20px 0 20px 0;
  }

  .musicpage__item-img {
    width: 100%;
  }

  .musicpage__item-text {
    width: 100%;
  }

  .musicpage__item-morelink {
    font-size: 1rem;
  }
}
/* news/music/event page - 共通スタイル */
/* ============================================ */

/* 色変数 */
.news-page__container {
  --theme-color: #ffab27;
}

.music-page__container {
  --theme-color: #ffab27;
}

.event-page__container {
  --theme-color: #32ff92;
}

.dance-page__container {
  --theme-color: #32ff92;
}

.casting-page__container {
  --theme-color: #ffab27;
}

/* 共通コンテナスタイル */
.news-page__container,
.music-page__container,
.event-page__container,
.dance-page__container,
.casting-page__container {
  max-width: 1080px;
  width: 78%;
  margin: 0 auto;
  padding: 150px 0; 
}

/* 共通タイトルスタイル */
.category-page__ttl {
  font-size: 55px;
  color: var(--theme-color);
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  max-width: 362px;
  width: 100%;
  padding: 0 0 10px 0;
  border-bottom: 3px solid var(--theme-color);
  font-family: "microgramma-extended", sans-serif;
}

.category-page__desc {
  margin: 40px 0 0 0;
  text-align: center;
}

.category-page__desc p:first-child {
  font-size: 37px;
  font-weight: bold;
}

.category-page__desc p:nth-child(2) {
  font-size: 18px;
  line-height: 2;
  margin: 25px 0 0 0;
}

.category-page__desc-detail:first-of-type {
  margin: 30px 0 0 0;
}

.category-page__desc-detail:first-of-type p,
.category-page__desc-detail:nth-of-type(2) p {
  font-size: 18px;
}

.category-page__desc-detail:first-of-type p:nth-child(2),
.category-page__desc-detail:nth-of-type(2) p:nth-child(2)  {
  margin: 0;
}

.category-page__desc-detail:first-of-type span {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}

.category-page__desc-detail:nth-of-type(2) {
  margin: 15px 0 0 0;
}

/* 共通 最新ニュース/イベント */
.news-page__latest-news {
  display: flex;
  gap: 30px;
  margin: 80px 0 0 0;
}

.news-page__latest-news-img,
.news-page__latest-news-text {
  width: 50%;
}

.news-page__latest-news-img {
  overflow: hidden;
}

.news-page__latest-news-img img {
  transition: transform .6s ease;
}

.news-page__latest-news-img img:hover {
  transform: scale(1.1);
}

.news-page__latest-news-text {
  display: flex;
  flex-direction: column;
}

.news-page__latest-news-content p{
  margin: 40px 0 12px 0;
  font-size: 10px;
}

.news-page__latest-news-img  {
  height: 100%;
  aspect-ratio: 500/300;
  object-fit: cover;
}

.news-page__latest-news-date {
  font-size: 10px;
  font-weight: bold;
  margin: 12px 0 0 0;
}

.news-page__latest-news-ttl {
  font-size: 20px;
  margin: 17px 0 0 0;
}

.news-page__latest-news-contnet p {
  margin: 27px 0 0 0;
  line-height: 2;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-page__latest-news-tag {
  margin: auto 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.news-page__latest-news-tag p {
  display: inline-block;
  padding: 7px 49px;
  background-color: var(--theme-color);
  border-radius: 12px;
  font-size: 0.62rem;
  margin: 0 0 10px 0;
}

.news-page__latest-news-morelink {
  display: inline-block;
  width: 100%;
  border: 3px solid var(--theme-color);
  border-radius: 27px;
  text-align: center;
  padding: 18px 0;
  font-size: 1.25rem;
  color: var(--theme-color);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.news-page__latest-news-morelink:hover {
  transform: scale(1.05);
}

/* 共通リストスタイル */
.category-page__list {
  margin: 80px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 74px 6%;
}

.category-page__item {
  display: flex;
  flex-direction: column;
}

.category-page__item-ttl {
  line-height: 1.3;
  font-weight: bold;
}

.category-page__item-excerpt {
  margin: 12px 0;
  font-size: 10px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 2;
}

.category-page__item-img {
  overflow: hidden;
}

.category-page__item-img img{
  aspect-ratio: 286/146;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.category-page__item-img img:hover{
  transform: scale(1.1);
}

.category-page__item-date {
  font-size: 10px;
  margin: 12px 0;
}

.category-page__item-tag {
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}

.category-page__item-tag p {
  display: inline-block;
  padding: 6px 32px;
  background-color: var(--theme-color);
  border-radius: 12px;
  font-size: 0.62rem;
}

.category-page__item-morelink {
  display: inline-block;
  width: 100%;
  border: 3px solid var(--theme-color);
  border-radius: 27px;
  text-align: center;
  padding: 10px 0;
  font-size: 10px;
  color: var(--theme-color);
  font-weight: bold;
  margin: auto 0 0 0;
  transition: transform 0.3s ease;
}

.category-page__item-morelink:hover {
  transform: scale(1.05);
}

/* 共通ページネーション */
.category-page__pagenation-inner {
  margin: 100px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.nexspage__pagenation-number {
  padding: 10px 13px;
  background-color: #fff;
  border-radius: 8px;
  font-weight: bold;
  color: #000;
}

.category-page__pagenation-prev {
  margin: 0 17px 0 0;
}

.category-page__pagenation-next {
  margin: 0 0 0 17px;
}

.page-numbers {
  color: #fff;
}

/* news/event/dance page 共通メディアクエリ */
/* ============================================ */

@media screen and (max-width: 1080px) {
  .category-page__list {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 0 0 0;
  }

  .news-page__latest-news-img {
    aspect-ratio: initial;
  }
}

@media screen and (max-width: 768px) {
  .news-page__container,
  .music-page__container,
  .event-page__container,
  .dance-page__container,
  .casting-page__container {
    padding: 90px 0;
  }
  .news-page__latest-news {
    display: block;
  }

  .news-page__latest-news-img {
    aspect-ratio: 500 / 300;
  }

  .news-page__latest-news-img,
  .news-page__latest-news-text {
    width: 100%;
  }

  .news-page__latest-news-content p{
    margin: 12px 0;
    font-size: 10px;
  }

  .news-page__latest-news-morelink {
    font-size: 10px;
    padding: 10px 0;
  }

  .category-page__ttl {
    font-size: 35px;
  }

  .category-page__desc p:first-child {
    font-size: 14px;
  }

  .category-page__desc p:nth-child(2) {
    font-size: 10px;
  }

  .category-page__desc-detail:first-of-type p,
  .category-page__desc-detail:nth-of-type(2) p {
    font-size: 10px;
  }

  .category-page__desc-detail:first-of-type span {
    font-size: 10px;
  }

  .category-page__desc {
    text-align: left;
  }

  .newspage__latest-news-text,
  .newspage__latest-news-img,
  .eventpage__latest-news-text,
  .eventpage__latest-news-img,
  .dancepage__latest-news-text,
  .dancepage__latest-news-img {
    width: 100%;
  }

  .newspage__latest-news-ttl,
  .eventpage__latest-news-ttl,
  .dancepage__latest-news-ttl {
    font-size: 1rem;
  }

  .newspage__latest-news-tag p,
  .eventpage__latest-news-tag p,
  .dancepage__latest-news-tag p {
    padding: 6px 32px;
  }

  .newspage__latest-news-morelink,
  .eventpage__latest-news-morelink,
  .dancepage__latest-news-morelink {
    font-size: 0.62rem;
    padding: 10px 0;
  }

  .category-page__list {
    grid-template-columns: 1fr;
  }
}

/* news/event/dance single page - 共通スタイル */
/* ============================================ */

/* 色変数 */
.news-single__container {
  --theme-color: #ffab27;
}

.event-single__container {
  --theme-color: #32ff92;
}

.dance-single__container {
  --theme-color: #32ff92;
}

.news-single__container {
  --theme-color: #ffab27;
}

.casting-single__container {
  --theme-color: #ffab27;
}

/* 共通コンテナ */
.news-single__container,
.event-single__container,
.dance-single__container,
.casting-single__container,
.works-single__container {
  width: 82%;
  max-width: 1124px;
  margin: 0 auto;
  padding: 150px 0;
  line-height: 2;
}

/* 共通タイトル */
.single__ttl {
  font-size: 55px;
  color: var(--theme-color);
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  padding: 0 0 10px 0;
  border-bottom: 3px solid var(--theme-color);
  font-family: "microgramma-extended", sans-serif;
  line-height: 1;
}

.single__news-date {
  font-size: 0.62rem;
  font-weight: bold;
  margin: 17px 0 5px 0;
}

/* 共通タイトル */
.single__news-ttl {
  font-size: 1.56rem;
  font-weight: bold;
  line-height: 1.5;
}

.single-content {
  margin: 30px 0 0 0;
  color: #fff;
}
/* 共通タグ */
.single__news-tag {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
}

.single__news-tag p {
  display: inline-block;
  background-color: var(--theme-color);
  padding: 6px 32px;
  border-radius: 8px;
}

/* 共通ページネーション */
.single-page__pagenation {
  width: 100%;
  max-width: 270px;
  margin: 80px auto 0 auto;
  display: flex;
  justify-content: space-between;
}

/* single page 共通メディアクエリ */
/* ============================================ */

@media screen and (max-width: 768px) {
  .news-single__container,
  .event-single__container,
  .dance-single__container,
  .casting-single__container,
  .works-signle__container {
    padding: 0;
  }

  .single__dance-tag {
    justify-content: flex-start;
  }
}

/* contact page */
/* ============================================ */

.contact__container {
  --theme-color: #fff;
  max-width: 1080px;
  width: 78%;
  margin: 0 auto;
  padding: 150px 0;
}

.contact__ttl {
  font-size: 55px;
  color: var(--theme-color);
  font-weight: bold;
  text-align: center;
  margin: 0 auto 60px auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid var(--theme-color);
  font-family: "microgramma-extended", sans-serif;
}

.contact__desc {
  text-align: center;
  font-size: 1.125rem;
  line-height: 2;
  margin: 0 0 60px 0;
  color: #fff;
}

.contact__form {
  max-width: 800px;
  margin: 0 auto;
}

.contact__form-group {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 40px 0;
}

.contact__form-label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: var(--theme-color);
  margin: 0 0 15px 0;
}

.contact__form-label-required {
  display: inline-block;
  background-color: #ff4444;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 0 0 0 10px;
}

.contact__form-input,
.contact__form-textarea,
.contact__form-select {
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #f8f8f8;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact__form-input:focus,
.contact__form-textarea:focus,
.contact__form-select:focus {
  outline: none;
  border-color: var(--theme-color);
  background-color: rgba(255, 255, 255, 0.15);
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact__form-textarea {
  min-height: 200px;
  resize: vertical;
  font-family: inherit;
}

.contact__form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.contact__form-select option {
  background-color: #1a1a1a;
  color: #fff;
}

.contact__form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--theme-color);
  cursor: pointer;
}

.contact__form-checkbox-label {
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
}

.contact__form-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 0 0;
  line-height: 1.5;
}

.contact__form-submit {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 60px auto 0 auto;
  padding: 20px 0;
  background-color: var(--theme-color);
  color: #000;
  font-size: 1.25rem;
  font-weight: bold;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact__form-submit:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.contact__form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.contact__info {
  margin: 100px 0 0 0;
  padding: 60px 0 0 0;
  border-top: 2px solid rgba(50, 255, 146, 0.3);
}

.contact__info-ttl {
  font-size: 1.875rem;
  color: var(--theme-color);
  font-weight: bold;
  text-align: center;
  margin: 0 0 40px 0;
  font-family: "microgramma-extended", sans-serif;
}

.contact__info-list {
  max-width: 600px;
  margin: 0 auto;
}

.contact__info-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__info-item:last-child {
  border-bottom: none;
}

.contact__info-label {
  width: 30%;
  font-weight: bold;
  color: var(--theme-color);
}

.contact__info-content {
  width: 70%;
  color: #fff;
  line-height: 1.8;
}

.contact__info-content a {
  color: var(--theme-color);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact__info-content a:hover {
  opacity: 0.7;
}

/* contact page メディアクエリ */
/* ============================================ */

@media screen and (max-width: 768px) {
  .contact__container {
    width: 85%;
    padding: 60px 0;
  }

  .contact__ttl {
    font-size: 35px;
    margin: 0 auto 40px auto;
  }

  .contact__desc {
    font-size: 0.875rem;
    margin: 0 0 40px 0;
    text-align: left;
  }

  .contact__form-label {
    font-size: 0.875rem;
  }

  .contact__form-input,
  .contact__form-textarea,
  .contact__form-select {
    padding: 12px 15px;
    font-size: 0.875rem;
  }

  .contact__form-submit {
    font-size: 1rem;
    padding: 15px 0;
    margin: 40px auto 0 auto;
  }

  .contact__info {
    margin: 60px 0 0 0;
    padding: 40px 0 0 0;
  }

  .contact__info-ttl {
    font-size: 1.25rem;
    margin: 0 0 30px 0;
  }

  .contact__info-item {
    flex-direction: column;
    padding: 15px 0;
  }

  .contact__info-label {
    width: 100%;
    margin: 0 0 8px 0;
  }

  .contact__info-content {
    width: 100%;
    font-size: 0.875rem;
  }
}


/* fandom page */
/* ============================================ */

.fandom-page__container {
  padding: 150px 0;
}

.fandom-page {
  max-width: 1080px;
  width: 78%;
  margin: 0 auto 100px auto;
}

.fandom-page__ttl p{
  box-sizing: border-box;
  font-size: 55px;
  color: #32ff92;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 30px auto;
  width: fit-content;
  padding: 0 40px 10px 40px;
  border-bottom: 3px solid #32ff92;
  font-family: "microgramma-extended", sans-serif;
}

.fandom-page__heading {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #32ff92;
}

.fandom-page__desc {
  margin: 30px 0 0 0;
  text-align: center;
  line-height: 2;
  color: #32ff92;
}

.fandom-page__whatwedo {
  margin: 20px 0 15px 0;
}

.fandom-page__whatwedo-ttl {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  font-family: "microgramma-extended", sans-serif;
  margin: 10px 0;
}

.fandom-page__whatwedo-desc {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
}

.fandom-page__achievements-note {
  font-family: kozuka-gothic-pr6n, sans-serif;
  text-align: center;
  margin: 28px 0 0 0;
}

.fandom-page__achievements-img-wrapper {
  border: 1px solid #fff;
  border-radius: 15px;
  max-width: 726px;
  width: 84%;
  margin: 30px auto 0 auto;
}

.fandom-page__achievements-img {
  padding: 3%;
  text-align: right;
}

.fandom-page__achievements-img span {
  display: inline-block;
  font-size: 8px;
  color: #fff;
}

.fandom-page__achievements-note span {
  display: inline;
}

.fandom-page__achievements-note:last-child {
  line-height: 2;
}
.fandom-page__achievements-list {
  background-color: #fff;
  border-radius: 25px;
  margin: 15px 0;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 20px 10px;
}

.fandom-page__achievements-item-img {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.fandom-page__achievements-item-ttl {
  color: #000;
  text-align: center;
}


.fandom-page__feature {
  margin: 30px 0;
}

.fandom-page__feature-ttl {
  text-align: center;
  color: #ffab27;
  font-size: 28px;
  font-weight: bold;
}

.fandom-page__feature-item {
  margin: 100px 0 0 0;
}

.fandom-page__feature-item:nth-child(2n) {
  text-align: right;
}

.fandom-page__feature-item-heading{
  position: relative;
  padding: 0 60px 0 60px;
}

.fandom-page__feature-item:nth-child(2n) .fandom-page__feature-item-heading::after{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
}

.fandom-page__feature-item:nth-child(2n + 1) .fandom-page__feature-item-heading::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}

.fandom-page__feature-item:nth-child(1) .fandom-page__feature-item-heading::after {
  background-color: #478204;
}

.fandom-page__feature-item:nth-child(2) .fandom-page__feature-item-heading::after {
  background-color: #8f0080;
}

.fandom-page__feature-item:nth-child(2) .fandom-page__feature-item-hero {
  max-width: 838px;
  margin: 0 0 0 auto;
  padding: 0 50px;
}

.fandom-page__feature-item:nth-child(2) .fandom-page__feature-item-hero div{
  margin: 20px 0;
  text-align: right;
  color: #fff;
}

.fandom-page__feature-item:nth-child(3) .fandom-page__feature-item-heading::after {
  background-color: #003a7b;
}

.fandom-page__feature-item:nth-child(3) .fandom-page__feature-item-hero {
  max-width: 569px;
  padding: 0 50px;
  margin: 20px 0 0 0;
}

.fandom-page__feature-item:nth-child(3) .fandom-page__feature-item-hero div{
  margin: 20px 0;
  text-align: right;
  color: #fff;
}

.fandom-page__feature-item:nth-child(4) .fandom-page__feature-item-heading::after {
  background-color: #8d3700;
}

.fandom-page__feature-item:nth-child(4) .fandom-page__feature-item-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 791px;
  margin: 17px 0 0 auto;
  padding: 0 50px;
}

.fandom-page__feature-item:nth-child(4) 
.fandom-page__feature-item-hero img:nth-child(1) {
  width: 56%;
  display: block;
}

.fandom-page__feature-item:nth-child(4) 
.fandom-page__feature-item-hero img:nth-child(2) {
  width: 43%;
  display: block;
}

.fandom-page__feature-item:nth-child(5) .fandom-page__feature-item-heading::after {
  background-color: #8f0001;
}

.fandom-page__feature-item:nth-child(5) .fandom-page__feature-item-hero {
  max-width: 854px;
  padding: 0 50px;
  margin: 26px 0 0 0;
}

.fandom-page__feature-item:nth-child(6) .fandom-page__feature-item-heading::after {
  background-color: #728100;
}

.fandom-page__feature-item:nth-child(6) .fandom-page__feature-item-hero {
  max-width: 727px;
  padding: 0 50px;
  margin: 15px 0 0 auto;
}

.fandom-page__feature-item:nth-child(7) .fandom-page__feature-item-heading::after {
  background-color: #670085;
}

.fandom-page__feature-item:nth-child(8) .fandom-page__feature-item-heading::after {
  background-color: #016580;
}

.fandom-page__feature-item-ttl {
  font-size: 28px;
  font-weight: bold;
}

.fandom-page__feature-item-desc {
  margin: 20px 0 0 0;
  line-height: 2;
  font-weight: bold;
  font-size: 15px;
}

.fandom-page_recommend {
  background-color: #808080;
  padding: 40px 0;
}

.fandom-page_recommend-inner {
  width: 78%;
  margin: 0 auto;
}

.fandom-page__recommend-ttl {
  text-align: center;
  color: #17ff05;
  font-size: 32px;
  font-weight: bold;
}

.fandom-page_recommend-item {
  margin: 0 0 30px 0;
}

.fandom-page_recommend-item-ttl {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin: 30px 0 0 0;
}

.fandom-page_recommend-item-desc {
  text-align: center;
  margin: 18px 0 0 0;
}

.fandom-page__contact {
  text-align: center;
}

.fandom-page__contact-arrow {
  width: 50px;
  height: 30px;
  margin: 0 auto;
  background-color: #32ff92;
  clip-path: polygon(0 0, 100% 0%, 50% 50%);
}


.fandom-page__contact p {
  font-size: 30px;
  font-weight: bold;
  color: #32ff92;
}

.fandom-page__contact a {
  box-sizing: border-box;
  display: block;
  width: 90%;
  max-width: 383px;
  margin: 30px auto 0 auto;
  padding: 20px 10px;
  border-radius: 27px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  background-color: #32ff92;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fandom-page__contact a:hover {
  opacity: 0.8;
}


/* fandom page メディアクエリ */
/* ============================================ */

@media screen and (max-width: 768px) {
  .fandom-page,
  .fandom-page_recommend-inner {
    width: 90%;  
  }

  .fandom-page__heading {
    width: 84%;
    margin: 0 auto;
    font-size: 15px;
    text-align: left;
  }

  .fandom-page__ttl p{
    font-size: 2.19rem;
    width: 84%;
    padding: 0 0 20px 0;
  }

  .fandom-page__ttl {
    width: 100%;
    margin: 20px auto 0 auto;
    font-size: 11px;
    text-align: left;
  }

  .fandom-page__whatwedo-ttl {
    font-size: 15px;
  }

  .fandom-page__whatwedo-desc {
    width: 84%;
    margin: 0 auto 0 auto;
    text-align: left;
    font-size: 9px;
  }

  .fandom-page__achievements-img-wrapper {
    width: 100%;
  }

  .fandom-page__achievements-note {
    width: 87%;
    margin: 20px auto 0 auto;
    text-align: left;
    font-size: 12px;
  }
  
  .fandom-page__achievements-note span{
    display: none;
  }

  .fandom-page__achievements-list {
    padding: 20px;
    grid-template-columns: repeat(3,1fr);
  }

  .fandom-page__achievements-item-ttl {
    font-size: 10px;
  }

  .fandom-page__achievements-img span {
    font-size: 6px;
  }

  .fandom-page__feature-item {
    margin: 37px 0 0 0;
  }

  .fandom-page__feature-item-heading {
    padding: 0 28px;
  }

  .fandom-page__feature-ttl {
    font-size: 20px;
  }

  .fandom-page__feature-item-ttl {
    font-size: 14px;
  }

  .fandom-page__feature-item-desc {
    font-size: 7px;
  }

  .fandom-page__feature-item:nth-child(2n) .fandom-page__feature-item-heading::after{
    width: 120px;
    height: 120px;
  }

  .fandom-page__feature-item:nth-child(2n + 1) .fandom-page__feature-item-heading::after {
    width: 120px;
    height: 120px;
  }

  .fandom-page__feature-item-hero img {
    padding: 0;
    width: 100%;
  }

  .fandom-page__feature-item:nth-child(2) .fandom-page__feature-item-hero {
    max-width: none;
    padding: 0;
    margin: 5px 0 0 auto;
  }

  .fandom-page__feature-item:nth-child(3) .fandom-page__feature-item-hero,
  .fandom-page__feature-item:nth-child(4) .fandom-page__feature-item-hero,
  .fandom-page__feature-item:nth-child(5) .fandom-page__feature-item-hero {
    max-width: none;
    padding: 0;
    margin: 13px 0 0 auto;
  }

  .fandom-page__feature-item:nth-child(6) .fandom-page__feature-item-hero {
    margin: 10px 0 0 auto;
  }

  .fandom-page__feature-item:nth-child(3) .fandom-page__feature-item-hero div{
    margin: 10px 0;
    font-size: 7px;
  }

  .fandom-page__feature-item:nth-child(2) .fandom-page__feature-item-hero div {
    margin: 10px 0;
    font-size: 7px;
  }

  .fandom-page__recommend-ttl {
    font-size: 14px;
    color: #32ff92;
  }

  .fandom-page_recommend-item {
    margin: 0 0 24px 0;
  }

  .fandom-page_recommend-item-ttl {
    text-align: left;
    font-size: 10px;
  }

  .fandom-page_recommend-item-desc {
    text-align: left;
    font-size: 10px;
    margin: 5px 0 0 0;
  }

  .fandom-page__contact-arrow {
    font-size: 15px;
  }

  .fandom-page__contact p{
    font-size: 20px;
  }

  .fandom-page__contact a {
    font-size: 14px;
    font-weight: bold;
  }
}

@media screen and (max-width: 428px) {
  .fandom-page__feature-item:nth-child(6) .fandom-page__feature-item-hero {
    max-width: 251px;
    padding: 0;
    margin: 10px 0 0 auto;
  }
}

/* brand page */
/* ============================================ */

.brand-page__container {
  padding: 150px 0 0 0;
}

.brand-page__ttl p{
  font-size: 55px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 30px auto;
  width: fit-content;
  padding: 0 0 10px 0;
  border-bottom: 3px solid #fff;
  font-family: "microgramma-extended", sans-serif;
}

.brand-page__logo {
  margin: 55px auto 0 auto;
  width: 26%;
  max-width: 253px;
}

.brand-page__concept {
  margin: 80px 0 0 0;
}

.brand-page__passion,
.brand-page__spirit,
.brand-page__style,
.brand-page__dream {
  margin: 23px 0 0 0;
}

.brand-page__concept-ttl,
.brand-page__passion-ttl,
.brand-page__spirit-ttl,
.brand-page__style-ttl,
.brand-page__dream-ttl{
  width: 78%;
  max-width: 1056px;
  margin: 0 auto;
  font-size: 2.5rem;
  font-family: "microgramma-extended", sans-serif;
  font-weight: bold;
  text-indent: -0.5em;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.brand-page__concept-content,
.brand-page__passion-content,
.brand-page__spirit-content,
.brand-page__style-content,
.brand-page__dream-content {
  background-color: #252525;
  margin: 17px 0 0 0;
}

.brand-page__concept-content-inner,
.brand-page__passion-content-inner,
.brand-page__spirit-content-inner,
.brand-page__style-content-inner,
.brand-page__dream-content-inner {
  padding: 17px 0;
  width: 78%;
  max-width: 1056px;
  margin: 0 auto;
}

.brand-page__spirit-content-inner,
.brand-page__style-content-inner,
.brand-page__dream-content-inner {
  padding: 17px 0 45px 0;
}

.brand-page__concept-content-subttl,
.brand-page__passion-content-subttl,
.brand-page__spirit-content-subttl,
.brand-page__style-content-subttl,
.brand-page__dream-content-subttl {
  font-size: 15px;
  font-weight: bold;
  text-decoration: underline;
}

.brand-page__concept-content-ttl,
.brand-page__passion-content-ttl,
.brand-page__spirit-content-ttl,
.brand-page__style-content-ttl,
.brand-page__dream-content-ttl {
  font-size: 1.8rem;
  font-family: "microgramma-extended", sans-serif;
  font-weight: bold;
  text-indent: -0.5em;
  margin: 45px 0 0 0;
}

.brand-page__passion-content-ttl {
  font-family: "Noto Sans JP", sans-serif;
}

.brand-page__concept-content-inner p:nth-child(3) {
  margin: 40px 0 0 0;
  line-height: 1.5;
  font-weight: bold;
}

.brand-page__concept-content-inner p:nth-child(4) {
  margin: 40px 0 0 0;
}

.brand-page__passion-content-inner p:nth-child(3){
  margin: 23px 0 0 0;
  line-height: 2;
  font-weight: bold;
}

.brand-page__spirit-content-inner p:nth-child(3) {
  margin: 45px 0 0 0;
  line-height: 2;
  font-weight: bold;
}

.brand-page__spirit-content-inner p:nth-child(4) {
  margin: 45px 0 0 0;
  line-height: 2;
}

.brand-page__spirit-content-inner p:nth-child(5) {
  margin: 45px 0 0 0;
  line-height: 2;
  font-size: 15px;
}

.brand-page__spirit-content-inner p:nth-child(6) {
  margin: 45px 0 0 0;
  font-weight: bold;
}

.brand-page__style-content-inner p:nth-child(3) {
  margin: 45px 0 0 0;
  line-height: 2;
  font-weight: bold;
}

.brand-page__style-content-inner p:nth-child(4) {
  margin: 45px 0 0 0;
}

.brand-page__style-content-inner div{
  margin: 15px 0 0 0;
}

.brand-page__style-content-inner div p:first-child{
  font-weight: bold;
}

.brand-page__style-content-inner div p:nth-child(2){
  margin: 15px 0 0 0;
  text-indent: 1em;
}

.brand-page__dream-content-inner p:nth-child(3) {
  margin: 40px 0 0 0;
  font-weight: bold;
}

.brand-page__dream-content-inner p:nth-child(4) {
  margin: 15px 0 0 0;
  line-height: 1.3;
}


.accordion-content {
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion-content.open {
  max-height: 1000px;
}

.accordion-icon {
  display: inline-block;
  background-color: #fff;
  width: 14px;
  height: 26px;
  cursor: pointer;
  clip-path: polygon(0% 50%, 14px 0%, 14px 26px);
  transition: transform 0.3s ease-out;
}

.accordion-icon.open {
  transform: rotate(-90deg);
}

/* brand media query */
/* ============================================ */


@media screen and (max-width: 768px) {
  .brand-page__container {
    padding: 90px 0 50px 0;
  }
  .brand-page__ttl p {
    width: 90%;
    max-width: fit-content;
    font-size: 35px;
  }

  .brand-page__logo {
    width: 100px;
  }

  .brand-page__concept {
    margin: 40px 0 0 0;
  }

  .brand-page__concept-content-inner,
  .brand-page__passion-content-inner,
  .brand-page__spirit-content-inner,
  .brand-page__style-content-inner,
  .brand-page__dream-content-inner {
    text-align: center;
    padding: 17px 0;
  }

  .brand-page__concept-ttl,
  .brand-page__passion-ttl,
  .brand-page__spirit-ttl,
  .brand-page__style-ttl,
  .brand-page__dream-ttl {
    font-size: 16px;
    text-align: center;
    justify-content: center;
  }

  .brand-page__concept-content-subttl,
  .brand-page__passion-content-subttl,
  .brand-page__spirit-content-subttl,
  .brand-page__style-content-subttl,
  .brand-page__dream-content-subttl {
    font-size: 10px;
  }

  .brand-page__concept-content-ttl,
  .brand-page__passion-content-ttl,
  .brand-page__spirit-content-ttl,
  .brand-page__style-content-ttl,
  .brand-page__dream-content-ttl {
    font-size: 12px;
    margin: 15px 0 0 0;
  }

  .brand-page__concept-content-inner p:nth-child(3) {
    font-size: 10px;
    margin: 15px 0 0 0;
  }

  .brand-page__concept-content-inner p:nth-child(4) {
    margin: 15px 0 0 0;
    font-size: 10px;
  }

  .brand-page__passion-content-inner p:nth-child(3) {
    font-size: 10px;
    line-height: 1.5;
  }

  .brand-page__spirit-content-inner p:nth-child(3) {
    margin: 15px 0 0 0;
    line-height: 1.5;
    font-size: 10px;
  }

  .brand-page__spirit-content-inner p:nth-child(4) {
    margin: 15px 0 0 0;
    line-height: 1.5;
    font-size: 10px;
  }
  
  .brand-page__spirit-content-inner p:nth-child(5) {
    margin: 15px 0 0 0;
    font-size: 10px;
  }
  
  .brand-page__spirit-content-inner p:nth-child(6) {
    margin: 20px 0 0 0;
    font-size: 10px;
  }

  .brand-page__style-content-inner p:nth-child(3) {
    margin: 15px 0 0 0;
    line-height: 1.5;
    font-size: 10px;
  }

  .brand-page__style-content-inner p:nth-child(4) {
    margin: 20px 0 0 0;
    font-size: 10px;
  }


  .brand-page__style-content-inner div {
    margin: 0;
    line-height: 2;
  }

  .brand-page__style-content-inner div p:first-child {
    font-size: 10px;
  }

  .brand-page__style-content-inner div p:nth-child(2) {
    margin: 0;
    text-indent: 0;
    font-size: 10px;
  }

  .brand-page__dream-content-inner p:nth-child(3) {
    margin: 15px 0 0 0;
    font-size: 10px;
  }
  
  .brand-page__dream-content-inner p:nth-child(4) {
    font-size: 10px;
  }

  .accordion-icon {
    width: 6px;
    height: 11px;
    clip-path: polygon(0% 50%, 6px 0%, 6px 11px);
  }
}




/* company page */
/* ============================================ */

.company {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  padding: 150px 0;
}

.company__logo {
  max-width: 180px;
  margin: 0 auto;
}

.company__detail {
  margin: 50px 0 0 0;
  line-height: 2;
}

.company__detail-border {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 10px 0;
}

/* GSAP ScrollTrigger markers hidden */
/* ============================================ */

.gsap-marker-scroller-start,
.gsap-marker-scroller-end,
.gsap-marker-start,
.gsap-marker-end {
  display: none !important;
}
