/* ========================================
   下層ページ共通ベース (利用規約、資金決済法など)
   ======================================== */
   .page-lower {
    /* 1. 全体のベースとなる背景色（ごく薄い水色） */
    background-color: #eaf8ff; 
    
    /* 2. CSSで作る斜めストライプ（-45度の角度で線を引く） */
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,       /* 空白（ベース色）の幅：10px */
        rgba(0, 160, 233, 0.05) 10px, /* ストライプ線の色（少し濃い水色を半透明で重ねる） */
        rgba(0, 160, 233, 0.05) 20px  /* ストライプ線の幅：10px（10px〜20pxの間を塗る） */
    );
    
    /* 余計な隙間ができないように調整 */
    padding-top: clamp(60px, 10vw, 100px);
}

/* テキストエリアの横幅を読みやすく制限する */
.terms__inner {
    width: 90%;
    max-width: 800px; /* PCでも広がりすぎないようにロック */
    margin: 0 auto;
    font-family: "fot-udmarugo-large-pr6n", sans-serif;
    color: #333333;
    
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 3px rgba(255, 255, 255, 0.9), 0 0 2px #ffffff;
}

/* ページタイトル */
.terms__title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

/* 各項目のブロック */
.terms__item {
    margin-bottom: clamp(25px, 5vw, 40px);
}

/* 項目の見出し (1. 商号 など) */
.terms__item h2 {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 900;
    margin-bottom: 10px;
}

/* 項目のテキスト */
.terms__item p {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    line-height: 1.8;
}
.terms__item p a {
    color: #0096ff;
}

.page-lower .sec-info {
    margin-top: 0;
    padding-top: clamp(60px, 10vw, 100px);
}



.terms__content .terms__item:last-child {
    text-align: right;
}





.back-link-wrap2 {
  text-align: center;
  margin-top: 70px;
 margin-bottom: 100px;
}

/* ボタン本体のスタイル（共通） */
.back-link-wrap a,
.back-link-wrap2 a {
  /* ★ここがポイント：親の中央揃えを効かせるため inline-flex を使用 */
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  
  width: clamp(200px, 20vw, 258px);
  padding-top: clamp(12px, 1.5vw, 16px);
  padding-bottom: clamp(12px, 1.5vw, 16px);
  padding-left: 24px;
  padding-right: 0;
  
  background-color: #00b3fb; 
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
  text-decoration: none;
  
  /* アニメーション設定 */
  transition: filter 0.2s, transform 0.3s ease, background-color 0.2s, color 0.2s;
}

/* ホバー時の挙動（右に6px動く ＋ 白背景×青文字） */
.back-link-wrap a:hover,
.back-link-wrap2 a:hover {
  filter: brightness(1.1);
  transform: translateX(6px);
  background-color: #ffffff;
  color: #00a0e9;
}

/* 白い右矢印アイコン */
.back-link-wrap a::after,
.back-link-wrap2 a::after {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  margin-left: 12px; 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M4 11h12.172l-5.364-5.364 1.414-1.414L21.414 12l-9.192 9.192-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(1px);
}

/* ★ホバー時に矢印の色も「青（#00a0e9）」に変化させる */
.back-link-wrap a:hover::after,
.back-link-wrap2 a:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300a0e9'%3E%3Cpath d='M4 11h12.172l-5.364-5.364 1.414-1.414L21.414 12l-9.192 9.192-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
}


@media (max-width: 768px) {
    .back-link-wrap a,
    .back-link-wrap2 a {
        width: 80%;
        max-width: 280px; /* NEWSの文字数に合わせて、他のボタンより少しだけ最大幅を広げています */
    }
}




/* ========================================
   フッターの下余白リセット
   ======================================== */
.page-lower .footer {
    /* PC版：巨大な下余白(140px)を、上と同じ40pxに戻す */
    padding-bottom: 30px;
}

/* スマホ版（768px以下）の調整 */
@media (max-width: 768px) {
    .page-lower .footer {
        /* SP版：CTA分の余白を消しつつ、iPhoneのホームバー(safe-area)だけは考慮しておく */
        padding-bottom: calc(0px + env(safe-area-inset-bottom));
    }
}


