@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1319px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1320 * 100vw);
  }
}
@media screen and (max-width: 389px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

img,
a,
span {
  display: inline-block;
}

picture {
  display: contents;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.dev-cover {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  width: 100%;
  opacity: 0.4;
  pointer-events: none;
}
.dev-cover img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 500px) {
  .dev-cover {
    top: -45px;
  }
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.l-header > * {
  pointer-events: auto;
}

.l-header__logo,
.l-header__nav {
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.l-header.is-hide .l-header__logo,
.l-header.is-hide .l-header__nav {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7.3125rem;
  padding-left: 3.3125rem;
  padding-right: 9.125rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    align-items: flex-start;
    height: auto;
    padding: 1.625rem 1.25rem 0;
  }
}

.l-header__logo {
  display: inline-flex;
  align-items: center;
  height: 1.625rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    height: 1.25rem;
  }
}

.l-header__logo-mark {
  display: block;
  width: 11.0625rem;
  height: 1.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-header__logo-mark {
    width: 8.5rem;
    height: 1.25rem;
  }
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    display: none;
  }
}

.l-header__nav-link {
  display: inline-flex;
  align-items: center;
  column-gap: 0.59375rem;
  white-space: nowrap;
}

.l-header__nav-arrow {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}
.l-header__nav-arrow svg {
  display: block;
  width: 0.625rem;
  height: 0.3125rem;
}

.l-header__nav-item--has-dropdown {
  position: relative;
}

.l-header__nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 1.125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  pointer-events: none;
}

.l-header__nav-item--has-dropdown:hover .l-header__nav-dropdown,
.l-header__nav-item--has-dropdown:focus-within .l-header__nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  pointer-events: auto;
}

.l-header__nav-item--has-dropdown:hover .l-header__nav-arrow,
.l-header__nav-item--has-dropdown:focus-within .l-header__nav-arrow {
  transform: rotate(180deg);
}

.l-header__nav-dropdown-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.9375rem;
  margin: 0;
  padding: 1.75rem;
  list-style: none;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15.5px);
  -webkit-backdrop-filter: blur(15.5px);
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.13);
}

.l-header__menu-btn-wrapper {
  position: fixed;
  z-index: 1010;
  top: 1.59375rem;
  right: 3.3125rem;
  mix-blend-mode: difference;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 767px) {
  .l-header__menu-btn-wrapper {
    top: 0.5625rem;
    right: 1.5625rem;
  }
}

.l-header__menu-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.4375rem;
  padding: 0;
  cursor: pointer;
}

.l-header__menu-btn-icon {
  display: grid;
  width: 2.875rem;
  height: 1.375rem;
  grid-template-columns: repeat(4, 0.25rem);
  grid-template-rows: repeat(3, 0.25rem);
  gap: 0.3125rem 0.625rem;
}

.l-header__menu-btn-dot {
  width: 0.25rem;
  height: 0.25rem;
  background: #ffffff;
  border-radius: 50%;
}

body.is-header-menu-open .l-header__menu-btn-wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.l-header__menu {
  position: fixed;
  z-index: 1000;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.7s;
}
.l-header__menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

.l-header__menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.l-header__menu.is-open .l-header__menu-backdrop {
  opacity: 1;
}

.l-header__menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 39.5625rem;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .l-header__menu-panel {
    width: 100%;
  }
}
.l-header__menu.is-open .l-header__menu-panel {
  transform: translateX(0);
}

.l-header__menu-close {
  position: absolute;
  z-index: 1;
  top: 1.59375rem;
  right: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.4375rem;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header__menu-close {
    top: 1.875rem;
    right: 1.25rem;
  }
}

.l-header__menu-close-icon {
  position: relative;
  width: 2.875rem;
  height: 1.375rem;
}
.l-header__menu-close-icon::before, .l-header__menu-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.1875rem;
  height: 0.09375rem;
  background: #ffffff;
  transform-origin: center;
}
.l-header__menu-close-icon::before {
  transform: translate(-50%, -50%) rotate(25.6deg);
}
.l-header__menu-close-icon::after {
  transform: translate(-50%, -50%) rotate(-25.6deg);
}

.l-header__menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 3.125rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .l-header__menu-inner {
    padding-top: 5.625rem;
    padding-bottom: 2.5rem;
    justify-content: safe center;
  }
}

.l-header__menu-nav {
  margin-top: auto;
  margin-left: 15.8125rem;
}
@media screen and (max-width: 767px) {
  .l-header__menu-nav {
    margin-top: 0;
    margin-left: 0;
    align-self: center;
  }
}

.l-header__menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-header__menu-item:has(.l-header__menu-sublist) {
  margin-bottom: 1.25rem;
}

.l-header__menu-sublist {
  display: flex;
  flex-direction: column;
  row-gap: 0.9375rem;
  margin-top: 1.4375rem;
  padding-left: 1.125rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.l-header__menu-cta {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin-top: min(8.375rem, 109px);
  margin-bottom: auto;
  margin-left: 13.9375rem;
}
@media (max-height: 900px) {
  .l-header__menu-cta {
    margin-top: clamp(32px, 7.2vh, 65px);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu-cta {
    margin-top: 3.625rem;
    margin-bottom: 0;
    margin-left: 0;
    align-self: center;
  }
}

.l-header__menu-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.375rem;
  height: 2.5rem;
  border-radius: 0.3958125rem;
  background: #4aa64e;
}

.l-header__menu-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0;
  padding: 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-header__menu-foot {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.9375rem;
    margin-top: 3rem;
    padding: 0 1.25rem;
  }
}

.l-header__menu-logo {
  margin: 0;
}
.l-header__menu-logo img {
  display: block;
  width: 6.1875rem;
  height: 1.375rem;
}
@media screen and (max-width: 767px) {
  .l-header__menu-logo {
    align-self: flex-start;
  }
  .l-header__menu-logo img {
    width: 4.5rem;
    height: 1rem;
  }
}

.l-header__menu-sns {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__menu-sns-link {
  display: block;
}
.l-header__menu-sns-link img {
  display: block;
}

.l-main {
  padding-block-start: 4.5rem;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 540px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 55.625rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 500px;
  }
}

.l-footer {
  display: block;
  width: 100%;
}

.c-section-heading {
  display: inline-block;
}

.c-section-heading__en {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 0.81;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
}

.c-section-heading__jp {
  margin: 0.9375rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
}

body.is-modal-open {
  overflow: hidden;
}

.c-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.c-gallery-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.c-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.c-gallery-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.c-gallery-modal__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__slide {
    padding: 1.25rem;
  }
}
.c-gallery-modal__slide.is-active {
  opacity: 1;
}

.c-gallery-modal.is-open .c-gallery-modal__slide.is-active {
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.c-gallery-modal__close {
  position: absolute;
  z-index: 2;
  top: 2.5rem;
  right: 3.125rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.4375rem;
  padding: 0;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  pointer-events: auto;
}
.c-gallery-modal__close:focus, .c-gallery-modal__close:focus-visible {
  outline: none;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__close {
    right: 1.25rem;
  }
}

.c-gallery-modal__close-icon {
  position: relative;
  width: 2.625rem;
  height: 1.125rem;
}
.c-gallery-modal__close-icon::before, .c-gallery-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.875rem;
  height: 0.075rem;
  background: currentColor;
  transform-origin: center;
}
.c-gallery-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(23deg);
}
.c-gallery-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-23deg);
}

.c-gallery-modal__close-label {
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.c-gallery-modal__category {
  margin: 0 0 1.875rem;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__category {
    margin-bottom: 2.5rem;
  }
}

.c-gallery-modal__img {
  margin: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  pointer-events: auto;
}
.c-gallery-modal__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-gallery-modal__slide--landscape .c-gallery-modal__img {
  width: min(50rem, 84vw);
  aspect-ratio: 800/540;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__slide--landscape .c-gallery-modal__img {
    width: calc(100vw - 2.5rem);
  }
}

.c-gallery-modal__slide--portrait .c-gallery-modal__img {
  height: min(42.5rem, 84vh);
  aspect-ratio: 630/680;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__slide--portrait .c-gallery-modal__img {
    height: auto;
    width: calc(100vw - 2.5rem);
  }
}

.c-gallery-modal__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__nav {
    position: static;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 3.125rem;
    padding: 0;
  }
}

.c-gallery-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  column-gap: 0.9375rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .c-gallery-modal__arrow:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__arrow {
    position: static;
    transform: none;
  }
}
.c-gallery-modal__arrow svg {
  display: block;
  width: 0.4375rem;
  height: 0.875rem;
}

.c-gallery-modal__arrow--prev {
  left: 5rem;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__arrow--prev {
    left: auto;
  }
}

.c-gallery-modal__arrow--next {
  right: 5rem;
}
@media screen and (max-width: 767px) {
  .c-gallery-modal__arrow--next {
    right: auto;
  }
}

.c-gallery-modal__arrow-label {
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 0.81;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.c-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.c-video-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.c-video-modal__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.c-video-modal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-video-modal__inner {
    padding: 1.25rem;
  }
}

.c-video-modal__video {
  height: min(45rem, 84vh);
  aspect-ratio: 406/720;
  width: auto;
  max-width: 90vw;
  border-radius: 0.625rem;
  background: #000;
  object-fit: cover;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .c-video-modal__video {
    height: auto;
    width: calc(100vw - 2.5rem);
    max-width: none;
    max-height: 75vh;
  }
}

.c-video-modal__close {
  position: absolute;
  z-index: 2;
  top: 2.5rem;
  right: 3.125rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.4375rem;
  padding: 0;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  pointer-events: auto;
}
.c-video-modal__close:focus, .c-video-modal__close:focus-visible {
  outline: none;
}
@media screen and (max-width: 767px) {
  .c-video-modal__close {
    right: 1.25rem;
  }
}

.c-video-modal__close-icon {
  position: relative;
  width: 2.625rem;
  height: 1.125rem;
}
.c-video-modal__close-icon::before, .c-video-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.875rem;
  height: 0.075rem;
  background: currentColor;
  transform-origin: center;
}
.c-video-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(23deg);
}
.c-video-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-23deg);
}

.c-video-modal__close-label {
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.c-mv {
  position: relative;
  width: 100%;
  height: 49.0625rem;
  background: #000000;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-mv {
    height: 24.625rem;
  }
}

.c-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.c-mv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: c-mv-img 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  will-change: transform;
}

