@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
  font-family: "游ゴシック", "Yu Gothic", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Roboto, futura-pt, "Helvetica Neue",
    Helvetica, Arial, Verdana, sans-serif;

  line-height: 1.5;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
  letter-spacing: 0.03em;
}

img {
  width: 100%;
}



.p-hero {
  font-family: optima-lt-pro, sans-serif;
  position: relative;
  /* 追加: 画面の高さいっぱいにする */
  height: 100vh; 
}

.p-hero__inner {
  color: #111;
  position: relative;
}



@media only screen and (max-width: 640px) {
  .p-hero__inner {
    overflow: hidden;
    width: 100vw;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-hero__inner {
    overflow: hidden;
    width: 100vw;
  }
}

.p-hero__imageWrap {
  align-items: center;
  display: flex;
  width: 100%;
  height: 100vh;
   z-index: 1;
   /* 動画を absolute 配置するための基準点 */
   position: relative;
}


@media only screen and (max-width: 640px) {
  .p-hero__imageWrap {
    -webkit-transform: translate(-50vw, 0);
    transform: translate(-50vw, 0);
    width: 200vw;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-hero__imageWrap {
    -webkit-transform: translate(-50vw, 0);
    transform: translate(-50vw, 0);
    width: 200vw;
  }
}
.p-hero__imageWrap::before {
  content: "";
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1; /* 動画の上に重ねて表示 */

  /* グラデーションの設定：上から下へ、徐々に黒く暗くする */
  background: linear-gradient(
    to bottom,              
    rgba(0, 0, 0, 0.2) 50%,    /* 70%まではほぼ透明 */
    rgba(0, 0, 0, 0.5) 100%   /* 70%から100%にかけて急激に完全に不透明な白へ変化 */
  );
    mix-blend-mode: hard-light;
  /* height: 100vh; */
}

.p-hero__video {
  width: 100%;
  /* 親要素の高さを引き継ぐ */
  height: 100%; 
  object-fit: cover;
  /* 親要素 (.p-hero__imageWrap) の左上を起点に配置 */
  position: absolute; 
  top: 0;
  left: 0;
}

.p-hero__titleArea {
  -webkit-transform: translate(-50%, -50%);
  color: white;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 640px) {
  .p-hero__titleArea {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-hero__titleArea {
    width: calc(100% - 20px);
  }
}

/* 3. ロゴ要素: 背景の上に重ねて中央に配置 */
.p-hero__logoWrap {
    position: absolute; /* 親要素 (.p-hero__inner) の基準で配置 */
    top: 50%;           /* 上端を親要素の50%の位置に移動 */
    left: 50%;          /* 左端を親要素の50%の位置に移動 */
    transform: translate(-50%, -50%); /* 要素自体のサイズに基づいて中央に微調整 */
    z-index: 10;        /* 背景要素より高い z-index で手前に表示 */
    
    /* ロゴとテキストの配置調整 */
    text-align: center; /* 内側の要素（h2など）を中央揃えにする */
    width: 90%;         /* 幅を制限し、画面端での崩れを防ぐ */
    max-width: 600px;   /* 最大幅を設定（任意） */
    color: white;       /* ロゴの視認性を上げるため、テキストの色を白に（背景が暗い場合） */
}



.p-hero__titleSub {
  display: inline-block;
  font-size: 2.8rem;
  margin: 0 auto 8rem;
}
@media only screen and (max-width: 640px) {
  .p-hero__titleSub {
    font-size: 24px;
    margin: 0 auto 3rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-hero__titleSub {
    font-size: 24px;
  }
}
.p-hero__brandName {
  color: #f7f7f7;
  line-height: 1.8;
  margin: 0 auto;
  overflow-wrap: break-word;
  width: 44rem;
  word-break: keep-all;
}
.p-hero__brandName > span {
  white-space: nowrap;
}
@media only screen and (max-width: 640px) {
  .p-hero__brandName {
    font-size: 12px;
    width: 100%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-hero__brandName {
    font-size: 16px;
    width: max(30vw, 60rem);
  }
}
















/* デフォルトでは .p-hero-pc を表示し、.p-hero-sp を非表示にする */
.p-hero-pc {
  display: block;
}

.p-hero-sp {
  display: none;
}

/* 横幅640px以下のデバイス向けにメディアクエリを設定 */
@media only screen and (max-width: 640px) {
  .p-hero-pc {
    display: none;
  }
  
  .p-hero-sp {
    display: block;
  }
}



.p-hero__container {
  /* left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: relative; */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}

/* .p-hero__layout {
  padding: 50px 0;
  width: 100%;
  position: relative;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
  letter-spacing: 0.05em;
  margin: 50px auto 0;
} */

@media only screen and (max-width: 640px) {
  .p-hero__layout {
    padding: 50px 20px;
  }
}

/* .p-hero__layout::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  transform: skewY(-7deg);
  z-index: -1;
  opacity: 0.8;
} */

.p-hero__logo {
  width: 500px;
  margin: 0 auto 50px;
  padding: 1.5em 0;
}

.p-hero__logo--sub {
  width: 250px;
  margin: 0 auto;
  padding: 1.5em 0;
}

.p-hero__logo--top {
  max-width: 700px;
  width: 50%;
  padding: 50px 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}



.p-hero__logo--top img {
  -webkit-filter: drop-shadow(
    0px 3px 10px rgba(0, 0, 0, 0.8)
  );
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.75));
}

@media only screen and (max-width: 640px) {
  .p-hero__logo {
    width: 140px;
    margin: 0 auto;
    padding: 0 0 1em 0;
  }
}
@media only screen and (max-width: 640px) {
  .p-hero__logo--top {
    width: 70vw;
    padding: 20px;
  }
}

.p-hero__title {
  max-width: 50em;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  font-family: "游ゴシック", "Yu Gothic", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Roboto, futura-pt, "Helvetica Neue",
    Helvetica, Arial, Verdana, sans-serif;
  margin: 0 auto 25px;
  padding: 1em 0;
  word-break: keep-all;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .p-hero__title {
    font-size: 14px;
    padding: 1em 0;
    word-break: normal;
  }
}

.p-hero__day {
  width: 50vw;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  font-family: "游ゴシック", "Yu Gothic", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Roboto, futura-pt, "Helvetica Neue",
    Helvetica, Arial, Verdana, sans-serif;
  margin: 0 auto 25px;
  padding: 1.5em 0;
}

@media only screen and (max-width: 640px) {
  .p-hero__day {
    width: 100%;
    font-size: 10px;
  }
}

.p-hero__day span {
  font-size: 24px;
  font-weight: 500;
}

.p-hero__titleSub {
  max-width: 15vw;
  margin: 0 auto;
  padding: 1.5em 0;
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-hero__titleSub {
    max-width: 25vw;
    margin: 0 auto;
    padding: 1.5em 0;
  }
}
@media only screen and (max-width: 640px) {
  .p-hero__titleSub {
    max-width: 50vw;
    padding: 1.5em 0 0;
  }
}
.p-hero__titleSub p {
  text-align: center;
  font-size: 16px;
  font-family: "游ゴシック", "Yu Gothic", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Roboto, futura-pt, "Helvetica Neue",
    Helvetica, Arial, Verdana, sans-serif;
  padding: 1.5em 0 0;
}
@media only screen and (max-width: 640px) {
  .p-hero__titleSub p {
    text-align: center;
    font-size: 14px;
  }
}





/* =========================================================
   全体レイアウト（ヘッダーとベース幅は省略）
   ========================================================= */

/* 複数のスクロールエリアを縦に並べる設定 */
.p-hero__inner--scroll {
    display: flex; 
    flex-direction: column;
    /* 画面の高さいっぱいに広げる設定（例: 50pxはヘッダー分と想定） */
    height: calc(100vh - 50px); 
}

/* =========================================================
   無限スクロールの構造設定
   ========================================================= */

.scroll-infinity {
    /* 2つの scroll-infinity を等分に縦に並べる */
     height: calc(100vh - 50px); 
    /* 横に無限に広がるコンテンツの領域を限定 */
    overflow: hidden; 
}

.scroll-infinity__list {
    display: flex; /* これによりアイテム（li）が横並びになる */
    margin: 0;
    padding: 0;
    list-style: none;
    flex-shrink: 0; /* リスト全体が縮まないように固定 */
}

/* スクロールアニメーションを実行するラッパー */
.scroll-infinity__wrap {
    display: flex; /* 2つの ul リストを横に並べる */
    width: fit-content; 
    
    /* アニメーション適用（速度は適宜調整してください） */
    animation: scrollLeft 30s linear infinite;
}

/* =========================================================
   アイテムのサイズとアスペクト比の制御
   ========================================================= */

.scroll-infinity__item {
    /* 画面幅の 1/3 に固定（一度に3枚表示を想定） */
    width: calc(100vw / 3); 
    
    /* 高さを幅に合わせてアスペクト比を維持（例: 3:2 の画像の場合） */
    height: calc((100vw / 3) * 2 / 3); 
    
    padding: 10px; 
    box-sizing: border-box;
    flex-shrink: 0; /* アイテムが縮まないように固定 */
    
    /* 内部の画像ラッパーを配置するための設定 */
    display: grid; 
    place-items: center; 
}

/* アスペクト比を維持するラッパーの設定（padding-topを使うハック）*/
.item-inner-wrap {
    /* 高さが計算された li の中で、画像ラッパーが収まるように調整 */
    width: 100%;
    height: 100%;
    position: relative; 
    overflow: hidden; /* 画像がはみ出た場合に備える */
}

/* 画像の設定 */
.scroll-infinity__item .item-inner-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 【解決策】アスペクト比を維持しつつ、コンテナを覆う */
    /* item の高さを適切に設定しているため、cover で対応 */
    object-fit: cover; 
}

/* =========================================================
   アニメーションの定義
   ========================================================= */

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    /* リスト1つ分の幅（全体の50%）だけ移動してループ */
    to {
        transform: translateX(-50%); 
    }
}







.p-map {
  max-width: 1000px;
  margin: 0 auto;
  padding: 250px 0;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .p-map {
    padding: 150px 20px;
  }
}

.p-map__titlewarp {
  text-align: center;
}

.p-map__title {
  font-size: 24px;
  font-weight: bold;
  color: #232323;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}

.p-map__titleSub {
  font-size: 20px;
  font-weight: bold;
  color: #232323;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0.025em;

  position: relative;
  display: inline-block;
  padding: 0 30px;
}

@media only screen and (max-width: 640px) {
  .p-map__titleSub {
    font-size: 16px;
  }
}

.p-map__titleSub:before,
.p-map__titleSub:after {
  content: "";
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #ef7c1c;
}

.p-map__titleSub:before {
  left: 0;
}

.p-map__titleSub:after {
  right: 0;
}

.p-text {
  font-size: 20px;
  line-height: 2;
  margin: 50px auto;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .p-text {
    font-size: 16px;
    line-height: 1.5;
  }
}


.p-text-emphasis {
  border: 1px dotted #232322;
  padding: 20px;
  margin: 50px auto;
}

@media only screen and (max-width: 640px) {
  .p-text-emphasis {
   font-size: 16px;
  }
}

.p-text span {
  font-weight: bold;

}

.p-map__warp {
  margin: 0 auto;
}

.p-map__all {
  padding: 0 0 50px;
}

footer {
  background-color: #232323;
  padding: 1em 0;
  color: #f6f6f6;
  text-align: center;
  font-size: 10px;
}

/* ---------------------------------------------------------------
修正
--------------------------------------------------------------- */

img {
  width: 100%;
}

/* --------------------------------------------------------------- */

footer {
  background-color: #232323;
  padding: 1em 0;
  color: #f6f6f6;
  text-align: center;
  font-size: 10px;
}

/* --------------------------------------------------------------- */

.event {
  width: 100%;
  max-width: 820px;
  height: auto;
  margin: 50px auto;
  padding: 100px 0 0;
  text-align: center;
  line-height: 1.8;
}

.event__icon {
  padding: 0 0 25px;
}

.event__icon span {
  font-size: 14px;
  font-weight: 600;
  padding: 0.5em 1em;
  margin: 0 0.5em;
  /* border: 1px solid #232323; */
  background-color: #232323;
  color: #f6f6f6;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
}

.event__titlewarp {
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto;
  padding: 0 0 25px;
  font-family: "游ゴシック", "Yu Gothic", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Roboto, futura-pt, "Helvetica Neue",
    Helvetica, Arial, Verdana, sans-serif;
}

.event__img {
  max-width: 492px;
  margin: 0 auto;
}

.event__infowarp {
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  font-family: "游ゴシック", "Yu Gothic", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Roboto, futura-pt, "Helvetica Neue",
    Helvetica, Arial, Verdana, sans-serif;
  /* background-color: #f6f6f6; */
}

.event__info {
  max-width: 820px;
  margin: 0 auto;
  font-weight: 500;
  padding: 25px 0 70px;
  line-height: 1.5;
  font-family: "游ゴシック", "Yu Gothic", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Roboto, futura-pt, "Helvetica Neue",
    Helvetica, Arial, Verdana, sans-serif;
}

.event__text {
  padding: 25px 0;
  /* border-bottom: 1px solid #ddd; */
}

.event__detail {
  display: flex;
  flex-wrap: wrap;
  /* display: table; */
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
}

.event__detail dt:first-child {
  border-top: 1px #232323 solid;
}

.event__detail dt {
  /* display: table-cell; */
  width: 200px;
  padding: 30px 20px;
  border-top: 1px #232323 solid;
  vertical-align: top;
}

.event__detail dd {
  /* width: calc(100% - 238px);
  padding: 25px 0;
  border-bottom: 1px solid #ddd; */
  /* display: table-cell; */
  width: 620px;
  padding: 30px 20px;
  border-top: 1px #e0e0e0 solid;
  vertical-align: middle;
  font-size: 15px;
}

.Attention {
  margin: 10px 0 0;
}

.Attention li {
  list-style: disc;
  line-height: 150%;
  margin: 0 0 15px 1em;
  font-size: 12px;
}


/* loading要素 */

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 0.75s;
  background-color: #f6f6f6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 0.75s;
  background-color: #f6f6f6;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loading-animation {
  width: 300px;
  margin: 0 auto;
}
