:root {
  /*--header-height: 110px;*/
  --c-accent: #d45d4a;
  --c-text: #333333;
  --c-muted: #6b7280;
  --c-border: rgba(0, 0, 0, .08);
}
html, body {
  height: auto;
  overflow: visible;
}
.minchou {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}
.bg-blue {
  background: #ebf4fc;
}
.bg_beige {
  background: #fcf7ef;
}
.bg_gray {
  background: #f7f7f7;
}
.bg_01, .bg_02, .bg_03, .bg_04, .bg_05, .bg_06, .bg_07 {
  position: relative;
  overflow: hidden;
}
.bg_01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_01.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_02.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_03::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_03.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_04::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_04.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_05::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_05.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_06::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_06.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_07::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_07.webp") center / cover no-repeat;
  z-index: -1;
}
/* sticky header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  height: var(--header-h);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.header__inner {
  align-items: center;
}
/* ===== Brand ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-text);
}
a.brand img {
  width: 300px;
}
/* ===== Right area ===== */
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header__info {
  text-align: right;
  line-height: 1.2;
}
.header__tel {
  display: inline-block;
  text-decoration: none;
  color: var(--c-text);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .02em;
}
.header__hours {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
}
.header__hoursRow {
  display: block;
}
.header__hours_beige {
  background: #998c70;
  color: #fff;
  font-size: 80%;
  padding: 3px 6px;
  margin-left: 5px;
}
/* CTA */
.header__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 6px;
  line-height: 1.1;
  min-width: 240px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  white-space: nowrap;
}
/* SP固定CTAボタン（headerの外に配置） */
.sp-fixed-cta {
  display: none;
}
@media (max-width: 840px) {
  /* タブレット以下では旧ヘッダーCTAを隠し、pill型固定CTAに一本化 */
  .header__cta._forPC {
    display: none !important;
  }
  .sp-fixed-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .sp-fixed-cta .header__ctaBtn {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: 999px;
    font-size: 15px;
    animation: ctaFloat 2.8s ease-in-out infinite;
  }
}
.header__ctaIcon {
  width: 22px;
  height: 22px;
  color: #fff;
  flex-shrink: 0;
}
.header__ctaText {
  display: flex;
  flex-direction: column;
}
.header__ctaSub {
  font-size: 10px;
  font-weight: 700;
  opacity: .85;
  margin-top: 2px;
}
@media (min-width: 741px) {
  .header__ctaBtn:hover {
    filter: brightness(0.98);
  }
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .brand__org {
    font-size: 16px;
  }
  .header__tel {
    font-size: 22px;
  }
  .header__ctaBtn {
    min-width: 220px;
  }
}
@media (max-width: 840px) {
  /* 旧ヘッダーCTA固定化は廃止（pill型固定CTAに一本化） */
}
@media (max-width: 740px) {
  :root {
    /*--header-h: 112px;-*/
  }
  .header {
    height: var(--header-h);
    align-items: stretch;
    padding: 10px 0;
  }
  .header__brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__right {
    gap: 10px;
  }
  .header__info {
    white-space: nowrap;
  }
  .header__tel {
    font-size: 18px;
  }
  .header__hours {
    font-size: 11px;
  }
  .header__cta {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
  }
  .header__ctaBtn {
    width: 100%;
    min-width: unset;
    padding: 12px 12px;
    white-space: normal;
  }
}
/* ===== Hero base ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: url("../images/mv_bg.webp") center / cover no-repeat;
  padding: 50px 0 0;
}
/* ===== Content ===== */
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero__body {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.hero__text {
  padding: 40px 0;
}
.hero__doctor {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
.hero__doctor img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.hero__doctor-badge {
  position: absolute;
  right: 10px;
  bottom: 20px;
  margin: 0;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #1c4370;
  border-radius: 4px;
  color: #1c4370;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.hero__doctor-badge-name {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.hero__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 20px;
  color: #1c4370;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke fill;
}
.hero__zero {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.55);
  padding: 12px 18px;
  border-radius: 0;
}
.hero__zero-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__zero-list li {
  color: #e95513;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 4px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}
.hero__zero-list li::before {
  content: "・";
}
.hero__zero-list li:last-child {
  margin-bottom: 0;
}
.hero__zero-num {
  font-weight: 900;
  color: #e95513;
  margin: 0;
  line-height: 1;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke fill;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}
.hero__zero-num span {
  font-family: ui-sans-serif, system-ui, -apple-system, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", Arial, sans-serif;
  font-size: 90px;
  line-height: 1;
}
.hero__zero-num .hero__zero-yen {
  font-family: ui-sans-serif, system-ui, -apple-system, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", Arial, sans-serif;
  font-size: 36px;
}
.hero__catch-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.hero__limited {
  background: #dd960f;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 -1px;
  padding: 7px 24px;
  border-radius: 6px 6px 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero__catch {
  background: linear-gradient(135deg, #d4a843 0%, #b8860b 20%, #e6c35c 40%, #a67c00 60%, #c9a84c 80%, #b8860b 100%);
  font-size: 42px;
  font-weight: 900;
  color: #1c4370;
  margin: 0;
  padding: 10px 24px;
  line-height: 1.3;
  letter-spacing: .04em;
  border-radius: 8px;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}
@media (max-width: 740px) {
  .hero {
    padding: 20px 0 0;
    background-position: left center;
  }
  .hero__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__text {
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .hero__title {
    font-size: 5.2vw;
  }
  .hero__zero {
    flex-wrap: wrap;
    padding: 10px 14px;
    justify-content: center;
  }
  .hero__zero-list {
    text-align: left;
  }
  .hero__zero-list li {
    font-size: 16px;
  }
  .hero__zero-num span {
    font-size: 60px;
  }
  .hero__limited {
    font-size: 12px;
    padding: 5px 16px;
  }
  .hero__catch {
    font-size: 7vw;
    white-space: nowrap;
    padding: 8px 16px;
  }
  .hero__catch-wrap {
    align-items: center;
  }
  .hero__doctor {
    position: static;
    width: 158px;
    height: auto;
    align-self: flex-end;
  }
  .hero__doctor img {
    width: 100%;
    height: auto;
  }
  .hero__doctor-badge {
    position: absolute;
    right: auto;
    left: 5%;
    bottom: 20px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
  }
  .hero__doctor-badge-name {
    font-size: 18px;
    letter-spacing: 0.08em;
  }
}
/* ===== Compare Table ===== */
.compare-table-wrap {
  max-width: 700px;
  margin: 0 auto 40px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  text-align: center;
}
.compare-table th,
.compare-table td {
  padding: 12px 14px;
  border: 1px solid #999;
}
.compare-table thead th {
  background: #f3f4f6;
  color: #333;
  font-weight: 800;
}
.compare-table thead th:first-child {
  background: #fff;
}
.compare-table thead .compare-table__hl {
  background: #e6f2ff;
  color: #333;
}
.compare-table tbody th {
  background: #fff;
  font-weight: 800;
  text-align: left;
}
.compare-table tbody td {
  background: #f3f4f6;
  color: #333;
  font-weight: 600;
}
.compare-table tbody .compare-table__hl {
  background: #e6f2ff;
  color: #333;
}
.compare-table__zero {
  color: #e95513;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.compare-table__zero small {
  font-size: 18px;
}
.compare-table__notes {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 12px;
  color: #e95513;
  font-weight: 600;
}
.compare-table__notes li {
  margin-bottom: 2px;
}
@media (max-width: 740px) {
  .compare-table {
    font-size: 13px;
  }
  .compare-table thead th,
  .compare-table tbody th,
  .compare-table tbody td {
    padding: 8px 8px;
  }
  .compare-table__zero {
    font-size: 26px;
  }
}
/* ===== CTA Block ===== */
.cta-block {
  background: #1a5f9e;
  text-align: center;
}
.cta-block__title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.7;
  margin: 0 0 40px;
}
.cta-block__badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.cta-block__badges img {
  width: 120px;
  height: 120px;
}
.cta-block__web {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: .08em;
}
.cta-block .access_cta {
  margin-bottom: 20px;
}
.cta-block__note {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 740px) {
  .cta-block__title {
    font-size: 20px;
  }
  .cta-block__badges {
    gap: 16px;
  }
  .cta-block__badges img {
    width: 90px;
    height: 90px;
  }
  .cta-block__web {
    font-size: 18px;
  }
}
/* ===== Onayami ===== */
.onayami {
  background: linear-gradient(135deg, #555 0%, #777 50%, #666 100%);
  overflow: hidden;
  text-align: center;
}
.onayami__title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 40px;
  text-align: center;
}
.onayami__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.onayami__list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
}
.onayami__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: url("../images/check_wh.svg") no-repeat center / contain;
}
.onayami__list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 740px) {
  .onayami__title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .onayami__list li {
    font-size: 14px;
  }
}
/* ===== Nayami ===== */
.nayami {
  background: url("../images/onayami.webp") calc(50% + 200px) center / auto 100% no-repeat;
  border-top: 2px solid #1a5f9e;
  border-right: none;
}
.nayami__container {
  max-width: 800px;
}
.nayami__text {
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.nayami__title {
  font-size: 24px;
  font-weight: 900;
  color: #333;
  margin: 0 0 30px;
}
.nayami__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nayami__list li {
  padding-left: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}
.nayami__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.nayami__list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 740px) {
  .nayami {
    border-right: none;
    background-size: auto 70%;
    background-position: right bottom;
    background-image: none;
    position: relative;
  }
  .nayami::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 70%;
    background: url("../images/onayami.webp") right bottom / contain no-repeat;
    opacity: 0.25;
    z-index: 0;
  }
  .nayami__title {
    font-size: 20px;
  }
  .nayami__list li {
    font-size: 14px;
  }
}
.hero__bar {
  background: #998c70;
  padding: 18px 12px;
}
.hero__barText {
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 800;
  letter-spacing: .03em;
  font-size: 22px;
}
@media (max-width: 740px) {
  .hero__barText {
    font-size: 16px;
  }
}
/* ユーザーが「動き減らす」設定なら止める */
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.section_title {
  text-align: center;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
  margin-bottom: 60px;
}
.text_gold {
  color: #998c70 !important
}
.text_navy {
  color: #1c4370 !important
}
.text_blue {
  color: #3f6eb4 !important
}
.text_red {
  color: #e95513 !important
}
.text_white {
  color: #ffffff !important
}
.title_bg_blue {
  text-align: center;
  color: #1c4370;
  background: #dfeaf8;
  padding: 20px 15px;
}
.title_bg_beige {
  text-align: center;
  color: #1c4370;
  background: #fcf3dd;
  padding: 20px 15px;
}
.js-line {
  position: relative;
  display: inline-block;
  z-index: 0; /* ← 追加：スタックコンテキスト基準 */
  isolation: isolate; /* ← 追加：-1でも裏に消えにくい */
}
.js-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: #f3de3a;
  z-index: -1; /* 文字の後ろ */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .8s cubic-bezier(.77, 0, .18, 1);
}
.js-line.is-active::after {
  transform: scaleX(1);
}
.section_title__sub {
  text-align: center;
  font-weight: 800;
  font-size: 18px;
}
.section_title--line {
  position: relative;
  padding: 20px 0;
  text-align: center;
  overflow: visible;
}
/* 共通ライン */
.section_title--line::before, .section_title--line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: min(1200px, calc(100vw - 40px));
  height: 3px;
  background: linear-gradient(to right, transparent, #998c70 20%, #998c70 80%, transparent);
  transition: transform 0.8s cubic-bezier(.22, .61, .36, 1);
}
.section_title--line::before {
  top: 0;
}
.section_title--line::after {
  bottom: 0;
}
/* 発火後 */
.section_title--line.is-active::before, .section_title--line.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
.section_title--line.section_title--line-navy::before, .section_title--line.section_title--line-navy::after {
  height: 1px;
  background: #1c4370;
}
.section_title--line::before {
  top: 0;
}
.section_title--line::after {
  bottom: 0;
}
/* about */
.white_box {
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .12);
}
.align-center {
  align-items: center;
}
.exo__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 740px) {
  .exo__image img {
    width: 50%;
    margin: 0 auto;
  }
}
.check_list {
  max-width: 940px;
  margin: 60px auto 60px;
}
.check_list__inner {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}
.check_list__inner li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-weight: 800;
  line-height: 1.6;
}
.check_list__inner li span {
  font-size: 120%;
  color: #3f6eb4;
}
.check_list__inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  background: url("../images/check_grn.webp") no-repeat center / contain;
}
@media (max-width: 980px) {
  .check_list.grid__wrapper {
    gap: 0;
  }
}
@media (max-width: 740px) {
  .check_list__inner {
    font-size: 16px;
  }
  .check_list__inner li::before {
    top: 4px;
  }
}
.hikaku__block {
  background: #fff;
}
.hikaku__row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
}
.hikaku__img img {
  width: 100%;
  height: auto;
  display: block;
}
.hikaku__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hikaku__arrow img {
  width: 100%;
  height: auto;
  display: block;
}
.hikaku__mid {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.hikaku__mid_arrow {
  width: 70px;
  height: auto;
  display: block;
}
.hikaku__desc .title_bg_beige {
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 740px) {
  .hikaku__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hikaku__arrow {
    transform: rotate(90deg);
  }
  .hikaku__arrow img {
    width: 70px;
  }
  .hikaku__mid {
    margin: 30px 0;
  }
  .hikaku__mid_arrow {
    width: 70px;
  }
  .hikaku__desc {
    margin-bottom: 18px;
  }
}
/* reason */
.reason__grid {
  row-gap: 60px;
  column-gap: 60px;
}
.reason__head {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: solid 1px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.reason__badge {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}
.reason__item h3 {
  font-weight: 800;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}
.reason__item p {
  line-height: 1.9;
}
.reason__item--center {
  grid-column: 4 / span 6;
}
@media (max-width: 980px) {
  .reason__item--center {
    grid-column: span 12;
  }
}
@media (max-width: 740px) {
  .reason__grid {
    row-gap: 40px;
    column-gap: 0;
  }
  .reason__head {
    gap: 14px;
  }
  .reason__badge {
    width: 70px;
  }
}
/* ===== Reason SD ===== */
.reason-sd {
  margin-bottom: 60px;
  overflow: hidden;
}
.reason-sd:last-child {
  margin-bottom: 0;
}
.reason-sd__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.reason-sd__ttl {
  position: relative;
  padding-bottom: 10px;
}
.reason-sd__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: -600px;
  height: 2px;
  background: #998c70;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.reason-sd__head.is-active .reason-sd__ttl::after {
  transform: scaleX(1);
}
.reason-sd__ttl {
  font-size: 24px;
  font-weight: 900;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
.reason-sd__ttl small {
  font-size: 70%;
}
.reason-sd__body {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.reason-sd__text {
  flex: 1;
  line-height: 1.9;
}
.reason-sd__text p {
  margin: 0 0 16px;
}
.reason-sd__check {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.reason-sd__check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-weight: 700;
}
.reason-sd__check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #998c70;
  font-weight: 900;
}
.reason-sd__note {
  color: #e95513;
  font-weight: 600;
}
.reason-sd .compare-table-wrap {
  margin-bottom: 0;
}
.reason-sd__img {
  flex-shrink: 0;
  width: 360px;
}
.reason-sd__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 740px) {
  .reason-sd__ttl {
    font-size: 18px;
  }
  .reason-sd__body {
    flex-direction: column;
  }
  .reason-sd__img {
    width: 100%;
    max-width: none;
  }
}
/* ===== Omoi ===== */
.omoi {
  background: #faf6ef;
}
.omoi__body {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.omoi__text {
  flex: 1;
  line-height: 1.9;
}
.omoi__text p {
  margin: 0 0 16px;
}
.omoi__text p:last-child {
  margin-bottom: 0;
}
.omoi__img {
  flex-shrink: 0;
  width: 400px;
}
.omoi__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 740px) {
  .omoi__body {
    flex-direction: column;
  }
  .omoi__img {
    width: 100%;
    max-width: none;
  }
  .omoi__img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}
/* equipment */
.equipment__list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.equipment__grid {
  align-items: center;
}
.grid__wrapper.equipment__grid {
  gap: 40px;
}
.equipment__title {
  font-weight: 800;
  line-height: 1.5;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}
.equipment__line {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  height: 1px;
  background: #1c4370;
}
.equipment__media img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 740px) {
  .grid__wrapper.equipment__grid {
    gap: 16px;
  }
}
@media (max-width: 740px) {
  .equipment__list {
    gap: 45px;
  }
  .equipment__item .equipment__text {
    order: 1;
  }
  .equipment__item .equipment__media {
    order: 2;
    margin-top: 18px;
  }
}
/* flow */
.flow__wrap .container {
  max-width: 900px;
}
.flow__schedule {
  position: relative;
  background-image: url("../images/time_00.webp");
  background-size: 80px auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 22px;
}
/* 各ブロック */
.flow__item {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  line-height: 1.5;
}
.flow__item--01, .flow__item--02, .flow__item--04 {
  padding-right: 65%;
  padding-left: 0;
}
.flow__item--03, .flow__item--05 {
  padding-left: 65%;
  padding-right: 0;
}
.flow__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  margin: 0;
}
.flow__item--04 .flow__photo, .flow__item--05 .flow__photo {
  left: 0;
  right: auto;
}
.flow__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.flow__item--03 {
  margin-top: -204px;
}
.flow__photo.flow__photo--02 {
  top: 211px;
}
.flow__item--04 {
  margin-top: -17px;
}
.flow__photo.flow__photo--03 {
  top: 155px;
}
.flow__item--05 {
  margin-top: 66px;
}
.flow__ttl {
  font-weight: 800;
  margin-bottom: 10px;
}
.flow__disc {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.flow__disc li {
  margin-bottom: 6px;
}
.flow__text {
  line-height: 1.9;
  margin-bottom: 30px;
}
.flow__time_sp {
  display: none;
}
@media (max-width: 950px) {
  .flow__schedule {
    background: none;
    padding-bottom: 0;
  }
  .flow__wrap .text-center {
    text-align: left;
  }
  .flow__item--01, .flow__item--02, .flow__item--03, .flow__item--04, .flow__item--05 {
    padding-left: 62px;
    padding-right: 0;
  }
  .flow__photo {
    position: static;
    max-width: 222px;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 30px;
  }
  .flow__item--03 {
    margin-top: 0;
  }
  .flow__photo.flow__photo--02 {
    top: 211px;
  }
  .flow__item--04 {
    margin-top: 0;
  }
  .flow__photo.flow__photo--03 {
    top: 155px;
  }
  .flow__item--05 {
    margin-top: 0;
  }
  .flow__time_sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
  }
  .flow__schedule:before {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    background: #998c70;
    left: 24px;
  }
  .flow_title {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
  }
  .flow_title:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #998c70;
    display: block;
  }
}
.check_list.check_list_dark {
  max-width: 480px;
  margin: 60px auto 0;
  color: #fff;
}
.check_list_dark .check_list__inner li::before {
  top: 2px;
  width: 20px;
  height: 20px;
  background: url(../images/check_blk.webp) no-repeat center / contain;
}
.check_list_dark .check_list__inner {
  font-size: 16px;
}
.check_list__inner li:last-child {
  margin-bottom: 0;
}
/* case */
.grid__wrapper.case__grid {
  gap: 40px;
}
@media (max-width: 740px) {
  .grid__wrapper.case__grid {
    column-gap: 0;
  }
}
/* flow b */
.flow_b__ttl {
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 15px;
}
.flow_b__disc {
  padding-left: 18px;
  list-style: disc;
}
.flow_b__disc li {
  margin-bottom: 0;
}
.flow_b__img img {
  width: 100%;
  height: auto;
  display: block;
}
.flow_tel {
  color: #998c70;
  font-weight: 800;
}
a.btn_gold {
  background: #998c70;
  color: #fff;
  padding: 5px;
  margin-left: 5px;
  font-size: 85%;
}
@media (max-width:740px) {
  .flow_b__img {
    margin-top: 20px;
  }
}
/* doctor */
.doctor-photo {
  position: relative;
}
.doctor-photo__cert {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 38%;
  height: auto;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .doctor-photo__cert {
    top: -10px;
    left: -10px;
    width: 40%;
    border-width: 2px;
  }
}
.doctor-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #1c4370;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .doctor-badge {
    padding: 5px 12px;
    font-size: 12px;
  }
}
.career_box {
  background: #ffffff;
  border: 1px solid #998c70;
  padding: 30px 30px;
  margin-top: 30px;
}
.career_box__ttl {
  font-weight: 800;
  margin: 0 0 14px;
}
.career_dl {
  margin: 0;
}
.career_dl__row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
}
.career_dl__row dt {
  font-weight: 800;
  white-space: nowrap;
}
.career_dl__row dd {
  margin: 0;
  line-height: 1.2;
}
.career_list {
  margin: 0;
}
.career_list li {
  margin-bottom: 10px;
  line-height: 1.2;
}
.career_list li:last-child {
  margin-bottom: 0;
}
/* SP */
@media (max-width: 740px) {
  .career_box {
    padding: 20px 18px;
  }
  .career_dl__row {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }
  .career_list {
    margin-top: 18px;
  }
}
/* cost */
.cost__head {
  text-align: center;
}
.cost__price {
  margin: 20px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cost__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(120, 110, 90, .9);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  border-radius: 2px;
}
.cost__badge-img {
  width: 52px;
  height: auto;
}
.cost__yen {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  color: #1c4370;
}
.cost__notes {
  margin: 18px auto 60px;
  padding: 0;
  list-style: none;
  max-width: 625px;
  text-align: left;
  line-height: 1.7;
}
.cost__notes li {
  margin-bottom: 6px;
}
.cost__subline {
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 860px;
  line-height: 1.6;
}
.cost__subline::before, .cost__subline::after {
  content: "";
  height: 1px;
  background: #998c70;
}
.cost__subline::after {
  background: #998c70;
}
.cost__grid {
  margin: 34px auto 0;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}
