@charset "UTF-8";
/**************
Sass Mixin
**************/ /**************
Opening
**************/
#opening {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  will-change: transform;
}
#opening .opening_logo {
  width: 200px;
}
#opening .opening_logo svg {
  display: block;
  width: 100%;
  height: auto;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
}
@media (max-width: 559.9px) {
  #opening .opening_logo {
    width: 148px;
  }
}

body.is-opening {
  overflow: hidden;
}

/**************
Main Visual
**************/
.main_visual {
  position: relative;
  width: 100%;
  height: 960px;
  overflow: hidden;
  background: #f5e4e4;
}
.main_visual .main_bg {
  position: absolute;
  inset: 0;
}
.main_visual .main_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 999.9px) {
  .main_visual {
    height: 780px;
  }
}
@media (max-width: 559.9px) {
  .main_visual {
    height: 680px;
  }
}

.main_cards_viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 141px;
  overflow: hidden;
}
@media (max-width: 999.9px) {
  .main_cards_viewport {
    padding-top: 110px;
  }
}
@media (max-width: 559.9px) {
  .main_cards_viewport {
    padding-top: 96px;
  }
}

.main_cards_track {
  display: flex;
  gap: 28px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: mainMarquee 144s linear infinite;
          animation: mainMarquee 144s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .main_cards_track {
    -webkit-animation: none;
            animation: none;
  }
}

.main_cards {
  display: flex;
  gap: 28px;
}
.main_cards .main_card {
  position: relative;
  width: 396px;
  height: 624px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.main_cards .main_card .main_card_slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.main_cards .main_card .main_card_slides.is-sliding .is-current {
  opacity: 0;
  transform: scale(1.15);
}
.main_cards .main_card .main_card_slides.is-sliding .is-next {
  opacity: 1;
  transform: scale(1);
}
.main_cards .main_card .main_card_face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: center center;
  transition: opacity 1s ease, transform 1s ease;
}
.main_cards .main_card .main_card_face.is-current {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}
.main_cards .main_card .main_card_face.is-next {
  opacity: 0;
  z-index: 2;
  transform: scale(1.15);
}
.main_cards .main_card .main_card_face img {
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 999.9px) {
  .main_cards {
    gap: 16px;
  }
  .main_cards .main_card {
    width: 280px;
    height: 441px;
  }
}
@media (max-width: 559.9px) {
  .main_cards .main_card {
    width: 220px;
    height: 346px;
  }
}

@-webkit-keyframes mainMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@keyframes mainMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 14px));
  }
}
.main_intro {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 2;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.main_intro .main_lead {
  font-family: "M PLUS 1p", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1e1e1e;
  max-width: 729px;
}
.main_intro .btn-blue {
  flex-shrink: 0;
}
@media (max-width: 559.9px) {
  .main_intro .btn-blue {
    margin: 0 auto;
  }
}
@media (max-width: 999.9px) {
  .main_intro {
    bottom: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .main_intro .main_lead {
    font-size: 1.5rem;
    max-width: none;
  }
}
@media (max-width: 559.9px) {
  .main_intro {
    bottom: 20px;
  }
  .main_intro .main_lead {
    font-size: 1.4rem;
  }
}

/**************
News
**************/
.top_news_section {
  padding: 80px 0 100px;
}
@media (max-width: 834.9px) {
  .top_news_section {
    padding: 60px 0 80px;
  }
}
@media (max-width: 559.9px) {
  .top_news_section {
    padding: 48px 0 64px;
  }
}
.top_news_section .big-title {
  margin-bottom: 72px;
}
@media (max-width: 834.9px) {
  .top_news_section .big-title {
    margin-bottom: 40px;
  }
}

/* .news_list / .news_card / .section_btn は下層でも使うため styles.scss へ移動 */
/**************
Artists
**************/
.top_artists_section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
@media (max-width: 834.9px) {
  .top_artists_section {
    padding: 60px 0 80px;
  }
}
.top_artists_section .artists_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 570px;
  pointer-events: none;
  z-index: 0;
}
.top_artists_section .artists_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.top_artists_section .wrap {
  position: relative;
  z-index: 1;
}
.top_artists_section .big-title {
  margin-bottom: 72px;
}
@media (max-width: 834.9px) {
  .top_artists_section .big-title {
    margin-bottom: 40px;
  }
}

.artist_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 24px;
  width: 100%;
  margin: 0 auto;
}

.artist_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  width: calc(25% - 18px);
}
.artist_item .artist_thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.artist_item .artist_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.artist_item .artist_name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 28px;
  color: #1e1e1e;
}
@media (max-width: 559.9px) {
  .artist_item .artist_name {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.artist_item .artist_name_en {
  font-family: "nexa", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0.04em;
  color: #7a7a7f;
  margin-top: 3px;
}
@media (max-width: 559.9px) {
  .artist_item .artist_name_en {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
.artist_item .float_link {
  border-radius: 50%;
}
.artist_item:hover .artist_name {
  color: #20a3b8;
}
@media (max-width: 999.9px) {
  .artist_item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 559.9px) {
  .artist_item {
    width: calc(50% - 12px);
    margin: 0 auto;
  }
}

/**************
Official Goods
**************/
.top_goods_section {
  padding: 40px 0 80px;
}
@media (max-width: 834.9px) {
  .top_goods_section {
    padding: 24px 0 60px;
  }
}
.goods_links {
  display: flex;
  justify-content: center;
  gap: 44px;
  max-width: 988px;
  margin: 0 auto;
}
@media (max-width: 834.9px) {
  .goods_links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.goods_card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 21px;
  width: calc(50% - 22px);
  min-height: 144px;
  padding: 24px 64px 24px 34px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease 0s;
}
.goods_card .goods_card_img {
  width: 121px;
  flex-shrink: 0;
}
.goods_card .goods_card_img img {
  width: 100%;
  height: auto;
  display: block;
}
.goods_card .goods_card_img.planning {
  width: 190px;
}
.goods_card .goods_card_title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1e1e1e;
}
.goods_card .goods_card_text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #7a7a7f;
  margin-top: 9px;
}
.goods_card .goods_card_arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods_card .goods_card_arrow .icon-arrow-white {
  display: block;
  width: 3px;
  height: 3px;
  background: #fff;
  box-shadow: 3px 3px 0 #fff, 0 6px 0 #fff;
  transform: translateY(-3px);
}
.goods_card:hover {
  opacity: 0.92;
}
@media (max-width: 834.9px) {
  .goods_card {
    width: 100%;
    max-width: 560px;
  }
}
@media (max-width: 559.9px) {
  .goods_card {
    gap: 12px;
    min-height: 100px;
    padding: 18px 40px 18px 18px;
  }
  .goods_card .goods_card_img {
    width: 72px;
  }
  .goods_card .goods_card_img.planning {
    width: 108px;
  }
  .goods_card .goods_card_title {
    font-size: 1.6rem;
  }
  .goods_card .goods_card_text {
    font-size: 1.2rem;
    margin-top: 6px;
  }
  .goods_card .goods_card_text br {
    display: none;
  }
  .goods_card .goods_card_arrow {
    width: 28px;
    height: 28px;
    right: 10px;
    bottom: 10px;
  }
}
/*# sourceMappingURL=index.css.map */