@charset "utf-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Nunito:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Grand+Hotel&family=Rampart+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap");

/* =========================================================
 * ★重要：全体に word-break/white-space を強制すると
 * ボタン等が「1文字ずつ縦並び」になりやすいので、
 * “文章ブロックだけ”折り返し許可に変更します。
 * =======================================================*/
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* 文章系だけ折り返しOK（UIパーツに波及させない） */
body,
p,
li,
dd,
dt,
td,
th {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
}

/* ボタン/バッジ/ラベルなど“UIパーツ”は折り返さない */
button,
a,
.apply-req,
.apply-label,
.apply-btn,
.apply-btn-sub,
.line-apply__badge,
.line-apply__label,
.line-apply__btn,
.line-apply__btnIcon,
.line-apply__btnText,
h1,
h2,
.apply-title,
.line-apply__title {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

h1 {
  font-size: 0.7rem;
  margin: 0px auto 0px auto;
  padding: 5px 8px;
  width: 100%;
  text-align: left;
  font-weight: normal;
  color: #000;
  background: #d4f5fd;
  text-shadow: 0 1px 3px #fff;
}

h2 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: normal;
  line-height: 1.9rem;
}

section {
  margin: 0px auto;
  background: #ffffff;
  width: 100%;
  max-width: 1080px;
}

section img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* =========================================================
 * パンくずリスト（矢印タブ型＋横スクロール）
 * ======================================================= */

/* 外側ラッパー：ここが横スクロールする */
nav[aria-label="パンくずリスト"] {
  width: 100%;
  margin: 0 auto;
  margin-top: -7px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0.8rem !important;
  overflow-x: auto; /* 横スクロール許可 */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* パンくず本体：矢印タブを横一列に並べる */
#breadcrumb {
  display: inline-flex;
  flex-wrap: nowrap; /* 折り返さない */
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各タブ共通 */
#breadcrumb li {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;

  padding: 6px 18px 6px 22px; /* 左少し広め（テキスト用） */
  background: #eee;
  color: #555;
  white-space: nowrap;
}

/* 1つ目だけ左の余白を少し詰める */
#breadcrumb li:first-child {
  padding-left: 16px;
}

/* 矢印部分（右側の▶になる三角形） */
#breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px; /* 次のタブと自然に重なるように調整 */
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 12px solid #eee;
  z-index: 2;
}

/* 重なり用の“切り欠き”で段差を自然に */
#breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 12px solid #f4f4f4; /* 背景を少し暗めにして境界にする */
}

/* リンク */
#breadcrumb li a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.15s ease;
}

/* ホバー時：少しだけ強調（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  #breadcrumb li:hover {
    background: rgba(255, 255, 255, 1);
  }
  #breadcrumb li:hover::after {
    border-left-color: rgba(255, 255, 255, 1);
  }
  #breadcrumb li a:hover {
    color: var(--primary-color);
  }
}

/* 最後の要素（現在ページ）は少し濃い色で矢印無し */
#breadcrumb li:last-child {
  background: #ffecc4;
  color: #333;
  font-weight: 600;
}
#breadcrumb li:last-child::after {
  border-left-color: transparent; /* 矢印消し */
}

/* スマホ：少しだけ詰める */
@media (max-width: 768px) {
  nav[aria-label="パンくずリスト"] {
    padding: 6px 6px;
    margin: 0;
    margin-top: -7px;
  }
  #breadcrumb li {
    padding: 6px 14px 6px 18px;
  }
  #breadcrumb li:first-child {
    padding-left: 14px;
  }
}
.recruit-footer {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  width: 100%;
  background: #fcf9f9;
  padding: 16px;
  line-height: 1.3rem;
}
.recruit-footer p {
  font-size: 0.7rem;
}
.recruit-footer a {
  font-size: 0.7rem;
  text-decoration: none;
  color: #000;
}

/* =========================
応募フォーム（CSS）
・PC: max 1200px
・SP: 1カラムで見やすく
========================= */

.apply-wrap {
  width: 100%;
  padding: 28px 14px 40px;
}

