@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,400;0,600;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,400;0,600;0,700;1,400;1,700&display=swap");
:root {
  --header-h: 0px;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", serif;
  color: #111;
  font-weight: 400;
  font-size: 3.8vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f6f6f6;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    width: 100%;
    position: relative;
  }
}

/* Google Fonts を先に読み込む（CSSなら @import を先頭に） */
/* ローカルの秀英明朝があればそれを使い、無ければ Shippori Mincho */
.mincho-txt {
  font-family: "A-OTF 秀英明朝 Pro", "A-OTF 秀英明朝 Pr6N", "A-OTF 秀英明朝 Pr6", "A-OTF Shuei Mincho Pro", "A-OTF ShueiMincho Pro", "Shuei Mincho Pro", "ShueiMinchoPro", "Shippori Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
}

/* Google Fonts: Fira Sans を必要ウェイト分だけ読み込み（フォールバック用） */
/* =========================
   ローカル Futura を束ねる
   ========================= */
/* -------------------------------------------------
   Google Fonts: Fira Sans（フォールバック用）
   ------------------------------------------------- */
/* -------------------------------------------------
   ローカル Futura をウェイト別の仮ファミリーへ束ねる
   - local() は「フル名 or PostScript 名」に一致します
   - よくある名称を複数列挙（環境差吸収）
   - font-display はお好みで
   ------------------------------------------------- */
