@charset "UTF-8";

/* 共通部分
---------------------------------------------------------------------------- */
html {
    font-size: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.7;
    background: #FCFCFC;
    color: #333333;
}

a {
    text-decoration: none;
}


/*見出し*/
.title-font {
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 2.5rem;
}

.heading-font {
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 0rem;
}


/* ヘッダー部分
---------------------------------------------------------------------------- */

.page-header {
    width: 95vw;  
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem 1rem .2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    border-bottom: 1px solid #000000;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    font-size: 2rem;
    list-style: none;
}
.main-nav li a {
    color: #000000;

    /* 追加：丸を置くため */
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* 左側から円が現れるアニメーション（ナビ用） */
.main-nav li a::before {
    content: "";
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: transparent;
    transition: 0.2s;

    /* 丸と文字の間隔（hover時に効く） */
    margin-right: 0;
}

.main-nav li a:hover::before {
    width: 0.3em;          /* ナビ向けに少し小さめ */
    height: 0.3em;
    margin-right: 0.4em;    /* 文字との距離 */
    background-color: #000;
}


/* メインヴィジュアル部分
---------------------------------------------------------------------------- */ 
.hero {
    max-width: 1200px;
    margin: 8rem auto 8rem;   /* 上に少し余白。好みで調整 */
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/*ステートメント*/
.statement {
    max-width: 900px;      /* ← heroより狭い */
    margin: 2rem auto 2rem;
    padding: 0 1rem;       /* スマホ用の左右余白 */
}

.statement p {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;              
    text-justify: inter-ideograph;  
}

/* 右詰クレジット */
.statement-credit {
    margin-top: 5rem;          /* ← 本文との「少し開けた」距離 */
    text-align: right;
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(0,0,0,0.7);
}

/* セクション装飾
---------------------------------------------------------------------------- */
.section-with-line {
    --dot: 1.1rem;
    --gap: 3rem;
    --line: 1px;
    --axis: 0.8rem;
  
    /* ★JSで読みたいので変数化（あなたの bottom 計算の -1.5rem をここへ） */
    --line-end-inset: 1.5rem;
  
    position: relative;
    padding-left: 2.5rem;
  }
  
  .section-with-line::before {
    content: "";
    position: absolute;
    left: calc(var(--axis) - var(--line) / 2);
    top: calc(var(--dot) + var(--gap));
    bottom: calc(var(--dot) + var(--gap) - var(--line-end-inset));
    width: var(--line);
    background: #000;
  
    transform-origin: top;
    transform: scaleY(0);
  
    /* ★ここがポイント：セクションごとにJSが --line-duration を入れる */
    transition: transform var(--line-duration, 1.6s) cubic-bezier(.2,.8,.2,1);
  }
  
  .section-with-line.is-line-grown::before {
    transform: scaleY(1);
  }
  
.section-with-line::after {
    content: "";
    position: absolute;

    left: calc(var(--axis) - var(--dot) / 2);
    top: 2rem;

    width: var(--dot);
    height: var(--dot);
    border-radius: 50%;
    background: #000;
}
.section-line-end {
    position: relative;

    width: var(--dot);
    height: var(--dot);
    border-radius: 50%;
    background: #000;

    margin-top: 2rem;

    /* padding-left を打ち消して、軸に戻す */
    left: calc(
      var(--axis)
      - var(--dot) / 2
      - (var(--axis) + var(--text-gap, 0px))
    );
}

/* 軸上に黒丸を付けたいテキスト用（p / h2 / h3 共通で使える） */
.has-axis-dot {
    position: relative;
}
  
  /* 既存の section-with-line の黒丸と完全に同じ x 座標 */
.has-axis-dot::before {
    content: "";
    position: absolute;
  
    left: calc(
        var(--axis)
        - var(--dot) / 2
        - (var(--axis) + var(--text-gap, 0px))
      );
    top: 0.7em; /* p の文字高さに合わせて微調整 */
  
    width: var(--dot);
    height: var(--dot);
    border-radius: 50%;
    background: #000;
}
  



/* アクセス部分
---------------------------------------------------------------------------- */
.access {
    width: 95vw;
    max-width: 1200px;
    margin: 12rem auto;
    padding: 0 1rem;
}

.access.section-with-line{
  --text-gap: 2.5rem; /* ←ここを変えると距離が変わる */

  padding-left: calc(var(--axis) + var(--text-gap));
  padding-right: 1rem;
  padding-top: 0;
  padding-bottom: 0;
}
/* 左右レイアウト */
.access-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

/* 左テキスト */
.access-text {
    flex: 1;
    line-height: 1.4;
}

.access-date {
    font-size: 1.8rem;
    font-weight: 450;
    margin-bottom: .3rem;
}
.access-hours {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.access-place {
    font-weight: 450;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.access-address {
    font-size: 0.9rem;
}

/* 右：地図 */
.access-map {
    flex-shrink: 0;
}

.access-map img {
    width: 100%;
    max-width: 558px;   /* ← 元画像サイズ */
    height: auto;
    display: block;
}

/* イベント情報部分
---------------------------------------------------------------------------- */
.event {
    width: 95vw;
    max-width: 1200px;
    margin: 12rem auto;
    padding: 0 1rem;
}

.event.section-with-line{
  --text-gap: 2.5rem; 

  padding-left: calc(var(--axis) + var(--text-gap));
  padding-right: 1rem;
  padding-top: 0;
  padding-bottom: 0;
}

.event-coming-soon {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    margin-top: 8rem;
    margin-bottom: 10rem;
}
.event-item {
    margin-top: 4rem;
}

.event-title {
    font-size: 2.3rem;
    font-weight: 450;
    margin-bottom: 1rem;
}

.event-date-time {
    font-size: 1.6rem;
    font-weight: 400;
}

.event-img {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.event-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.event-desc {
    max-width: 900px;      /* ← heroより狭い */
    margin: 4rem auto 2rem;
    padding: 0 1rem;       /* スマホ用の左右余白 */
}
.event-desc p {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;              
    text-justify: inter-ideograph;  
}


.event-guest {
    margin-top: 6rem;
}

.event-guest-title {
    font-size: 2.5rem;
    font-weight: 450;
}

.event-guest-content {
    margin-top: 5rem;
    margin-bottom: 15rem;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.event-guest-card {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.event-guest-photo {
    width: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-guest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-guest-photo-credit {
    margin-top: 0.3rem;
    font-size: 0.8rem;
  }

.event-guest-name {
    font-size: 1.5rem;
    font-weight: 400;
}

.event-guest-position {
    font-size: 1rem;
}

.event-guest-desc {
    margin-top: 1.3rem;
    font-size: 1rem;
    line-height: 1.4;
}

.event-guest-desc a {
    color: #000;
    text-decoration: underline;
    word-break: break-word; /* 長いURLがスマホで溢れない */
  }
  
.event-guest-desc a:hover {
color: #7b7b7b;
}

.event-moderator {
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 400;
}

.event-moderator-name {
    margin-top: .5rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.event-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: left;
}

.event-performer{
    margin-top: 5rem;
    font-size: 2rem;
    font-weight: 400;
}
.event-performer-name {
    margin-top: .5rem;
    margin-bottom: 10rem;
    font-size: 1.3rem;
    font-weight: 400;
    
}
/* PC/SP 切り替え用クラス
/* デフォルト：PC */
.is-sp { display: none; }

/* モバイル */
@media screen and (max-width: 768px) {
  .is-pc { display: none; }
  .is-sp { display: block; }
}

/* アーティスト部分
---------------------------------------------------------------------------- */
.artist {
    width: 95vw;
    max-width: 1200px;
    margin: 12rem auto;
    padding: 0 1rem;
}
.artist.section-with-line{
    --text-gap: 2.5rem; /* ←ここを変えると距離が変わる */

    padding-left: calc(var(--axis) + var(--text-gap));
    padding-right: 1rem;
    padding-top: 0;
    padding-bottom: 0;
}

.artist-grid { 
    display: grid;
    grid-template-columns: repeat(3, 240px); /* カード幅を固定 */
    justify-content: space-between;          /* ← 余白を外に分散 */
    gap: 10rem 2rem;                               /* gapは控えめ */
    margin-top: 4rem;
    
    padding-left: 4rem;
    padding-right: 4rem;
}

.artist-card {

}

.artist-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eaeaea;
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.artist-body {
    margin-top: 2rem;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.artist-desc {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;

}

/* links */
.artist-links {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column; 
    gap: 0.1rem;    
}

.artist-links a {
    font-size: 1rem;
    color: #000000;
    text-decoration: underline;
}

.artist-links a:hover {
    color: #7b7b7b;
    text-decoration: underline;
}


/* モバイル版 */
@media screen and (max-width: 768px) {
    /* 共通 */
    .title-font {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }

    /* ナビゲーション */
    .main-nav {
        gap: 0.7rem;
        font-size: 1.25rem;
    }


    /* メインヴィジュアル */
    .hero {
        margin: 4rem auto 6rem;
    }
    .statement p {
        font-size: .8rem;
    }
    .statement-credit {
        margin-top: 2rem;   
        font-size: .6rem;
    }

    /* セクション装飾 */
    .section-with-line {
        --dot: .8rem;
        --gap: 3rem;
        --line: 1px;
        --axis: 0.8rem;

        position: relative;
        padding-left: 2.5rem;
    }
    .section-with-line::after {
        top: .8rem;
    }


    /* アクセス部分 */

    .access.section-with-line{
    --text-gap: 1.5rem; /* ←ここを変えると距離が変わる */

    padding-left: calc(var(--axis) + var(--text-gap));
    padding-right: 1rem;
    padding-top: 0;
    padding-bottom: 0;
    }

    .access-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .access-date {
        margin-top: 1.5rem;
        font-size: 1rem;
    }
    .access-hours {
        font-size: 1rem;
    }
    .access-place {
        font-size: 1.2rem;
    }
    .access-address {
        font-size: 1rem;
    }

    /* イベント情報部分 */
    .event.section-with-line{ 
      --text-gap: 1.5rem; 

      padding-left: calc(var(--axis) + var(--text-gap));
      padding-right: 1rem;
      padding-top: 0;
      padding-bottom: 0;
    }



    .event-item {
        margin-top: 2.5rem; /* 4rem → 少し詰める */
    }
    
    .event-title {
        font-size: 1.4rem;   /* 2.3rem → 小さく */
        margin-bottom: 0.6rem;
    }
    
    .event-date-time {
        font-size: 1.0rem;   /* 1.6rem → 小さく */
    }
    
    .event-img {
        margin-top: 2.5rem;  /* 6rem → 小さく */
    }
    
    .event-img img {
        max-width: 100%;     /* 500px 上限を実質解除 */
    }
    
    .event-desc {
        margin: 2rem auto 1.5rem;
        padding: 0;          /* もともと section 側で padding あるので 0 でOK */
        max-width: none;     /* 900px 制限を解除（スマホでは意味ない） */
    }
    
    .event-desc p {
        font-size: 0.8rem;   /* statement と合わせる */
        line-height: 1.6;
    }
    
    .event-guest {
        margin-top: 3rem;    /* 6rem → 小さく */
    }
    
    .event-guest-title {
        font-size: 1.5rem;   /* 2.5rem → 小さく */
    }
    
    .event-guest-content {
        margin-top: 2rem;    /* 5rem → 小さく */
        margin-bottom: 6rem; /* 15rem → 小さく */
        padding: 0;          /* 0 4rem がスマホで致命的なので消す */
        gap: 2rem;           /* 4rem → 詰める */
    }
    
      /* ゲストカード：横並び → 縦積み */
    .event-guest-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;           /* 6rem → 詰める */
    }
    
      /* 写真：固定幅300px → 全幅 */
    .event-guest-photo {
        width: 100%;
    }
    
      /* 写真は縦横比が崩れないように */
    .event-guest-photo img {
        height: auto;
    }
    
    .event-guest-name {
        font-size: 1.1rem;
    }
    
    .event-guest-position {
        font-size: 0.9rem;
    }
    
    .event-guest-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .event-moderator {
        margin-top: 1.5rem;
        font-size: 1.2rem;
    }
    
    .event-moderator-name {
        font-size: 0.9rem;
    }
    
    .event-subtitle {
        font-size: 1.0rem;
    }
    
    .event-performer {
        margin-top: 2.5rem;
        font-size: 1.2rem;
    }
    
    .event-performer-name {
        margin-bottom: 6rem; /* 10rem → 少し詰める */
        font-size: 0.9rem;
    }

    /* アーティスト部分 */
    .artist.section-with-line{
        --text-gap: 1.5rem; /* ←ここを変えると距離が変わる */

        padding-left: calc(var(--axis) + var(--text-gap));
        padding-right: 1rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .artist-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem 1rem;                               /* gapは控えめ */
        padding-left: 0;
        padding-right: 0;
    }
    .artist-name {
        font-size: 1.0rem;
    }
    .artist-desc {
        font-size: 0.8rem;
    }
    .artist-links a {
        font-size: 0.8rem;
    }


}

/* フッター
---------------------------------------------------------------------------- */
.page-footer {
    width: 95vw;
    max-width: 1200px;
    margin: 10rem auto 2rem;
    padding: 1.2rem 1rem 1.6rem;
    border-top: 1px solid #000000;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.footer-meta {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(0,0,0,0.75);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-icon:hover {
    opacity: 0.65;
}

/* モバイル版フッター */
@media screen and (max-width: 768px) {
    .page-footer {
        margin: 6rem auto 1.5rem;
        padding: 1rem 1rem 1.2rem;
    }

    .footer-inner {
        align-items: flex-start;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-meta {
        font-size: 0.75rem;
    }

    .footer-icon {
        width: 28px;
        height: 28px;
    }
}

