.p-header__logo {
  width: 590px;
  height: 49px;
}
@media screen and (max-width: 1199px) {
  .p-header__logo {
    width: calc(590 / 1200 * 100vw);
    height: calc(49 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: calc(335 / 375 * 100vw);
    height: calc(30 / 375 * 100vw);
  }
}

.p-support__lead{
  padding-top: 110px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1439px) {
  .p-support__lead{
    padding-top: calc(110 / 1440 * 100vw);
    padding-bottom: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-support__lead{
    padding-top: calc(80 / 375 * 100vw);
    padding-bottom: calc(28 / 375 * 100vw);
  }
}

.p-support__lead img{
  width: 622px;
  height: 83px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-support__lead img{
    width: calc(622 / 1440 * 100vw);
    height: calc(83 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-support__lead img{
    width: calc(241 / 375 * 100vw);
    height: calc(72 / 375 * 100vw);
  }
}

.p-support__content img{
  width: 810px;
  height: 85px;
}
@media screen and (max-width: 1439px) {
  .p-support__content img{
    width: calc(810 / 1440 * 100vw);
    height: calc(85 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-support__content img{
    width: calc(250 / 375 * 100vw);
    height: calc(136 / 375 * 100vw);
  }
}

/* Feature section */
.c-feature {
  padding: 80px 0 90px;
  background: #fff;
}

.c-feature__heading {
  text-align: center;
  margin-bottom: 40px;
}

.c-feature__title {
  font-size: 32px;
  font-weight: 700;
  color: #553018;
  letter-spacing: 0.08em;
}

.c-feature__titleAccent {
  color: #f5a623;
  font-size: 36px;
  font-weight: 800;
}

.c-feature__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.c-feature-card {
  height: 100%;
  border: 2px solid #f7e889;
  border-radius: 18px;
  padding: 28px 26px 32px;
  box-shadow: -8px 12px 22px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: -10px 16px 26px rgba(0, 0, 0, 0.16);
}

.c-feature-card__header {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.c-feature-card__number {
  font-size: 44px;
  font-weight: 800;
  color: #f1d238;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  line-height: 1;
}

.c-feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #f59b00;
  line-height: 1.3;
}

.c-feature-card__image {
  margin-bottom: 20px;
}

.c-feature-card__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.c-feature-card__text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

@media screen and (max-width: 767px) {
  .c-feature {
    padding: 56px 0 64px;
  }

  .c-feature__title {
    font-size: 26px;
    letter-spacing: 0.06em;
  }

  .c-feature__titleAccent {
    font-size: 30px;
  }

  .c-feature-card {
    padding: 22px 20px 26px;
  }

  .c-feature-card__header {
    margin-bottom: 14px;
  }

  .c-feature-card__number {
    font-size: 38px;
  }

  .c-feature-card__title {
    font-size: 18px;
  }
}

/* 郵便番号 住所表示メッセージ */
.postal-message {
  font-size: 14px;
  margin-top: 12px;
  line-height: 10px;
}
@media screen and (max-width: 1439px) {
  .postal-message {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(12 / 1440 * 100vw);
    line-height: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .postal-message {
    font-size: calc(10 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
    line-height: calc(7 / 375 * 100vw);
  }
}

.p-example * {
  letter-spacing: 0;
}

.p-example {
  padding: 68px 0 69px 0;
}
@media screen and (max-width: 1199px) {
  .p-example {
    padding: calc(68 / 1200 * 100vw) 0 calc(69 / 1200 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-example {
    padding: calc(44 / 375 * 100vw) 0 calc(50 / 375 * 100vw) 0;
  }
}
.p-example .l-container {
  margin: 0 auto;
  padding-left: 90px;
  padding-right: 90px;
}
@media screen and (max-width: 1199px) {
  .p-example .l-container {
    padding-left: calc(90 / 1200 * 100vw);
    padding-right: calc(90 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example .l-container {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
  }
}

/* ===== 見出し ===== */
.p-example__heading {
  margin-bottom: 49px;
}
@media screen and (max-width: 1199px) {
  .p-example__heading {
    margin-bottom: calc(49 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__heading {
    margin-bottom: calc(28 / 375 * 100vw);
  }
}
.p-example__title {
  font-size: 35px;
  color: #42210b;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .p-example__title {
    font-size: calc(35 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__title {
    font-size: calc(22 / 375 * 100vw);
    line-height: calc(35 / 375 * 100vw);
  }
}
.p-example__titleAccent {
  position: relative;
  display: inline-block;
}
.p-example__titleAccent::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 3px;
  width: 101%;
  height: 12px;
  background: var(--color-main);
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .p-example__titleAccent::after {
    left: calc(-4 / 1200 * 100vw);
    height: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__titleAccent {
    display: inline;
    padding: 0 2px;
    background-image: linear-gradient(
      to bottom,
      transparent 60%,
      var(--color-main) 60%,
      var(--color-main) 92%,
      transparent 92%
    );
  }
  .p-example__titleAccent::after { display: none; }
}

/* ===== スライダー ===== */
.p-example__slider {
  position: relative;
}
.p-example__viewport {
  overflow: visible;
}
.p-example__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .p-example__track {
    gap: calc(30 / 1200 * 100vw);
  }
}

/* ===== カード ===== */
.p-example-card {
  border-radius: 10px;
  border: 1px solid var(--color-main);
  background-color: var(--color-white);
  box-shadow: -4px 4px var(--color-main);
  padding: 25px 20px 30px;
  width: 320px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1439px) {
  .p-example-card {
    border-radius: calc(10 / 1440 * 100vw);
    box-shadow: calc(-4 / 1440 * 100vw) calc(4 / 1440 * 100vw) var(--color-main);
    padding: calc(25 / 1440 * 100vw) calc(20 / 1440 * 100vw) calc(30 / 1440 * 100vw);
    width: calc(320 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card {
    border-radius: calc(10 / 375 * 100vw);
    box-shadow: calc(-4 / 375 * 100vw) calc(4 / 375 * 100vw) var(--color-main);
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(22 / 375 * 100vw);
    width: 100%;
    flex: 0 0 100%;
  }
}

/* クローンはデフォルト非表示 */
.p-example-card.is-clone {
  display: none;
}

/* SPでのみ表示（カード本体と同じdisplay値に揃える） */
@media screen and (max-width: 767px) {
  .p-example-card.is-clone {
    display: flex;
  }
}

/* タイトル */
.p-example-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: #3f2011;
  margin-bottom: 10px;
  height: 112px;
}
@media screen and (max-width: 1439px) {
  .p-example-card__title {
    font-size: calc(18 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
    height: calc(112 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__title {
    font-size: calc(17 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
    height: calc(106 / 375 * 100vw);
  }
}

/* 画像 */
.p-example-card__image {
  width: 280px;
  height: 175px;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1439px) {
  .p-example-card__image {
    width: calc(280 / 1440 * 100vw);
    height: calc(175 / 1440 * 100vw);
    margin-bottom: calc(14 / 1440 * 100vw);
    border-radius: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__image {
    width: 100%;
    height: calc(190 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
}
.p-example-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 職種・年収 */
.p-example-card__info {
  margin-bottom: 12px;
}
@media screen and (max-width: 1439px) {
  .p-example-card__info {
    margin-bottom: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__info {
    margin-bottom: calc(12 / 375 * 100vw);
  }
}
.p-example-card__job,
.p-example-card__salary {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.p-example-card__job {
  margin-bottom: 6px;
}
@media screen and (max-width: 1439px) {
  .p-example-card__job,
  .p-example-card__salary {
    font-size: calc(16 / 1440 * 100vw);
    gap: calc(5 / 1440 * 100vw);
  }
  .p-example-card__job {
    margin-bottom: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__job,
  .p-example-card__salary {
    font-size: calc(15 / 375 * 100vw);
    gap: calc(8 / 375 * 100vw);
  }
  .p-example-card__job {
    margin-bottom: calc(6 / 375 * 100vw);
  }
}

/* アイコン（SVG） */
.p-example-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 1439px) {
  .p-example-card__icon {
    width: calc(20 / 1440 * 100vw);
    height: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__icon {
    width: calc(20 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
  }
}

/* タグ（オレンジバッジ） */
.p-example-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1439px) {
  .p-example-card__tags {
    gap: calc(6 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__tags {
    gap: calc(6 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
  }
}
.p-example-card__tag {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 5px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1439px) {
  .p-example-card__tag {
    font-size: calc(13 / 1440 * 100vw);
    padding: calc(5 / 1440 * 100vw) calc(5 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__tag {
    font-size: calc(12 / 375 * 100vw);
    padding: calc(5 / 375 * 100vw) calc(10 / 375 * 100vw);
    border-radius: calc(4 / 375 * 100vw);
  }
}

/* 箇条書き（淡黄背景） */
.p-example-card__list {
  background-color: var(--color-bg);
  border-radius: 8px;
  padding: 15px 10px;
  list-style: none;
  margin: 0;
  /* flex: 1; */
}
@media screen and (max-width: 1439px) {
  .p-example-card__list {
    border-radius: calc(8 / 1440 * 100vw);
    padding: calc(15 / 1440 * 100vw) calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__list {
    border-radius: calc(8 / 375 * 100vw);
    padding: calc(14 / 375 * 100vw) calc(14 / 375 * 100vw) calc(14 / 375 * 100vw) calc(16 / 375 * 100vw);
  }
}
.p-example-card__list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-black);
  padding-left: 10px;
  position: relative;
  margin-bottom: 6px;
}
.p-example-card__list li:last-child {
  margin-bottom: 0;
}
.p-example-card__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1439px) {
  .p-example-card__list li {
    font-size: calc(14 / 1440 * 100vw);
    padding-left: calc(10 / 1440 * 100vw);
    margin-bottom: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example-card__list li {
    font-size: calc(13 / 375 * 100vw);
    padding-left: calc(14 / 375 * 100vw);
    margin-bottom: calc(6 / 375 * 100vw);
  }
}

/* ===== 矢印・ドット（PCでは非表示） ===== */
.p-example__arrow {
  display: none;
}
.p-example__dots {
  display: none;
}

/* ===== CTAボタン ===== */
.p-example__cta {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 1439px) {
  .p-example__cta {
    margin-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__cta {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-example__ctaButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 338px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 600;
  border-radius: 100px;
  position: relative;
  text-decoration: none;
}
.p-example__ctaButton:hover {
  color: var(--color-white);
}
.p-example__ctaButton::before {
  background-image: url(../images/form_button_next.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 13px;
  margin: auto 0;
  position: absolute;
  right: 30px;
  top: 0;
  width: 7px;
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .p-example__ctaButton {
    height: calc(70 / 1440 * 100vw);
    width: calc(338 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
    border-radius: calc(100 / 1440 * 100vw);
  }
  .p-example__ctaButton::before {
    height: calc(13 / 1440 * 100vw);
    right: calc(30 / 1440 * 100vw);
    width: calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__ctaButton {
    width: 100%;
    max-width: calc(330 / 375 * 100vw);
    height: calc(65 / 375 * 100vw);
    font-size: calc(20 / 375 * 100vw);
    border-radius: calc(100 / 375 * 100vw);
  }
  .p-example__ctaButton::before {
    height: calc(11 / 375 * 100vw);
    right: calc(20 / 375 * 100vw);
    width: calc(6 / 375 * 100vw);
  }
}

/* ==============================
   SP表示でスライダー化
============================== */
@media screen and (max-width: 767px) {
  .p-example__slider {
    /* l-container の左右paddingを取り戻して、shadow分の余白を確保 */
    margin: 0 calc(-20 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
  .p-example__viewport {
    overflow: hidden;
    margin-left: calc(-4 / 375 * 100vw);   /* ← 追加：左に拡張 */
    padding: calc(8 / 375 * 100vw) 0 calc(8 / 375 * 100vw) calc(4 / 375 * 100vw);
  }
  .p-example__track {
    flex-wrap: nowrap;
    /* カード間のすき間 20px */
    gap: calc(20 / 375 * 100vw);
    justify-content: flex-start;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  /* 矢印ボタン
     ドロップシャドウ：X 0 / Y 0 / blur 4.375px / カラー #300 / 不透明度 8%
     top はJSで現在カードの画像中央に動的に設定 */
  .p-example__arrow {
    display: block;
    position: absolute;
    /* 初期値（JS実行前の保険）。実際は JS から top を上書き */
    top: 50%;
    transform: translateY(-50%);
    width: calc(35 / 375 * 100vw);
    height: calc(35 / 375 * 100vw);
    border-radius: 50%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 4.375px rgba(51, 0, 0, 0.08);
  }
  .p-example__arrow img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .p-example__arrow--prev {
    left: calc(8 / 375 * 100vw);
  }
  .p-example__arrow--next {
    right: calc(8 / 375 * 100vw);
  }

  /* ドット */
  .p-example__dots {
    display: flex;
    justify-content: center;
    gap: calc(8 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
  }
  .p-example__dot {
    width: calc(8 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
    border-radius: 50%;
    background-color: #fcfae4;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .p-example__dot.is-active {
    background-color: var(--color-main);
  }
}
