@charset "UTF-8";

:root {
  --color-main: #FF007C;
  /* --color-main: #E60078; */
  --color-text: #121212;
  --color-grey: #E8EBEC;
  --font-en: 'Trainer Grotesk';
  --font-ja: 'Noto Sans JP', sans-serif;
  --pc-inner-sum: 1320px;
  --breakpoint: 768px;
  --sp-camp: 375px;
  --leading-trim:calc((1em - 1lh) / 2);
}

@font-face {
  font-family: 'Trainer Grotesk';
  src: url('../fonts/EBTrainerGrotesk-Book.woff2') format('woff2'),
  url('../fonts/EBTrainerGrotesk-Book.woff') format('woff');
}
@font-face {
  font-family: 'Trainer Grotesk Italic';
  src: url('../fonts/EBTrainerGrotesk-BookItalic.woff2') format('woff2'),
  url('../fonts/EBTrainerGrotesk-BookItalic.woff') format('woff');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/noto-sans-jp-subset-400.woff2') format('woff2'),
  url('../fonts/noto-sans-jp-subset-400.woff') format('woff');
}
  
@font-face {
font-family: 'Noto Sans JP';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url('../fonts/noto-sans-jp-subset-500.woff2') format('woff2'),
url('../fonts/noto-sans-jp-subset-500.woff') format('woff');
}

@font-face {
font-family: 'Noto Sans JP';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url('../fonts/noto-sans-jp-subset-600.woff2') format('woff2'),
url('../fonts/noto-sans-jp-subset-600.woff') format('woff');
}
  
@font-face {
font-family: 'Noto Sans JP';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url('../fonts/noto-sans-jp-subset-700.woff2') format('woff2'),
url('../fonts/noto-sans-jp-subset-700.woff') format('woff');
}
  

html {
	font-size: 10px;
}
/* インナー幅～タブレットまではリキッドレイアウト */
@media screen and (max-width: 1319px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1280 * 100vw);
  }
}
/* スマホのカンプ幅～767まではリキッドレイアウト */
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}

body {
  font-size: 2rem;
  color: var(--color-text);
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}
body.en {
  font-family: var(--font-en);
  line-height: 1.3;
}
body.ja {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
}
body.is-fixed {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
summary {
  list-style: none;
  cursor: pointer;
}

.section-inner {
  width: 100%;
  /* 右側MVコピーライトと位置を揃えるために指定 */
  max-width: calc(100vw - (50vw - 66rem) + 6rem);
  margin: 0 auto;
  padding-inline: 3rem;
}
@media screen and (max-width: 767px) {
  .section-inner {
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 1537px) {
  .section-inner {
    max-width: 1620px;
    padding-inline: 5rem;
  }
}

.heading-lv2 {
  font-family: var(--font-en);
  font-size: 7.2rem;
  line-height: 0.95;
  font-weight: 600;
  color: var(--color-main);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .heading-lv2 {
    font-size: 4.4rem;
    text-align: center;
  }
}
.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s , transform 0.5s;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}
.heading-lv2.--center {
  text-align: center;
}
.italic {
  font-style: italic;
}
.ja .italic {
  font-style: normal;
}
.only-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
.only-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block;
  }
}
.sp-block {
  display: inline;
}

@media (max-width: 767px) {
  .sp-block {
    display: block;
  }
}

.d-none {
  display: none;
}

.header__burger-btn {
  display: none;
  /* headerをvisibility:hiddenにするため指定 */
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .header__burger-btn {
    display: block;
    width: 5rem;
    height: 5rem;
    background: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
  }
}
.header__burger-lines {
  display: block;
  width: 1.9rem;
  height: 1.4rem;
  position: relative;
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}
.header__burger-line:nth-child(1) {
  top: 0;
}
.header__burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.header__burger-line:nth-child(3) {
  bottom: 0;
}
.header__burger-btn.is-open .header__burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header__burger-btn.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger-btn.is-open .header__burger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

