/* var */
/* common */
body {
  font-size: 1rem;
  font-family: "Zen Kaku Gothic Antique", "Jost", sans-serif;
  min-width: 960px;
  min-height: 100svh;
  overflow-x: auto;
}
@media screen and (max-width: 736px) {
  body {
    min-width: auto;
    overflow-x: none;
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

a {
  text-decoration: none;
  transition: opacity 0.2s linear;
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

p {
  font-size: 0.875rem;
}

.zoom-box {
  display: block;
  overflow: hidden;
}
.zoom-box .zoom {
  display: block;
  transition: 0.5s;
}
.zoom-box .zoom:hover {
  transform: scale(1.1);
}

.pc-s {
  display: none;
}
@media screen and (max-width: 1280px) {
  .pc-s {
    display: block;
  }
}

@media screen and (min-width: 737px) {
  .br-pc {
    display: block !important;
  }
}
@media screen and (max-width: 736px) {
  .br-pc {
    display: none !important;
  }
}

@media screen and (min-width: 737px) {
  .br-sp {
    display: none !important;
  }
}
@media screen and (max-width: 736px) {
  .br-sp {
    display: block !important;
  }
}

@media screen and (min-width: 737px) {
  .pc-show {
    display: block !important;
  }
}
@media screen and (max-width: 736px) {
  .pc-show {
    display: none !important;
  }
}

@media screen and (min-width: 737px) {
  .sp-show {
    display: none !important;
  }
}
@media screen and (max-width: 736px) {
  .sp-show {
    display: block !important;
  }
}

.preload {
  transition: none !important;
}

/* header */
header {
  position: fixed;
  width: 100%;
  min-width: 960px;
  height: 60px;
  color: #fff;
  background-color: #503535;
  padding: 0 50px;
  z-index: 999;
}
@media screen and (max-width: 1280px) {
  header {
    padding: 0 40px;
  }
}
@media screen and (max-width: 736px) {
  header {
    min-width: 100%;
    padding: 0 3.84%;
  }
}
header .nav-header {
  position: relative;
  z-index: 99;
  width: 100%;
  background-color: #503535;
}
header .nav-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
header h1 {
  font-size: 0.875rem;
  font-family: "Jost";
  font-weight: 500;
  letter-spacing: 2px;
  width: 60%;
}
@media screen and (max-width: 1280px) {
  header h1 {
    width: auto;
  }
}
@media screen and (max-width: 736px) {
  header h1 {
    font-size: 0.625rem;
    width: 100%;
    letter-spacing: 1px;
  }
}
header .nav-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 50px;
}
@media screen and (max-width: 1280px) {
  header .nav-header__menu {
    width: 60%;
  }
}
@media screen and (max-width: 736px) {
  header .nav-header__menu {
    display: none;
  }
}
header .nav-header__menu li {
  font-size: 0.875rem;
}
@media screen and (max-width: 1280px) {
  header .nav-header__menu li {
    font-size: 0.625rem;
  }
}
header .nav-header__menu li a {
  font-weight: 500;
  padding: 0 0 0.3em 0;
  position: relative;
}
header .nav-header__menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid;
  border-color: inherit;
  transform: scaleX(0);
  transition: 0.3s;
  transform-origin: top left;
}
header .nav-header__menu li a:hover:after {
  transform: scaleX(1);
}
header .nav-header__menu li.nav-catalg a {
  display: block;
  color: #503535;
  background: #fff;
  border-radius: 23px;
  padding: 8px 20px;
  border: 1px solid #503535;
  box-sizing: border-box;
  transition: 0.3s;
}
header .nav-header__menu li.nav-catalg a::after {
  border: none;
}
header .nav-header__menu li.nav-catalg a:hover {
  color: #fff;
  background: #503535;
  border: 1px solid #fff;
}
header .nav-header__menu li.nav-catalg a:hover .dli-chevron-round-right {
  color: #fff;
}
header .nav-header__menu li.nav-catalg a .dli-chevron-round-right {
  display: inline-block;
  color: #503535;
  line-height: 37px;
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 0 0 4px;
  transform: rotate(45deg);
  transition: 0.5s;
}
header .nav-header__menu li.nav-catalg a .dli-chevron-round-right::before,
header .nav-header__menu li.nav-catalg a .dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
header .nav-header__menu li.nav-catalg a .dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
header .nav-header__menu li.nav-catalg a .dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
header .nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
@media screen and (min-width: 737px) {
  header .nav-header__toggle {
    display: none;
  }
}
header .nav-header__toggle-line {
  display: block;
  width: 50px;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease;
  transform-origin: center;
}
header .nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}
header .nav-header__toggle.drawer-opened .nav-header__toggle-line:nth-child(1) {
  transform: translate(0, 1px) rotate(10deg);
}
header .nav-header__toggle.drawer-opened .nav-header__toggle-line:nth-child(2) {
  opacity: 0;
  margin: 0;
}
header .nav-header__toggle.drawer-opened .nav-header__toggle-line:nth-child(3) {
  transform: translate(0, -1px) rotate(-10deg);
}

