@charset "utf-8";

#sipro {
  box-sizing: border-box;
  font-family:"Roboto", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-optical-sizing: auto;
  font-feature-settings: "palt" 1;
  overflow-wrap: break-word; /* 収まらない場合に折り返す */
  word-break: auto-phrase;
  line-break: strict; /* 禁則処理を厳格に適用 */
  font-kerning: normal;
  vertical-align: baseline;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

header[role=banner] {
  position: sticky !important;
  border-bottom: 3px solid #0CA26C;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
}

header[role='banner'] .headerTop {
  position: relative;
  padding-top: 31px;
  margin-bottom: 28px;
}

.architectureType2018 #wrap #mainArea {
  margin: 0 auto -105px;
}


#sipro {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* 独立したスクロールコンテナ */
#sipro .sipro-container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#sipro .sipro-container::-webkit-scrollbar {
  display: none;
}

/* 各セクション共通 */
#sipro .sipro-section {
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 💡 セクション1：ヘッダーの下に収まる高さ */
#sipro .sec-1 {
  height: calc(100vh - 105px);
  background-color: #f4f6f8;
  color: #333;
}

/* 💡 セクション2・3：画面全体（100vh） */
#sipro .sec-2 {
  height: 100vh;
  background-color: #322c46;
  color: #fff;
}

#sipro .sec-3 {
  height: 100vh;
  background-color: #322c46;
  color: #fff;
}

/* ボタン */
#sipro .sipro-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  border: 2px solid currentColor;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

#sipro .sipro-nav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(calc(-50% + var(--nav-offset, -80px)));
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s ease;
}

#sipro .sipro-nav.is-sec1 {
  transform: translateY(calc(-50% - 80px));
}

#sipro .sipro-nav-item {
  width: 8px;            /* バーの太さ */
  height: 75px;          /* バーの長さ */
  background-color: #bcb9c8; /* 待機時の色 */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#sipro .sipro-nav-item:hover {
  background-color: #ab80e4;
}

#sipro .sipro-nav-item.is-active {
  background-color: #9848ff;
}

#sec1 {
  position: relative;
  overflow: hidden; /* 動画がはみ出た部分をカット */
}

#sec1 .sipro-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none; 
}

/* ==================================================
   右下 SCROLL インジケーター（消える処理を追加）
================================================== */
#sipro .sipro-scroll-indicator {
  position: absolute;
  right: 30px;
  bottom: 105px;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  gap: 0;
  pointer-events: none;
  
  opacity: 1;
  visibility: visible;
  transition: bottom 0.3s ease, opacity 0.4s ease, visibility 0.4s ease;
}

#sipro .sipro-scroll-indicator.is-sec2,
#sipro .sipro-scroll-indicator.is-sec3 {
  bottom: 0px;
}

#sipro .sipro-scroll-indicator.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

#sipro .sipro-scroll-text {
  font-size: 16px;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.25em;
  color: #bcb9c8;
  transform: rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
  margin-right: -28px;
  margin-top: 28px;
}

/* 縦棒（ライン）のコンテナ */
#sipro .sipro-scroll-line {
  position: relative;
  width: 2px;
  height: 160px;
  background-color: #bcb9c8; 
  overflow: hidden;
}

#sipro .sipro-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #9848ff; 
  animation: scrollLineAnim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLineAnim {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* 💡 動画のローディング画面（最初全体を黒で覆う） */
#sec1 .sipro-video-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee; 
  z-index: 2; 
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* 動画再生準備完了時に消すクラス */
#sec1 .sipro-video-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

/* 💡 ローディングスピナー（ぐるぐる） */
#sec1 .sipro-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #9848ff; /* メインの紫色 */
  border-radius: 50%;
  animation: siproSpin 0.8s linear infinite;
}

@keyframes siproSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* ==================================================
   セクション2：左右2分割レイアウト
================================================== */
#sipro .sec-2 {
  position: relative;
  padding: 0;
  overflow: hidden;
}

#sipro .sipro-sec2-inner {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* --- 左エリア（コンテンツ） --- */
#sipro .sipro-sec2-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  background-color: #322c46;
  box-sizing: border-box;
  position: relative;
}

#sipro .sipro-sec2-content {
  width: 100%;
  text-align: center;
  color: #ffffff;
}

/* リード文 */
#sipro .sipro-sec2-lead {
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #e2e0ea;
  margin-bottom: 40px;
}

/* カードエリア（横並び） */
#sipro .sipro-sec2-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

/* 各カードの共通スタイル */
#sipro .sipro-card {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro","Noto Serif JP";
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.25em;
  box-sizing: border-box;
  border-radius: 2px;
}

#sipro .sipro-card span b{
  font-size: 22px;
  font-weight: normal;
}

