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



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;
}

.fixed-bar {
  position: fixed;   /* 常に画面上部に固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;      /* バーの高さ */
  background-image: url("../image/logobarbour.svg"); /* 画像パスに変更 */
  background-position: center; /* 中央に配置 */
  background-repeat: no-repeat;
  z-index: 1000;
  background-size: 70%; /* 画像を幅の50%に縮小 */

}



.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;
}


