@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
@layer components, variations;
@layer components {
  a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
  }
  p {
    font-size: 1.6rem;
    line-height: 1.75;
    will-change: transform, opacity;
  }
  button {
    border: none;
    font: inherit;
    color: currentColor;
  }
  ol,
ul {
    list-style: none;
  }
}
html {
  line-height: 1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: 700;
}

caption,
td,
th {
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

html {
  font-size: 100%;
  line-height: 1.5em;
}

* {
  box-sizing: border-box;
  word-break: break-word; /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word; /* 同様の目的。対応ブラウザが広い */
  line-break: auto; /* 節での自然な改行を優先（日本語では特に有効） */
  white-space: normal; /* 普通の折り返し挙動に */
}

html {
  font-size: 100%;
  width: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-size: min(0.694444vw, 62.5%);
}
@media screen and (max-width: 767.98px) {
  html {
    font-size: 1.333333vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  position: relative;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
  font-size: 1.6rem;
}
body.is-fixed {
  overscroll-behavior-y: none;
  overflow: hidden;
}

div[id],
section[id] {
  scroll-margin-top: 12rem;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ----------------------------------------------------------------------------------------------------
*	loading
* --------------------------------------------------------------------------------------------------*/
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  background-color: #fff;
  z-index: 10000;
  transition: 0.5s opacity, 0.5s visibility;
}
.l-loading.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-loading__container {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
}
.l-loading__container.is-start p span {
  opacity: 1;
}
.l-loading__container p {
  font-size: 2.68rem;
  font-weight: 700;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767.98px) {
  .l-loading__container p {
    font-weight: 600;
    font-size: 3rem;
  }
}
.l-loading__container p span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
  will-change: opacity;
}
.l-loading__container p span:nth-of-type(1) {
  transition-delay: 0.5s;
}
.l-loading__container p span:nth-of-type(2) {
  transition-delay: 0.6s;
}
.l-loading__container p span:nth-of-type(3) {
  transition-delay: 0.7s;
}
.l-loading__container p span:nth-of-type(4) {
  transition-delay: 0.8s;
}
.l-loading__container p span:nth-of-type(5) {
  transition-delay: 0.9s;
}
.l-loading__container p span:nth-of-type(6) {
  transition-delay: 1s;
}
.l-loading__container p span:nth-of-type(7) {
  transition-delay: 1.1s;
}
.l-loading__container p span:nth-of-type(8) {
  transition-delay: 1.2s;
}
.l-loading__container p span:nth-of-type(9) {
  transition-delay: 1.3s;
}
.l-loading__container p span:nth-of-type(10) {
  transition-delay: 1.4s;
}
.l-loading__container p span:nth-of-type(11) {
  transition-delay: 1.5s;
}
.l-loading__container p span:nth-of-type(12) {
  transition-delay: 1.6s;
}
.l-loading__container p span:nth-of-type(13) {
  transition-delay: 1.7s;
}

.l-header {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s background-color, 0.3s -webkit-backdrop-filter;
  transition: 0.3s background-color, 0.3s backdrop-filter;
  transition: 0.3s background-color, 0.3s backdrop-filter, 0.3s -webkit-backdrop-filter;
}
@media screen and (max-width: 767.98px) {
  .l-header.is-nav-open .l-header__logo svg {
    fill: #000 !important;
  }
  .l-header.is-nav-open .l-navigation-toggle__button {
    color: #000 !important;
  }
  .l-header.is-nav-open .l-header__front {
    background-color: #fff !important;
  }
  .l-header.is-nav-open .l-sp-header-instagram {
    opacity: 1 !important;
    pointer-events: auto;
  }
  .l-header.is-nav-open .l-sp-header-instagram {
    background-color: #000 !important;
  }
  .l-header.is-nav-open .l-language a {
    color: #000 !important;
  }
  .l-header.is-nav-open .l-language a::after {
    background-color: #000 !important;
  }
  .l-header.is-nav-open .l-language__select::before {
    color: #000 !important;
  }
}
.l-header.is-front {
  background-color: transparent;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}
.l-header.is-front .l-header__logo svg {
  fill: #fff;
}
.l-header.is-front .l-navigation-toggle__button {
  color: #fff;
}
.l-header.is-front .l-language a {
  color: #fff;
}
.l-header.is-front .l-language a::after {
  background-color: #fff;
}
.l-header.is-front .l-language__select::before {
  color: #fff;
}
.l-header.is-front .l-sp-header-instagram {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header.is-front .l-header__nav-link {
    color: #fff;
  }
  .l-header.is-front .l-header__nav-link span::before {
    background-color: #fff;
  }
  .l-header.is-front .l-header__nav-item.-instagram svg {
    fill: #fff;
  }
}

.l-header__logo {
  width: 15.7rem;
  display: block;
  margin-left: 3.6rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__logo {
    width: 24.1rem;
    margin-left: 0;
  }
}
.l-header__logo a {
  display: block;
  will-change: transform, opacity;
}
@media (any-hover) {
  .l-header__logo a {
    transition: 0.3s;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__logo svg {
  transition: 0.3s fill;
  width: 100%;
  fill: #000;
}

.u-en {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
}

.l-header__inner {
  display: flex;
  padding-block: 4rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__inner {
    display: block;
    padding-block: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .l-header__front {
    transition: 0.3s background-color;
    /* background-color: #fff; */
    width: 100%;
    padding-left: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
  }
}

.l-header__right {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header__right {
    display: none;
  }
}

.l-sp-header-instagram {
  width: 6rem;
  height: 12rem;
  display: grid;
  place-content: center;
  transition: 0.3s opacity;
  will-change: opacity;
  z-index: 10;
  -webkit-mask: url(../img/icn_instagram_b.svg) no-repeat center/2.7rem 2.7rem;
          mask: url(../img/icn_instagram_b.svg) no-repeat center/2.7rem 2.7rem;
  background-color: #000;
  transition: 0.3s background-color;
}
.l-sp-header-instagram svg,
.l-sp-header-instagram img {
  width: 2.7rem;
  height: 2.8rem;
}

.l-navigation-toggle__button {
  font: inherit;
  color: #000;
  font-size: 3.7rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  background-color: transparent;
  width: 15rem;
  height: 12rem;
  transition: 0.3s color;
  padding-right: 3rem;
}

.l-header__nav {
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav {
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    padding-inline: 3.5rem;
    transform: translateY(-100%);
    transition: 0.5s transform;
    padding-top: 10rem;
    z-index: 2;
  }
  .l-header__nav.is-open {
    transform: translateY(0);
  }
}

.l-header__nav-list {
  display: flex;
  -moz-column-gap: 1.7rem;
       column-gap: 1.7rem;
  padding-right: 4rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list {
    display: block;
    padding-right: 0;
  }
}

.l-header__nav-item {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-item {
    font-size: 3.7rem;
  }
  .l-header__nav-item:not(:has(+ .-instagram)) {
    border-bottom: 0.5px solid #000;
  }
  .l-header__nav-item:has(.l-language) {
    display: none;
  }
  .l-header__nav-item.-spborder-none {
    border: none;
  }
}
.l-header__nav-item.-instagram {
  margin-left: 2rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-item.-instagram {
    display: none;
  }
}
.l-header__nav-item.-instagram .l-header__nav-link {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  padding: 0;
}
@media (any-hover) {
  .l-header__nav-item.-instagram .l-header__nav-link {
    transition: 0.3s;
  }
  .l-header__nav-item.-instagram .l-header__nav-link:hover {
    opacity: 0.7;
  }
}
.l-header__nav-item.-instagram svg {
  width: 100%;
  fill: #000;
}

.l-header__nav-link {
  text-decoration: none;
  position: relative;
  padding: 1rem 2rem;
  color: #000;
}
.l-header__nav-link span {
  position: relative;
}
.l-header__nav-link span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 100%;
  height: 1px;
  background-color: #000;
  transform: scale(0, 1);
  transition: 0.3s transform;
}
@media (any-hover: hover) {
  .l-header__nav-link:hover span::before {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-link {
    color: #000;
    display: block;
    text-align: center;
    padding-block: 3rem;
  }
}
@media screen and (max-width: 767.98px) and (max-width: 767.98px) {
  .l-header__nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    width: 4rem;
    height: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/icn_arrow.svg) no-repeat center/contain;
  }
}

.l-language {
  display: flex;
  font-size: 1.6rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  .l-language {
    font-size: 3.7rem;
    margin-right: 1rem;
    margin-top: -0.6rem;
    font-weight: 500;
  }
}
.l-language a {
  color: #000;
  text-decoration: none;
  position: relative;
  transition: 0.3s color;
}
@media (any-hover) {
  .l-language a {
    transition: 0.3s;
  }
  .l-language a:hover {
    opacity: 0.7;
  }
}
.l-language a[aria-selected=true]::after {
  transition: 0.3s background-color;
  position: absolute;
  content: "";
  bottom: 0.1em;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.l-language .l-language__select {
  position: relative;
}
.l-language .l-language__select + .l-language__select {
  margin-left: 0.3em;
  padding-left: 0.6em;
}
.l-language .l-language__select + .l-language__select::before {
  transition: 0.3s color;
  content: "/";
  left: 0;
  position: absolute;
}

/* ----------------------------------------------------------------------------------------------------
*	footer
* --------------------------------------------------------------------------------------------------*/
.l-footer__inner {
  padding-block: 7.3rem;
}
@media screen and (max-width: 767.98px) {
  .l-footer__inner {
    padding-block: 6.5rem;
  }
}

.c-copyright {
  display: block;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .c-copyright {
    font-size: 1.8rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	common
* --------------------------------------------------------------------------------------------------*/
.js-animate.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: 1s opacity, 1s transform;
}
.js-animate.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
.js-animate.fade-up.is-show-delay-01 {
  transition-delay: 0.1s;
}
.js-animate.fade-up.is-show-delay-02 {
  transition-delay: 0.2s;
}
.js-animate.fade-up.is-show-delay-03 {
  transition-delay: 0.3s;
}
.js-animate.fade-up.is-show-delay-04 {
  transition-delay: 0.4s;
}
.js-animate.fade-up.is-show-delay-05 {
  transition-delay: 0.5s;
}
.js-animate.fade-up.is-show-delay-06 {
  transition-delay: 0.6s;
}
.js-animate.fade-up.is-show-delay-07 {
  transition-delay: 0.7s;
}
.js-animate.fade-up.is-show-delay-08 {
  transition-delay: 0.8s;
}
.js-animate.fade-up.is-show-delay-09 {
  transition-delay: 0.9s;
}
.js-animate.fade-up.is-show-delay-10 {
  transition-delay: 1s;
}
.js-animate.fade-up.is-show-delay-11 {
  transition-delay: 1.1s;
}
.js-animate.fade-up.is-show-delay-12 {
  transition-delay: 1.2s;
}
.js-animate.fade-up.is-show-delay-13 {
  transition-delay: 1.3s;
}
.js-animate.fade-up.is-show-delay-14 {
  transition-delay: 1.4s;
}
.js-animate.fade-up.is-show-delay-15 {
  transition-delay: 1.5s;
}
.js-animate.fade-up.is-show-delay-16 {
  transition-delay: 1.6s;
}
.js-animate.fade-up.is-show-delay-17 {
  transition-delay: 1.7s;
}
.js-animate.fade-up.is-show-delay-18 {
  transition-delay: 1.8s;
}
@media screen and (max-width: 767.98px) {
  .js-animate.fade-up.is-show-sp-delay-0 {
    transition-delay: 0s;
  }
  .js-animate.fade-up.is-show-sp-delay-01 {
    transition-delay: 0.1s;
  }
  .js-animate.fade-up.is-show-sp-delay-02 {
    transition-delay: 0.2s;
  }
  .js-animate.fade-up.is-show-sp-delay-03 {
    transition-delay: 0.3s;
  }
  .js-animate.fade-up.is-show-sp-delay-04 {
    transition-delay: 0.4s;
  }
  .js-animate.fade-up.is-show-sp-delay-05 {
    transition-delay: 0.5s;
  }
  .js-animate.fade-up.is-show-sp-delay-06 {
    transition-delay: 0.6s;
  }
  .js-animate.fade-up.is-show-sp-delay-07 {
    transition-delay: 0s;
  }
}

.c-section__ttl {
  font-size: 6.56rem;
  position: relative;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.c-section__ttl.is-show .p-animation-ttl span {
  opacity: 1;
  transform: translateX(0);
}
.c-section__ttl .p-animation-ttl span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-0.5em);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(1) {
  transition-delay: 0s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(2) {
  transition-delay: 0.08s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(3) {
  transition-delay: 0.16s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(4) {
  transition-delay: 0.24s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(5) {
  transition-delay: 0.32s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(6) {
  transition-delay: 0.4s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(7) {
  transition-delay: 0.48s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(8) {
  transition-delay: 0.56s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(9) {
  transition-delay: 0.64s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(10) {
  transition-delay: 0.72s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(11) {
  transition-delay: 0.8s;
}
.c-section__ttl .p-animation-ttl span:nth-of-type(12) {
  transition-delay: 0.88s;
}
.c-section__ttl .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .c-section__ttl {
    font-size: 7.5rem;
  }
}

.c-txt {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.14em;
}
.c-txt + .c-txt {
  margin-top: 2em;
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-sp {
    display: block;
  }
}

.u-spinline {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-spinline {
    display: inline !important;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .u-pc {
    display: none !important;
  }
}

#p-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 10000;
  display: block;
  border: none;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s opacity, 0.5s visibility;
  max-width: inherit;
  max-height: inherit;
}
@media screen and (max-width: 767.98px) {
  #p-modal {
    height: 100dvh;
  }
}
#p-modal[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.p-modal__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-modal__inner {
    display: flex;
    flex-direction: column;
  }
}

.p-btn-modal-close {
  position: absolute;
  font-size: 1.6rem;
  top: 2rem;
  right: 2rem;
  display: block;
  padding: 2rem;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 20;
  background-color: transparent;
  border: none;
}
@media (any-hover) {
  .p-btn-modal-close {
    transition: 0.3s;
  }
  .p-btn-modal-close:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .p-btn-modal-close {
    font-size: 3.7rem;
    color: #fff;
  }
}

.slideMain .p-product__container {
  display: flex;
  -moz-column-gap: 2.7777777778%;
       column-gap: 2.7777777778%;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .slideMain .p-product__container {
    display: block;
    flex-grow: 1;
  }
}
.slideMain .p-img-wrapper {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  height: 100dvh;
}
@media screen and (max-width: 767.98px) {
  .slideMain .p-img-wrapper {
    width: 100%;
    height: 50svh;
  }
}
.slideMain .p-img-wrapper .u-en {
  line-height: 1;
  position: absolute;
  left: 3.8rem;
  bottom: 3.2rem;
  font-size: 13rem;
  color: #fff;
  z-index: 10;
}
.slideMain .p-txt-wrapper {
  padding-top: 15.6rem;
}
@media screen and (max-width: 767.98px) {
  .slideMain .p-txt-wrapper {
    padding: 4rem 1rem 0 3rem;
  }
}
.slideMain .p-txt-wrapper dl {
  display: flex;
}
.slideMain .p-txt-wrapper dt {
  width: 19.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .slideMain .p-txt-wrapper dt {
    width: 22rem;
  }
}
.slideMain .p-txt-wrapper dt span {
  display: block;
}
.slideMain .p-txt-wrapper dt .u-en {
  font-size: 3rem;
}
@media screen and (max-width: 767.98px) {
  .slideMain .p-txt-wrapper dt .u-en {
    font-size: 4rem;
  }
}
.slideMain .p-txt-wrapper dt .u-jp {
  font-size: 1.6rem;
  margin-top: 0.8em;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .slideMain .p-txt-wrapper dt .u-jp {
    font-size: 2rem;
  }
}
.slideMain .p-txt-wrapper dd p {
  font-size: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .slideMain .p-txt-wrapper dd p {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
}
.slideMain .p-img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slideMain .p-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slideThumbnail {
  position: absolute;
  width: 47.9166666667%;
  bottom: 3rem;
  right: 0;
}
@media screen and (max-width: 767.98px) {
  .slideThumbnail {
    width: calc(100% - 3rem);
    margin-top: auto;
    margin-left: 3rem;
    padding-bottom: 3rem;
    position: static;
  }
}
.slideThumbnail .u-en {
  font-size: 1.2rem;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 767.98px) {
  .slideThumbnail .u-en {
    font-size: 2rem;
  }
}
.slideThumbnail .slick-list {
  padding: 0 18% 0 0 !important;
}
@media screen and (max-width: 767.98px) {
  .slideThumbnail .slick-list {
    padding-right: 5% !important;
  }
}
.slideThumbnail .slick {
  /* padding-right: 180px; */
  /* overflow: visible; */
}
.slideThumbnail .slick-track {
  will-change: transform;
}
.slideThumbnail .slick-track.no-transition {
  transition: none !important;
}
.slideThumbnail .slick-list {
  /* margin: 0 -5rem; */
}
.slideThumbnail .slick-slide {
  /* margin: 0 5rem; */
}
.slideThumbnail .p-img-wrapper {
  overflow: hidden;
}
.slideThumbnail .p-img-wrapper img {
  transition: 0.3s transform;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slideThumbnail .slide-block {
  margin-right: 5rem;
  cursor: pointer;
}
@media (any-hover: hover) {
  .slideThumbnail .slide-block:hover img {
    transform: scale(1.1);
  }
}
.p-content-heading {
  padding-top: 15.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-content-heading {
    padding-top: 11.4rem;
  }
}
.p-content-heading .c-copy {
  font-size: 2.4rem;
  font-weight: 700;
  margin-left: 15rem;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 767.98px) {
  .p-content-heading .c-copy {
    font-size: 2.96rem;
    margin-left: 6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	collection
* --------------------------------------------------------------------------------------------------*/
.p-collection {
  margin-top: 15.1rem;
}
.p-collection .l-content__inner {
  position: relative;
}
.p-collection .p-txt-more {
  font-size: 3.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  pointer-events: none;
  right: 4rem;
  bottom: -0.6em;
}
@media screen and (max-width: 767.98px) {
  .p-collection {
    margin-top: 21rem;
  }
}
.p-collection .p-ttl-wrapper {
  max-width: 144rem;
  margin-inline: auto;
  padding-inline: 4rem;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 57.6rem auto 1fr;
  grid-template-rows: auto;
}
@media screen and (max-width: 767.98px) {
  .p-collection .p-ttl-wrapper {
    display: block;
    margin-inline: 28rem 0;
    padding-inline: 0;
  }
}
.p-collection .p-ttl-wrapper .c-section__ttl {
  grid-row: 1;
  grid-column: 2;
}
.p-collection .p-ttl-wrapper .c-txt {
  grid-row: 1;
  grid-column: 3;
  margin-left: 5.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-collection .p-ttl-wrapper .c-txt {
    margin-left: 0;
    margin-top: 1em;
    font-size: 2.2rem;
  }
}

.l-content__inner {
  padding-inline: 4rem;
  max-width: 144rem;
  margin-inline: auto;
}

.p-collection__container {
  margin-top: 4.9rem;
}

.p-collection__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 2.5rem 8rem;
}
@media screen and (max-width: 767.98px) {
  .p-collection__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.7rem 5.6rem;
  }
}

.p-collection__item .u-en {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  display: block;
}
@media screen and (max-width: 767.98px) {
  .p-collection__item .u-en {
    font-size: 2.2rem;
  }
}
.p-collection__item .p-img-wrapper {
  display: block;
  aspect-ratio: 208/290;
  overflow: hidden;
}
.p-collection__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s transform;
}

.p-button-modalopen {
  text-align: left;
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
@media (any-hover: hover) {
  .p-button-modalopen:hover img {
    transform: scale(1.1);
  }
}

/* ----------------------------------------------------------------------------------------------------
*	MV
* --------------------------------------------------------------------------------------------------*/
.p-mv {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-mv {
    height: 100svh;
    overflow: hidden;
  }
}
.p-mv p {
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 4rem;
  z-index: 100;
}
@media screen and (max-width: 767.98px) {
  .p-mv p {
    width: 56rem;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
}
.p-mv p img {
  width: 100%;
}
.p-mv .p-mv__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------------------------------------------------------------------------------
*	about
* --------------------------------------------------------------------------------------------------*/
.p-about {
  margin-top: 23.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-about {
    margin-top: 33.6rem;
  }
}

.p-about__container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 78.4rem;
  grid-template-rows: auto auto;
  gap: 7.3rem 0.4rem;
  align-items: start;
}
@media screen and (max-width: 767.98px) {
  .p-about__container {
    display: block;
  }
}
.p-about__container .c-section__ttl {
  grid-row: 1;
  grid-column: 1;
  text-align: right;
  margin-right: 7.3rem;
}
@media screen and (max-width: 767.98px) {
  .p-about__container .c-section__ttl {
    text-align: left;
    margin-right: 0;
  }
}

.p-about__body {
  grid-row: 1;
  grid-column: 2;
  padding-top: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-about__body {
    margin-top: 6rem;
  }
}
.p-about__body .c-txt {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .p-about__body .c-txt {
    font-size: 2.2rem;
    line-height: 1.8;
  }
}

.p-about__img-wrapper {
  position: relative;
  overflow: hidden;
}
.p-about__img-wrapper.is-show::before {
  -webkit-animation: coverSlide 2s ease forwards;
          animation: coverSlide 2s ease forwards;
}
.p-about__img-wrapper.is-show img {
  -webkit-animation: imgShow 2s ease forwards;
          animation: imgShow 2s ease forwards;
}
.p-about__img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(111deg, rgb(252, 252, 252) 0%, rgb(219, 219, 219) 100%);
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 10;
}
.p-about__img-wrapper.-img01 {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 784/532;
}
@media screen and (max-width: 767.98px) {
  .p-about__img-wrapper.-img01 {
    margin-top: 7.8rem;
  }
}
.p-about__img-wrapper.-img02 {
  grid-column: 1;
  grid-row: 2;
  width: 36.7rem;
  margin-left: auto;
  aspect-ratio: 367/249;
}
.p-about__img-wrapper.-img02::before {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-about__img-wrapper.-img02 img {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media screen and (max-width: 767.98px) {
  .p-about__img-wrapper.-img02 {
    margin-top: 0.7rem;
  }
}
.p-about__img-wrapper img {
  /* opacity: 0; */
}

/* ----------------------------------------------------------------------------------------------------
*	shop
* --------------------------------------------------------------------------------------------------*/
.p-shop {
  margin-top: 26.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-shop {
    margin-top: 37.2rem;
  }
}
.p-shop .c-section__ttl {
  width: 84.8rem;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .p-shop .c-section__ttl {
    width: auto;
  }
}

.p-shop__container {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 2.7rem;
       column-gap: 2.7rem;
  margin-top: 4.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-shop__container {
    display: block;
    margin-top: 4.6rem;
  }
}
.p-shop__container + .p-shop__container {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-shop__container + .p-shop__container {
    margin-top: 14.4rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-shop__body {
    padding-top: 4rem;
  }
}

.p-shop__img-wrapper {
  width: 84.8rem;
  aspect-ratio: 848/561;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-shop__img-wrapper {
    width: auto;
  }
}
.p-shop__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-shop__name {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 3.3rem;
}
@media screen and (max-width: 767.98px) {
  .p-shop__name {
    font-size: 4rem;
  }
}

.p-shop__info {
  margin-top: 3.8rem;
}
.-komazawadaigaku .p-shop__info {
  margin-top: 4.4rem;
}
.p-shop__info .p-shop__title {
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .p-shop__info .p-shop__title {
    font-size: 2.2rem;
  }
}
.p-shop__info .c-txt {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .p-shop__info .c-txt {
    font-size: 2.2rem;
  }
}
.p-shop__info dd {
  margin-top: 0.7rem;
}
.p-shop__info a {
  color: currentColor;
  text-decoration: none;
}

.p-map {
  margin-top: 2.5rem;
}
.-komazawadaigaku .p-map {
  margin-top: 3rem;
}

.p-map__img-wrapper {
  margin-bottom: 6rem;
  width: 33rem;
}
@media screen and (max-width: 767.98px) {
  .p-map__img-wrapper {
    width: 49rem;
    margin-bottom: 3.5rem;
  }
}
.-komazawadaigaku .p-map__img-wrapper {
  width: 27.3rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767.98px) {
  .-komazawadaigaku .p-map__img-wrapper {
    width: 39.6rem;
  }
}

.c-link {
  text-decoration: none;
  color: currentColor;
}

.c-link-arrow {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  padding-right: 2rem;
}
@media screen and (max-width: 767.98px) {
  .c-link-arrow {
    font-size: 2.6rem;
    padding-right: 3.7rem;
  }
}
@media (any-hover: hover) {
  .c-link-arrow:hover::after {
    transform: translateX(0.5rem);
  }
}
.c-link-arrow::after {
  position: absolute;
  right: 0;
  content: "";
  width: 1.2rem;
  height: 0.5rem;
  top: 0.5rem;
  background: url(../img/icn_arrow.svg) no-repeat center/contain;
  transition: 0.3s transform;
}
@media screen and (max-width: 767.98px) {
  .c-link-arrow::after {
    width: 2.7rem;
    top: 1.1rem;
    background-image: url(../img/icn_arrow_sp.svg);
  }
}

/* ----------------------------------------------------------------------------------------------------
*	
* --------------------------------------------------------------------------------------------------*/
.p-mail-order {
  margin-top: 29.6rem;
}
.p-mail-order .p-ttl-wrapper {
  display: flex;
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-mail-order .p-ttl-wrapper {
    display: block;
  }
}
.p-mail-order .p-ttl-wrapper .c-txt {
  font-size: 1.4rem;
  margin-top: 0.8rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767.98px) {
  .p-mail-order .p-ttl-wrapper .c-txt {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 3.7rem;
  }
}

.p-product__list {
  display: flex;
  margin-top: 4.3rem;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__list {
    display: block;
    margin-top: 9.6rem;
  }
}

.p-product__item {
  width: calc((100% - 0.8rem) / 3);
}
@media screen and (max-width: 767.98px) {
  .p-product__item {
    width: auto;
  }
  .p-product__item + .p-product__item {
    margin-top: 9rem;
  }
}
.p-product__item .c-note {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__item .c-note {
    font-size: 2.2rem;
  }
}
.p-product__item .c-price {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 1.4rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__item .c-price {
    font-size: 3rem;
  }
}

.p-product__img-wrapper {
  aspect-ratio: 449/369;
  width: 100%;
  overflow: hidden;
}
.p-product__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-set__list {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  gap: 1rem 0.1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .p-set__list {
    margin-top: 2rem;
    font-size: 2.2rem;
    gap: 1.6rem 0.3rem;
  }
}

.p-product__set {
  font-size: 1.2rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__set {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

.p-order__container {
  border-top: 0.5px solid #000;
  padding-top: 2.5rem;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 33.3rem 1fr 21.6rem;
  grid-template-rows: auto;
  margin-top: 6.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-order__container.-large-order .c-txt {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .p-order__container.-large-order strong {
    font-weight: 400;
  }
}
@media screen and (max-width: 767.98px) {
  .p-order__container {
    display: block;
    padding-top: 4rem;
  }
}
.p-order__container + .p-order__container {
  margin-top: 7.9rem;
}
@media screen and (max-width: 767.98px) {
  .p-order__container + .p-order__container {
    margin-top: 10rem;
  }
}

.p-order__ttl {
  grid-row: 1;
  grid-column: 1;
}
.p-order__ttl .u-en {
  font-size: 3.9rem;
}
@media screen and (max-width: 767.98px) {
  .p-order__ttl .u-en {
    font-size: 5rem;
  }
}
.p-order__ttl .u-jp {
  font-size: 1.2rem;
  display: block;
  margin-top: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767.98px) {
  .p-order__ttl .u-jp {
    font-size: 2.2rem;
    margin-top: 1.6rem;
  }
}

.p-order__body {
  grid-column: 2;
  grid-row: 1;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-order__body {
    padding-top: 0;
    margin-top: 2rem;
  }
}
.p-order__body .c-txt {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .p-order__body .c-txt {
    font-size: 2.2rem;
  }
}

.p-customer__list {
  margin-top: 0.9rem;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: auto 1fr;
  grid-auto-flow: column;
  font-size: 1.2rem;
  font-weight: bold;
  gap: 0.1rem 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .p-customer__list {
    display: block;
    font-size: 2.2rem;
  }
}

.p-note__list {
  margin-top: 2.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767.98px) {
  .p-note__list {
    margin-top: 2.6rem;
    font-size: 2.2rem;
  }
}

.p-note__item {
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

.p-btn-wrapper {
  grid-column: 3;
  grid-row: 1;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-btn-wrapper {
    margin: 9.5rem auto 0;
    max-width: 30.2rem;
  }
}

.c-btn {
  border: 0.5px solid #000;
  width: 100%;
  display: grid;
  place-content: center;
  min-height: 5.9rem;
  font-size: 2rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: currentColor;
  text-decoration: none;
  position: relative;
}
@media (any-hover: hover) {
  .c-btn:hover::after {
    transform: translateY(-50%) translateX(0.5rem);
  }
}
.c-btn::after {
  position: absolute;
  right: 2.3rem;
  content: "";
  width: 1.5rem;
  height: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icn_arrow.svg) no-repeat center/contain;
  transition: 0.3s transform;
}
@media screen and (max-width: 767.98px) {
  .c-btn::after {
    right: 3rem;
    width: 4rem;
    height: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-btn {
    font-size: 2.8rem;
    min-height: 8.6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	
* --------------------------------------------------------------------------------------------------*/
.p-wedding-gift {
  margin-top: 34.7rem;
}
@media screen and (max-width: 767.98px) {
  .p-wedding-gift {
    margin-top: 37.6rem;
  }
}

.p-wedding-gift__container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 72.7rem 1fr;
  grid-template-rows: auto auto;
  gap: 7.8rem 0.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-wedding-gift__container {
    display: block;
  }
}
.p-wedding-gift__container .c-section__ttl {
  grid-row: 1;
  grid-column: 1;
  text-align: right;
  margin-right: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-wedding-gift__container .c-section__ttl {
    margin-right: 0;
  }
}

.p-wedding-gift__body {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 767.98px) {
  .p-wedding-gift__body {
    padding-top: 10.2rem;
  }
}
.p-wedding-gift__body .c-txt {
  font-size: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-wedding-gift__body .c-txt {
    font-size: 2.2rem;
    letter-spacing: 0.01em;
  }
}

.p-wedding-gift__img-wrapper {
  overflow: hidden;
  position: relative;
}
.p-wedding-gift__img-wrapper.is-show::before {
  -webkit-animation: coverSlide 2s ease forwards;
          animation: coverSlide 2s ease forwards;
}
.p-wedding-gift__img-wrapper.is-show img {
  -webkit-animation: imgShow 2s steps(1, end) forwards;
          animation: imgShow 2s steps(1, end) forwards;
}
.p-wedding-gift__img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(111deg, rgb(252, 252, 252) 0%, rgb(219, 219, 219) 100%);
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 10;
  will-change: transform;
}
.p-wedding-gift__img-wrapper.-img01 {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 726/484;
}
@media screen and (max-width: 767.98px) {
  .p-wedding-gift__img-wrapper.-img01 {
    margin-top: 6rem;
  }
}
.p-wedding-gift__img-wrapper.-img02 {
  width: 33.4rem;
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 334/222;
}
.p-wedding-gift__img-wrapper.-img02::before {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
.p-wedding-gift__img-wrapper.-img02 img {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
@media screen and (max-width: 767.98px) {
  .p-wedding-gift__img-wrapper.-img02 {
    width: 30.7rem;
    margin-top: 0.7rem;
    margin-left: auto;
  }
}
.p-wedding-gift__img-wrapper img {
  opacity: 0;
  will-change: opacity;
}

.p-bottom {
  padding-block: 55rem 17rem;
}
@media screen and (max-width: 767.98px) {
  .p-bottom {
    padding-block: 29.7rem 23rem;
  }
}
.p-bottom p {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 6.1rem;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
  filter: blur(10px);
  opacity: 0;
  transition: 1s filter, 1s opacity;
}
.p-bottom p.is-show {
  filter: blur(0);
  opacity: 1;
}
@media screen and (max-width: 767.98px) {
  .p-bottom p {
    font-size: 5.5rem;
  }
}
.p-bottom i {
  display: inline-block;
  width: 0.76em;
  position: relative;
  top: 0.25em;
  margin-left: -0.08em;
}
@media screen and (max-width: 767.98px) {
  .p-bottom i {
    width: 1em;
    font-size: 0.7em;
    margin-left: 0;
    right: 0;
    top: 0;
  }
}

@-webkit-keyframes coverSlide {
  0% {
    transform: scale(0, 1);
    transform-origin: left center;
  }
  49% {
    transform: scale(1, 1);
    transform-origin: left center;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right center;
  }
}

@keyframes coverSlide {
  0% {
    transform: scale(0, 1);
    transform-origin: left center;
  }
  49% {
    transform: scale(1, 1);
    transform-origin: left center;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right center;
  }
}
@-webkit-keyframes imgShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes imgShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	company
* --------------------------------------------------------------------------------------------------*/
.p-company__mv {
  height: 87rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-company__mv {
    height: 86rem;
  }
}
.p-company__mv .p-txt {
  top: 61%;
  left: 50%;
  transform-origin: center -13rem;
  /* opacity: 0; */
  width: 2.1em;
  will-change: transform;
  position: absolute;
}
@media screen and (max-width: 767.98px) {
  .p-company__mv .p-txt {
    top: 63.3%;
    transform-origin: center -13rem;
    width: 2.2em;
  }
}
.p-company__mv .p-txt svg {
  transform-box: fill-box;
}
.p-company__mv .p-txt.-b {
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-animation: animB 1s ease forwards;
          animation: animB 1s ease forwards;
  aspect-ratio: 33.79/40.5;
}
.p-company__mv .p-txt.-e {
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-animation: animE 1s ease forwards;
          animation: animE 1s ease forwards;
  aspect-ratio: 33.91/40.52;
}
@media screen and (max-width: 767.98px) {
  .p-company__mv .p-txt.-e {
    width: 2.2em;
  }
}
.p-company__mv .p-txt.-u {
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-animation: animU 1s ease forwards;
          animation: animU 1s ease forwards;
  width: 2.4em;
  aspect-ratio: 37.76/41.57;
}
@media screen and (max-width: 767.98px) {
  .p-company__mv .p-txt.-u {
    width: 2.4em;
  }
}
.p-company__mv .p-txt.-y {
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-animation: animY 1s ease forwards;
          animation: animY 1s ease forwards;
  width: 2.5em;
  aspect-ratio: 37.77/40.51;
}
@media screen and (max-width: 767.98px) {
  .p-company__mv .p-txt.-y {
    top: 63.1%;
    left: 49.4%;
    width: 2.4em;
  }
}
.p-company__mv .p-txt.-s {
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-animation: animS 1s ease forwards;
          animation: animS 1s ease forwards;
  width: 2em;
  aspect-ratio: 28.59/42.58;
}
@media screen and (max-width: 767.98px) {
  .p-company__mv .p-txt.-s {
    width: 1.8em;
    left: 49.2%;
  }
}

@-webkit-keyframes animB {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    opacity: 1;
  }
}

@keyframes animB {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes animE {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
  }
}
@keyframes animE {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
  }
}
@-webkit-keyframes animU {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
  }
}
@keyframes animU {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
  }
}
@-webkit-keyframes animY {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
  }
}
@keyframes animY {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
  }
}
@-webkit-keyframes animS {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-90deg);
    opacity: 1;
  }
}
@keyframes animS {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-90deg);
    opacity: 1;
  }
}
.p-general__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 26rem;
}
@media screen and (max-width: 767.98px) {
  .p-general__container {
    display: block;
    padding-bottom: 0;
  }
}

.p-company__container,
.p-brands__container,
.p-contact,
.p-recruit {
  border-top: 0.5px solid #000;
  padding-top: 3.4rem;
  min-height: 52.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-company__container,
.p-brands__container,
.p-contact,
.p-recruit {
    min-height: inherit;
    padding-block: 2.6rem 14rem;
  }
}
.p-company__container .c-txt,
.p-brands__container .c-txt,
.p-contact .c-txt,
.p-recruit .c-txt {
  font-size: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-company__container .c-txt,
.p-brands__container .c-txt,
.p-contact .c-txt,
.p-recruit .c-txt {
    font-size: 2.2rem;
  }
}

.p-general__block {
  width: 48.8970588235%;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-general__block {
    width: auto;
  }
}

.p-contact__body,
.p-recruit__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767.98px) {
  .p-company__body,
.p-brands__body,
.p-contact__body,
.p-recruit__body {
    padding-left: 8.5rem;
    margin-top: 9rem;
  }
  .p-company__body .c-txt,
.p-brands__body .c-txt,
.p-contact__body .c-txt,
.p-recruit__body .c-txt {
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
}

.p-company__info {
  font-size: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .p-company__info {
    font-size: 2.2rem;
  }
}
.p-company__info dl {
  display: flex;
}
.p-company__info dt {
  width: 13rem;
  flex-shrink: 0;
  font-weight: bold;
}
.p-company__info dd {
  flex-grow: 1;
}

.p-brand__info {
  padding-top: 1.8rem;
}

.p-brand__ttl {
  width: 18.6rem;
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-brand__ttl {
    width: 26.7rem;
  }
}

.p-contact,
.p-recruit {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.98px) {
  .p-contact,
.p-recruit {
    padding-bottom: 18.9rem;
  }
}
.p-contact .c-section__ttl,
.p-recruit .c-section__ttl {
  margin-bottom: 4.7rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact .c-section__ttl,
.p-recruit .c-section__ttl {
    margin-bottom: 0;
  }
}
.p-contact .p-txt-wrapper,
.p-recruit .p-txt-wrapper {
  margin-bottom: auto;
  flex-grow: 1;
}
.p-contact .p-btn-wrapper,
.p-recruit .p-btn-wrapper {
  margin-top: 7rem;
  max-width: 21.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact .p-btn-wrapper,
.p-recruit .p-btn-wrapper {
    margin: 5.8rem 0 0 0;
    max-width: 30.2rem;
  }
}
.p-contact .p-img-wrapper,
.p-recruit .p-img-wrapper {
  aspect-ratio: 662/427;
  overflow: hidden;
  margin-top: 7.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact .p-img-wrapper,
.p-recruit .p-img-wrapper {
    margin-top: 8.1rem;
  }
}
.p-contact .p-img-wrapper img,
.p-recruit .p-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------------------------------------------------------------------------------
*	english
* --------------------------------------------------------------------------------------------------*/
.l-en .c-txt {
  font-size: 1.8rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .l-en .c-txt {
    font-size: 2.6rem;
  }
}
.l-en * {
  font-family: "neue-haas-grotesk-text", sans-serif !important;
}
.l-en .l-loading__container p {
  letter-spacing: 0;
  font-weight: 500;
}
.l-en .l-loading__container p span:nth-of-type(1) {
  transition-delay: 0.5s;
}
.l-en .l-loading__container p span:nth-of-type(2) {
  transition-delay: 0.6s;
}
.l-en .l-loading__container p span:nth-of-type(3) {
  transition-delay: 0.7s;
}
.l-en .l-loading__container p span:nth-of-type(4) {
  transition-delay: 0.8s;
}
.l-en .l-loading__container p span:nth-of-type(5) {
  transition-delay: 0.9s;
}
.l-en .l-loading__container p span:nth-of-type(6) {
  transition-delay: 1s;
}
.l-en .l-loading__container p span:nth-of-type(7) {
  transition-delay: 1.1s;
}
.l-en .l-loading__container p span:nth-of-type(8) {
  transition-delay: 1.2s;
}
.l-en .l-loading__container p span:nth-of-type(9) {
  transition-delay: 1.3s;
}
.l-en .l-loading__container p span:nth-of-type(10) {
  transition-delay: 1.4s;
}
.l-en .l-loading__container p span:nth-of-type(11) {
  transition-delay: 1.5s;
}
.l-en .l-loading__container p span:nth-of-type(12) {
  transition-delay: 1.6s;
}
.l-en .l-loading__container p span:nth-of-type(13) {
  transition-delay: 1.7s;
}
.l-en .l-loading__container p span:nth-of-type(14) {
  transition-delay: 1.8s;
}
.l-en .l-loading__container p span:nth-of-type(15) {
  transition-delay: 1.9s;
}
.l-en .l-loading__container p span:nth-of-type(16) {
  transition-delay: 2s;
}
.l-en .l-loading__container p span:nth-of-type(17) {
  transition-delay: 2.1s;
}
.l-en .l-loading__container p span:nth-of-type(18) {
  transition-delay: 2.2s;
}
.l-en .l-loading__container p span:nth-of-type(19) {
  transition-delay: 2.3s;
}
.l-en .l-loading__container p span:nth-of-type(20) {
  transition-delay: 2.4s;
}
.l-en .l-loading__container p span:nth-of-type(21) {
  transition-delay: 2.5s;
}
.l-en .l-loading__container p span:nth-of-type(22) {
  transition-delay: 2.6s;
}
.l-en .l-loading__container p span:nth-of-type(23) {
  transition-delay: 2.7s;
}
.l-en .l-loading__container p span:nth-of-type(24) {
  transition-delay: 2.8s;
}
.l-en .l-loading__container p span:nth-of-type(25) {
  transition-delay: 2.9s;
}
.l-en .l-loading__container p span:nth-of-type(26) {
  transition-delay: 3s;
}
@media screen and (max-width: 767.98px) {
  .l-en #p-modal {
    height: inherit;
    min-height: 100dvh;
  }
}
.l-en .p-modal__inner {
  min-height: 80rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-modal__inner {
    min-height: inherit;
  }
}
.l-en .slideMain .p-img-wrapper {
  min-height: 80rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .slideMain .p-img-wrapper {
    min-height: inherit;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .slideMain {
    margin-bottom: 4rem;
  }
}
.l-en .slideMain .p-txt-wrapper dd p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .slideMain .p-txt-wrapper dd p {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .slideMain .p-txt-wrapper {
    padding-right: 4rem;
  }
}
.l-en .p-content-heading .c-copy {
  font-size: 3.5rem;
  letter-spacing: 0;
}
.l-en .p-collection .p-ttl-wrapper .c-txt {
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-collection .p-ttl-wrapper .c-txt {
    font-size: 2.6rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-collection__container {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-about__body {
    margin-top: 4rem;
  }
}
.l-en .p-about__body .c-txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-about__body .c-txt {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-about__img-wrapper.-img01 {
    margin-top: 6rem;
  }
}
.l-en .p-about__container {
  row-gap: 3rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-shop__info {
    margin-top: 4.3rem;
  }
}
.l-en .p-shop__info p {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-shop__info p {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-map {
    margin-top: 5rem;
  }
}
.l-en .p-map__img-wrapper {
  margin-bottom: 3rem;
}
.l-en .p-mail-order .p-ttl-wrapper .c-txt {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-mail-order .p-ttl-wrapper .c-txt {
    font-size: 2.6rem;
  }
}
.l-en .p-set__list {
  font-size: 1.6rem;
  -moz-column-gap: 0.4em;
       column-gap: 0.4em;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-set__list {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-product__item + .p-product__item {
    margin-top: 5rem;
  }
}
.l-en .p-product__item .c-note {
  font-size: 1.6rem;
  margin-top: 0.3em;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-product__item .c-note {
    text-indent: -0.3em;
    padding-left: 0.3em;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-order__body {
    margin-top: 6rem;
  }
}
.l-en .p-order__body .c-txt {
  letter-spacing: 0;
  line-height: 1.6;
}
.l-en .p-customer__list {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-customer__list {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-customer__item {
    text-indent: -0.3em;
    padding-left: 0.3em;
  }
  .l-en .p-customer__item::before {
    content: "-";
  }
}
.l-en .p-note__list {
  font-size: 1.6rem;
  margin-top: 3.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-note__list {
    font-size: 2.6rem;
  }
}
.l-en .p-note__item {
  text-indent: -0.3em;
  padding-left: 0.3em;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-order__container + .p-order__container {
    margin-top: 14rem;
  }
}
.l-en .p-wedding-gift__container {
  row-gap: 5rem;
}
.l-en .p-wedding-gift__body .c-txt {
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-order__container.-large-order .c-txt {
    line-height: 1.4;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-order__container.-large-order strong {
    font-weight: 500;
  }
}
.l-en .p-company__info {
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-company__info {
    font-size: 2.6rem;
  }
}
.l-en .p-company__info dl.u-mt {
  margin-top: 3rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-company__info dl.u-mt {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-company__info dl.u-spblock {
    display: block;
  }
}
.l-en .p-company__info dt {
  width: 24rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-company__info dt {
    width: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .l-en .p-company__info dt {
    font-weight: normal;
    margin-right: 0.3em;
    padding-right: 0.3em;
  }
  .l-en .p-company__info dt::after {
    content: "/";
    position: relative;
    left: 0.3em;
  }
}
.l-en .p-company__info dt,
.l-en .p-company__info dd {
  line-height: 1.4;
}
.l-en .p-general__block .c-txt {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-general__block .c-txt {
    font-size: 2.6rem;
  }
}
.l-en .p-general__block .c-txt + .c-txt {
  margin-top: 1.5em;
}
.l-en .p-general__container {
  padding-bottom: 23rem;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-general__container {
    padding-bottom: 0;
  }
}
.l-en .p-company__container {
  padding-bottom: 7rem;
}
.l-en .p-brands__container {
  padding-bottom: 10rem;
}
.l-en .p-contact,
.l-en .p-recruit {
  padding-bottom: 0;
}
.l-en .p-company__container,
.l-en .p-brands__container,
.l-en .p-contact,
.l-en .p-recruit {
  min-height: inherit;
}
@media screen and (max-width: 767.98px) {
  .l-en .p-company__container,
.l-en .p-brands__container,
.l-en .p-contact,
.l-en .p-recruit {
    padding-bottom: 10rem;
  }
}
/*# sourceMappingURL=style.css.map */