@charset "UTF-8";
body {
  margin-top: 30px;
  margin-bottom: 30px;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
}

.contents {
  /* 中央寄せの基本形 */
  width: min(1200px, 100%); /* = 900pxを上限、画面が狭い時は100% */
  margin: 20px auto;
  padding: 0 5%; /* 端で潰れないよう少し内側に余白 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.titles {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .titles {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .titles {
    width: 100%;
  }
}

.title1 {
  padding-left: 5px;
  border-bottom: 2px solid #f5810e;
}

.title2 {
  padding-left: 5px;
  border-bottom: 2px dotted #f5810e;
}

.title3 {
  padding-left: 5px;
  background-color: #f5810e;
}

.title4 {
  padding-left: 5px;
  background-color: #f5810e;
  color: white;
}

.title5 {
  padding-left: 5px;
  border-left: 2px solid #f5810e;
}

.title6 {
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.title6::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #fabe00;
  position: absolute;
  left: 0;
  bottom: 0.2em;
  z-index: -1;
}

.title7 {
  line-height: 1.6;
}
.title7-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.title7 .mark {
  display: inline;
  background-color: #fabe00;
  padding: 0.3em 0.4em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.title8 {
  padding-left: 5px;
  /* 吹き出し見出し（見出しパターン8） */
  /* 調整しやすいようにCSS変数でまとめてます */
  --pad-x: 24px; /* 左右余白 */
  --pad-y: 8px; /* 上下余白 */
  --tail-w: 10px; /* しっぽの横半分（=左右に広がる幅） */
  --tail-h: 8px; /* しっぽの高さ */
  --tail-left: 40px; /* 左端からのしっぽ位置（パディング込みにしたければ var(--pad-x) に） */
  position: relative;
  display: block;
  width: 100%; /* 親の横幅いっぱい（画像っぽく） */
  padding: var(--pad-y) var(--pad-x);
  background: #fabe00;
  color: #333;
  font-weight: 700;
  line-height: 1.4;
  /* 下向きの三角しっぽ */
}
.title8::after {
  content: "";
  position: absolute;
  top: 100%; /* ボックスの下辺に接する */
  left: var(--tail-left); /* しっぽの水平位置 */
  border-style: solid;
  border-width: var(--tail-h) var(--tail-w) 0 var(--tail-w);
  border-color: #fabe00 transparent transparent transparent;
}

.title9 {
  padding-left: 5px;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}
.title9::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 60px;
  background-color: #f5810e;
  z-index: 2;
}
.title9::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fabe00;
  z-index: 1;
}

.title10 {
  padding-left: 5px;
  display: inline;
  position: relative;
}
.title10::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 50%;
  width: 2px;
  background-color: #fabe00;
}

.title11 {
  padding-left: 5px;
  text-align: center;
}
.title11 .title11__text {
  display: inline;
  position: relative;
  padding-bottom: 10px;
}
.title11 .title11__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40%;
  height: 5px;
  background-color: #fabe00;
}