.header {
  font-family: var(--font-en);
  background: var(--color-main);
  height: 4rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  z-index: 100;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header {
    visibility: hidden;
    /* transition: opacity 0.3s; */
  }
}
.header__sp-menu {
  display: contents;
}
@media screen and (max-width: 767px) {
  .header__sp-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--color-main);
    justify-content: center;
    align-items: center;
    visibility: visible;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-size: 2rem;
    z-index: 2;
  }
  .header__sp-menu.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.header .section-inner {
  display: grid;
  grid-template-columns: max-content 1fr auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .section-inner {
    display: block;
  }
}
.header__nav {
}
.header__nav-list {
  display: flex;
  gap: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    gap: 3rem 0;
  }
}
.header__nav-item {
  text-align: center;
}
.header__nav-link {
  text-transform: uppercase;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    color: #FFACD2;
  }
}
.header__lang {
  justify-self: end;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__lang {
    margin-top: 6rem;
    justify-self: unset;
    width: fit-content;
    margin-inline: auto;
  }
}
.header__lang::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1.4em;
  background: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .header__lang::after {
    height: 1em;
  }
}
.header__lang-link {
  display: inline-block;
  line-height: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header__lang-link:hover {
    opacity: 0.5;
  }
}
.header__lang-link.en {
  padding-right: 1rem;
}
.header__lang-link.ja {
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .header__lang-link.en {
    padding-right: 1.5rem;
  }
  .header__lang-link.ja {
    padding-left: 1.5rem;
  } 
}
.header__page-top {
  margin-left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header__page-top:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .header__page-top {
    display: none;
  }
}
.header__page-top::after {
  content: '';
  height: 0.8em;
  aspect-ratio: 16 / 20;
  background: url("../img/icon_arrow_up.png") no-repeat center center / contain;
}

.intro-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* max-width: 132rem; */
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .intro-area {
    display: block;
  }
}
.mv-left {
  width: 100%;
  height: calc(100vh - 4rem);
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;

}
@media screen and (max-width: 767px) {
  .mv-left {
    display: block;
    width: 100%;
    height: 100svh;
    position: relative;
    background: rgb(243, 181, 207);
  }
}
@media screen and (min-width: 1537px) {
  .mv-left {
    max-width: 810px;
    justify-self: end;  
  }
}
.mv-left picture {
  display: contents;
}
.mv-left__content {
  width: calc(100% - 4rem);
  height: calc(100% - 6rem);
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .mv-left__content {
    width: 100%;
    height: 100%;
  }
}

.mv-right {
  width: 100%;
  height: calc(100vh - 4rem);
  background: #F3B5CF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-right {
    display: none;
  }
}
@media screen and (min-width: 1537px) {
  .mv-right {
    max-width: 810px;
  }
}
.mv-right__bg {
  width: 100%;
  height: 100%;
}
.mv-right__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mv-right__text-pc,
.mv-left__text-sp {
  position: absolute;
}
.mv-right__text-pc {
  width: calc(100% - 6rem);
  max-width: 66rem;
  height: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .mv-right__text-pc {
    display: none;
  }
}
@media screen and (min-width: 1537px) {
  .mv-right__text-pc {
    width: calc(100% - 10rem);
    max-width: unset;
  }
}

.mv-right__text-pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mv-left__text-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv-left__text-sp {
    display: block;
    width: calc(289 / 375 * 100%);
  }
}
.mv-left__text-sp.top {
  top: 2rem;
  right: 2rem;
}
.mv-left__text-sp.bottom {
  bottom: 2rem;
  right: 2rem;
}
.mv-left__text-sp img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {

}

.ehbt {
  width: 100%;
  padding-top: 11.4rem;
  /* max-width: 66rem; */
}
@media screen and (max-width: 767px) {
  .ehbt {
    max-width: unset;
    padding-top: 5.7rem;
  }
}
@media screen and (min-width: 1537px) {
  .ehbt {
    max-width: 810px;
  }
}

