@layer component {
  .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: 0.8125rem;
    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: 0.9375rem;
    }
    .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;
  }
}
@layer component {
  .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, 0.8125rem);
    }
    .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;
  }
}
@layer component {
  .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: 0.8125rem;
    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: 0.875rem;
      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;
  }
}
@layer component {
  .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;
    }
  }
}
@layer component {
  .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: var(--general--duration);
            transition-duration: var(--general--duration);
    -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);
  }
}
@layer component {
  .c-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: var(--button-items, center);
        -ms-flex-align: var(--button-items, center);
            align-items: var(--button-items, center);
    -webkit-box-pack: var(--button-justify, center);
        -ms-flex-pack: var(--button-justify, center);
            justify-content: var(--button-justify, center);
    gap: var(--button-gap, 0.5em);
    width: var(--button-w, -webkit-fit-content);
    width: var(--button-w, -moz-fit-content);
    width: var(--button-w, fit-content);
    min-width: var(--button-miw, 0);
    max-width: var(--button-maw, 100%);
    height: var(--button-h, 3.5rem);
    color: var(--button-clr, currentColor);
    border: 1px solid var(--button-bdc, transparent);
    background-color: var(--button-bgc, transparent);
    font-size: var(--button-fz, clamp(0.8125rem, 0.9722222222vw, 0.875rem));
    font-weight: var(--button-fw, 700);
    -webkit-transition-property: opacity, color, background-color, border-color;
    transition-property: opacity, color, background-color, 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-button:has(:is(a, span)) {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 2.5em);
  }
  .c-button a,
  .c-button span,
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    color: currentColor;
  }
  .c-button a::after,
  .c-button span::after,
  .c-button button::after,
  .c-button input[type=submit]::after,
  .c-button input[type=button]::after {
    content: "";
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 1.5em);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
  }
  .c-button .c-svg {
    width: 1.5em;
    height: 1.5em;
  }
  .c-button[data-variant*=primary], .c-button:not([data-variant]) {
    --button-clr: #fff;
    --button-bdc: var(--clr--theme-red);
    --button-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=primary]:hover, .c-button:not([data-variant]):hover {
    --button-clr: var(--clr--theme-red);
    --button-bgc: #fff;
    --triangle-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary] {
    --button-bdc: var(--clr--theme-gray);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary]:hover {
    --triangle-bgc: #fff;
    --svg-fill: #fff;
    background-color: var(--clr--theme-red);
    color: #fff;
  }
  .c-button[data-variant*=rounded-sm] {
    border-radius: 4px;
  }
  .c-button[data-variant*=rounded-md] {
    border-radius: 8px;
  }
  .c-button[data-variant*=rounded-full] {
    border-radius: var(--button-h, 3.5rem);
  }
  .c-button[data-variant*=has-triangle] {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-button[data-variant*=has-triangle] a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
  .c-button[data-variant*=has-triangle]::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-width: 6px 4px 0 4px;
    border-style: solid;
    border-color: var(--triangle-bgc, var(--clr--theme-red)) transparent transparent transparent;
    -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;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@layer project {
  .p-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: var(--buttons-items, center);
        -ms-flex-align: var(--buttons-items, center);
            align-items: var(--buttons-items, center);
    -webkit-box-pack: var(--buttons-justify, center);
        -ms-flex-pack: var(--buttons-justify, center);
            justify-content: var(--buttons-justify, center);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: var(--buttons-direction, row);
            flex-direction: var(--buttons-direction, row);
    gap: var(--buttons-gap-y, clamp(0.5rem, 0.8333333333vw, 0.75rem)) var(--buttons-gap-x, clamp(0.75rem, 1.6666666667vw, 1.5rem));
    width: var(--buttons-w, auto);
    margin-top: var(--buttons-mt, 2em);
  }
  @media (max-width: 48em) {
    .p-buttons {
      --buttons-direction: column;
    }
  }
}
@layer utility {
  .u-d-b--sp {
    display: none;
  }
  @media (max-width: 30em) {
    .u-d-b--sp {
      display: block;
    }
  }
  .u-d-b--not-sp {
    display: none;
  }
  @media (min-width: 30.0625em) {
    .u-d-b--not-sp {
      display: block;
    }
  }
  .u-d-b--tb {
    display: none;
  }
  @media (min-width: 30.0625em) and (max-width: 48em) {
    .u-d-b--tb {
      display: block;
    }
  }
  .u-d-b--not-pc {
    display: none;
  }
  @media (max-width: 48em) {
    .u-d-b--not-pc {
      display: block;
    }
  }
  .u-d-b--pc {
    display: none;
  }
  @media (min-width: 48.0625em) {
    .u-d-b--pc {
      display: block;
    }
  }
  @media (max-width: 30em) {
    .u-d-n--sp {
      display: none;
    }
  }
  @media (min-width: 30.0625em) {
    .u-d-n--not-sp {
      display: none;
    }
  }
  @media (min-width: 30.0625em) and (max-width: 48em) {
    .u-d-n--tb {
      display: none;
    }
  }
  @media (max-width: 48em) {
    .u-d-n--not-pc {
      display: none;
    }
  }
  @media (min-width: 48.0625em) {
    .u-d-n--pc {
      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: 0.625rem;
  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: 0.75rem;
  }
}

.pg-introduction {
  padding-top: 48px;
  padding-bottom: 80px;
  text-align: center;
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 640px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
@media (min-width: 48.0625em) {
  .pg-introduction {
    padding-top: 96px;
    padding-bottom: 128px;
  }
}

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

.pg-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 4px;
}
@media (min-width: 48.0625em) {
  .pg-title {
    font-size: 3rem;
    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: 0.75rem;
  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: 1rem;
    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: 0.6875rem;
  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: 0.75rem;
  }
  .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.5vw) * 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% - 21.5277777778vw);
    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.3333333333vw) * 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: 0.6875rem;
  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;
}

.p-buttons {
  margin: 72px auto;
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
@media (min-width: 48.0625em) {
  .p-buttons {
    margin: 160px auto;
  }
}
.p-buttons .c-fill-button {
  position: relative;
  --w: 100%;
  --maw: 280px;
  --bdc: #000;
  --fz: rem(13);
}
@media (min-width: 48.0625em) {
  .p-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) {
  .p-buttons .c-fill-button {
    --maw: 400px;
    --h: 70px;
    --fz: rem(15);
  }
}
@media (min-width: 48.0625em) {
  .p-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 */