.title12 {
  padding-left: 5px;
  position: relative;
  display: inline;
  padding-left: 20px;
}
.title12::after {
  content: "";
  background: url("../img/check.png") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.title13 {
  padding-left: 5px;
  position: relative;
  display: inline;
  padding-right: 20px;
  margin-right: auto;
}
.title13::after {
  content: "";
  background: url("../img/glass.png") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

/* 見出しパターン14：左右に斜めスラッシュ */
.title14 {
  /* 調整用のカスタムプロパティ */
  --len: 46px; /* スラッシュの長さ */
  --thick: 4px; /* スラッシュの太さ */
  --angle: 30deg; /* 傾き（お好みで） */
  --gap: clamp(12px, 8vw, 120px); /* コンテンツ端からのオフセット */
  position: relative;
  display: block; /* 画像のように横いっぱいにしたい場合 */
  width: 100%;
  text-align: center;
  padding: 24px calc(var(--len) + var(--gap)); /* 文字に被らない余白を確保 */
  color: #333;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  /* 左の「 \ 」 */
  /* 右の「 / 」 */
  /* 文字幅きっちり（親幅いっぱいではなくテキスト幅だけ）にしたいとき */
  /* 角度や長さを画面幅で少し弱めたい場合（任意） */
}
@media screen and (max-width: 767px) {
  .title14 {
    --len: 46px;
    --thick: 4px;
    --gap: clamp(40px, 10vw, 200px);
    --angle: 30deg;
    padding: 20px calc(var(--len) + var(--gap));
  }
}
.title14::before, .title14::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--thick);
  height: var(--len);
  background: #fabe00;
  border-radius: 999px; /* 端を丸く */
  -webkit-transform-origin: center;
          transform-origin: center;
}
.title14::before {
  left: var(--gap);
  -webkit-transform: translateY(-50%) rotate(calc(-1 * var(--angle)));
          transform: translateY(-50%) rotate(calc(-1 * var(--angle)));
}
.title14::after {
  right: var(--gap);
  -webkit-transform: translateY(-50%) rotate(var(--angle));
          transform: translateY(-50%) rotate(var(--angle));
}
.title14 .title14--tight {
  display: inline-block; /* ほかは同じでOK。スラッシュは文字の左右に寄ります */
}

/* 見出しパターン15：左右に横線 */
.title15 {
  --line: #f4b400; /* 線の色 */
  --thick: 3px; /* 線の太さ */
  --gap: 15px; /* 文字と線の間隔 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap);
  width: 100%; /* 親幅いっぱいに */
  font-weight: 800;
  text-align: center;
}
.title15::before, .title15::after {
  content: "";
  height: var(--thick);
  background: var(--line);
  border-radius: 999px; /* 端を少し丸く */
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; /* ここで左右の線を“均等に伸ばす” */
}

/* ★線の長さを固定にしたい時（例：160px） */
.title15--fixed::before,
.title15--fixed::after {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
}

.buttons {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .buttons {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .buttons {
    width: 100%;
  }
}

/* 共通ボタン：ここに挙動とデフォルト値を集約 */
.btn {
  /* 見た目の変数（各バリアントで上書き） */
  --bg: #fabe00;
  --fg: #111;
  --bdc: transparent;
  --bdw: 0px;
  --radius: 6px;
  /* 影（同型で重ねるためのパラメータ） */
  --sh-x: 0px;
  --sh-y: 0px;
  --sh-blur: 0px;
  --sh-spread: 0px;
  --sh-color: transparent; /* 透明なら=影なし */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  width: 230px;
  height: 47px;
  padding: 8px 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  background: var(--bg);
  border: var(--bdw) solid var(--bdc);
  border-radius: var(--radius);
  -webkit-box-shadow: var(--sh-x) var(--sh-y) var(--sh-blur) var(--sh-spread) var(--sh-color);
          box-shadow: var(--sh-x) var(--sh-y) var(--sh-blur) var(--sh-spread) var(--sh-color);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
}

/* Hover：2px上げる。影は同型で +2px を積む。影が無い場合は 5% 明るく */
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    /* 影2段（透明なら見えないのでOK） */
    -webkit-box-shadow: var(--sh-x) var(--sh-y) var(--sh-blur) var(--sh-spread) var(--sh-color), var(--sh-x) calc(var(--sh-y) + 2px) var(--sh-blur) var(--sh-spread) var(--sh-color);
            box-shadow: var(--sh-x) var(--sh-y) var(--sh-blur) var(--sh-spread) var(--sh-color), var(--sh-x) calc(var(--sh-y) + 2px) var(--sh-blur) var(--sh-spread) var(--sh-color);
    /* 影なし=色変化、影あり=後で個別に無効化 */
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
}
/* Active：影ゼロ＋元の影量ぶんだけ下げる。
     影なしは 5% 暗く。影ありは後で個別に暗くしない設定に */
.btn:active,
.btn[aria-pressed=true],
.btn.is-active {
  -webkit-transform: translateY(var(--sh-y));
          transform: translateY(var(--sh-y));
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}