/* 紫グラデーションカード */
#sipro .sipro-card-purple {
  background: linear-gradient(135deg, #8C9EB8 0%,#9370D0 20%, #3C2C56 80%,#3C2C56 100%);
  border: 2px solid transparent;
  border-image: linear-gradient(
    135deg, 
    rgb(171, 128, 228) 0%, 
    rgb(50, 32, 74) 50%,
    rgb(171, 128, 228) 100%
  ) 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ✕ 印 */
#sipro .sipro-card-cross {
  width: 80px;  /* ✕の大きさ（幅） */
  height: 80px; /* ✕の大きさ（高さ） */
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

/* 45度に傾けた2本の1px線で✕を描く */
#sipro .sipro-card-cross::before,
#sipro .sipro-card-cross::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #bcb9c8;
}

#sipro .sipro-card-cross::before {
  transform: rotate(45deg);
}

#sipro .sipro-card-cross::after {
  transform: rotate(-45deg);
}

/* ゴールドグラデーションカード */
#sipro .sipro-card-gold {
  background: linear-gradient(135deg, #c48c5a 0%,#C1724B 20%, #684222 80%,#684222 100%);
  border: 1px solid rgba(212, 163, 115, 0.4);
  border: 2px solid transparent;
  border-image: linear-gradient(
    135deg, 
    rgb(212, 163, 115) 0%, 
    rgb(65, 50, 35) 50%,
    rgb(212, 163, 115) 100%
  ) 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 下部のテキスト */
#sipro .sipro-sec2-subtext {
  font-size: 20px;
  letter-spacing: 0.25em;
  color: #ffffff;
  margin: 48px auto;
}

#sipro .sipro-sec2-subtext span{
  font-size: 38px;
  display: inline-block;
  margin-left: 5px;
}

#sipro .sipro-sec2-arrow {
  position: absolute;
  bottom: 40px; 
  left: 50%; 
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* 矢印（くの字）の見た目 */
#sipro .sipro-sec2-arrow::before,
#sipro .sipro-sec2-arrow::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  border-right: 2px solid #bcb9c8;
  border-bottom: 2px solid #bcb9c8;
  transform: rotate(45deg);
  margin-top: -9px;
}


/* --- 右エリア（動画） --- */
#sipro .sipro-sec2-right {
  width: 35%; /* 右側動画の幅（お好みで 40%〜50% で微調整できます） */
  height: 100%;
  position: relative;
  overflow: hidden;
}

#sipro .sipro-sec2-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* セクション3 全体枠 */
#sipro .sec-3 {
  background-color: #322c46;
  color: #ffffff;
  padding: 60px 40px 60px 100px; /* 左ナビの幅を考慮 */
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* インナー要素 */
#sipro .sipro-sec3-inner {
  width: 100%;
  max-width: 1000px; /* お好みの最大幅 */
  margin: 0 auto;
  min-width: 0; 
}

/* タイトル */
#sipro .sipro-sec3-title {
font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-variation-settings:
    "wdth" 100;
  font-size: 42px;
  font-style: italic;
  letter-spacing: 0.25em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
}

/* 💡 横スクロールコンテナ */
#sipro .sipro-sec3-slider {
display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  min-width: 0;
}

/* 💡 カスタムスクロールバーの見た目（薄く上品に） */
#sipro .sipro-sec3-slider::-webkit-scrollbar {
  height: 4px; /* スクロールバーの太さ */
}
#sipro .sipro-sec3-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
#sipro .sipro-sec3-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

#sipro .sipro-fund-card {
  flex: 0 0 495px; 
  max-width: 495px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  position: relative; /* 💡 線の配置基準にするため追記 */
  padding-right: 20px;
  box-sizing: border-box;
}

#sipro .sipro-fund-card::after {
  content: '';
  position: absolute;
  top: 40%;          
  bottom: 40%;       
  right: 0;         
  width: 1px;        
  background-color: rgba(255, 255, 255, 0.25); /* 線の色（半透明の白） */
}

#sipro .sipro-fund-card:last-child{
  flex: 0 0 485px; 
  max-width: 485px;
  padding-right: 0px;
}

#sipro .sipro-fund-card:last-child::after {
  display: none;
}

/* キャッチコピー */
#sipro .sipro-fund-catch {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffffff;
}

/* サムネイル画像 */
#sipro .sipro-fund-thumb {
  width: 100%;
  height: 100px;
  overflow: hidden;
  margin-bottom: 20px;
}
#sipro .sipro-fund-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sipro .sipro-fund-thumb img:hover {
  filter: brightness(1.5);
}

/* ブランド名 */
#sipro .sipro-fund-sub {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

/* ファンド名 */
#sipro .sipro-fund-name {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* ファンド説明文 */
#sipro .sipro-fund-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #d1cedd;
  margin-bottom: 24px;
}

/* 詳細リンク */
#sipro .sipro-fund-link {
  margin-top: auto; /* 一番下に押し下げる */
  text-align: right;
  padding-bottom: 4px;
}
#sipro .sipro-fund-link a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* 💡 ドットインジケーターの親容器 */
#sipro .sipro-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* ドット同士の間隔 */
  margin-top: 32px;
}

/* 💡 ドット単体のスタイル */
#sipro .sipro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25); /* 通常時（未選択）の色 */
  cursor: pointer;
  border: none;
  padding: 0;
  outline: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* 💡 ホバー時（少しふんわり） */
