/* ========================================== */
/* === 1つ目の <style> ブロック === */
/* ========================================== */
.fs-c-heading {
  display: none;
}
@media screen and (max-width: 768px) {
  .fs-l-main {
    padding-left: 0;
    padding-right: 0;
  }
  .sp-container-none {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .sp-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .conceptB .conceptB__textWrap .sp-text--center {
    text-align: center!important;
  }
}

/* ========================================== */
/* === 2つ目の <style> ブロック === */
/* ========================================== */
body {
    font-family: sans-serif;
    margin: 16px;
    line-height: 1.6;
  }

  /* リンクの装飾を完全に無効化 */
  a {
    color: inherit;       /* 親要素の色を継承 */
    text-decoration: none; /* 下線を削除 */
  }
  a:hover {
    text-decoration: none; /* ホバー時も装飾なし */
  }

  .hidden {
    display: none;
  }
  .hidden:target {
    display: block;
    margin-top: 16px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  /* 閉じるボタンも装飾をシンプルに */
  .close-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: transparent; /* 背景なし */
    color: inherit;          /* 親要素の色を継承 */
    border: none;            /* 枠線なし */
    border-radius: 0;        /* 角丸なし */
    text-decoration: none;   /* 下線なし */
    font-size: 16px;
    cursor: pointer;
  }
  .close-btn:hover {
    background: transparent; /* ホバー時も変化なし */
  }