/* nav-drawer */
.nav-drawer {
  width: 100%;
  height: calc(100vh - 60px);
  position: fixed;
  top: 60px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  transform: translateY(-100vh);
  transition: all 800ms cubic-bezier(1, 0, 0, 1);
}
@media screen and (min-width: 737px) {
  .nav-drawer {
    display: none;
  }
}
.nav-drawer.drawer-opened {
  transform: translateY(0);
}
.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #503535;
}
.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 60px 0 0 0;
  list-style: none;
  overflow-y: auto;
}
.nav-drawer__menu:nth-child(2) {
  padding: 40px 0 0 0;
}
.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: "Jost", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1em 2em;
  text-decoration: none;
}
.nav-drawer__link-sub {
  color: #C39696;
}
.nav-drawer__link-catalog {
  background: #fff;
  width: 17em;
  color: #503535;
  border-radius: 2em;
  margin: 0 auto 40px auto;
}
.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}
.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}

/* main */
/* bnr */
.bnr__container {
  padding: 0 0 13.54vw 0;
}
@media screen and (max-width: 736px) {
  .bnr__container {
    padding: 0 0 2vw 0;
  }
  .bnr__container:last-child {
    padding: 0 0 18vw 0;
  }
}
.bnr__contents {
  display: flex;
  gap: 1.3%;
}
@media screen and (max-width: 736px) {
  .bnr__contents {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 3%;
  }
}
.bnr__contents__item {
  position: relative;
}
@media screen and (max-width: 736px) {
  .bnr__contents__item {
    width: 100%;
    margin: 0 0 3%;
  }
}
@media screen and (max-width: 736px) {
  .bnr__contents__item:first-child .bnr__contents__item__text {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .bnr__contents__item:first-child::after {
    display: none;
  }
}
.bnr__contents__item::after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  opacity: 1;
  background: linear-gradient(transparent, rgba(121, 121, 121, 0.4) 80%);
  mix-blend-mode: multiply;
  z-index: 10;
}
@media screen and (max-width: 736px) {
  .bnr__contents__item::after {
    background: linear-gradient(transparent, rgba(121, 121, 121, 0.6) 80%);
  }
}
.bnr__contents__item__text {
  pointer-events: none;
  position: absolute;
  text-align: center;
  bottom: 3%;
  width: 100%;
  color: #fff;
  font-size: 0.98vw;
  font-family: "Jost";
  font-weight: 400;
  letter-spacing: 1.5px;
  z-index: 11;
}
@media screen and (max-width: 736px) {
  .bnr__contents__item__text {
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0 10px;
    bottom: 6px;
    left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 736px) {
  .bnr__contents__item.col2 {
    width: 48.5%;
  }
}
.bnr_campaign {
  width: 48.125vw;
  margin: 2.864vw 0 9.37vw 0;
}
.bnr_campaign a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 736px) {
  .bnr_campaign {
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  .bnr__buttons {
    margin: 20% 0;
  }
}
.bnr__button {
  display: block;
  padding: 1.041vw 0;
}
@media screen and (max-width: 736px) {
  .bnr__button {
    padding: 3vw 0;
    text-align: center;
  }
}
.bnr__button a {
  display: inline-block;
  padding: 0.8em 1.7em;
  background: #F4F1EA;
  color: #503535;
  font-size: max(1.1979vw, 10px);
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 3em;
  border: 1px solid #503535;
  transition: 0.3s;
}
@media screen and (max-width: 736px) {
  .bnr__button a {
    font-size: 3.3vw;
  }
}
.bnr__button a:hover {
  color: #F4F1EA;
  background: #503535;
  border-color: #F4F1EA;
}
.bnr__button__catalog a {
  padding: 1.3em 3em;
  border-radius: 0;
  font-size: 1.5625vw;
}
@media screen and (max-width: 736px) {
  .bnr__button__catalog a {
    padding: 0.6em 1.6em;
    font-size: 4.35vw;
  }
}
@media screen and (max-width: 736px) {
  .bnr__button__catalog {
    margin: 0 auto;
  }
}

.collection-page .bnr__container {
  padding: 0 0 9.3vw 0;
}

.fade-in, .fade-in-child {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.fade-in.fade-in-pos0 {
  transform: translateY(0);
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.scroll .fade-in-child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.scroll.fade-in-delay0, .scroll .fade-in-delay0 {
  transition-delay: 0;
}
.scroll.fade-in-delay0_5, .scroll .fade-in-delay0_5 {
  transition-delay: 0.5s;
}
.scroll.fade-in-delay1, .scroll .fade-in-delay1 {
  transition-delay: 1s;
}
.scroll.fade-in-delay2, .scroll .fade-in-delay2 {
  transition-delay: 1.4s;
}
.scroll.fade-in-delay2, .scroll .fade-in-delay3 {
  transition-delay: 1.8s;
}

/* footer */
footer {
  padding: 50px 0;
  color: #fff;
  background-color: #503535;
  text-align: center;
  font-size: 0.813rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
}
@media screen and (max-width: 736px) {
  footer {
    padding: 24.35vw 0 14.61vw;
  }
}
footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0 50px;
  margin: 0;
  padding: 0 0 40px 0;
}
@media screen and (max-width: 736px) {
  footer ul {
    gap: 0 29px;
  }
}
footer ul li {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 736px) {
  footer ul li {
    width: 45px;
    height: 45px;
  }
}
footer ul li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 736px) {
  footer p {
    font-size: 0.625rem;
  }
}/*# sourceMappingURL=common.css.map */