.ehbt .section-inner {
  width: calc(100% - 6rem);
  /* 右側KVとセンター位置を揃えるため.mv-right__text-pcと同じmax-widthを指定 */
  max-width: 66rem;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .ehbt .section-inner {
    width: 100%;
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 1537px) {
  /* 右側KVとセンター位置を揃えるため.mv-right__text-pcと同じスタイルを指定 */
  .ehbt .section-inner {
    width: calc(100% - 10rem);
    max-width: unset;
  }
}


.ehbt__subttl {
  line-height: 1;
  font-weight: bold;
  margin-top: 4.5rem;
  text-align: center;
  color: var(--color-main);
  text-transform: uppercase;
}
.ja .ehbt__subttl {
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .ehbt__subttl {
    margin-top: 2.5rem;
  }
}
.ehbt__subttl > span {
  display: block;
  line-height: 1.3;
  margin-block: var(--leading-trim);
}
.ehbt__subttl .top {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .ehbt__subttl .top {
    font-size: 2.6rem;
  }
  .ja .ehbt__subttl .top {
    font-size: 2.4rem;
  }
}
.ehbt__subttl .bottom {
  font-size: 2.2rem;
  margin-top: calc(var(--leading-trim) + 1.5rem);
}
@media screen and (max-width: 767px) {
  .ehbt__subttl .bottom {
    font-size: 1.8rem;
  }
}
.ehbt__txt {
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 3rem );
}
@media screen and (max-width: 767px) {
  .ehbt__txt {
    margin-top: calc(var(--leading-trim) + 4.4rem );
  }
}
.ehbt__txt + .ehbt__txt {
  margin-top: calc(var(--leading-trim) + 3rem);
}
.ehbt__footer {
  margin-top: 4.8rem;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .ehbt__footer {
    margin-top: 3rem;
  }
}

.concept {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .concept {
    padding-top: 8rem;
  }
}
.details {
  border-top: 2px solid var(--color-main);
}
.summary {
  font-family: var(--font-en);
  font-size: 2.4rem;
  color: var(--color-main);
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .summary {
    font-size: 1.8rem;
  }
}
.summary-inner {
  padding: 2.55rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.9rem;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .summary-inner {
    padding: 1.6rem 1.5rem;
  }
}
.concept .details {
  border-bottom: 2px solid var(--color-main);
}
.concept .concept__summary-inner {
  text-align: center;
}
.summary-inner-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
}
.summary-inner-icon::before,
.summary-inner-icon::after {
  content: '';
  display: block;
  background: var(--color-main);
  position: absolute;
  inset: 0;
  margin: auto;
}
.summary-inner-icon::before {
  width: 1.9rem;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .summary-inner-icon::before {
    width: 1.4rem;
  }
}
.summary-inner-icon::after {
  width: 2px;
  height: 1.9rem;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .summary-inner-icon::after {
    height: 1.4rem;
  }
}
.details[open] .summary-inner-icon::after {
  transform: rotate(270deg);
}
.details-cont {
  overflow: hidden;
}
.concept__cont-inner {
  padding-block: 6rem;
}
@media screen and (max-width: 767px) {
  .concept__cont-inner {
    padding-block: 3rem;
  }
}
.concept__cont-item + .concept__cont-item {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .concept__cont-item + .concept__cont-item {
    margin-top: 5rem;
  }
}
.concept__cont-item-ttl {
  font-size: 2.8rem;
  line-height: 0.95;
  color: var(--color-main);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .concept__cont-item-ttl {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-block: var(--leading-trim);
  }
}
.concept__cont-item-txt {
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 3rem );
}
@media screen and (max-width: 767px) {
  .concept__cont-item-txt {
    margin-top: calc(var(--leading-trim) + 2rem );
  }
}
.concept__cont-item-table-wrap {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .concept__cont-item-table-wrap {
    margin-top: 2rem;
    overflow-x: auto;
    position: relative;
  }
}

/* テーブルのPC/SP共通設定 */
.concept__cont-item-table {
  table-layout: fixed;
}
.concept__cont-item-table th {
  font-weight: 600;
  color: var(--color-main);
  line-height: 1;
}
.concept__cont-item-table td {
  font-weight: 500; 
}
/* end of テーブルのPC/SP共通設定 */

