@charset "UTF-8";

:root {
  --red: #af0812;
  --red-dark: #6e0007;
  --red-gradient: linear-gradient(180deg, #e01b27 0%, #b7000e 42%, #8a0009 72%, #b00812 100%);
  --red-text-gradient: linear-gradient(90deg, #e31722 0%, #d20514 30%, #a6020b 48%, #e91927 57%, #b9000c 70%, #a4020f 100%);
  --black-gradient: linear-gradient(180deg, #333333 0%, #101010 100%);
  --gray-gradient: linear-gradient(180deg, #bcbcbc 0%, #959595 100%);
  --text: #101010;
  --gray-text: #4d4d4d;
  --gray-border: #d5d5d5;
  --gray-bg: #eaeaea;
  --bg-soft-gradient: linear-gradient(135deg, #ffffff 0%, #f3f3f3 34%, #e7e7e7 58%, #fafafa 82%, #efefef 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #e5e5e5;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

.wrapper {
  max-width: 375px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

/* ===== PC用グロナビ ===== */
.side-nav {
  display: none;
}

@media (min-width: 1040px) {
  .side-nav {
    display: block;
    position: fixed;
    top: 34%;
    left: max(calc(25vw - 233px), calc(50% - 527px));
    transform: translateY(-50%);
    width: 280px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
}

.side-nav__list {
  margin-bottom: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.side-nav__list li + li {
  border-top: 1px solid var(--gray-border);
}
.side-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: background-color 0.15s ease, padding-left 0.15s ease;
}
.side-nav__list a::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
  transition: transform 0.15s ease;
}
.side-nav__list a:active {
  background: var(--gray-bg);
  padding-left: 22px;
}
@media (hover: hover) {
  .side-nav__list a:hover:not(:active) {
    background: var(--bg-soft-gradient);
    padding-left: 22px;
  }
  .side-nav__list a:hover::after {
    transform: rotate(-45deg) translate(1px,1px);
  }
}
.side-nav__qr {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--red-gradient);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.side-nav__qr p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.side-nav__qr img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  background: #fff;
}

.section {
  position: relative;
}
.container {
  padding-inline: 20px;
}

/* ===== Header ===== */
.header {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 2px solid var(--red);
}
.header__logo {
  width: 98px;
  height: 35px;
}

/* ===== KV ===== */
.kv {
  background: var(--bg-soft-gradient);
}
.kv__img {
  width: 100%;
}


/* ===== CTA Entry buttons ===== */
/* 支給コード（#entry-block内のbutton/checkbox）はそのまま、CSSのみでデザインを再現 */
#entry-block p {
  text-align: center;
}
#entry-block button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  margin: 0 auto 16px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: var(--gray-gradient);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 0 #7a7a7a, 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background-color 0.15s ease;
}
#entry-block button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}
#entry-block button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #7a7a7a, 0 2px 4px rgba(0, 0, 0, 0.2);
}
#entry-block button span {
  position: absolute !important;
  right: 14px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  font-size: 0 !important;
  transform: translateY(-50%);
}
#entry-block button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #959595;
  transform: translate(-45%, -50%);
}
#entry-block button.entry-btnStyle_checked {
  background: var(--red-gradient);
  box-shadow: 0 4px 0 var(--red-dark), 0 6px 12px rgba(122, 0, 9, 0.28);
}
#entry-block button.entry-btnStyle_checked span::after {
  border-color: transparent transparent transparent var(--red);
}
#entry-block button.entry-btnStyle_checked:active {
  box-shadow: 0 1px 0 var(--red-dark), 0 2px 4px rgba(122, 0, 9, 0.28);
}
#entry-block button:disabled {
  cursor: not-allowed;
}
@media (hover: hover) {
  #entry-block button.entry-btnStyle_checked:hover:not(:active):not(:disabled) {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--red-dark), 0 8px 14px rgba(122, 0, 9, 0.3);
  }
}
#entry-block p + p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
#entry-block input#entry-chkbox {
  appearance: none;
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 4px;
  border: 2px solid var(--red);
  background: #fff;
  cursor: pointer;
}
#entry-block input#entry-chkbox::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
}
#entry-block input#entry-chkbox:checked::after {
  opacity: 1;
}
#entry-block label[for="entry-chkbox"] {
  margin: 0 !important;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
}

/* ===== Common: CTA buttons ===== */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background-color 0.15s ease;
}
.btn:active {
  transform: translateY(2px);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}
