@charset "UTF-8";
@import url("chillax.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,200..600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3, h4) {
  line-height: calc(1em + 1rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --font-en-title: 'Chillax-Variable', sans-serif;
  --font-en-body: "Inter", sans-serif;
  --font-jp: 'Zen Kaku Gothic New', 'Hiragino Sans', Meiryo, sans-serif;
  --font-mixed: var(--font-en-body), var(--font-jp);
  --fs-h1: 8rem;
  --fs-h2: 3.2rem;
  --fs-h3: 2.4rem;
  --fs-h4: 2rem;
  --fs-base: 1.6rem;
  --fs-small: 1.4rem;
  --fs-h1-sp: 4rem;
  --fs-h2-sp: 2.4rem;
  --fs-h3-sp: 2rem;
  --fs-h4-sp: 1.8rem;
  --fs-base-sp: 1.5rem;
  --fs-small-sp: 1.2rem;
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

:root {
  --theme-primary: #1F3C2F;
  --theme-primary-overlay: color-mix(in srgb, var(--theme-primary) 85%, transparent);
  --theme-primary-light: #3F5E4F;
  --theme-primary-dark: #172E23;
  --theme-secondary: #DED0B5;
  --theme-secondary-light: #E1D7C2;
  --base-white: #fff;
  --base-black: #222;
}

:root {
  --container-xl: 1440px;
  --container-lg: 1280px;
  --container-md: 1080px;
  --container-sm: 960px;
  --space-1: .4rem;
  --space-2: .8rem;
  --space-3: 1.2rem;
  --space-4: 1.6rem;
  --space-5: 2rem;
  --space-6: 2.4rem;
  --space-8: 3.2rem;
  --space-10: 4rem;
  --space-12: 4.8rem;
  --space-14: 5.6rem;
  --space-16: 6.4rem;
  --space-18: 7.2rem;
  --space-20: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-fl: 9999px;
  --ls-base: 0.075em;
  --ls-tight: 0em;
  --ls-middle: 0.05em;
  --ls-wide: 0.1em;
  --ls-wider: 0.2em;
  --lh-base: 1.75;
  --lh-none: 1;
  --lh-tight: 1.25;
  --lh-middle: 1.5;
  --lh-loose: 2;
  --lh-extra: 2.25;
}

.p-productInfo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: var(--font-jp);
  font-size: clamp(14px, 1vw, 15px);
  font-weight: var(--fw-regular);
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--base-black);
  background-color: var(--base-white);
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: clamp(13px, 1vw, 14px);
  }
}

h1, h2, h3 {
  font-weight: var(--fw-bold);
}

h4, h5, h6 {
  font-weight: var(--fw-semibold);
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  opacity: 1;
}

@media (hover: hover) {
  .button:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
  }
}
body {
  background-color: var(--theme-primary);
}

.l-main {
  opacity: 0;
}

.l-main.is-loaded {
  opacity: 1;
  transition: opacity 1.2s ease;
}

.js-img-shrink {
  overflow: hidden;
}
.js-img-shrink img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-blur-parallax {
  overflow: hidden;
}
.js-blur-parallax img {
  width: 100%;
  display: block;
}

.js-img-parallax {
  overflow: hidden;
}
.js-img-parallax img {
  width: 100%;
  display: block;
}

.js-scroll-video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* タイトル・メインコピー */
.js-op-title,
.js-op-main-copy {
  opacity: 0;
  filter: blur(10px);
}

.js-op-sub-copy {
  overflow: hidden;
  opacity: 0;
}

.js-op-sub-copy span {
  display: inline-block;
  opacity: 0;
}

.js-op-deco {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js-op-deco__text {
  display: block;
  opacity: 0;
}

.js-op-deco__bar {
  position: absolute;
  inset: 0;
  background: var(--theme-secondary-light);
  transform: scaleY(0);
  transform-origin: top;
}

.js-mask-reveal {
  position: relative;
  overflow: clip;
  display: block;
  width: fit-content;
}
.js-mask-reveal__rect {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: var(--theme-secondary-light);
  width: 100%;
  height: 100%;
  transform: translateX(-101%);
}

.p-visual {
  position: relative;
  height: 100vh;
}

.p-visual__image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 92%;
  height: 100vh;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-visual__image {
    width: 86%;
  }
}

.p-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-visual__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 60, 47, 0.5);
  z-index: 2;
  opacity: 0;
}

.p-prologue {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  background: rgba(31, 60, 47, 0.8);
}

.l-header__inner {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  padding: 1.5vw 1.5vw 0;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 1.5rem 1.5rem 0;
  }
}

.p-logo__productcopy {
  font-size: 95%;
  line-height: var(--lh-middle);
}
@media screen and (max-width: 768px) {
  .p-logo__productcopy {
    font-size: 80%;
  }
}
.p-logo__corporate {
  display: block;
  width: 15%;
  max-width: 100px;
}

.l-footer {
  color: #fff;
  background-color: #444545;
  text-align: center;
  padding: 5em 4%;
}

.l-footer .p-social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2em;
}

.l-footer .p-social__item {
  padding: 0 1em;
}

.l-footer .p-social__item a {
  display: block;
  width: clamp(2.4rem, 2vw, 3.4rem);
  margin-left: auto;
  margin-right: auto;
}

.l-footer .p-social__item a img.icon--youtube {
  width: 125%;
}

.l-footer .c-copyright {
  padding-top: 2em;
  border-top: 1px solid #5d5f5f;
  font-size: 88%;
  letter-spacing: 0.05em;
}

/* .c-button*/
.p-section__shopInfo .c-button {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  width: 100%;
  height: 55px;
  line-height: 55px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 0;
  background-color: #fff;
  border: 1px solid #444545;
  margin: 0 auto;
}
.p-section__shopInfo .c-button > span {
  line-height: 1;
}
.p-section__shopInfo .c-button .c-font__small {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}
.p-section__shopInfo .c-button:hover {
  color: #000;
  border: 1px solid #444545;
}
.p-section__shopInfo .c-button:hover .c-icon path {
  transition: fill 0.3s;
  fill: #000;
}
.p-section__shopInfo .c-button:active,
.p-section__shopInfo .c-button:hover,
.p-section__shopInfo .c-button:visited {
  outline: 0;
}
.p-section__shopInfo .c-button:active::before,
.p-section__shopInfo .c-button:hover::before,
.p-section__shopInfo .c-button:visited::before {
  outline: 0;
}
.p-section__shopInfo .c-button::after,
.p-section__shopInfo .c-button::before {
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #444545;
}
.p-section__shopInfo .c-button::before {
  right: 0;
}
.p-section__shopInfo .c-button::after {
  left: 0;
}
.p-section__shopInfo .c-button:hover::after,
.p-section__shopInfo .c-button:hover::before {
  width: 0;
  color: #444545;
}
.p-section__shopInfo .c-button .c-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
  width: 4.5%;
}
.p-section__shopInfo .c-button .c-icon path {
  transition: fill 0.3s;
  fill: #fff;
}
.p-section__shopInfo .c-button::after,
.p-section__shopInfo .c-button::before {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}
.p-section__shopInfo .c-button,
.p-section__shopInfo .c-button i::before,
.p-section__shopInfo .c-button::after,
.p-section__shopInfo .c-button::before {
  box-sizing: border-box;
  transition: width 0.3s, color 0.3s;
  text-align: left;
  margin: 0 auto 0 0;
}

.l-main {
  color: var(--theme-secondary);
  background-color: var(--theme-primary);
}

.p-section__container {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: 1000px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-section__container {
    max-height: 740px;
  }
}
.p-section__bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-section__bg-layer {
    flex-direction: column;
  }
}
.p-section__bg-item {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-section__overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-primary-overlay);
  z-index: 2;
  pointer-events: none;
}