.concept__cont-item-table.pc {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .concept__cont-item-table.pc {
    display: none;
  }
}
.concept__cont-item-table.pc thead tr {
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
.concept__cont-item-table.pc tbody tr {
  border-bottom: 1px solid #bbb;
}
.concept__cont-item-table.pc th {
  padding-block: 1.75rem;
}
.concept__cont-item-table.pc th:first-child {
  width: calc(320 / 1280 * 100%);
}
.concept__cont-item-table.pc th:nth-child(2),
.concept__cont-item-table.pc th:last-child {
  width: calc(480 / 1280 * 100%);
}
.concept__cont-item-table.pc td {
  padding-block: calc(2rem + var(--leading-trim));
  font-size: 1.8rem;
}

.concept__cont-item-table.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .concept__cont-item-table.sp {
    display:table;
    width: max-content;
    border-spacing:0;
    border-collapse:separate;  
    border-bottom: 1px solid var(--color-main);
  }
}
/* .concept__cont-item-table.sp tr {
  border-bottom: 1px solid var(--color-main);
}
.concept__cont-item-table.sp tr:first-child{
  border-top: 1px solid var(--color-main);
} */
.concept__cont-item-table.sp th,
.concept__cont-item-table.sp td {
  font-size: 1.3rem;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--color-main);
}
.concept__cont-item-table.sp th {
  width: 11rem;  
  position: sticky;
  left: 0;
  background: #fff;
}
.concept__cont-item-table.sp td {
  width: 16rem;
}
.concept__cont-item-table.sp tr:first-child th,
.concept__cont-item-table.sp tr:first-child td {
  padding-block: 1.6rem;
  border-top: 1px solid var(--color-main);
}
.concept__cont-item-table.sp tr:not(:first-child) th,
.concept__cont-item-table.sp tr:not(:first-child) td {
  vertical-align: middle;
  line-height: 1.3;
  height: 14rem;
  border-bottom: 1px solid var(--color-main);

  /* padding-block: calc(2.55rem + var(--leading-trim)); */
}
.concept__cont-item-table.sp tr:last-child th,
.concept__cont-item-table.sp tr:last-child td  {
  border-bottom: none;
}
.concept__cont-item-table.sp tr:not(:first-child) th {
}

.en .concept__cont-item-table.sp tr:not(:first-child) td {
  line-height: 0.95;
}
.ja .concept__cont-item-table.sp tr:not(:first-child) td {
  line-height: 1.5;
}

.scroll-hint-icon-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .scroll-hint-icon-wrap {
    display: block;
  }
}


.exhb-slider {
  padding-top: 12rem;
  overflow: hidden;
  /* display: none; */
}
@media screen and (max-width: 767px) {
  .exhb-slider {
    padding-top: 6rem;
  }
}
.exhb-slider__track {
  width: max-content;
  display: flex;
  gap: 0 10px;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.exhb-slider__slide:first-child {
  margin-left: 10px;
}
.exhb-slider__slide.large {
  width: 90rem;
}
@media screen and (max-width: 767px) {
  .exhb-slider__slide.large {
    width: 36rem;
  }
}
.exhb-slider__slide.small {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .exhb-slider__slide.small {
    width: 16rem;
  }
}
.exhb-slider__slide img {
  width: 100%;
  object-fit: cover;
}
.exhb-slider__slide.large img {
  aspect-ratio: 900 / 600;
}
.exhb-slider__slide.small img {
  aspect-ratio: 400 / 600;
}
.exhb-slider__caption {
  font-size: 1.2rem;
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 0.8rem );
}
@media screen and (max-width: 767px) {
  .exhb-slider__caption {
    font-size: 1rem;
  }
}