.apply-card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.apply-head {
  padding: 22px 20px 16px;
  background: linear-gradient(
      135deg,
      rgba(30, 136, 229, 0.14),
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.apply-title {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: #111;
}

.apply-sub {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}

.apply-form {
  padding: 18px 20px 24px;
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-field--full {
  grid-column: 1 / -1;
}

.apply-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply-req {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff;
  background: #e53935;
  line-height: 1;
}

.apply-input,
.apply-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  color: #111;
  outline: none;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s,
    background 0.15s;
}

.apply-textarea {
  resize: vertical;
  min-height: 120px;
}

.apply-input::placeholder,
.apply-textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.apply-input:focus,
.apply-textarea:focus {
  border-color: rgba(30, 136, 229, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.14);
  transform: translateY(-1px);
}

.apply-help {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.apply-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.apply-btn {
  width: min(520px, 100%);
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 14px 16px 12px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  box-shadow: 0 14px 28px rgba(21, 101, 192, 0.26);
  transition: transform 0.12s, box-shadow 0.12s, filter 0.12s;
}

.apply-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(21, 101, 192, 0.3);
  filter: brightness(1.02);
}

.apply-btn:active {
  transform: translateY(0px);
  box-shadow: 0 10px 20px rgba(21, 101, 192, 0.22);
}

.apply-btn-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.apply-note {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

/* ---- SP最適化 ---- */
@media (max-width: 860px) {
  .apply-form {
    padding: 16px 14px 22px;
  }
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .apply-title {
    font-size: 1.35rem;
  }
  .apply-card {
    border-radius: 16px;
  }
}

/* ---- iOSのnumberの見た目調整（任意） ---- */
.apply-input[type="number"]::-webkit-outer-spin-button,
.apply-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* =========================
LINE応募フォーム（ブロックCSS）
========================= */

.line-apply {
  padding: 22px 12px;
}

.line-apply__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.line-apply__head {
  margin-bottom: 14px;
}

.line-apply__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #0f5132;
  background: rgba(6, 199, 85, 0.12);
  border: 1px solid rgba(6, 199, 85, 0.28);
}

.line-apply__title {
  margin: 10px 8px 6px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.line-apply__sub {
  margin: 0 8px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.line-apply__card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.line-apply__form {
  padding: 18px;
}

.line-apply__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.line-apply__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.line-apply__field--full {
  grid-column: 1 / -1;
}

.line-apply__label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1f1f1f;
}

.line-apply__input,
.line-apply__textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fbfbfb;
  padding: 12px 12px;
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.18s ease;
}

.line-apply__textarea {
  resize: vertical;
  min-height: 120px;
}

.line-apply__input:focus,
.line-apply__textarea:focus {
  border-color: rgba(6, 199, 85, 0.55);
  box-shadow: 0 0 0 4px rgba(6, 199, 85, 0.14);
}

.line-apply__actions {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.line-apply__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  background: #06c755; /* LINEグリーン */
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(6, 199, 85, 0.28);
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
  user-select: none;
}

.line-apply__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 40px rgba(6, 199, 85, 0.34);
}

.line-apply__btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.22);
}

.line-apply__btnIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 1000;
}

.line-apply__btnText {
  font-size: 1.05rem;
}

.line-apply__note {
  margin: 30px 2px 0;
  color: #666;
  font-size: 0.86rem;
  line-height: 1.55;
}

/* スマホ最適化 */
@media (max-width: 720px) {
  .line-apply__form {
    padding: 14px;
  }
  .line-apply__grid {
    grid-template-columns: 1fr;
  }
  .line-apply__btnText {
    font-size: 1rem;
  }
}

/* =========================================================
 * ★追加：メール応募フォームも「LINE応募フォームのヘッダー/カード」に合わせる
 *  - HTML側で <section class="line-apply line-apply--mail"> にすればOK
 * =======================================================*/
.line-apply--mail .line-apply__badge {
  color: #0d47a1;
  background: rgba(30, 136, 229, 0.12);
  border: 1px solid rgba(30, 136, 229, 0.28);
}
.line-apply--mail .line-apply__input:focus,
.line-apply--mail .line-apply__textarea:focus {
  border-color: rgba(30, 136, 229, 0.55);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.14);
}
.line-apply--mail .line-apply__btn {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  box-shadow: 0 14px 30px rgba(21, 101, 192, 0.26);
}
.line-apply--mail .line-apply__btn:hover {
  box-shadow: 0 18px 40px rgba(21, 101, 192, 0.3);
}
.line-apply--mail .line-apply__btnIcon {
  background: rgba(255, 255, 255, 0.18);
}

/* =========================
募集要項（#FDF4E9 ベース）
メール応募フォームと色被りしない配色
========================= */
.recruit-spec {
  padding: 22px 12px;
}

.recruit-spec__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.recruit-spec__head {
  margin-bottom: 14px;
}

.recruit-spec__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #8a5a2b;
  background: rgba(253, 244, 233, 0.9);
  border: 1px solid rgba(200, 160, 120, 0.35);
}

.recruit-spec__title {
  margin: 10px 8px 6px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #3b2a1a;
}

.recruit-spec__sub {
  margin: 0 8px 0;
  color: #6b5a4a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.recruit-spec__card {
  border-radius: 18px;
  background: #fffaf4;
  border: 1px solid rgba(200, 160, 120, 0.35);
  box-shadow: 0 16px 40px rgba(120, 80, 40, 0.12);
  overflow: hidden;
}

.recruit-spec__list {
  display: grid;
}

.recruit-spec__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid rgba(200, 160, 120, 0.25);
}

.recruit-spec__row:first-child {
  border-top: none;
}