.c-mv__title {
  position: absolute;
  top: 23rem;
  left: 6.25rem;
  z-index: 1;
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 0.81;
  letter-spacing: -0.0375rem;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-mv__title {
    top: 11.8125rem;
    left: 1.25rem;
    font-size: 2.25rem;
    letter-spacing: -0.0225rem;
  }
}
.c-mv__title {
  clip-path: inset(100% 0 0 0);
  animation: c-mv-title 0.5s ease calc(0.25s + 0.7s) both;
  will-change: clip-path;
}

.c-mv__cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000000;
  pointer-events: none;
  transform: translateY(0);
  animation: c-mv-cover 1.5s cubic-bezier(0.05, 0.85, 0.1, 1) 0.25s both;
  will-change: transform;
}

@keyframes c-mv-cover {
  to {
    transform: translateY(-100%);
  }
}
@keyframes c-mv-img {
  from {
    transform: scale(1.2) translateY(1.875rem);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
@keyframes c-mv-title {
  from {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-mv__cover {
    display: none;
  }
  .c-mv__bg img {
    animation: none;
  }
  .c-mv__title {
    animation: none;
    clip-path: none;
  }
}
.c-slider {
  width: 33.125rem;
}
@media screen and (max-width: 767px) {
  .c-slider {
    width: 100%;
  }
}

.c-slider__main {
  width: 33.125rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-slider__main {
    width: 100%;
  }
}
.c-slider__main .splide__track,
.c-slider__main .splide__list {
  height: 100%;
}
.c-slider__main .splide__slide {
  height: 22.1875rem;
}
@media screen and (max-width: 767px) {
  .c-slider__main .splide__slide {
    height: 14.625rem;
  }
}
.c-slider__main picture,
.c-slider__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-slider__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1875rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-slider__thumbs {
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .c-slider__thumb-item {
    flex: 1 1 0;
    min-width: 0;
  }
}

.c-slider__thumb {
  display: block;
  width: 4.65rem;
  height: 3.4896875rem;
  padding: 0;
  border: 0.15rem solid transparent;
  border-radius: 0.1875rem;
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-slider__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 74.4/55.835;
  }
}
.c-slider__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-slider__thumb.is-active {
  border-color: #ec572e;
}
@media (hover: hover) {
  .c-slider__thumb:not(.is-active):hover {
    opacity: 0.8;
  }
}

.c-shop-info {
  margin: 0;
}

.c-shop-info__row {
  display: flex;
  align-items: baseline;
}

.c-shop-info__label,
.c-shop-info__value {
  margin: 0;
}

.c-shop-info__label {
  flex: 0 0 auto;
  width: 5em;
}

.c-shop-info__value {
  flex: 1 1 auto;
  min-width: 0;
}

.p-opening {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.p-opening.is-exit {
  clip-path: inset(0 0 100% 0);
}

.p-opening.is-hidden {
  display: none;
}

.p-opening__logo {
  width: 10.25rem;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-opening__logo {
    width: 7.5rem;
  }
}

.p-opening__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-opening.is-logo-in .p-opening__logo {
  clip-path: inset(0 0 0 0);
}

.p-opening.is-logo-out .p-opening__logo {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s ease;
}

body.is-opening-active {
  overflow: hidden;
}

.l-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "hist", "pwid", "palt";
  color: #ffffff;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-header__nav-link:hover {
    opacity: 0.6;
  }
}

.l-header__nav-link--static {
  cursor: default;
}
@media (hover: hover) {
  .l-header__nav-link--static:hover {
    opacity: 1;
  }
}

.l-header__nav-dropdown-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: calc(-0.05px / 14px * 1em);
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #292929;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-header__nav-dropdown-link:hover {
    opacity: 0.6;
  }
}

.l-header__menu-btn-label {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(0.4px / 11px * 1em);
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-header__menu-btn-label {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: calc(0.37px / 12px * 1em);
  }
}

.l-header__menu-close-label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: calc(0.13px / 12px * 1em);
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}

.l-header__menu-link {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "hist", "pwid", "palt";
  color: #ffffff;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-header__menu-link:hover {
    opacity: 0.6;
  }
}

.l-header__menu-link--static {
  cursor: default;
}
@media (hover: hover) {
  .l-header__menu-link--static:hover {
    opacity: 1;
  }
}

.l-header__menu-sublink {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: calc(-0.05px / 14px * 1em);
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #a3a3a3;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-header__menu-sublink:hover {
    opacity: 0.7;
  }
}

.l-header__menu-cta-btn {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: calc(-0.03px / 12px * 1em);
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-header__menu-cta-btn:hover {
    opacity: 0.85;
  }
}

.l-header__menu-sns-link {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-header__menu-sns-link:hover {
    opacity: 0.6;
  }
}

body.is-header-menu-open {
  overflow: hidden;
}

.p-fv {
  position: relative;
  width: 100%;
  background: #000000;
  overflow: hidden;
}

.p-fv__inner {
  position: relative;
  width: 100%;
}

.p-fv__stage {
  position: relative;
  width: 100%;
  padding-top: 12.75rem;
}
@media screen and (max-width: 767px) {
  .p-fv__stage {
    padding-top: 9.125rem;
    padding-bottom: 6.5625rem;
  }
}

.p-fv__lower {
  display: flex;
  justify-content: center;
  padding-top: 13.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-fv__lower {
    padding-top: 12.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-fv__slider {
  position: relative;
  margin: 0 4.375rem;
  height: 57.1875rem;
  overflow: hidden;
  border-radius: 0.625rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(3.75rem);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .p-fv__slider {
    margin: 0 0.625rem;
    height: auto;
    aspect-ratio: 370/548;
    border-radius: 0.625rem;
  }
}

.p-fv.is-revealed .p-fv__slider {
  opacity: 1;
  transform: translateY(0);
}

.p-fv__copy-en,
.p-fv__copy-jp {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease 0.8s;
}

.p-fv.is-revealed .p-fv__copy-en,
.p-fv.is-revealed .p-fv__copy-jp {
  clip-path: inset(0 0 0 0);
}

.p-fv__lead,
.p-fv__btn {
  opacity: 0;
}

.p-fv.is-fv-parts-in .p-fv__lead,
.p-fv.is-fv-parts-in .p-fv__btn {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.p-fv__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.2);
  clip-path: inset(0 0 0 0);
  transition: transform 1.5s ease, clip-path 1.5s ease;
}
.p-fv__slide picture,
.p-fv__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-fv__slide.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  z-index: 3;
}
.p-fv__slide.is-scale {
  transform: scale(1);
}
.p-fv__slide.is-clip-path {
  clip-path: inset(0 100% 0 0);
}
.p-fv__slide.is-next {
  z-index: 2;
  clip-path: inset(0 0 0 0);
}
.p-fv__slide.is-initial {
  transform: scale(1.1) translateY(3%);
  transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1.5s ease;
}

.p-fv.is-revealed .p-fv__slide.is-initial {
  transform: scale(1.1) translateY(-3%);
}

.p-fv__copy-en {
  position: absolute;
  top: 7.1875rem;
  left: 7.8125rem;
  width: 31.0625rem;
  margin: 0;
  z-index: 10;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 4.875rem;
  line-height: 0.81;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-fv__copy-en {
    top: 3.5625rem;
    left: 2.5rem;
    width: 10.375rem;
    font-size: 2.8125rem;
  }
}

.p-fv__copy-en-line {
  display: block;
}

.p-fv__copy-jp {
  position: absolute;
  top: 8rem;
  right: 11.125rem;
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1rem;
  margin: 0;
  letter-spacing: 0.18em;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-fv__copy-jp {
    top: 4.875rem;
    right: 2.5rem;
    column-gap: 0.6875rem;
    letter-spacing: 0.12em;
  }
}

.p-fv__copy-jp-line {
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "vert", "hist";
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.1;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__copy-jp-line {
    font-size: 1.185625rem;
  }
}

.p-fv__parts {
  position: absolute;
  top: 20.4375rem;
  left: 7.8125rem;
  width: 15rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-fv__parts {
    top: 47.3125rem;
    left: 1.25rem;
    right: 1.25rem;
    width: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.p-fv__lead {
  margin: 0 0 2rem;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-fv__lead {
    width: 8.5rem;
    margin: 0;
  }
}

.p-fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 2.71875rem;
  border-radius: 0.3958125rem;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-fv__btn:hover {
    opacity: 0.85;
  }
}

.p-fv__brand {
  position: absolute;
  top: 68.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  margin: 0;
  z-index: 10;
  mix-blend-mode: difference;
  font-family: "Bodoni Moda SC", serif;
  font-variation-settings: "opsz" 25;
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 0.79;
  --brand-ls: min(16.875rem, calc((100vw - 360px) / 4));
  letter-spacing: var(--brand-ls);
  text-indent: var(--brand-ls);
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-fv__brand {
    top: 42.25rem;
    font-size: 2.5rem;
    --brand-ls: 3.5rem;
  }
}

.p-fv__copy-s {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.25rem;
  margin: 0;
  z-index: 10;
  letter-spacing: 0.13em;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s ease;
}
@media screen and (max-width: 767px) {
  .p-fv__copy-s {
    column-gap: 0.625rem;
  }
}
.p-fv__copy-s.is-inview {
  clip-path: inset(0 0 0 0);
}

.p-fv__copy-s-line {
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "vert", "hist";
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.1;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__copy-s-line {
    font-size: 1rem;
  }
}

.p-mv {
  margin-top: -4.5rem;
}

.p-about-intro {
  position: relative;
  width: 100%;
  background: #222222;
  overflow: hidden;
}

.p-about-intro__inner {
  position: relative;
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-block: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro__inner {
    display: block;
    max-width: none;
    padding: 5rem 1.25rem;
  }
}

.p-about-intro__body {
  z-index: 1;
}

.p-about-intro__title {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: -0.0525rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-about-intro__title {
    font-size: 1.125rem;
    letter-spacing: -0.03375rem;
  }
}

.p-about-intro__lead {
  margin-top: 5rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.03rem;
  color: #ffffff;
}
.p-about-intro__lead p {
  margin: 0;
}
.p-about-intro__lead p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-about-intro__lead {
    margin-top: 3.125rem;
    font-size: 0.875rem;
    letter-spacing: -0.02625rem;
  }
}

.p-about-intro__img {
  flex-shrink: 0;
  z-index: 0;
  width: 33.125rem;
  height: 37.6875rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-about-intro__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about-intro__img {
    width: 100%;
    height: 24.875rem;
    margin-top: 3.125rem;
  }
}

.p-core-value {
  width: 100%;
  background: #000000;
  padding: 9.375rem 0;
}
@media screen and (max-width: 767px) {
  .p-core-value {
    padding: 5rem 0 6.25rem;
  }
}