.artists {
  padding-block: 13rem;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .artists {
    padding-block: 8rem;
  }
}
.artists__top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .artists__top {
    display: block;
  }
}
.artists__text-lists {
  display: grid;
  grid-template-columns: repeat(3, 24rem);
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .artists__text-lists {
    margin-top: 4rem;
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    gap: 1rem 0;
  }
  .ja .artists__text-lists {
    max-width: 30rem;
    margin-inline: auto;
  }
}
.artists__text-item {
  font-weight: 600;
  text-transform: uppercase;
}
.artists__img-lists {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .artists__img-lists {
    margin: 6rem auto 0;
    display: block;
    max-width: 24rem;
  }
}
.artists__img-list-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .artists__img-list-item:not(:first-child) {
    margin-top:  8rem;
  }
}
@media screen and (max-width: 767px) {
  .artists__img-list-item {
    margin-top: 3.5rem;
  }
}
.artists__img-list-item-btn {
  display: block;
  width: 100%;
}
.artists__img-list-name {
  display: block;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  font-weight: 600;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .artists__img-list-name {
    margin-top: 1.2rem;
  }
}

/* Safariで.dialogのCSSが効かなかった為、このセレクターだけモバイルファーストで書いています */
.artists__dialog {
  width: min(128rem, calc(100vw - 4rem));
  height: calc(70dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  padding: 3rem 0 1.8rem;
  background: #fff;
  position: relative;
  flex-direction: column;
  outline: none;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  .artists__dialog {
    height: 85vh;
    padding: 6rem 0 0;
  }
}
/* モバイルファーストここまで */


.artists__dialog[open] {
  opacity: 1;
  display: flex;
  gap: 2rem 0;
}
@starting-style {
  .artists__dialog[open] {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .artists__dialog[open] {
    gap: 1.5rem 0;
  }
}
.artists__dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.artists__dialog-header {
  flex-shrink: 0;
  width: min(120rem, 100%);
  padding-inline: 2rem;
  margin-inline: auto;
  margin-block: var(--leading-trim);
}
@media screen and (max-width: 767px) {
  .artists__dialog-header {
    padding-inline: 1.5rem;
  }
}
.artists__dialog-name {
  font-size: 6.4rem;
  font-weight: 600;
  color: var(--color-main);

}
@media screen and (max-width: 767px) {
  .artists__dialog-name {
    font-size: 3rem;
  }
}
.artists__dialog-body {
  height: 100%;  /* .artists__dialog-swiperをダイアログ内で見切れないようにするために指定 */ 
  flex-grow: 1;
  min-height: 0;
  overflow-y: auto;
  width: min(120rem, 100%);
  padding-inline: 2rem;
  margin-inline: auto;
  overscroll-behavior: contain;
}
@media screen and (max-width: 767px) {
  .artists__dialog-body {
    padding-inline: 1.5rem;
  }
} 
.artists__dialog-close {
  position: absolute;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  top: 2.4rem;
  right: 2.4rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .artists__dialog-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.artists__dialog-close::before,
.artists__dialog-close::after {
  content: '';
  display: inline-block;
  background: var(--color-main);
  position: absolute;
  inset: 0;
  margin: auto;
}
.artists__dialog-close::before {
  width: 100%;
  height: 2px;
}
.artists__dialog-close::after {
  width: 2px;
  height: 100%;
}
.artists__dialog-swiper {
  height: 100%;
}
.artists__dialog-swiper-slide-img-wrap{
  background: #E8EBEC;
  width: 100%;
  height: calc(100% - 2lh);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .artists__dialog-swiper-slide-img-wrap{
    aspect-ratio: unset;
    height: 30rem;
  }
}
.artists__dialog-swiper-slide-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .artists__dialog-swiper-slide-img {
    width: calc(100% - 4rem);
  }
}
.artists__dialog-swiper .swiper-button-prev,
.artists__dialog-swiper .swiper-button-next {
  width: 3.5rem;
  height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .artists__dialog-swiper .swiper-button-prev,
  .artists__dialog-swiper .swiper-button-next {
    width: 1.5rem;
    height: 1.5rem;
    
  }
}
.artists__dialog-swiper .swiper-button-prev {
  left: 1.5rem;
}
.artists__dialog-swiper .swiper-button-next {
  right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .artists__dialog-swiper .swiper-button-prev {
    left: 0.1rem;
  }
  .artists__dialog-swiper .swiper-button-next {
    right: 0.1rem;
  }
}
.artists__dialog-swiper .swiper-button-prev svg,
.artists__dialog-swiper .swiper-button-next svg,
.artists__dialog-swiper .swiper-button-prev path,
.artists__dialog-swiper .swiper-button-next path {
  fill: #7d7d7d;
}

.artists__dialog-caption {
  font-size: 1.4rem;
  color: var(--color-main);
  line-height: 1.1;
  font-weight: 500;
  margin-top: calc(var(--leading-trim) + 1rem );
}
@media screen and (max-width: 767px) {
  .artists__dialog-caption {
    font-size: 1rem;
  }
}
.artists__dialog-prof {
  display: grid;
  grid-template-columns: 32rem 1fr;
  gap: 0 6rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .artists__dialog-prof {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .artists__dialog-prof-img-wrap {
    max-width: 16rem;
    margin-inline: auto;
    text-align: center;
  }
}
.artists__dialog-prof .artists__dialog-caption {
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .artists__dialog-prof-txts {
    margin-top: 2rem;
  }
}
.artists__dialog-prof-txt {
  margin-block: var(--leading-trim);
}
.artists__dialog-prof-txt + .artists__dialog-prof-txt {
  margin-top: calc(var(--leading-trim) + 3rem );
  
}
@media screen and (max-width: 767px) {
  .artists__dialog-prof-txt + .artists__dialog-prof-txt {
    margin-top: calc(var(--leading-trim) + 1.5rem );
  }
}
.artists__dialog-backToTop {
  margin-block: 10rem;
  color: var(--color-main);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .artists__dialog-backToTop {
    margin-block: 5rem;
  }
}
.artists__dialog-backToTop-btn {
  line-height: 0.95;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-main);
}


.curator {
  background: var(--color-grey);
  padding-top: 7rem;
  padding-bottom: 21.7rem;
}
@media screen and (max-width: 767px) {
  .curator {
    padding-top: 8rem;
    padding-bottom: 9rem;
  }
}
.curator .section-inner {
  display: grid;
  grid-template-columns: 64rem 1fr;
  gap: 0 4rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .curator .section-inner {
    display: block;
  }
}
.curator__left {
  margin-top: 5.5rem;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 767px) {
  .curator__left {
    position: static;
    margin-top: 0;
  }
}
.curator__img {
  width: 44rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .curator__img {
    width: 26rem;
  }  
}
.curator__right {
  margin-top: 24.3rem;
}
@media screen and (max-width: 767px) {
  .curator__right {
    margin-top: 4rem;
  }
}
.curator__ttl {
  line-height: 1;
  margin-top: -0.125em;
}
.curator__ttl > span {
  display: block;
  line-height: 0.95;
}
.ja .curator__ttl > span {
  line-height: 1;
}
.curator__ttl > span:first-child {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .curator__ttl > span:first-child {
    font-size: 2.4rem;
  }
}
.curator__ttl span:last-child {
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .curator__ttl span:last-child {
    margin-top: 1.8rem;
  }
}
.ja .curator__ttl span:last-child {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .ja .curator__ttl span:last-child {
    margin-top: 1rem;
  }
}

.curator__sub-ttl {
  font-size: 3.2rem;
  color: var(--color-main);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 2.3rem );
  text-align: center;
  font-style: italic;
}
.ja .curator__sub-ttl {
  font-family: 'Trainer Grotesk','Noto Sans JP', sans-serif;
  line-height: 1.2;
  margin-top: calc(var(--leading-trim) + 3rem );
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .curator__sub-ttl {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-top: calc(var(--leading-trim) + 2rem );
    
  }
}
.curator__txt {
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 4rem );
}
@media screen and (max-width: 767px) {
  .curator__txt + .curator__txt {
    margin-top: calc(var(--leading-trim) + 3rem );
  }

}

