@charset "UTF-8";
.c-title {
  margin: 0 0 40px 0;
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(13px, 1.4vw, 16px);
  color: #EB5C1A;
}
.c-title--lined {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  text-align: center;
  letter-spacing: 0.08em;
}
.c-title--lined::before, .c-title--lined::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  background-color: #EB5C1A;
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
}
.c-title--lined > span {
  display: inline-block;
  padding: 0 8px;
  white-space: nowrap;
  font-size: 28px;
}

/* ダーク背景に乗せるバリエーション（必要なら） */
.c-title--lined.is-invert {
  color: #fff;
}
.c-title--lined.is-invert::before, .c-title--lined.is-invert::after {
  border-top-color: rgba(255, 255, 255, 0.4);
}

/* PCでは改行させない／SP(<=960px)では改行させる */
br.sp-br {
  display: none;
  /* PC: 非表示（=改行しない） */
}

@media (max-width: 960px) {
  br.sp-br {
    display: inline;
    /* SP: 表示（=改行する） */
  }
}
/* ================= Base ================= */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #1D242D;
  line-height: 1.75;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #00BE4D;
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

:focus-visible {
  outline: 2px solid #00BE4D;
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: clamp(30px, 2vw, 80px);
}

/* ================= Buttons ================= */
.btn {
  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.5rem;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.4rem;
  border: 2px solid transparent;
  -webkit-transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-filter 0.18s ease;
  transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-filter 0.18s ease;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, -webkit-transform 0.18s ease, -webkit-filter 0.18s ease;
}
.btn--primary {
  background: #00BE4D;
  color: #fff;
}
.btn--outline {
  color: #00BE4D;
  border-color: #00BE4D;
  background: transparent;
}
.btn--light {
  background: #fff;
  color: #00BE4D;
  border-color: #fff;
  width: 200px;
  margin: 0 auto;
}
.btn--tel {
  background: #00BE4D;
  color: #111;
}
.btn--round {
  border-radius: 999px;
  padding: 1rem 1.6rem;
}
.btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-filter: brightness(1.03);
          filter: brightness(1.03);
}

/* ============== Hero ============== */
.hero {
  position: relative;
  /* SPはパネルを画像に“食い込ませる”のでクリップしない */
  overflow: visible;
  /* 画像（モバイル基準） */
  /* テキスト：SPは通常フロー */
  /* ---- PCだけ高さ固定＋重ね配置＆左右ガター固定 ---- */
}
.hero__bg {
  display: block;
  line-height: 0;
}
.hero__bg img {
  display: block;
  width: 100%;
  height: auto;
  /* ← SPは自然比率 */
  -o-object-fit: contain;
     object-fit: contain;
  /* トリミングなし */
  vertical-align: bottom;
  /* 画像下の隙間対策 */
}
.hero__copy {
  position: static;
  -webkit-transform: none;
          transform: none;
  width: auto;
  padding: 16px;
  background: #fff;
  border-radius: 6px;
  color: #000;
  z-index: 1;
}
.hero__title {
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-size: clamp(40px, 6.2vw, 44px);
  margin: 0 0 0.6em;
  color: #EB5C1A;
}
.hero__lead {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 20px;
}
@media (min-width: 961px) {
  .hero {
    /* 最大幅と左右パディング（ガター）を計算 */
    --hero-cap: 1440px;
    /* 画面上限幅（必要なら変更） */
    --side-pad: max(24px, calc(50vw - (var(--hero-cap) / 2)));
    /* 画面が広いほど広がる左右余白 */
    overflow: clip;
    padding-inline: var(--side-pad);
    /* 画像の見え方はフル幅、テキストの基準だけ左右に余白を作る */
  }
  .hero__bg img {
    height: clamp(420px, 65vh, 560px);
    /* ← PCでのみ高さ固定 */
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__copy {
    position: absolute;
    inset-block-start: 50%;
    /* 画像左端 (= side-pad) から一定距離だけ内側へ */
    inset-inline-start: calc(var(--side-pad) + 24px);
    /* 数値は微調整可 */
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: clamp(260px, 36vw, 520px);
    padding: clamp(16px, 3.2vw, 32px) clamp(18px, 3.6vw, 30px);
    margin: 0;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(32px, 6.2vw, 44px);
  }
}

/* ====== intro FV直下：導入セクション ====== */
.intro {
  background: #FFF0E9;
  /* 淡いブルー */
  padding: clamp(28px, 5vw, 56px) 0;
  /* スマホ */
}
.intro__inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 4vw, 56px);
}
.intro__media img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.intro__title {
  margin: 0 0 0.8em;
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 3.2vw, 36px);
  color: #0b0f13;
}
.intro__text {
  margin: 0;
  font-size: clamp(16px, 2.1vw, 16px);
  line-height: 2;
  letter-spacing: 0.01em;
  color: #0b0f13;
}
@media (max-width: 960px) {
  .intro {
    /* 見出しの改行はSPでは自動折返しでOK */
  }
  .intro__inner {
    grid-template-columns: 1fr;
  }
  .intro .sp-br {
    display: none;
  }
}

.cta {
  background-color: #EB5C1A;
  padding: 60px 20px;
  color: #FFF;
  text-align: center;
}
.cta__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.cta__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.cta__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #FFF;
  margin: 12px auto 0;
}
.cta__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  background-color: #FFF;
  border-radius: 48px;
}
.cta__card {
  background-color: #FFF;
  color: #333;
  padding: 32px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.cta__card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 3px;
  height: 60%;
  background-color: #333;
  border-radius: 9999px;
}
.cta__caption {
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: bold;
}
.cta__lead {
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}
.cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 9999px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.cta__btn:hover {
  opacity: 0.8;
  color: #FFF;
}
.cta__btn--pink {
  background-color: #EB5C1A;
  color: #FFF;
}
.cta__btn--accent {
  background-color: #00BE4D;
  color: #FFF;
}
.cta__btn img {
  width: 30px;
  height: auto;
}
.cta__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #00BE4D;
  font-size: 28px;
  text-decoration: none;
  margin-bottom: 5px;
}
.cta__tel img {
  width: 20px;
  height: 20px;
}
.cta__tel-time {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 768px) {
  .cta {
    padding: 40px 16px;
  }
  .cta__title {
    font-size: clamp(22px, 3.2vw, 36px);
  }
  .cta__columns {
    background-color: #EB5C1A !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    background-color: transparent;
    border-radius: 48px;
  }
  .cta__card {
    padding: 24px 10px;
    position: relative;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 180px !important;
            flex: 1 1 180px !important;
  }
  .cta__card::before {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 9999px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .cta__card::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .cta__card:first-child::before {
    display: none;
  }
  .cta__card:not(:last-child)::after {
    display: none;
  }
  .cta__lead {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .cta__btn {
    width: 250px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 20px;
  }
  .cta__btn img {
    width: 24px;
  }
  .cta__tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.5rem;
  }
  .cta__tel img {
    width: 24px;
    height: 24px;
  }
  .cta__tel-time {
    margin-top: 0px;
  }
}

/* =========================
  テンポスホールディングスとは
========================= */
#tenpos-about {
  padding: 72px 0;
  background: #FFF;
  color: #1D242D;
}
@media (max-width: 767px) {
  #tenpos-about {
    padding: 48px 0;
  }
}

