@charset "utf-8";

:root {
  --color-ink: #0b0b0c;
  --color-ink-2: #2b2b2e;
  --color-ink-3: #6b6b70;
  --color-line: #e5e5e2;
  --inner-width: 1100px;
  --inner-padding: 40px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;

  scrollbar-gutter: stable;
}

body {
  overflow-x: clip;
}

.l-gHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--inner-padding);
  color: #fff;
  overflow: visible;
  isolation: isolate;
}
.l-gHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 132px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(255, 255, 255, 0.64) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: opacity 0.3s ease;
}
.l-gHeader > * {
  position: relative;
  z-index: 1;
}
.l-gHeader.is-on-light {
  color: var(--color-ink);
}
.l-gHeader.is-on-light::before {
  opacity: 1;
}
.l-gHeader__logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.l-gHeader__logo:hover {
  opacity: 0.7;
}
.l-gHeader__logo img {
  display: block;
  height: 27px;
  width: auto;
}
.l-gHeader.is-on-light .l-gHeader__menuIcon {
  filter: brightness(0) saturate(100%);
}
.l-gHeader__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.l-gHeader__menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  font-size: 16px;
}
.l-gHeader__nav a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s;
}
.l-gHeader.is-on-light .l-gHeader__nav a {
  color: var(--color-ink);
}
.l-gHeader__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition:
    left 0.35s,
    right 0.35s;
}
.l-gHeader__nav a:hover::after {
  left: 0;
  right: 0;
}
.l-gHeader__shop {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.l-gHeader__shop:hover {
  opacity: 0.7;
}
.l-gHeader__shop::after {
  display: none;
}
.l-gHeader__shopIcon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.l-gHeader__menuIcon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.l-gHeader__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}
.l-gHeader__menuBtn {
  display: none;
  align-items: center;
  padding: 0;
}
.l-gHeader__menuIcon--close {
  display: none;
}
.l-gHeader__shop.l-gHeader__shop--panel {
  display: none;
}
.l-gHeader__panel {
  display: flex;
  align-items: center;
  gap: 34px;
}

.p-hero {
  position: fixed;
  inset: 0;
  z-index: 20;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #0d1d3a;
  color: #fff;
  --hero-progress: 0;
  opacity: calc(1 - var(--hero-progress) * 0.7);
  transform: translateY(calc(var(--hero-progress) * -2%))
    scale(calc(1 + var(--hero-progress) * 0.015));
  visibility: visible;
  pointer-events: auto;
  will-change: opacity, transform;
  transition:
    opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0s linear 0s;
}
.p-hero.is-hidden {
  --hero-progress: 1;
  opacity: 0;
  transform: translateY(-5%) scale(1.025);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 1.1s;
}
.p-hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-hero__brand {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 3;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}
.p-hero__brand h1 {
  margin-bottom: 20px;
}
.p-hero__brand h1 img {
  display: block;
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.p-concept {
  position: relative;
  z-index: 0;
  background: #fff;
  color: var(--color-ink);
  margin-top: 150px;
  padding-bottom: 200px;
}
.p-concept__head {
  padding-bottom: 0;
}
.p-concept__head .c-heading-section {
  margin-bottom: 50px;
}
.p-concept__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.p-concept__grid .p-concept__gridCell {
  margin-right: -2px;
  margin-bottom: -2px;
  overflow: visible;
}
.p-concept__grid .p-concept__gridCell picture {
  width: calc(100% + 2px);
}
.p-concept__gridCell {
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.p-concept__gridCell picture {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.p-concept__gridCell img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.p-concept__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  padding: 80px 0 100px;
  overflow: visible;
}
.p-concept__introTtl {
  font-size: clamp(32px, 2.67vw, 36px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
}
.p-concept__introText {
  font-size: clamp(16px, 1.43vw, 20px);
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-ink);
  min-width: 0;
  white-space: nowrap;
  overflow: visible;
}
.p-concept__blocks {
  display: flex;
  flex-direction: column;
}
.p-concept__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.p-concept__block--reverse .p-concept__blockMedia {
  order: 2;
}
.p-concept__block--reverse .p-concept__blockBody {
  order: 1;
}
.p-concept__blockBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}
.p-concept__blockMedia img {
  display: block;
  width: 100%;
  height: auto;
}
.p-concept__blockTtl {
  margin-bottom: 35px;
  font-size: clamp(22px, 1.86vw, 28px);

  font-weight: 600;
  letter-spacing: 0.04em;
}
.p-concept__blockText {
  font-size: clamp(16px, 1.43vw, 20px);
  font-weight: 400;
  line-height: 2;
  color: var(--color-ink);
}
.u-pcOnly {
  display: inline;
}
img.u-pcOnly {
  display: block;
}
.u-spOnly {
  display: none !important;
}
img.u-spOnly {
  display: none !important;
}
.u-sp-para {
  display: none;
}

.l-container {
  max-width: calc(var(--inner-width) + var(--inner-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-padding);
}

.c-heading-section {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 40px;
}
.c-heading-section__en {
  font-size: 40px;
  font-weight: 500;
}

.p-features {
  background: #fff;
  padding-bottom: 200px;
}
.p-features .c-heading-section {
  margin-bottom: 26px;
}
.p-features__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  position: relative;
  background: #fff;
}
.p-features__inner::after {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  border: 1px solid var(--color-line);
  pointer-events: none;
}
.p-features__card {
  display: contents;
}
.p-features__visual {
  grid-column: 1;
  grid-row: 1 / 3;
  min-width: 0;
}
.p-features__mouse {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efefef;
}
.p-features__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #efefef;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.p-features__video.is-active {
  opacity: 1;
}
.p-features__desc {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  margin: 0 40px 40px;
  padding: 10px;
}
.p-features__desc-ttl {
  margin-bottom: 26px;
  font-size: 20px;
  font-weight: 600;
  min-height: var(--feat-desc-ttl-min-h, auto);
  transition: opacity 0.25s;
}
.p-features__desc-text {
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.85;
  min-height: var(--feat-desc-text-min-h, auto);
  transition: opacity 0.25s;
}

