@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/logobarbour2.svg"); /* 画像パスに変更 */
  background-position: center; /* 中央に配置 */
  background-repeat: no-repeat;
  z-index: 1000;
  background-size: 30%; /* 画像を幅の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: #ffffff;
  font-size: 8px;
  font-family: Helvetica;
  z-index: 10;
letter-spacing: 0.12em;
}


/* 右下テキスト */
.text-right {
  position: absolute;
  right: 15px;
  bottom: 15px;
	color: #ffffff;
  font-size: 8px;
  font-family: Helvetica;
  text-align: right;
  z-index: 10;
letter-spacing: 0.12em;
}


/* 左中央の縦向きテキスト */
.text-vertical {
  position: absolute;
  left: 30px;            /* 画像の左から10px */
  top: 40%;              /* 上から50% → 真ん中 */
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left top;
	color: #135587;
  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: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
}

.arrow-clean::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-right: 1px solid #ffffff;   /* ← 1px → 2px に変更 */
  border-bottom: 1px solid #ffffff;  /* ← 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: #ffffff;
  font-size: 10px;
  opacity: 0.8;
   font-family: Helvetica, sans-serif;
letter-spacing: 0.2em;
}


/* サイドメニュー */
.menu-btn {
      position: fixed;
      top: 0px;
      left: 10px;
      z-index: 1001;
	color: #135587;
      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: #135587;
}
.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: #135587;
}



/* スマホ向け（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;
}




.text-vertical-svg {
  position: absolute;

  left: 0px;
  top: 50%;

  transform: translateY(-50%);

  width: 50px !important;
  height: auto !important;

  max-width: 90px;

  display: block;

  object-fit: contain;

  z-index: 10;
  pointer-events: none;
}



.snap-item {
  position: relative;
  overflow: hidden;
}



.div51 {
	overflow:		hidden;
	position:		relative;	/* 相対位置指定 */
}
.div51 .caption {
	font-size:		100%;
	text-align: 		center;	padding-top:		35%;
	color:			#fff;
}
.div51 .mask {
	width:			100%;
     min-height: 100%;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.div51:hover .mask {
	opacity:		1;	/* マスクを表示する */
}






.div52 {
	overflow:		hidden;
	position:		relative;	/* 相対位置指定 */
}
.div52 .caption {
	font-size:		100%;
	text-align: 		center;	padding-top:		35%;
	color:			#fff;
}
.div52 .mask {
	width:			100%;
     min-height: 100%;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.div52:hover .mask {
	opacity:		1;	/* マスクを表示する */
}


.div53 {
	overflow:		hidden;
	position:		relative;	/* 相対位置指定 */
}
.div53 .caption {
	font-size:		100%;
	text-align: 		center;	padding-top:		35%;
	color:			#fff;
}
.div53 .mask {
	width:			100%;
     min-height: 100%;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.div53:hover .mask {
	opacity:		1;	/* マスクを表示する */
}

.div54 {
	overflow:		hidden;
	position:		relative;	/* 相対位置指定 */
}
.div54 .caption {
	font-size:		100%;
	text-align: 		center;	padding-top:		35%;
	color:			#fff;
}
.div54 .mask {
	width:			100%;
     min-height: 100%;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.div54:hover .mask {
	opacity:		1;	/* マスクを表示する */
}


.side-menu img {
  width: 100%;
  height: auto;
  display: block;
}