.body-center {
    font-family: sans-serif;
    text-align: center;
  }
  
  img {
    width: 200px;
    height: 300px;
    border-radius: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  ul {
    list-style: disc;/*noneで●ポチ無くせるよ～*//*decimal数字 disc黒丸 circle白丸 square四角*/
    padding: 0;
    margin-bottom: 20px;
    margin: 0 0 0 1.5em;/*上にスペース作る*/
    text-align: left;   /* ←これで左揃えに */
  }
  
  ol {
    list-style: decimal;
    padding-left: 1.5rem;  /* 数字の位置が変な場合に整える */
    margin: 0 0 0 1.5em;
    text-align: left;   /* ←これで左揃えに */
  }

  h1, h2 {
    margin-top: 30px;
  }

  .h1-italic{
    font-size: 32px;
    font-style: italic;
  }
  
  h2 {
    font-size: 1.2em;
  }
  .title-line {
    position: relative;
    padding-bottom: 10px;   /* 文字と線の間 */
    font-size: 32px;
    font-weight: bold;
  }
  
  .title-line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;            /* 線の太さ */
    background-color: #0d1b2a; /* 線の色 */
    transform: translateY(4px); /* 必要なら微調整 */
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .body-wrap{
    padding: 32px 0 64px 0;/* 上右下左 */
    background-color: #54B1E5;
  }
  
  .content {
    width: 100%;/* 横幅いっぱいに広げる */
    max-width: 600px;/* 最大の横幅指定 */
    margin: 0 auto;/* 上下のマージンは0左右はautoで要素を中央へ */
    padding: 16px;
    background-color: #fff;
  }

  .a{
    color: #3F82A8;
  }

  a:hover {/*疑似クラスって言うらしい、hoverの時の*/
    text-decoration: none;/*hover時下線を非表示*/
  }

  .heading-margin {/*余白を調整*/
    margin-top: 32px;/*right右、bottom下、left左*/
  }

  .ulol-box{
    width: 100%;/*横いっぱい*/
    max-width: 300px;/*最大の横幅は300px*/
    margin: 0 auto;/*上下の余白なし、左右は自動設定で中央寄せ*/
    padding: 8px;
    background-color: #E1F0F9;
  }

  .ulol-box-margin{
    margin-top: 16px;
  }

/*以下ハンバーガーメニュー用*/
  /* ページ全体をスムーズスクロールに */
  html { scroll-behavior: smooth; }

  /* 固定ヘッダ分のズレを防ぐ（見出しの上に余白を確保）*/
  h2 { scroll-margin-top: 80px; }

  /* ---- ハンバーガー ---- */
  .site-header {
    position: sticky;  /* 上部に固定 */
    top: 0;
    z-index: 1000;
  }

  /* 右上のボタン */
  .hamburger{
    position: fixed;
    top: 16px;
    right: 16px;
    width: 42px; height: 42px;
    border: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 1100;
  }
  .hamburger span{
    display: block;
    width: 22px; height: 2px;
    background: #111;
    margin: 3px 0;
    transition: transform .25s, opacity .25s;
  }

  /* 開いた時の×印アニメ */
  .nav-open .hamburger span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
  .nav-open .hamburger span:nth-child(2){ opacity: 0; }
  .nav-open .hamburger span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

  /* ---- ドロワー本体 ---- */
  .nav-drawer{
    position: fixed;
    top: 0; right: 0;
    width: 260px; height: 100dvh;
    background: #fff;
    box-shadow: -8px 0 20px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: transform .25s ease;
    padding: 80px 20px 20px; /* 上はボタンの高さ分空ける */
    z-index: 1050;
  }
  .nav-drawer ul{ list-style: none; padding: 0; margin: 0; }
  .nav-drawer li{ margin: 12px 0; }
  .nav-drawer a{
    display: block;
    font-size: 18px;
    text-decoration: none;
    color: #111;
    padding: 10px 8px;
    border-radius: 8px;
  }
  .nav-drawer a:hover{ background: #f2f6ff; }

  /* 開いた状態 */
  .nav-open .nav-drawer{ transform: translateX(0); }
  .nav-open { overflow: hidden; } /* 背景のスクロールを止める */

  /* 背景の半透明幕 */
  .backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.25);
    z-index: 1040;
    backdrop-filter: blur(1px);
  }
  .nav-open .backdrop{ display: block; }