.p-features__tabs {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 0 40px 40px;
  padding: 0 10px 10px;
}
.p-features__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 3px;
  box-shadow: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.p-features__tab:hover:not(.is-active) {
  border-color: #d0d0cd;
}
.p-features__tab.is-active {
  position: relative;
  z-index: 1;
  border-color: var(--color-ink);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.p-features__tab-ic {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--color-ink-2);
  overflow: hidden;
}
.p-features__tab-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-styling {
  background: #fff;
  padding-bottom: 200px;
}
.p-styling .c-heading-section {
  margin-bottom: 40px;
}
.p-styling__frame {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-styling__swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-styling__swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.p-styling__swiper .swiper-slide {
  width: var(--styling-slide-width, calc((100% - 48px) / 4));
  height: auto;
}
.p-styling__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.p-styling__controls .p-styling__arrow,
.p-styling__controls .swiper-button-prev,
.p-styling__controls .swiper-button-next {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  align-self: center;
  width: auto !important;
  height: auto !important;
}
.p-styling__pagination,
.p-styling__pagination.swiper-pagination-horizontal {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  width: auto !important;
}
.p-styling__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #f3f3f0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.p-styling__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.p-styling__thumb:hover img {
  opacity: 0.88;
}
.p-styling__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease;
}
.p-styling__arrow img {
  display: block;
  width: 22px;
  height: auto;
}
.p-styling__arrow::after,
.p-styling__controls .swiper-button-prev::after,
.p-styling__controls .swiper-button-next::after {
  content: none !important;
}
.p-styling__arrow.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.p-styling__pagination .p-styling__dot,
.p-styling__pagination .swiper-pagination-bullet {
  position: static !important;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 !important;
  padding: 0;
  border-radius: 50%;
  background: #d9d9d9;
  opacity: 1 !important;
  transition: background 0.2s ease;
}
.p-styling__pagination .p-styling__dot.is-active,
.p-styling__pagination .swiper-pagination-bullet-active {
  background: var(--color-ink);
}