.cost__item {
  border: 1px solid rgba(140, 120, 80, .55);
  background: rgba(255, 255, 255, .85);
  padding: 012px;
  text-align: center;
  font-weight: 800;
  line-height: 1.4;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cost__item small {
  font-weight: 800;
  font-size: 12px;
  color: rgba(0, 0, 0, .65);
}
.cost__item--empty {
  border: none;
  background: transparent;
}
.cost__bottomnote {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, .65);
}
/* SP */
@media (max-width: 740px) {
  .cost__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cost__item--empty {
    display: none; /* 空枠は消す */
  }
  .cost__subline {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cost__subline::before, .cost__subline::after {
    display: none;
  }
  .cost__notes {
    font-size: 11px;
  }
}
/* ===== Cost 3col ===== */
.cost__grid--3col {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px auto 0;
}
.cost__item--wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 12px;
  border: 1px solid #998c70;
  background: #fff;
  text-align: center;
  height: auto;
  font-weight: 800;
}
.cost__item--wide small {
  font-size: 16px;
  font-weight: 700;
}
.cost__item--wide strong {
  font-size: 32px;
  color: #2d436b;
}
.cost__item--hl {
  border-color: #998c70;
  background: #deebff;
}
.cost__item--hl strong {
  color: #2d436b;
}
@media (max-width: 740px) {
  .cost__grid--3col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cost__bottomnote--sd {
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: 800;
}
/* ===== Price Table ===== */
.price-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 16px 20px;
  border: 1px solid #333;
  font-size: 15px;
}
.price-table th {
  background: #fff;
  font-weight: 800;
  text-align: left;
  width: 40%;
}
.price-table td {
  background: #deebff;
}
.price-table__bottom {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}
@media (max-width: 740px) {
  .price-table th,
  .price-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
}
/* ===== Payment ===== */
.gold-badge {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.payment-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 790px;
  margin: 0 auto;
}
.payment-divider::before,
.payment-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #998c70;
}
.payment-divider span {
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}
.payment-text {
  max-width: 790px;
  margin: 0 auto;
  line-height: 1.9;
}
.payment-text p {
  margin: 0 0 16px;
}
.payment-text p:last-child {
  margin-bottom: 0;
}
.warranty__lead {
  font-weight: 800;
  color: #1c4370;
  line-height: 1.8;
}
.warranty__sq {
  display: inline-block;
  margin-right: 3px;
  color: #1c4370;
}
.warranty__titleimg {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.warranty__titleimg img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}
.warranty__list {
  margin: 10px 0;
  padding-left: 18px;
  list-style: disc;
}
.warranty__list li {
  line-height: 1.8;
}
/* 適用外 見出し（左右ライン） */
.warranty__exclude_ttl {
  margin: 0 0 15px;
  text-align: center;
  font-weight: 800;
  position: relative;
  padding: 0 16px;
}
.warranty__exclude_ttl::before, .warranty__exclude_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: #998c70;
}
.warranty__exclude_ttl::before {
  left: 0;
}
.warranty__exclude_ttl::after {
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 740px) {
  .warranty__titleimg {
    margin: 26px 0;
  }
  .warranty__exclude_ttl::before, .warranty__exclude_ttl::after {
    width: 8%;
  }
}
/* =========================
  CTA
========================= */
.access_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 0 90px;
}
.access_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(560px, 100%);
  height: 75px;
  padding: 18px 22px;
  border-radius: 999px;
  background: #d86245;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
  animation: ctaFloat 2.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}