.tenpos-about {
  /* ---------- layout ---------- */
  /* ---------- heading ---------- */
  /* ---------- text ---------- */
  /* ---------- figure ---------- */
}
.tenpos-about__inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .tenpos-about__inner {
    width: min(1100px, 100% - 28px);
  }
}
.tenpos-about__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .tenpos-about__grid {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .tenpos-about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.tenpos-about__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.tenpos-about__bar {
  width: 6px;
  height: 44px;
  border-radius: 999px;
  background: #EB5C1A;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .tenpos-about__bar {
    height: 38px;
  }
}
.tenpos-about__title {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #1D242D;
}
.tenpos-about__lead {
  margin-bottom: 14px;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.7;
  color: #1D242D;
}
@media (max-width: 767px) {
  .tenpos-about__lead br {
    display: none;
  }
}
.tenpos-about__text {
  margin-bottom: 18px;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #4B5563;
}
@media (max-width: 767px) {
  .tenpos-about__text {
    font-size: 14px;
    line-height: 1.85;
  }
}
.tenpos-about__catch {
  margin-bottom: 10px;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  color: #1D242D;
}
.tenpos-about__big {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #1D242D;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.tenpos-about__big-strong {
  margin: 0 6px;
  font-size: clamp(28px, 2.2vw, 44px);
  font-weight: 900;
}
.tenpos-about__big-accent {
  margin: 0 6px;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  color: #EB5C1A;
}
.tenpos-about__figure {
  margin: 0;
  padding: 22px 22px 18px;
}
@media (max-width: 767px) {
  .tenpos-about__figure {
    padding: 16px;
    border-radius: 16px;
  }
}
.tenpos-about__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.tenpos-about__caption {
  margin-top: 12px;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: #EB5C1A;
}
@media (max-width: 767px) {
  .tenpos-about__caption {
    font-size: 12px;
  }
}

/* ============ 課題セクション ============ */
.issues {
  /* ▼ 三角の高さ（共通変数を使用） */
  --tri-h: var(--section-tri-h);
  position: relative;
  background: #5C5C5C;
  color: #111;
  overflow: visible;
  /* 三角を見せるため */
  /* ▼ 下向きの三角（背景と同じ色） */
  /* 吹き出し共通 */
  /* 吹き出し配置（PC） */
  /* 中央人物 */
  /* 雲なしテキスト */
  /* ===== SP：重なり＆縦積み修正 ===== */
}
.issues::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: var(--tri-h) solid #5C5C5C;
  pointer-events: none;
  z-index: 1;
}
.issues__inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  /* 三角ぶんだけ下パディングを差し引き */
  padding: clamp(36px, 6vw, 72px) 0 calc(clamp(56px, 8vw, 96px) - var(--tri-h));
}
.issues__title {
  margin: 0 0 clamp(24px, 4vw, 40px);
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  font-size: clamp(20px, 3.6vw, 32px);
}
.issues__stage {
  position: relative;
  min-height: clamp(300px, 48vw, 365px);
}
.issues__bubble {
  position: absolute;
  width: clamp(220px, 30vw, 340px);
  text-align: center;
  margin: 0;
}
.issues__bubble img {
  width: 100%;
  height: auto;
  display: block;
}
.issues__bubble p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  width: 80%;
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(13px, 2vw, 17px);
  color: #111;
}
.issues__bubble--lt {
  left: 30px;
  top: -30px;
}
.issues__bubble--lb {
  left: 8%;
  bottom: 0;
}
.issues__bubble--rt {
  right: 60px;
  top: 0;
}
.issues__illust {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: clamp(180px, 22vw, 260px);
  z-index: 2;
}
.issues__illust img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
          filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}