.p-styling-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: rgba(11, 11, 12, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.p-styling-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-styling-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.p-styling-lightbox__inner {
  max-width: min(960px, 100%);
  max-height: calc(100vh - 80px);
}
.p-styling-lightbox__inner img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  margin: 0 auto;
  object-fit: contain;
}

.p-spec {
  background: #fff;
  padding-bottom: 200px;
}
.p-spec .l-container {
  max-width: calc(845px + var(--inner-padding) * 2);
}
.p-spec .c-heading-section {
  justify-content: center;
}
.p-spec .c-heading-section__en {
  text-align: center;
}
.p-spec__list {
  border-top: 2px solid var(--color-ink);
}
.p-spec__item {
  border-bottom: 1px solid var(--color-ink);
}
.p-spec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 6px 10px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
}
.p-spec__body {
  overflow: visible;
  padding: 2px 6px 25px;
  color: var(--color-ink);
}
.p-spec__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 9px 0;
  font-size: 16px;
  line-height: 1.7;
}
.p-spec__row dt {
  color: var(--color-ink-3);
}
.p-spec__row dd {
  margin: 0;
}
.p-spec__note-inline {
  display: inline-block;
  margin-top: 2px;
  color: var(--color-ink-3);
  font-size: 16px;
}
.p-spec__note {
  color: var(--color-ink-3);
  font-size: 12px;
  line-height: 1.95;
  text-align: left;
}
.p-spec__note-item {
  display: block;
  letter-spacing: 0.05em;
}
.p-spec__hp-link {
  margin: 20px auto 40px;
  color: var(--color-ink);
  font-size: 16px;
  text-align: right;
}
.p-spec__hp-link a {
  color: var(--color-ink);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.3s ease;
}
.p-spec__hp-link a:hover {
  opacity: 0.7;
}
.p-spec__buy {
  padding-top: 100px;
}
.p-spec__buy-notice {
  margin-bottom: 28px;
  color: var(--color-ink);
  line-height: 1.8;
  text-align: center;
}
.p-spec__buy-notice-period,
.p-spec__buy-notice-text {
  display: block;
}
.p-spec__buy-notice-period {
  font-size: 20px;
}
.p-spec__buy-notice-text {
  font-size: 14px;
}
.c-shop-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.c-shop-button {
  flex: 0 0 calc((100% - 30px) / 4);
  display: grid;
  grid-template-rows: 1fr 1px auto;
  align-items: center;
  justify-items: center;
  min-height: 96px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--color-ink);
  border-radius: 14px;
  color: var(--color-ink);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.c-shop-button:hover {
  background: var(--color-ink);
  color: #fff;
}
.c-shop-button::before {
  content: "";
  grid-row: 2;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.c-shop-button__lead {
  grid-row: 1;
  align-self: center;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 5px;
}
.c-shop-button__name {
  grid-row: 3;
  align-self: center;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.p-history {
  background: #fff;
  padding-bottom: 120px;
}
.p-history__intro {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}
.p-history__anniversary {
  margin-bottom: 28px;
}
.p-history__anniversary img {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.p-history__lead {
  color: var(--color-ink);
  font-size: 18px;
  line-height: 2.1;
}

.p-history__stack {
  display: none;
  list-style: none;
}

.p-history__track {
  display: grid;
  grid-template-columns: minmax(72px, 0.85fr) repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
}
.p-history__col--spacer {
  grid-column: 1;
  grid-row: 1;
}
.p-history__col--product {
  grid-row: 1;
  text-align: center;
}
.p-history__col--product:nth-child(2) {
  grid-column: 2;
}
.p-history__col--product:nth-child(3) {
  grid-column: 3;
}
.p-history__col--product:nth-child(4) {
  grid-column: 4;
}
.p-history__col--product:nth-child(5) {
  grid-column: 5;
}
.p-history__tag {
  margin-bottom: 2px;
  color: var(--color-ink-3);
  font-size: 12px;
  text-transform: uppercase;
}
.p-history__name {
  min-height: 2.6em;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.p-history__figure {
  margin: 0;
}
.p-history__figure img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto;
}

.p-history__axis {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: subgrid;
  margin: 14px 0 15px;
  padding-top: 0;
  --history-dot-size: 9px;
  --history-line-y: calc(var(--history-dot-size) / 2);
  --history-arrow-width: 10px;
  --history-arrow-height: 12px;
}
.p-history__axis::before {
  content: "";
  position: absolute;
  top: calc(var(--history-line-y) - 0.5px);
  left: 0;
  right: var(--history-arrow-width);
  height: 1px;
  background: var(--color-ink);
}
.p-history__axis::after {
  content: "";
  position: absolute;
  top: calc(var(--history-line-y) - var(--history-arrow-height) / 2);
  right: 0;
  width: var(--history-arrow-width);
  height: var(--history-arrow-height);
  background: var(--color-ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-history__marker {
  position: relative;
  z-index: 1;
  padding-top: 0;
  text-align: center;
}
.p-history__marker:first-child::before {
  content: "";
  position: absolute;
  top: calc(var(--history-line-y) - 0.5px);
  left: 0;
  width: calc(50% - 3.5px);
  height: 1px;
  background: #fff;
  z-index: 2;
}
.p-history__dot {
  position: relative;
  z-index: 3;
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto 20px;
  background: var(--color-ink);
  border-radius: 50%;
}
.p-history__year {
  display: block;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.p-history__col--founding {
  grid-column: 1;
  grid-row: 3;
  text-align: center;
}
.p-history__founding-logo {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto;
}
.p-history__col--desc {
  grid-row: 3;
  padding-top: 0;
  text-align: left;
}
.p-history__col--desc:nth-child(8) {
  grid-column: 2;
}
.p-history__col--desc:nth-child(9) {
  grid-column: 3;
}
.p-history__col--desc:nth-child(10) {
  grid-column: 4;
}
.p-history__col--desc:nth-child(11) {
  grid-column: 5;
}
.p-history__desc {
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1.8;
}

.l-gFooter {
  padding: 70px var(--inner-padding) 44px;
  background: #fff;
  border-top: 1px solid var(--color-line);
  text-align: center;
}
.l-gFooter__ttl {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}
.l-gFooter__sub {
  margin-bottom: 24px;
  color: var(--color-ink-3);
  font-size: 14px;
}
.l-gFooter__sns {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 50px;
}
.l-gFooter__sns a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-ink);
  transition: transform 0.3s;
}
.l-gFooter__sns a:hover {
  transform: translateY(-3px);
}
.l-gFooter__sns img {
  width: 34px;
  height: 34px;
}
.l-gFooter__brand {
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  transition: opacity 0.3s ease;
}
.l-gFooter__brand:hover {
  opacity: 0.7;
}
.l-gFooter__brand img {
  display: block;
  height: 37px;
  width: auto;
}
.l-gFooter__copy {
  color: var(--color-ink-3);
  font-size: 14px;
}

.l-pagetop {
  position: fixed;
  right: 2.66%;
  bottom: 2.66vw;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1.5px solid #000;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),
    visibility 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  backface-visibility: hidden;
}

.l-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.l-pagetop:hover {
  transform: scale(1.1);
}

.l-pagetop__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 11px;
  height: 11px;
  border-top: 1.5px solid #000;
  border-left: 1.5px solid #000;
  transform: translate(-50%, -25%) rotate(45deg);
}

@media (min-width: 901px) {
  .l-pagetop {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .l-pagetop__icon {
    width: 13px;
    height: 13px;
  }
}

.u-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.u-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.u-reveal--fade {
  transform: none;
}
.u-reveal--fade.is-visible {
  transform: none;
}

.u-reveal--up {
  transform: translate3d(0, 22px, 0);
}
.u-reveal--up.is-visible {
  transform: translate3d(0, 0, 0);
}

.u-reveal--scale {
  transform: translate3d(0, 12px, 0) scale(0.98);
}
.u-reveal--scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.u-reveal--zoom {
  transform: scale(1.02);
  opacity: 0;
}
.u-reveal--zoom.is-visible {
  transform: scale(1);
  opacity: 1;
}

.u-reveal.is-delay-1 {
  transition-delay: 0.04s;
}
.u-reveal.is-delay-2 {
  transition-delay: 0.08s;
}
.u-reveal.is-delay-3 {
  transition-delay: 0.12s;
}
.u-reveal.is-delay-4 {
  transition-delay: 0.16s;
}
.u-reveal.is-delay-5 {
  transition-delay: 0.2s;
}
.u-reveal.is-delay-6 {
  transition-delay: 0.24s;
}
.u-reveal.is-delay-7 {
  transition-delay: 0.28s;
}
.u-reveal.is-delay-8 {
  transition-delay: 0.32s;
}
.u-reveal.is-delay-9 {
  transition-delay: 0.36s;
}
.u-reveal.is-delay-10 {
  transition-delay: 0.4s;
}
.u-reveal.is-delay-11 {
  transition-delay: 0.44s;
}
.u-reveal.is-delay-12 {
  transition-delay: 0.48s;
}

.p-hero__brand {
  animation: heroRise 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.p-hero__bg {
  animation: heroZoom 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  transform-origin: center center;
}
@keyframes heroZoom {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .u-reveal,
  .p-hero,
  .p-hero__brand,
  .p-hero__bg {
    --hero-progress: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

html.is-hero-scroll-locked,
body.is-hero-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}
body.is-hero-scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

@media only screen and (max-width: 900px) {
  html.is-menu-scroll-locked,
  body.is-menu-scroll-locked {
    overflow: hidden;
  }
  body.is-menu-scroll-locked {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }
  .l-container {
    padding: 0 30px;
  }
  .c-heading-section__en {
    font-size: 36px;
  }
  .p-concept {
    padding-bottom: 160px;
  }
  .p-concept__head .c-heading-section {
    margin-bottom: 50px;
  }
  .p-concept__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .p-concept__intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0 100px;
    text-align: center;
  }
  .p-concept__introText {
    font-size: 16px;
    text-align: left;
    white-space: normal;
  }
  .p-concept__introTtl {
    font-size: 32px;
    text-align: left;
    letter-spacing: 0.07em;
    line-height: 1.6;
  }
  .p-concept__blocks {
    gap: 100px;
  }
  .p-concept__block,
  .p-concept__block--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-concept__blockMedia,
  .p-concept__blockBody,
  .p-concept__block--reverse .p-concept__blockMedia,
  .p-concept__block--reverse .p-concept__blockBody {
    order: unset;
  }
  .p-concept__blockBody {
    padding: 50px 30px 0;
    text-align: center;
  }
  .p-concept__block:not(.p-concept__block--reverse) .p-concept__blockBody,
  .p-concept__block--reverse .p-concept__blockBody {
    padding: 50px 30px 0;
  }
  .p-concept__blockTtl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .p-concept__blockText {
    font-size: 16px;
  }
  .u-pcOnly {
    display: none !important;
  }
  .u-spOnly {
    display: inline !important;
  }
  img.u-spOnly {
    display: block !important;
  }
  .u-sp-para {
    display: block;
    margin-top: 0.75em;
  }
  .p-features {
    padding-bottom: 160px;
  }
  .p-features .c-heading-section {
    margin-bottom: 20px;
  }
  .p-features__inner {
    display: block;
    background: transparent;
  }
  .p-features__inner::after {
    display: none;
  }
  .p-features__card {
    display: block;
    border: none;
    background: transparent;
    margin-bottom: 0;
  }
  .p-features__visual {
    border: none;
    margin-bottom: 0;
    grid-column: auto;
    grid-row: auto;
  }
  .p-features__desc {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 30px;
    grid-column: auto;
    grid-row: auto;
    border: 1px solid var(--color-line);
    background: #fff;
    min-height: var(--feat-desc-min-h, auto);
  }
  .p-features__desc-ttl {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.6;
    transition: none;
  }
  .p-features__desc-text {
    align-self: stretch;
    width: 100%;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.8;
    transition: none;
  }
  .p-features__tabs {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin: 5px 0 0;
    padding: 0;
    border: none;
    background: transparent;
    align-items: stretch;
  }
  .p-features__tab {
    min-height: 52px;
    height: var(--feat-tab-h, auto);
    padding: 8px 4px;
  }
  .p-features__tab-ic {
    width: 28px;
    height: 28px;
  }
  .p-styling {
    padding-bottom: 160px;
  }
  .p-styling .c-heading-section {
    margin-bottom: 28px;
  }
  .p-styling__thumb {
    aspect-ratio: 1 / 1;
  }
  .c-shop-button {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .p-spec {
    padding-bottom: 160px;
  }
  .p-spec .c-heading-section {
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  .p-spec .c-heading-section__en {
    text-align: left;
  }
  .p-spec__head {
    padding: 23px 0 33px;
    font-size: 18px;
  }
  .p-spec__body {
    padding: 0;
  }
  .p-spec__row {
    display: block;
    padding: 0 0 30px;
    font-size: 14px;
    line-height: 1.75;
  }
  .p-spec__row dt {
    margin-bottom: 3px;
  }
  .p-spec__row dd {
    padding-left: 15px;
    line-height: 1.6;
  }
  .p-spec__note-inline {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 0;
  }
  .p-spec__note {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .p-spec__buy {
    padding-top: 63px;
  }
  .p-spec__buy-notice {
    margin-bottom: 20px;
  }
  .p-spec__buy-notice-period {
    font-size: 18px;
  }
  .p-spec__buy-notice-text {
    font-size: 12px;
  }
  .p-spec__hp-link {
    font-size: 14px;
    text-align: left;
    margin: 30px 0;
  }
  .p-history {
    padding-bottom: 130px;
  }
  .p-history__intro {
    margin-bottom: 56px;
  }
  .p-history__anniversary {
    margin-bottom: 55px;
  }
  .p-history__anniversary img {
    width: min(68%, 260px);
  }
  .p-history__lead {
    font-size: 16px;
    text-align: left;
  }
  .p-history__track {
    display: none;
  }
  .p-history__stack {
    display: flex;
    flex-direction: column;
    gap: 96px;
    max-width: 420px;
    margin: 0 auto;
  }
  .p-history__stack-item {
    text-align: center;
  }
  .p-history__stack-item--founding {
    margin-bottom: 0;
  }
  .p-history__stack-year {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
  }
  .p-history__stack-logo {
    display: block;
    width: min(56%, 140px);
    height: auto;
    margin: 0 auto 10px;
  }
  .p-history__stack-item--founding .p-history__stack-logo {
    width: 210px;
  }
  .p-history__stack-item .p-history__tag {
    font-size: 12px;
  }
  .p-history__stack-item .p-history__name {
    min-height: 0;
    margin-bottom: 5px;
    font-size: 20px;
  }
  .p-history__stack-item .p-history__figure img {
    max-width: 220px;
    margin-bottom: 10px;
  }
  .p-history__stack-desc {
    color: var(--color-ink-2);
    font-size: 14px;
    text-align: left;
  }
  .l-gHeader {
    padding: 20px;
  }
  .l-gHeader::before {
    height: 104px;
  }
  .l-gHeader__nav {
    gap: 0;
  }
  .l-gHeader__actions {
    position: relative;
    z-index: 71;
    gap: 20px;
  }
  .l-gHeader__logo {
    position: relative;
    z-index: 71;
  }
  .l-gHeader__menuBtn {
    display: inline-flex;
  }
  .l-gHeader__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    position: fixed;
    inset: 0;
    z-index: 70;
    padding-top: 100px;
    background: #01427a;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  .l-gHeader__menu {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 18px;
  }
  .l-gHeader__panel a::after {
    display: none;
  }
  .l-gHeader__shop.l-gHeader__shop--panel {
    display: inline-flex;
  }
  .l-gHeader__shop--panel .l-gHeader__shopIcon {
    width: 30px;
    height: 30px;
  }
  .l-gHeader.is-menu-open .l-gHeader__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .l-gHeader.is-menu-open .l-gHeader__menuIcon--open {
    display: none;
  }
  .l-gHeader.is-menu-open .l-gHeader__menuIcon--close {
    display: block;
  }
  .l-gFooter {
    padding-top: 50px;
  }
  .l-gFooter__sub {
    line-height: 1.8;
  }
  .l-gFooter__sns {
    margin-bottom: 34px;
  }
  .l-gFooter__copy {
    font-size: 10px;
  }
}