@keyframes ctaFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28), 0 4px 10px rgba(0, 0, 0, 0.16);
  }
}
@media (prefers-reduced-motion: reduce) {
  .access_btn {
    animation: none;
  }
}
.access_btn--line {
  background: #06C755;
  gap: 10px;
  height: auto;
  padding: 18px 22px;
}
.access_btn__icon {
  width: 32px;
  height: 32px;
  color: #fff;
  flex-shrink: 0;
}
.access_btn__sub {
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: .85;
  margin-top: 4px;
}
@media (min-width: 741px) {
  .access_btn:hover {
    animation-play-state: paused;
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32), 0 6px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
}
/* =========================
  Block
========================= */
.access_title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
}
/* Table */
.access_table_wrap {
  overflow-x: auto;
}
.access_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  border: 1px solid rgba(15, 23, 42, .2);
}
.access_table th, .access_table td {
  padding: 10px 10px;
  border-right: 1px solid rgba(15, 23, 42, .2);
  border-bottom: 1px solid rgba(15, 23, 42, .2);
  text-align: center;
  white-space: nowrap;
}
.access_table thead th {
  background: #5b7695;
  color: #fff;
  font-weight: 800;
}
.access_table tbody th {
  background: #edf2f7;
  font-weight: 800;
}
.access_table tr > *:last-child {
  border-right: none;
}
.access_table tbody tr:last-child > * {
  border-bottom: none;
}
.access_hours {
  margin: 20px 0 10px;
  font-size: 15px;
}
.access_notes {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 15px;
}
.access_notes li {
  position: relative;
  padding-left: 1.1em;
}
.access_notes li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.access_address {
  margin: 0 0 20px;
}
.access_address_name {
  margin: 0 0;
  font-weight: 900;
  font-size: 15px;
}
.access_address_text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
/* Map */
.access_map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(15, 23, 42, .2);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.access_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.access_caption {
  margin: 10px 0 0;
  font-size: 15px;
  text-align: right;
}
.access_iframe iframe {
  width: 100%;
}
@media (max-width: 740px) {
  .access_block {
    grid-template-columns: 1fr;
  }
  .access_cta {
    margin: 0 0 60px;
  }
  .access_btn {
    padding: 16px 18px;
  }
}
/* ===== 1day Implant Section ===== */
.oneday__body {
  line-height: 1.9;
}
.oneday__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0;
}
.oneday__point {
  background: #fff;
  border: 1px solid #998c70;
  padding: 24px;
  border-radius: 6px;
}
.oneday__point-ttl {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #998c70;
}
.oneday__point p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}
.oneday__merit {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 16px;
}
.oneday__merit li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.7;
}
.oneday__merit li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #998c70;
  font-weight: 900;
}
@media (max-width: 740px) {
  .oneday__points {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .oneday__point-ttl {
    font-size: 18px;
  }
}
/* ===== Monitor Section ===== */
.monitor__lead {
  line-height: 1.8;
}
.monitor__campaign {
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  color: #1c4370;
  margin-top: 10px;
  padding: 8px 24px;
  border: 2px solid #998c70;
  background: rgba(255,255,255,.85);
}
.monitor__block {
  margin-bottom: 40px;
}
.monitor__block:last-child {
  margin-bottom: 0;
}
.monitor__block-ttl {
  font-size: 22px;
  font-weight: 800;
  color: #1c4370;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #998c70;
}
.monitor__block p {
  line-height: 1.9;
  margin: 0 0 10px;
}
.monitor__block p:last-child {
  margin-bottom: 0;
}
.monitor__conditions {
  list-style: none;
  padding: 0;
  margin: 0;
}
.monitor__conditions li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 15px;
}
.monitor__conditions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #998c70;
  font-weight: 900;
}
.monitor__conditions li:last-child {
  margin-bottom: 0;
}
.monitor__note {
  font-size: 13px;
  color: #666;
}
.monitor__benefit {
  background: #fff;
  border: 1px solid #998c70;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 0;
}
.monitor__benefit-main {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px !important;
}
.monitor__benefit-free {
  font-size: 36px;
  font-weight: 900;
  color: #e95513;
  margin: 0 !important;
  line-height: 1;
}
.monitor__benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.monitor__benefit-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}
.monitor__benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #998c70;
  font-weight: 900;
}
.monitor__limit {
  background: linear-gradient(135deg, #8a8a8a 0%, #6e6e6e 20%, #9a9a9a 40%, #5e5e5e 60%, #7a7a7a 80%, #686868 100%);
  padding: 20px;
  text-align: center;
  margin: 40px 0;
  border-radius: 0;
}
.monitor__limit-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  -webkit-text-stroke: 1px rgba(0,0,0,.1);
}
.monitor__limit-hl {
  font-size: 28px;
  color: #f3de3a;
}
.monitor__flow {
  display: grid;
  gap: 0;
}
.monitor__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(153,140,112,.3);
}
.monitor__flow-step:last-child {
  border-bottom: none;
}
.monitor__flow-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #998c70;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
}
.monitor__flow-step strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #1c4370;
}
.monitor__flow-step p {
  margin: 0 !important;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .monitor__campaign {
    font-size: 20px;
    padding: 6px 16px;
  }
  .monitor__block-ttl {
    font-size: 18px;
  }
  .monitor__benefit-free {
    font-size: 28px;
  }
  .monitor__limit-text {
    font-size: 18px;
  }
  .monitor__limit-hl {
    font-size: 22px;
  }
}
/* ===== FAQ Section ===== */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  margin-bottom: 24px;
  border: 1px solid rgba(153,140,112,.4);
  border-radius: 6px;
  overflow: hidden;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__q,
.faq__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
}
.faq__q {
  background: #fcf7ef;
  font-weight: 700;
}
.faq__a {
  background: #fff;
  line-height: 1.8;
}
.faq__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #998c70;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
}
.faq__label--a {
  background: #1a5f9e;
}
.faq__q p,
.faq__a p {
  margin: 0;
  padding-top: 6px;
  font-size: 15px;
}
@media (max-width: 740px) {
  .faq__q,
  .faq__a {
    padding: 16px 18px;
    gap: 12px;
  }
  .faq__label {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .faq__q p,
  .faq__a p {
    font-size: 14px;
    padding-top: 3px;
  }
}
.footer {
  border-top: solid 1px;
  color: #333;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 840px) {
  .footer {
    padding-bottom: 93px;
    display: block;
  }
}