.c-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-buttons [class$=button] + [class$=button] {
  margin-left: var(--margin, 16px);
}
@media (min-width: 48.0625em) {
  .c-buttons [class$=button] + [class$=button] {
    margin-left: var(--margin, 24px);
  }
}

.c-stroke-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--w, 100%);
  height: var(--h, 72px);
  max-width: var(--maw, 100%);
  font-size: 1.3rem;
  font-weight: bold;
  border: 1px solid var(--clr, #000);
  border-radius: var(--bdr, 0);
  color: var(--clr, #000);
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media (max-width: 48em) {
  .c-stroke-button + .c-stroke-button {
    margin-top: 20px;
  }
}
@media (min-width: 48.0625em) {
  .c-stroke-button {
    max-width: var(--maw, 100%);
    height: var(--h, 80px);
    font-size: 1.5rem;
  }
  .c-stroke-button:hover:not(.is-coming-soon) {
    background-color: var(--clr, #000);
    color: #fff;
  }
  .c-stroke-button:hover:not(.is-coming-soon) .c-stroke-arrow {
    border-color: #fff;
  }
}
.c-stroke-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.c-stroke-button.is-coming-soon {
  opacity: 0.5;
}
.c-stroke-button.is-coming-soon::before {
  content: attr(data-label);
}
.c-stroke-button.is-coming-soon a {
  pointer-events: none;
  font-size: 0;
}

.c-fill-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--w, -webkit-fit-content);
  width: var(--w, -moz-fit-content);
  width: var(--w, fit-content);
  height: var(--sp-h, var(--h, 60px));
  font-size: var(--sp-fz, var(--fz));
  font-weight: bold;
  border-radius: var(--bdr, 0);
  background-color: var(--bgc, #000);
  border: 1px solid var(--bdc, var(--bgc, #000));
  color: var(--color, #fff);
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  max-width: var(--maw, 100%);
  padding: 0 32px;
}
@media (min-width: 48.0625em) {
  .c-fill-button {
    height: var(--h, 60px);
    font-size: var(--fz, 1.3rem);
  }
  .c-fill-button:hover {
    border-color: var(--bdc-h, var(--bdc, var(--bgc-h, var(--bgc, #fff))));
    background-color: var(--bgc-h, var(--bgc, #fff));
    color: var(--color-h, var(--color, #000));
  }
}
.c-fill-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-buy-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: var(--h, 32px);
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: var(--bdr, 0);
  background-color: var(--bgc, #000);
  border: 1px solid var(--bdc, var(--bgc));
  color: var(--color, #fff);
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  max-width: var(--maw, 56px);
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 48.0625em) {
  .c-buy-button {
    height: var(--h, 32px);
    font-size: 1.4rem;
    max-width: var(--maw, 80px);
  }
  .c-buy-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgc-h, #fff);
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .c-buy-button:hover {
    color: var(--color-h, var(--color));
  }
  .c-buy-button:hover::before {
    opacity: 1;
    background-color: var(--bgc-h, #fff);
    border-color: var(--bdc-h, var(--bdc));
  }
}
.c-buy-button a {
  z-index: 2;
}
.c-buy-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-color-chip__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-color-chip__item {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: var(--color1, #ccc);
}
.c-color-chip__item + .c-color-chip__item {
  margin-left: 8px;
}
.c-color-chip__item::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  z-index: 2;
  background-color: var(--color2, transparent);
}
@media (min-width: 48.0625em) {
  .c-color-chip__item {
    width: 32px;
    height: 32px;
  }
  .c-color-chip__item::after {
    width: 14px;
    height: 14px;
  }
}

.c-stroke-arrow {
  display: block;
  width: var(--size, 8px);
  height: var(--size, 8px);
  border-top: var(--bdw, 1px) solid var(--clr, #000);
  border-right: var(--bdw, 1px) solid var(--clr, #000);
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.c-stroke-arrow--prev {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}
.c-stroke-arrow--next {
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.c-stroke-arrow--top {
  -webkit-transform: translateY(25%) rotate(-45deg);
          transform: translateY(25%) rotate(-45deg);
}
.c-stroke-arrow--bottom {
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
}

.p-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 48em) {
  .p-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 48.0625em) {
  .p-buttons--horizon .c-fill-button + .c-fill-button, .p-buttons--horizon .c-fill-button + .c-stroke-button,
  .p-buttons--horizon .c-stroke-button + .c-fill-button,
  .p-buttons--horizon .c-stroke-button + .c-stroke-button {
    margin-left: 40px;
  }
}
.p-buttons--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-d-n--sp {
  display: none;
}
@media (min-width: 48.0625em) {
  .u-d-n--sp {
    display: block;
  }
}
.u-d-n--tb {
  display: none;
}
@media (min-width: 48.0625em) {
  .u-d-n--tb {
    display: block;
  }
}
.u-d-b--sp {
  display: block;
}
@media (min-width: 30.0625em) {
  .u-d-b--sp {
    display: none;
  }
}
.u-d-b--tb {
  display: block;
}
@media (min-width: 48.0625em) {
  .u-d-b--tb {
    display: none;
  }
}
.u-d-ib--sp {
  display: inline-block;
}
@media (min-width: 30.0625em) {
  .u-d-ib--sp {
    display: none;
  }
}
.u-d-ib--tb {
  display: inline-block;
}
@media (min-width: 48.0625em) {
  .u-d-ib--tb {
    display: none;
  }
}

.js-fadein, .js-fadein-up {
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.js-fadein:not(.is-animated), .js-fadein-up:not(.is-animated) {
  opacity: 0;
}

.js-fadein-up:not(.is-animated) {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.feature-athlete-look-23fw ul:before,
.feature-athlete-look-23fw ol:before,
.feature-athlete-look-23fw dl:before,
.feature-athlete-look-23fw .clearfix:before,
.feature-athlete-look-23fw ul:after,
.feature-athlete-look-23fw ol:after,
.feature-athlete-look-23fw dl:after,
.feature-athlete-look-23fw .clearfix:after {
  display: none;
}

.pg-mv__mov {
  aspect-ratio: auto 375/375;
}
@media (min-width: 48.0625em) {
  .pg-mv__mov {
    aspect-ratio: auto 1440/810;
  }
}
.pg-mv__mov a {
  display: block;
  grid-area: 1/1;
}
.pg-mv__mov > iframe {
  max-width: none !important;
}
.pg-mv__container {
  position: relative;
  overflow: hidden;
}
.pg-mv__container .pg-play-btn {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  z-index: 50;
}
@media (min-width: 48.0625em) {
  .pg-mv__container .pg-play-btn {
    bottom: 48px;
  }
}
@media (min-width: 48.0625em) {
  .pg-mv__container:hover .pg-play-btn__img::before {
    width: 40px;
    height: 40px;
  }
}
.pg-mv iframe {
  width: 100%;
}
.pg-mv a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

.pg-play-btn {
  width: 44px;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media (min-width: 48.0625em) {
  .pg-play-btn {
    width: 56px;
  }
}
.pg-play-btn__img {
  position: relative;
}
.pg-play-btn__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition-property: width, height;
  transition-property: width, height;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.pg-play-btn a {
  position: relative;
  margin-top: 4px;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: bold;
}
.pg-play-btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .pg-play-btn a {
    margin-top: 8px;
    font-size: 1.2rem;
  }
}

.pg-introduction {
  padding-top: 48px;
  padding-bottom: 80px;
  text-align: center;
  max-width: clamp(20px, 90%, 640px);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48.0625em) {
  .pg-introduction {
    padding-top: 96px;
    padding-bottom: 128px;
  }
}

.pg-subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media (min-width: 48.0625em) {
  .pg-subtitle {
    font-size: 1.8rem;
  }
}

.pg-title {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 4px;
}
@media (min-width: 48.0625em) {
  .pg-title {
    font-size: 4.8rem;
    margin-top: 8px;
  }
}

.pg-pro-link {
  margin-top: 28px;
}
@media (min-width: 48.0625em) {
  .pg-pro-link {
    margin-top: 56px;
  }
}
.pg-pro-link__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__items {
    gap: 80px;
  }
}
.pg-pro-link__item {
  position: relative;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__item:hover .pg-pro-link__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.pg-pro-link__img {
  overflow: hidden;
  border-radius: 50%;
}
.pg-pro-link__img img {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__img {
    width: 160px;
  }
}
.pg-pro-link__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 12px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.pg-pro-link__title::after {
  content: "";
  display: block;
  position: absolute;
}
.pg-pro-link__title a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__title {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.pg-pro-link__link {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-top: 12px;
  position: relative;
  z-index: 50;
  line-height: 1.1;
}
.pg-pro-link__link a {
  position: relative;
}
.pg-pro-link__link a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__link {
    font-size: 1.2rem;
  }
  .pg-pro-link__link:hover a::after {
    width: 0;
  }
}

.pg-section {
  position: relative;
  z-index: 10;
  margin-bottom: 72px;
}
@media (min-width: 48.0625em) {
  .pg-section {
    margin-bottom: 88px;
  }
}
.pg-section.pg-section--type01 .pg-look:nth-of-type(1) {
  width: 69.3333333333%;
  margin-left: auto;
}
@media (max-width: 48em) {
  .pg-section.pg-section--type01 .pg-look:nth-of-type(2) .pg-look__img {
    width: 53.3333333333%;
    margin-top: -37.9310344828%;
  }
}
@media (min-width: 48.0625em) {
  .pg-section.pg-section--type01 {
    width: calc(100% - max(20px, 7.7142857143vw) * 2);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1234/940;
  }
  .pg-section.pg-section--type01 .pg-look:nth-of-type(1) {
    width: 51.0534846029%;
    padding-top: 10.6382978723%;
  }
  .pg-section.pg-section--type01 .pg-look:nth-of-type(2) {
    width: 43.7601296596%;
    position: absolute;
    top: 0;
  }
}
.pg-section.pg-section--type02 {
  aspect-ratio: 375/769;
}
.pg-section.pg-section--type02 .pg-look:nth-of-type(1) {
  width: 100%;
}
.pg-section.pg-section--type02 .pg-look:nth-of-type(1) .pg-look__img {
  width: 69%;
}
.pg-section.pg-section--type02 .pg-look:nth-of-type(1) .pg-credit {
  margin-top: 86%;
}
.pg-section.pg-section--type02 .pg-look:nth-of-type(2) {
  top: 32.7698309493%;
  position: absolute;
  width: 53.3333333333%;
  right: 0;
}
.pg-section.pg-section--type02 .pg-look:nth-of-type(3) {
  position: absolute;
  top: 56%;
}
@media (max-width: 48em) {
  .pg-section.pg-section--type02 .pg-look:nth-of-type(3) .pg-look__img {
    width: 42.6666666667%;
    margin-left: 6.6666666667%;
  }
}
@media (min-width: 48.0625em) {
  .pg-section.pg-section--type02 {
    aspect-ratio: 1440/1077;
  }
  .pg-section.pg-section--type02 .pg-look:nth-of-type(1) .pg-look__img {
    width: 43.75%;
  }
  .pg-section.pg-section--type02 .pg-look:nth-of-type(1) .pg-credit {
    margin-top: 32px;
  }
  .pg-section.pg-section--type02 .pg-look:nth-of-type(1) .pg-credit__items {
    margin-left: 7.1527777778%;
  }
  .pg-section.pg-section--type02 .pg-look:nth-of-type(2) {
    position: absolute;
    top: 11.1420612813%;
    width: 37.5%;
    right: 0;
  }
  .pg-section.pg-section--type02 .pg-look:nth-of-type(3) {
    position: absolute;
    width: 27.7777777778%;
    top: 50.5106778087%;
    right: 22.3611111111%;
  }
}
.pg-section.pg-section--type03 .pg-look:nth-of-type(1) {
  width: 69.3333333333%;
  margin-left: auto;
}
@media (max-width: 48em) {
  .pg-section.pg-section--type03 .pg-look:nth-of-type(1) {
    margin-right: 6.6666666667%;
  }
}
.pg-section.pg-section--type03 .pg-look:nth-of-type(2) .pg-look__img {
  width: 53.3333333333%;
}
@media (max-width: 48em) {
  .pg-section.pg-section--type03 .pg-look:nth-of-type(2) .pg-look__img {
    margin-left: 6.6666666667%;
    margin-top: -38.632986627%;
  }
}
@media (min-width: 48.0625em) {
  .pg-section.pg-section--type03 {
    width: calc(100% - 22.1428571429vw);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1130/932;
  }
  .pg-section.pg-section--type03 .pg-look:nth-of-type(1) {
    width: 55.7522123894%;
    padding-top: 9.6566523605%;
  }
  .pg-section.pg-section--type03 .pg-look:nth-of-type(2) {
    position: absolute;
    width: 47.7876106195%;
    top: 0;
  }
  .pg-section.pg-section--type03 .pg-look:nth-of-type(2) .pg-look__img {
    width: 100%;
  }
}
@media (min-width: 48.0625em) {
  .pg-section.pg-section--type04 {
    width: calc(100% - max(80px, 8.5714285714vw) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}

.pg-look {
  position: relative;
}

.pg-credit {
  line-height: 1.2;
  margin-top: 24px;
}
@media (min-width: 48.0625em) {
  .pg-credit {
    margin-top: 32px;
  }
}
.pg-credit__items {
  margin-left: 6.6666666667%;
}
@media (min-width: 48.0625em) {
  .pg-credit__items {
    margin-left: 0;
  }
}
.pg-credit__item {
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.pg-credit__item:not(:last-of-type) {
  margin-bottom: 12px;
}
.pg-credit__item.is-coming-soon .pg-credit__link {
  display: none;
}
.pg-credit__item.is-coming-soon::after {
  content: attr(data-label);
  display: block;
}
.pg-credit__title, .pg-credit__link {
  font-weight: bold;
}
.pg-credit__link {
  position: relative;
}
.pg-credit__link::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  right: 0;
  bottom: 1px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 48.0625em) {
  .pg-credit__link:hover::after {
    width: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

:is(.pg-credit__item) > :is(div, a) {
  line-height: 1.1;
}

.c-buttons {
  margin: 72px auto;
  max-width: min(calc(100% - (20px * 2)),90%);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48.0625em) {
  .c-buttons {
    margin: 160px auto;
  }
}
.c-buttons .c-fill-button {
  position: relative;
  --w: 100%;
  --maw: 280px;
  --bdc: #000;
  --fz: 1.3rem;
}
@media (min-width: 48.0625em) {
  .c-buttons .c-fill-button a::after {
    width: 8px;
    height: 8px;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    left: 93.5%;
    top: 42.8571428571%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}
@media (min-width: 48.0625em) {
  .c-buttons .c-fill-button {
    --maw: 400px;
    --h: 70px;
    --fz: 1.5rem;
  }
}
@media (min-width: 48.0625em) {
  .c-buttons .c-fill-button:hover a::after {
    border-color: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}/*# sourceMappingURL=index.css.map */