@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* Breakpoint mixin */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

.body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  display: block;
  color: #333;
  position: relative;
}

h3 {
  letter-spacing: 0.05em;
}

.top_section_ttl {
  color: #333;
  font-size: 32px;
  text-align: center;
}
@media (max-width: 600px) {
  .top_section_ttl {
    font-size: 26px;
  }
}
.top_section_sub {
  font-size: 20px;
  color: #f7941d;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 10px;
}
.top_section_txt {
  font-size: 18px;
  margin-bottom: 10px;
}

.section-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section-btn a {
  background: white;
  color: #f7941d;
  padding: 20px 70px;
  border-radius: 50px;
  margin: 40px auto 0;
  border: 1px solid #f7941d;
  transition: all 0.3s;
  font-size: 18px;
}
.section-btn a:hover, .section-btn a:focus {
  background: #f7941d;
  color: #fff;
}

.top_view {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(16px, 4vw, 56px);
  padding: clamp(24px, 6vh, 72px) clamp(16px, 6vw, 72px);
  min-height: clamp(560px, 82vh, 860px);
  overflow: hidden;
  /* 左側の文字を読みやすくするグラデーション */
  /* 背景一面の写真（PC/タブレット時） */
  /* テキスト列（左） */
  /* ====== タブレット以下（ここからSPレイアウト） ====== */
  /* さらに小さい端末の微調整 */
  /* 画面が非常に広い時の上限調整 */
}
.top_view::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 36%, rgba(255, 255, 255, 0.35) 60%, rgba(255, 255, 255, 0) 85%);
  z-index: 1;
  pointer-events: none;
}
.top_view-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* 端末モック：右側に固定 */
}
.top_view-image_background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_view-image_mock {
  position: absolute;
  right: clamp(16px, 8vw, 140px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 20vw, 220px);
  z-index: 2;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}
@media (max-width: 950px) {
  .top_view-image_mock {
    width: 130px;
  }
}
@media (max-width: 750px) {
  .top_view-image_mock {
    width: 80px;
  }
}
.top_view-txt {
  position: relative;
  z-index: 3;
  max-width: 720px;
  /* 箇条書き（可読性の高いピル型） */
}
.top_view-txt-ttl {
  font-size: clamp(28px, 5.2vw, 36px);
  line-height: 1.18;
  color: #333;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.top_view-txt-ttl span {
  display: block;
}
.top_view-txt-wrap {
  margin-top: clamp(12px, 2.2vh, 24px);
}
.top_view-txt-start a {
  display: inline-block;
  color: #fff;
  background: #f7941d;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 20px);
  padding: clamp(14px, 2vh, 20px) clamp(28px, 5vw, 60px);
  border-radius: 999px;
  border: 1px solid #f7941d;
  transition: filter 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.top_view-txt-start a:hover, .top_view-txt-start a:focus {
  filter: brightness(0.96);
}
.top_view-txt-desc {
  margin-top: clamp(14px, 2.5vh, 28px);
  display: grid;
  gap: 8px;
}
.top_view-txt-desc-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.5;
  color: #333;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: -moz-fit-content;
  width: fit-content;
  /* 長文でも折り返し自然 */
  max-width: 100%;
  /* ✔ を画像でなく文字にしてもOK（元の文言に含まれているのでそのまま） */
}
@media (max-width: 950px) {
  .top_view {
    /* フレックス縦並びに切替 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 3vh, 24px);
    min-height: auto;
    padding: clamp(20px, 5vh, 48px) clamp(12px, 5vw, 28px);
    /* 文字の上にグラデ不要 */
    /* 背景→“カード化された写真コンテナ”に変更 */
  }
  .top_view::after {
    display: none;
  }
  .top_view-image {
    position: relative;
    inset: auto;
    width: min(92%, 680px);
    aspect-ratio: 16/9;
    z-index: 0;
    margin: 0 auto;
  }
  .top_view-image_background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }
  .top_view-image_mock {
    position: absolute;
    right: 6%;
    bottom: 12%;
    top: auto;
    transform: none;
    width: 140px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
  }
  .top_view-txt {
    text-align: center;
    max-width: 720px;
  }
  .top_view-txt-ttl {
    font-size: clamp(24px, 5.6vw, 34px);
  }
  .top_view-txt-start a {
    width: auto;
    padding: 16px clamp(24px, 10vw, 40px);
    font-size: clamp(15px, 4.2vw, 18px);
    margin-top: 8px;
  }
  .top_view-txt-desc {
    margin-top: 18px;
  }
  .top_view-txt-desc-item {
    justify-content: center;
    margin-inline: auto;
    font-size: clamp(13px, 3.9vw, 16px);
    padding: 6px 10px;
  }
}
@media (max-width: 950px) {
  .top_view-image_mock {
    width: 130px;
  }
}
@media (max-width: 600px) {
  .top_view-image {
    width: 94%;
  }
  .top_view-image_mock {
    width: 100px;
    bottom: 5%;
  }
  .top_view-txt-ttl {
    letter-spacing: 0.01em;
  }
  .top_view-txt-desc {
    gap: 6px;
  }
}
@media (min-width: 1600px) {
  .top_view {
    max-width: 1400px;
    margin-inline: auto;
  }
}

