@charset "UTF-8";
/* ========================================================================
   Variables（退職代行比較LP）
   ======================================================================== */
/* ========================================================================
   Breakpoints / Media Query Mixin（mobile-first）
   ======================================================================== */
/* ========================================================================
   Base
   ======================================================================== */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.8;
  color: #2b2b33;
  font-family: "Noto Sans JP", sans-serif;
  background: #f5faf9;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.inner {
  padding-left: 18px;
  padding-right: 18px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 共通セクション余白 */
.section {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.section--soft {
  background: #eaf5f2;
}

/* 別ページから #anchor で着地したとき、固定ヘッダー下に隠れないように */
[id] {
  scroll-margin-top: 80px;
}

/* ========================================================================
   共通見出し
   ======================================================================== */
.heading {
  text-align: center;
}

.heading__en {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.6px;
  color: #1f9e8f;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 14px;
  }
}

.heading__ja {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .heading__ja {
    font-size: 34px;
  }
}

.heading__lead {
  margin-top: 18px;
  font-size: 15px;
  color: #6c7a78;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .heading__lead {
    font-size: 16px;
    margin-top: 22px;
  }
}

/* ========================================================================
   ボタン
   ======================================================================== */
.button {
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 60px;
  border: 2px solid transparent;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #2b2b33;
  min-width: 200px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s, color 0.3s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
}
.button {
  /* メインCTA（コーラル塗り） */
}
.button--cta {
  background: linear-gradient(135deg, #ff8a3d 0%, #ef6f1f 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 111, 31, 0.32);
}
.button--cta:hover {
  box-shadow: 0 14px 30px rgba(239, 111, 31, 0.4);
}
.button {
  /* サブCTA（ティール塗り） */
}
.button--primary {
  background: #1f9e8f;
  color: #fff;
  box-shadow: 0 10px 24px rgba(19, 122, 110, 0.24);
}
.button--primary:hover {
  background: #137a6e;
}
.button {
  /* ゴースト（白地＋ティール枠） */
}
.button--ghost {
  background: #fff;
  color: #137a6e;
  border-color: #1f9e8f;
}
.button--ghost:hover {
  background: #eaf5f2;
}
.button--block {
  width: 100%;
  display: flex;
}
.button__note {
  font-size: 12px;
  font-weight: 500;
}

/* ========================================================================
   Animation utilities（JS で .is-in-view を付与）
   初期非表示は html.js（head内で付与）配下のみ。JS無効・読み込み失敗時は
   演出なしで常時表示になり、本文が消えない。
   ======================================================================== */
html.js .fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s, transform 0.9s;
}
html.js .fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

html.js .fade-in {
  opacity: 0;
  transition: opacity 0.9s;
}
html.js .fade-in.is-in-view {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html.js .fade-in-up,
  html.js .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ========================================================================
   安全導線（心身の不調が深刻な読者向け・非広告の公的窓口案内）
   ======================================================================== */
.safety-note {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid #e2ece9;
  border-left: 4px solid #1f9e8f;
  border-radius: 0.5rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .safety-note {
    padding: 1.5rem 1.75rem;
  }
}

.safety-note__title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .safety-note__title {
    font-size: 1rem;
  }
}

.safety-note__text {
  font-size: 0.8125rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .safety-note__text {
    font-size: 0.875rem;
  }
}

.safety-note__list {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .safety-note__list {
    font-size: 0.875rem;
  }
}
.safety-note__list li {
  padding-left: 1em;
  text-indent: -1em;
}
.safety-note__list li::before {
  content: "・";
}

.safety-note__tel {
  color: #137a6e;
  font-weight: 700;
  text-decoration: underline;
}

.safety-note__caption {
  font-size: 0.75rem;
  color: #6c7a78;
}

/* ========================================================================
   30秒診断（4問ステップ式）
   ======================================================================== */
.quiz__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.quiz__progress {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #137a6e;
}

.quiz__back {
  font-size: 0.8125rem;
  color: #6c7a78;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.quiz__back--retry {
  display: block;
  margin: 1rem auto 0;
}

.quiz__step {
  display: none;
}
.quiz__step.is-current {
  display: block;
}

.quiz__note {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6c7a78;
}

.quiz__disclaimer {
  margin-top: 1.125rem;
  font-size: 0.75rem;
  color: #6c7a78;
  line-height: 1.8;
}

