@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-ivory); /* 下の色 */
  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: 15px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  body {
    background-image: none;
  }
  body::before {
    content: "";
    background-image: url("../images/texture-sp.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 {
  --color-navy: #061c33; /* ネイビー */
  --color-navy-light: #1f3f60; /* 少し明るいネイビー */
  --color-ivory: #efefe6; /* 白系 */
}

/*　フォント　*/
h1 {
  font-family: "Pinyon Script", cursive;
  color: var(--color-navy);
  font-size: clamp(24px, 14vw, 110px);
  text-align: right;
  font-weight: normal;
  margin: 10rem 0 4rem 0;
}

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

h2 {
  font-size: clamp(24px, 8vw, 55px);
  font-weight: normal;
}

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

/*　線の設定　*/
.message .line {
  border: none; /* デフォルトの線を消す */
  height: 1px; /* 太さ */
  background-color: var(--color-navy);
  width: 100%; /* 横幅 */
  margin: 0 0 5rem 0;
}

.special .line {
  border: none; /* デフォルトの線を消す */
  height: 1px; /* 太さ */
  background-color: var(--color-ivory);
  width: 100%; /* 横幅 */
  margin: 0 0 5rem 0;
}

@media screen and (max-width: 960px) {
  .message .line,
  .special .line {
    margin: 0 0 2rem 0;
  }
}

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

.kv__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.kv__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 2s ease,
    visibility 2s ease;
}

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

.kv__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

/*　スクリーンサイズごとにkVの位置を調整　*/
@media screen and (min-width: 961px) and (max-width: 1399px) {
  .kv__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 80%;
  }
}

@media screen and (min-width: 1400px) {
  .kv__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 100%;
  }
}

@media screen and (max-width: 960px) {
  .kv__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 100%;
  }
  .kv__logo {
    position: absolute;
    top: 3%;
    left: 5%;
    max-width: 100px;
  }
}

/* ---　タイトル番号 --- */
.title-number {
  position: relative;
  margin-right: 25px;
}

/* ---　薄く重なる数字 --- */
.title-number::before {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6em;
  opacity: 0.15;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .title-number {
    margin-right: 0;
  }
}

/*---------------------------
       Message
 ---------------------------*/
.message {
  max-width: 1000px; /* 最大幅 */
  margin: 0 auto; /* 上下 0、左右 自動 → 中央寄せ */
  padding: 0 20px; /* SPで左右の余白確保 */
  text-align: left;
}
.message__inner {
  position: relative; /* 擬似要素の基準にする */
  border: 2px solid var(--color-navy); /* 外枠 */
  padding: 30px; /* 内側余白 */
}

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

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

/* 内側のドット線 */
.message__inner::before {
  content: "";
  position: absolute;
  top: 5px; /* 外枠との距離 */
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 2px dotted var(--color-navy); /* 内側のドット線 */
  pointer-events: none; /* クリックなどを邪魔しない */
}

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

/*---------------------------
    タイトル　アニメーション
 ---------------------------*/
.title span {
  display: inline;
  opacity: 0;
  transform: translate(20px, 40px);
  letter-spacing: -0.2em;
  will-change: transform, opacity;
}

/*---------------------------
    　流れるテキスト
 ---------------------------*/
.marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 20vh;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 90s linear infinite;
}

.marquee__group {
  white-space: nowrap;
  font-size: 3rem;
  padding-right: 4rem;
  font-family: "Pinyon Script", cursive;
  color: var(--color-navy);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 960px) {
  .marquee {
    margin-top: 10vh;
  }
  .marquee__group {
    font-size: 1.6rem;
  }
}

/*---------------------------
       Special
 ---------------------------*/
.special {
  width: 100%;
  background-color: var(--color-navy); /* 画面いっぱいに背景色 */
  padding: 60px 0;
  color: var(--color-ivory);
  margin-top: 20vh;
  text-align: center;
  position: relative;
}

/* コンテンツを固定幅に */
.special__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.3rem; /* SP余白 */
  justify-content: center;
}
.special__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; /* ← これ追加 */
}

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

.special-title h2:last-child {
}

.special__content p {
  margin-bottom: 3rem;
}

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

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

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

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

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

/*---------------------------
    　Coming Soon
 ---------------------------*/
.special__content.coming-soon {
  background-color: var(--color-navy-light);
}
.special__content.coming-soon p {
  margin: 2rem auto;
  color: var(--color-navy-light);
  background-color: var(--color-navy-light);
  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-bottom: 10px;
}

/*　SNSリンク　 */
footer .footer__inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer nav .list-tit {
  display: none;
}
footer .nav__list--sns {
  width: 100%;
  margin-bottom: 40px;
}
footer .nav__list--sns li {
  margin: 0 10px;
  display: inline-block;
}
footer .nav__list--sns li a {
  font-size: 25px;
  color: var(--color-navy);
}
footer .nav__list--sns .g-nav--item__linkfire i {
  font-size: 26px;
  vertical-align: -4px;
}

.fa.fa-twitter:before,
.fa-twitter:before {
  content: "\e61b";
}

/*---------------------------
  ローディング アニメーション
 ---------------------------*/

#loading {
  position: fixed;
  inset: 0;
  background: #061c33;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

/* ロゴ */

#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; */
}

/* 回転（イージング付き） */

@keyframes spinLogo {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(1080deg);
  }
}

/* 光パルス */

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 0px white);
  }

  50% {
    filter: drop-shadow(0 0 1px white) drop-shadow(0 0 3px #ffe9bd);
  }

  100% {
    filter: drop-shadow(0 0 0px white);
  }
}

/* 拡大＋フェード */

@keyframes logoExit {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  40% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(8);
    opacity: 0;
  }
}

/* --------------------
    　フェードイン
---------------------*/
.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;
  }
}

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