.p-core-value__head {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-core-value__head {
    max-width: none;
    padding-left: 1.25rem;
  }
}

.p-core-value__heading {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 0.81;
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-core-value__heading {
    font-size: 2.25rem;
    letter-spacing: -0.045rem;
  }
}

.p-core-value__sub {
  margin: 0.875rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.03375rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-core-value__sub {
    margin-top: 0.625rem;
    font-size: 1rem;
    letter-spacing: -0.03rem;
  }
}

.p-core-value__list {
  display: flex;
  justify-content: center;
  gap: 0.3125rem;
  width: 100%;
  max-width: 68.125rem;
  margin: 6.25rem auto 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-core-value__list {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    max-width: none;
    margin-top: 3.125rem;
  }
}

.p-core-value__card {
  display: flex;
  flex-direction: column;
  width: 22.5rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-core-value__card {
    width: 19.375rem;
    border-radius: 0.5381875rem;
  }
}

.p-core-value__card-img {
  flex-shrink: 0;
  width: 100%;
  height: 8.75rem;
}
.p-core-value__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-core-value__card-img {
    height: 7.5346875rem;
  }
}

.p-core-value__card-body {
  padding: 2.5625rem 4.0625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-core-value__card-body {
    padding: 2.1875rem 1.375rem;
    min-height: 11.5625rem;
  }
}

.p-core-value__card-title {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.0375rem;
  text-align: center;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .p-core-value__card-title {
    font-size: 1.125rem;
    letter-spacing: -0.03375rem;
  }
}

.p-core-value__card-text {
  margin: 1.875rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.02625rem;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-core-value__card-text {
    margin-top: 1.625rem;
  }
}

.p-video {
  position: relative;
  width: 100%;
  height: 26.1875rem;
  overflow: hidden;
  background: #000000;
}
.p-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-video {
    height: 28.125rem;
  }
}

.p-video__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.p-video__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (hover: hover) {
  .p-video__play:hover .p-video__play-circle {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.12);
  }
}
.p-video__play:focus-visible {
  outline: none;
}
.p-video__play:focus-visible .p-video__play-circle {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.p-video__play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.p-video__play-circle::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem 0 0.4375rem 0.6875rem;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 0.1875rem;
}

.p-our-service {
  position: relative;
  width: 100%;
  height: 33.9375rem;
  background: #222222;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-our-service {
    height: auto;
    padding: 5rem 1.25rem;
  }
}

.p-our-service__inner {
  position: relative;
  width: 100%;
  max-width: 77.5rem;
  height: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-our-service__inner {
    max-width: none;
    height: auto;
  }
}

.p-our-service__head {
  position: absolute;
  top: 9.375rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-our-service__head {
    position: static;
  }
}

.p-our-service__heading {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 0.81;
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-our-service__heading {
    font-size: 2.25rem;
    letter-spacing: -0.045rem;
  }
}

.p-our-service__sub {
  margin: 0.875rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.03375rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-our-service__sub {
    margin-top: 0.625rem;
    font-size: 1rem;
    letter-spacing: -0.03rem;
  }
}

@media screen and (max-width: 767px) {
  .p-our-service__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3.125rem;
  }
}

.p-our-service__item {
  position: absolute;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-our-service__item {
    position: static;
  }
}

.p-our-service__item--01 {
  top: 9.375rem;
  left: 33.9375rem;
}

.p-our-service__item--02 {
  top: 9.375rem;
  left: 55.625rem;
}

.p-our-service__item--03 {
  top: 19.5rem;
  left: 33.9375rem;
}

.p-our-service__item--04 {
  top: 19.5rem;
  left: 55.625rem;
}

.p-our-service__dot {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.75rem;
  margin-right: 0.9375rem;
  border-radius: 50%;
  background: #4aa64e;
}
@media screen and (max-width: 767px) {
  .p-our-service__dot {
    margin-top: 0.4375rem;
    margin-right: 1.125rem;
  }
}

.p-our-service__num {
  flex-shrink: 0;
  width: 2.75rem;
  margin-right: 1.5625rem;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 0.81;
  letter-spacing: -0.05rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-our-service__num {
    font-size: 1.875rem;
    letter-spacing: -0.0375rem;
  }
}

.p-our-service__body {
  width: 14.4375rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-our-service__body {
    width: auto;
    gap: 0.625rem;
  }
}

.p-our-service__item--04 .p-our-service__body {
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .p-our-service__item--04 .p-our-service__body {
    width: auto;
  }
}

.p-our-service__item-title {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 0.9;
  letter-spacing: -0.03rem;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-our-service__item-title {
    font-size: 1.125rem;
    letter-spacing: -0.0225rem;
  }
}

.p-our-service__item-text {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.02625rem;
  color: #bfbfbf;
}

.p-our-team {
  position: relative;
  width: 100%;
  background: #000000;
  padding-block: 9.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-our-team {
    padding: 5rem 1.25rem;
  }
}

.p-our-team__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-our-team__inner {
    max-width: none;
  }
}

.p-our-team__heading {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 0.81;
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-our-team__heading {
    font-size: 2.25rem;
    letter-spacing: -0.045rem;
  }
}

.p-our-team__sub {
  margin: 0.875rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.03375rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-our-team__sub {
    margin-top: 0.625rem;
    font-size: 1rem;
    letter-spacing: -0.03rem;
  }
}

.p-our-team__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-our-team__intro {
    display: block;
    margin-top: 3.125rem;
  }
}

.p-our-team__lead-text {
  width: 30.875rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.03rem;
  color: #ffffff;
}
.p-our-team__lead-text p {
  margin: 0;
}
.p-our-team__lead-text p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-our-team__lead-text {
    width: 100%;
    font-size: 0.875rem;
    letter-spacing: -0.02625rem;
  }
}

.p-our-team__intro-img {
  flex-shrink: 0;
  width: 33.125rem;
  border-radius: 0.625rem;
  overflow: hidden;
  aspect-ratio: 530/330;
}
.p-our-team__intro-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-our-team__intro-img {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.p-our-team__card.p-our-team__card--lead {
  width: 100%;
  max-width: 56.125rem;
  margin: 6.25rem auto 0;
}
.p-our-team__card.p-our-team__card--lead .p-our-team__card-bio {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-our-team__card.p-our-team__card--lead {
    margin-top: 3.125rem;
  }
}

.p-our-team__groups {
  max-width: 56.125rem;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-our-team__groups {
    max-width: none;
    margin-top: 2.5rem;
  }
}

.p-our-team__group + .p-our-team__group {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-our-team__group + .p-our-team__group {
    margin-top: 2.5rem;
  }
}

.p-our-team__group-label {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin: 0 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-our-team__group-label {
    margin-bottom: 0.9375rem;
  }
}

.p-our-team__group-icon {
  display: block;
  flex-shrink: 0;
  width: 2.5rem;
  height: 1.6875rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
.p-our-team__group-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-our-team__group-name {
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.02rem;
  color: #ffffff;
}

.p-our-team__list {
  display: flex;
  gap: 0.375rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-our-team__list {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-our-team__card {
  width: 18.4375rem;
  padding: 2.5rem 1.875rem;
  border-radius: 0.625rem;
  background: #222222;
}
@media screen and (max-width: 767px) {
  .p-our-team__card {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}

.p-our-team__card-name {
  display: flex;
  align-items: baseline;
  gap: 0.6875rem;
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.045rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-our-team__card-name {
    font-size: 1.25rem;
    letter-spacing: -0.0375rem;
  }
}

.p-our-team__card-roman {
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.02rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-our-team__card-roman {
    font-size: 0.875rem;
    letter-spacing: -0.0175rem;
  }
}

.p-our-team__card-role {
  margin: 0.9375rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.02625rem;
  color: #ffffff;
}

.p-our-team__card-bio {
  margin: 1.875rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: -0.02625rem;
  color: #ffffff;
  font-feature-settings: "palt";
  word-break: auto-phrase;
}

.p-soft-stone {
  position: relative;
  width: 100%;
  padding-block: 9.375rem;
  background: #222222;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-soft-stone {
    padding: 5rem 1.25rem;
  }
}

.p-soft-stone__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 33.125rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-soft-stone__inner {
    display: block;
    max-width: none;
  }
}

.p-soft-stone__body {
  min-width: 0;
}

.p-soft-stone__title {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7;
  letter-spacing: -0.0525rem;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-soft-stone__title {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: -0.03375rem;
  }
}

.p-soft-stone__text {
  width: 28.75rem;
  margin-top: 5rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.03rem;
  color: #ffffff;
}
.p-soft-stone__text p {
  margin: 0;
}
.p-soft-stone__text p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-soft-stone__text {
    width: 100%;
    margin-top: 3.125rem;
    font-size: 0.875rem;
    letter-spacing: -0.02625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-soft-stone--star-panel .p-soft-stone__text {
    width: 32.25rem;
  }
  .p-soft-stone--ice-crack .p-soft-stone__text {
    width: 31.25rem;
  }
  .p-soft-stone--galaxy-mirror .p-soft-stone__text {
    width: 31.125rem;
  }
}
.p-soft-stone__media {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-soft-stone__media {
    margin-top: 3.125rem;
  }
}

.p-showroom-page__block {
  position: relative;
  width: 100%;
  padding-block: 9.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__block {
    padding-block: 5rem;
  }
}

.p-showroom-page__block--showroom {
  background: #222222;
}

.p-showroom-page__block-inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 33.125rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__block-inner {
    display: block;
    max-width: none;
    padding-inline: 1.25rem;
  }
}

.p-showroom-page__body {
  min-width: 0;
}

.p-showroom-page__title {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7;
  letter-spacing: -0.0525rem;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__title {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: -0.03375rem;
  }
}

.p-showroom-page__shop-name {
  margin: 2.5rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.03rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__shop-name {
    margin-top: 1.875rem;
    font-size: 0.875rem;
    letter-spacing: -0.02625rem;
  }
}

.p-showroom-page__shop-name + .p-showroom-page__info {
  margin-top: 1rem;
}

.p-showroom-page__info {
  width: 35rem;
  max-width: 100%;
  margin-top: 2.5rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.03rem;
  color: #ffffff;
  word-break: auto-phrase;
}
.p-showroom-page__info p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__info {
    width: 100%;
    margin-top: 1.875rem;
    font-size: 0.875rem;
    letter-spacing: -0.02625rem;
  }
}

.p-showroom-page__info-name {
  font-weight: 700;
}

.p-showroom-page__text {
  width: 28.75rem;
  margin-top: 2.5rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.03rem;
  color: #ffffff;
}
.p-showroom-page__text p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__text {
    width: 100%;
    margin-top: 1.875rem;
    font-size: 0.875rem;
    letter-spacing: -0.02625rem;
  }
}