.check-result__caution {
  margin-top: 1rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.375rem;
  background: rgba(255, 138, 61, 0.08);
  font-size: 0.8125rem;
  line-height: 1.8;
}

/* フッター：お悩み別ガイド（入口LPへの内部リンク） */
.footer__nav--guide {
  margin-top: 0.5rem;
}
.footer__nav--guide .footer__link {
  font-size: 0.75rem;
}

.footer__nav-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ========================================================================
   PR表記バー（ステマ規制対応・最上部）
   ======================================================================== */
.pr-bar {
  background: #eef2f1;
  color: #6c7a78;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 5px 12px;
}
@media screen and (min-width: 768px) {
  .pr-bar {
    font-size: 12px;
  }
}

/* ========================================================================
   Header
   ======================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2ece9;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    height: 72px;
  }
}

.header__logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #137a6e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    font-size: 20px;
  }
}

/* ロゴ画像は不使用（テキストロゴのみ）。再導入する場合はこのブロックと
   header__logo 内の <img class="header__logo-mark"> を復活させる
.header__logo-mark {
  width: 26px;
  height: 26px;
  display: inline-block;
  object-fit: contain;
  flex-shrink: 0;

  @include mq(pc) {
    width: 28px;
    height: 28px;
  }
}
*/
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: #2b2b33;
  transition: color 0.2s;
}
.header__link:hover {
  color: #1f9e8f;
}

.header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__cta {
    display: inline-flex;
    min-width: auto;
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* ドロワー開閉アイコン（SPのみ） */
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 28px;
  height: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 120;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #137a6e;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 10px;
}
.drawer-icon__bar:nth-child(3) {
  top: 20px;
}
.is-checked .drawer-icon__bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.is-checked .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}
.is-checked .drawer-icon__bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ドロワー本体 */
.drawer-content {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 84px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 110;
}
.drawer-content.is-checked {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-content__link {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid #e2ece9;
  font-size: 16px;
  font-weight: 500;
}

.drawer-content__cta {
  margin-top: 24px;
}

/* ========================================================================
   メインビジュアル（hero）
   ======================================================================== */
.mv {
  background: linear-gradient(180deg, #eaf6f3 0%, #f5faf9 100%);
  overflow: hidden;
}

.mv__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media screen and (min-width: 768px) {
  .mv__body {
    width: 56%;
    flex-shrink: 0;
  }
}

.mv__badge {
  display: inline-block;
  background: #fff;
  color: #137a6e;
  border: 1px solid #1f9e8f;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .mv__badge {
    font-size: 13px;
  }
}

.mv__catch {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .mv__catch {
    font-size: 42px;
    line-height: 1.45;
  }
}

.mv__catch-mark {
  background: linear-gradient(transparent 62%, rgba(255, 138, 61, 0.34) 62%);
  color: #137a6e;
}

.mv__sub {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #454552;
}
@media screen and (min-width: 768px) {
  .mv__sub {
    font-size: 17px;
  }
}

.mv__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .mv__actions {
    flex-direction: row;
    align-items: center;
  }
}

.mv__trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.mv__trust-item {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  color: #6c7a78;
  font-weight: 500;
}
.mv__trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #1f9e8f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/11px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/11px no-repeat;
}

.mv__image {
  margin-top: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__image {
    margin-top: 0;
    width: 44%;
  }
}
.mv__image img {
  filter: drop-shadow(0 18px 30px rgba(19, 122, 110, 0.18));
}

/* ========================================================================
   共感セクション
   ======================================================================== */
@media screen and (min-width: 768px) {
  .empathy__inner {
    display: flex;
    align-items: center;
    gap: 48px;
  }
}

@media screen and (min-width: 768px) {
  .empathy__body {
    flex: 1;
  }
}

.empathy__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .empathy__title {
    font-size: 28px;
  }
}

.empathy__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.empathy__item {
  position: relative;
  background: #fff;
  border: 1px solid #e2ece9;
  border-radius: 14px;
  padding: 14px 16px 14px 48px;
  font-size: 15px;
  line-height: 1.7;
  box-shadow: 0 4px 14px rgba(19, 122, 110, 0.05);
}
.empathy__item::before {
  content: "“";
  position: absolute;
  left: 16px;
  top: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1f9e8f;
  opacity: 0.45;
  line-height: 1;
}

