*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #1E1E1E;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.l-inner {
  box-sizing: border-box;
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
}
.l-inner--960 {
  max-width: 960px;
}
.l-inner--1080 {
  max-width: 1080px;
}
@media (min-width: 640px) {
  .l-inner {
    padding-inline: 20px;
  }
}
@media (min-width: 980px) {
  .l-inner {
    padding-inline: 24px;
  }
}

.l-wire {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 8px;
  transition: padding-top 0.2s ease;
}
.header .l-wire {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.header__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: border-radius 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.header.is-fixed {
  position: fixed;
  padding-top: 0;
}
.header.is-fixed .l-wire {
  width: 100%;
  max-width: none;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.header.is-fixed .header__inner {
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.header__logo-link {
  display: block;
  line-height: 0;
}
.header__logo-image {
  display: block;
  width: 120px;
  height: auto;
}
.header__cta {
  display: none;
}
.header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.header__menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #1E1E1E;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 980px) {
  .header {
    padding-top: 16px;
  }
  .header__inner {
    gap: 24px;
    min-height: 88px;
    padding-block: 16px;
    padding-inline: 32px;
    border-radius: 0 0 16px 16px;
  }
  .header.is-fixed .header__inner {
    min-height: 72px;
    padding-block: 12px;
  }
  .header__logo-image {
    width: 161px;
  }
  .header__cta {
    display: block;
  }
  .header__menu {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 32px;
  overflow: hidden;
  background-color: #ffffff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #ffffff;
}
.hero__bg picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: clamp(2rem, 16.6667vw, 240px);
  display: block;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.4) 30%, transparent 60%);
  pointer-events: none;
}
.hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}
.hero__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #042768;
  letter-spacing: 0.04em;
  padding-top: 40px;
}
.hero__lead {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #1E1E1E;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.hero__badge {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 6px;
  text-align: center;
  background: #042768;
  border-radius: 50%;
  color: #ffffff;
}
.hero__badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 2px solid #A4B3CE;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__badge-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #F0F022;
  line-height: 1.2;
}
.hero__badge-title {
  position: relative;
  z-index: 1;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #F0F022;
  line-height: 1.2;
}
.hero__badge-text {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-size: 0.5rem;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .hero {
    padding-top: 110px;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .hero__lead {
    font-size: 0.9375rem;
  }
  .hero__badges {
    gap: 12px;
  }
  .hero__badge {
    max-width: 140px;
    padding: 8px;
  }
  .hero__badge::before {
    width: calc(100% - 18px);
    height: calc(100% - 18px);
  }
  .hero__badge-eyebrow {
    font-size: 0.625rem;
  }
  .hero__badge-title {
    font-size: 0.875rem;
  }
  .hero__badge-text {
    font-size: 0.5625rem;
  }
}
@media (min-width: 980px) {
  .hero {
    min-height: 720px;
    padding-top: 120px;
    padding-bottom: 48px;
  }
  .hero__bg picture {
    left: max(1.5rem, (100vw - 960px) / 2);
  }
}
@media (min-width: 980px) and (min-width: 1440px) {
  .hero__bg picture {
    left: calc((100vw - 1440px) / 2 + 240px);
  }
}
@media (min-width: 980px) {
  .hero__bg::after {
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.25) 25%, transparent 50%);
  }
  .hero__body {
    gap: 48px;
  }
  .hero__title {
    font-size: 3rem;
    line-height: 1.4;
    padding-top: 60px;
  }
  .hero__lead {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.9;
  }
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
  }
  .hero__badges {
    grid-template-columns: repeat(3, 190px);
    gap: 24px;
  }
  .hero__badge {
    width: 190px;
    height: 190px;
    max-width: 190px;
    padding: 10px;
  }
  .hero__badge::before {
    width: 170px;
    height: 170px;
  }
  .hero__badge-eyebrow {
    font-size: 24px;
  }
  .hero__badge-title {
    font-size: 24px;
  }
  .hero__badge-text {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.problem {
  padding-block: 64px;
  background-color: #ffffff;
}
.problem__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #042768;
  text-align: center;
}
.problem__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
}
.problem__detail {
  display: grid;
  gap: 20px;
  order: 1;
}
.problem__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.problem__lead-break {
  display: block;
}
.problem__text {
  font-size: 16px;
  line-height: 1.9;
}
.problem__br--pc {
  display: none;
}
.problem__list {
  display: grid;
  gap: 0;
  order: 2;
}
.problem__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
}
.problem__item:nth-child(2) {
  border-top: 2px solid #042768;
  border-bottom: 2px solid #042768;
}
.problem__figure {
  display: grid;
  place-items: center;
  width: 96px;
  height: 88px;
}
.problem__figure img {
  width: 96px;
  height: 88px;
  object-fit: contain;
}
.problem__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #042768;
}
@media (min-width: 980px) {
  .problem {
    padding-block: 80px;
  }
  .problem__title {
    font-size: 32px;
    text-align: left;
  }
  .problem__body {
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    align-items: center;
    gap: 48px 64px;
    margin-top: 48px;
  }
  .problem__detail {
    order: 2;
    gap: 24px;
  }
  .problem__list {
    order: 1;
  }
  .problem__lead {
    text-align: left;
  }
  .problem__lead-break {
    display: inline;
  }
  .problem__text {
    font-size: 18px;
  }
  .problem__br--pc {
    display: inline;
  }
  .problem__item {
    gap: 20px;
    padding-block: 20px;
  }
}

