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

@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@100..900&display=swap");

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

body {
  background-color: #abbfd6; 
  background-image: url("../images/background.png"); /* 上のテクスチャ */
  background-repeat: repeat; /* 繰り返す場合 */
  background-position: top left;
  background-size: auto; /* テクスチャのサイズを維持 */
  background-attachment: fixed;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  color: #565877;
}

@media screen and (max-width: 960px) {
  body {
    background-image: none;
  }
  body::before {
    content: "";
    background-image: url("../images/background.png"); /* 上のテクスチャ */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    height: 100lvh;
    width: 100%;
    z-index: -1;
  }
}

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

/*　カラー設定　*/
:root {
  --main-color: #7CA3C7;
  --color-gray: #565877;
  --color-dark-blue: #3C3E5A;
}

/*　フォント　*/
h2 {
  font-family: "EB Garamond", serif;
  color: var(--color-gray);
  font-size: clamp(24px, 8vw, 55px);
  text-align: center;
  font-weight: 600;
  margin: 10rem 0 2rem 0;
}

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

h3 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gray);
}

h4 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.kv::before {
  content: "";
  position: absolute;

  top: 3rem;
  right: 3rem;
  bottom: 3rem;
  left: 3rem;

  border: 1px solid var(--color-gray);

  pointer-events: none;
  z-index: 10;
}

.kv p{
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translate(-50%);
  font-family: "EB Garamond", serif;
  font-size: 18px;
}

.kv__logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 600px;
  max-width: 80%;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 40px;
}

.kv__image,
.kv__logo {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .kv::before {
    top: 5rem;
    right: 2rem;
    bottom: 5rem;
    left: 2rem;
  }

  .kv p{
    top: 3.2rem;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .kv::before {
    top: 5rem;
    right: 1rem;
    bottom: 5rem;
    left: 1rem;
  }

  .kv p{
    top: 3.2rem;
    font-size: 16px;
  }
}

/*---------------------------
       schedule
 ---------------------------*/
.schedule {
  max-width: 1000px; /* 最大幅 */
  margin: 0 auto; /* 上下 0、左右 自動 → 中央寄せ */
  padding: 0 20px; /* SPで左右の余白確保 */
  text-align: left;
}
.schedule__inner {
  position: relative; 
  border: 1px solid var(--color-gray);
  padding: 30px;
}

.schedule__inner .schedule__list{
  border: 1px solid var(--color-gray); 
  padding: 30px;
  width: 100%;
  align-items: center;
  display: flex;
}

.schedule__inner .schedule__list:not(:last-child){
  margin-bottom: 2rem;
}

.schedule__inner .schedule__list .date{
  margin-right: 3rem;
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(32px, 6vw, 42px);
  background: var(--main-color);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.schedule__inner .schedule__list .date span{
  font-size: clamp(10px, 2vw, 20px);
  text-align: center;
}

.schedule__inner .schedule__list .date .days {
  background: var(--color-dark-blue);
  color: var(--main-color);
  font-size: 10px;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  margin-top: 0.2rem;
  text-align: center;
}

.schedule__inner .schedule__list .text .time{
  margin-right: 1rem;
}

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

.schedule p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .schedule {
    padding: 0 2rem;
  }
}

/* 左上・右下の丸 */
.schedule__inner::before,
.schedule__inner::after {
  content: "";
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--color-gray);
}

/* 左上 */
.schedule__inner::before {
  top: -4px;
  left: -4px;
}

/* 右下 */
.schedule__inner::after {
  right: -4px;
  bottom: -4px;
}

/* sp */
@media screen and (max-width: 767px) {

  .schedule__inner .schedule__list .date {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0.5rem 0 0.3rem;
    margin-bottom: 1rem;
  }

  .schedule__inner .schedule__list .date span{
    margin-left: 0.5rem;
  }

  .schedule__inner .schedule__list{
    display: block;
  }
  .schedule__inner .schedule__list .text .time {
    display: block;
    margin-right: 0;
  }

  .schedule__inner .schedule__list .text p {
    text-align: left;
  }
}

/*---------------------------
       fanclub
 ---------------------------*/
 .fanclub__inner{

 }

 .fanclub__inner .fanclub__list{
  position: relative;
  border: 1px solid var(--color-gray);
  padding: 2rem;
  max-width: 43rem;
  margin-bottom: 3rem;
 }

 .fanclub__list p{
  font-weight: 500;
  margin-bottom: 1rem;
 }

 .fanclub__inner .fanclub__list:nth-child(2) {
  margin-left: auto;
}

/* すべての丸 */
.fanclub__inner .fanclub__list:nth-child(1)::before,
.fanclub__inner .fanclub__list:nth-child(2)::before {
  content: "";

  position: absolute;
  font-family: "Libre Caslon Text", serif;
  font-size: 22px;

  top: -30px;
  right: -30px;

  width: 70px;
  height: 70px;

  border-radius: 50%;
  background: var(--color-gray);

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* 1個目 */
.fanclub__inner .fanclub__list:nth-child(1)::before {
  content: "9/5";
}

/* 2個目 */
.fanclub__inner .fanclub__list:nth-child(2)::before {
  content: "9/7";
}

/* 2個目以降（右寄せ）→ 左上 */
.fanclub__inner .fanclub__list:nth-child(even)::before {
  right: auto;
  left: -30px;
}

/* sp */
@media screen and (max-width: 767px) {
  .fanclub__inner .fanclub__list{
    max-width: 22rem;
 }
}

/* message */
/* .message{
  text-align: center;
  margin: 8rem auto;
}

.message__title{
  font-weight: 800;
  font-family: "EB Garamond", serif;
  font-size: 34px;
  line-height: 1.8;
}

.message__text{
  font-size: 18px;
  margin-top: 1rem;
}

.message .message__title span {
  position: relative;
  display: inline-block;
  border-bottom: solid 1px;
  padding-bottom: 6px;
}

.message .message__title span::before,
.message .message__title span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray);
}

.message .message__title span::before {
  bottom: -4px;
  left: -4px;
}

.message .message__title span::after {
  right: -4px;
  bottom: -4px;
}

@media screen and (max-width: 767px) {
  .message__title{
    font-size: 24px;
  }
  .message__text{
    font-size: 14px;
  }
} 
 */
 
/*---------------------------
       photo
 ---------------------------*/
.photo__list {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  gap: 30px;
  width: max-content;
  margin: 0 auto;
}

.photo__last {
  grid-column: 1 / -1;

  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.photo__item {
  width: 250px;
  height: 100%;
}

.photo__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   タブレット
========================= */

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .photo__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 90vw;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
  }

  .photo__item {
    width: 100%;
    height: auto;
  }

  .photo__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* 最後3枚 */
  .photo__last {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
    margin: 20px auto;
    width: 90vw;
    max-width: 900px;

    width: calc(
      (100% - 20px) / 4 * 3 + 40px
    );
  }

}