.p-showroom-page__media {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__media {
    margin-top: 3.125rem;
  }
}

.p-showroom-page__map {
  width: 33.125rem;
  height: 22.1875rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-showroom-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-showroom-page__map {
    width: 100%;
    height: 14.625rem;
  }
}

.p-product-features {
  width: 100%;
  padding: 9.375rem 0 8.125rem;
  background: #000000;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-product-features {
    padding: 5rem 1.25rem;
  }
}

.p-product-features__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-product-features__inner {
    max-width: none;
  }
}

.p-product-features__heading {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 0.81;
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-product-features__heading {
    font-size: 2.25rem;
    letter-spacing: -0.045rem;
  }
}

.p-product-features__sub {
  margin: 0.8125rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.03375rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-product-features__sub {
    margin-top: 0.625rem;
    font-size: 1rem;
    letter-spacing: -0.03rem;
  }
}

.p-product-features__cards {
  display: flex;
  justify-content: center;
  gap: 0.3125rem;
  width: 100%;
  max-width: 69.6875rem;
  margin: 6.25rem auto 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-product-features__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1875rem;
    max-width: none;
    margin-top: 3.125rem;
  }
}

.p-product-features__cards--3col {
  flex-wrap: wrap;
  max-width: 52.1875rem;
}
@media screen and (max-width: 767px) {
  .p-product-features__cards--3col {
    flex-wrap: nowrap;
    max-width: none;
  }
}

.p-product-features__card {
  display: flex;
  flex-direction: column;
  width: 17.1875rem;
  min-height: 16.6875rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-product-features__card {
    width: auto;
    min-height: 10.523625rem;
  }
}

.p-product-features__card-img {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 275/140;
}
.p-product-features__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-product-features__card-img {
    aspect-ratio: 173/88;
  }
}

.p-product-features__card-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.9375rem 0.625rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.0375rem;
  text-align: center;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .p-product-features__card-title {
    font-size: 1rem;
    letter-spacing: -0.03rem;
  }
}

.p-product-features__space-label {
  margin: 9.375rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: -0.045rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-features__space-label {
    margin-top: 5rem;
    font-size: 1.125rem;
    letter-spacing: -0.03375rem;
  }
}

.p-product-features__space {
  display: grid;
  grid-template-columns: repeat(2, 38.6875rem);
  gap: 0.125rem;
  width: 77.5rem;
  margin: 5.4375rem auto 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-product-features__space {
    grid-template-columns: 1fr;
    gap: 0.1875rem;
    width: 100%;
    margin-top: 3.125rem;
  }
}

.p-product-features__space-item {
  position: relative;
  width: 38.6875rem;
  aspect-ratio: 619/449;
  border-radius: 0.625rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.p-product-features__space-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-product-features__space-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9.375rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(4, 4, 4, 0.7) 100%);
  pointer-events: none;
}
@media (hover: hover) {
  .p-product-features__space-item:hover {
    opacity: 0.85;
  }
  .p-product-features__space-item:hover img {
    transform: scale(1.04);
  }
}
@media screen and (max-width: 767px) {
  .p-product-features__space-item {
    width: 100%;
    aspect-ratio: 350/254;
  }
}

.p-product-features__space-name {
  position: absolute;
  bottom: 1.25rem;
  left: 1.875rem;
  z-index: 1;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: -0.0375rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-product-features__space-name {
    left: 1.25rem;
    font-size: 0.75rem;
    letter-spacing: -0.0225rem;
  }
}

.p-product-features__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.125rem;
  width: 77.375rem;
  margin: 8.1875rem auto 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-product-features__gallery {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: 3.125rem;
  }
}

.p-product-features__gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.p-product-features__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .p-product-features__gallery-item:hover {
    opacity: 0.85;
  }
  .p-product-features__gallery-item:hover img {
    transform: scale(1.04);
  }
}

.p-product-features__modal-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.p-product-features__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8.625rem;
}
@media screen and (max-width: 767px) {
  .p-product-features__cta {
    margin-top: 6.25rem;
  }
}

.p-product-features__cta-logo {
  width: 6.1875rem;
  height: 1.375rem;
  margin: 0;
}
.p-product-features__cta-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-product-features__cta-text {
  margin: 1.375rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: -0.045rem;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-product-features__cta-text {
    margin-top: 1.875rem;
    max-width: 15.3125rem;
    font-size: 1.125rem;
    letter-spacing: -0.03375rem;
    text-align: center;
    white-space: normal;
  }
}

.p-product-features__cta-row {
  display: flex;
  align-items: center;
  gap: 4.1875rem;
  margin-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-product-features__cta-row {
    flex-direction: column;
    gap: 3.125rem;
    margin-top: 1.875rem;
  }
}

.p-product-features__cta-covers {
  display: flex;
  align-items: flex-start;
}
.p-product-features__cta-covers img {
  display: block;
  width: auto;
  height: 10.4375rem;
  object-fit: cover;
}

.p-product-features__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 2.721375rem;
  border-radius: 0.3958125rem;
  background: #ffffff;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: -0.0225rem;
  color: #4aa64e;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-product-features__cta-btn:hover {
    opacity: 0.85;
  }
}

.p-features {
  position: relative;
  width: 100%;
  background: #000000;
  padding-block: 5.375rem 8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-features {
    padding-block: 5rem 5rem;
  }
}

.p-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: 0;
  pointer-events: none;
}

.p-features__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-features__bg picture,
.p-features__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-features__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-features__inner {
    padding-inline: 1.25rem;
  }
}

.p-features__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-features__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features__header .c-section-heading__en {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features__header .c-section-heading__jp {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.p-features__sub {
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #bfbfbf;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-features__sub {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-features__items {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-features__items {
    flex-direction: column;
  }
}

.p-features__item {
  position: relative;
  width: 17.5rem;
  height: 17.5rem;
  flex-shrink: 0;
  margin-inline: -0.625rem;
}
@media screen and (max-width: 767px) {
  .p-features__item {
    width: 18.75rem;
    height: 18.75rem;
    margin-inline: 0;
  }
  .p-features__item + .p-features__item {
    margin-top: -1.875rem;
  }
}
.p-features__item[data-feature-item="1"] {
  --p-desc-w: 13.75rem;
}
.p-features__item[data-feature-item="3"] {
  --p-desc-w: 13.125rem;
}

.p-features__item-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.p-features__item-circle-base,
.p-features__item-circle-anim {
  fill: none;
  stroke-width: 1;
  transform-origin: 50% 50%;
}

.p-features__item-circle-base {
  stroke: rgba(255, 255, 255, 0.55);
}

.p-features__item-circle-anim {
  stroke: #4aa64e;
  stroke-width: 1.2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 1s ease-out;
}

.p-features__items.is-animated .p-features__item[data-feature-item="1"] .p-features__item-circle-anim {
  stroke-dashoffset: 0;
  transition-delay: 0s;
}
.p-features__items.is-animated .p-features__item[data-feature-item="2"] .p-features__item-circle-anim {
  stroke-dashoffset: 0;
  transition-delay: 0.4s;
}
.p-features__items.is-animated .p-features__item[data-feature-item="3"] .p-features__item-circle-anim {
  stroke-dashoffset: 0;
  transition-delay: 0.8s;
}
.p-features__items.is-animated .p-features__item[data-feature-item="4"] .p-features__item-circle-anim {
  stroke-dashoffset: 0;
  transition-delay: 1.2s;
}

.p-features__item-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 0.81;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-features__item-number {
    top: -0.6875rem;
    font-size: 1.875rem;
  }
}

.p-features__item-title {
  position: absolute;
  top: 3.25rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-features__item-title {
    top: 3rem;
    font-size: 1.25rem;
  }
}

.p-features__item-desc {
  position: absolute;
  top: 7.5625rem;
  left: 50%;
  transform: translateX(-50%);
  width: var(--p-desc-w, 12.4375rem);
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #bfbfbf;
  text-align: left;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-features__item-desc {
    top: 7.0625rem;
    width: 14.75rem;
  }
}

.p-products {
  position: relative;
  width: 100%;
  background: #000000;
  padding-block: 9.375rem 8.3125rem;
}
@media screen and (max-width: 767px) {
  .p-products {
    padding-block: 5rem 6.6875rem;
  }
}

.p-products__inner {
  position: relative;
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-products__inner {
    padding-inline: 1.25rem;
  }
}