.organization {
  padding-top: 16rem;
  padding-bottom: 13.4rem;
  border-bottom: 2px solid var(--color-main);
}
@media screen and (max-width: 767px) {
  .organization {
    padding-top: 8rem;
    padding-bottom: 6.7rem;
  } 
}
.organization__dl-wrap {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 56rem repeat(2, 1fr);
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .organization__dl-wrap {
    display: block;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .organization__dl + .organization__dl {
    margin-top: 4rem;
  } 
}
.organization__dl-item + .organization__dl-item {
  margin-top: 4rem;
}
.organization__dt {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-main);
  text-transform: uppercase;
  margin-block: var(--leading-trim);
}
.en .organization__dt {
  font-style: italic;
}
.organization__dd {
  margin-top: 1rem;
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 1rem );
}
.organization__sponcer-logo-wrap {
  width: 38.85rem;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 18.8rem 1fr;
  grid-template-areas: 
    "GFK JCSF" ;
  gap: 4.9rem 5.2rem;
}
@media screen and (max-width: 767px) {
  .organization__sponcer-logo-wrap {
    width: 100%;
    gap: 2.45rem 5.2rem;
  }
}
.organization__sponcer-logo.GFK {
  grid-area: GFK;
}
.organization__sponcer-logo.JCSF {
  grid-area: JCSF;
}
.organization__sponcer-logo.MUFG {
  grid-area: MUFG;
}
 
