@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-white); /* 下の色 */
  /* background-image: url("../images/texture.png"); 上のテクスチャ */
  background-repeat: repeat; /* 繰り返す場合 */
  background-position: top left;
  background-size: auto; /* テクスチャのサイズを維持 */
  background-attachment: fixed;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  body {
    background-image: none;
  }
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*　カラー設定　*/
:root {
  --color-gray: #EAEAEA; /* ネイビー */
 --color-black: #000; /* 少し明るいネイビー */
  --color-white: #fff; /* 白系 */
}

/*　フォント　*/
h1 {
  font-family: "Noto Serif JP", serif;
  color: var(--color-navy);
  font-size: clamp(20px, 6vw, 50px);
  text-align: center;
  font-weight: normal;
  margin: 4rem 0 1rem 0;
  line-height: 1.2;
}

@media screen and (max-width: 960px) {
  h1 {
    margin: 2rem 0 1rem 0;
  }
}

h2 {
  font-size: clamp(24px, 6vw, 40px);
  font-weight: normal;
}
h3 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: normal;
  text-align: center;
}

h4 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: normal;
  text-align: center;
}

.solo-exhibition h1 {
  color: var(--color-ivory);
  margin: 2rem 0 1rem 0;
}

.under-line{
  border-bottom: 0.5px solid #000;
}

/*---------------------------
       Key Visual
 ---------------------------*/
.kv {
  position: relative;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #000;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .kv{
    height: 30rem;
  }
}

@media screen and (max-width: 767px) {
  .kv{
    height: 13rem;
  }
}

.kv__image {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: min(900px, 90%);
  height: auto;

  display: block;
}

.kv__logo {
  position: absolute;
  bottom: 3%;
  left: 2%;
  max-width: 100px;
  z-index: 2;
}

/*　スクリーンサイズごとにkVの位置を調整　*/
@media screen and (min-width: 961px) and (max-width: 1399px) {
  .kv__image {
  }
}

@media screen and (min-width: 1400px) {
  .kv__image {
  }
}

@media screen and (max-width: 960px) {
  .kv__image {
  }
  .kv__logo {
    position: absolute;
    bottom: 3%;
    left: 5%;
    max-width: 100px;
  }
}

/*---------------------------
       about
 ---------------------------*/
.about {
  max-width: 1000px; /* 最大幅 */
  margin: 0 auto;
  padding: 0 20px; /* SPで左右の余白確保 */
  text-align: center;
}
.about__inner {
  padding: 30px; /* 内側余白 */
  line-height: 2;
}

@media screen and (min-width: 1025px) {
  .about__inner {
    padding: 30px 30px 7rem 30px;
  }
}

.about p{
  margin-bottom: 1rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about {
    padding: 0 5rem; /* SP余白 */
  }
}

/*---------------------------
       solo-exhibition
 ---------------------------*/
.solo-exhibition {
  width: 100%;
  background-color: var(--color-gray); /* 画面いっぱいに背景色 */
  padding: 60px 0;
  color: var(--color-ivory);
  margin-top: 0;
  text-align: left;
  position: relative;
}

.solo-exhibition h1{
  text-align: left;
}

/* コンテンツを固定幅に */
.solo-exhibition__inner,
.photography-exhibition__inner {
  margin: 0 auto;
  padding: 0 5rem;
  justify-content: center;
}
.solo-exhibition__content {
  background-color: var(--color-ivory);
  color: var(--color-navy);
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box; /* ← これ追加 */
}

/*　画像　*/
.solo-exhibition-image {
  display: flex; /* 横並びにする */
  align-items: center; /* 数字とテキストの間隔 */
  padding: 1rem 1.5rem;
  text-align: left;
  margin: 0 auto;
  justify-content: center;
  margin: 0 auto;
}

.solo-exhibition-image img{
  max-width: 1000px;
}
.solo-exhibition h2{
  margin-bottom: 1rem;
}

.solo-exhibition p {
  margin-bottom: 2rem;
}

.photography-exhibition h3{
  margin: 5rem 0 2rem 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .solo-exhibition__inner {
    padding: 0 5rem; /* SP余白 */
  }
}
/* solo-exhibition スマホ */
@media screen and (max-width: 960px) {
  .solo-exhibition {
    margin-top: 2vh;
    padding: 10px 0;
  }
  .solo-exhibition__inner,
  .photography-exhibition__inner {
    margin: 0 auto;
    padding: 0 1.3rem; /* SP余白 */
    justify-content: center;
  }

  .solo-exhibition__content {
    padding: 0;
    width: 100%;
    margin: 0 auto;
  }

  .solo-exhibition-title {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
    max-width: 100%;
  }

  .solo-exhibition-image{
    padding: 0;
    margin: 3rem auto 0 auto;
  }

  .solo-exhibition-image img{
    width: 100%;
  }
}

/*---------------------------
    photography-exhibition
 ---------------------------*/
.photography-exhibition {
  width: 100%;
  background-color: var(--color-white); /* 画面いっぱいに背景色 */
  padding: 60px 0;
  color: var(--color-ivory);
  text-align: left;
  position: relative;
  text-align: right;
}

.photography-exhibition h1{
  text-align: right;
  margin-bottom: 1rem;
}