.strength {
  position: relative;
  padding-block: 64px 0;
  margin-bottom: 36px;
  color: #ffffff;
}
.strength__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.strength__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 39, 104, 0.55);
}
.strength__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strength .l-wire {
  position: relative;
  z-index: 1;
}
.strength__header {
  display: inline-grid;
  gap: 4px;
  padding: 12px 16px;
  background-color: #042768;
}
.strength__eyebrow {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.strength__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.strength__lead {
  margin-block-start: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}
.strength__br--pc {
  display: none;
}
.strength__scroll {
  margin-block-start: 32px;
  margin-inline: -16px;
  padding-inline: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.strength__scroll::-webkit-scrollbar {
  display: none;
}
.strength__grid {
  display: grid;
  grid-template-columns: repeat(3, calc((1080px - 48px - 32px) / 3));
  grid-template-rows: repeat(2, auto);
  gap: 12px;
  width: max-content;
}
.strength__card {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
}
.strength__note {
  margin-block-start: 24px;
  font-size: 14px;
  line-height: 1.9;
}
.strength__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-inline: 16px;
  transform: translateY(50%);
}
@media (min-width: 640px) {
  .strength__scroll {
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .strength__actions {
    padding-inline: 20px;
  }
}
@media (min-width: 980px) {
  .strength {
    padding-block: 80px 0;
    margin-bottom: 40px;
  }
  .strength__header {
    gap: 8px;
    padding: 16px 24px;
  }
  .strength__eyebrow {
    font-size: 16px;
  }
  .strength__title {
    font-size: 32px;
  }
  .strength__lead {
    margin-block-start: 24px;
    font-size: 18px;
  }
  .strength__br--pc {
    display: inline;
  }
  .strength__card {
    width: auto;
  }
  .strength__scroll {
    margin-inline: 0;
    padding-inline: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .strength__grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
    margin-block-start: 40px;
  }
  .strength__note {
    margin-block-start: 32px;
    font-size: 16px;
  }
  .strength__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-block-start: 40px;
  }
}

.items {
  padding-block: 56px 64px;
  background-color: #ffffff;
}
.items__header {
  display: grid;
  gap: 16px;
}
.items__title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.items__title {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #042768;
}
.items__title-line {
  flex: 1;
  height: 2px;
  background-color: #042768;
}
.items__lead {
  font-size: 14px;
  line-height: 1.9;
}
.items__br--pc {
  display: none;
}
.items__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
  margin-block-start: 24px;
}
.items__figure {
  display: grid;
  gap: 8px;
}
.items__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 349/295;
  object-fit: cover;
}
.items__caption {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #042768;
}
@media (min-width: 980px) {
  .items {
    padding-block: 72px 80px;
  }
  .items__title {
    font-size: 32px;
  }
  .items__title-wrap {
    gap: 16px;
  }
  .items__lead {
    font-size: 16px;
  }
  .items__br--pc {
    display: inline;
  }
  .items__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
    margin-block-start: 32px;
  }
  .items__figure {
    gap: 12px;
  }
  .items__caption {
    font-size: 16px;
  }
}

.flow {
  padding-block: 64px;
  background-color: #A4B3CE;
  color: #ffffff;
}
.flow__header {
  display: grid;
  gap: 12px;
  text-align: center;
}
.flow__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.flow__lead {
  font-size: 14px;
  line-height: 1.8;
}
.flow__list {
  display: grid;
  gap: 12px;
  margin-block-start: 32px;
}
.flow__item {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: stretch;
  gap: 16px;
  padding: 20px 16px;
  background-color: #042768;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.flow__step {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  min-width: 52px;
}
.flow__step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.flow__step-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.flow__step-line {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.35);
}
.flow__body {
  display: grid;
  gap: 10px;
  align-content: center;
  min-width: 0;
}
.flow__heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.flow__text {
  font-size: 13px;
  line-height: 1.8;
}
.flow__btn {
  justify-self: start;
  width: auto;
  min-width: 0;
  margin-block-start: 4px;
}
@media (min-width: 980px) {
  .flow {
    padding-block: 80px;
  }
  .flow__header {
    gap: 16px;
  }
  .flow__title {
    font-size: 32px;
  }
  .flow__lead {
    font-size: 16px;
  }
  .flow__list {
    gap: 16px;
    margin-block-start: 40px;
  }
  .flow__item {
    gap: 24px;
    padding: 28px 32px;
  }
  .flow__step {
    min-width: 72px;
  }
  .flow__step-label {
    font-size: 12px;
  }
  .flow__step-num {
    font-size: 40px;
  }
  .flow__heading {
    font-size: 20px;
  }
  .flow__text {
    font-size: 15px;
  }
}