.p-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-products__header {
    flex-direction: column;
    margin-bottom: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-products .c-section-heading__en {
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-products .c-section-heading__jp {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.p-products__sub {
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #bfbfbf;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-products__sub {
    margin: 1.875rem 0 0;
  }
}

.p-products__list {
  display: flex;
  justify-content: center;
  gap: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-products__list {
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
  }
}

.p-products__item {
  display: flex;
  flex-direction: column;
  width: 16.875rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-products__item:hover {
    opacity: 0.85;
  }
  .p-products__item:hover .p-products__item-img img {
    transform: scale(1.1);
  }
}

.p-products__item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 270/450;
  margin-bottom: 1.875rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
.p-products__item-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-products__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
@media screen and (max-width: 767px) {
  .p-products__item-img {
    margin-bottom: 1.25rem;
  }
}

.p-products__item-name-en {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.p-products__item-name-jp {
  margin: 0.3125rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.p-products__item-tag {
  margin: 1.25rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #bfbfbf;
}
@media screen and (max-width: 767px) {
  .p-products__item-tag {
    margin-top: 0.625rem;
  }
}

.p-value-proposition {
  position: relative;
  width: 100%;
  height: 55.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-value-proposition {
    height: auto;
  }
}

.p-value-proposition__window {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__window {
    inset: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 29.625rem;
  }
}

.p-value-proposition__bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
}
.p-value-proposition__bg picture,
.p-value-proposition__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-value-proposition__bg img {
  transform: scale(1.2);
  transition: transform 0.8s ease-out;
  will-change: transform;
}

.p-value-proposition__bg.is-visible {
  visibility: visible;
}

.p-value-proposition__bg.is-active img {
  transform: scale(1);
}

.p-value-proposition__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 77.5rem;
  height: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__inner {
    max-width: none;
    height: auto;
  }
}

.p-value-proposition__image-section,
.p-value-proposition__text-section {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__image-section,
  .p-value-proposition__text-section {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-value-proposition__image-section {
    position: relative;
    height: 29.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-value-proposition__text-section {
    background: #000000;
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.p-value-proposition__heading {
  position: absolute;
  top: 3.8125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 25rem;
  height: 13.9375rem;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__heading {
    top: 8.1875rem;
    width: 17.625rem;
    height: 11rem;
  }
}

.p-value-proposition__corner {
  position: absolute;
  width: 1.5rem;
  height: 1.375rem;
  pointer-events: none;
}

.p-value-proposition__corner--tl {
  top: 0;
  left: 0;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

.p-value-proposition__corner--tr {
  top: 0;
  right: 0;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.p-value-proposition__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

.p-value-proposition__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.p-value-proposition__heading-en {
  position: absolute;
  top: 3.3125rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.p-value-proposition__heading-en span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__heading-en {
    top: 2.75rem;
    font-size: 1.875rem;
  }
}

.p-value-proposition__heading-jp {
  position: absolute;
  top: 9.6875rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__heading-jp {
    top: 7.125rem;
    font-size: 1rem;
  }
}

.p-value-proposition__caption {
  position: absolute;
  right: 6.25rem;
  bottom: 7.75rem;
  z-index: 1;
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.5rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__caption {
    top: 27.0625rem;
    right: auto;
    bottom: auto;
    left: calc(50% + 1.6875rem);
  }
}

.p-value-proposition__body {
  position: absolute;
  top: 26.125rem;
  left: 0.6875rem;
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__body {
    position: static;
    width: 21.875rem;
    margin-inline: auto;
  }
}

.p-value-proposition__text {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.p-value-proposition__text + .p-value-proposition__text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-value-proposition__text + .p-value-proposition__text {
    margin-top: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-value-proposition__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-value-proposition__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 2.71875rem;
  margin-top: 3.3125rem;
  border-radius: 0.3958125rem;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-value-proposition__btn:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 767px) {
  .p-value-proposition__btn {
    display: flex;
    margin: 1.875rem auto 0;
    height: 2.75rem;
  }
}

.p-gallery {
  position: relative;
  width: 100%;
  background: #000000;
  padding-block-start: 13.6875rem;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    padding-block-start: 2.5rem;
  }
}

.p-gallery__inner {
  position: relative;
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-gallery__inner {
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-gallery .c-section-heading__en {
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-gallery .c-section-heading__jp {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.p-gallery--page {
  padding-block: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-gallery--page {
    padding-block: 5rem 6.25rem;
  }
}

.p-gallery__filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin: 0 0 6.25rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-gallery__filter {
    flex-wrap: nowrap;
    align-items: center;
    margin: 0 0 3.125rem;
    gap: 1.875rem;
  }
}

.p-gallery__filter-tab {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: -0.05375rem;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.p-gallery__filter-tab.is-active {
  position: relative;
  color: #4aa64e;
}
.p-gallery__filter-tab.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.3em;
  background: currentColor;
}
@media (hover: hover) {
  .p-gallery__filter-tab:not(.is-active):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__filter-tab {
    width: min-content;
    font-size: 1rem;
    letter-spacing: -0.05rem;
    text-align: center;
  }
}

.p-gallery__item[hidden] {
  display: none;
}

.p-gallery__item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-gallery__list.is-switching .p-gallery__item:not([hidden]) {
  opacity: 0;
  transform: translateY(0.75rem);
}

.p-gallery__list.is-entering .p-gallery__item:not([hidden]) {
  animation: gallery-item-in 0.45s ease both;
  animation-delay: calc(var(--enter-i, 0) * 0.04s);
}

@keyframes gallery-item-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-gallery__item,
  .p-gallery__list.is-switching .p-gallery__item:not([hidden]),
  .p-gallery__list.is-entering .p-gallery__item:not([hidden]) {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.p-gallery__empty {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #bfbfbf;
}

.p-gallery__header {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-gallery__header {
    margin-bottom: 3.125rem;
  }
}

.p-gallery__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-gallery__item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-gallery__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-gallery__trigger:hover {
    opacity: 0.85;
  }
  .p-gallery__trigger:hover .p-gallery__img img {
    transform: scale(1.04);
  }
}
.p-gallery__trigger:focus-visible {
  outline: 2px solid #4aa64e;
  outline-offset: 2px;
}

.p-gallery__img {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-gallery__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.p-gallery__label {
  position: absolute;
  left: 0.625rem;
  bottom: 0.625rem;
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-gallery__label {
    font-size: 0.75rem;
  }
}

.p-gallery__more {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-gallery__more {
    margin-top: 3.125rem;
  }
}

.p-gallery__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 2.75rem;
  border-radius: 0.3958125rem;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-gallery__more-btn:hover {
    opacity: 0.85;
  }
}

.p-faq {
  width: 100%;
  background: #222222;
  padding-block: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-block: 5rem;
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-faq__item:nth-child(odd) {
  background: #000000;
}
.p-faq__item:nth-child(even) {
  background: #1a1a1a;
}

.p-faq__q {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 5rem;
  padding: 0 1.875rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    padding: 0 1.25rem;
  }
}

.p-faq__mark {
  flex-shrink: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__mark {
    font-size: 1.875rem;
  }
}

.p-faq__mark--q {
  width: 5.3125rem;
  color: #4aa64e;
}
@media screen and (max-width: 767px) {
  .p-faq__mark--q {
    width: 2.8125rem;
  }
}

.p-faq__q-text {
  flex: 1;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid", "palt";
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-faq__q-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-left: 1.5rem;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9375rem;
  height: 0.125rem;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__q[aria-expanded=true] .p-faq__icon::after {
  opacity: 0;
}

.p-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.p-faq__a-inner {
  display: flex;
  padding: 1.8125rem 1.875rem 2.5rem 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__a-inner {
    padding: 0.75rem 1.25rem 2.5rem 1.25rem;
  }
}

.p-faq__mark--a {
  width: 3.75rem;
  color: #fb623c;
}
@media screen and (max-width: 767px) {
  .p-faq__mark--a {
    width: 2.875rem;
  }
}

.p-faq__a-body {
  flex: 1;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid", "palt";
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-faq__a-body {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.p-faq__a-body :where(p) {
  margin: 0 0 1em;
}
.p-faq__a-body :where(p):last-child {
  margin-bottom: 0;
}
.p-faq__a-body a {
  color: #4aa64e;
  text-decoration: underline;
}

.p-faq__empty {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #bfbfbf;
}

.p-step {
  width: 100%;
  background: #222222;
  padding-block: 9.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-step {
    padding-block: 5rem;
  }
}

.p-step__heading {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7;
  letter-spacing: -0.0525rem;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-step__heading {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: -0.03375rem;
  }
}

.p-step__list {
  display: grid;
  grid-template-columns: repeat(4, 17.1875rem);
  gap: 0.3125rem;
  justify-content: center;
  width: 100%;
  max-width: 69.6875rem;
  margin: 5rem auto 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-step__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.125rem;
    max-width: none;
    margin-top: 3.125rem;
  }
}

.p-step__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 16.6875rem;
  padding: 2.5rem 0.9375rem;
  border-radius: 0.625rem;
  background: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-step__card {
    min-height: 10.558625rem;
    padding: 1.4375rem 0.75rem;
    border-radius: 0.3954375rem;
  }
}

.p-step__num {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 0.81;
  text-transform: uppercase;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .p-step__num {
    gap: 0.19775rem;
  }
}

.p-step__num-step {
  font-size: 1.25rem;
  letter-spacing: -0.025rem;
}
@media screen and (max-width: 767px) {
  .p-step__num-step {
    font-size: 0.7909375rem;
    letter-spacing: -0.0158125rem;
  }
}

.p-step__num-no {
  font-size: 2.5rem;
  letter-spacing: -0.05rem;
}
@media screen and (max-width: 767px) {
  .p-step__num-no {
    font-size: 1.875rem;
    letter-spacing: -0.0375rem;
  }
}

.p-step__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.25rem;
}
.p-step__icon img {
  display: block;
  width: auto;
  height: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-step__icon {
    height: 4.6875rem;
  }
  .p-step__icon img {
    height: 2.75rem;
  }
}

.p-step__label {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.0375rem;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .p-step__label {
    font-size: 1rem;
    letter-spacing: -0.03rem;
  }
}

.p-step__note {
  margin: 0.25rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.02625rem;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-step__note {
    font-size: 0.75rem;
  }
}

.p-contact {
  background: #000000;
}

.p-contact__hero {
  padding-top: 8.9375rem;
  padding-bottom: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__hero {
    padding-top: 3.5625rem;
    padding-bottom: 5rem;
  }
}

.p-contact__title {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: -0.03em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 1.25rem;
  }
}

.p-contact__panel {
  width: 100%;
  background: #222222;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__panel {
    padding-bottom: 5rem;
  }
}

.p-contact__lead {
  margin: 0 auto;
  padding-top: 5rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid", "palt";
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    padding-inline: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-contact__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 25.25rem;
  margin: 5rem auto 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
@media screen and (max-width: 767px) {
  .p-contact__steps {
    width: 18.125rem;
    margin-top: 3.75rem;
  }
}

.p-contact__step {
  position: relative;
  flex: 1;
  text-align: center;
}
.p-contact__step::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  margin: 1.1875rem auto 0;
  border-radius: 50%;
  background: #ffffff;
}
.p-contact__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.625rem;
  left: 50%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.p-contact__step.is-current::before {
  background: #4aa64e;
  position: relative;
  z-index: 1;
}

.p-contact__step-label {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid", "palt";
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact__step-label {
    font-size: 0.6875rem;
  }
}

.p-contact__form {
  width: 100%;
  max-width: 62.5rem;
  margin: 5rem auto 0;
  padding: 0 2.5rem;
}
.p-contact__form .smf-form,
.p-contact__form .wp-block-snow-monkey-forms-snow-monkey-form {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    max-width: none;
    margin-top: 3.125rem;
    padding-inline: 1.25rem;
  }
}

.p-contact__fields {
  width: 100%;
  margin: 0 auto;
  padding: 3.0625rem 3.125rem;
  background: #eaecef;
  border-radius: 0.625rem;
}
.p-contact__fields .smf-item + .smf-item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fields {
    padding: 3.125rem 1.125rem;
  }
  .p-contact__fields .smf-item + .smf-item {
    margin-top: 1.875rem;
  }
}

.p-contact__fields .smf-item__col--label {
  display: block;
  margin-bottom: 0.5rem;
}
.p-contact__fields .smf-item__label {
  margin: 0;
}
.p-contact__fields .smf-item__label__text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid";
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #292929;
}
.p-contact__fields .smf-item:has([data-validations~=required]) .smf-item__label__text::after {
  content: "必須";
  display: inline-block;
  margin-left: 0.75rem;
  padding: 0.1875rem 0.5625rem;
  border-radius: 0.25rem;
  background: #da6060;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  vertical-align: middle;
  transform: translateY(-0.0625rem);
}

.p-contact__fields input[type=text],
.p-contact__fields input[type=email],
.p-contact__fields input[type=tel],
.p-contact__fields input[type=number],
.p-contact__fields input[type=url],
.p-contact__fields select,
.p-contact__fields .smf-select-control__control {
  width: 100%;
  height: 3.75rem;
  padding: 0 1.25rem;
  border: 1px solid #d3d3d3;
  border-radius: 0.375rem;
  background: #ffffff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #292929;
}
.p-contact__fields input[type=text]::placeholder,
.p-contact__fields input[type=email]::placeholder,
.p-contact__fields input[type=tel]::placeholder,
.p-contact__fields input[type=number]::placeholder,
.p-contact__fields input[type=url]::placeholder,
.p-contact__fields select::placeholder,
.p-contact__fields .smf-select-control__control::placeholder {
  color: #a2a2a2;
}
.p-contact__fields input[type=text]:focus,
.p-contact__fields input[type=email]:focus,
.p-contact__fields input[type=tel]:focus,
.p-contact__fields input[type=number]:focus,
.p-contact__fields input[type=url]:focus,
.p-contact__fields select:focus,
.p-contact__fields .smf-select-control__control:focus {
  outline: none;
  border-color: #4aa64e;
}
@media screen and (max-width: 767px) {
  .p-contact__fields input[type=text],
  .p-contact__fields input[type=email],
  .p-contact__fields input[type=tel],
  .p-contact__fields input[type=number],
  .p-contact__fields input[type=url],
  .p-contact__fields select,
  .p-contact__fields .smf-select-control__control {
    height: 3.125rem;
    font-size: 16px;
  }
}
.p-contact__fields textarea {
  width: 100%;
  height: 33.375rem;
  padding: 1.125rem 1.25rem;
  border: 1px solid #d3d3d3;
  border-radius: 0.375rem;
  background: #ffffff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #292929;
  resize: vertical;
}
.p-contact__fields textarea::placeholder {
  color: #a2a2a2;
}
.p-contact__fields textarea:focus {
  outline: none;
  border-color: #4aa64e;
}
@media screen and (max-width: 767px) {
  .p-contact__fields textarea {
    height: 12rem;
    font-size: 16px;
  }
}
.p-contact__fields .p-contact__half {
  float: left;
  width: calc(50% - 0.625rem);
  margin-bottom: 2.5rem;
}
.p-contact__fields .p-contact__half + .p-contact__half {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fields .p-contact__half {
    width: calc(50% - 0.3125rem);
    margin-bottom: 1.875rem;
  }
  .p-contact__fields .p-contact__half + .p-contact__half {
    margin-left: 0.625rem;
  }
}
.p-contact__fields .p-contact__half + .p-contact__half + .smf-item {
  clear: both;
  margin-top: 0;
}

.p-contact__fields .p-contact__w-s {
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fields .p-contact__w-s {
    width: 100%;
  }
}
.p-contact__fields .p-contact__w-m {
  width: 24.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fields .p-contact__w-m {
    width: 100%;
  }
}
.p-contact__fields .p-contact__w-l {
  width: 35rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fields .p-contact__w-l {
    width: 100%;
  }
}
.p-contact__fields .p-contact__name {
  float: left;
  width: 16.875rem;
  margin-bottom: 2.5rem;
}
.p-contact__fields .p-contact__name + .p-contact__name {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fields .p-contact__name {
    width: calc(50% - 0.3125rem);
    margin-bottom: 1.875rem;
  }
  .p-contact__fields .p-contact__name + .p-contact__name {
    margin-left: 0.625rem;
  }
}
.p-contact__fields .p-contact__name + .p-contact__name + .smf-item {
  clear: both;
  margin-top: 0;
}
.p-contact__fields .smf-select-control {
  display: inline-block;
  max-width: 100%;
}
.p-contact__fields .smf-select-control__toggle {
  display: none;
}
.p-contact__fields select,
.p-contact__fields .smf-select-control__control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='6'%20viewBox='0%200%2010%206'%3E%3Cpath%20d='M1%201l4%204%204-4'%20fill='none'%20stroke='%23292929'%20stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
}
@media screen and (min-width: 768px) {
  .p-contact__fields select,
  .p-contact__fields .smf-select-control__control {
    padding-right: 5.875rem;
  }
}

.p-contact select,
.p-contact .smf-select-control__control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.p-contact select::-ms-expand {
  display: none;
}
.p-contact input,
.p-contact select,
.p-contact textarea,
.p-contact .smf-item {
  scroll-margin-top: 40vh;
}

.p-contact__fields .smf-radio-buttons-control,
.p-contact__fields .smf-radio-buttons-control__control {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fields .smf-radio-buttons-control,
  .p-contact__fields .smf-radio-buttons-control__control {
    gap: 0.625rem;
  }
}
.p-contact__fields .smf-radio-button-control,
.p-contact__fields .smf-radio-buttons-control label {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.9375rem;
  line-height: 1;
  color: #292929;
  cursor: pointer;
}
.p-contact__fields input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.p-contact__fields input[type=radio]:checked {
  border-color: #292929;
  background: radial-gradient(circle, #292929 0, #292929 0.4375rem, transparent 0.4375rem);
}
.p-contact__fields input[type=radio]:focus-visible {
  outline: 2px solid #4aa64e;
  outline-offset: 2px;
}

.p-contact__fields .smf-item:has(.smf-placeholder[data-name=sample]) {
  display: none;
}

.snow-monkey-form[data-smf-kind=sample] .p-contact__fields .smf-item:has(.smf-placeholder[data-name=product]),
.snow-monkey-form[data-smf-kind=sample] .p-contact__fields .smf-item:has(.smf-placeholder[data-name=catalog]),
.snow-monkey-form[data-smf-kind=sample] .p-contact__fields .smf-item:has(.smf-placeholder[data-name=size]) {
  display: none;
}
.snow-monkey-form[data-smf-kind=sample] .p-contact__fields .smf-item:has(.smf-placeholder[data-name=sample]) {
  display: block;
}

.p-contact__privacy {
  width: 100%;
  max-width: 43.75rem;
  margin: 5rem auto 0;
  padding: 1.75rem 2.25rem;
  background: #515151;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy {
    max-width: none;
    margin-top: 3.125rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-contact__privacy-heading {
  margin: 0 0 0.75rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.p-contact__privacy-body {
  margin: 0;
}
.p-contact__privacy-body p {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid";
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy-body p {
    font-size: 0.6875rem;
  }
}

.p-contact__privacy-note {
  margin: 2.5rem auto 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid";
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy-note {
    margin-top: 1.875rem;
    padding-inline: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-contact__recaptcha-note {
  margin: 1.5rem auto 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid";
  font-size: 0.6875rem;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.p-contact__recaptcha-note a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.p-contact__recaptcha-note a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-contact__recaptcha-note {
    padding-inline: 1.25rem;
    font-size: 0.625rem;
  }
}

.p-contact__form .smf-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form .smf-action .smf-button-control + .smf-button-control {
    margin-left: 0;
  }
}
.p-contact__form .smf-button-control__control,
.p-contact__form .wp-block-button__link,
.p-contact__form input[type=submit],
.p-contact__form button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.03em;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
}
.p-contact__form .smf-button-control__control:hover,
.p-contact__form .wp-block-button__link:hover,
.p-contact__form input[type=submit]:hover,
.p-contact__form button[type=submit]:hover {
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .p-contact__form .smf-button-control__control,
  .p-contact__form .wp-block-button__link,
  .p-contact__form input[type=submit],
  .p-contact__form button[type=submit] {
    font-size: 0.75rem;
  }
}
.p-contact__form .smf-button-control__control[data-action=back] {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.p-contact__form .smf-button-control__control[data-action=back]:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.snow-monkey-form[data-screen=confirm] .p-contact__fields .smf-item__controls {
  min-height: 1.75rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #292929;
  word-break: break-word;
}
.snow-monkey-form[data-screen=confirm] .p-contact__privacy,
.snow-monkey-form[data-screen=confirm] .p-contact__privacy-note {
  display: none;
}

.smf-complete-content {
  display: flex;
  justify-content: center;
}

.p-contact-thanks {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 3.75rem 3.125rem;
  border-radius: 0.625rem;
  background: #eaecef;
  text-align: center;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks {
    padding: 2.5rem 1.25rem;
  }
}

.p-contact-thanks__title {
  margin: 0 0 1.5rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__title {
    font-size: 1.125rem;
    text-align: left;
  }
}

.p-contact-thanks__text {
  margin: 0 0 1.25rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__text {
    text-align: left;
  }
}

.p-contact-thanks__note {
  margin: 0 0 2.5rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__note {
    text-align: left;
  }
}

.p-contact-thanks__top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13.75rem;
  height: 3rem;
  padding: 0 2.5rem;
  border-radius: 100vmax;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-contact-thanks__top:hover {
  opacity: 0.85;
}

.p-news {
  width: 100%;
  padding-block: 9.375rem;
  background: #222222;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 5rem;
  }
}

.p-news__ajax {
  transition: opacity 0.28s ease;
}
.p-news__ajax.is-loading {
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .p-news__ajax {
    transition: none;
  }
}

.p-news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
  row-gap: 5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 1.875rem;
  }
}

.p-news__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.p-news__link {
  display: grid;
  grid-template-columns: 7.1875rem minmax(0, 1fr) 0.875rem;
  column-gap: 1.0625rem;
  align-items: start;
  min-height: 7.3125rem;
  color: #ffffff;
}
@media (hover: hover) {
  .p-news__link:hover .p-news__title {
    color: #4aa64e;
  }
  .p-news__link:hover .p-news__arrow::before {
    border-color: #4aa64e;
  }
}
@media screen and (max-width: 767px) {
  .p-news__link {
    grid-template-columns: 4rem minmax(0, 1fr) 0.4375rem;
    column-gap: 1.3125rem;
    min-height: 5.1875rem;
  }
}

.p-news__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8125rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-news__meta {
    gap: 0.625rem;
  }
}

.p-news__date {
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__date {
    font-size: 0.875rem;
  }
}

.p-news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.0625rem 0.5rem;
  border-radius: 0.25rem;
  background: #4aa64e;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__cat {
    min-width: 4rem;
    padding: 0.0625rem 1.0625rem;
    font-size: 0.625rem;
  }
}

.p-news__title {
  display: -webkit-box;
  max-width: 24.6875rem;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "pwid", "palt";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #ffffff;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    max-width: none;
    -webkit-line-clamp: 3;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-news__arrow {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 1.4375rem;
}
.p-news__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__arrow {
    width: 0.4375rem;
    height: 0.875rem;
  }
  .p-news__arrow::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.p-news__pagination {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news__pagination {
    margin-top: 3.125rem;
  }
}
.p-news__pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.p-news__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news__pagination .nav-links {
    gap: 1.25rem;
    flex-wrap: nowrap;
  }
}
.p-news__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-news__pagination .page-numbers {
    font-size: 1rem;
  }
}
.p-news__pagination .page-numbers.current {
  padding: 0.625rem 1.25rem;
  border-radius: 0.4375rem;
  background: #4aa64e;
}
@media screen and (max-width: 767px) {
  .p-news__pagination .page-numbers.current {
    padding: 0.5rem 0.9375rem;
  }
}
@media (hover: hover) {
  .p-news__pagination a.page-numbers:not(.prev):not(.next):hover {
    color: #4aa64e;
  }
}
.p-news__pagination .prev.page-numbers,
.p-news__pagination .next.page-numbers {
  gap: 0.75rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
@media (hover: hover) {
  .p-news__pagination .prev.page-numbers:hover,
  .p-news__pagination .next.page-numbers:hover {
    color: #4aa64e;
  }
  .p-news__pagination .prev.page-numbers:hover::before, .p-news__pagination .prev.page-numbers:hover::after,
  .p-news__pagination .next.page-numbers:hover::before,
  .p-news__pagination .next.page-numbers:hover::after {
    border-color: #4aa64e;
  }
}
@media screen and (max-width: 767px) {
  .p-news__pagination .prev.page-numbers,
  .p-news__pagination .next.page-numbers {
    font-size: 0.625rem;
  }
}
.p-news__pagination .prev.page-numbers {
  margin-right: 2.5rem;
}
.p-news__pagination .prev.page-numbers::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-left: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__pagination .prev.page-numbers {
    margin-right: 0;
  }
  .p-news__pagination .prev.page-numbers::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}
.p-news__pagination .next.page-numbers {
  margin-left: 2.5rem;
}
.p-news__pagination .next.page-numbers::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__pagination .next.page-numbers {
    margin-left: 0;
  }
  .p-news__pagination .next.page-numbers::after {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.p-news__empty {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #bfbfbf;
}

.p-news-single {
  width: 100%;
}

.p-news-single__inner {
  width: 100%;
  max-width: 60.625rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__inner {
    padding-inline: 1.25rem;
  }
}

.p-news-single__head {
  background: #000000;
  padding-block: 7.5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__head {
    padding-block: 6.375rem 5rem;
  }
}

.p-news-single__title {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.03em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-news-single__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__meta {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
}

.p-news-single__date {
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news-single__date {
    font-size: 0.875rem;
  }
}

.p-news-single__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.0625rem 0.5rem;
  border-radius: 0.25rem;
  background: #4aa64e;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news-single__cat {
    min-width: 4rem;
    padding: 0.0625rem 1.0625rem;
    font-size: 0.625rem;
  }
}

.p-news-single__body {
  background: #222222;
  padding-block: 6.25rem 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__body {
    padding-block: 5rem;
  }
}

.p-news-single__thumb {
  width: 100%;
  margin: 0 0 5rem;
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 900/471;
  background: #111111;
}
.p-news-single__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-news-single__thumb {
    margin-bottom: 3.125rem;
  }
}

.p-news-single__content {
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.03em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-news-single__content {
    font-size: 0.875rem;
    font-weight: 500;
  }
}
.p-news-single__content > *:first-child {
  margin-top: 0;
}
.p-news-single__content > *:last-child {
  margin-bottom: 0;
}
.p-news-single__content p {
  margin: 0 0 1.75rem;
}
.p-news-single__content h2,
.p-news-single__content h3,
.p-news-single__content h4 {
  margin: 3.75rem 0 1.75rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h2,
  .p-news-single__content h3,
  .p-news-single__content h4 {
    margin: 2.5rem 0 3.125rem;
  }
}
.p-news-single__content h2 {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h2 {
    font-size: 1.125rem;
  }
}
.p-news-single__content h3 {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h3 {
    font-size: 1rem;
  }
}
.p-news-single__content h4 {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h4 {
    font-size: 0.9375rem;
  }
}
.p-news-single__content ul,
.p-news-single__content ol {
  margin: 0 0 1.75rem;
  padding-left: 1.5em;
}
.p-news-single__content li + li {
  margin-top: 0.5rem;
}
.p-news-single__content hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .p-news-single__content hr {
    margin: 3.125rem 0;
  }
}
.p-news-single__content a {
  color: #4aa64e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: none;
}
.p-news-single__content a[target=_blank] {
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-news-single__content a[target=_blank] {
    font-size: 1rem;
  }
}
.p-news-single__content a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.1875rem;
  background-color: currentColor;
  vertical-align: middle;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M14%203h7v7h-2V6.41l-9.29%209.3-1.42-1.42%209.3-9.29H14V3zM5%205h5v2H7v10h10v-3h2v5H5V5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M14%203h7v7h-2V6.41l-9.29%209.3-1.42-1.42%209.3-9.29H14V3zM5%205h5v2H7v10h10v-3h2v5H5V5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.p-news-single__content figure {
  margin: 3rem 0;
}
.p-news-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
.p-news-single__content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid #4aa64e;
  background: #000000;
  color: #bfbfbf;
}
.p-news-single__content .wp-block-buttons {
  display: flex;
  justify-content: center;
  margin: 3rem 0 0;
}
.p-news-single__content .wp-block-button__link,
.p-news-single__content .p-news-single__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.875rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
}
@media (hover: hover) {
  .p-news-single__content .wp-block-button__link:hover,
  .p-news-single__content .p-news-single__btn:hover {
    opacity: 0.85;
  }
}
.p-news-single__content figure.wp-block-table {
  margin: 2.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-news-single__content table {
  width: 100%;
  margin: 2.5rem 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-news-single__content table {
    font-size: 0.8125rem;
  }
}
.p-news-single__content table th,
.p-news-single__content table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: left;
  vertical-align: top;
}
.p-news-single__content table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}
figure.wp-block-table .p-news-single__content table {
  margin: 0;
}
.p-news-single__content pre,
.p-news-single__content .wp-block-code,
.p-news-single__content .wp-block-preformatted {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: 0.375rem;
  background: #000000;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: auto;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
}
.p-news-single__content code {
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
  font-size: 0.9em;
}
.p-news-single__content pre code,
.p-news-single__content .wp-block-code code {
  padding: 0;
  background: transparent;
  font-size: inherit;
  border-radius: 0;
}
.p-news-single__content .wp-block-verse {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.05);
  font-family: inherit;
  white-space: pre-wrap;
}
.p-news-single__content .wp-block-embed {
  margin: 2.5rem 0;
}
.p-news-single__content .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.p-news-single__content .wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-news-single__content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__content .wp-block-columns {
    flex-direction: column;
    gap: 1.75rem;
  }
}
.p-news-single__content .wp-block-column {
  flex: 1;
  min-width: 0;
}
.p-news-single__content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 0;
  list-style: none;
}
.p-news-single__content .wp-block-gallery.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.p-news-single__content .wp-block-gallery.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.p-news-single__content .wp-block-gallery.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .p-news-single__content .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.p-news-single__content .wp-block-gallery figure,
.p-news-single__content .wp-block-gallery .wp-block-image {
  margin: 0;
}
.p-news-single__content .wp-block-gallery img {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
}
.p-news-single__content .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2.5rem 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-news-single__content .wp-block-media-text {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.p-news-single__content .wp-block-media-text .wp-block-media-text__media,
.p-news-single__content .wp-block-media-text .wp-block-media-text__content {
  margin: 0;
}
.p-news-single__content .wp-block-media-text img {
  width: 100%;
  border-radius: 0.5rem;
}
.p-news-single__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  order: 2;
}
.p-news-single__content .wp-block-pullquote {
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 2px solid #4aa64e;
  border-bottom: 2px solid #4aa64e;
  text-align: center;
}
.p-news-single__content .wp-block-pullquote p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-news-single__content .wp-block-pullquote p {
    font-size: 1rem;
  }
}
.p-news-single__content .wp-block-pullquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}
.p-news-single__content .wp-block-cover {
  position: relative;
  margin: 2.5rem 0;
  padding: 3.75rem 1.875rem;
  min-height: 22.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}