.p-section__intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.p-section__inner {
  width: 50%;
  padding: 2.5% 2.5% 10%;
}
@media screen and (max-width: 768px) {
  .p-section__inner {
    width: 100%;
    padding: 7.5%;
  }
}

.p-seanes__container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  padding: 12.5% 5%;
}
@media screen and (max-width: 768px) {
  .p-seanes__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-seanes__media {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: flex-end;
  gap: 5%;
  min-height: 0;
  margin-bottom: 10%;
  padding-right: 5%;
}
.p-seanes__img:nth-of-type(1) {
  margin-bottom: 15%;
}
.p-seanes__img:nth-of-type(2) {
  margin: 0;
}
.p-seanes__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-seanes__inner {
  min-height: 0;
  margin-top: auto;
  padding-left: 5%;
}

.color-bg01 {
  background-image: url("../img/bg_color01.jpg");
}

@media screen and (max-width: 768px) {
  .color-bg01 {
    background-position: bottom;
  }
}
.color-bg02 {
  background-image: url("../img/bg_color02.jpg");
}

.color-bg02 {
  background-position: right;
}

.product-bg01 {
  background-image: url("../img/bg_product01.jpg");
}

.product-bg02 {
  background-image: url("../img/bg_product02.jpg");
}

.product-bg03 {
  background-image: url("../img/bg_product03.jpg");
}

.product-bg04 {
  background-image: url("../img/bg_product04.jpg");
}

.c-headline {
  font-family: var(--font-en-title);
  font-size: clamp(7.2rem, 7vw, 10rem);
  font-weight: var(--fw-regular);
  margin-bottom: 6.5%;
}
@media screen and (max-width: 768px) {
  .c-headline {
    font-size: clamp(6.4rem, 6vw, 8rem);
  }
}

.c-editorial-text {
  font-family: var(--font-en-body);
  font-size: 65%;
  font-weight: var(--fw-light);
  line-height: var(--lh-middle);
  letter-spacing: var(--ls-middle);
  margin-top: 3.5%;
}
@media screen and (max-width: 768px) {
  .c-editorial-text {
    margin-top: 5%;
  }
}

.c-button {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 0;
  background-color: #fff;
  border: 1px solid #444545;
}
.c-button > span {
  line-height: 1;
}
.c-button:hover {
  color: #000;
  border: 1px solid #444545;
}
.c-button:hover .c-icon path {
  transition: fill 0.3s;
  fill: black;
}

.c-button:active, .c-button:hover, .c-button:visited {
  outline: 0;
}

.c-button:active::before, .c-button:hover::before, .c-button:visited::before {
  outline: 0;
}

.c-button::after, .c-button::before {
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #444545;
}

.c-button::before {
  right: 0;
}

.c-button::after {
  left: 0;
}

.c-button:hover::after, .c-button:hover::before {
  width: 0;
  color: #444545;
}

.c-button .c-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
  width: 4.5%;
}
.c-button .c-icon path {
  transition: fill 0.3s;
  fill: #fff;
}

.c-button::after, .c-button::before {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.c-button, .c-button i::before, .c-button::after, .c-button::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.3s, color 0.3s;
  transition: width 0.3s, color 0.3s;
}

.c-list {
  margin: var(--space-2) 0;
}
.c-list li {
  position: relative;
  padding-left: 1.25em;
}
.c-list li::before {
  content: "・";
  color: var(--theme-primary);
  position: absolute;
  left: 0;
}

.glowing-svg-bg {
  position: relative;
}

.glowing-svg-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 25vw;
  height: 25vw;
  opacity: 0.25;
  z-index: 1;
  /* 背景にグラデーションを指定 */
  background: linear-gradient(135deg, #ff7e5f, #feb47b, #00c6ff);
  /* SVGをマスクとして読み込む */
  mask-image: url("../img/leaf-vein.svg");
  -webkit-mask-image: url("../img/leaf-vein.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  /* グラデーションを光らせる（影やアニメーション） */
  filter: drop-shadow(0 0 15px rgba(255, 126, 95, 0.8));
  animation: pulse-glow 2s infinite alternate;
}

/* 光の強弱をアニメーションさせる場合 */
@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 126, 95, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(0, 198, 255, 0.9));
  }
}
.p-movie {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: #000;
  color: var(--theme-secondary-light);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.p-movie.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-movie__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-movie__skip {
  font-family: var(--font-en-title);
  line-height: var(--lh-tight);
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 1;
  transform: translateX(-50%);
  padding: 10px 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--theme-secondary);
  border: 1px solid var(--theme-secondary);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-movie__skip {
    padding: 6px 25px;
  }
}

.p-movie__corporate {
  position: absolute;
  top: 2.5%;
  right: 2.5%;
  display: block;
  width: 15%;
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .p-movie__corporate {
    max-width: 72px;
  }
}

.p-movie__title {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-en-title);
  font-weight: var(--fw-light);
  font-size: 6.4rem;
  text-align: center;
  line-height: var(--lh-tight);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .p-movie__title {
    top: 25px;
    font-size: 4.8rem;
  }
}
.p-movie__title span {
  display: block;
  font-size: 1.6rem;
  font-weight: var(--fw-regular);
}
@media screen and (max-width: 768px) {
  .p-movie__title span {
    font-size: 1.2rem;
  }
}

.p-movie__maincopy {
  position: absolute;
  left: 100px;
  bottom: 2.5%;
  font-family: var(--font-en-title);
  font-size: 3.2rem;
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wider);
  line-height: var(--lh-middle);
  writing-mode: vertical-rl;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
.p-movie__maincopy span:last-child {
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-movie__maincopy {
    left: 50px;
    font-size: 2.4rem;
  }
}

.p-movie__subcopy {
  position: absolute;
  right: 2.5%;
  bottom: 75px;
  font-family: var(--font-en-body);
  font-size: 65%;
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wider);
  line-height: var(--lh-middle);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .p-movie__subcopy {
    display: none;
  }
}

.p-movie__vertical-rl {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-family: var(--font-en-body);
  font-size: 75%;
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wider);
  writing-mode: vertical-rl;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .p-movie__vertical-rl {
    left: 10px;
  }
}

.p-hero {
  position: relative;
}
.p-hero__inner {
  position: relative;
  margin: auto;
  padding: 12.5% 0 2.5%;
}
@media screen and (max-width: 768px) {
  .p-hero__inner {
    padding-top: 35%;
  }
}
.p-hero__maincopy {
  position: absolute;
  top: 50%;
  left: 9.5vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-hero__maincopy {
    left: 7.5%;
  }
}
.p-hero__maincopy p {
  font-size: clamp(2rem, 2.25vw, 3.2rem);
  font-weight: var(--fw-light);
  line-height: 1;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-hero__maincopy p {
    font-size: 2rem;
  }
}
.p-hero__maincopy span {
  display: inline-block;
  margin: 0 1rem;
  background-color: var(--theme-primary);
}
@media screen and (max-width: 768px) {
  .p-hero__maincopy span {
    margin: 0 0.35rem;
  }
}
.p-hero__maincopy span:last-of-type {
  margin-top: 0.75em;
}
@media screen and (max-width: 768px) {
  .p-hero__maincopy span:last-of-type {
    margin-top: 1.75rem;
  }
}
.p-hero__subcopy {
  position: absolute;
  top: 40%;
  left: 1%;
}
@media screen and (max-width: 768px) {
  .p-hero__subcopy {
    left: 1.25%;
  }
}
.p-hero__subcopy span {
  font-family: var(--font-en-body);
  font-size: 65%;
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wider);
  line-height: var(--lh-tight);
  writing-mode: vertical-rl;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-hero__subcopy span {
    font-size: 50%;
  }
}
.p-hero__productname {
  font-family: var(--font-en-title);
  font-size: clamp(9.2rem, 11vw, 14rem);
  line-height: var(--lh-tight);
  margin-bottom: 8.5%;
  text-align: center;
  position: relative;
}
.p-hero__productname::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 25vw;
  height: 25vw;
  background: url("../img/leaf-vein--dark.svg") no-repeat center/contain;
  opacity: 0.35;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-hero__productname {
    font-size: clamp(5.4rem, 5vw, 6.4rem);
    margin-bottom: 20%;
  }
}
.p-hero__productname span {
  display: block;
  font-size: 2rem;
  font-weight: var(--fw-light);
}
@media screen and (max-width: 768px) {
  .p-hero__productname span {
    font-size: 1.5rem;
  }
}

