/* ============================================
   共通変数・ベーススタイル
   ============================================ */
:root {
  --color-main: #ed8a4a;
  --color-main-dark: #d97540;
  --color-main-light: #fbe4d2;
  --color-bg-light: #fffaf5;
  --color-bg-accent: #fdf2e8;
  --color-text: #2a2a2a;
  --color-text-body: #444;
  --color-text-sub: #555;
  --color-border: #f3e1cd;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

/* ============================================
   セクション共通見出し（全セクション統一）
   ============================================ */
.worry__heading,
.reason__heading,
.makeorder__heading,
.effort__heading,
.chosen__heading,
.survey__heading,
.point__heading {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 50px;
}

table td, table th{
  border: 1px solid #e4e4e4;
}

.worry__heading-en,
.reason__heading-en,
.makeorder__heading-en,
.effort__heading-en,
.chosen__heading-en,
.survey__heading-en,
.point__heading-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", var(--font-base);
  font-size: 110px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-main-light);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  opacity: 0.7;
}

.worry__heading-sub,
.reason__heading-sub,
.makeorder__heading-sub,
.effort__heading-sub,
.chosen__heading-sub,
.survey__heading-sub,
.point__heading-sub {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--color-main);
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  z-index: 1;
  font-weight: 700;
  padding: 0 20px;
}

.worry__heading-sub::before,
.worry__heading-sub::after,
.reason__heading-sub::before,
.reason__heading-sub::after,
.makeorder__heading-sub::before,
.makeorder__heading-sub::after,
.effort__heading-sub::before,
.effort__heading-sub::after,
.chosen__heading-sub::before,
.chosen__heading-sub::after,
.survey__heading-sub::before,
.survey__heading-sub::after,
.point__heading-sub::before,
.point__heading-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--color-main);
}
.worry__heading-sub::before,
.reason__heading-sub::before,
.makeorder__heading-sub::before,
.effort__heading-sub::before,
.chosen__heading-sub::before,
.survey__heading-sub::before,
.point__heading-sub::before {
  left: -10px;
}
.worry__heading-sub::after,
.reason__heading-sub::after,
.makeorder__heading-sub::after,
.effort__heading-sub::after,
.chosen__heading-sub::after,
.survey__heading-sub::after,
.point__heading-sub::after {
  right: -10px;
}

.worry__title,
.reason__title,
.makeorder__title,
.effort__title,
.chosen__title,
.survey__title,
.point__title {
  position: relative;
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 0.04em;
  z-index: 1;
  line-height: 1.5;
}

.worry__title::after,
.reason__title::after,
.makeorder__title::after,
.effort__title::after,
.chosen__title::after,
.survey__title::after,
.point__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-main);
  margin: 22px auto 0;
  border-radius: 2px;
}

/* ============================================
   セクション背景パターン（メリハリ）
   ============================================ */
