@charset "UTF-8";

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

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

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
  text-align: inherit;
  cursor: pointer;
}

/* ====================
  Variables & Base
==================== */
:root {
  --base-width: 414;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #fff;
}

section {
  scroll-margin-top: 61px;
}

@media screen and (min-width: 501px) {
  a:hover,
  a:active,
  button:hover,
  button:active {
    opacity: 0.85;
    transition: opacity 0.2s;
  }

  a:focus-visible,
  button:focus-visible {
    opacity: 0.85;
  }
}

/* ====================
  Common
==================== */
.p-cta__btn {
  margin: 0 8px;
}

.p-cta__btn a {
  position: relative;
  display: block;
  text-align: center;
  border-radius: 8px;
  color: #1A3540;
  background: linear-gradient(91.62deg, #C9D6DC 0.01%, #F4F7F0 7.17%, #FFFFFF 11.6%, #C9D6DC 32.22%, #F4F7F0 64.17%, #C9D6DC 99.99%);
  border: 2px solid #BFBFBF;
  padding: 18px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
.p-cta__btn a.-red {
  color: #fff;
  background: #CB0200;
  border-color: #CB0200;
}

.p-cta__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15.5px;
  width: 6.5px;
  height: 6.5px;
  border-right: 1px solid #1A3540;
  border-bottom: 1px solid #1A3540;
  transform: translateY(-75%) rotate(45deg);
}
.p-cta__btn a.-red::after {
  border-color: #fff;
}

.c-section-title {
  text-align: center;
  margin: 0 12px 48px;
}

.c-section-title span {
  display: block;
  max-width: 390px;
  margin: 0 auto;
  padding: 9px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 7.5%, rgba(255, 255, 255, 0.7) 15%, rgba(255, 255, 255, 0.85) 49.91%, rgba(255, 255, 255, 0.6) 85%, rgba(255, 255, 255, 0.9) 91.83%, rgba(255, 255, 255, 0) 100%);
  font-weight: 300;
  font-size: 64px;
  text-shadow: 0px 0px 12px #00000099;
}

.c-section-text {
  margin: 0 20px;
}