.p-news-single__content .wp-block-cover img.wp-block-cover__image-background,
.p-news-single__content .wp-block-cover video.wp-block-cover__video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.p-news-single__content .wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.p-news-single__content .wp-block-cover p {
  margin: 0;
  color: inherit;
}
.p-news-single__content .wp-block-separator {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .p-news-single__content .wp-block-separator {
    margin: 3.125rem 0;
  }
}
.p-news-single__content .wp-block-separator.is-style-dots {
  border: 0;
  text-align: center;
}
.p-news-single__content .wp-block-separator.is-style-dots::before {
  content: "···";
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.5);
}
.p-news-single__content .wp-block-video,
.p-news-single__content .wp-block-audio {
  margin: 2.5rem 0;
}
.p-news-single__content .wp-block-video video,
.p-news-single__content .wp-block-video audio,
.p-news-single__content .wp-block-audio video,
.p-news-single__content .wp-block-audio audio {
  width: 100%;
  display: block;
}
.p-news-single__content .wp-block-file {
  margin: 1.75rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.p-news-single__content .wp-block-file .wp-block-file__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: #4aa64e;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
}
@media (hover: hover) {
  .p-news-single__content .wp-block-file .wp-block-file__button:hover {
    opacity: 0.85;
  }
}

.p-news-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  margin-top: 6.25rem;
  padding: 3.625rem 3.125rem;
  border-radius: 0.625rem;
  background: #000000;
}
@media screen and (max-width: 767px) {
  .p-news-single__nav {
    margin-top: 3.125rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}

.p-news-single__nav-item--prev {
  justify-self: start;
}

.p-news-single__nav-item--next {
  justify-self: end;
}

.p-news-single__nav-item--prev a,
.p-news-single__nav-item--next a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
}
@media (hover: hover) {
  .p-news-single__nav-item--prev a:hover,
  .p-news-single__nav-item--next a:hover {
    color: #4aa64e;
  }
}
@media screen and (max-width: 767px) {
  .p-news-single__nav-item--prev a,
  .p-news-single__nav-item--next a {
    font-size: 0.625rem;
  }
}