.issues__note {
  font-weight: bold;
  color: #fff;
}
.issues__note--l {
  position: absolute;
  top: 43%;
  left: 6%;
}
.issues__note--tr {
  position: absolute;
  top: -15%;
  right: -1%;
}
.issues__note--mr {
  position: absolute;
  top: 55%;
  right: 5%;
}
.issues__note--br {
  position: absolute;
  bottom: 16%;
  right: 11%;
}
.issues__note--bl {
  position: absolute;
  bottom: 16%;
  left: 10%;
}
@media (max-width: 960px) {
  .issues {
    /* 絶対配置解除 */
    /* 並び順 */
    /* 雲なしテキストは SP では非表示にする場合はここで調整 */
  }
  .issues__stage {
    display: grid;
    justify-items: center;
    gap: 18px;
  }
  .issues__bubble {
    position: relative;
    z-index: 3;
    /* 人物より前 */
    width: min(520px, 92%);
  }
  .issues__bubble img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  .issues__bubble p {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0;
    width: 80%;
    font-weight: 700;
    line-height: 1.6;
    font-size: clamp(13px, 4.5vw, 15px);
    color: #111;
    text-align: center;
    pointer-events: none;
  }
  .issues__illust {
    position: relative;
    -webkit-transform: none;
            transform: none;
    z-index: 1;
    width: min(220px, 46vw);
  }
  .issues__bubble--lt, .issues__bubble--lb, .issues__bubble--rt, .issues__bubble--rb, .issues__illust {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .issues__bubble--lt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .issues__bubble--rt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .issues__illust {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .issues__bubble--lb {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .issues__bubble--rb {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .issues__inner {
    padding-bottom: clamp(36px, 8vw, 64px);
  }
}
@media (max-width: 768px) {
  .issues__note {
    display: none;
  }
}

/* ブレーカー帯 */
.breaker {
  z-index: -1;
  position: relative;
  margin-top: -5px;
  background: #2d7fa6;
  color: #fff;
  padding: clamp(18px, 4vw, 36px) 0;
  text-align: center;
}
.breaker__copy {
  padding-top: 50px;
}
@media (max-width: 960px) {
  .breaker {
    margin-top: -20px;
  }
}

/* 三角の高さを共有する変数をグローバルに */
:root {
  --section-tri-h: clamp(28px, 6vw, 72px);
}

/* ============ 課題解決のサービス ============ */
.services {
  background: #EB5C1A;
  /* 外食サイトのオレンジ */
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
  /* 下線風のライン */
  /* グリッド本体 */
  /* 上部ラベル */
  /* ---- レスポンシブ ---- */
}
.services__inner {
  width: min(1120px, 94vw);
  margin-inline: auto;
}
.services__head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.services__title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 30px);
  letter-spacing: 0.08em;
}
.services__subtitle {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.services__head::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 16px auto 0;
  background: #fff;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 24px);
}
.services__card {
  background: #fff;
  color: #333;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 230px;
}
.services__label {
  background: #EB5C1A;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 10px 8px;
  margin: 10px;
}
.services__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 18px 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
}
.services__icon {
  margin: 6px 0 12px;
  width: 140px;
  max-width: 70%;
}
.services__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.services__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services {
    padding: 40px 0;
  }
  .services__body {
    padding: 18px 9px 20px;
  }
  .services__label {
    font-size: 13px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .services__card {
    min-height: auto;
  }
  .services__text {
    font-size: 13px;
  }
}

/* ============ 弊社の強み（外食版） ============ */
.strength {
  background: #FBECE2;
  /* やさしい薄ピンク */
  color: #333;
  /* 4〜6個のカードを並べるエリア */
  /* タイトル（白枠外） */
  /* 白枠（画像のみ入る） */
  /* 説明文（白枠外） */
}
.strength__sub {
  text-align: center;
  margin-bottom: 40px;
}
.strength__sub::after {
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  background: #000;
  /* opacity: 0.4; */
  margin: 10px auto 0;
  border-radius: 2px;
}
.strength__inner {
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.strength__title {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.strength__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 50px);
}
@media (max-width: 960px) {
  .strength__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .strength__grid {
    grid-template-columns: 1fr;
  }
}
.strength__item-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(18px, 2.3vw, 20px);
  font-weight: 900;
}
.strength__thumb {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 0;
  /* ← 内側の余白を消す（画像を中央に揃えやすくする） */
  aspect-ratio: 4/3;
  /* ← 白枠の高さを “必ず全カードで統一” */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.strength__thumb img {
  width: 85%;
  height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
  /* ← 画像の縦横比を保ったまま中央配置 */
  display: block;
}
.strength__desc {
  text-align: left;
  margin: clamp(10px, 2vw, 16px) auto 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  max-width: 90%;
}

/* ============ 導入企業インタビュー ============ */
.cases {
  /* 画像は16:9でトリミング */
  /* レスポンシブ */
}
.cases__inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.cases__head {
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 24px);
}
.cases__title {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #333;
  font-size: clamp(24px, 3.4vw, 36px);
  margin: 0;
}
.cases__sub {
  margin: 0.3em 0 0;
  color: #4B5563;
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 16px);
  position: relative;
  display: inline-block;
}
.cases__sub::after {
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  background: #9CA3AF;
  opacity: 0.4;
  margin: 10px auto 0;
  border-radius: 2px;
}
.cases__grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  grid-template-columns: repeat(3, 1fr);
}
.cases__item {
  background: #FFF;
  border: 1px solid #E5E7EB;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.cases__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.cases__link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}
.cases__figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F3F4F6;
}
.cases__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cases__body {
  padding: clamp(16px, 2.2vw, 18px);
  border-top: 1px solid #E5E7EB;
}
.cases__name {
  font-weight: 900;
  font-size: clamp(16px, 2vw, 20px);
  margin: 0 0 0.35em;
  color: #333;
}
.cases__excerpt {
  color: #4B5563;
  margin: 0;
  line-height: 1.7;
  font-size: clamp(13px, 1.8vw, 15px);
}
.cases__empty {
  text-align: center;
  color: #4B5563;
}
@media (max-width: 980px) {
  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cases__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ 人材紹介の流れ ============ */
.flow {
  /* 全体ラッパー */
  /* 見出し */
  /* サブタイトル（括弧の行） */
  /* ▼ステップの並び */
  /* アイコン枠（ここを基準に矢印を出す） */
  /* 最後のステップだけ矢印を消す */
  /* ステップ名 */
  /* 備考テキスト */
  /* ▼スマホ：縦並び＋下向き矢印に変更 */
}
.flow__inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
}
.flow__title {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: clamp(24px, 3.4vw, 36px);
  margin: 0 0 8px;
  color: #333;
}
.flow__sub {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-size: clamp(14px, 1.7vw, 16px);
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.flow__sub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: #333;
}
.flow__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.flow__item {
  text-align: center;
  position: relative;
  padding: clamp(6px, 1vw, 10px);
}
.flow__icon {
  margin: 0 auto;
  width: clamp(90px, 12vw, 140px);
  height: clamp(90px, 12vw, 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  /* ── 横向きの矢印（棒 + 三角）── */
}
.flow__icon img,
.flow__icon svg {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.flow__icon::after {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(40px, 3.5vw, 48px);
  height: 2px;
  background: #EB5C1A;
}
.flow__icon::before {
  content: "";
  position: absolute;
  left: calc(100% + 10px + clamp(40px, 3.5vw, 48px));
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #EB5C1A;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.flow__item:last-child .flow__icon::before, .flow__item:last-child .flow__icon::after {
  display: none;
}
.flow__name {
  margin: 0;
  font-weight: 800;
  line-height: 1.6;
  font-size: clamp(15px, 1.8vw, 18px);
  color: #333;
}
.flow__note {
  margin-top: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: #2b2b2b;
  font-size: clamp(13px, 1.7vw, 15px);
}
@media (max-width: 860px) {
  .flow__list {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .flow__icon {
    /* 下向きの棒 */
    /* ▼（三角） */
  }
  .flow__icon::after {
    left: 50%;
    top: 160px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 2px;
    height: 40px;
  }
  .flow__icon::before {
    left: 50%;
    top: calc(100% + 10px + 94px);
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}

/* ============ 支援内容 ============ */
/* 支援内容セクション用のレイアウト調整 */
.strength--support {
  /* 最下段の「マナー・研修」をPCでは中央カラムに寄せる */
}
@media (min-width: 961px) {
  .strength--support .strength__item--single {
    grid-column: 2/3;
  }
}

/* ============ よくある質問 ============ */
.faq {
  padding: 2rem 1rem;
  background: #FFF;
  /* チェックボックスは視覚的に隠す（スクリーンリーダーは操作可） */
  /* 質問バー */
  /* 右端の＋/−アイコン（線2本で描画） */
  /* 回答部 */
  /* 開いた状態（チェック済み） */
}
.faq__title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(22px, 3.2vw, 32px);
  margin: 0 0 2rem;
  color: #333;
}
.faq .container {
  max-width: 980px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid #E5E7EB;
  overflow: hidden;
  background: #FFF;
  margin-bottom: 12px;
  position: relative;
}
.faq__toggle {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.faq__question {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #EB5C1A;
  color: #FFF;
  padding: 16px 56px 16px 16px;
  cursor: pointer;
  position: relative;
  font-weight: 800;
  font-size: clamp(15px, 2.2vw, 18px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.faq__question:focus-visible {
  outline: 3px solid rgba(235, 92, 26, 0.35);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .faq__question {
    font-size: 18px;
  }
}
.faq__qmark {
  color: #FFF;
  margin-right: 0.3em;
  font-weight: 900;
}
.faq__q {
  line-height: 1.5;
}
.faq__icon {
  width: 22px;
  height: 22px;
  position: relative;
  margin-right: 8px;
  /* 縦棒（＋用） */
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #FFF;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 16px;
  background: #FFF;
  -webkit-transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  border-top: 1px solid #E5E7EB;
}
.faq__answer p {
  margin: 12px 0 16px;
  line-height: 1.8;
  color: #333;
}
.faq__toggle:checked ~ .faq__answer {
  max-height: 800px;
  opacity: 1;
  padding: 12px 16px 16px;
}
.faq__toggle:checked + .faq__question .faq__icon::after {
  opacity: 0;
}

/* ============ お問い合わせ ============ */
.contact {
  padding: 4rem 1rem;
  background: #FFF;
  /* CF7 本体 */
  /* 行（あなたの cf7-row） */
  /* ラベル */
  /* 必須バッジ */
  /* 入力フィールド */
  /* 送信ボタン */
  /* バリデーション表示 */
}
.contact__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  color: #333;
}
.contact .wpcf7 form,
.contact .wpcf7 .wpcf7-form {
  max-width: 400px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}
.contact .cf7-row {
  display: grid;
  gap: 0.5rem;
}
.contact .cf7-label {
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  margin-bottom: 5px;
}
.contact .cf7-badge {
  font-size: 0.75rem;
  background: #EB5C1A;
  color: #FFF;
  padding: 0.2em 0.6em;
}
.contact input[type=text],
.contact input[type=email],
.contact input[type=tel],
.contact textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  background: #f5f5f5;
  border: 1px solid #cfd6de;
  border-radius: 0;
}
.contact textarea {
  min-height: 160px;
  resize: vertical;
}
.contact .contact__submit {
  width: 180px;
  height: 70px;
  display: block;
  /* ← inline-block → block に変更 */
  margin: 0 auto;
  /* ← 左右中央寄せ */
  padding: 0.8rem 2.5rem;
  border: 0;
  border-radius: 0;
  /* ← 丸み削除 */
  background: #EB5C1A;
  color: #FFF;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
  text-align: center;
  /* ← 念のため中央揃え */
}
.contact .contact__submit:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.contact .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 0.85rem;
}
.contact .wpcf7-response-output {
  border-color: #EB5C1A;
}

/* スマホでの余白 */
@media (max-width: 768px) {
  .contact {
    padding: 3rem 1rem;
  }
}
/* 濃いめのメイン色（hover などで使用） */
/* PCではハンバーガー内のお問い合わせは出さない */
@media (min-width: 961px) {
  .masthead__contact,
  .masthead__divider {
    display: none;
  }
}
/* SP時の見た目 */
@media (max-width: 960px) {
  .masthead__divider {
    height: 8px;
    margin: 8px 0;
  }
  .masthead__contact a {
    display: block;
    margin: 8px 8px 12px;
    padding: 14px 16px;
    font-weight: 800;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
  }
  .masthead__contact a:hover {
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
}
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 276px 1fr 400px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-bottom: 3px solid #EB5C1A;
  /* --- PCデフォルト --- */
  /* PCではSP用アクション非表示 */
  /* 中央メニュー */
  /* 右側（TEL/営業時間/CTA） */
  /* ===== TEL：赤に変わらないように固定 ===== */
  /* ===== お問い合わせ CTA：背景色を固定 ===== */
  /* ===== 1280px 以下：レイアウトを少し圧縮 ===== */
  /* ===== SP（<=960px） ===== */
}
.masthead__left {
  grid-column: 1/2;
  background: #EB5C1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.masthead__logo {
  width: min(180px, 80%);
  display: block;
}
.masthead__actions {
  display: none;
}
.masthead__center {
  grid-column: 2/3;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.masthead__nav {
  position: static;
  display: block;
}
.masthead__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding-inline: 28px;
}
.masthead__menu a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.masthead__menu a:hover {
  opacity: 0.75;
}
.masthead__right {
  grid-column: 3/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.masthead__icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.masthead__tel, .masthead__tel:visited {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #EB5C1A;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
}
.masthead__tel:hover, .masthead__tel:focus, .masthead__tel:active {
  color: #EB5C1A !important;
  /* Cocoon の a:hover を打ち消す */
  text-decoration: none !important;
  opacity: 1 !important;
}
.masthead__hours {
  margin: 0;
  text-align: center;
  color: #333;
  font-size: 13px;
  line-height: 1.5;
}
.masthead__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #EB5C1A;
  color: #FFF;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.masthead__cta img {
  width: 18px;
  height: 18px;
  display: block;
}
.masthead__cta:hover, .masthead__cta:focus, .masthead__cta:active {
  background: #EB5C1A !important;
  /* 赤や濃淡に変化しない */
  color: #FFF !important;
  opacity: 1 !important;
}
@media (max-width: 1280px) {
  .masthead {
    grid-template-columns: 250px 1fr 360px;
  }
  .masthead__menu {
    gap: 20px;
    padding-inline: 18px;
  }
  .masthead__menu a {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .masthead {
    grid-template-columns: auto 56px 56px;
    height: 64px;
    border-bottom: none;
    /* 電話 + ハンバーガー */
    /* ハンバーガー本体 */
    /* 3本線（中央＋上下） */
    /* 開いたら × に変形（中央線を透明化） */
    /* PC右側はSPで非表示 */
    /* ドロワーナビ（初期は非表示 → is-openで表示） */
    /* メニュー縦並び */
  }
  .masthead__left {
    height: 64px;
    padding-inline: 12px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .masthead__logo {
    width: 150px;
  }
  .masthead__actions {
    grid-column: 2/span 2;
    display: grid;
    grid-template-columns: 56px 56px;
    height: 64px;
  }
  .masthead__phone {
    background: #00BE4D;
    display: grid;
    place-items: center;
  }
  .masthead__phone img {
    width: 26px;
    height: 26px;
    display: block;
  }
  .masthead__burger {
    background: #EB5C1A;
    border: 0;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .masthead__bars, .masthead__bars::before, .masthead__bars::after {
    position: absolute;
    left: 50%;
    width: 26px;
    height: 2px;
    background: #FFF;
    content: "";
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: top 0.25s ease, background 0.2s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: top 0.25s ease, background 0.2s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, top 0.25s ease, background 0.2s ease, opacity 0.2s ease;
    transition: transform 0.25s ease, top 0.25s ease, background 0.2s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  }
  .masthead__bars {
    top: 50%;
  }
  .masthead__bars::before {
    top: calc(50% - 10px);
  }
  .masthead__bars::after {
    top: calc(50% + 8px);
  }
  .masthead__burger.is-open .masthead__bars {
    background: transparent;
  }
  .masthead__burger.is-open .masthead__bars::before {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
  .masthead__burger.is-open .masthead__bars::after {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
  .masthead__right {
    display: none;
  }
  .masthead__center {
    grid-column: 1/-1;
  }
  .masthead__nav {
    position: fixed;
    inset: 64px 0 0 0;
    /* ヘッダー直下から */
    background: #fff;
    border-top: 1px solid #E5E7EB;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s, -webkit-transform 0.2s;
    z-index: 99;
  }
  .masthead__nav.is-open {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .masthead__menu {
    display: grid;
    padding: 8px 12px;
    gap: 0;
  }
  .masthead__menu li {
    border-bottom: 1px solid #E5E7EB;
  }
  .masthead__menu a {
    display: block;
    padding: 14px 8px;
  }
}

.footer {
  background: #EB5C1A;
  color: #fff;
  padding: 28px 0 40px;
}
.footer__inner {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  font-weight: bold;
}
.footer__links a {
  color: #fff;
  opacity: 0.9;
}
.footer__links a:hover {
  opacity: 1;
}
.footer__copy {
  grid-column: 1/-1;
  opacity: 0.9;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer__cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
}

@media (max-width: 960px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* ===============================
   _single-pages.scss （記事ページ）
   依存: _variables.scss
================================ */
/* 端末ブレーク（_variables.scssに無いのでローカル定義） */
/* ============ Single (記事) ============ */
.blog-single {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  /* 本文＋右サイドバー：2カラム */
  /* --- 記事本体 --- */
  /* --- 関連記事 --- */
}
.blog-single .container {
  max-width: 980px;
  /* 既存レイアウト幅 */
  width: 94%;
  margin: 0 auto;
}
.blog-single .content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  /* 左=本文 / 右=SB */
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  clear: both;
}
@media (max-width: 980px) {
  .blog-single .content-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.blog-single .content-main {
  min-width: 0;
  margin-top: 50px;
  /* ヘッダー下げなどの微調整 */
}
.blog-single .blog-article {
  background: #FFF;
  color: #333;
  line-height: 1.8;
}
.blog-single .blog-article .entry-header {
  margin-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 16px;
}
.blog-single .blog-article .entry-header .entry-title {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (max-width: 640px) {
  .blog-single .blog-article .entry-header .entry-title {
    font-size: 22px;
  }
}
.blog-single .blog-article .entry-header .entry-meta {
  font-size: 13px;
  color: #9CA3AF;
}
.blog-single .blog-article .entry-header .entry-meta time {
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.blog-single .blog-article .entry-content {
  margin-bottom: 40px;
  /* 任意の段落クラス */
  /* ▼ H2（画像のような帯デザイン） */
}
.blog-single .blog-article .entry-content p {
  font-size: 16px;
  margin: 0 0 1.2em;
}
@media (max-width: 640px) {
  .blog-single .blog-article .entry-content p {
    font-size: 15px;
  }
}
.blog-single .blog-article .entry-content .p2 {
  color: #333;
}
.blog-single .blog-article .entry-content .p4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 1.2em;
}
.blog-single .blog-article .entry-content h2,
.blog-single .blog-article .entry-content h3 {
  font-weight: 700;
  line-height: 1.4;
  margin: 1.6em 0 0.6em;
  color: #333;
}
.blog-single .blog-article .entry-content h3 {
  font-size: 20px;
}
@media (max-width: 640px) {
  .blog-single .blog-article .entry-content h3 {
    font-size: 18px;
  }
}
.blog-single .blog-article .entry-content h2 {
  position: relative;
  font-size: 24px;
  margin: 2.4em 0 1.2em;
  padding: 10px 14px 10px 16px;
  background: #FFF0E9;
  /* 薄い水色 */
  border-left: 6px solid #EB5C1A;
  /* メインカラー */
  line-height: 1.45;
  color: #333;
}
.blog-single .blog-article .entry-content h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 12px 12px 0;
  border-style: solid;
  border-color: transparent #EB5C1A transparent transparent;
}
@media (max-width: 640px) {
  .blog-single .blog-article .entry-content h2 {
    font-size: 20px;
  }
}
.blog-single .blog-article .entry-content ul,
.blog-single .blog-article .entry-content ol {
  padding-left: 1.2em;
  margin: 0.6em 0 1.2em;
}
.blog-single .blog-article .entry-content ul li,
.blog-single .blog-article .entry-content ol li {
  margin: 0.4em 0;
}
.blog-single .blog-article .entry-content ul li p,
.blog-single .blog-article .entry-content ol li p {
  margin: 0.2em 0;
}
.blog-single .blog-article .entry-content ul {
  list-style: disc;
}
.blog-single .blog-article .entry-content ol {
  list-style: decimal;
}
.blog-single .blog-article .entry-content a {
  color: #EB5C1A;
  /* or $accent-color 好みで */
  text-decoration: underline;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.blog-single .blog-article .entry-content a:hover {
  opacity: 0.8;
}
.blog-single .blog-article .entry-content img,
.blog-single .blog-article .entry-content figure {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.2em 0;
}
.blog-single .blog-article .entry-content hr {
  border: 0;
  height: 1px;
  background: #E5E7EB;
  margin: 2em 0;
}
.blog-single .blog-article .entry-content blockquote {
  border-left: 4px solid #E5E7EB;
  padding: 0.6em 1em;
  color: #4B5563;
  background: #F3F4F6;
  margin: 1.4em 0;
}
.blog-single .blog-article .entry-footer {
  margin-bottom: 40px;
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
}
.blog-single .blog-article .entry-footer .share-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.blog-single .blog-article .entry-footer .share-links a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.blog-single .blog-article .entry-footer .share-links a:hover {
  background: #EB5C1A;
  color: #FFF;
}
.blog-single .related-posts {
  margin-bottom: 60px;
}
.blog-single .related-posts > h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  border-left: 4px solid #EB5C1A;
  padding-left: 10px;
}
@media (max-width: 640px) {
  .blog-single .related-posts > h2 {
    font-size: 18px;
  }
}
.blog-single .related-posts .related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .blog-single .related-posts .related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-single .related-posts .related-list {
    grid-template-columns: 1fr;
  }
}
.blog-single .related-posts .related-list .related-card {
  border: 1px solid #E5E7EB;
  background: #FFF;
  padding: 12px;
  display: block;
  text-decoration: none;
  color: #333;
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
  transition: box-shadow 0.2s, transform 0.1s;
  transition: box-shadow 0.2s, transform 0.1s, -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
}
.blog-single .related-posts .related-list .related-card:hover {
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.blog-single .related-posts .related-list .related-card .thumb {
  aspect-ratio: 16/9;
  background: #F3F4F6;
  margin-bottom: 10px;
}
.blog-single .related-posts .related-list .related-card .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-single .related-posts .related-list .related-card .title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* ===== ヘッダー高（必要に応じて変更） ===== */
:root {
  --masthead-h: 72px;
}

/* Tokens */
/* ===== サイドバー ===== */
.sidebar-blog {
  width: 300px;
  margin-left: auto;
  margin-top: 55px;
  position: sticky;
  /* ヘッダーの高さ + 余白16px を確保（未設定時は72pxを使用） */
  top: calc(var(--masthead-h, 72px) + 16px);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  float: none !important;
  /* カテゴリ（改行禁止＆カウントバッジ） */
  /* アーカイブ */
  /* タグクラウド */
  /* SNS カード */
}
@media (max-width: 980px) {
  .sidebar-blog {
    width: 100%;
    position: static;
    top: auto;
    margin-left: 0;
  }
}
.sidebar-blog .widget {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 14px 16px;
}
.sidebar-blog .widget .widget-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  border-left: 4px solid #EB5C1A;
  padding-left: 8px;
  line-height: 1.4;
}
.sidebar-blog .widget-categories ul,
.sidebar-blog .widget-categories .cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-blog .widget-categories li {
  border-top: 1px solid #e5e5e5;
}
.sidebar-blog .widget-categories li:first-child {
  border-top: 0;
}
.sidebar-blog .widget-categories li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.sidebar-blog .widget-categories li a:hover {
  color: #0089BD;
}
.sidebar-blog .widget-categories li .count {
  margin-left: 6px;
  font-size: 12px;
  color: #777;
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 0 8px;
  line-height: 20px;
  min-width: 26px;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.sidebar-blog .widget-archives .archives {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-blog .widget-archives .archives li {
  border-top: 1px solid #e5e5e5;
}
.sidebar-blog .widget-archives .archives li:first-child {
  border-top: 0;
}
.sidebar-blog .widget-archives .archives li a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #333;
}
.sidebar-blog .widget-archives .archives li a:hover {
  color: #0089BD;
}
.sidebar-blog .widget-tags .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.sidebar-blog .widget-tags .tags a {
  font-size: 13px !important;
  color: #333;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  -webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.sidebar-blog .widget-tags .tags a:hover {
  background: #0089BD;
  border-color: #0089BD;
  color: #fff;
}
.sidebar-blog .widget-social .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.sidebar-blog .widget-social .sns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: #333;
  -webkit-transition: color 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
  transition: color 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
  transition: box-shadow 0.2s, transform 0.1s, color 0.2s;
  transition: box-shadow 0.2s, transform 0.1s, color 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.1s;
}
.sidebar-blog .widget-social .sns-item:hover {
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #0089BD;
}
.sidebar-blog .widget-social .sns-icon img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.sidebar-blog .widget-social .sns-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.3;
}
.sidebar-blog .widget-social .sns-name {
  font-size: 14px;
  font-weight: 700;
}
.sidebar-blog .widget-social .sns-id {
  font-size: 12px;
  color: #666;
}

/* 管理バー有効時（ログイン中）の補正 */
.admin-bar .sidebar-blog {
  top: calc(var(--masthead-h, 72px) + 16px + 32px);
}

/* 行間・横並びの微調整 */
.sidebar-blog .widget-categories .cats li {
  white-space: nowrap;
  padding: 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-blog .widget-categories .cats li a {
  display: inline;
  margin-right: 0.8em;
  color: inherit;
}
.sidebar-blog .widget-categories .cats li a:hover {
  color: #0089BD;
}

.sidebar-blog .widget-archives .archives li {
  white-space: nowrap;
  padding: 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-blog .widget-archives .archives li a {
  display: inline;
  margin-right: 1.2em;
  color: inherit;
}
.sidebar-blog .widget-archives .archives li a:hover {
  color: #0089BD;
}

/* 親のoverflowでstickyが無効化される対策（必要なテーマのみ） */
.blog-archive .content-wrap,
.blog-single .content-wrap {
  overflow: visible;
}

/* Tokens */
/* Mixins */
/* ============ Archive (一覧) ============ */
.blog-archive .container {
  max-width: 980px;
  width: 94%;
  margin: 0 auto;
}
.blog-archive .content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  clear: both;
}
@media (max-width: 980px) {
  .blog-archive .content-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blog-archive .content-wrap .content-main {
  margin-top: 40px;
}
.blog-archive .archive-header {
  margin: 0 0 16px;
}
.blog-archive .archive-header .archive-title {
  font-size: 24px;
  font-weight: 700;
}
.blog-archive .archive-header .archive-desc {
  color: #777;
  margin-top: 6px;
}
.blog-archive .post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) {
  .blog-archive .post-grid {
    grid-template-columns: 1fr;
  }
}
.blog-archive .post-card {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.blog-archive .post-card .title a {
  color: #333;
  text-decoration: none;
}
.blog-archive .post-card .title a:hover {
  color: #0089BD;
}
.blog-archive .post-card .thumb {
  aspect-ratio: 16/9;
  background: #f2f2f2;
}
.blog-archive .post-card .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-archive .post-card .labels {
  margin: 8px 0 6px;
}
.blog-archive .post-card .badge {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  color: #333;
  text-decoration: none;
}
.blog-archive .post-card .badge:hover {
  background: #0089BD;
  border-color: #0089BD;
  color: #fff;
}
.blog-archive .post-card .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 4px;
}
.blog-archive .post-card .meta time {
  font-size: 13px;
  color: #777;
  display: inline-block;
}
.blog-archive .post-card .excerpt {
  margin: 0;
}
.blog-archive .post-card .more {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #0089BD;
  text-decoration: underline;
}
.blog-archive .pagination {
  margin: 22px 0 0;
}

/* SP最適化 */
@media (max-width: 768px) {
  .blog-archive .container {
    width: 92%;
  }
  .blog-archive .post-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .blog-archive .post-card {
    gap: 10px;
    padding: 12px;
  }
  .blog-archive .post-card .thumb {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
  }
  .blog-archive .post-card .title {
    font-size: 16px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-archive .post-card .meta time {
    font-size: 12px;
  }
  .blog-archive .pagination {
    margin: 18px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blog-archive .pagination a,
  .blog-archive .pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    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;
    line-height: 1;
  }
  .blog-archive .pagination .current {
    background: #0089BD;
    color: #fff;
    border-color: #0089BD;
  }
}
@media (max-width: 480px) {
  .blog-archive .post-card {
    gap: 8px;
    padding: 10px;
  }
  .blog-archive .post-card .title {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
  .blog-archive .post-card .excerpt {
    font-size: 13px;
    -webkit-line-clamp: 1;
  }
}
/* ================================
   お問い合わせ完了ページ（thanks-hero）
================================ */
.thanks-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(11, 62, 130, 0.06)), to(rgba(11, 62, 130, 0)));
  background: linear-gradient(180deg, rgba(11, 62, 130, 0.06), rgba(11, 62, 130, 0));
  padding: clamp(48px, 7vw, 100px) 0;
  text-align: center;
  /* モバイル調整 */
}
.thanks-hero__inner {
  width: min(960px, 92vw);
  margin-inline: auto;
}
.thanks-hero__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b3e82;
  margin-bottom: 14px;
}
.thanks-hero__icon svg {
  width: clamp(56px, 8vw, 80px);
  height: auto;
  display: block;
}
.thanks-hero__title {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 3vw, 28px);
  margin: 8px 0 10px;
  color: #0b3e82;
}
.thanks-hero__lead {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #333333;
  margin: 0 0 6px;
  line-height: 1.8;
}
.thanks-hero__note {
  font-size: 14px;
  color: #777777;
  margin: 0 0 28px;
  line-height: 1.8;
}
.thanks-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 8px;
}
.thanks-hero__actions .btn {
  min-width: 180px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
}
.thanks-hero__actions .btn--light {
  background: #fff;
  color: #0b3e82;
  border: 1px solid #0b3e82;
}
.thanks-hero__actions .btn--light:hover {
  background: hsl(214.2857142857, 84.3971631206%, 117.6470588235%);
  -webkit-box-shadow: 0 4px 12px rgba(11, 62, 130, 0.25);
          box-shadow: 0 4px 12px rgba(11, 62, 130, 0.25);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.thanks-hero__actions .btn--light:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.thanks-hero__tel {
  margin-top: 12px;
  font-size: 14px;
  color: #555555;
}
.thanks-hero__tel a {
  font-weight: 800;
  color: #d62828;
  text-decoration: none;
}
.thanks-hero__tel a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .thanks-hero {
    padding: clamp(36px, 8vw, 72px) 0;
  }
  .thanks-hero__lead, .thanks-hero__note {
    font-size: 15px;
    padding-inline: 10px;
  }
  .thanks-hero__actions .btn {
    width: min(80%, 300px);
  }
}

.blog {
  padding: 0 !important;
}

/* ================= CTA Strips（メール／TEL／エリア） ================= */
/* 共有：CTA電話アイコン */
.cta__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: var(--cta-tel-text, #00BE4D);
  /* 文字色(電話番号) */
}

.cta__tel-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  color: var(--cta-tel-icon, #00BE4D);
  /* ← SVGの fill=currentColor に反映 */
}

/* 例：ITサイト（緑） */
:root {
  --cta-tel-text: #00BE4D;
  --cta-tel-icon: #00BE4D;
}

/* 例：外食サイト（オレンジ） */
:root.gastronomy {
  --cta-tel-text: #e35c1b;
  --cta-tel-icon: #e35c1b;
}

.strip {
  background: #EB5C1A;
  color: #fff;
  padding-block: clamp(20px, 2vw, 40px);
}

.strip__heading {
  margin: 0 auto clamp(16px, 2.5vw, 28px);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(18px, 2.5vw, 28px);
}

.strip__inner {
  display: grid;
  gap: 0px;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media (max-width: 960px) {
  .strip {
    padding-block: clamp(30px, 3vw, 40px);
  }
  .strip h2 {
    margin-top: 0 !important;
  }
  .strip .strip__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.strip__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: center;
  position: relative;
  border: none;
}
.strip__unit:nth-child(2)::before, .strip__unit:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 1.5px;
  background: #fff;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.strip__unit:nth-child(2)::before {
  left: 0;
}
.strip__unit:nth-child(2)::after {
  right: 0;
}
@media (max-width: 960px) {
  .strip__unit:nth-child(2)::before, .strip__unit:nth-child(2)::after {
    content: none !important;
    display: none !important;
  }
}

.strip__label {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(14px, 1.6vw, 18px);
}

.strip__note {
  margin: -5px 0 -20px;
  font-size: 14px;
  opacity: 0.9;
  font-weight: bold;
}

.strip__tel {
  margin: 0;
}
.strip__tel a {
  text-decoration: none;
  color: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.4em;
}

.strip__tel-prefix {
  font-size: clamp(14px, 1.4vw, 16px);
  opacity: 0.95;
  font-weight: bold;
}

.strip__tel-number {
  font-weight: 800;
  font-size: clamp(22px, 3.8vw, 36px);
  color: #00BE4D;
}

/* ボタン（最小必要分。あなたの既存.btnを使う場合は不要） */
.btn {
  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;
  padding: 12px 18px;
  border-radius: 9999px;
  border: 2px solid #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, -webkit-transform 0.06s ease;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, -webkit-transform 0.06s ease;
  transition: transform 0.06s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  transition: transform 0.06s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, -webkit-transform 0.06s ease;
  will-change: transform;
}

.btn--light {
  background: #fff;
  color: #EB5C1A;
  border: 1px solid #EB5C1A;
  font-size: 18px;
  width: 220px;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease, color 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.1s ease;
}
.btn--light, .btn--light:link, .btn--light:visited {
  color: #EB5C1A !important;
  text-decoration: none;
}
.btn--light:hover, .btn--light:focus {
  background-color: hsl(18.9473684211, 83.9357429719%, 141.1764705882%);
  -webkit-box-shadow: 0 4px 10px rgba(235, 92, 26, 0.8);
          box-shadow: 0 4px 10px rgba(235, 92, 26, 0.8);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.btn--light:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn__arrow {
  font-weight: 800;
}

/* モバイル時の微調整 */
@media (max-width: 960px) {
  .strip__unit {
    text-align: center;
  }
  .strip__note {
    margin-top: 0;
  }
  .btn {
    width: min(320px, 80%);
    margin-inline: auto;
  }
}
/* ------------法務系ページの共通スタイル ------------ */
.legal {
  color: #1D242D;
  line-height: 1.9;
}
.legal .container {
  width: min(960px, 92vw);
  margin: 0 auto;
}
.legal .lead {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 24px;
}
.legal .legal__h2 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  margin: 28px 0 10px;
  color: #EB5C1A;
}
.legal .legal__list {
  padding-left: 1.2em;
  margin: 0 0 12px;
}
.legal .legal__list li {
  margin: 0.2em 0;
}
.legal .legal__updated {
  margin-top: 28px;
  font-size: 0.9rem;
  color: #4B5563;
}
.legal .note {
  font-size: 0.9rem;
  color: #4B5563;
  margin-top: 12px;
}

/* ページ見出し帯（既存の .c-title を使用） */
.page-hero {
  padding: 32px 0 12px;
  text-align: center;
}

/* 会社概要の表 */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
}
.company-table th,
.company-table td {
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  vertical-align: top;
}
.company-table th {
  width: 26%;
  background: #F3F4F6;
  font-weight: 700;
  white-space: nowrap;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .company-table th,
  .company-table td {
    display: block;
    width: auto;
  }
  .company-table th {
    border-bottom: none;
    border-right: none;
  }
}
.entry-content table {
  border-collapse: collapse !important;
  width: 100% !important;
  border: 1px solid #E5E7EB !important;
  margin-bottom: 1.5em;
}
.entry-content table thead tr,
.entry-content table tr:first-child:not(tbody tr) {
  background-color: #EB5C1A !important;
}
.entry-content table thead tr th,
.entry-content table thead tr td,
.entry-content table tr:first-child:not(tbody tr) th,
.entry-content table tr:first-child:not(tbody tr) td {
  color: #FFF !important;
  background-color: #EB5C1A !important;
  white-space: nowrap;
  border: 1px solid #FFF !important;
  padding: 12px;
  font-weight: bold;
  text-align: center;
}
.entry-content table:nth-child(even) {
  background-color: #F3F4F6 !important;
}

/* ================= Form（Contact Form 7） ================= */
.contact .contact__lead {
  max-width: 800px;
  margin: 0 auto 50px;
}
.contact .contact__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin: 60px 0;
}
.contact .contact__side .contact__card {
  width: 100%;
  max-width: 800px;
  text-align: left;
}
.contact .contact__side .contact__side-title,
.contact .contact__side .contact__side-sub,
.contact .contact__side .contact__time,
.contact .contact__side .contact__list,
.contact .contact__side .contact__link {
  text-align: left;
}
.contact .wpcf7 form {
  display: grid;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}
.contact .wpcf7 label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}
.contact .wpcf7 label .required {
  font-size: 0.8em;
  margin-left: 4px;
  color: #fff;
  background: #EB5C1A;
  padding: 2px 6px;
  border-radius: 4px;
}
.contact .wpcf7 input[type=text],
.contact .wpcf7 input[type=email],
.contact .wpcf7 input[type=tel],
.contact .wpcf7 textarea {
  width: 100%;
  border: 1px solid #9CA3AF;
  border-radius: 2px;
  padding: 10px;
  font-size: 1rem;
}
.contact .wpcf7 input:focus,
.contact .wpcf7 textarea:focus,
.contact .wpcf7 select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #EB5C1A;
}
.contact .wpcf7 textarea {
  min-height: 160px;
}
.contact .wpcf7 .form-submit {
  text-align: center;
}
.contact .wpcf7 .form-submit input[type=submit] {
  width: 200px;
  background: #EB5C1A;
  color: #fff;
  border: none;
  padding: 14px 15px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.contact .wpcf7 .form-submit input[type=submit]:hover {
  opacity: 0.85;
}
.contact .wpcf7 .wpcf7-response-output {
  margin-top: 12px;
  padding: 10px;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

/* ================= My Account：カードグリッド ================= */
/* My Account ページのタイトルをカードと同じ幅に揃える */
body.woocommerce-account .entry-title {
  max-width: 1200px;
  margin: 30px auto 0px;
  /* 下に余白 */
  padding: 0 16px;
  /* カードと同じ横パディング */
  font-size: 24px;
  /* 必要なら大きさ調整 */
  font-weight: 800;
  /* 見出し強調 */
}

/* ラッパー幅 */
.woocommerce-account .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* ===== レイアウト強制：1カラム（カード → 挨拶文 → 本文） ===== */
body.woocommerce-account.logged-in .woocommerce {
  display: block !important;
}

body.woocommerce-account .woocommerce::before,
body.woocommerce-account .woocommerce::after {
  content: none !important;
  display: none !important;
}

.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
}

.woocommerce-MyAccount-navigation {
  margin-bottom: 18px !important;
}

.woocommerce-account.logged-in .woocommerce > p {
  display: block !important;
  float: none !important;
  clear: both !important;
  margin: 18px 0 !important;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 12px;
  padding: 18px 20px;
}

/* ---- カード（ナビ） ---- */
.woocommerce-MyAccount-navigation {
  background: transparent;
  border: 0;
  padding: 0;
  /* 1枚のカード */
  /* アイコン共通（デフォルト = ユーザー） */
  /* ▼▼ ダッシュボードだけ“ホーム”アイコンに変更（ここが追加/変更点） ▼▼ */
  /* ▲▲ ここまで ▲▲ */
  /* 注文 */
  /* ダウンロード */
  /* 住所 */
  /* アカウント詳細 */
  /* ログアウト */
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.woocommerce-MyAccount-navigation li {
  margin: 0;
}
.woocommerce-MyAccount-navigation li a {
  display: grid;
  grid-template-columns: 60px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #e6e8ee;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: #1D242D;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  text-align: left;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-transform 0.04s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-transform 0.04s ease;
  transition: box-shadow 0.15s ease, transform 0.04s ease, border-color 0.15s ease;
  transition: box-shadow 0.15s ease, transform 0.04s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-transform 0.04s ease;
}
.woocommerce-MyAccount-navigation li a:hover, .woocommerce-MyAccount-navigation li a:focus {
  border-color: rgba(235, 92, 26, 0.35);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  color: #EB5C1A;
}
.woocommerce-MyAccount-navigation li a::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-block;
  background: #eef3ff no-repeat center/60%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='4' fill='%23173f7a'/%3E%3Cpath d='M4 20c0-4.418 3.582-8 8-8s8 3.582 8 8' fill='none' stroke='%23173f7a' stroke-width='2'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard a::before {
  background-color: #eef9ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9.5l9-7 9 7V20a1 1 0 0 1-1 1h-5v-6h-6v6H4a1 1 0 0 1-1-1V9.5z' fill='%230064b8'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders a::before {
  background-color: #e7f6ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3h9l3 3v15H6z' fill='none' stroke='%230064b8' stroke-width='2'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h6' stroke='%230064b8' stroke-width='2'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads a::before {
  background-color: #e8fbf2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v10m0 0l-4-4m4 4l4-4' stroke='%23008a4e' stroke-width='2' fill='none'/%3E%3Cpath d='M5 21h14' stroke='%23008a4e' stroke-width='2'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address a::before {
  background-color: #fff3e6;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l8 7v11H4V9l8-7z' fill='none' stroke='%23b86600' stroke-width='2'/%3E%3Cpath d='M9 21v-6h6v6' fill='none' stroke='%23b86600' stroke-width='2'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account a::before {
  background-color: #eef3ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='4' fill='%23173f7a'/%3E%3Cpath d='M4 20c0-4.418 3.582-8 8-8s8 3.582 8 8' fill='none' stroke='%23173f7a' stroke-width='2'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  background-color: #ffe9ec;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 6H5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h5' stroke='%23c21f39' stroke-width='2' fill='none'/%3E%3Cpath d='M13 16l4-4-4-4M7 12h10' stroke='%23c21f39' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation li.is-active a {
  border-color: rgba(235, 92, 26, 0.35);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  color: #EB5C1A;
}

/* ---- 下部：本文（注文一覧など） ---- */
.woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 18px;
}

/* ============ レスポンシブ ============ */
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }
  .woocommerce-MyAccount-content,
  .woocommerce-account.logged-in .woocommerce > p {
    margin-top: 14px;
  }
}
/* アカウントページの日付を非表示 */
body.woocommerce-account .posted-on,
body.woocommerce-account time.entry-date {
  display: none !important;
}