/* 好みで：動き弱めたいユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .top_view * {
    transition: none !important;
  }
}
.abst {
  padding: 40px 20px;
  overflow: hidden;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .abst {
    padding: 0 20px;
    margin-top: 0px;
  }
}
.abst__container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.abst__visual {
  position: relative;
  flex: 1 1 300px;
  text-align: center;
}
@media (max-width: 600px) {
  .abst__visual {
    display: none;
  }
}
.abst__visual .abst__img-front {
  height: 400px;
}
.abst__visual .abst__img-back {
  height: 400px;
}
.abst__text {
  flex: 1 1 300px;
  padding: 20px;
  text-align: left;
  position: relative;
}
.abst__text .abst__heading {
  font-size: 28px;
  font-weight: 600;
  color: #f7941d;
  margin-bottom: 20px;
}
.abst__text .abst__heading .abst__logo-title {
  font-weight: 700;
}
.abst__text .abst__lead {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 20px;
}
.abst__text .abst__lead strong {
  color: #f7941d;
}
.abst__text .abst__lead h3 {
  font-size: 18px;
  font-weight: normal;
}
.abst__text .abst__description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.feat {
  background: #fff9f5;
  padding: 80px 20px;
}
.feat__container {
  max-width: 1200px;
  margin: 0 auto;
}
.feat__header {
  text-align: center;
  margin-bottom: 60px;
}
.feat__sub {
  font-size: 16px;
  color: #f7941d;
  margin-top: 8px;
}
.feat__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.feat__item {
  flex: 1 1 30%;
  max-width: 360px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}
.feat__badge {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -35px;
  left: -25px;
  background: #f2994a;
  color: white;
  font-size: 24px;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 600px) {
  .feat__badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }
}
.feat__image {
  width: 90%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  border-radius: 12px;
}
.feat__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f7941d;
}
.feat__text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .feat__items {
    justify-content: center;
  }
  .feat__item {
    flex: 1 1 45%;
  }
}
@media (max-width: 600px) {
  .feat__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .feat__heading {
    font-size: 24px;
  }
  .feat__text {
    font-size: 16px;
  }
}

.safety {
  padding: 80px 20px;
  background-color: white;
}
.safety__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.safety__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 30px;
}
.safety__item {
  width: 100%;
  max-width: 300px;
  position: relative;
}
.safety__image {
  height: 160px;
  width: auto;
  z-index: 2;
  position: relative;
  border-radius: 20px;
}
.safety__card {
  margin-top: 10px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
.safety__card h3 {
  font-size: 20px;
  color: #f7941d;
  margin-bottom: 10px;
}
.safety__card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .safety__grid {
    flex-direction: column;
    align-items: center;
  }
  .safety__item {
    max-width: 90%;
  }
}

.usage {
  background: #FEF7ED;
  padding: 80px 20px;
}
.usage__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.usage__steps {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 40px;
  justify-content: space-between;
}
.usage__step {
  flex: 1 1 30%;
  max-width: 360px;
  background: none;
  text-align: center;
  position: relative;
}
.usage__badge {
  background: #f7941d;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.usage h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #f7941d;
}
.usage__image {
  margin-top: 20px;
}
.usage__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .usage__image img {
    width: 80%;
  }
}
.usage__desc {
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .usage__steps {
    justify-content: center;
  }
  .usage__step {
    flex: 1 1 45%;
  }
}
@media (max-width: 600px) {
  .usage__step {
    flex: 1 1 100%;
  }
  .usage h3 {
    font-size: 24px;
  }
  .usage__desc {
    font-size: 18px;
  }
  .usage .section-btn a {
    padding: 20px 50px;
  }
}

.sitter-areas {
  padding: 32px 16px;
  margin-top: 20px;
}
.sitter-areas__container {
  max-width: 1120px;
  margin: 0 auto;
}
.sitter-areas__list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.sitter-areas__item {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  border: 1px solid #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 600px) {
  .sitter-areas__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .sitter-areas__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .sitter-areas__title {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
  .sitter-areas__item {
    font-size: 1rem;
    padding: 10px 16px;
  }
}
@media (max-width: 600px) {
  .sitter-areas .top_section_ttl {
    font-size: 20px;
  }
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
}
.btn--primary {
  background: #f7941d;
  color: #fff;
}
.btn--primary:hover {
  filter: brightness(0.95);
}
.btn--ghost {
  background: transparent;
  border-color: #f7941d;
  color: #f7941d;
}
.btn--ghost:hover {
  background: var(--c-brand-ghost);
}
.btn--lg {
  padding: 1.1rem 1.6rem;
  font-size: 1.1rem;
  margin-top: 20px;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}
.faq-section .faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: bold;
  font-size: 1.1rem;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-section .faq-item .faq-question:hover {
  background: #f0f0f0;
}
.faq-section .faq-item .faq-question .arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.faq-section .faq-item .faq-question[aria-expanded=true] .arrow {
  transform: rotate(-135deg);
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
}
.faq-section .faq-item .faq-answer p {
  padding: 16px 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-section .faq-item .faq-question[aria-expanded=true] + .faq-answer {
  max-height: 500px;
}

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

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 80px !important;
}

.register-button {
  position: fixed;
  bottom: 40px;
  right: -350px;
  padding: 20px 40px;
  background: linear-gradient(90deg, #ff9800, #ffb300);
  color: #fff;
  font-size: 20px;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: right 0.5s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 9999;
}
.register-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
.register-button.show {
  right: 40px;
  animation: pop-in 0.4s ease;
}

/* CTA */
.cta {
  padding: 60px 20px;
  background: linear-gradient(180deg, #fff3e8, #fff);
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta__inner {
  width: var(--w-wrap);
  margin: 0 auto;
}
.cta__inner h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 4.5vw, 32px);
}
.cta-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.cta-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

