/* =========================================================
   SPメニュー（手書き版）
   ========================================================= */

/* SR only */
.screen-reader-text{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  border:0;
}

/* ハンバーガー */
.sp-menu-btn{
  display:none;
  border:0;
  background:transparent;
  padding:12px;
}
.sp-menu-btn__lines{
  display:inline-block;
  width:28px;
  height:18px;
  position:relative;
}
.sp-menu-btn__lines::before,
.sp-menu-btn__lines::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#2a2a2a;
}
.sp-menu-btn__lines::before{ top:3px; }
.sp-menu-btn__lines::after{ bottom:3px; }

@media (max-width:800px){
  .sp-menu-btn{ display:inline-flex; align-items:center; justify-content:center; }
}

/* オーバーレイ */
.sp-menu.is-open{ display:block; }

.sp-menu__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.12);
}

.sp-menu__panel{
  position:absolute;
  inset:0;
  background:#fff;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

/* 上部（ロゴ＋閉じる） */
.sp-menu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid #d9e6ee; /* ヘッダー下の薄い線っぽく */
}
.sp-menu__brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#111;
}
.sp-menu__close{
  border:0;
  background:transparent;
  font-size:28px;
  line-height:1;
  padding:8px;
  cursor:pointer;
}

/* 本文 */
.sp-menu__body{
  padding:28px 28px 40px; /* スクショのゆったり感 */
}

/* セクション */
.sp-menu-section + .sp-menu-section{
  margin-top:36px;
}
.sp-menu-section__title{
  font-size:18px;
  font-weight:600;
  color:#111;
  margin:0 0 14px;
}
.sp-menu-link{
  color:#111;
  text-decoration:none;
}
.sp-menu-link--root{
  font-weight:600;
}

/* リスト */
.sp-menu-list{
  list-style:none;
  padding:0;
  margin:0;
}
.sp-menu-list__item{
  padding:8px 0;
}

/* 子（・付き） */
.sp-menu-list__item.is-child{
  position:relative;
  padding-left:18px;
}
.sp-menu-list__item.is-child::before{
  content:"・";
  position:absolute;
  left:0;
  top:8px;
  color:#111;
}