/* Google Fonts読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  overflow: auto;
  background-color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* PC用の背景スタイル */
.pc-background {
  display: none;
}

/* PC用の左サイドコンテンツ */
.pc-left-content {
  display: none;
}

.pc-logo {
  margin-bottom: 30px;
}

.pc-logo img{
  border-radius: 20px;
}

.pc-description h1 {
  margin-bottom: 20px;
  font-size: 32px;
}

.pc-description p {
  margin-bottom: 30px;
}

.pc-cta {
  width: 100%;
}

/* スライダーコンテナ */
.vertical-slider-container {
  width: 100%;
  height: 100%;
}

/* スライダー全体 */
.vertical-slider {
  width: 100vw; /* 幅を画面いっぱいに */
  height: calc(100vw * (1200 / 750)); /* 画像の比率を維持した高さ */
  max-height: 100vh; /* 画面の高さを超えないように */
  overflow: hidden;
  position: relative;
}

/* スライド */
.vertical-slider__slide {
  position: relative;
  overflow: hidden;
  background-color: #ffffff8d;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スライドの背景 */
.slide-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto; /* 画像のアスペクト比を維持 */
  max-height: 100%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* スライドのオーバーレイ - 削除してオーバーレイなしに */
.slide-bg::after {
  content: none;
}

/* スライドコンテンツ */
.slide-content {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 0;
  pointer-events: none;
}

/* LINEボタンのスタイル修正 */
.btn-line {
  /* デザインの基本設定 */
  background-color: #0DC755; /* LINEの緑色 */
  color: #fff !important;    /* 文字色を白に強制 */
  border-radius: 50px;       /* 丸み */
  border: 4px solid #fff;    /* 白い太枠 */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* 影をつける */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* アイコンと文字の間隔 */
  text-decoration: none;
  width: 90%;
  max-width: 350px;
  padding: 10px 10px; /* 上下左右の余白 */
  margin: 0 auto;
}

/* ホバー時の挙動（少し沈むアニメーションなど） */
.btn-line:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* アイコン画像のサイズ設定 */
.btn-line__icon-img {
  width: 25px;  /* アイコンの幅（画像に合わせて調整してください） */
  height: auto;
  display: block;
}

/* テキストのスタイル設定 */
.btn-line__label {
  font-size: 16px; /* 文字サイズ */
  font-weight: 700; /* 太字 */
  line-height: 1;
}

/* 既存のSVG用スタイルが残っていると邪魔をする場合があるので打ち消し */
.btn-line__icon {
  display: none;
}

.fixed-button-container {
  position: fixed; /* 画面下部に固定 */
  bottom: 0; /* 下端に配置 */
  left: 0;
  width: 100%; /* 横幅いっぱいに */
  padding: 10px 0; /* 余白を調整 */
  text-align: center;
  z-index: 1000; /* 他の要素より前面に */
  background-color: #fff;
}


/* ページネーション */
.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet-active {
  background: #333;
}

/* スワイプインジケーター */
.swipe-indicator {
  position: fixed;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
  animation: fadeInOut 2s infinite;
}

.swipe-arrow img {
  max-width: 100px;
  animation: arrowBounce 2s infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* スマホ画面対応 */
@media (max-width: 767px) {
  .slide-content .btn {
    bottom: 10%;
  }
  
  .swipe-indicator {
    bottom: 60px;
  }
}

/* PC向けのスタイル（768px以上） */
@media (min-width: 768px) {
  body {
    background-color: #f0f0f0; /* PCの時は背景をグレーに */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .swipe-indicator {
    left: 70%;
}

  .pc-background {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #fb8bda, #6ffcfa); /* ピンク×水色のグラデーション */
  }

  .pc-left-content {
    display: block;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 300px;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    background: #fff;
  }

  .vertical-slider-container {
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: 0;
  }

  .vertical-slider {
    right: -20%;
    max-width: 414px;
    height: 830px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }


  .vertical-slider__wrapper {
    height: 100%;
  }

  .slide-content {
    height: 830px;
  }
  
  .fixed-button-container {
    background-color: transparent;
    width: 140%;
    bottom: 10%;
  }

  /* スライド */
.vertical-slider__slide {
border-radius: 20px;
}
}

@media (min-width: 950px) {
  .pc-left-content {
    left: 15%;
  }
  .fixed-button-container {
    bottom: 0;
  }
}

/* 大きなPCスクリーン向け */
@media (min-width: 1500px) {
  .pc-left-content {
    left: 20%;
  }

  .vertical-slider {
    right: -10%;
  }

  .swipe-indicator {
    left: 60%;
}

  .fixed-button-container {
    background-color: transparent;
    width: 120%;
    margin-bottom: 5%;
  }
}


