@charset "UTF-8";

/* =================================================
   1. 色と背景の設定
   ================================================= */
.section-color {
    background-color: #EEEEEE; /* セクション全体の背景色（薄いグレー） */
    background-image: url("images/bg.jpg"); /* 背景画像がある場合 */
    background-size: cover;
    padding: 20px;
}

.color-box {
    color: #ffffff;            /* 文字色：白 */
    background-color: #007bff; /* 背景色：青 */
}

/* =================================================
   2. テキスト・フォントの設定
   ================================================= */
.text-custom {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;           /* 文字サイズ */
    font-weight: bold;         /* 太字 */
    line-height: 1.8;          /* 行間 */
    letter-spacing: 0.05em;    /* 字間：ほんの少し広げる */
    color: #333333;            /* 文字色：真っ黒を避ける */
    text-align: justify;       /* 両端揃え */
}

/* =================================================
   3. リストの設定
   ================================================= */
.custom-list {
    list-style: none;          /* デフォルトの「●」を消す */
    padding-left: 0;           /* 左側の余白をリセット */
}

.custom-list li {
    border-bottom: 1px solid #ccc; /* 下線をつける */
    padding-top: 10px;
    padding-bottom: 10px;
}

/* =================================================
   4. ボックスモデルの設定
   ================================================= */
.box-sample {
    width: 300px;         /* 幅 */
    height: auto;         /* 高さは中身に合わせる */
    background-color: hsl(0, 0%, 99%);
    
    /* 余白の使い分け */
    padding: 50px;        /* 内側の余白：文字と枠の間 */
    border: 10px solid #d8a2b2; /* 枠線 */
    margin: 40px auto;    /* 外側の余白：上下に40px、左右中央揃え */
}

.display-test {
    background-color: #fff8bf; /* 薄い赤（色の範囲を分かりやすく） */
    border: 2px solid #a7b5fb;  /* 赤い枠線 */
    
    /* ボックスモデルの設定 */
    width: 400px;
    height: 100px;
    margin: 20px;
    padding: 20px;
}

.circle img {
  border-radius: 50%;
  width: 300px;
  height: auto;
  margin-top: 60px;
}

.btn-error {
    background-color: #333;
    color: #fff;
    text-decoration: none; 

    width: 200px;
    height: 66px;
    padding: 20px;
    margin-top: 30px; 

    display: block;
    box-sizing: border-box
    text-align:center
}