/* アクセシビリティ */
.btn:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--fg) 40%, white);
  outline-offset: 2px;
}

.btn:disabled,
.btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========== バリアント（見た目の差分だけ） ========== */
/* 幅だけ小さめ */
.btn1 {
  width: 154px;
}

/* 右矢印 */
.btn2 {
  position: relative;
  padding: 14px 56px 14px 20px;
  text-decoration: none;
}
.btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* テキスト左寄せ・左余白あり／矢印はテキスト直後で左向き・縦中央 */
.btn3 {
  --arrow-w: 8px; /* 矢印の幅 */
  --arrow-h: 12px; /* 矢印の高さ */
  --arrow-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦中央 */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /* 左寄せ */
  gap: 0; /* テキストに“くっつける” */
  text-align: left;
  border-radius: 24px;
  /* 左に少し余白（必要なら値を調整） */
  padding-left: 20px;
  padding-right: 20px;
}
.btn3 p {
  font-weight: inherit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn3 p::after {
  content: "";
  width: var(--arrow-w);
  height: var(--arrow-h);
  background: var(--arrow-color);
  /* 左向き三角（▶ の反転） */
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--arrow-w);
          flex: 0 0 var(--arrow-w); /* 伸縮させない */
  /* “くっつける”ので余白は付けない（必要なら margin-left: 2px 等） */
  margin-left: 3px;
}

/* 下に太めのオフセット影（影=あり） */
.btn4 {
  --sh-y: 3px;
  --sh-color: rgb(224.5, 170.62, 0);
}

/* 影ありは色変化を無効化して“影で表現” */
@media (hover: hover) and (pointer: fine) {
  .btn4:hover {
    -webkit-filter: none;
            filter: none;
  }
}
.btn4:active,
.btn4[aria-pressed=true],
.btn4.is-active {
  -webkit-filter: none;
          filter: none;
}

/* 大きめのドロップシャドウ（影=あり） */
.btn5 {
  --sh-y: 4px;
  --sh-blur: 24px;
  --sh-spread: -8px;
  --sh-color: rgba(0, 0, 0, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .btn5:hover {
    -webkit-filter: none;
            filter: none;
  }
}
.btn5:active,
.btn5[aria-pressed=true],
.btn5.is-active {
  -webkit-filter: none;
          filter: none;
}

/* グラデ（影=なし） */
.btn6 {
  --bg: linear-gradient(90deg, #f5810e 0%, #fabe00 100%);
  --fg: #fff;
}

/* 親背景が濃色のゴースト（7,8） */
.button7,
.button8 {
  height: 80px;
  width: 100%;
  background: #f5810e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn7,
.btn8 {
  background: transparent;
  color: #fff;
  --bdw: 2px;
  --bdc: currentColor;
  width: 230px;
  height: 47px;
}

.btn7 {
  text-align: left;
  padding-left: 20px;
}

.btn8 {
  text-align: center;
  padding-left: 20px;
  position: relative;
  display: inline;
}
.btn8::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 50px;
  height: 2px;
  background-color: currentColor;
}

/* 円形 */
.btn9 {
  width: 124px;
  height: 124px;
  min-width: 124px;
  border-radius: 50%;
  padding: 0;
  /* 影は別系統（ここでは“影なし”扱いにしておく） */
  -webkit-box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.13);
          box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.13);
}

/* 2つ並び（SPでは縦並び） */
.button10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .button10 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* 下に3pxのオフセット影（影=あり） */
.btn10 {
  width: 200px;
  --sh-y: 3px;
  --sh-color: rgb(224.5, 170.62, 0);
}

@media (hover: hover) and (pointer: fine) {
  .btn10:hover {
    -webkit-filter: none;
            filter: none;
  }
}
.btn10:active,
.btn10[aria-pressed=true],
.btn10.is-active {
  -webkit-filter: none;
          filter: none;
}

/* 色違い：緑（影色も“緑の5%暗め”に修正） */
.is-green {
  --bg: green;
  --fg: #fff;
  --sh-color: rgb(0, 102.5, 0);
}