@charset "UTF-8";
img {
  vertical-align: middle;
  max-width: 100%;
  pointer-events: none;
}
#lpPage main.lp-main {
  background-color: #fff;
  width: 100%;
  max-width: 750px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

/* ヘッダー */
.lp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 750px;
  height: 55px;
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}
@media screen and (min-width: 750px) {
  .lp-header {
    height: 80px;
  }
}
.lp-header .lp-header-logo {
  padding: 0 5.5vw;
  width: 40%;
}
.lp-header .lp-header-logo img {
  display: block;
  width: 100%;
  margin-top: 3%;
}
.lp-header .lp-header-entry {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #5a5a5a;
  max-width: 100%;
  box-sizing: border-box;
}
.lp-header .lp-header-entry a {
  width: 100%;
  height: 100%;
}
.lp-header .lp-header-entry img {
  display: block;
  width: 100%;
  height: 100%;
}
.lp-header .lp-header-hamburger {
  width: 15%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #5a5a5a;
  border-left: 1px solid #fff;
}
.lp-header .lp-header-hamburger .hamburger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.lp-header .lp-header-hamburger .hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: relative;
}

/* ハンバーガー ×変形 */
.lp-header .lp-header-hamburger .hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
}
.lp-header .lp-header-hamburger .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.lp-header .lp-header-hamburger .hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
}
@media screen and (min-width: 750px) {
  .lp-header .lp-header-hamburger .hamburger {
    width: 36px;
    height: 28px;
    gap: 10px;
  }
  /* ハンバーガー ×変形 */
  .lp-header .lp-header-hamburger .hamburger.is-active span:nth-child(1) {
    top: 15px;
  }
  .lp-header .lp-header-hamburger .hamburger.is-active span:nth-child(3) {
    top: 15px;
  }
}

/* ヘッダー　グローバルナビゲーション */
html.no-scroll,
body.no-scroll {
  position: fixed;
  width: 100%;
}
.lp-global-nav {
  position: fixed;
  top: 55px; /* ヘッダー高さに合わせて */
  left: 0;
  width: 100%;
  height: calc(100vh - 55px);
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 100;
  overflow-y: auto;
}
.lp-global-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.lp-global-nav ul {
  list-style: none;
  padding: 17% 20px;
  text-align: center;
}
.lp-global-nav ul li {
  margin-bottom: 30px;
}
.lp-global-nav ul li a {
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}
.lp-global-nav ul li a:active {
  opacity: 0.7;
}
@media screen and (min-width: 750px) {
  .lp-global-nav {
    top: 80px;
    height: calc(100vh - 80px);
    left: 50%;
    transform: translateX(-50%);
    max-width: 750px;
  }
  .lp-global-nav ul {
    padding: 15% 20px 0;
  }
  .lp-global-nav ul li {
    margin-bottom: 2vw;
  }
  .lp-global-nav ul li a {
    font-size: clamp(16px, 1.5vw, 30px);
    padding: 0.9vw 0;
  }
  .lp-global-nav ul li a:hover {
    opacity: 0.8;
    background-color: rgba(0, 0, 0, 0.2);
  }

  /* スクロールバー */
  /* 対象範囲を明示。全体に適用したい場合は html や body */
  .lp-global-nav {
    scrollbar-width: thin; /* Firefox用 */
    scrollbar-color: #888 transparent; /* Firefox用 */
  }
  /* WebKit用 */
  .lp-global-nav::-webkit-scrollbar {
    width: 8px; /* 横スクロールの場合は height */
  }
  .lp-global-nav::-webkit-scrollbar-track {
    background: transparent;
  }
  .lp-global-nav::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 2px solid transparent; /* 内側に余白を作って目立たせすぎない */
  }
}

/* FV */
.fv-area {
  /* margin-top: 55px; */
  /* margin-top: 15px; */
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 5;
  overflow: hidden;
}
.fv-area .fv-swiper {
  width: 100%;
  height: 100%;
}
.fv-area .fv-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.fv-area .fv-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  transform: scale(1.1); /* 初期は少し大きく */
  transition: transform 5s ease-out;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  object-position: 25% center; /* ← ここで画像の表示位置を右にオフセット */
}
.fv-area .fv-swiper .swiper-slide-active img {
  transform: scale(1); /* アクティブなスライドでは縮小 */
}

.fv-area .fv-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.fv-area .fv-text-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media screen and (min-width: 750px) {
  .fv-area {
    /* margin-top: 50px; */
  }
}

/* コンテンツ */
/* コンテンツ アクセス マップ */
.lp-contents #access .map-container {
  margin: 3% 16% 5%;
  position: relative;
}
.lp-contents #access .map-container .map-frame {
  position: relative;
  width: 100%;
  padding-top: 100%; /* ここで正方形を作る */
  overflow: hidden;
}
.lp-contents #access .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* コンテンツ エントリー */
.lp-contents a {
  display: block;
}
.lp-contents #entry {
  margin-top: 13%;
}

/* フッター */
.lp-contents #closingFooter .nav-image-wrapper {
  position: relative;
}
.lp-contents #closingFooter .nav-image-wrapper .nav-link {
  position: absolute;
  left: 0;
  width: 100%;
  height: 15%;
  display: block;
  background-color: rgba(0, 0, 0, 0); /* 完全透明 */
  z-index: 10;
}
.lp-contents #closingFooter .entry-image-wraper {
  position: relative;
}
.lp-contents #closingFooter .entry-image-wraper a {
  position: absolute;
  top: 10%;
  left: 15%;
  width: 70%;
  height: 57%;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
}
.lp-contents #closingFooter .footer-link-image-wraper {
  position: relative;
}
.lp-contents #closingFooter .footer-link-image-wraper a {
  position: absolute;
  right: 10%;
  width: 40%;
  height: 8%;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
}