.empathy__close {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #137a6e;
}
@media screen and (min-width: 768px) {
  .empathy__close {
    font-size: 18px;
  }
}

.empathy__image {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .empathy__image {
    margin-top: 0;
    width: 38%;
    flex-shrink: 0;
  }
}

/* ========================================================================
   退職代行とは／3類型比較
   ======================================================================== */
.types__lead {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  color: #41414e;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .types__lead {
    font-size: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

.types__table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.type-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(19, 122, 110, 0.08);
  font-size: 14px;
}
.type-table th,
.type-table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid #e2ece9;
  border-right: 1px solid #e2ece9;
  vertical-align: middle;
}
.type-table thead th {
  background: #137a6e;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-right-color: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .type-table thead th {
    font-size: 15px;
  }
}
.type-table thead th:first-child {
  background: #1f9e8f;
}
.type-table tbody th {
  background: #eaf5f2;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .type-table tbody th {
    font-size: 14px;
  }
}
.type-table {
  /* 「弁護士」列を強調 */
}
.type-table th:last-child,
.type-table td:last-child {
  border-right: 0;
}
.type-table tr:last-child th,
.type-table tr:last-child td {
  border-bottom: 0;
}

.type-table__o {
  color: #1f9e8f;
  font-weight: 700;
}

.type-table__best {
  color: #ef6f1f;
  font-weight: 700;
}

.type-table__x {
  color: #b9c2c0;
  font-weight: 700;
}

.types__note {
  margin-top: 16px;
  font-size: 12.5px;
  color: #6c7a78;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .types__note {
    font-size: 13px;
  }
}

/* ========================================================================
   セルフ診断
   ======================================================================== */