.btn-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon::after {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 9px;
  margin-left: 2px;
}
.btn-primary {
  background: var(--red-gradient);
  color: #fff;
  box-shadow: 0 4px 0 var(--red-dark), 0 6px 12px rgba(122, 0, 9, 0.28);
}
.btn-primary .btn-icon {
  background: #fff;
}
.btn-primary .btn-icon::after {
  border-color: transparent transparent transparent var(--red);
}
.btn-primary:active {
  box-shadow: 0 1px 0 var(--red-dark), 0 2px 4px rgba(122, 0, 9, 0.28);
}
.btn-outline {
  background: #fff;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: 0 4px 0 #e3c4c6, 0 6px 12px rgba(122, 0, 9, 0.14);
}
.btn-outline .btn-icon {
  background: var(--red);
}
.btn-outline .btn-icon::after {
  border-color: transparent transparent transparent #fff;
}
.btn-outline:active {
  background: #fdf1f1;
  box-shadow: 0 1px 0 #e3c4c6, 0 2px 4px rgba(122, 0, 9, 0.14);
}
.btn-dark {
  background: var(--black-gradient);
  color: #fff;
  box-shadow: 0 4px 0 var(--red), 0 6px 12px rgba(0, 0, 0, 0.22);
}
.btn-dark .btn-icon {
  background: #fff;
}
.btn-dark .btn-icon::after {
  border-color: transparent transparent transparent var(--text);
}
.btn-dark:active {
  box-shadow: 0 1px 0 var(--red), 0 2px 4px rgba(0, 0, 0, 0.22);
}

@media (hover: hover) {
  .btn-primary:hover:not(:active) {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--red-dark), 0 8px 14px rgba(122, 0, 9, 0.3);
  }
  .btn-outline:hover:not(:active) {
    background: #fdf5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #e3c4c6, 0 8px 14px rgba(122, 0, 9, 0.16);
  }
  .btn-dark:hover:not(:active) {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--red), 0 8px 14px rgba(0, 0, 0, 0.26);
  }
}

/* ===== Campaign entry section ===== */
.campaign-entry {
  padding-top: 8px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #f0f0f0 0%, rgba(240, 240, 240, 0) 14%), var(--bg-soft-gradient);
}
.notes-list {
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--gray-text);
}
.notes-list__item {
  line-height: 1.5;
}
.entry__notes-list {
  padding: 12px 16px 12px 12px;
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--gray-border);
}
.entry__notes-list a,
.entry__notes-list .link {
  color: var(--red);
  text-decoration: underline;
}

/* ===== Point condition section ===== */
.point-condition {
  padding-block: 28px;
}
.point-condition__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--red-gradient);  
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}