.info {
  padding-top: 8rem;
  padding-bottom: 13.1rem;
}
@media screen and (max-width: 767px) {
  .info {
    padding-top: 4rem;
    padding-bottom: 6.55rem;
  }
}
.info .section-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem 8rem;
}
@media screen and (max-width: 767px) {
  .info .section-inner {
    display: block;
  }
}
.info__left,
.info__right {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .info__left,
  .info__right {
    display: block;
  }
}
.info__img {
  aspect-ratio: 600 / 797;
}
.info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .info__img {
    width: 100%;
    aspect-ratio: 345 / 260;
  }
  .info__img img {
    object-position: 0 -12.5rem;
  }
}

.info__details-wrap {
}
@media screen and (max-width: 767px) {
  .info__details-wrap {
    margin-top: 4rem;
  }
}

.info .details:last-child .summary-inner {
  border-bottom: 2px solid var(--color-main);
}
.info__details-cont-inner {
  padding: 4rem 2rem;
  border-top: 2px solid var(--color-main);
}
@media screen and (max-width: 767px) {
  .info__details-cont-inner {
    padding: 3rem 1.5rem;
  }
}
.info__details:last-child .info__details-cont-inner {
  border-top: none;
  padding-bottom: 0;
}
.info__details-cont-txt {
  line-height: 1.3;
  margin-block: var(--leading-trim);
}
.info__right {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .info__right {
    padding-top: 6rem;
  }
}