.check__box {
  margin-top: 32px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 10px 30px rgba(19, 122, 110, 0.1);
}
@media screen and (min-width: 768px) {
  .check__box {
    padding: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

.check__question {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .check__question {
    font-size: 20px;
  }
}

.check__options {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .check__options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check__option {
  position: relative;
  text-align: left;
  background: #eaf5f2;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px 18px 16px 52px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
}
.check__option:hover {
  transform: translateY(-2px);
  border-color: #1f9e8f;
}
.check__option.is-active {
  border-color: #1f9e8f;
  background: #fff;
}
.check__option::before {
  content: attr(data-key);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1f9e8f;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check__results {
  margin-top: 22px;
}

.check-result {
  display: none;
  border: 2px solid #1f9e8f;
  border-radius: 14px;
  padding: 20px;
  background: linear-gradient(180deg, #eaf6f3 0%, #f5faf9 100%);
  animation: result-in 0.4s ease;
}
.check-result.is-show {
  display: block;
}

@keyframes result-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.check-result__label {
  font-size: 12px;
  font-weight: 700;
  color: #ef6f1f;
  letter-spacing: 0.04em;
}

.check-result__title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .check-result__title {
    font-size: 21px;
  }
}

.check-result__text {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.85;
}

.check-result__pick {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check-result__tag {
  background: #fff;
  border: 1px solid #1f9e8f;
  color: #137a6e;
  border-radius: 60px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
}

.check-result__cta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-result__cta .button {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .check-result__cta {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .check-result__cta .button {
    width: auto;
    min-width: 260px;
    font-size: 16px;
  }
}

/* ========================================================================
   サービス比較（本命）
   ======================================================================== */
.compare__list {
  margin-top: 36px;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .compare__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.service-card {
  background: #fff;
  border: 1px solid #e2ece9;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 26px rgba(19, 122, 110, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(19, 122, 110, 0.14);
}
.service-card.is-recommend {
  border-color: #ff8a3d;
  box-shadow: 0 12px 32px rgba(255, 138, 61, 0.18);
}

.service-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-card__label {
  display: inline-block;
  background: #eaf5f2;
  color: #137a6e;
  border-radius: 60px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 700;
}

.service-card__pickup {
  display: inline-block;
  background: linear-gradient(135deg, #ff8a3d 0%, #ef6f1f 100%);
  color: #fff;
  border-radius: 60px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 700;
}

.service-card__name {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .service-card__name {
    font-size: 22px;
  }
}

.service-card__features {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-card__feature {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.7;
}
.service-card__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1f9e8f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

.service-card__for {
  margin-top: 16px;
  background: #eaf5f2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.7;
}
.service-card__for strong {
  color: #137a6e;
}

.service-card__cta {
  margin-top: auto;
  padding-top: 18px;
}

.service-card__note {
  margin-top: 8px;
  font-size: 11px;
  color: #6c7a78;
  text-align: center;
}

/* ========================================================================
   失敗しない選び方（ステップ）
   ======================================================================== */
.choose__steps {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .choose__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.step-box {
  background: #fff;
  border: 1px solid #e2ece9;
  border-radius: 16px;
  padding: 28px 20px 24px;
  position: relative;
  text-align: center;
}

.step-box__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f9e8f 0%, #137a6e 100%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(19, 122, 110, 0.25);
}
.step-box__num span {
  font-size: 16px;
}

.step-box__title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.step-box__text {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #41414e;
  text-align: left;
}

/* ========================================================================
   FAQ（アコーディオン）
   ======================================================================== */
.faq__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .faq__list {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa-box {
  background: #fff;
  border: 1px solid #e2ece9;
  border-radius: 12px;
  overflow: hidden;
}
.qa-box.is-open {
  border-color: #1f9e8f;
}

.qa-box__head {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 16px 52px 16px 50px;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #2b2b33;
}
.qa-box__head::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #1f9e8f;
  font-size: 18px;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(0deg);
  background: #1f9e8f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M11 5h2v14h-2z'/%3E%3Cpath fill='white' d='M5 11h14v2H5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M11 5h2v14h-2z'/%3E%3Cpath fill='white' d='M5 11h14v2H5z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s;
}
.is-open .qa-box__head::after {
  transform: translateY(-50%) rotate(45deg);
}

.qa-box__body {
  display: none;
  padding: 0 18px 18px 50px;
  position: relative;
}
.qa-box__body::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ff8a3d;
  font-size: 18px;
}

.qa-box__text {
  font-size: 14px;
  line-height: 1.85;
  color: #41414e;
}

/* ========================================================================
   最終CTA
   ======================================================================== */
.cta {
  background: linear-gradient(135deg, #1f9e8f 0%, #137a6e 100%);
  color: #fff;
}

.cta__inner {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
  }
}

.cta__image {
  margin: 0 auto 20px;
  max-width: 220px;
}
@media screen and (min-width: 768px) {
  .cta__image {
    margin: 0;
    order: 2;
    width: 280px;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .cta__body {
    order: 1;
  }
}

.cta__text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: 30px;
  }
}

.cta__sub {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}
@media screen and (min-width: 768px) {
  .cta__sub {
    font-size: 16px;
  }
}

.cta__button {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cta__button {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* ========================================================================
   Footer
   ======================================================================== */
.footer {
  background: #20312e;
  color: rgba(255, 255, 255, 0.78);
  padding: 40px 0 28px;
}

.footer__brand {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.footer__nav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.footer__link:hover {
  color: #fff;
}

.footer__note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.62);
}
@media screen and (min-width: 768px) {
  .footer__note {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__note-item {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
}
.footer__note-item::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.footer__copyright {
  margin-top: 22px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================================================
   ページトップ
   ======================================================================== */
.pagetop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1f9e8f;
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
  box-shadow: 0 8px 20px rgba(19, 122, 110, 0.3);
  z-index: 90;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pagetop:hover {
  background: #137a6e;
}
.pagetop::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 4px;
}

/* SP固定追従CTA（MV通過後に表示。ファーストビューでのCTA重複を避ける）
   初期非表示は html.js 配下のみ＝JS障害時は常時表示にフォールバック */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid #e2ece9;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .fixed-cta {
    display: none;
  }
}
.fixed-cta .button {
  min-width: 0;
}

/* 初期非表示は head 内の js-early（インライン1行）で即時有効化する。
   script.js（is-show付与側）が死んだ場合はバーが出ないだけで本文には影響しない */
html.js-early .fixed-cta {
  transform: translateY(110%);
}
html.js-early .fixed-cta.is-show {
  transform: translateY(0);
}

/* ========================================================================
   コラム（情報記事）ページ
   ======================================================================== */
.column-article {
  /* 横paddingは .inner（SP18px/PC30px）に任せる。ショートハンドで上書きしないこと */
  max-width: 820px;
  margin: 0 auto;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .column-article {
    padding-top: 3.5rem;
  }
}

.column-article__label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #1f9e8f;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.column-article__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .column-article__title {
    font-size: 1.875rem;
  }
}

.column-article__date {
  font-size: 0.75rem;
  color: #6c7a78;
  margin-bottom: 1.5rem;
}

.column-article__body h2 {
  margin: 2.5rem 0 1rem;
  padding: 0.5rem 0.875rem;
  border-left: 4px solid #1f9e8f;
  background: #eaf5f2;
  border-radius: 0.25rem;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .column-article__body h2 {
    font-size: 1.375rem;
  }
}
.column-article__body p {
  margin: 0.875rem 0;
  line-height: 2;
}
.column-article__body ul,
.column-article__body ol {
  margin: 0.875rem 0;
  padding-left: 1.4em;
  line-height: 2;
}
.column-article__body ul li,
.column-article__body ol li {
  list-style: disc;
}
.column-article__body ol li {
  list-style: decimal;
}
.column-article__body strong {
  background: linear-gradient(transparent 65%, rgba(255, 138, 61, 0.35) 65%);
}
.column-article__body table {
  width: 100%;
  margin: 1rem 0;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.column-article__body table th,
.column-article__body table td {
  padding: 0.5rem 0.625rem;
  border: 1px solid #e2ece9;
  text-align: left;
}
.column-article__body table th {
  background: #eaf5f2;
}

.column-article__note {
  margin-top: 2rem;
  padding: 0.875rem;
  border: 1px solid #e2ece9;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: #6c7a78;
  line-height: 1.9;
}

.column-article__back {
  margin-top: 2rem;
  text-align: center;
}

/* ========================================================================
   入口（ブリッジ）LP 専用ブロック
   ※ .mv / .empathy / .cta / .button / .footer などは比較LPと共通利用
   ======================================================================== */
/* 画像なしの共感セクションは読みやすい幅に絞って中央寄せ */
@media screen and (min-width: 768px) {
  .empathy--solo .empathy__body {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

.empathy--solo .empathy__title,
.empathy--solo .empathy__close {
  text-align: center;
}

.bridge__text {
  margin-top: 18px;
  text-align: center;
  font-size: 15px;
  line-height: 1.95;
  color: #41414e;
}
@media screen and (min-width: 768px) {
  .bridge__text {
    font-size: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bridge__strong {
  color: #137a6e;
  font-weight: 700;
}

.solution {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .solution {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.solution__item {
  background: #fff;
  border: 1px solid #e2ece9;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(19, 122, 110, 0.06);
}

.solution__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #eaf5f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: #1f9e8f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.solution__title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
}

.solution__text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.75;
  color: #41414e;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .solution__text {
    text-align: center;
  }
}

.bridge__cta {
  margin-top: 32px;
  text-align: center;
}

/* セルフチェックリスト（有休・給料チェックLP） */
.checklist {
  margin-top: 30px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 10px 30px rgba(19, 122, 110, 0.1);
}
@media screen and (min-width: 768px) {
  .checklist {
    padding: 36px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
}

.checklist__lead {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .checklist__lead {
    font-size: 17px;
  }
}

.checklist__items {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #eaf5f2;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.checklist__item:has(input:checked) {
  border-color: #1f9e8f;
  background: #fff;
}

.checklist__checkbox {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: #1f9e8f;
  cursor: pointer;
}

.checklist .check-result {
  margin-top: 20px;
}

.checklist__note {
  margin-top: 14px;
  font-size: 12px;
  color: #6c7a78;
  text-align: center;
}

/* 退職後転職LP（バックエンド）— カテゴリ3枚グリッド */
.tenshoku__list {
  margin-top: 36px;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .tenshoku__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* 比較LP下部に“そっと置く”退職後の転職バナー（売り込みすぎない） */
.backend-banner {
  background: #eaf5f2;
  border: 1px solid #e2ece9;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .backend-banner {
    padding: 40px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}

.backend-banner__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1f9e8f;
}

.backend-banner__title {
  margin-top: 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .backend-banner__title {
    font-size: 23px;
  }
}

.backend-banner__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.85;
  color: #41414e;
}
@media screen and (min-width: 768px) {
  .backend-banner__text {
    font-size: 15px;
  }
}

.backend-banner__cta {
  margin-top: 20px;
}
