﻿/* ================================================================
   特定商取引法ページ用 見出しデザイン（H1, H2, H3）
   ================================================================ */

/* H1 - ページタイトル */
.c-page-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-main, #1C3040);
  line-height: 1.4;
  margin: 2.5em 0 2rem;
}

@media screen and (max-width: 767px) {
  .c-page-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

/* H2 - セクションタイトル */
.c-page-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-main, #1C3040);
  border-left: 6px solid var(--color-accent-blue, #2690BA);
  padding-left: 0.8em;
  margin: 3rem 0 1.2rem;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .c-page-subtitle {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    padding-left: 0.6em;
    border-left-width: 4px;
  }
}

/* H3 - セクション内小見出し */
.c-page-subsubtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent-blue-light, #3A7EA1);
  border-left: 4px solid var(--color-accent-blue-light, #3A7EA1);
  padding-left: 0.8em;
  margin: 1.5rem 0 0.75rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .c-page-subsubtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 0.6em;
    border-left-width: 3px;
  }
}

/* -------- .c-page-textcontent テキスト段落スタイル -------- */
.c-page-textcontent {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1.2em;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .c-page-textcontent {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1em;
  }
}

/* リスト内テキストに適用 */
.c-page-textcontent ul,
.c-page-textcontent ol {
  margin: 1em 0 1em 1.5em;
  padding: 0;
  list-style-position: inside;
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
}

/* リンク */
.c-page-textcontent a,
.c-page-textlink {
  color: var(--color-accent-blue, #2690BA);
  text-decoration: underline;
}

.c-page-textcontent a:hover,
.c-page-textlink:hover {
  color: #1a5d8f;
  text-decoration: none;
}

/* SCORE後払いバナー画像 */
.score-banner {
  max-width: 100%;
  height: auto;
  width: 300px;
  display: block;
  margin: 1.5rem auto;
  border-radius: 4px;
}

@media screen and (max-width: 480px) {
  .score-banner {
    width: 80%;
  }
}

/* 問い合わせ先囲みエリア */
.contactcenterinfo {
  border: 2px solid var(--color-accent-blue, #2690BA);
  background-color: #f0f8ff;
  padding: 20px 24px;
  margin-top: 2rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #1C3040;
  line-height: 1.6;
}

.contactcenterinfo p {
  margin: 0.5rem 0 0;
}

.contactcenterinfo a.u-text-primary {
  font-weight: 700;
  color: var(--color-accent-blue, #2690BA);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contactcenterinfo a.u-text-primary:hover,
.contactcenterinfo a.u-text-primary:focus {
  color: #1a5d8f;
  text-decoration: none;
  outline: none;
}

/* 特定商取引法ページ内 ul/ol と li にマーカーを復活 */
.p-page-law ul[role="list"],
.p-page-law ol[role="list"],
.p-page-law li {
  list-style-type: disc !important;      
  list-style-position: inside !important; 
  padding-left: 0.5em !important;        
  margin: 0.2em 0 !important;
  display: list-item !important;           /* 念のため表示設定 */
  color: #333 !important;
}
