﻿        body {
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            font-family: "Hiragino Kaku Gothic ProN", sans-serif;
        } 
        
        .container {
            margin: 0 auto;
        }



        header {
            padding: 10px 15px 10px;
            background-color: #FB6103;
        }  

        .logo img {
                width: 73px;
                height: 20px;
                display: block; /* 縦の隙間防止 */
        }

        p,h1,h2 {
            margin: 0;
        }
        
        h1, h2 {
            font-weight: bold; /* = 700 これを指定しないと太字が細字になる*/
        }
            
        h1 {
            font-size: 22px;
            border-bottom: 3px solid #FB6103;
            padding-bottom: 2px;
            }
            
        h2 {
            padding-left: 10px;
            border-left: 6px solid #FB6103;
            font-size: 20px;
            line-height: 1.2;
            }
            
        h3 {
            font-size: 16px;
            margin-bottom: 0px; /* ←ここ重要 */
            }
            
        #wrap {
              padding: 20px 15px 32px 15px;
            }/* 全体の位置 */

        #wrap img {
            width: 100%;
            max-width: 420px;
            height: auto;
            display: block;
            margin: 16px auto 0;
        }
        #wrap .point-box img {
            margin-top: 0;
        }
        
        .about img + h1 {
            margin-top: 24px;
        }

        
        .step1,
        .policy1,
        .help1,
        .terms-content1
         {
            margin-top: 40px;
        }

        .step2,
        .step3,
        .policy,
        .help,
        .terms-content
         {
            margin-top: 32px;
        }



        .mt8 {
            margin-top: 8px;
        }


        .mt16 {
            margin-top: 16px;
        }

        footer {
            text-align: center;
            color: #ffffff;
            padding: 14px 0;
            background-color: #FB6103;
        }  
        
        footer small {
            font-size: 12px;
            font-family: Arial, sans-serif;
        } 

        .point-box {
            border: 1px solid #cccccc;
            padding: 12px;
            margin-top: 16px;
        }
        .point-box img {
            margin-top: 0;
        }

        .img-caption {
            font-size: 12px;
            color: #797979;     
            line-height: 1.4;
            margin-top: 6px;     /* 画像との間隔 */
            text-align: center; 
        }


        .policy-date,
        .terms-content-date {
            margin-top: 32px;
            border-top: 1px solid #c7c7c7;
            padding-top: 16px;
            text-align: right;            
        }






/* 小番号（1-1, 1-2…） */
.help-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

/* helpページ専用スコープ */
.help-wrapper {
  counter-reset: section;
}


/* 各章で section を進める */
.help1,
.help {
  counter-increment: section;
  counter-reset: sub;
}

/* 章番号（1. 2. 3.） */
.help1 > h2::before,
.help > h2::before {
  content: counter(section) ". ";
}

/* li が1つ出るたびに「sub」を +1 して、項目同士の間隔を空ける */
.help-list > li {
  counter-increment: sub;
  margin-top: 16px;
}


/* h3の前に「章番号-項目番号（例：2-1.）」を太字で表示する */
.help-list > li > h3::before {
  content: counter(section) "-" counter(sub) ". ";
  font-weight: bold;
}

/* h2（1.）と 1-1 の間を 8px にする */
.help > h2,
.help1 > h2 {
  margin-bottom: 8px;
}

.help-list {
  margin-top: 0;   /* ol のデフォルト余白を消す */
}

.help-list h3 {
  margin-top: 0;   /* h3 の上余白を消す */
}

/* 2. と 2-1 の間 */
.help-list > li:first-child {
  margin-top: 8px;
}

/* 2-1 と 2-2 以降 */
.help-list > li + li {
  margin-top: 16px;
}