/* タブ */
.c-tabs {
  padding: 0.75rem 0 0.5rem;
}
.c-tabs__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #ececec;
  background: white;
  color: #333;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
}
.c-tabs__btn:active {
  transform: translateY(1px);
}
.c-tabs__btn.is-active, .c-tabs__btn[aria-selected=true] {
  background: #f7941d;
  border-color: #f7941d;
  color: #fff;
}
.c-tabs__list {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0;
  scrollbar-width: thin;
}
.c-tabs__panel {
  display: block;
}
.c-tabs__panel[hidden] {
  display: none;
}

@keyframes pop-in {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.company-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.company-hero__img {
  width: 100%;
  display: block;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 750px) {
  .company-hero__img {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .company-hero__img {
    height: 180px;
  }
}
.company-hero__text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.company-hero__label {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.company-hero__title {
  font-size: 2rem;
  font-weight: bold;
}
@media (min-width: 750px) {
  .company-hero__title {
    font-size: 2.5rem;
  }
}

/* ===== ACCESSIBILITY/REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
/* ====== Header base ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  padding-right: 15px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  padding-left: 50px;
}
.header-logo img {
  width: 80px;
  display: block;
}
@media (max-width: 600px) {
  .header-logo {
    padding-left: 20px;
  }
  .header-logo img {
    width: 60px;
  }
}

/* ====== Desktop nav ====== */
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-nav-link {
  color: #333;
}
.header-nav-link-register {
  background: #f7941d;
  color: white;
  padding: 10px 50px;
  border-radius: 30px;
  display: inline-block;
}

/* ====== Burger Button (hidden on PC) ====== */
.burger-btn {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: 0;
  z-index: 1100;
}
.burger-btn .bars {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.burger-btn .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background-color: #f7941d;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}
.burger-btn .bar.bar_top {
  top: 0;
}
.burger-btn .bar.bar_mid {
  top: 50%;
  transform: translateY(-50%);
}
.burger-btn .bar.bar_bottom {
  bottom: 0;
}

/* ====== Mobile / Tablet ====== */
@media (max-width: 1024px) {
  /* PC横並びは隠す */
  .header-nav-list {
    display: none;
  }
  /* ハンバーガー表示 */
  .burger-btn {
    display: block;
    margin-right: 20px;
  }
  /* オフキャンバスメニュー */
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(80vw, 320px);
    height: 100vh;
    padding-top: 80px;
    background-color: white;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    transition: left 0.25s ease;
    z-index: 1050;
  }
  .nav-wrapper .header-nav-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-wrapper .header-nav-item {
    padding: 12px 24px;
    transition: background-color 0.25s ease;
  }
  .nav-wrapper .header-nav-item:hover {
    background-color: #cfd8dc;
  }
  .nav-wrapper .header-nav-item .header-nav-link {
    display: block;
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
  }
  .nav-wrapper .header-nav-item .header-nav-link-register {
    text-align: center;
    margin-top: 8px;
    font-weight: 700;
  }
  /* 開いた時の状態（重要：子孫セレクタに修正） */
  .header.is-open .nav-wrapper {
    left: 0;
  }
  .header.is-open .burger-btn .bar_top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header.is-open .burger-btn .bar_mid {
    opacity: 0;
  }
  .header.is-open .burger-btn .bar_bottom {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}
.footer {
  background-color: #f4f4f4;
  color: #333;
  font-size: 0.875rem;
  padding: 40px 20px;
  margin-top: 50px;
  width: 100%;
}
.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .footer .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .footer-brand img {
  width: 120px;
}
@media (max-width: 600px) {
  .footer .footer-brand img {
    width: 80px;
  }
}
.footer .footer-nav {
  display: flex;
  justify-content: space-between;
}
.footer .footer-nav ul {
  list-style: none;
  padding: 0;
}
.footer .footer-nav ul li {
  margin-bottom: 8px;
}
.footer .footer-nav ul li a {
  color: #333;
  text-decoration: none;
}
.footer .footer-nav ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer .footer-nav {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-nav ul {
    margin-bottom: 16px;
  }
}
.footer .footer-social {
  display: flex;
  gap: 12px;
}
.footer .footer-social a img {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .footer .footer-social {
    justify-content: center;
    margin-top: 16px;
  }
}
.footer .footer-legal {
  grid-column: 1/-1;
  margin-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: #666;
}/*# sourceMappingURL=main.css.map */