@charset "UTF-8";
/* CSS Document */
.body {
  font-family: 'Helvetica';
	 margin: 0;
}



  /* 2列グリッドにするだけ */
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .item {
    position: relative;   /* ← 擬似要素の基準 */
    padding: 30px;        /* PCより少し軽めでもOK */
  }

/* 左列のアイテムだけ縦線 */
.item:nth-child(2n-1)::after {
  content: "";
  position: absolute;
  top: 12%;       /* 上余白 */
  bottom: 12%;    /* 下余白 */
  right: 0;       /* 左列アイテムの右端に配置 → 2列間の中央になる */
  width: 0.5px;
  background: #000;
}

  /* ======================
     横ライン（下側）
     ====================== */
  .item::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 0;
    height: 0.5px;
    background: #000;
  }

.item:nth-last-child(-n+2)::before {
  display: none;
}
  /* 画像 */
  .item img {
    width: 100%;
    display: block;
    height: auto;
  }

  /* キャプション */
  .caption {
    margin-top: 6px;
	margin-bottom: -10px; /* 下の余白も少なく */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }



.item {
  opacity: 1;
  transform: none;
}

/* ===== スマホだけモーションさせる ===== */
@media screen and (max-width: 767px) {
  .item {
    transform: translateY(50px) scale(0.95);
    transition:
      opacity 1s cubic-bezier(0.25,0.46,0.45,0.94),
      transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  .item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

a:link {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:visited {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:active {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}

a:hover {
   opacity: 0.85; /* 25％ほど透明にする */
}


img:hover {
   opacity: 0.85; /* 25％ほど透明にする */
}


html {
        margin: 0;  /* 全体の余白をリセット */
        padding: 0;
    }

body {
  margin: 0;          /* デフォルト余白を消す */
  padding-left: 0px; /* 左右に余白 */
  padding-right: 0px;
}


a {
  text-decoration: none !important; /* 強制的に適用 */
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333; /* フッターの背景色 */
  color: #fff; /* フッターの文字色 */
  text-align: center;
  padding: 20px;
}




.pc-only { display: block; }
.sp-only { display: none; }

@media screen and (max-width: 767px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}


@media (max-width: 767px) {
	
:root {
  --vh: 1vh;
}

  .snap-scroll {
height: calc(var(--vh) * 100);
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }

  .snap-scroll img {
height: calc(var(--vh) * 100);
	  width: 100%;
    object-fit: cover;
    scroll-snap-align: start;
  }
}

.snap-scroll img {
  display: block;   /* ← これで隙間ゼロ！ */
}




.snap-item {
  position: relative;
height: calc(var(--vh) * 100);
  scroll-snap-align: start;
}

.snap-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* ←隙間ゼロ */
}

/* 左下テキスト */
.text-left {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: white;
  font-size: 12px;
  font-family: Helvetica;
  z-index: 10;
}

/* 右下テキスト */
.text-right {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: white;
  font-size: 10px;
  font-family: Helvetica;
  text-align: right;
  z-index: 10;
}


/* 左中央の縦向きテキスト */
.text-vertical {
  position: absolute;
  left: 30px;            /* 画像の左から10px */
  top: 40%;              /* 上から50% → 真ん中 */
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left top;
  color: white;
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  letter-spacing: 2px;
  z-index: 10;
  white-space: nowrap;   /* 折り返しなし */
}

.border {
    width: 60%;
    max-width: 250px; /* 必要に応じて調整 */
    margin: 0 auto; /* 中央に配置 */
    border: solid 1px #454545;
    padding: 0px;
    box-sizing: border-box;
}




.divlogo {
	width:	250px;
     height: 20px;
	margin-bottom: 20px;
	}



.arrow-clean {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
}

.arrow-clean::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-right: 2px solid white;   /* ← 1px → 2px に変更 */
  border-bottom: 2px solid white;  /* ← 1px → 2px に変更 */
  transform: rotate(45deg);
  opacity: 0.8;
  transition: 0.3s ease;
}

/* 少しだけ動くアニメーション（上品） */
.arrow-clean {
  animation: arrowFloat 1.8s infinite ease-in-out;
}

@keyframes arrowFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50%     { transform: translate(-50%, 4px); }
}

/* ホバーでふんわり */
.arrow-clean:hover::after {
  opacity: 1;
}

.bottom-safe {
  bottom: calc(env(safe-area-inset-bottom, 0) + 20px);
}

..arrow-text-wrapper {
  position: absolute;
  bottom: calc(env(safe-area-inset-bottom, 0) + 20px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-text {
  position: absolute;
  bottom: 30px; /* 矢印の上に来るように調整 */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  opacity: 0.8;
   font-family: Helvetica, sans-serif;
}


/* サイドメニュー */
.menu-btn {
      position: fixed;
      top: 0px;
      left: 10px;
      z-index: 1001;
      color: #fff;
      cursor: pointer;
      border-radius:　0px;
	  font-size: 35px;
   font-weight: lighter;

    }
    /* サイドメニュー */
    .side-menu {
      position: fixed;
      top: 0;
      left: -320px; /* 初期は隠す */
      width: 300px;
      height: 100%;
      background: #fff;
      color: #000;
      transition: left 0.3s ease;
      z-index: 1000;
      padding: 0px;
      box-shadow: 2px 0 5px rgba(0,0,0,0.1);
				  overflow-y: auto;       /* ← 縦スクロールを有効化 */
  overflow-x: hidden;
    }

    .side-menu.open {
      left: 0;
    }

    .side-menu a {
      display: block;
      color: #000;
      text-decoration: none;
      margin: 15px 0;
      font-size: 16px;
    }

    .side-menu a:hover {
      text-decoration: underline;
    }

    /* オーバーレイ */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      display: none;
      z-index: 999;
    }
    .overlay.show {
      display: block;
    }

    /* ページコンテンツ */
    main {
      padding: 80px 20px; /* ボタンと被らないように上に余白 */
    }

.close-btn {
  text-align: left;
  font-size: 25px;
  font-weight: lighter;
  cursor: pointer;
     top: 10;
      left: 10;
  color: #000;

}
.close-btn:hover {
  text-decoration: underline;
}


.side-menu {
  z-index: 1002; /* ← ここを追加 or 修正 */
}

.overlay {
  z-index: 1000; /* ← サイドメニューより小さい数に */
}

.side-menu {
  padding: 0px 10px;  
	}

.pc-only { display: block; }
.sp-only { display: none; }

@media screen and (max-width: 767px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}

.intro-text {
  font-family: "Adorn Engraved", serif;
	font-size: 7px; /* size="1" に相当 */
  line-height: 1.7; /* 行間を少し開ける */
  color: #000; /* 必要に応じて文字色 */
}



/* スマホ向け（767px以下） */
@media (max-width: 767px) {
  .banner-slider {
    flex-direction: column;  /* 横並び → 縦並び */
    width: 100vw;            /* 画面幅いっぱい */
    gap: 5px;                /* スロット間の余白 */
  }

  .slot {
    width: 100%;             /* スロット幅を画面いっぱいに */
    min-height: 250px;       /* 高さを調整 */
    overflow: hidden;
  }

  .slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 枠いっぱいに表示 */
  }

  /* 例: スクロール用の他画像もサイズ変更可能 */
  .other-images img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}


.snap-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.snap-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.snap-carousel img.active {
  opacity: 1;
}



.fixed-bar {
  position: fixed;
  top: 0;
 left: 35px;
  width: 100%;
  height: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 右寄せ */
  padding-right: 10px;   
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;  
letter-spacing: 0.12em;

}