.p-news-single__nav-arrow {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-news-single__nav-arrow {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.p-news-single__nav-arrow--prev {
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.p-news-single__nav-arrow--next {
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.p-news-single__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.875rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  background: #ffffff;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #4aa64e;
  text-decoration: none;
}
@media (hover: hover) {
  .p-news-single__back:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 767px) {
  .p-news-single__back {
    min-width: 9.375rem;
  }
}

.p-showroom {
  position: relative;
  width: 100%;
  background: #000000;
  padding-block: 11.125rem 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-showroom {
    padding-block: 10.625rem 5rem;
  }
}

.p-showroom__inner {
  position: relative;
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-showroom__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: 1.25rem;
  }
}

.p-showroom__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-showroom__body {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-showroom .c-section-heading__en {
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-showroom .c-section-heading__jp {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.p-showroom__text {
  width: 30.875rem;
  margin: 3.6875rem 0 0;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #bfbfbf;
}
@media screen and (max-width: 767px) {
  .p-showroom__text {
    width: auto;
    margin-top: 3.125rem;
    font-size: 0.875rem;
  }
}

.p-showroom__shop-name {
  margin: 0 0 1rem;
  font-weight: 700;
}

.p-showroom__note {
  margin-top: 1.25rem;
}

.p-showroom__btns {
  display: flex;
  gap: 0.9375rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-showroom__btns {
    order: 1;
    margin-top: 1.875rem;
    gap: 0.625rem;
    justify-content: center;
  }
}

.p-showroom__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 2.721375rem;
  border-radius: 0.3958125rem;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-showroom__btn:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 767px) {
  .p-showroom__btn {
    width: 10.625rem;
    height: 2.75rem;
  }
}

.p-showroom__visual {
  flex-shrink: 0;
  width: 33.125rem;
  border-radius: 0.625rem;
  overflow: hidden;
  aspect-ratio: 530/355;
}
.p-showroom__visual picture,
.p-showroom__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-showroom__visual {
    width: 100%;
    margin-top: 3.125rem;
    aspect-ratio: 350/234;
  }
}

.p-cta {
  position: relative;
  width: 100%;
  padding-block: 9.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 5rem;
  }
}

.p-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-cta__bg picture,
.p-cta__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 68.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    max-width: none;
    padding-inline: 1.25rem;
  }
}