.recruit-spec__th {
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #5a3a1a;
  background: linear-gradient(180deg, #fdf4e9, rgba(253, 244, 233, 0.6));
}

.recruit-spec__td {
  padding: 12px 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #3a2a1a;
  background: #fff;
  border-left: 1px solid rgba(200, 160, 120, 0.25);
  word-break: break-word;
}

.recruit-spec__row--full .recruit-spec__td {
  background: #fffdf9;
}

.recruit-spec__link {
  color: #a86a2c;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed rgba(168, 106, 44, 0.55);
}

.recruit-spec__link:hover {
  opacity: 0.85;
}

.recruit-spec__muted {
  color: #8a7a6a;
}

/* ---- スマホ最適化 ---- */
@media (max-width: 720px) {
  .recruit-spec__row {
    grid-template-columns: 1fr;
  }

  .recruit-spec__td {
    border-left: none;
    border-top: 1px solid rgba(200, 160, 120, 0.25);
  }

  .recruit-spec__th {
    padding: 10px 12px;
  }

  .recruit-spec__td {
    padding: 10px 12px;
  }
}

/* =========================
今すぐ応募CTA（LP用 汎用）
========================= */

.oubo-cta {
  width: 100%;
  padding: 32px 16px;
  display: flex;
  justify-content: center;
}

.oubo-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: min(720px, 100%);
  padding: 20px 18px 18px;
  border-radius: 18px;

  text-decoration: none;
  text-align: center;

  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;

  /* どんなサイトにも合う王道グラデーション */
  background: linear-gradient(135deg, #ff7a7a, #ff9a3c);

  box-shadow: 0 18px 36px rgba(255, 122, 122, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

/* サブテキスト */
.oubo-cta-sub {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

/* PC hover */
@media (hover: hover) and (pointer: fine) {
  .oubo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 50px rgba(255, 122, 122, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.04);
  }
}

/* 押下時 */
.oubo-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 14px 26px rgba(255, 122, 122, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .oubo-cta-btn {
    font-size: 1.25rem;
    border-radius: 16px;
  }
}

/* =========================
ページ上部に戻るボタン
========================= */

/* 右下固定の「上へ」ボタン（常に前面に出す） */
#pageTopBtn {
  position: fixed;
  right: 11px;
  bottom: 11px;
  z-index: 99999;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.72);
  color: #fff;
  font-size: 22px;
  line-height: 52px;
  text-align: center;
  cursor: pointer;

  /* 初期は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

/* 表示状態 */
#pageTopBtn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ホバー（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  #pageTopBtn:hover {
    filter: brightness(1.1);
  }
}

/* =========================================================
 * 確認モーダル（メール応募フォーム用）
 *  - HTML側: #mailConfirmModal .rlb 〜 を想定
 * =======================================================*/

/* モーダル表示中は背面スクロールを止める */
body.is-rlb-open {
  overflow: hidden;
}

/* 画面全体ラッパー */
.rlb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* aria-hidden で制御 */
}

/* aria-hidden="false" のとき表示 */
.rlb[aria-hidden="false"] {
  display: block;
}

/* 背景（暗幕） */
.rlb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* パネル本体（中央カード） */
.rlb__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(720px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;

  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ヘッダー */
.rlb__head {
  position: sticky;
  top: 0;
  z-index: 2;

  padding: 16px 16px 12px;
  background: linear-gradient(
      135deg,
      rgba(30, 136, 229, 0.1),
      rgba(0, 0, 0, 0) 55%
    ),
    #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rlb__badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #0b3d73;
  background: rgba(30, 136, 229, 0.12);
  border: 1px solid rgba(30, 136, 229, 0.22);
}

.rlb__title {
  margin: 10px 0 0;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 900;
  color: #111;
}

/* 閉じるボタン */
.rlb__close {
  position: absolute;
  right: 10px;
  top: 10px;

  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;

  font-size: 22px;
  line-height: 1;
  color: #333;
}

/* 本文 */
.rlb__body {
  padding: 14px 16px 12px;
}

.rlb__dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.rlb__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.rlb__row dt {
  font-weight: 900;
  color: #111;
  font-size: 0.92rem;
}

.rlb__row dd {
  margin: 0;
  color: #222;
  font-size: 0.95rem;
}

/* 長文（経験欄） */
.rlb__pre {
  white-space: pre-wrap; /* 改行保持 */
  word-break: break-word;
}

/* 注意文 */
.rlb__note {
  margin: 12px 2px 0;
  font-size: 0.86rem;
  color: #666;
  line-height: 1.6;
}

/* フッター（ボタン列） */
.rlb__foot {
  position: sticky;
  bottom: 0;
  z-index: 2;

  display: flex;
  gap: 10px;
  justify-content: flex-end;

  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rlb__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
}

/* 修正する */
.rlb__btn--ghost {
  background: #fff;
  color: #333;
  border-color: rgba(0, 0, 0, 0.18);
}

/* 送信する */
.rlb__btn--primary {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 14px 28px rgba(21, 101, 192, 0.22);
}

/* 送信中 disabled */
.rlb__btn:disabled {
  opacity: 0.6;
  cursor: default;
}

/* SP最適化 */
@media (max-width: 720px) {
  .rlb__row {
    grid-template-columns: 1fr;
  }
  .rlb__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .rlb__btn {
    width: 100%;
  }
}
