@charset "UTF-8";
/* =========================================================
   ご利用にあたって（TERMS OF USE）ページ固有スタイル
   ※ style.css（共通トークン・ヘッダー・フッター等）読込後に使用
   ========================================================= */

/* ===== Page hero ===== */
.page-hero{
  position:relative;
  min-height:240px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#020912;
  color:#fff;
  isolation:isolate;
}
.page-hero__bg{
  position:absolute;
  inset:0;
  z-index:-1;
  background:url(/web/jp/data/images/fv_bg.jpg) right 90%/cover no-repeat;
}
.page-hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(2,9,18,.92) 0%,rgba(2,9,18,.55) 45%,rgba(2,9,18,.15) 100%);
}
.page-hero__content{padding-block:48px;}
.page-hero__title{
  font-size:clamp(28px,4vw,40px);
  font-weight:700;
  letter-spacing:.06em;
  line-height:1.3;
}
.page-hero__en{
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:.05em;
  color:var(--cyan);
  margin-top:6px;
}

/* ===== Breadcrumb ===== */
.breadcrumb{
  background:var(--light);
  padding-block:14px;
}
.breadcrumb__list{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  font-size:14px;
  color:var(--ink-soft);
}
.breadcrumb__item{display:flex;align-items:center;}
.breadcrumb__item a{color:var(--Accent-navy);font-weight: 500;}
.breadcrumb__item a:hover{text-decoration:underline;}
/* 区切り。currentColorで本文色に追従 */
.breadcrumb__item + .breadcrumb__item::before{
  content:"";
  width:6px;height:6px;
  margin:0 12px;
  border-top:1px solid currentColor;
  border-right:1px solid currentColor;
  transform:rotate(45deg);
  opacity:.55;
}
.breadcrumb__item[aria-current="page"]{font-weight:500;color:var(--ink);}

/* ===== Terms body ===== */
.terms{
  background:var(--light);
  padding:64px 0 96px;
}

/* リード文 */
.terms__intro{
  font-size:16px;
  font-weight: 500;
  line-height:2;
  color:var(--ink);
  padding-bottom:40px;
  border-bottom:1px solid var(--line-light);
  margin-bottom:8px;
}
.terms__intro p + p{margin-top:1.6em;}

/* 各条文：左=見出し / 右=本文 の2カラム */
.terms__article{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:24px 88px;
  padding:40px 0;
  border-bottom:1px solid var(--line-light);
}
.terms__heading{
  font-size:16px;
  font-weight:700;
  color:var(--Accent-navy);
  letter-spacing:.02em;
  line-height:1.7;
}
.terms__body{
  font-size:16px;
  font-weight: 500;
  line-height:2;
  color:var(--ink);
}
.terms__body p + p{margin-top:1.6em;}
.terms__body ul{
  list-style:disc;
  padding-left:1.4em;
}
.terms__body p + ul{margin-top:1em;}
.terms__body li + li{margin-top:.6em;}

/* メタ情報（制定日・コピーライト） */
.terms__meta{
  margin-top:40px;
  text-align:right;
  font-size:14px;
  font-weight: 500;
  color:var(--ink);
  line-height:1.9;
}

/* ===== Responsive（共通CSSのBPに合わせる） ===== */
@media (max-width:820px){
  .terms__article{
    grid-template-columns:1fr;
    gap:14px;
  }
}
@media (max-width:560px){
  .page-hero__bg::after{
    background:linear-gradient(90deg,rgba(2,9,18,.9) 0%,rgba(2,9,18,.6) 100%);
  }
  .terms{padding:48px 0 72px;}
  .terms__article{padding:32px 0;}
}