#sipro .sipro-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/* 💡 アクティブ（現在表示中のカード）のドット */
#sipro .sipro-dot.is-active {
  background-color: #ffffff; /* 白（アクティブ色）。#9848ff などのアクセントカラーもオススメです */
  transform: scale(1.3);     /* ひとまわり大きくして目立たせる */
}


/*260813*/
  header[role="banner"] .headerTop {
    position: relative;
    padding-top: 31px;
    margin-bottom: 28px;
    padding-left: 20px;
}
.sp-eng{
display: inline;
font-weight: 300;
}
@media screen and (max-width: 767px) {
  #wrap #mainArea main {
    padding: 0 0;
  }

    #sipro .sipro-sec2-inner {
    flex-direction: column;
    position: relative;
  }

  /* 動画を画面全体（背景）へ */
  #sipro .sipro-sec2-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* テキストを読みやすくするため動画を少し暗くする */
  #sipro .sipro-sec2-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(50, 44, 70, 0.7); /* ブランドの濃い紫を70%薄く被せる */
  }

  /* 左側のコンテンツを動画の上に載せる */
  #sipro .sipro-sec2-left {
    position: relative;
    z-index: 2;
    background-color: transparent; /* 背景を透明にして下の動画を透かす */
    padding: 40px 20px;
  }
  #sipro .sipro-card {
    width: 140px;
    height: 140px;
    font-size: 14px;
  }
  
  /*260813*/
  header[role="banner"] .headerInner .logoWrap > p > a > img {
    width: 222px;
  }
  header[role="banner"] .headerTop {
    padding-top: 22px;
    margin-bottom: 22px;
  }
  #sipro .sec-1 {
    height: calc(100vh - 74px);
    ;
  }
  #sipro .sipro-scroll-indicator {
    bottom: 0;
  }
@media screen and (max-width: 767px) {
  #sipro .sipro-scroll-indicator.is-sec1 {
    bottom: 74px;
  }
}
  #sipro .sipro-nav{
  left: 12px;
  }
  #sipro .sipro-nav-item{
  width: 6px;
  height: 60px;
  }
  #sipro .sipro-card-purple,#sipro .sipro-card-gold{
  border: 1px solid transparent;
  }
  #sipro .sipro-sec2-lead{
  font-size: clamp(1.4rem, 2.868vw, 2.2rem);
  }
  #sipro .sipro-sec2-subtext span{
  font-size: clamp(2.2rem, 4.948vw, 3.8rem);
  }
  
}


@media screen and (max-width: 480px) {
  #sipro .sipro-sec2-left {
    padding: 40px 33px 40px 36px; 
  }
  
  #sipro .sipro-sec2-cards {
    gap: 12px; /* カードと「✕」の間隔を狭くする */
  }

  #sipro .sipro-card {
    width: 120px; /* カードを少し小さく */
    height: 120px;
    font-size: 13px;
  }

  #sipro .sec-3 {
    padding: 40px 30px 40px 40px; 
  }

  /* 2. 大見出し「Fund Lineup」 */
  #sipro .sipro-sec3-title {
    font-size: 28px; /* 42px → 28px に小ぶりに */
    margin-bottom: 24px;
    padding-bottom: 10px;
  }

  /* 3. カードエリア（間隔を少し詰める） */
  #sipro .sipro-sec3-slider {
    gap: 20px; /* カード同士の間隔を 40px → 20px へ */
    padding-bottom: 16px;
  }

  /* 💡 4. カード本体の幅調整（ここが重要！） */
  #sipro .sipro-fund-card {
    flex: 0 0 78vw !important;
    width: 78vw !important;
    max-width: 78vw !important; /* 💡 PC版の固定幅（460px）を強制解除 */
    min-width: 0 !important;    /* 💡 中のテキスト長さに引っ張られるのを防ぐ */
    
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* 5. カード内コンテンツのサイズ微調整 */
  #sipro .sipro-fund-catch {
    font-size: 12px;
    margin-bottom: 8px;
  }

  #sipro .sipro-fund-thumb {
    height: 130px; /* サムネイル画像の高さを少しキュッと低く */
    margin-bottom: 12px;
  }

  #sipro .sipro-fund-sub {
    font-size: 13px;
  }

  #sipro .sipro-fund-name {
    font-size: 19px; /* 26px → 19px（スマホで改行されすぎない絶妙なサイズ） */
    margin-bottom: 10px;
  }

  #sipro .sipro-fund-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  #sipro .sipro-fund-desc br {
    display: none;
  }

  /* 6. 下部ドットの間隔調整 */
  #sipro .sipro-slider-dots {
    margin-top: 20px;
    gap: 10px;
  }
}



@media screen and (max-width: 375px) {
  #sipro .sipro-sec2-lead {
    font-size: 14px;
  }

  #sipro .sipro-card {
    width: 105px; /* SEでも横並びが崩れないギリギリのサイズ */
    height: 105px;
    font-size: 11px;
  }

  #sipro .sipro-card-cross {
    width: 24px; /* ✕印も少し小ぶりに */
    height: 24px;
  }
}