.worry { background: #fff; }
.reason { background: var(--color-bg-light); }
.makeorder { background: #fff; }
.effort { background: var(--color-bg-light); }
.chosen { background: #fff; }
.survey { background: var(--color-bg-light); }
.point {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, #fff 100%);
}

/* セクション共通padding */
.worry, .reason, .makeorder, .effort, .chosen, .survey, .point {
  padding: 100px 20px;
}

/* ============================================
   もくじ（オレンジ系に統一）
   ============================================ */
.toc { padding: 50px 20px; background: #fff; }
.toc__inner {
  max-width: 880px;
  margin: 0 auto;
  background: ;
  border: 1px solid var(--color-border);
/*   border-left: 5px solid var(--color-main);
 */  border-radius: 4px;
  padding: 36px 44px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.toc__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.05em;
}
.toc__list { list-style: none; margin: 0; padding: 0; }
.toc__list li { border-bottom: 1px dashed var(--color-border); }
.toc__list li:last-child { border-bottom: none; }
.toc__list a {
  display: flex; align-items: center; padding: 14px 6px;
  color: var(--color-text-sub); text-decoration: none; font-size: 16px;
  transition: color 0.2s, background 0.2s;
}
.toc__list a:hover { color: var(--color-main-dark); background: rgba(237, 138, 74, 0.06); }
.toc__num {
  display: inline-block; min-width: 36px;
  font-size: 18px; font-weight: 700;
  color: var(--color-main); margin-right: 14px;
}
.toc__text { flex: 1; }
.toc__list a::after {
  content: "›"; color: #c0c0b8; font-size: 20px; margin-left: 8px;
  transition: transform 0.2s, color 0.2s;
}
.toc__list a:hover::after { color: var(--color-main); transform: translateX(3px); }

/* ============================================
   worry（お悩み）
   ============================================ */
.worry__inner { max-width: 960px; margin: 0 auto; }
.worry__intro {
  display: flex; gap: 36px; align-items: flex-start; margin-bottom: 40px;
}
.worry__image { flex: 0 0 320px; }
.worry__image img { width: 100%; height: auto; display: block; border-radius: 4px; }
.worry__lead {
  flex: 1; font-size: 16px; line-height: 1.95; color: var(--color-text-body); padding-top: 4px;
}
.worry__list { list-style: none; margin: 0 0 30px; padding: 0; }
.worry__item {
  position: relative; padding: 18px 10px 18px 48px;
  font-size: 16px; color: var(--color-text-body);
  border-bottom: 1px solid #ececec; transition: background 0.2s;
}
.worry__item:first-child { border-top: 1px solid #ececec; }
.worry__item::before {
  content: ""; position: absolute; left: 10px; top: 50%;
  width: 22px; height: 22px; margin-top: -11px;
  border: 2px solid var(--color-main); border-radius: 4px;
  background: #fff; box-sizing: border-box;
}
.worry__item::after {
  content: ""; position: absolute; left: 16px; top: 50%;
  width: 10px; height: 6px; margin-top: -5px;
  border-left: 2px solid var(--color-main); border-bottom: 2px solid var(--color-main);
  transform: rotate(-45deg);
}
.worry__item:hover { background: var(--color-bg-light); }
.worry__closing {
  font-size: 17px; line-height: 1.85; color: var(--color-text);
  text-align: center; margin: 40px 0 0; padding: 26px;
  background: var(--color-bg-accent); border-radius: 6px;
/*   border-left: 4px solid var(--color-main);
 */}
.worry__strong { color: var(--color-main-dark); font-weight: 700; }

/* ============================================
   reason（理由カード）
   ============================================ */
.reason__inner { max-width: 1100px; margin: 0 auto; }
.reason__lead {
  text-align: center; font-size: 17px; line-height: 2;
  color: var(--color-text-body); margin-bottom: 50px;
}
.reason__visual { margin: 0 auto 60px; max-width: 900px; overflow: hidden; border-radius: 6px; }
.reason__visual img { display: block; width: 100%; height: auto; }
.reason__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
.reason__item {
  background: #fff; padding: 48px 32px 32px;
  border-radius: 8px; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  position: relative;
}
.reason__num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-main); color: #fff;
  font-family: "Montserrat", var(--font-base);
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.04em; line-height: 1;
  box-shadow: 0 4px 10px rgba(237, 138, 74, 0.3);
}
.reason__name {
  font-size: 18px; font-weight: 700; color: var(--color-text);
  line-height: 1.6; margin-bottom: 14px; text-align: center;
}
.reason__desc {
  font-size: 14px; line-height: 1.95; color: var(--color-text-sub); text-align: left;
}

/* ============================================
   makeorder（メイクオーダー）
   ============================================ */
.makeorder__inner { max-width: 1000px; margin: 0 auto; }
.makeorder__lead {
  font-size: 16px; line-height: 2; color: var(--color-text-body); margin-bottom: 20px;
}
.makeorder__lead:last-of-type { margin-bottom: 70px; }
.makeorder__strong { color: var(--color-main-dark); font-weight: 700; }
.makeorder__steps { display: flex; flex-direction: column; gap: 64px; }
.makeorder__step-head {
  display: flex; align-items: center; gap: 20px;
  padding-bottom: 16px; margin-bottom: 30px;
  border-bottom: 2px solid var(--color-main-light);
}
.makeorder__step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-main); color: #fff;
  font-family: "Montserrat", var(--font-base);
  font-size: 22px; font-weight: 700; line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(237, 138, 74, 0.3);
}
.makeorder__step-name {
  font-size: 22px; font-weight: 700; color: var(--color-text);
  margin: 0; line-height: 1.5; letter-spacing: 0.03em;
}
.makeorder__step-body {
  display: flex; gap: 36px; align-items: flex-start;
}
.makeorder__step-image { flex: 0 0 320px; overflow: hidden; border-radius: 6px; }
.makeorder__step-image img { display: block; width: 100%; height: auto; }
.makeorder__step-desc {
  flex: 1; font-size: 15px; line-height: 2;
  color: var(--color-text-body); padding-top: 4px;
}

/* ============================================
   effort（取り組みテーブル）
   ============================================ */
.effort__inner { max-width: 1000px; margin: 0 auto; }
.effort__lead {
  text-align: center; font-size: 16px; line-height: 2;
  color: var(--color-text-body); margin-bottom: 40px;
}
.effort__table {
  width: 100%; border-collapse: collapse; table-layout: fixed;
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.effort__th {
  background: var(--color-main); color: #fff;
  font-size: 16px; font-weight: 700; letter-spacing: 0.05em;
  padding: 18px 24px; text-align: center; width: 35%;
}
.effort__th:last-child { width: 65%; }
.effort__td {
  font-size: 15px; line-height: 1.85; color: var(--color-text-body);
  padding: 22px 28px; vertical-align: middle; background: #fff;
}

.effort__td:hover{
  background-color: #fdebdd;  
}

.effort__td--head {
  background: #ffffff; color: var(--color-text);
  font-weight: 700; text-align: center; width: 35%;
}
.effort__table tbody tr + tr .effort__td {
  border-top: 1px solid var(--color-border);
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th{
  background-color: #fff;
}

table tbody tr:hover>td, table tbody tr:hover>th {
    background-color: #fdebdd;
}

/* ============================================
   chosen（選ばれる理由）
   ============================================ */
.chosen__inner { max-width: 1080px; margin: 0 auto; }
.chosen__list { display: flex; flex-direction: column; gap: 70px; }
.chosen__head {
  display: flex; align-items: center; gap: 24px; margin-bottom: 28px;
}
.chosen__num {
  font-family: "Montserrat", var(--font-base);
  font-size: 80px; font-weight: 800;
  color: var(--color-main); line-height: 1;
  letter-spacing: 0.02em; flex-shrink: 0;
  text-shadow: 3px 3px 0 var(--color-main-light);
}
.chosen__bar {
  flex: 1; background: var(--color-main); color: #fff;
  font-size: 19px; font-weight: 700; letter-spacing: 0.04em;
  padding: 18px 28px; line-height: 1.5;
  border-radius: 4px;
  position: relative;
}
.chosen__bar::before {
  content: ""; position: absolute; left: -12px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 16px; height: 16px; background: var(--color-main);
}
.chosen__body {
  display: flex; gap: 40px; align-items: flex-start; padding-left: 104px;
}
.chosen__text { flex: 1; }
.chosen__p {
  font-size: 15px; line-height: 1.95;
  color: var(--color-text-body); margin-bottom: 18px;
}
.chosen__p:last-child { margin-bottom: 0; }
.chosen__strong { color: var(--color-main-dark); font-weight: 700; }
.chosen__image { flex: 0 0 300px; overflow: hidden; border-radius: 6px; }
.chosen__image img { display: block; width: 100%; height: auto; }

/* ============================================
   survey（お客様の声）
   ============================================ */
.survey__inner { max-width: 1100px; margin: 0 auto; }
.survey__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.survey__item { margin: 0; }
.survey__btn {
  display: block; width: 100%; padding: 0;
  background: none; border: 0; cursor: pointer; overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.survey__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(237, 138, 74, 0.18);
}
.survey__btn img { display: block; width: 100%; height: auto; }

/* モーダル */
.survey-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 40px 20px;
}
.survey-modal[hidden] { display: none; }
.survey-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.75); cursor: pointer;
}
.survey-modal__inner { position: relative; max-width: 900px; max-height: 90vh; z-index: 1; }
.survey-modal__img { display: block; max-width: 100%; max-height: 90vh; height: auto; width: auto; }
.survey-modal__close {
  position: absolute; top: -16px; right: -16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--color-text); border: 0;
  font-size: 26px; line-height: 1; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.survey-modal__close:hover { background: var(--color-main); color: #fff; }

/* ============================================
   point（うれしいポイント）
   ============================================ */
.point__inner { max-width: 1100px; margin: 0 auto; }
.point__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 26px;
}
.point__item {
  list-style: none;
  flex: 0 0 calc((100% - 26px * 2) / 3);
  background: #fff; border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 36px 24px 32px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.point__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(237, 138, 74, 0.15);
}
.point__icon { width: 80px; height: 80px; margin: 0 auto 18px; }
.point__icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.point__name {
  font-size: 19px; font-weight: 700;
  color: var(--color-main); margin-bottom: 12px;
  letter-spacing: 0.04em; line-height: 1.5;
}
.point__desc {
  font-size: 14px; line-height: 1.85; color: var(--color-text-sub);
}