/* 100（Thin/Light 相当）→ 仮ファミリー名: "Futura W100" */
@font-face {
  font-family: "Futura W100";
  src: local("Futura Light"), local("Futura-Light"), local("Futura Lt BT"), local("Futura Light BT"), local("Futura PT Light"), local("FuturaPT-Light"), local("Futura Std Light"), local("FuturaStd-Light"), local("Futura LT Pro Light"), local("FuturaLTPro-Light");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/* 400（Regular/Book）→ 仮ファミリー名: "Futura W400" */
@font-face {
  font-family: "Futura W400";
  src: local("Futura"), local("Futura Book"), local("Futura-Book"), local("Futura PT Book"), local("FuturaPT-Book"), local("Futura Std Book"), local("FuturaStd-Book"), local("Futura LT Pro Book"), local("FuturaLTPro-Book"), local("Futura Regular"), local("Futura-Regular");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* 600（Medium/Demi/Semibold）→ 仮ファミリー名: "Futura W600" */
@font-face {
  font-family: "Futura W600";
  src: local("Futura Medium"), local("Futura-Medium"), local("Futura Demi"), local("FuturaDemi"), local("Futura Semibold"), local("Futura SemiBold"), local("Futura PT Medium"), local("FuturaPT-Medium"), local("Futura Std Medium"), local("FuturaStd-Medium"), local("Futura LT Pro Medium"), local("FuturaLTPro-Medium"), local("Futura Md BT");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* 700（Bold/Heavy）→ 仮ファミリー名: "Futura W700" */
@font-face {
  font-family: "Futura W700";
  src: local("Futura Bold"), local("Futura-Bold"), local("Futura Heavy"), local("Futura-Heavy"), local("Futura PT Bold"), local("FuturaPT-Bold"), local("Futura Std Bold"), local("FuturaStd-Bold"), local("Futura LT Pro Bold"), local("FuturaLTPro-Bold"), local("Futura Hv BT");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------------------------
   使い分け用のクラス
   - Futura を最優先
   - 無ければ Fira Sans → システム系
   - 要素側で必要なウェイトのクラスを付ける
   ------------------------------------------------- */
/* 既定（400） */
.futura {
  font-family: "Futura W400", "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

/* 100, 600, 700 用の補助クラス */
.futura--w100 {
  font-family: "Futura W100", "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 100;
}

.futura--w600 {
  font-family: "Futura W600", "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.futura--w700 {
  font-family: "Futura W700", "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

/* 疑似ボールド/イタリックを禁止したいなら必要に応じて（任意）
.futura, .futura--w100, .futura--w600, .futura--w700 {
  font-synthesis: none;
}
*/
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-large-block {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-block {
    display: block;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  padding: 6vw 6vw 0 6vw;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  header {
    padding: 2.4vw 3.4vw 0 3.4vw;
  }
}
header h1.hd-logo {
  display: block;
  width: 30%;
  position: relative;
}
header h1.hd-logo span.logo-bg {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
header h1.hd-logo span.logo-bg img {
  transform: translate(-100%, 0);
  animation: logo-bgani 0.8s 2.2s ease-in-out forwards;
  opacity: 0;
  transform: translate(0%, 100%);
}
header h1.hd-logo span.elephant {
  display: block;
  width: 45.4%;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
}
header h1.hd-logo span.elephant img {
  display: block;
  width: 100%;
  transform: translate(-100%, 0);
  animation: opening-elephant 0.4s 3s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  header h1.hd-logo {
    width: 12.4%;
  }
}
header div.nav-wrap {
  width: 37%;
}
@media screen and (min-width: 768px) {
  header div.nav-wrap {
    width: 12%;
  }
}
header div.nav-wrap nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
header div.nav-wrap nav ul li {
  width: 25%;
  opacity: 0;
  transform: scale(0);
  animation: headnav-ani 0.8s 3s ease-in-out forwards;
}
header div.nav-wrap nav ul li:nth-child(2) {
  animation: headnav-ani 0.8s 3.2s ease-in-out forwards;
}
header div.nav-wrap nav ul li:nth-child(3) {
  animation: headnav-ani 0.8s 3.4s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  header div.nav-wrap nav ul li {
    width: 20%;
  }
  header div.nav-wrap nav ul li:nth-child(2) {
    margin-left: 10px;
  }
}

@keyframes headnav-ani {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logo-bgani {
  0% {
    opacity: 0;
    transform: translate(0%, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}
@keyframes opening-elephant {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0%, 0);
  }
}
.fv-cover {
  height: 100%;
  overflow: hidden;
}

/* iOSノッチの余白ケア（viewport-fit=cover前提） */
.fv-wrap {
  padding-top: env(safe-area-inset-top);
}

section.single-wrap {
  padding: 25% 0 10% 0;
}
@media screen and (min-width: 768px) {
  section.single-wrap {
    padding: 120px 0 0 0;
  }
}
@media screen and (min-width: 1280px) {
  section.single-wrap {
    padding: 160px 0 0 0;
  }
}
section.single-wrap div.single-block {
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
}
section.single-wrap h2 {
  font-size: clamp(32px, 6vw, 42px);
  line-height: 1.1;
  margin-bottom: 0.6em;
  font-family: "A-OTF 秀英明朝 L", "A-OTF 秀英明朝 Pro", "Shippori Mincho", serif;
  font-weight: 300;
}
section.single-wrap h3 {
  display: flex;
  font-size: clamp(18px, 3vw, 28px);
  margin-bottom: 1em;
}
section.single-wrap h3 span {
  margin-right: 0.6em;
}
section.single-wrap div.date-wrap {
  display: flex;
}
section.single-wrap div.date-wrap h4 {
  width: 4.6em;
  position: relative;
}
section.single-wrap div.date-wrap h4::after {
  content: " ";
  display: block;
  width: 1px;
  height: 1em;
  background: #333;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
section.single-wrap div.date-wrap h4 span {
  font-size: 0.8em;
  display: inline-block;
}
section.single-wrap div.date-wrap p.date {
  font-size: 1.1rem;
  width: calc(100% - 6em);
  margin-left: 1em;
}
section.single-wrap div.single-event-gallery-wrap {
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
  margin-top: 2em;
  padding-bottom: 2em;
}
section.single-wrap div.single-event-gallery-wrap .event-gallery-slide .slide-inner .slide-img {
  width: 100%;
  max-width: 940px;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.single-wrap div.single-event-gallery-wrap .event-gallery-slide .slide-inner .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.single-wrap div.single-event-gallery-wrap .event-gallery-slide .slide-inner {
  /*.slide-img */
}
section.single-wrap div.single-event-gallery-wrap .event-gallery-slide .slide-inner .slide-txt {
  font-size: 0.9em;
}
section.single-wrap div.single-event-gallery-wrap .event-gallery-slide .slide-inner .slide-txt span.small {
  display: block;
  font-size: 0.8em;
  line-height: 1.5;
}
section.single-wrap div.single-event-gallery-wrap .swiper-pagination {
  top: auto;
  bottom: 0;
  transition: all 0.4s;
}
section.single-wrap div.single-event-gallery-wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: #111;
  transition: all 0.4s;
  transform: scale(1.2);
}
section.single-wrap {
  /*single-event-gallery-wrap*/
}

div.contact-box {
  width: 80%;
  max-width: 940px;
  margin: 0 auto;
  margin-top: 10%;
}
@media screen and (min-width: 768px) {
  div.contact-box {
    margin-top: 80px;
  }
}
div.contact-box a {
  display: block;
  text-align: center;
  background: #999;
  color: #FFF;
  padding: 2% 0;
  transition: all 0.4s;
}
div.contact-box a:hover {
  background: #333;
  transition: all 0.4s;
}

section.artist--cont-wrap {
  padding: 20% 0 10% 0;
}
@media screen and (min-width: 768px) {
  section.artist--cont-wrap {
    padding: 80px 0 0 0;
  }
}
@media screen and (min-width: 1280px) {
  section.artist--cont-wrap {
    padding: 120px 0 0 0;
  }
}
section.artist--cont-wrap h2 {
  text-align: center;
  margin-top: 10%;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  section.artist--cont-wrap h2 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
section.artist--cont-wrap h2 span.en-txt {
  display: block;
  font-size: 1.6em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.artist--cont-wrap h2 span.en-txt {
    font-size: 58px;
  }
}
section.artist--cont-wrap h2 span.ja-txt {
  font-size: clamp(3vw, 4vw, 13px);
  display: block;
  font-weight: 100;
  letter-spacing: 0.4em;
  margin-top: 0.4em;
}
@media screen and (min-width: 768px) {
  section.artist--cont-wrap h2 span.ja-txt {
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 0.4em;
  }
}
section.artist--cont-wrap h3.artist--cont-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3vw, 4vw, 18px);
  text-align: center;
  line-height: 1.4em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  section.artist--cont-wrap h3.artist--cont-title {
    font-size: 18px;
    /*			transform: translate( -0.25em , 0);*/
  }
}

/**/
.archive-name-list {
  width: 90%;
  max-width: 1085px;
  margin: 0 auto;
}
.archive-name-list ul li:first-child a {
  border-top: solid 1px #222;
}
.archive-name-list ul li a {
  display: block;
  width: 100%;
  color: #222;
  font: inherit;
  border-bottom: solid 1px #222;
  text-align: center;
  padding: 1em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive-name-list ul li a {
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s;
  }
  .archive-name-list ul li a span.arrow {
    transition: all 0.4s;
    transform: translate(0, -50%) scaleX(0);
  }
  .archive-name-list ul li a:hover {
    color: #FFF;
    transition: all 0.4s;
  }
  .archive-name-list ul li a:hover span.arrow {
    display: block;
    width: 0.6em;
    height: 1px;
    background: #FFF;
    position: absolute;
    right: 1.94em;
    top: 51%;
    transform: translate(0, -50%) scaleX(1);
    transition: all 0.4s;
  }
  .archive-name-list ul li a:hover::before {
    background: #FFF;
    width: 0.36em;
    right: 2em;
    top: 50%;
    transform-origin: right bottom;
    transform: translate(0, -50%) rotate(45deg);
    transition: all 0.4s;
  }
  .archive-name-list ul li a:hover::after {
    background: #FFF;
    width: 0.36em;
    right: 2em;
    top: 50%;
    transform-origin: right bottom;
    transform: translate(0, 50%) rotate(-45deg);
    transition: all 0.4s;
  }
  .archive-name-list ul li a:hover .bg-wrap span.bg {
    transform: scaleY(1);
    transition: all 0.4s;
  }
  .archive-name-list ul li a:hover .bg-wrap span.bg:nth-child(1) {
    transition-delay: 0s;
  }
  .archive-name-list ul li a:hover .bg-wrap span.bg:nth-child(2) {
    transition-delay: 0.01s;
  }
  .archive-name-list ul li a:hover .bg-wrap span.bg:nth-child(3) {
    transition-delay: 0.02s;
  }
  .archive-name-list ul li a:hover .bg-wrap span.bg:nth-child(4) {
    transition-delay: 0.03s;
  }
  .archive-name-list ul li a:hover .bg-wrap span.bg:nth-child(5) {
    transition-delay: 0.04s;
  }
  .archive-name-list ul li a {
    /*hover*/
  }
}
.archive-name-list ul li a {
  /*include pc*/
}
.archive-name-list ul li a::before, .archive-name-list ul li a::after {
  content: " ";
  display: block;
  width: 1em;
  height: 1px;
  background: #333;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, 50%) rotate(15deg);
}
@media screen and (min-width: 768px) {
  .archive-name-list ul li a::before, .archive-name-list ul li a::after {
    right: 2em;
    transition: all 0.4s;
  }
}
.archive-name-list ul li a::after {
  transform-origin: center center;
  transform: translate(0, 50%) rotate(-15deg);
  transition: all 0.4s;
}
.archive-name-list ul li a.active::after {
  opacity: 0;
  transition: all 0.4s;
}
.archive-name-list ul li a span.date {
  display: inline-block;
  font-size: 0.8em;
  margin-right: 2em;
}
@media screen and (min-width: 768px) {
  .archive-name-list ul li a span.date {
    font-size: 1.2em;
    margin-right: 4em;
  }
}
.archive-name-list ul li a div {
  display: inline-block;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  .archive-name-list ul li a div {
    font-size: 1.4em;
  }
}
.archive-name-list ul li a div span.en-txt {
  font-size: 0.8em;
  font-weight: 100;
  margin-left: 1em;
}
.archive-name-list ul li a {
  /*hover時の背景*/
}
.archive-name-list ul li a .bg-wrap {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  z-index: -1;
}
.archive-name-list ul li a .bg-wrap span.bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 20%;
  background: #222;
  transform-origin: center top;
  transform: scaleY(0);
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(1) {
  animation-delay: 0s;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(2) {
  animation-delay: 0.1s;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(3) {
  animation-delay: 0.2s;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(4) {
  animation-delay: 0.3s;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(5) {
  animation-delay: 0.4s;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(1) {
  top: 0%;
  height: 6.8%;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(2) {
  top: 6.67%;
  height: 13.33%;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(3) {
  top: 20%;
  height: 20%;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(4) {
  top: 40%;
  height: 26.67%;
}
.archive-name-list ul li a .bg-wrap span.bg:nth-child(5) {
  top: 66.67%;
  height: 33.33%;
}
.archive-name-list ul li {
  /**/
}

.archive-cont h3.artist--cont-title {
  margin-top: 4%;
}

footer {
  padding: 10% 0;
}
footer p.logo {
  width: 40%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  footer p.logo {
    width: 222px;
  }
}
footer p.copy {
  font-size: 10px;
  text-align: center;
  margin-top: 3%;
}
@media screen and (min-width: 768px) {
  footer p.copy {
    font-size: 11px;
    margin-top: 30px;
  }
}

div.artist--cont--prof-inner { /*アーティストのプロフィール部分*/
  width: 90%;
  margin: 0 auto;
  margin-top: 5%;
  padding: 5%;
  background: #FFF;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
div.artist--cont--prof-inner::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translate(0, 0);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner {
    max-width: 940px;
    padding: 0;
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl {
    display: flex;
    align-items: center;
  }
}
div.artist--cont--prof-inner dl dt {
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl dt {
    width: 25%;
    font-size: 18px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
div.artist--cont--prof-inner dl dt span span {
  display: inline-block;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl dt span span {
    display: block;
    text-align: center;
    margin-left: 0;
    padding: 0 1.2em;
  }
}
div.artist--cont--prof-inner dl dd {
  font-size: clamp(3vw, 3vw, 12px);
  text-align: justify;
  line-height: 1.8em;
  font-size: #666;
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl dd {
    width: 75%;
    font-size: 13px;
    box-sizing: border-box;
    padding: 50px;
  }
}
div.artist--cont--prof-inner dl dd span.other-txt {
  display: block;
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl.guest dt {
    display: block;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl.guest dt span.guest {
    display: block;
  }
}
div.artist--cont--prof-inner dl.guest dt span.guest span {
  display: inline-block;
  background: #333;
  color: #FFF;
  font-size: 0.9em;
  line-height: 1em;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl.guest dt span.guest span {
    font-size: 11px;
    padding: 0 1.2em;
  }
}
div.artist--cont--prof-inner dl.guest dt span.name {
  display: block;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.4em;
}
div.artist--cont--prof-inner dl.guest dt span.name span {
  display: block;
  margin-left: 0;
}
div.artist--cont--prof-inner dl.guest dt span.name span.name-inner {
  display: inline-block;
  font-size: 0.8em;
  margin-bottom: 1em;
  margin-left: 1em;
}
div.artist--cont--prof-inner dl.guest dt span.name span.name-inner span {
  font-size: 0.8em;
  display: inline-block;
  margin: 0;
}
@media screen and (min-width: 768px) {
  div.artist--cont--prof-inner dl.guest dt span.name span.name-inner span {
    font-size: 10px;
    letter-spacing: -0.03em;
  }
}
div.artist--cont--prof-inner {
  /*dl*/
}/*# sourceMappingURL=page.css.map */