.point-condition__tabs {
  display: flex;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.point-condition__tab {
  flex: 1;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font: inherit;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}
.point-condition__tab--active {
  background: var(--red-gradient);
  color: #fff;
  border: 1px solid var(--red);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.point-condition__tab--inactive {
  background: var(--gray-bg);
  color: var(--gray-text);
  border: 1px solid var(--gray-border);
}
.point-condition__body {
  padding: 24px 16px 34px;
  border: 1px solid var(--red);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
  text-align: center;
}
.point-condition__heading {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.point-condition__lead {
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.point-card {
  position: relative;
  padding: 12px 18px;
  text-align: center;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  background: var(--bg-soft-gradient);
}
.point-card__title {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.point-card__figure {
  display: flex;
}
.point-card__figure--icon {
  justify-content: center;
  margin-bottom: 8px;
  gap: 18px;
}
.point-card__amount {
  font-size: 49px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--red-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.point-card__amount .unit { 
  font-size: 37px;
}
.point-card__amount span { 
  font-size: 30px;
}
.point-card__figure--badge {
  align-items: center;
  gap: 12px;
}
.point-card__badge {
  width: 61px;
  aspect-ratio: 1;
}
.point-card__note {
  font-size: 12px;
  color: var(--gray-text);
}
.point-card__note + .point-card__note {
  margin-top: 2px;
}
.plus-badge {
  position: relative;
  margin-block: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.plus-badge span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  background: var(--red-gradient);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(122, 0, 9, 0.2);
}
.arrow-down {
  margin: 8px auto;
  width: 45px;
  height: 26px;
  background: var(--red-gradient);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.point-result {
  padding: 8px 8px 16px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 6px rgba(122, 0, 9, 0.14);
}
.point-result .point-card__amount {
  margin: 0 auto 8px;
}
.point-result__note {
  font-size: 12px;
  color: var(--gray-text);
}
.point-condition__btn {
  margin-bottom: 16px;
}
.btn-wrap {
  margin-top: 24px;
}

/* ===== Point schedule section ===== */
.point-schedule {
  padding-top: 32px;
  padding-bottom: 28px;
  background: var(--bg-soft-gradient);
}
.schedule-card {
  margin-bottom: 12px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.schedule-row {
  display: flex;
  border-top: 1px solid var(--gray-border);
}
.schedule-row:first-child {
  border-top: none;
}
.schedule-row__label {
  display: flex;
  align-items: center;
  flex: 0 0 110px;
  padding: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  background: var(--black-gradient);
}
.schedule-row__body {
  flex: 1;
  padding: 12px;
}
.schedule-row__value {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.schedule-row__note {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
}
.schedule-row__note p:not(:last-child) {
  margin-bottom: 4px;
}
/* ===== Service plan section ===== */
.service-plan {
  padding-bottom: 16px;
}
.service-plan__hero {
  background: var(--red-gradient);
  padding: 28px 20px;
  text-align: center;
  color: #fff;
}
.service-plan__hero-title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.service-plan__hero-image {
  width: 315px;
  height: 80px;
  margin: 0 auto;
}
.flag-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 101px;
}
.free-trial {
  position: relative;
  padding: 26px 30px;
  background: var(--bg-soft-gradient);
}
.free-box {
  margin-bottom: 10px;
  padding: 12px 18px 16px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
.free-box__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.6;
}
.free-box__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.free-box__label::before,
.free-box__label::after {
  content: "";
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: var(--red);
  transform: translateY(1px);
}
.free-box__amount {
  height: 42px;
  margin: 0 auto;
}
.service-plan__notes {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
}
.plan {
  padding-top: 32px;
}
.plan-card {
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
}
.plan-card__title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.plan-card__tabs {
  display: flex;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.plan-card__tab {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.plan-card__tab--active {
  background: var(--red-gradient);
  color: #fff;
  border: 1px solid var(--red);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.plan-card__tab--inactive {
  background: var(--gray-bg);
  color: var(--gray-text);
  border: 1px solid var(--gray-border);
}
.plan-card__body {
  padding: 16px 12px;
  border: 1px solid var(--red);
  border-top: none;
  border-radius: 0 0 4px 4px;
  color: var(--text);
}
.plan-card__sub {
  color: var(--gray-text);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 4px;
  line-height: 1;
}
.plan-price__label {
  margin-right: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.plan-price__value {
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
}
.plan-price__value span {
  font-size: 33px;
}
.plan-price__unit {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.plan-card__return-label {
  margin-bottom: 8px;
  padding-right: 8px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
  border-top: 1px solid var(--gray-border);
}
.plan-row:last-child {
  border-bottom: 1px solid var(--gray-border);
}
.plan-row__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.plan-row__point {
  text-align: right;
  line-height: 1;
}
.plan-row__point-value {
  font-size: 34px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
}
.plan-row__point-unit {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.plan-row__point-note {
  margin-top: 2px;
  font-size: 10px;
}

/* ===== Terms section ===== */
.terms {
  padding-block: 20px 26px;
}
.terms__title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.terms__box {
  height: 280px;
  padding: 16px 18px;
  font-size: 12px;
  color: #3c4043;
  line-height: 1.5;
  border: 1px solid var(--gray-border);
  border-radius: 9px;
  background: #fff;
  overflow-y: auto;
}
.terms__box p {
  margin-bottom: 1em;
}
.terms__box p:has(+ ul),
.terms__box p:has(+ ol) {
  margin-bottom: 0;
}
.terms__box ul,
.terms__box ol {
  margin-bottom: 1em;
}
.terms__box span {
  font-weight: 700;
}
.terms__box a {
  color: var(--red);
  text-decoration: underline;
}

/* ===== FAQ section ===== */
.faq {
  padding-top: 12px;
  padding-bottom: 64px;
}
.faq .faq__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 4px 4px 0 0;
  background: var(--red-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35)
}
.faq .faq__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(180deg, #333333 0%, #101010 100%);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  min-height: 62px;
  padding: 12px 16px;
  border: none;
  border-left: 4px solid var(--red);
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.faq-item__q .faq-item__text {
    display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
}
.faq-item__a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.faq-item__a-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px;
  border-top: 1px solid var(--gray-border);
}
.faq-item__mark {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}
.faq-item__text {
  flex: 1;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--black-gradient);
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq-toggle::before {
  width: 10px;
  height: 2px;
}
.faq-toggle::after {
  width: 2px;
  height: 10px;
}
.faq-item.is-open .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ===== Footer ===== */
.footer {
  padding: 26px 40px 84px 24px;
  color: #fff;
  background: #222;
  border-top: 4px solid var(--red);
}
.footer__list {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.footer__link {
  font-size: 14px;
  line-height: 2;
}
.footer__link-icon {
  display: inline-block;
  margin-left: 8px;
  width: 13px;
  aspect-ratio: 1;
  flex-shrink: 0;
  vertical-align: middle;
}
.footer__copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
}