.p-scrolldown {
  display: flex;
  justify-content: flex-end;
  padding: 0 5%;
}
.p-scrolldown__text {
  font-family: var(--font-en-title);
  font-size: 92%;
  line-height: var(--lh-none);
  letter-spacing: var(--ls-wide);
  display: block;
  overflow: hidden;
}
.p-scrolldown span {
  display: inline-block;
  opacity: 1;
}

.p-prologue {
  padding: 5%;
}
.p-prologue__title {
  font-family: var(--font-en-title);
  font-weight: var(--fw-regular);
  font-size: clamp(2.4rem, 2.35vw, 3.2rem);
  margin-bottom: 7.5%;
  text-align: center;
}
.p-prologue__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  position: relative;
  z-index: 5;
}
@media (max-width: 1080px) {
  .p-prologue__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.p-prologue__media {
  position: relative;
}
@media (max-width: 1080px) {
  .p-prologue__media {
    aspect-ratio: 16/9;
  }
}
.p-prologue__decotext {
  position: absolute;
  bottom: 2.25%;
  left: 2.25%;
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  line-height: var(--lh-middle);
  letter-spacing: var(--ls-wide);
  color: var(--base-white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .p-prologue__decotext {
    font-size: clamp(1.6rem, 1.7vw, 2rem);
  }
}
.p-prologue__decotext span {
  display: block;
  font-size: 35%;
  font-family: var(--font-en-body);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-base);
  margin-bottom: 2.5%;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .p-prologue__decotext span {
    font-size: 25%;
  }
}
.p-prologue__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  writing-mode: vertical-rl;
  padding-top: 5%;
}
@media screen and (max-width: 768px) {
  .p-prologue__inner {
    padding-top: 4rem;
  }
}
.p-prologue__inner p {
  font-size: 1.8rem;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wider);
  color: var(--theme-secondary-light);
  text-align: left;
  opacity: 0;
  filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .p-prologue__inner p {
    font-size: 1.5rem;
  }
}
.p-prologue__inner p:not(:first-child) {
  margin-right: 2.5em;
}
@media screen and (max-width: 768px) {
  .p-prologue__inner p:not(:first-child) {
    margin-right: 0.5em;
  }
}