/* ============================================
   cta（コール・トゥ・アクション）
   ============================================ */
.cta { background: var(--color-bg-light); padding: 90px 20px; }
.cta__inner { max-width: 1000px; margin: 0 auto; }
.cta__lead {
  text-align: center; font-size: 22px; font-weight: 700;
  color: var(--color-text); letter-spacing: 0.05em;
  line-height: 1.8; margin-bottom: 50px;
}
.cta__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; justify-content: center; gap: 20px;
}
.cta__item { list-style: none; flex: 1; max-width: 300px; }
.cta__btn {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  width: 100%; padding: 22px 20px; border-radius: 8px;
  color: #fff; text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta__btn:hover {
  transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}
.cta__btn-text {
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2;
}
.cta__btn-sub { font-size: 12px; letter-spacing: 0.08em; opacity: 0.9; margin-bottom: 4px; width: 100%; text-align: center; }
.cta__btn-name { font-size: 20px; font-weight: 700; letter-spacing: 0.05em; width: 100%; text-align: center;}
.cta__btn--tel { background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-dark) 100%); }
.cta__btn--web { background: linear-gradient(135deg, #f5a06a 0%, var(--color-main) 100%); }
.cta__btn--line { background: linear-gradient(135deg, #2ecc6f 0%, #06c755 100%); }

/* ============================================
   キャンペーンバナー
   ============================================ */
.campaingbnr {
    width: 60%;
    margin: 80px auto 0px;
    max-width: 800px;
}

.campaingbnr02{
    margin: 0px auto 80px;

}
.campaingbnr a, .campaingbnr img { width: 100%; height: auto; display: block; }

/* ============================================
   タブレット 1024px以下
   ============================================ */
@media (max-width: 1024px) {
  .worry, .reason, .makeorder, .effort, .chosen, .survey, .point {
    padding: 80px 20px;
  }
  .worry__heading, .reason__heading, .makeorder__heading,
  .effort__heading, .chosen__heading, .survey__heading, .point__heading {
    margin-bottom: 50px; padding-top: 42px;
  }
  .worry__heading-en, .reason__heading-en, .makeorder__heading-en,
  .effort__heading-en, .chosen__heading-en, .survey__heading-en, .point__heading-en {
    font-size: 84px;
  }
  .worry__title, .reason__title, .makeorder__title,
  .effort__title, .chosen__title, .survey__title, .point__title {
    font-size: 28px;
  }
  /* toc */
  .toc { padding: 40px 16px; }
  .toc__inner { padding: 28px 30px; }
  .toc__title { font-size: 20px; }
  .toc__list a { font-size: 15px; padding: 13px 4px; }
  /* worry */
  .worry__intro { gap: 24px; }
  .worry__image { flex: 0 0 260px; }
  .worry__lead { font-size: 15px; line-height: 1.85; }
  .worry__item { font-size: 15px; padding: 16px 8px 16px 44px; }
  .worry__closing { font-size: 16px; }
  /* reason */
  .reason__lead { font-size: 16px; }
  .reason__item { padding: 42px 24px 26px; }
  .reason__num { width: 50px; height: 50px; font-size: 20px; top: -20px; }
  /* makeorder */
  .makeorder__lead { font-size: 15px; }
  .makeorder__step-body { gap: 28px; }
  .makeorder__step-image { flex: 0 0 280px; }
  .makeorder__step-name { font-size: 20px; }
  .makeorder__step-num { width: 50px; height: 50px; font-size: 20px; }
  /* effort */
  .effort__lead { font-size: 15px; }
  .effort__th { font-size: 15px; padding: 16px 20px; }
  .effort__td { font-size: 14px; padding: 18px 22px; }
  /* chosen */
  .chosen__num { font-size: 64px; }
  .chosen__bar { font-size: 17px; padding: 16px 22px; }
  .chosen__body { padding-left: 0; gap: 28px; }
  .chosen__image { flex: 0 0 260px; }
  /* survey */
  .survey__list { gap: 20px; }
  /* point */
  .point__list { gap: 20px; }
  .point__item { flex: 0 0 calc((100% - 20px * 2) / 3); padding: 32px 18px 28px; }
  .point__icon { width: 72px; height: 72px; }
  .point__name { font-size: 17px; }
  /* cta */
  .cta { padding: 80px 20px; }
  .cta__lead { font-size: 19px; }
  .cta__list { gap: 14px; }
  .cta__btn { padding: 18px 14px; gap: 10px; }
  .cta__btn-name { font-size: 17px; }
}

/* ============================================
   スマホ 599px以下
   ============================================ */
@media (max-width: 599px) {
  .worry, .reason, .makeorder, .effort, .chosen, .survey, .point {
    padding: 60px 16px;
  }
  .worry__heading, .reason__heading, .makeorder__heading,
  .effort__heading, .chosen__heading, .survey__heading, .point__heading {
    margin-bottom: 36px; padding-top: 30px;
  }
  .worry__heading-en, .reason__heading-en, .makeorder__heading-en,
  .effort__heading-en, .chosen__heading-en, .survey__heading-en, .point__heading-en {
    font-size: 50px; letter-spacing: 0.04em;
  }
  .worry__heading-sub, .reason__heading-sub, .makeorder__heading-sub,
  .effort__heading-sub, .chosen__heading-sub, .survey__heading-sub, .point__heading-sub {
    font-size: 11px; letter-spacing: 0.2em; margin-bottom: 12px;
  }
  .worry__title, .reason__title, .makeorder__title,
  .effort__title, .chosen__title, .survey__title, .point__title {
    font-size: 21px; letter-spacing: 0.03em; line-height: 1.5;
  }
  .worry__title::after, .reason__title::after, .makeorder__title::after,
  .effort__title::after, .chosen__title::after, .survey__title::after, .point__title::after {
    width: 38px; height: 2px; margin-top: 16px;
  }
  /* toc */
  .toc { padding: 30px 12px; }
  .toc__inner { padding: 20px 18px; border-left: none; }
  .toc__title { font-size: 18px; margin-bottom: 12px; padding-bottom: 10px; }
  .toc__list a { font-size: 14px; padding: 12px 2px; }
  .toc__num { min-width: 30px; font-size: 15px; margin-right: 10px; }
  .toc__list a::after { font-size: 18px; }
  /* worry */
  .worry__intro { flex-direction: column; gap: 18px; margin-bottom: 28px; }
  .worry__image { flex: 0 0 auto; width: 100%; max-width: 280px; margin: 0 auto; }
  .worry__lead { font-size: 14px; line-height: 1.8; padding-top: 0; }
  .worry__item { font-size: 14px; padding: 14px 6px 14px 38px; line-height: 1.6; }
  .worry__item::before { left: 8px; width: 20px; height: 20px; margin-top: -10px; }
  .worry__item::after { left: 13px; width: 9px; height: 5px; }
  .worry__closing { font-size: 14px; line-height: 1.75; padding: 18px 14px; }
  /* reason */
  .reason__lead { font-size: 14px; line-height: 1.9; margin-bottom: 32px; text-align: left; }
  .reason__lead br { display: none; }
  .reason__visual { margin-bottom: 36px; }
  .reason__list { grid-template-columns: 1fr; gap: 30px; }
  .reason__item { padding: 38px 22px 24px; }
  .reason__num { width: 46px; height: 46px; font-size: 18px; top: -18px; }
  .reason__name { font-size: 16px; margin-bottom: 12px; }
  .reason__desc { font-size: 13px; line-height: 1.85; }
  /* makeorder */
  .makeorder__lead { font-size: 14px; line-height: 1.9; margin-bottom: 16px; }
  .makeorder__lead:last-of-type { margin-bottom: 48px; }
  .makeorder__steps { gap: 48px; }
  .makeorder__step-head { gap: 14px; padding-bottom: 14px; margin-bottom: 20px; }
  .makeorder__step-num { width: 44px; height: 44px; font-size: 18px; }
  .makeorder__step-name { font-size: 17px; }
  .makeorder__step-body { flex-direction: column; gap: 18px; }
  .makeorder__step-image { flex: none; width: 100%; }
  .makeorder__step-desc { font-size: 14px; line-height: 1.9; }
  /* effort */
  .effort__lead { font-size: 14px; line-height: 1.9; text-align: left; margin-bottom: 28px; }
  .effort__table, .effort__table tbody, .effort__table tr, .effort__table td {
    display: block; width: 100%;
  }
  .effort__table thead { display: none; }
  .effort__table tr { border-bottom: 1px solid var(--color-border); }
  .effort__table tr:last-child { border-bottom: none; }
  .effort__td { font-size: 14px; line-height: 1.8; padding: 14px 18px; text-align: left; }
  .effort__td--head { font-size: 14px; text-align: left; padding: 14px 18px; background: var(--color-bg-accent); width: 100%; }
  .effort__table tbody tr + tr .effort__td { border-top: none; }
  /* chosen */
  .chosen__list { gap: 48px; }
  .chosen__head { gap: 14px; margin-bottom: 18px; }
  .chosen__num { font-size: 44px; text-shadow: 2px 2px 0 var(--color-main-light); }
  .chosen__bar { font-size: 14px; padding: 12px 16px; line-height: 1.45; }
  .chosen__bar::before { width: 12px; height: 12px; left: -8px; }
  .chosen__body { flex-direction: column; gap: 18px; padding-left: 0; }
  .chosen__image { flex: none; width: 100%; order: -1; }
  .chosen__p { font-size: 14px; line-height: 1.9; margin-bottom: 14px; }
  /* survey */
  .survey__list { grid-template-columns: 1fr; gap: 18px; max-width: 360px; margin: 0 auto; }
  .survey-modal__close { top: -14px; right: -10px; width: 38px; height: 38px; font-size: 22px; }
  /* point */
  .point__list { gap: 14px; }
  .point__item { flex: 0 0 calc((100% - 14px) / 2); padding: 26px 14px 22px; border-radius: 12px; }
  .point__icon { width: 56px; height: 56px; margin-bottom: 12px; }
  .point__name { font-size: 15px; margin-bottom: 10px; }
  .point__desc { font-size: 12px; line-height: 1.75; }
  /* cta */
  .cta { padding: 60px 16px; }
  .cta__lead { font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
  .cta__lead br { display: none; }
  .cta__list { flex-direction: column; gap: 12px; max-width: 360px; margin: 0 auto; }
  .cta__item { max-width: none; }
  .cta__btn { padding: 18px 20px; }
  .cta__btn-name { font-size: 18px; }
  /* campaingbnr */
      .campaingbnr {
        width: 92%;
        margin-right: auto;
        margin-left: auto;
    }
}

.topvisual{
max-width: 1400px;
margin: auto;  
}

.topvisual .img img{
  opacity: 1;
  filter: none;
  object-fit: contain;
}

.topvisual .img:before{
  padding-top: 60%;
}

.topvisual.pc-none{
  display: none;
}

@media screen and (max-width:599px) {
.topvisual.sp-none{
  display: none;
}

.topvisual.pc-none{
  display: block;
  height: 100%;
  width: 100%;
}

.topvisual.pc-none img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topvisual.pc-none .img:before{
  padding-top: 220%;
}
}

body{
  overflow-x: hidden;
}

.cta__btn,
.cta__btn:link,
.cta__btn:visited,
.cta__btn:hover,
.cta__btn:active,
.cta__btn:focus {
  color: #fff;
}
.cta__btn:hover {
  opacity: 0.85;
}

@media screen and (max-width:599px) {
#page{
      width: 100%;
    overflow-x: hidden;
} 
}