/* sp */
@media screen and (max-width: 767px) {

  .photo__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 90vw;
    max-width: 90vw;
    min-width: 0;
    margin: 0 auto;
    gap: 20px;
  }

  .photo__item {
    width: 100%;
    min-width: 0;
    height: auto;
    margin: 0 !important;
  }

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

  /* 最後3枚のグループ */
  .photo__last {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 20px auto;
    width: 90vw;
    max-width: 90vw;
  }

  /* 最後の1枚だけ中央 */
  .photo__last .photo__item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 20px) / 2);
  }

}

/*---------------------------
    　詳細はこちら　ボタン
 ---------------------------*/

.button {
  display: inline-block;
  padding: 1rem 3rem;
  text-decoration: none;
  background-color: var(--main-color);
  color: var(--color-dark-blue);
  border-radius: 50px;
  transition: 0.3s ease;
  cursor: pointer;
}

.button:hover {
  background-color: var(--color-dark-blue);
  color: #efefe6;
}

.fanclub__button{
  display: flex;
}

.fanclub__button .button:first-child {
  margin-right: 1rem;
}

@media screen and (max-width: 767px) {
  .button {
    padding: 1rem 2rem;
  }
  .fanclub__button{
    display: block;
  }

.fanclub__button .button:first-child {
  margin-bottom: 1rem;
}
}

/*---------------------------
    　　　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-bottom: 10px;
}

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

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

/*---------------------------
    　　footer
 ---------------------------*/
.oslink a {
    display: block;
    width: 300px;
    margin: 8rem auto 5rem;
    border: 1px solid;
    padding: 18px;
}

/*---------------------------
    　　kv　アニメーション
 ---------------------------*/

.kv__image {
  opacity: 0;
  filter: blur(8px);

  animation: kvFadeIn 1.4s ease-out forwards;
}

@keyframes kvFadeIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* ロゴは最初は見えない */
.kv__logo {
  display: block;
  width: 100%;
  height: auto;

  clip-path: inset(0 0 100% 0);

  animation: logoScan 1.5s ease-out 0.5s forwards;
}

/* ロゴが上から徐々に見える */
@keyframes logoScan {
  from {
    clip-path: inset(0 0 100% 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}


.shine-effect {
  position: fixed;
  inset: 0;
  z-index: 9999;

  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 60%
  );

  transform: translateX(-100%);
  animation: screenShine 0.5s ease-out 1.9s forwards;
}

@keyframes screenShine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/*---------------------------
    　　wovn-languages
 ---------------------------*/
.wovn-languages {
font-size: 12px;
position: fixed;
z-index: 10;
width: 150px;
height: 13px;
cursor: pointer;
color: #272b27;
left: 3%;
top: 1%;
font-weight: bold;
z-index: 100;
}
.wovn-languages::before {
content: "";
display: block;
width: 6px;
height: 6px;
position: absolute;
top: 8px;
right: 10px;
border: 1px solid #272b27;
border-color: transparent transparent #272b27 #272b27;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
    z-index: 3;
}
.wovn-languages .language-name {
cursor: pointer;
}
.wovn-languages .nav-dropdown {
position: absolute;
top: 0;
line-height: 1.4;
border-bottom: 1px solid;
text-align: left;
z-index: 2;
width: 150px;
}

.wovn-languages .nav-dropdown {
    background: #ffffffc4;
    height: 30px;
    padding: 6px 5px 5px 5px;
    border-radius: 25px;
    backdrop-filter: blur(6px);
}

.wovn-languages .nav-dropdown .list--language {
display: -ms-flexbox;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.wovn-languages .nav-dropdown .list--language li {
    width: 100%;
    display: none;
    cursor: pointer;
    padding-left: 8px;
}
.wovn-languages .nav-dropdown .list--language li.selected {
display: block;
-webkit-box-ordinal-group: 0;
-webkit-order: -1;
-ms-flex-order: -1;
order: -1;
}
.wovn-languages.visible::before {
content: none;
}
.wovn-languages.visible .nav-dropdown {
opacity: 1;
pointer-events: visible;
z-index: 1;
border: none;
padding: 10px 10px 5px;
background: #ffffff;
color: #000;
height: auto;
}
.wovn-languages.visible .nav-dropdown .list--language li {
display: block;
}
.wovn-languages.visible .nav-dropdown .list--language li.selected {
opacity: 0.4;
pointer-events: none;
}

.visible.wovn-languages::before {
border: 1px solid;
border-color: transparent transparent #000 #000;
z-index: 15;
top: 13px;
right: 15px;
}