.c-section-text__catch {
  color: #FFFFB2;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}

.c-section-text__text {
  margin-top: 16px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

/* ====================
  Header
==================== */
.l-header {
  width: 100%;
  padding: 2px 0;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 959px) {
  .l-header { padding: 8px 0; }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
}
@media screen and (max-width: 500px) {
  .l-header__inner { padding: 0 10px; }
}

.l-header__logo a { display: block; }
.l-header__logo img {
  width: 269px;
  height: 56px;
}
@media screen and (max-width: 959px) {
  .l-header__logo img {
    width: 212px;
    height: 44px;
  }
}

@media screen and (min-width: 960px) {
  .l-header__line { display: none; }
}

.l-header__line { width: 44px; }
.l-header__line a { display: block; }

/* ====================
  PC 横ナビ（960px以上）
==================== */
.pc-side { display: none; }

@media screen and (min-width: 501px) {
  .pc-side {
    display: block;
    position: fixed;
    z-index: 0;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 61px);
    background: linear-gradient(122.01deg, rgba(255, 255, 255, 0) 11.54%, rgba(255, 255, 255, 0.16) 26.92%, rgba(145, 225, 241, 0) 60.36%, rgba(145, 225, 241, 0.13) 88.46%), linear-gradient(0deg, #39404A, #39404A);
  }
  .pc-side__inner { display: none; }
}

@media screen and (min-width: 960px) {
  .pc-side__inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .pc-side__logo,
  .pc-side__nav {
    width: calc(50vw - 207px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pc-side__logo img { width: 190px; }
  .pc-side__nav { padding: 0 calc((64 / 1440) * 100vw); }

  .pc-side__anchor {
    width: 100%;
    max-width: 385px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pc-side__anchor li {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #FFFFFF;
  }
  .pc-side__anchor li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17.5px;
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    transform: translateY(-75%) rotate(45deg);
 }

  .pc-side__anchor li a {
    display: block;
    padding: 8px 12px;
    font-weight: 300;
    font-size: 32px;
    text-shadow: 0px 0px 15px #286D95;
  }

  .pc-side__nav .p-cta__btn {
    width: 100%;
    max-width: 385px;
    margin: 0;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pc-side__nav .p-cta__btn a {
    padding: 12.5px 0;
  }

  .pc-side__line { margin-top: 32px; }
  .pc-side__line a {
    display: block;
    width: 64px;
  }
}

@media screen and (max-height: 500px) {
  .pc-side__nav { display: none; }
}

/* ====================
  SP main
==================== */
.sp-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (min-width: 501px) {
  .sp-wrapper {
    max-width: 414px;
    box-shadow: 0px 0px 16px #00000033;
  }
}

/* ====================
  MV
==================== */
.p-mv {
  background-color: #324458;
  padding-bottom: 40px;
}

.p-mv__inner {
  margin: 0 20px;
}

.p-mv__content {
  max-width: 340px;
  margin: 20px auto 48px; 
}

.p-mv__campaign {
  text-align: center;
  width: 283px;
  margin: 0 auto 20px;
  padding: 1px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0) 100%);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  text-shadow: 0px 0px 8px #000000;
}

.p-mv__price {
  margin-bottom: 16px;
  height: min(123px, 32.368vw);
  padding: min(16px, 4.211vw) 0;
  text-align: center;
  font-weight: 300;
  text-shadow: 0px 0px 8px #FFFFFF40;
  background-image: url("../img/bg-mv-price.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-mv__price-label {
  display: block;
  margin-bottom: min(8px, 2.105vw);
  font-size: min(14px, 3.684vw);
  line-height: 1.4;
}

.p-mv__price-main {
  display: block;
  font-size: min(16.76px, 4.411vw);
  color: #FFFFB2;
}

.p-mv__price-main span {
  font-size: min(62.59px, 16.471vw);
}

.p-mv__notes {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

/* ====================
  PRICE
==================== */
.p-price {
  background: #324458;
  padding: 60px 0;
}

.p-price__inner {
  margin: 0 20px;
}

.p-price__content {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #25252599;
}

.p-price__heading {
  text-align: center;
  background-color: #fff;
  padding: 20px 0 16px;
  color: #2A3139;
  font-weight: 300;
  font-size: 24px;
}

.p-price__catch {
  display: flex;
  margin: 24px 0 16px;
  justify-content: center;
  text-align: center;
}

.p-price__catch-quote {
  display: block;
  font-weight: 100;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-price__catch-text {
  display: block;
  padding: 7px 8px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-price__lead {
  margin: 24px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-price__box {
  margin: 0 24px;
  padding: 16px 0;
  background-image: url("../img/bg-price-box.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-price__rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-shadow: 0px 0px 8px #FFFFFF40;
  color: #FFFFB2;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.p-price__rate-label {
  font-size: min(36.81px, 8.893vw);
  margin-right: min(9px, 2.174vw);
}

.p-price__rate-unit {
  writing-mode: vertical-rl;
  font-size: min(17.26px, 4.169vw);
  margin-right: min(8px, 1.932vw);
}

.p-price__rate-main {
  font-size: min(82.83px, 20.007vw);
  letter-spacing: -0.07em;
}

.p-price__rate-percent {
  font-size: min(17.26px, 4.169vw);
  letter-spacing: -0.03em;
  margin-left: min(4px, 0.966vw);
}

.p-price__period {
  text-align: center;
  font-weight: 300;
  font-size: min(15px, 3.623vw);
  line-height: 1.8;
}

.p-price__list {
  margin: 0 24px 24px;
  padding: 24px 20px;
  border: 0.5px solid #FFFFFF;
  background: #FFFFFF1A;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-price__item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 0.5px solid #FFFFFF;
}

.p-price__item-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-price__item-text {
  margin-top: 4px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-price__notes {
  margin: 0 24px 50px;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

/* ====================
  About
==================== */
.p-about {
  background: #000;
  padding: 60px 0;
}

.p-about__item {
  margin-top: 48px;
}

.p-about__slider {
  position: relative;
}

.p-about__slider-swiper,
.p-about__slider-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about__logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 76px;
  pointer-events: none;
}

.p-about__body {
  padding: 84px 20px 24px;
}

.p-about__lead {
  position: relative;
  text-align: center;
  color: #FFFFB2;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 9px;
  margin-bottom: 12px;
}
.p-about__lead::after {
  content: "";
  position: absolute;
  background-color: #FFFFB2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
}

.p-about__title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 414px) {
  .p-about__title { font-size: calc((32 / var(--base-width)) * 100vw); }
}

.p-about__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 20px;
}

.p-about__color-header {
  width: 100%;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
}

.p-about__color-text-group span {
  display: block;
  font-weight: 300;
  line-height: 1.3;
}

.p-about__color-title {
  font-size: 24px;
  margin-bottom: 2px;
}

.p-about__color-note {
  font-size: 12px;
}

.p-about__color-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.p-about__color-icon::before,
.p-about__color-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.p-about__color-icon::before {
  width: 13px;
  height: 1px;
}

.p-about__color-icon::after {
  width: 1px;
  height: 13px;
}

.p-about__color.is-open .p-about__color-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.p-about__color-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.p-about__color-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  margin: 20px 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #fff;
}

.p-about__color-list {
  margin: 20px 12px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.p-about__color-item {
  text-align: center;
}

.p-about__color-swatch {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.p-about__color-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.p-about__features {
  margin: 48px 20px 0;
  border-radius: 16px;
  border: 1px solid #fff;
  overflow: hidden;
  background: #25252599;
}

.p-about__features-heading {
  text-align: center;
  background-color: #fff;
  padding: 20px 0 16px;
  color: #2A3139;
  font-weight: 300;
  font-size: 24px;
}

.p-about__features-list {
  margin: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-about__features-text {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-about__features-text span {
  font-size: 12px;
}

.p-about__features-notes {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.03em;
  margin: 0 24px 32px;
}

/* ====================
  Q&A
==================== */
.p-qa {
  background-color: #324458;
  padding: 60px 0;
}

.p-qa .c-section-text__text {
  font-size: 12px;
}

.p-qa__list {
  margin: 0 20px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-qa__item {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.p-qa__header {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.p-qa__q {
  flex-shrink: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #000;
}

.p-qa__question {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #000;
}

.p-qa__arrow {
  flex-shrink: 0;
  margin: auto 0;
  width: 24px;
  height: 24px;
  background-image:  url("../img/icon-qa-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-qa__item.is-open .p-qa__arrow {
  transform: rotate(180deg);
}

.p-qa__content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.p-qa__body {
  padding: 0 16px 16px;
}

.p-qa__body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: -0.03em;
  color: #324458;
}

/* ====================
  店舗情報
==================== */
.p-shop {
  background-image: url("../img/bg-shop.webp");
  background-position: top left;
  background-size: cover;
  font-family: "Roboto", sans-serif;
  color: #000;
}

.p-shop__inner { padding: 60px 32px; }

.p-shop__title {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 33px;
}

.p-shop__item:not(:last-child) { margin-bottom: 20px; }
.p-shop__item.is-open:not(:last-child) { margin-bottom: 12px; }

.p-shop__header {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  list-style: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.p-shop__header::-webkit-details-marker { display: none; }
@media screen and (max-width: 414px) {
  .p-shop__header { font-size: calc((20 / var(--base-width)) * 100vw); }
}

.p-shop__header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  background-image: url("../img/shop-accordion-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.p-shop__item.is-open .p-shop__header::after {
  background-image: url("../img/shop-accordion-minus.svg");
}

.p-shop__header .-try {
  display: block;
  position: relative;
  margin-bottom: 2px;
  padding-left: 18px;
  color: #CB0200;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.36;
}
.p-shop__header .-try::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon-car.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}

.p-shop__content {
  margin-top: -8px;
  position: relative;
  z-index: 2;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0 16px;
}

.p-shop__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.p-shop__tag {
  padding: 0 8px;
  border: 1px solid #000000;
  font-weight: 400;
  font-size: 10px;
  line-height: 2;
  letter-spacing: -0.03em;
  text-align: center;
  white-space: nowrap;
}

.p-shop__info {
  margin: 16px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.715;
  letter-spacing: -0.03em;
}

.p-shop__info .-address a,
.p-shop__info .-tel a,
.p-shop__info .-time {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.p-shop__info .-time {
  display: block;
}

.p-shop__info .-address a::after,
.p-shop__info .-tel a::after,
.p-shop__info .-time::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.p-shop__info .-address a::after { background-image: url("../img/icon-map.svg"); }
.p-shop__info .-tel a::after { background-image: url("../img/icon-tel.svg"); }
.p-shop__info .-time::after { background-image: url("../img/icon-time.svg"); }

/* ====================
  お問い合わせ
==================== */
.p-contact { padding-top: 48px; }

.p-contact__title {
  text-align: center;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ====================
  フローティング
==================== */
.p-sp-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
@media screen and (min-width: 501px) {
  .p-sp-nav {
    width: 414px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 960px) {
  .p-sp-anchor { display: none; }
}

.p-pagetop {
  position: absolute;
  right: 10px;
  bottom: 85px;
  width: 72px;
  height: 72px;
  background-color: #252525;
  border: 3px solid #fff;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  pointer-events: auto;
}
.p-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-pagetop::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  background-image: url("../img/icon-pagetop.svg");
}

.p-sp-anchor {
  background: #252525;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: auto;
}
.p-sp-anchor.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-sp-anchor__list {
  display: flex;
  height: 68px;
}

.p-sp-anchor__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-sp-anchor__item a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
}

.p-sp-anchor__item a span {
  display: block;
  font-weight: 300;
  font-size: 24px;
  line-height: 38px;
  text-shadow: 0px 0px 12px #FFFFFF99;
}

.p-sp-anchor__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 38px;
  width: 1px;
  background: #fff;
}

/* ====================
  Footer
==================== */
.l-footer__line {
  padding: 48px 0;
  text-align: center;
  background-color: #324458;
}

.l-footer__line-title {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.4;
  text-shadow: 0px 0px 15px #286D95;
}

.l-footer__line-icon a {
  display: inline-block;
  width: 64px;
}

.l-footer__copy {
  text-align: center;
  background-color: #000;
  padding: 6px 0;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}