.bg-pattern-shippo {
  position: relative;
  height: 100vh;
}
.bg-pattern-shippo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pattern_shippo.svg") center/cover no-repeat;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.p-gallery {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-gallery {
    flex-direction: column;
  }
}
.p-gallery__column {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-gallery__column {
    width: 100%;
  }
}
.p-gallery__item {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-gallery__item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-gallery__item img:not(:first-child) {
  clip-path: inset(100% 0 0 0);
}

.p-gallery__column--right .p-gallery__item img:not(:first-child) {
  clip-path: inset(0 0 100% 0);
}

.p-seane__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
}
@media screen and (max-width: 768px) {
  .p-seane__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-seane .p-grid__item {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-seane .p-grid__item:first-child {
  grid-column: 1/-1;
}
.p-seane .p-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-seane .p-grid__item img.seane-01 {
  aspect-ratio: 8/3;
}
@media screen and (max-width: 768px) {
  .p-seane .p-grid__item img.seane-01 {
    aspect-ratio: 4/3;
  }
}
.p-seane .p-grid__item img.seane-02, .p-seane .p-grid__item img.seane-03 {
  aspect-ratio: 4/3;
}
.p-seane .p-grid__body {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
}
@media screen and (max-width: 768px) {
  .p-seane .p-grid__body {
    bottom: 2rem;
    left: 2rem;
  }
}
.p-seane .p-grid__body--right {
  left: auto;
  right: 4rem;
}
@media screen and (max-width: 768px) {
  .p-seane .p-grid__body--right {
    left: 2rem;
    right: auto;
  }
}
.p-seane .p-grid__body p span {
  line-height: 1;
  background-color: var(--theme-primary);
  padding: 0 5px;
}

.p-room {
  width: 100%;
}
.p-room__main {
  width: 100%;
  height: 80vh;
  display: grid;
  grid-template-columns: 20% 80%;
}
@media screen and (max-width: 768px) {
  .p-room__main {
    grid-template-columns: 1fr;
    grid-template-rows: 20% 80%;
  }
}
.p-room__title {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-room__title {
    height: auto;
    justify-content: center;
    padding: 5% 5% 2.5% 0;
  }
}
.p-room__title h2 {
  font-family: var(--font-en-title);
  font-size: clamp(2.4rem, 2.35vw, 3.2rem);
  font-weight: var(--fw-light);
  text-align: center;
  margin-top: 35%;
}
@media screen and (max-width: 768px) {
  .p-room__title h2 {
    margin-top: 0;
  }
}
.p-room__title p {
  font-family: var(--font-en-body);
  font-size: 65%;
  font-weight: var(--fw-extralight);
  line-height: var(--lh-middle);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 17.5%;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .p-room__title p {
    width: 92%;
    writing-mode: horizontal-tb;
    margin: 2rem 0 0 auto;
  }
}
.p-room__visual {
  height: 80vh;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-room__visual {
    width: 92%;
    height: 50vh;
    margin: auto 0 auto auto;
  }
}
.p-room__description {
  width: 100%;
  height: 20vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5% 2.5%;
}
@media screen and (max-width: 768px) {
  .p-room__description {
    width: 92%;
    margin-left: auto;
    padding: 0 5% 0 0;
    align-items: flex-start;
  }
}

.p-stack {
  position: relative;
  height: 200vh;
}
.p-stack__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-stack__images {
    height: 50vh;
  }
}
.p-stack__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-stack__item:nth-child(1) {
  z-index: 1;
}
.p-stack__item:nth-child(2) {
  z-index: 2;
}
.p-stack__item:nth-child(3) {
  z-index: 3;
}
.p-stack__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-features {
  background-color: var(--theme-secondary-light);
  padding: 7.5% 5% 9%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-features {
    padding: 10%;
  }
}
.p-features--livingroom {
  padding: 5% 5% 9%;
}
.p-features::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: 0;
  background-image: url("../img/bg_scene.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.25;
  pointer-events: none;
}
.p-features__grid {
  display: grid;
  align-items: start;
}
.p-features__item {
  width: 100%;
  color: var(--theme-primary);
  position: relative;
}
.p-features .seane--livingroom {
  grid-template-columns: repeat(3, 1fr);
  gap: max(6rem, 5%);
}
@media (max-width: 1080px) {
  .p-features .seane--livingroom {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 max(6rem, 5%);
  }
}
@media screen and (max-width: 768px) {
  .p-features .seane--livingroom {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.p-features .seane--livingroom .p-features__item:nth-child(1) {
  margin-top: 25%;
}
@media screen and (max-width: 768px) {
  .p-features .seane--livingroom .p-features__item:nth-child(1) {
    margin-top: 0;
  }
}
.p-features .seane--livingroom .p-features__item:nth-child(2) {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-features .seane--livingroom .p-features__item:nth-child(2) {
    margin-top: 10%;
  }
}
.p-features .seane--livingroom .p-features__item:nth-child(3) {
  margin-top: 40%;
}
@media (max-width: 1080px) {
  .p-features .seane--livingroom .p-features__item:nth-child(3) {
    grid-column: 1/-1;
    width: 50%;
    justify-self: center;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-features .seane--livingroom .p-features__item:nth-child(3) {
    width: 100%;
    margin-top: 10%;
  }
}
.p-features .seane--bedroom {
  grid-template-columns: 2fr 3fr;
  gap: 7.5%;
}
@media screen and (max-width: 768px) {
  .p-features .seane--bedroom {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-features .seane--bedroom .p-features__item:nth-child(2) {
    margin-top: 7.5%;
  }
}
.p-features .seane--kitchen {
  grid-template-columns: repeat(2, 1fr);
  gap: 5.5%;
}
@media screen and (max-width: 768px) {
  .p-features .seane--kitchen {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.p-features .seane--kitchen .p-features__item:nth-child(2) {
  margin-top: 17.5%;
}
@media screen and (max-width: 768px) {
  .p-features .seane--kitchen .p-features__item:nth-child(2) {
    margin-top: 10%;
  }
}
.p-features__layerd {
  position: relative;
  margin-top: 15%;
}
.p-features__layerd.seane--livingroom05 {
  margin-top: 30%;
}
@media screen and (max-width: 768px) {
  .p-features__layerd.seane--livingroom05 {
    margin-top: 15%;
  }
}
.p-features__layerd p {
  position: absolute;
  top: -20%;
  right: 2.5%;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--base-black);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .p-features__layerd p {
    top: -15%;
  }
}
.p-features__layerd p.ts-strong {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4), 0 2px 6px rgba(255, 255, 255, 0.4);
}
.p-features__layerd p.seane--livingroom05 {
  top: -35%;
  text-shadow: 0 0 3px rgb(255, 255, 255), 0 0 5px rgba(255, 255, 255, 0.8), 0 1px 76px rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .p-features__layerd p.seane--livingroom05 {
    top: -20%;
    left: 2.5%;
    right: auto;
  }
}
.p-features__layerd span:last-child {
  padding-top: 2rem;
}
.p-features__img-sub {
  width: 22.5%;
  min-width: 130px;
  position: absolute;
  bottom: -7.5%;
  left: -7.5%;
}
@media screen and (max-width: 768px) {
  .p-features__img-sub {
    width: 33%;
    min-width: auto;
  }
}
.p-features__img-sub2 {
  width: 17.5%;
  min-width: 60px;
  position: absolute;
  bottom: -32.5%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  .p-features__img-sub2 {
    width: 20%;
    min-width: auto;
    left: 4%;
    bottom: -25%;
  }
}
.p-features__img-sub.seane--livingroom04-02 {
  width: 17.5%;
  min-width: 80px;
  bottom: -15%;
}
.p-features__img-sub.seane--livingroom05-02 {
  width: 25%;
  min-width: 100px;
  bottom: -15%;
}
.p-features__text {
  font-weight: var(--fw-medium);
  width: fit-content;
  margin: 2rem 0 0 auto;
  padding-left: 11.5rem;
  color: var(--base-black);
}
@media screen and (max-width: 768px) {
  .p-features__text {
    padding-left: 20%;
  }
}
.p-features__text.seane--livingroom04, .p-features__text.seane--livingroom05 {
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .p-features__text.seane--kitchen04 {
    padding-left: 30%;
  }
}
.p-features__box {
  display: flex;
  gap: 2rem;
  margin: 2.4rem 0 0 auto;
}
.p-features__box .p-features__text {
  margin: 0;
  padding: 0;
}
.p-features .img_bouen {
  width: 25%;
  max-width: 120px;
  height: 100%;
  border: solid 1px var(--base-black);
}
@media screen and (max-width: 768px) {
  .p-features .img_bouen {
    width: 100px;
  }
}

.p-features__kids-design {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.p-features__kids-design img {
  width: 80px;
  height: auto;
}

.p-color__intro {
  height: 100vh;
  color: var(--theme-secondary);
  background-color: var(--theme-primary-light);
  padding: 15% 5%;
}

.p-color__collection .p-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  perspective: 1200px;
}
@media screen and (max-width: 768px) {
  .p-color__collection .p-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-color__collection .p-grid__item {
  position: relative;
  transform-origin: center center;
  backface-visibility: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  overflow: hidden;
}
.p-color__collection .p-grid__item--summary {
  grid-column: 1/-1;
  aspect-ratio: 64/9;
  font-family: var(--font-en-title);
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  line-height: var(--lh-tight);
  color: var(--theme-primary);
  background-color: var(--theme-secondary);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-color__collection .p-grid__item--summary {
    aspect-ratio: auto;
    padding: 5%;
  }
}
.p-color__collection .p-grid__item--summary span {
  font-size: clamp(4rem, 5vw, 7.2rem);
}
@media screen and (max-width: 768px) {
  .p-color__collection .p-grid__item--summary span {
    font-size: clamp(3.2rem, 5vw, 5.4rem);
  }
}

.p-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  transition: transform 0.3s ease;
}
.p-triangle__bottom-left, .p-triangle__top-right, .p-triangle__full {
  padding: clamp(8px, 1vw, 16px);
}
@media screen and (max-width: 768px) {
  .p-triangle__bottom-left, .p-triangle__top-right, .p-triangle__full {
    padding: 5px;
  }
}
.p-triangle__bottom-left {
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  justify-content: flex-start;
  align-items: flex-end;
}
.p-triangle__top-right {
  clip-path: polygon(100% 100%, 100% 0, 0 0);
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
}
.p-triangle__full {
  justify-content: flex-start;
  align-items: flex-end;
}
.p-triangle__content {
  font-size: clamp(10px, 1vw, 15px);
  color: #333;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.7);
  line-height: var(--lh-middle);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-triangle__content {
    font-size: 60%;
  }
}
.p-triangle .u-color-white {
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
}
.p-triangle.basic--nk901 {
  background-image: url("../img/img_slat--nk901.jpg");
}
.p-triangle.basic--nk902 {
  background-image: url("../img/img_slat--nk902.jpg");
}
.p-triangle.basic--nk903 {
  background-image: url("../img/img_slat--nk903.jpg");
}
.p-triangle.basic--nk904 {
  background-image: url("../img/img_slat--nk904.jpg");
}
.p-triangle.basic--nk905 {
  background-image: url("../img/img_slat--nk905.jpg");
}
.p-triangle.basic--nk906 {
  background-image: url("../img/img_slat--nk906.jpg");
}
.p-triangle.basic--nk907 {
  background-image: url("../img/img_slat--nk907.jpg");
}
.p-triangle.basic--nk908 {
  background-image: url("../img/img_slat--nk908.jpg");
}
.p-triangle.basic--nk909 {
  background-image: url("../img/img_slat--nk909.jpg");
}
.p-triangle.basic--nk910 {
  background-image: url("../img/img_slat--nk910.jpg");
}
.p-triangle.basic--nk911 {
  background-image: url("../img/img_slat--nk911.jpg");
}
.p-triangle.basic--nk912 {
  background-image: url("../img/img_slat--nk912.jpg");
}
.p-triangle.basic--nk913 {
  background-image: url("../img/img_slat--nk913.jpg");
}
.p-triangle.basic--nk914 {
  background-image: url("../img/img_slat--nk914.jpg");
}
.p-triangle.basic--nk915 {
  background-image: url("../img/img_slat--nk915.jpg");
}
.p-triangle.basic--nk916 {
  background-image: url("../img/img_slat--nk916.jpg");
}
.p-triangle.basic--nk917 {
  background-image: url("../img/img_slat--nk917.jpg");
}
.p-triangle.forest--nk918 {
  background-image: url("../img/img_slat--nk918.jpg");
}
.p-triangle.forest--nk919 {
  background-image: url("../img/img_slat--nk919.jpg");
}
.p-triangle.forest--nk920 {
  background-image: url("../img/img_slat--nk920.jpg");
}
.p-triangle.lightly--nk921 {
  background-image: url("../img/img_slat--nk921.jpg");
}
.p-triangle.lightly--nk922 {
  background-image: url("../img/img_slat--nk922.jpg");
}
.p-triangle.lightly--nk923 {
  background-image: url("../img/img_slat--nk923.jpg");
}
.p-triangle.lightly--nk924 {
  background-image: url("../img/img_slat--nk924.jpg");
}
.p-triangle.lightly--nk925 {
  background-image: url("../img/img_slat--nk925.jpg");
}
.p-triangle.lightly--nk926 {
  background-image: url("../img/img_slat--nk926.jpg");
}
.p-triangle.lightly--nk927 {
  background-image: url("../img/img_slat--nk927.jpg");
}
.p-triangle.lightly--nk928 {
  background-image: url("../img/img_slat--nk928.jpg");
}
.p-triangle.rustic--nk929 {
  background-image: url("../img/img_slat--nk929.jpg");
}
.p-triangle.fade--nk930 {
  background-image: url("../img/img_slat--nk930.jpg");
}
.p-triangle.aging--nk931 {
  background-image: url("../img/img_slat--nk931.jpg");
}
.p-triangle.grain--nk932 {
  background-image: url("../img/img_slat--nk932.jpg");
}
.p-triangle.antique--nk933 {
  background-image: url("../img/img_slat--nk933.jpg");
}
.p-triangle.craft--nk934 {
  background-image: url("../img/img_slat--nk934.jpg");
}
.p-triangle.craft--nk935 {
  background-image: url("../img/img_slat--nk935.jpg");
}
.p-triangle.cedar--nk936 {
  background-image: url("../img/img_slat--nk936.jpg");
}
.p-triangle.bamboo--nk937 {
  background-image: url("../img/img_slat--nk937.jpg");
}
.p-triangle.bamboo--nk938 {
  background-image: url("../img/img_slat--nk938.jpg");
}
.p-triangle.bamboo--nk939 {
  background-image: url("../img/img_slat--nk939.jpg");
}
.p-triangle.bamboo--nk940 {
  background-image: url("../img/img_slat--nk940.jpg");
}
.p-triangle.bamboo--nk941 {
  background-image: url("../img/img_slat--nk941.jpg");
}
.p-triangle.bamboo--nk942 {
  background-image: url("../img/img_slat--nk942.jpg");
}
.p-triangle.bamboo--nk943 {
  background-image: url("../img/img_slat--nk943.jpg");
}
.p-triangle.paulownia--nk944 {
  background-image: url("../img/img_slat--nk944.jpg");
}
.p-triangle.paulownia--nk945 {
  background-image: url("../img/img_slat--nk945.jpg");
}
.p-triangle.water-resistant--nk946 {
  background-image: url("../img/img_slat--nk946.jpg");
}
.p-triangle.water-resistant--nk947 {
  background-image: url("../img/img_slat--nk947.jpg");
}

.p-product__content .p-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1080px) {
  .p-product__content .p-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-product__content .p-grid__item {
  display: grid;
  grid-template-areas: "overlay";
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-product__content .p-grid__item {
    grid-template-areas: none;
    aspect-ratio: auto;
  }
}
.p-product__content .p-grid__media, .p-product__content .p-grid__body {
  grid-area: overlay;
}
@media screen and (max-width: 768px) {
  .p-product__content .p-grid__media, .p-product__content .p-grid__body {
    grid-area: auto;
  }
}
.p-product__content .p-grid__media {
  margin: 0;
  width: 100%;
  height: 100%;
}
.p-product__content .p-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-product__content .p-grid__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 2.5%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-product__content .p-grid__body {
    margin: 0;
  }
}
.p-product__content .p-grid__box {
  width: 30%;
  min-width: 280px;
  background-color: var(--theme-primary);
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-product__content .p-grid__box {
    width: 100%;
    padding-bottom: clamp(6rem, 8vw, 8rem);
  }
}
.p-product__content .p-grid__label {
  font-family: var(--font-en-title);
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1;
  margin-bottom: 2.6rem;
}
.p-product__content .p-grid__title {
  font-weight: var(--fw-regular);
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.p-product__content .p-grid__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--theme-secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-break--01 {
  color: var(--theme-primary);
  background-color: var(--theme-secondary);
  padding: 12.5% 5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-break--01 {
    padding: 20% 5% 15%;
  }
}
.p-break--01::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background-image: url("../img/bg_pattern-noise.jpg");
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}
.p-break--01 .p-break__heading {
  font-family: var(--font-en-title);
  font-weight: var(--fw-light);
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.p-break--01 .p-break__heading span {
  display: block;
  font-size: 1.8rem;
  font-weight: var(--fw-regular);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-break--01 .p-break__heading span {
    font-size: 1.5rem;
  }
}
.p-break--01 .p-break__heading::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 25vw;
  height: 25vw;
  background: url("../img/leaf-vein.svg") no-repeat center/contain;
  opacity: 0.9;
  z-index: -1;
}

.p-break--02 {
  color: var(--theme-secondary);
  background-color: var(--theme-primary);
  background: linear-gradient(135deg, #344F43, var(--theme-primary)) fixed;
  background-size: 800% 800%;
  animation: GradietionAnimation 6s ease infinite;
  padding: 12.5% 5% 7.5%;
}
@media screen and (max-width: 768px) {
  .p-break--02 {
    padding: 15% 5%;
  }
}
.p-break__inner {
  position: relative;
  margin: auto;
  z-index: 1;
}
.p-break__heading {
  font-family: var(--font-en-title);
  font-size: clamp(5.6rem, 6.75vw, 8rem);
  line-height: 1;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-break__heading {
    font-size: 5.6rem;
  }
}
.p-break__heading::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 25vw;
  height: 25vw;
  background: url("../img/leaf-vein--dark.svg") no-repeat center/contain;
  opacity: 0.35;
  z-index: -1;
}
.p-break__heading span {
  display: block;
  font-size: 2rem;
  font-weight: var(--fw-light);
  margin-bottom: 2rem;
}
.p-break__message {
  margin-top: 2.5%;
}
@media screen and (max-width: 768px) {
  .p-break__message {
    margin-top: 12.5%;
  }
}
.p-break__messageEn {
  font-family: var(--font-en-body);
  font-size: 90%;
  font-weight: var(--fw-light);
}
.p-break__messageJp {
  font-size: 250%;
  line-height: 1.4;
  margin-top: 1.5%;
}
@media screen and (max-width: 768px) {
  .p-break__messageJp {
    font-size: 150%;
  }
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bg-pattern {
  position: relative;
}
.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pattern_shippo.svg") center/contain repeat;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.p-qa {
  background-color: var(--theme-secondary);
  padding: clamp(12rem, 15vw, 18rem) 5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-qa {
    padding: 20% 5%;
  }
}
.p-qa::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background-image: url("../img/bg_pattern-noise.jpg");
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}
.p-qa__inner {
  width: min(var(--container-md), 100% - var(--space-6) * 2);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.p-qa__title {
  font-family: var(--font-en-title);
  font-size: clamp(4rem, 6vw, 8rem);
  font-weight: var(--fw-light);
  line-height: 1;
  color: var(--base-black);
  text-align: center;
  margin-bottom: max(4rem, 5.75%);
}
@media screen and (max-width: 768px) {
  .p-qa__title {
    font-size: 3.2rem;
  }
}
.p-qa__item {
  margin-bottom: 10px;
}
.p-qa__question-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2%;
  color: var(--base-white);
  background-color: #595A5E;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-qa__question-inner {
    padding: 15px;
  }
}
.p-qa__question-body, .p-qa__answer-body {
  flex: 1;
  display: flex;
  gap: 2%;
}
.p-qa {
  /*&__question-label,
  &__answer-label {
  }*/
}
.p-qa__answer-label {
  color: #D81765;
}
.p-qa__icon {
  display: block;
  position: relative;
  width: 12px;
  margin-left: 1.5%;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
.p-qa__icon::before, .p-qa__icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 1px;
  background-color: var(--base-white);
}
.p-qa__icon::before {
  left: 0;
  transform: rotate(45deg);
}
.p-qa__icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.p-qa__answer {
  overflow: hidden;
  background-color: var(--base-white);
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}
.p-qa__answer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 2%;
  color: var(--base-black);
}
@media screen and (max-width: 768px) {
  .p-qa__answer-inner {
    padding: 15px;
  }
}

details.is-opened .p-qa__icon {
  transform: rotate(180deg);
}

.p-productInfo {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  background-image: url("../img/bg_productInfo--small.jpg");
  background-position: left center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #fff;
  padding: 28.5714% 5%;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .p-productInfo {
    padding: 18.1818% 5%;
    background-position: center;
    background-attachment: fixed;
    background-image: url("../img/bg_productInfo--large.jpg");
  }
}
.p-productInfo::after {
  mix-blend-mode: multiply;
  background: rgba(67, 68, 69, 0.44);
}
.p-productInfo__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.p-productInfo .p-blandTitle {
  font-family: var(--font-en-title);
  font-weight: var(--fw-regular);
}
.p-productInfo .p-blandTitle__blind {
  font-size: clamp(16px, 1.25vw, 20px);
}
.p-productInfo .p-blandTitle__productName {
  font-size: clamp(5.4rem, 5.5vw, 8.8rem);
  line-height: 1;
  display: block;
  margin-top: 0.15em;
}
.p-productInfo .c-button {
  line-height: 1.4;
  width: 100%;
}
.p-productInfo .p-navigation {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 769px) {
  .p-productInfo .p-navigation {
    flex-direction: column;
  }
  .p-productInfo .p-navigation .c-button {
    margin-left: auto;
    margin-right: auto;
  }
  .p-productInfo .p-navigation .c-button:not(:first-child) {
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-productInfo .p-navigation .c-button {
  max-width: 100%;
  width: 100%;
}

.l-columns {
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .l-columns {
    gap: 20px;
  }
}

.l-column {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .l-column {
    width: 100%;
  }
}

.p-section__shopInfo {
  background-color: #fff;
  color: #333333;
}

.p-section__shopInfo .p-section__inner {
  width: 100%;
  padding: 8% 4%;
}

@media screen and (min-width: 769px) {
  .p-section__shopInfo .p-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 4%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-section__shopInfo .c-shopImage {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .p-section__shopInfo .c-shopImage {
    width: 50%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-section__shopInfo .p-block {
    padding-top: 5%;
  }
}
@media screen and (min-width: 769px) {
  .p-section__shopInfo .p-block {
    width: 50%;
    padding-left: 5%;
    padding: 5% 0 5% 5%;
  }
}
.p-section__shopInfo .p-logo__company {
  display: inline-block;
  margin-bottom: 1em;
}

.p-section__shopInfo .p-logo__company span {
  font-size: max(0.902vw, 12px);
  margin-bottom: 10px;
  display: block;
}

.p-section__shopInfo .p-logo__company img {
  width: 100%;
  max-width: 200px;
}

.p-section__shopInfo .p-shopInfo__title {
  font-weight: bold;
  margin-bottom: 10px;
}

.p-section__shopInfo .c-button {
  width: 100%;
  max-width: 460px;
}

.p-section__shopInfo .c-button:not(:first-of-type) {
  margin-top: 1.5em;
}

.u-color-primary {
  color: var(--theme-primary);
}

.u-color-secondary {
  color: var(--theme-secondary);
}

.u-color-muted {
  color: var(--base-gray);
}

.u-color-white {
  color: var(--base-white);
}

.u-color-red {
  color: var(--theme-error);
}

.u-bgcolor-surface-subtle {
  background-color: var(--surface-subtle);
}

.u-bgcolor-surface-primary {
  background-color: var(--surface-primary);
}

.u-font-jp {
  font-family: var(--font-jp);
}

.u-font-en {
  font-family: var(--font-en-body);
}

.u-font-mixed {
  font-family: var(--font-mixed);
}

.u-font-en-title {
  font-family: var(--font-en-title);
}

.u-fw-3 {
  font-weight: 300;
}
.u-fw-4 {
  font-weight: 400;
}
.u-fw-5 {
  font-weight: 500;
}
.u-fw-6 {
  font-weight: 600;
}
.u-fw-7 {
  font-weight: 700;
}

.u-ti-1 {
  padding-left: 1em;
  text-indent: -1em;
}

.u-ti-2 {
  padding-left: 2em;
  text-indent: -2em;
}

.u-ti-3 {
  padding-left: 3em;
  text-indent: -3em;
}

.u-ti-4 {
  padding-left: 4em;
  text-indent: -4em;
}

.u-fs-large {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .u-fs-large {
    font-size: 1.8rem;
  }
}

.u-note {
  display: inline-block;
  font-size: 88%;
  line-height: 1.5;
}
.u-note--error {
  color: var(--theme-error);
  font-size: var(--fs-small);
}
@media screen and (max-width: 768px) {
  .u-note--error {
    font-size: var(--fs-small-sp);
    line-height: 1.6;
  }
}

.u-ta-l {
  text-align: left;
}
.u-ta-c {
  text-align: center;
}
.u-ta-r {
  text-align: right;
}
.u-ta-j {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .u-ta-l-sp {
    text-align: left;
  }
  .u-ta-c-sp {
    text-align: center;
  }
  .u-ta-r-sp {
    text-align: right;
  }
  .u-ta-j-sp {
    text-align: justify;
  }
}
.u-radius-sm {
  border-radius: var(--radius-sm);
}

.u-radius-md {
  border-radius: var(--radius-md);
}

.u-radius-lg {
  border-radius: var(--radius-lg);
}

.u-radius-fl {
  border-radius: var(--radius-fl);
}

.u-d-n {
  display: none;
}

.u-d-b {
  display: block;
}

.u-d-i {
  display: inline;
}

.u-d-ib {
  display: inline-block;
}

.u-d-f {
  display: flex;
}

.u-d-if {
  display: inline-flex;
}

.u-d-g {
  display: grid;
}

@media screen and (min-width: 769px) {
  .u-d-pc-n {
    display: none;
  }
  .u-d-pc-b {
    display: block;
  }
  .u-d-pc-i {
    display: inline;
  }
  .u-d-pc-ib {
    display: inline-block;
  }
  .u-d-pc-f {
    display: flex;
  }
  .u-d-pc-if {
    display: inline-flex;
  }
  .u-d-pc-g {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  .u-d-sp-n {
    display: none;
  }
  .u-d-sp-b {
    display: block;
  }
  .u-d-sp-i {
    display: inline;
  }
  .u-d-sp-ib {
    display: inline-block;
  }
  .u-d-sp-f {
    display: flex;
  }
  .u-d-sp-if {
    display: inline-flex;
  }
  .u-d-sp-g {
    display: grid;
  }
}
.u-img-masking {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}
.u-img-masking img {
  width: 100%;
  height: auto;
  transition: all, 0.5s;
}
.u-img-masking:hover img {
  transform: scale(1.15);
  opacity: 0.7;
}

.u-op--left {
  object-position: left center;
}

.u-op--right {
  object-position: right center;
}

.u-op--top {
  object-position: center top;
}

.u-op--bottom {
  object-position: center bottom;
}

.u-op--left-top {
  object-position: left top;
}

.u-op--right-bottom {
  object-position: right bottom;
}

.u-mt-0 {
  margin-top: 0rem;
}
@media screen and (max-width: 768px) {
  .u-mt-0 {
    margin-top: 0rem;
  }
}
.u-mt-1 {
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .u-mt-1 {
    margin-top: 0.3rem;
  }
}
.u-mt-2 {
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .u-mt-2 {
    margin-top: 0.6rem;
  }
}
.u-mt-3 {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .u-mt-3 {
    margin-top: 0.9rem;
  }
}
.u-mt-4 {
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .u-mt-4 {
    margin-top: 1.2rem;
  }
}
.u-mt-5 {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .u-mt-5 {
    margin-top: 1.5rem;
  }
}
.u-mt-6 {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .u-mt-6 {
    margin-top: 1.8rem;
  }
}
.u-mt-8 {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .u-mt-8 {
    margin-top: 2.4rem;
  }
}
.u-mt-10 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mt-10 {
    margin-top: 3rem;
  }
}
.u-mt-12 {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .u-mt-12 {
    margin-top: 3.6rem;
  }
}
.u-mt-14 {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .u-mt-14 {
    margin-top: 4.2rem;
  }
}
.u-mt-16 {
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .u-mt-16 {
    margin-top: 4.8rem;
  }
}
.u-mt-18 {
  margin-top: 7.2rem;
}
@media screen and (max-width: 768px) {
  .u-mt-18 {
    margin-top: 5.4rem;
  }
}
.u-mt-20 {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .u-mt-20 {
    margin-top: 6rem;
  }
}
.u-mb-0 {
  margin-bottom: 0rem;
}
@media screen and (max-width: 768px) {
  .u-mb-0 {
    margin-bottom: 0rem;
  }
}
.u-mb-1 {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 768px) {
  .u-mb-1 {
    margin-bottom: 0.3rem;
  }
}
.u-mb-2 {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .u-mb-2 {
    margin-bottom: 0.6rem;
  }
}
.u-mb-3 {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .u-mb-3 {
    margin-bottom: 0.9rem;
  }
}
.u-mb-4 {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .u-mb-4 {
    margin-bottom: 1.2rem;
  }
}
.u-mb-5 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .u-mb-5 {
    margin-bottom: 1.5rem;
  }
}
.u-mb-6 {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .u-mb-6 {
    margin-bottom: 1.8rem;
  }
}
.u-mb-8 {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .u-mb-8 {
    margin-bottom: 2.4rem;
  }
}
.u-mb-10 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mb-10 {
    margin-bottom: 3rem;
  }
}
.u-mb-12 {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .u-mb-12 {
    margin-bottom: 3.6rem;
  }
}
.u-mb-14 {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 768px) {
  .u-mb-14 {
    margin-bottom: 4.2rem;
  }
}
.u-mb-16 {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .u-mb-16 {
    margin-bottom: 4.8rem;
  }
}
.u-mb-18 {
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 768px) {
  .u-mb-18 {
    margin-bottom: 5.4rem;
  }
}
.u-mb-20 {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .u-mb-20 {
    margin-bottom: 6rem;
  }
}
.u-ml-0 {
  margin-left: 0rem;
}
@media screen and (max-width: 768px) {
  .u-ml-0 {
    margin-left: 0rem;
  }
}
.u-ml-1 {
  margin-left: 0.4rem;
}
@media screen and (max-width: 768px) {
  .u-ml-1 {
    margin-left: 0.3rem;
  }
}
.u-ml-2 {
  margin-left: 0.8rem;
}
@media screen and (max-width: 768px) {
  .u-ml-2 {
    margin-left: 0.6rem;
  }
}
.u-ml-3 {
  margin-left: 1.2rem;
}
@media screen and (max-width: 768px) {
  .u-ml-3 {
    margin-left: 0.9rem;
  }
}
.u-ml-4 {
  margin-left: 1.6rem;
}
@media screen and (max-width: 768px) {
  .u-ml-4 {
    margin-left: 1.2rem;
  }
}
.u-ml-5 {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .u-ml-5 {
    margin-left: 1.5rem;
  }
}
.u-ml-6 {
  margin-left: 2.4rem;
}
@media screen and (max-width: 768px) {
  .u-ml-6 {
    margin-left: 1.8rem;
  }
}
.u-ml-8 {
  margin-left: 3.2rem;
}
@media screen and (max-width: 768px) {
  .u-ml-8 {
    margin-left: 2.4rem;
  }
}
.u-ml-10 {
  margin-left: 4rem;
}
@media screen and (max-width: 768px) {
  .u-ml-10 {
    margin-left: 3rem;
  }
}
.u-ml-12 {
  margin-left: 4.8rem;
}
@media screen and (max-width: 768px) {
  .u-ml-12 {
    margin-left: 3.6rem;
  }
}
.u-ml-14 {
  margin-left: 5.6rem;
}
@media screen and (max-width: 768px) {
  .u-ml-14 {
    margin-left: 4.2rem;
  }
}
.u-ml-16 {
  margin-left: 6.4rem;
}
@media screen and (max-width: 768px) {
  .u-ml-16 {
    margin-left: 4.8rem;
  }
}
.u-ml-18 {
  margin-left: 7.2rem;
}
@media screen and (max-width: 768px) {
  .u-ml-18 {
    margin-left: 5.4rem;
  }
}
.u-ml-20 {
  margin-left: 8rem;
}
@media screen and (max-width: 768px) {
  .u-ml-20 {
    margin-left: 6rem;
  }
}
.u-mr-0 {
  margin-right: 0rem;
}
@media screen and (max-width: 768px) {
  .u-mr-0 {
    margin-right: 0rem;
  }
}
.u-mr-1 {
  margin-right: 0.4rem;
}
@media screen and (max-width: 768px) {
  .u-mr-1 {
    margin-right: 0.3rem;
  }
}
.u-mr-2 {
  margin-right: 0.8rem;
}
@media screen and (max-width: 768px) {
  .u-mr-2 {
    margin-right: 0.6rem;
  }
}
.u-mr-3 {
  margin-right: 1.2rem;
}
@media screen and (max-width: 768px) {
  .u-mr-3 {
    margin-right: 0.9rem;
  }
}
.u-mr-4 {
  margin-right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .u-mr-4 {
    margin-right: 1.2rem;
  }
}
.u-mr-5 {
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .u-mr-5 {
    margin-right: 1.5rem;
  }
}
.u-mr-6 {
  margin-right: 2.4rem;
}
@media screen and (max-width: 768px) {
  .u-mr-6 {
    margin-right: 1.8rem;
  }
}
.u-mr-8 {
  margin-right: 3.2rem;
}
@media screen and (max-width: 768px) {
  .u-mr-8 {
    margin-right: 2.4rem;
  }
}
.u-mr-10 {
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mr-10 {
    margin-right: 3rem;
  }
}
.u-mr-12 {
  margin-right: 4.8rem;
}
@media screen and (max-width: 768px) {
  .u-mr-12 {
    margin-right: 3.6rem;
  }
}
.u-mr-14 {
  margin-right: 5.6rem;
}
@media screen and (max-width: 768px) {
  .u-mr-14 {
    margin-right: 4.2rem;
  }
}
.u-mr-16 {
  margin-right: 6.4rem;
}
@media screen and (max-width: 768px) {
  .u-mr-16 {
    margin-right: 4.8rem;
  }
}
.u-mr-18 {
  margin-right: 7.2rem;
}
@media screen and (max-width: 768px) {
  .u-mr-18 {
    margin-right: 5.4rem;
  }
}
.u-mr-20 {
  margin-right: 8rem;
}
@media screen and (max-width: 768px) {
  .u-mr-20 {
    margin-right: 6rem;
  }
}

.u-m-0 {
  margin: 0 !important;
}

.u-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-m-auto {
  margin: auto !important;
}

.u-mt-auto {
  margin-top: auto !important;
}

.u-mb-auto {
  margin-bottom: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.u-pt-0 {
  padding-top: 0rem;
}
@media screen and (max-width: 768px) {
  .u-pt-0 {
    padding-top: 0rem;
  }
}
.u-pt-1 {
  padding-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .u-pt-1 {
    padding-top: 0.1875rem;
  }
}
.u-pt-2 {
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .u-pt-2 {
    padding-top: 0.375rem;
  }
}
.u-pt-3 {
  padding-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .u-pt-3 {
    padding-top: 0.5625rem;
  }
}
.u-pt-4 {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .u-pt-4 {
    padding-top: 0.75rem;
  }
}
.u-pt-5 {
  padding-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .u-pt-5 {
    padding-top: 0.9375rem;
  }
}
.u-pt-6 {
  padding-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .u-pt-6 {
    padding-top: 1.125rem;
  }
}
.u-pt-8 {
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .u-pt-8 {
    padding-top: 1.5rem;
  }
}
.u-pt-10 {
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .u-pt-10 {
    padding-top: 1.875rem;
  }
}
.u-pt-12 {
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .u-pt-12 {
    padding-top: 2.25rem;
  }
}
.u-pt-14 {
  padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .u-pt-14 {
    padding-top: 2.625rem;
  }
}
.u-pt-16 {
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .u-pt-16 {
    padding-top: 3rem;
  }
}
.u-pt-18 {
  padding-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .u-pt-18 {
    padding-top: 3.375rem;
  }
}
.u-pt-20 {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .u-pt-20 {
    padding-top: 3.75rem;
  }
}
.u-pb-0 {
  padding-bottom: 0rem;
}
@media screen and (max-width: 768px) {
  .u-pb-0 {
    padding-bottom: 0rem;
  }
}
.u-pb-1 {
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .u-pb-1 {
    padding-bottom: 0.1875rem;
  }
}
.u-pb-2 {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .u-pb-2 {
    padding-bottom: 0.375rem;
  }
}
.u-pb-3 {
  padding-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  .u-pb-3 {
    padding-bottom: 0.5625rem;
  }
}
.u-pb-4 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .u-pb-4 {
    padding-bottom: 0.75rem;
  }
}
.u-pb-5 {
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .u-pb-5 {
    padding-bottom: 0.9375rem;
  }
}
.u-pb-6 {
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .u-pb-6 {
    padding-bottom: 1.125rem;
  }
}
.u-pb-8 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .u-pb-8 {
    padding-bottom: 1.5rem;
  }
}
.u-pb-10 {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .u-pb-10 {
    padding-bottom: 1.875rem;
  }
}
.u-pb-12 {
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .u-pb-12 {
    padding-bottom: 2.25rem;
  }
}
.u-pb-14 {
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .u-pb-14 {
    padding-bottom: 2.625rem;
  }
}
.u-pb-16 {
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .u-pb-16 {
    padding-bottom: 3rem;
  }
}
.u-pb-18 {
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .u-pb-18 {
    padding-bottom: 3.375rem;
  }
}
.u-pb-20 {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .u-pb-20 {
    padding-bottom: 3.75rem;
  }
}
.u-pl-0 {
  padding-left: 0rem;
}
@media screen and (max-width: 768px) {
  .u-pl-0 {
    padding-left: 0rem;
  }
}
.u-pl-1 {
  padding-left: 0.25rem;
}
@media screen and (max-width: 768px) {
  .u-pl-1 {
    padding-left: 0.1875rem;
  }
}
.u-pl-2 {
  padding-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .u-pl-2 {
    padding-left: 0.375rem;
  }
}
.u-pl-3 {
  padding-left: 0.75rem;
}
@media screen and (max-width: 768px) {
  .u-pl-3 {
    padding-left: 0.5625rem;
  }
}
.u-pl-4 {
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .u-pl-4 {
    padding-left: 0.75rem;
  }
}
.u-pl-5 {
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .u-pl-5 {
    padding-left: 0.9375rem;
  }
}
.u-pl-6 {
  padding-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .u-pl-6 {
    padding-left: 1.125rem;
  }
}
.u-pl-8 {
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .u-pl-8 {
    padding-left: 1.5rem;
  }
}
.u-pl-10 {
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .u-pl-10 {
    padding-left: 1.875rem;
  }
}
.u-pl-12 {
  padding-left: 3rem;
}
@media screen and (max-width: 768px) {
  .u-pl-12 {
    padding-left: 2.25rem;
  }
}
.u-pl-14 {
  padding-left: 3.5rem;
}
@media screen and (max-width: 768px) {
  .u-pl-14 {
    padding-left: 2.625rem;
  }
}
.u-pl-16 {
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .u-pl-16 {
    padding-left: 3rem;
  }
}
.u-pl-18 {
  padding-left: 4.5rem;
}
@media screen and (max-width: 768px) {
  .u-pl-18 {
    padding-left: 3.375rem;
  }
}
.u-pl-20 {
  padding-left: 5rem;
}
@media screen and (max-width: 768px) {
  .u-pl-20 {
    padding-left: 3.75rem;
  }
}
.u-pr-0 {
  padding-right: 0rem;
}
@media screen and (max-width: 768px) {
  .u-pr-0 {
    padding-right: 0rem;
  }
}
.u-pr-1 {
  padding-right: 0.25rem;
}
@media screen and (max-width: 768px) {
  .u-pr-1 {
    padding-right: 0.1875rem;
  }
}
.u-pr-2 {
  padding-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .u-pr-2 {
    padding-right: 0.375rem;
  }
}
.u-pr-3 {
  padding-right: 0.75rem;
}
@media screen and (max-width: 768px) {
  .u-pr-3 {
    padding-right: 0.5625rem;
  }
}
.u-pr-4 {
  padding-right: 1rem;
}
@media screen and (max-width: 768px) {
  .u-pr-4 {
    padding-right: 0.75rem;
  }
}
.u-pr-5 {
  padding-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .u-pr-5 {
    padding-right: 0.9375rem;
  }
}
.u-pr-6 {
  padding-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .u-pr-6 {
    padding-right: 1.125rem;
  }
}
.u-pr-8 {
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .u-pr-8 {
    padding-right: 1.5rem;
  }
}
.u-pr-10 {
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .u-pr-10 {
    padding-right: 1.875rem;
  }
}
.u-pr-12 {
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .u-pr-12 {
    padding-right: 2.25rem;
  }
}
.u-pr-14 {
  padding-right: 3.5rem;
}
@media screen and (max-width: 768px) {
  .u-pr-14 {
    padding-right: 2.625rem;
  }
}
.u-pr-16 {
  padding-right: 4rem;
}
@media screen and (max-width: 768px) {
  .u-pr-16 {
    padding-right: 3rem;
  }
}
.u-pr-18 {
  padding-right: 4.5rem;
}
@media screen and (max-width: 768px) {
  .u-pr-18 {
    padding-right: 3.375rem;
  }
}
.u-pr-20 {
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .u-pr-20 {
    padding-right: 3.75rem;
  }
}