.info__sub-ttl {
  margin-top: 7.2rem;
  line-height: 1;
  color: var(--color-main);
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .info__sub-ttl {
    text-align: center;
    margin-top: 5rem;
  }
}
.info__sub-ttl > span {
  display: block;
  line-height: 1.3;
  margin-block: var(--leading-trim);
}
.info__sub-ttl > span.top {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {  
  .ja .info__sub-ttl > span.top {
    font-size: 2.4rem;
  }
}
.info__sub-ttl > span.bottom {
  margin-top: calc(var(--leading-trim) + 1.5rem);
}
@media screen and (max-width: 767px) {
  .info__sub-ttl > span.bottom {
    font-size: 1.8rem;
  }
}
.info__dl {
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .info__dl {
    margin-top: 5rem;
  }
}
.info__dl-item {
  line-height: 1;
}
.info__dl-item + .info__dl-item {
  margin-top: 4rem;
}
.info__dt {
  font-size: 1.4rem;
  color: var(--color-main);
  line-height: 1.3;
  text-transform: uppercase;
  margin-block: var(--leading-trim);
}
.info__dd {
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 1.5rem );
}
.ja .info__dd {
  line-height: 1.5;
}
.info__dl-item.inquiry  .info__dd span {
  text-decoration: underline;
}
.info__map-wrap {
  width: 60rem;
  aspect-ratio: 60 / 40;
  translate: min(
    calc((100vw - 132rem) / 2 + 2rem),
    calc((144rem - 132rem) / 2 + 2rem)
  );
}
@media screen and (max-width: 767px) {
  .info__map-wrap {
    translate: unset;
    width: 100%;
    margin-top: 6.5rem;
  }
}
.info__map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.press {
  background: var(--color-grey);
  padding-top: 12rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .press {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}
.press__cont {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8rem;
}
@media screen and (max-width: 767px) {
  .press__cont {
    display: block;
    margin-top: 5rem;
  }
}
.press__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .press__item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .press__item + .press__item {
    margin-top: 4rem;
  }
}
.press__item-ttl {
  font-family: 'Trainer Grotesk','Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  color: var(--color-main);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ja .press__item-ttl {
    font-size: 2rem;
  }
}
.press__rlease-list,
.press__inquiry-box {
  margin-top: 1.5rem;
  grid-row: span 1;
}
.press__rlease-list {
  display: grid;
}
.press__release-item {
  background: #fff;
}
.press__release-item-link {
  display: block;
  height: 100%;
  padding: 2.65rem 3rem;
}
.press__release-item + .press__release-item {
  margin-top: 2px;
}
.press__release-date {
  font-family: var(--font-en);
  display: block;
  font-size: 1.4rem;
  color: var(--color-main);
  line-height: 1;
}
.press__release-item-txt {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-block: var(--leading-trim);
  margin-top: calc(var(--leading-trim) + 1.5rem );
}
.press__inquiry-box {
  background: #fff;
  padding: 3rem 6.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
@media screen and (max-width: 767px) {
  .press__inquiry-box {
    padding: 2.65rem 3rem;
  }
}
.press__inquiry-ttl {
  font-size: 3rem;
  color: var(--color-main);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin-block: var(--leading-trim);
}
@media screen and (max-width: 767px) {
  .press__inquiry-ttl {
    font-size: 2.4rem;
  }
}
.press__inquiry-address {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .press__inquiry-address .address {
    text-align: left;
  }
}
.press__inquiry-address .mail {
  margin-top: 1.5rem;
}
.press__inquiry-address .mail > span{
  text-decoration: underline;
}

.about {
  padding-block: 12.9rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding-block: 6.45rem;
  }
}
.about .heading-lv2 {
  position: relative;
  z-index: 2;
}

.about__slider {
  margin-top: 6.5rem;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .about__slider {
    margin-top: 3.5rem;
  }
}
.about__track {
  width: max-content;
  display: flex;
  gap: 0 1rem;
  animation: scroll 30s linear infinite;
}
.about__slider-slide {
  width: min(calc(960 / 1440 * 100vw), 96rem);
}
.about__slider-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 960 / 640;
  object-fit: cover;
}
.about__img-caption {
  font-size: 1.2rem;
  margin-top: 0.8rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .about__img-caption {
    font-size: 1rem;
  }
}
.about__inner {
  margin-top: 5rem;  
  width: min(100rem, 100%);
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .about__inner {
    margin-top: 4rem;
  }
}
.about__txt {
  margin-block: var(--leading-trim);  
}
.about__bottom-cont {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about__bottom-cont {
    flex-direction: column;
    gap: 2.5rem 0;
    align-items: start;
  } 
}
.about__link {
  color: var(--color-main);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 0 1rem;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 0.55rem;
}
.about__link::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: var(--color-main);
  mask: url('../img/icon_arrow_top_right.svg') no-repeat center center / contain;
}
@media screen and (max-width: 767px) {
  .about__link::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.about__sns-list {
  display: grid;
  grid-template-columns: repeat(4, 2.4rem);
  align-items: center;
  gap: 0 2.5rem;
}
.about__sns-item {
  aspect-ratio: 1 / 1;
  line-height: 0;
}
.about__sns-link {
  display: block;
}

.footer {
  background: var(--color-main);
  height: 8rem;
  padding-top: 2rem;
  line-height: 1;
  text-align: center;
}
.footer small {
  font-family: var(--font-en);
  color: #fff;
  font-size: 1.2rem;
  line-height: 0.95;
}