.p-cta__list {
  display: grid;
  grid-template-columns: repeat(3, 22.5rem);
  gap: 0.3125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-cta__list {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-cta__card {
  position: relative;
  width: 22.5rem;
  min-height: 30.3125rem;
  padding: 3.125rem 3.3125rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-cta__card {
    width: 100%;
    min-height: 27.125rem;
    padding: 3.125rem 1.875rem;
  }
}

.p-cta__title {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #292929;
  text-align: center;
}

.p-cta__img {
  margin-top: 1.875rem;
  width: 14.375rem;
  height: 9.875rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-cta__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-cta__img {
    margin-top: 1.25rem;
  }
}

.p-cta__text {
  margin: 1.875rem 0 0;
  width: 100%;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #292929;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-top: 1.25rem;
  }
}

.p-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 2.71875rem;
  margin-top: 2.5rem;
  border-radius: 0.3958125rem;
  background: #4aa64e;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-cta__btn:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    height: 2.75rem;
    margin-top: 1.25rem;
  }
}

.p-stats {
  position: relative;
  width: 100%;
  padding-block: 6.3125rem 9.375rem;
  background: #252525;
}
@media screen and (max-width: 767px) {
  .p-stats {
    padding-block: 5rem;
  }
}

.p-stats__inner {
  position: relative;
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-stats__logo {
  width: 6.1875rem;
  height: 1.375rem;
}
.p-stats__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-stats__list {
  margin: 5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10.6875rem;
}
@media screen and (max-width: 767px) {
  .p-stats__list {
    margin-top: 3.5625rem;
    width: 15.625rem;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    column-gap: 0;
    row-gap: 2.5rem;
  }
}

.p-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-stats__num {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 0.81;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-stats__num {
    font-size: 3.125rem;
  }
}

.p-stats__label {
  margin: 1.875rem 0 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 0.81;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-stats__label {
    margin-top: 0.625rem;
  }
}

.p-footer {
  position: relative;
  width: 100%;
  height: 97rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: auto;
  }
}

.p-footer__top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 42.9375rem;
  z-index: 1;
  background: #000000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9.375rem 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    position: static;
    height: auto;
    padding: 4.1875rem 1.25rem 5rem;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

.p-footer__top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__top-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__company {
    width: 100%;
  }
}

.p-footer__heading {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 0.81;
  letter-spacing: -0.0375rem;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.p-footer__info,
.p-footer__address,
.p-footer__desc {
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
}
.p-footer__info p,
.p-footer__address p,
.p-footer__desc p {
  margin: 0;
}

.p-footer__info {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    margin-top: 5.4375rem;
  }
}

.p-footer__address {
  margin-top: 0;
  line-height: 1.3;
}
.p-footer__address a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    margin-top: 1.875rem;
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

.p-footer__desc {
  margin-top: 1.6875rem;
}
.p-footer__desc p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-footer__desc {
    margin-top: 1.3125rem;
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav {
    order: 2;
    margin-top: 3.1875rem;
  }
}

.p-footer__nav-list {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
  }
}

.p-footer__nav-link {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "hist", "pwid", "palt";
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-footer__nav-link:hover {
    opacity: 0.6;
  }
}

.p-footer__nav-link--static {
  cursor: default;
  pointer-events: none;
}
@media (hover: hover) {
  .p-footer__nav-link--static:hover {
    opacity: 1;
  }
}

.p-footer__nav-arrow {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
}
.p-footer__nav-arrow svg {
  display: block;
  width: 0.625rem;
  height: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-arrow {
    display: none;
  }
}

.p-footer__nav-item--has-dropdown {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item--has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.9375rem;
  }
}

.p-footer__nav-sublist {
  position: absolute;
  top: 100%;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin: 0.875rem 0 0;
  padding: 1.25rem;
  list-style: none;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15.5px);
  -webkit-backdrop-filter: blur(15.5px);
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  pointer-events: none;
}
.p-footer__nav-sublist::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sublist {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    justify-items: start;
    column-gap: 1.75rem;
    row-gap: 0.875rem;
    margin: 0.625rem 0 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .p-footer__nav-sublist::before {
    content: none;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-item--has-dropdown:hover .p-footer__nav-sublist,
  .p-footer__nav-item--has-dropdown:focus-within .p-footer__nav-sublist {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }
}
.p-footer__nav-sublink {
  display: inline-block;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #292929;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-footer__nav-sublink:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sublink {
    font-size: 0.875rem;
    color: #a3a3a3;
  }
}

.p-footer__sns {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2.3125rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    order: 3;
    margin: 1.9375rem 0 0;
  }
}

.p-footer__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  transition: opacity 0.2s ease;
}
.p-footer__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (hover: hover) {
  .p-footer__sns-link:hover {
    opacity: 0.6;
  }
}

.p-footer__logo {
  width: 6.1875rem;
  height: 1.375rem;
  margin: 18.125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    order: 1;
    margin: 0;
  }
}
.p-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-footer__visual {
  position: absolute;
  top: 42.9375rem;
  left: 0;
  width: 100%;
  height: 50.3125rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-footer__visual {
    position: relative;
    top: auto;
    height: 32.0625rem;
    overflow: hidden;
  }
}

.p-footer__visual-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  pointer-events: none;
  visibility: hidden;
}

.p-footer__visual-bg.is-visible {
  visibility: visible;
}

.p-footer__bigtext {
  position: absolute;
  top: 40.6875rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  z-index: 1;
  margin: 0;
  font-family: "Bodoni Moda SC", serif;
  font-variation-settings: "opsz" 25;
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 0.79;
  --bigtext-ls: min(16.875rem, calc((100vw - 360px) / 4));
  letter-spacing: var(--bigtext-ls);
  text-indent: var(--bigtext-ls);
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  mix-blend-mode: difference;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-footer__bigtext {
    top: auto;
    bottom: 33.5625rem;
    font-size: 2.5rem;
    --bigtext-ls: 3.5rem;
  }
}

.p-footer__copy-s {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  column-gap: 1.25rem;
  margin: 0;
  letter-spacing: 0.2em;
  pointer-events: none;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease;
}
.p-footer__copy-s.is-inview {
  clip-path: inset(0 0 0 0);
}
@media screen and (max-width: 767px) {
  .p-footer__copy-s {
    column-gap: 0.75rem;
    top: 48%;
  }
}

.p-footer__copy-s-line {
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "vert", "hist";
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.1;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__copy-s-line {
    font-size: 1rem;
  }
}

.p-footer__copyright {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 3.75rem;
  padding-right: 2.875rem;
  background: #000000;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    position: static;
    height: 2.5rem;
    padding-right: 1.25rem;
  }
}

.p-footer__copyright-text {
  margin: 0;
  font-family: "Arimo", "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.8;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-text {
    font-size: 0.625rem;
  }
}

.p-floating-line {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}
.p-floating-line.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-floating-line.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-floating-line {
    right: 1rem;
    bottom: 1rem;
  }
}

.p-floating-line__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 7.5rem;
  height: 7.5rem;
  padding: 1.6875rem 0 1.3125rem;
  border-radius: 50%;
  background: #06c755;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .p-floating-line__link:hover {
    transform: translateY(-0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .p-floating-line__link {
    width: 6rem;
    height: 6rem;
    padding: 1.25rem 0 1rem;
  }
}

.p-floating-line__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1875rem;
  text-align: center;
}

.p-floating-line__text-sm {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-floating-line__text-sm {
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.3;
  }
}

.p-floating-line__text-lg {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-floating-line__text-lg {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
  }
}

.p-floating-line__arrow {
  margin-top: 0.9375rem;
  width: 0.5625rem;
  height: 0.9375rem;
}
.p-floating-line__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-floating-line__arrow {
    margin-top: 0.6875rem;
    width: 0.4375rem;
    height: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}
.u-font__en {
  font-family: "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

.u-animation__fadeIn {
  translate: 0 20px;
  opacity: 0;
  transition: all 0.3s ease;
}
.u-animation__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}