.faq {
  padding-block: 64px;
  background-color: #ffffff;
}
.faq__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #042768;
  text-align: center;
}
.faq__list {
  display: grid;
  gap: 8px;
  margin-block-start: 32px;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #ffffff;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #042768;
  border-radius: 50%;
}
.faq__question-text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.faq__toggle {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 30px;
  height: 30px;
}
.faq__toggle img {
  display: block;
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__toggle img {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 16px;
  font-size: 13px;
  line-height: 1.9;
  background-color: #f0f4fa;
}
@media (min-width: 980px) {
  .faq {
    padding-block: 80px;
  }
  .faq__title {
    font-size: 32px;
  }
  .faq__list {
    gap: 12px;
    margin-block-start: 40px;
  }
  .faq__question {
    gap: 16px;
    padding: 20px 24px;
  }
  .faq__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .faq__question-text {
    font-size: 16px;
  }
  .faq__answer {
    font-size: 15px;
  }
}

.company {
  padding-block: 64px;
  background-color: #A4B3CE;
  color: #ffffff;
}
.company__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.company__list {
  display: grid;
  gap: 20px;
  margin-block-start: 32px;
}
.company__row {
  display: grid;
  grid-template-columns: minmax(6.5em, auto) 1fr;
  gap: 12px 20px;
  align-items: start;
}
.company__term {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.company__desc {
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 980px) {
  .company {
    padding-block: 80px;
  }
  .company__title {
    font-size: 32px;
  }
  .company__list {
    gap: 24px;
    max-width: 800px;
    margin-block-start: 40px;
    margin-inline: auto;
  }
  .company__row {
    grid-template-columns: 10em 1fr;
    gap: 16px 40px;
  }
  .company__term, .company__desc {
    font-size: 16px;
  }
}

.footer {
  padding-block: 48px 24px;
  background-color: #042768;
  color: #ffffff;
}
.footer__inner {
  display: grid;
  gap: 32px;
}
.footer__logo {
  line-height: 0;
}
.footer__logo a {
  display: inline-block;
}
.footer__logo img {
  display: block;
  width: 120px;
  height: auto;
}
.footer__address {
  margin-block-start: 20px;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}
.footer__cta {
  margin-block-start: 20px;
}
.footer__cta .btn {
  width: 100%;
  max-width: 280px;
}
.footer__side {
  display: grid;
  gap: 32px;
}
.footer__nav-list {
  display: grid;
  gap: 12px;
}
.footer__nav-list a {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.footer__nav-list a:hover {
  opacity: 0.8;
}
.footer__copy {
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 980px) {
  .footer {
    padding-block: 64px 32px;
  }
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 48px;
  }
  .footer__logo img {
    width: 161px;
  }
  .footer__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    min-height: 100%;
  }
  .footer__nav-list {
    text-align: right;
  }
  .footer__cta .btn {
    width: auto;
    min-width: 240px;
    max-width: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}
.btn:hover {
  opacity: 0.85;
}
.btn--line {
  background: #0AAA3F;
}
.btn--brown {
  background: #7D6323;
}
.btn--sm {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .btn {
    min-height: 52px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 980px) {
  .btn {
    width: auto;
    min-width: 240px;
    min-height: 56px;
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.card {
  background-color: #ffffff;
  border: 3px solid #042768;
  padding: 16px;
  color: #1E1E1E;
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #042768;
}
.card__text {
  margin-block-start: 8px;
  font-size: 14px;
  line-height: 1.8;
}

.nav {
  display: none;
  margin-left: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__item {
  display: flex;
  align-items: center;
}
.nav__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 16px;
  margin-inline: 20px;
  background: rgba(30, 30, 30, 0.2);
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: #042768;
}
@media (min-width: 980px) {
  .nav {
    display: block;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}
.drawer.is-open .drawer__overlay {
  opacity: 1;
}
.drawer__panel {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  height: 100%;
  margin-left: auto;
  padding: 24px 20px 32px;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.drawer__close-icon {
  position: relative;
  width: 24px;
  height: 24px;
}
.drawer__close-icon::before, .drawer__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1E1E1E;
}
.drawer__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.drawer__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
.drawer__nav {
  margin-top: 32px;
}
.drawer__list {
  display: grid;
  gap: 24px;
}
.drawer__link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.drawer__cta {
  margin-top: 40px;
}
.drawer__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  background: rgba(30, 30, 30, 0.4);
  border: none;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (min-width: 980px) {
  .drawer {
    display: none;
  }
}

body.is-drawer-open {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