.photography-exhibition__content {
  background-color: var(--color-ivory);
  color: var(--color-navy);
  padding: 3rem;
  border: 10px solid #4b627b;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 5rem auto;
  position: relative;
  box-sizing: border-box; /* ← これ追加 */
}

/*　タイトル*/
.photography-exhibition-title {
  display: flex; /* 横並びにする */
  align-items: center; /* 数字とテキストの間隔 */
  padding: 1rem 1.5rem;
  text-align: left;
  margin: 0 auto;
  justify-content: center;
  background-color: var(--color-black);
  color: #fff;
  max-width: 70%;
  margin: 0 auto 3rem auto;
}
.photography-exhibition h2 {
  margin-bottom: 1rem;
}
.photography-exhibition p {
  margin-bottom: 1rem;
}

.photography-exhibition__content p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .photography-exhibition__inner {
    padding: 0 5rem; /* SP余白 */
  }
}
/* photography-exhibition スマホ */
@media screen and (max-width: 960px) {
  .photography-exhibition {
    margin-top: 2vh;
    padding: 10px 0;
  }
  .photography-exhibition__content {
    padding: 1rem;
    border: 5px solid #4b627b;
    width: 100%;
    margin: 0 auto 3rem auto;
  }

  .photography-exhibition-title {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
    max-width: 100%;
  }
}

/* photographer */
.link-list {
  width: 70%;
}

.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 0;

  border-bottom: 0.5px solid var(--color-black);
}

.link-item:first-child {
  border-top: 1px solid rgba(255,255,255,0);
}

.link-name {
  margin: 0 !important;
  font-weight: 400;
}

.link-item a {
  color: var(--color-black);
  opacity: 0.8;
  transition: opacity 0.3s;
  overflow-wrap: anywhere;
}

.link-item a:hover {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .link-list {
    width: 100%;
  }
  .link-item {
    flex-direction: column;
  }
}

/*---------------------------
    　ticket
 ---------------------------*/
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 3rem;
}

.ticket-card:first-child {
  grid-column: 1 / -1;
}

.ticket-card__title {
  background: #F2F2F2;
  text-align: center;
  padding: 15px;
}

.ticket-card__body {
  background: #fff;
  padding: 30px;
}

.ticket-card{
  border: solid 0.5px var(--color-black);
}

.ticket-card__note{
  border: solid 0.5px var(--color-black);
  text-align: left;
  padding: 2rem;
  line-height: 1.2;
  margin: 2rem;
}

.ticket-card__note a{
  color: var(--color-black);
}
.ticket-heading{
  font-weight: 600;
  margin-top: 2rem;
}

.price{
  font-size: 22px;
}

@media screen and (max-width: 960px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  .ticket-card__note{
    padding: 1rem;
    margin: 0 1rem 1rem 1rem;
  }
}
/*---------------------------
    　contact
 ---------------------------*/
.contact {
  text-align: left;
  background: var(--color-gray);
  padding: 2rem;
  margin-top: 2rem;
}
.contact p a{
  color: var(--color-black);
}
/*---------------------------
    　詳細はこちら　ボタン
 ---------------------------*/

.btn-detail {
  display: inline-block;
  padding: 1rem 3rem;
  text-decoration: none;
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid #061c33;
  border-radius: 0; /* 四角 */
  transition: 0.3s ease;
  margin-bottom: 1rem;
}

.btn-detail:hover {
  background-color: #061c33;
  color: #efefe6;
  border: 1px solid #061c33;
}

/*---------------------------
    　Coming Soon
 ---------------------------*/
.solo-exhibition__content.coming-soon {
  background-color: var(--color-black);
}
.solo-exhibition__content.coming-soon p {
  margin: 2rem auto;
  color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-ivory);
}

/*---------------------------
    　　　Footer
 ---------------------------*/
.footer {
  text-align: center;
}

.footer-logo img {
  width: 200px;
  margin: 5rem auto;
}

@media screen and (max-width: 960px) {
  .footer-logo img {
    width: 100px;
  }
}

/*　コピーライト　 */
footer p {
  margin: 6rem 0 2rem 0;
}

/* ロゴ */

#logo {
  width: 120px;
  /* animation:
    spinLogo 1.8s cubic-bezier(0.69, 0.02, 0.27, 0.99) forwards,
    glowPulse 1s ease-in-out 1.8s,
    logoExit 1.8s cubic-bezier(0.4, 0, 0.2, 1) 2.8s forwards; */
}

.artist-name a{
  margin-left: 10px;
  color: var(--color-black);
  overflow-wrap: anywhere;
}
.under-line{
  display: inline-block;
  margin-bottom: 10px;
}

/* --------------------
    　フェードイン
---------------------*/
.fadeIn {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transform: translateY(80px);
}

/* 表示された状態 */
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

/*---------------------------
    　　ユーティリティ
 ---------------------------*/
.font-s {
  font-size: 20px;
  margin-bottom: -10px;
}
@media screen and (min-width: 961px) {
  .margin-right-20-pc {
    margin-right: 20px;
  }
  .margin-top-6rem-pc{
    margin-top: 6rem;
  }
}

.logo img {
  max-width: 300px;
  margin: 0 0 40px 0;
}
