.c-svg {
  display: block;
  fill: var(--fill, currentColor);
}

.c-svg--instagram {
  aspect-ratio: 32/32;
  width: var(--w, 32px);
}

.c-svg--arrow {
  aspect-ratio: 39/32;
  width: var(--w, 39px);
}

.c-svg--logo-andgolf {
  aspect-ratio: 155/32;
  width: var(--w, 155px);
}

.c-svg--logo-andgolf-full {
  aspect-ratio: 108/32;
  width: var(--w, 108px);
}

.c-svg--logo-andperse {
  aspect-ratio: 177/32;
  width: var(--w, 177px);
}

.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;
}

@media (max-width: 48em) {
  .local-nav:first-child, .mv + .local-nav {
    padding: 20px 0;
  }
}
@media (min-width: 48.0625em) {
  .local-nav:first-child, .mv + .local-nav {
    margin-top: 16px;
  }
}
@media (max-width: 48em) {
  .local-nav:last-child {
    margin-top: 96px;
  }
}
@media (min-width: 48.0625em) {
  .local-nav:last-child {
    margin-top: 200px;
  }
}
@media (max-width: 48em) {
  .local-nav#LOCAL_NAV_TOP {
    padding: 20px 0;
  }
  .local-nav#LOCAL_NAV_BOTTOM {
    margin-top: 96px;
  }
}
@media (min-width: 48.0625em) {
  .local-nav#LOCAL_NAV_TOP {
    margin-top: 16px;
  }
  .local-nav#LOCAL_NAV_BOTTOM {
    margin-top: 200px;
  }
}
.local-nav__container {
  width: calc(100% - max(30px, 5.5555555556vw) * 2);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48.0625em) {
  .local-nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.local-nav__logo svg {
  width: clamp(225px, 27.1428571429vw, 380px);
}
@media (max-width: 48em) {
  .local-nav__logo + .local-nav__items {
    margin-top: 12px;
  }
}
@media (min-width: 48.0625em) {
  .local-nav__logo + .local-nav__items .local-nav__item {
    height: 70.796460177%;
    padding: 0;
  }
}
.local-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 clamp(1.6rem, 2vw, 2.8rem);
}
.local-nav__items::after {
  display: none;
}
@media (max-width: 48em) {
  .local-nav__items {
    max-width: 420px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 48.0625em) {
  .local-nav__items {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 clamp(3.2rem, 4.5714285714vw, 6.4rem);
  }
}
.local-nav__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  line-height: 1.25;
  padding: 2.15em 0;
}
.local-nav__item .c-svg {
  --w: 16px;
}
.local-nav__item a {
  position: relative;
}
.local-nav__item a::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  margin: auto;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.local-nav__item.is-current a::after {
  opacity: 1;
}
@media (min-width: 48.0625em) {
  .local-nav__item {
    font-size: 1.6rem;
    padding: 3em 0;
  }
  .local-nav__item .c-svg {
    --w: 20px;
  }
  .local-nav__item:hover a::after {
    opacity: 1;
  }
}

.p-section:not(:first-child) {
  margin-top: 96px;
}
@media (min-width: 48.0625em) {
  .p-section:not(:first-child) {
    margin-top: 120px;
  }
}
.p-section#THE_FIRST_COLLECTION {
  margin-top: 140px;
}
@media (min-width: 48.0625em) {
  .p-section#THE_FIRST_COLLECTION {
    margin-top: 240px;
  }
}
@media (min-width: 48.0625em) {
  .p-section__container {
    width: calc(100% - max(30px, 5.5555555556vw) * 2);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 48em) {
  .p-section__header {
    width: calc(100% - max(30px, 5.5555555556vw) * 2);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-section__heading {
  font-size: 3.2rem;
  font-weight: bold;
  font-family: var(--ff--en);
  line-height: 1.2;
}
@media (min-width: 48.0625em) {
  .p-section__heading {
    font-size: 4rem;
  }
}
.p-section__body {
  margin-top: 36.8px;
}
@media (min-width: 48.0625em) {
  .p-section__body {
    margin-top: 64px;
  }
}

.andgolf {
  font-family: "Helvetica Neue", YuGothic, sans-seif;
  --ff--en: "Helvetica Neue", sans-serif;
  color: #000;
  padding-bottom: 100px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
}
.andgolf :where(input, select, textarea, table, th, td, li, a) {
  font-family: "Helvetica Neue", YuGothic, sans-seif;
}
.andgolf :where(:is(ul, ol, dl))::before {
  display: none;
}
.andgolf > svg {
  display: none;
}
@media (min-width: 48.0625em) {
  .andgolf {
    padding-bottom: 240px;
  }
}

.local-nav:first-child, .mv + .local-nav {
  margin-top: 44px;
}
@media (min-width: 48.0625em) {
  .local-nav:first-child, .mv + .local-nav {
    margin-top: 80px;
  }
}

.pg-heading {
  font-family: var(--ff--en);
}
.pg-heading__sub-title {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.75;
}
@media (min-width: 48.0625em) {
  .pg-heading__sub-title {
    font-size: 2rem;
  }
}
.pg-heading__title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 48.0625em) {
  .pg-heading__title {
    font-size: 4rem;
  }
}
.pg-heading__lead {
  margin-top: clamp(3.2rem, 3.1428571429vw, 4.4rem);
  line-height: 1.8;
  font-size: 1.3rem;
}
@media (min-width: 48.0625em) {
  .pg-heading__lead {
    font-size: 1.8rem;
  }
}

.pg-image-anchor {
  container-name: image-anchor;
  container-type: inline-size;
  margin-top: clamp(6.4rem, 5.7142857143vw, 8rem);
}
@media (max-width: 48em) {
  .pg-image-anchor {
    --content-base-margin: 80;
    --content-min-margin: 30;
    margin-left: min(var(--content-min-margin, 24) * -1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100 * -1vw);
    margin-right: min(var(--content-min-margin, 24) * -1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100 * -1vw);
  }
}
.pg-image-anchor__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(123px, 1fr));
  gap: clamp(0.3rem, 0.3571428571vw, 0.5rem);
}
@media (min-width: 48.0625em) {
  .pg-image-anchor__items {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.pg-image-anchor__item {
  position: relative;
  overflow: hidden;
}
.pg-image-anchor__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: linear-gradient(to bottom, transparent, #000);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: 2;
}
.pg-image-anchor__item img {
  position: relative;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  z-index: 1;
}
@media (min-width: 48.0625em) {
  .pg-image-anchor__item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.pg-image-anchor__text {
  position: absolute;
  color: #fff;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  padding: 1.14em;
  line-height: 1.4;
  font-weight: bold;
}
.pg-image-anchor__text a::after {
  content: "";
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.pg-mv {
  margin-top: 40px;
}
@media (min-width: 48.0625em) {
  .pg-mv {
    margin-top: 64px;
  }
}

.pg-intro {
  margin-top: 32px;
}
@media (min-width: 48.0625em) {
  .pg-intro {
    margin-top: 64px;
  }
}
.pg-intro__inner {
  width: calc(100% - max(30px, 5.5555555556vw) * 2);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.pg-intro__rich-text {
  font-size: 1.3rem;
}
@media (min-width: 48.0625em) {
  .pg-intro__rich-text {
    font-size: 1.8rem;
  }
}
.pg-intro__content {
  margin-top: 56px;
}
@media (min-width: 48.0625em) {
  .pg-intro__content {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 48.0625em) {
  .pg-intro__img {
    width: 34.2307692308%;
  }
}

.p-block {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
}
@media (min-width: 48.0625em) {
  .p-block {
    width: 66%;
  }
}
.p-block__inner {
  padding: 0 25px;
}
@media (min-width: 48.0625em) {
  .p-block__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 0 56px;
  }
}
.p-block__heading-title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (min-width: 48.0625em) {
  .p-block__heading-title {
    font-size: 2.8rem;
  }
}
.p-block__heading > p {
  font-size: 1.2rem;
}
@media (min-width: 48.0625em) {
  .p-block__heading > p {
    font-size: 1.6rem;
  }
}

.pg-section {
  margin-top: 128px;
}
@media (min-width: 48.0625em) {
  .pg-section {
    margin-top: 160px;
  }
}
@media (min-width: 48.0625em) {
  .pg-section__container {
    width: calc(100% - max(30px, 5.5555555556vw) * 2);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.pg-section__header {
  width: calc(100% - max(30px, 5.5555555556vw) * 2);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.pg-collection:not(:last-of-type) {
  margin-bottom: 96px;
}
@media (min-width: 48.0625em) {
  .pg-collection:not(:last-of-type) {
    margin-bottom: 128px;
  }
}
@media (min-width: 48.0625em) {
  .pg-collection__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
  }
}

.pg-main-view {
  margin-bottom: 32px;
}
@media (min-width: 48.0625em) {
  .pg-main-view {
    width: max(100% - 80px - 480px, 56.25%);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    position: sticky;
    top: 70px;
    margin-bottom: 0;
  }
}

.p-info {
  margin-bottom: 45px;
}
@media (min-width: 48.0625em) {
  .p-info {
    width: min(480px, 37.5%);
    padding: 40px 0;
    margin: 0;
  }
}
@media (max-width: 48em) {
  .p-info__content {
    max-width: min(calc(100% - 30px * 2),90%);
    margin-left: auto;
    margin-right: auto;
  }
}
.p-info__header {
  margin-bottom: 48px;
}
@media (min-width: 48.0625em) {
  .p-info__header {
    margin-bottom: 64px;
  }
}
.p-info__header p {
  font-size: 1.3rem;
}
@media (min-width: 48.0625em) {
  .p-info__header p {
    font-size: 1.6rem;
  }
}
.p-info__heading {
  font-family: var(--ff--en);
}
.p-info__heading span {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 20px;
  display: block;
}
@media (min-width: 48.0625em) {
  .p-info__heading span {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}
.p-info__heading h4 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media (min-width: 48.0625em) {
  .p-info__heading h4 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.p-info__notice {
  margin-top: clamp(2.4rem, 2.2857142857vw, 3.2rem);
  font-size: 16px;
}
.p-info__notice dt {
  font-size: clamp(1rem, 0.8571428571vw, 1.2rem);
  font-weight: bold;
  line-height: 1.2;
}
.p-info__notice dd {
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
  line-height: 1.8;
  margin-top: 8px;
}

.p-pattern__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.p-pattern__item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (min-width: 48.0625em) {
  .p-pattern__item:not(:last-of-type) {
    margin-bottom: 24px;
  }
}
@media (min-width: 48.0625em) {
  .p-pattern__item {
    gap: 24px;
  }
}
.p-pattern__item-img {
  width: 39.6825396825%;
  min-width: 125px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 48.0625em) {
  .p-pattern__item-img {
    max-width: 160px;
  }
}
.p-pattern__item-text > p {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (min-width: 48.0625em) {
  .p-pattern__item-text > p {
    font-size: 1.4rem;
  }
}
.p-pattern__item-text > p.p-pattern__item-title {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (min-width: 48.0625em) {
  .p-pattern__item-text > p.p-pattern__item-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.p-pattern__items {
  margin-bottom: 48px;
}
@media (min-width: 48.0625em) {
  .p-pattern__items {
    margin-bottom: 64px;
  }
}

.p-credit__name {
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
@media (min-width: 48.0625em) {
  .p-credit__name {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.p-credit__id {
  font-size: 1.1rem;
  color: #aaaaaa;
  text-align: right;
}
.p-credit__price {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .p-credit__price {
    font-size: 1.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 4px;
  }
}
.p-credit__price small {
  font-weight: normal;
  font-size: 1rem;
}
.p-credit__box:not(:last-of-type) {
  border-bottom: solid 1px #dddddd;
}
.p-credit__box:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.p-credit__button.c-fill-button {
  height: 36px;
  --w: calc((204 / 375) * 100%);
  --h: 36px;
  --bdr: 20px;
}
.p-credit__button.c-fill-button a {
  font-size: 1.2rem;
  font-weight: normal;
}
.p-credit__button.c-fill-button:hover {
  --bdc-h: #000;
}

.pg-guide {
  font-family: var(--ff--en);
  width: calc(100% - max(30px, 5.5555555556vw) * 2);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.pg-guide__title {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.26;
  margin-bottom: 4px;
}
@media (min-width: 48.0625em) {
  .pg-guide__title {
    font-size: 2rem;
  }
}
.pg-guide__item {
  padding: 20px 0;
  padding-right: 12px;
  border-bottom: solid 1px #dddddd;
}
@media (min-width: 48.0625em) {
  .pg-guide__item {
    padding: 24px 0;
    padding-right: 24px;
  }
  .pg-guide__item:not(.is-current) .viewmore-button {
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .pg-guide__item:not(.is-current) .viewmore-button:hover {
    -webkit-transform: translateX(24px);
            transform: translateX(24px);
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
.pg-guide__item.is-current .viewmore-button {
  opacity: 0.2;
  pointer-events: none;
}

.viewmore-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.viewmore-button a {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 48.0625em) {
  .viewmore-button a {
    font-size: 4.8rem;
  }
}
.viewmore-button a::after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.viewmore-button__icon > .c-svg {
  width: 20px;
  height: 16px;
}
@media (min-width: 48.0625em) {
  .viewmore-button__icon > .c-svg {
    width: 30px;
    height: 24px;
  }
}

.p-product__img {
  margin-bottom: 20px;
}
.p-product.swiper-container.no-swiper .swiper-button-next,
.p-product.swiper-container.no-swiper .swiper-button-prev {
  display: none;
}
@media (min-width: 48.0625em) {
  .p-product .swiper-slide {
    padding: 0 min(60px, 4.2857142857vw);
  }
}
@media (min-width: 48.0625em) {
  .p-product .swiper-button-prev, .p-product .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    -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;
  }
  .p-product .swiper-button-prev::after, .p-product .swiper-button-next::after {
    --size: 8px;
    --clr: #000;
    --bdrw: 1px;
    display: block;
    width: var(--size, 8px);
    height: var(--size, 8px);
    border-top: var(--bdrw, 1px) solid var(--clr, #000);
    border-right: var(--bdrw, 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;
    position: absolute;
  }
  .p-product .swiper-button-prev:hover, .p-product .swiper-button-next:hover {
    background-color: #fff;
    outline: solid 1px rgba(0, 0, 0, 0.1);
    -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;
  }
  .p-product .swiper-button-next {
    right: 1px;
  }
  .p-product .swiper-button-next::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    right: 18px;
  }
  .p-product .swiper-button-prev {
    left: 1px;
  }
  .p-product .swiper-button-prev::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    left: 18px;
  }
}/*# sourceMappingURL=focus.css.map */