@charset "utf-8";

:root {
  --color-gold: #948046;
  --color-brown: #40210f;
  --color-light-brown: #6a3906;
  --color-baige: #faf3e4;
  --font-jp: "Zen Old Mincho", serif;
  --font-en: "EB Garamond", serif;
}

/* ===================================================
- Layout
=================================================== */
.l-main {
  position: relative;
  background: repeating-linear-gradient(
    90deg,
    rgba(169, 129, 98, 0.7) 0 1px,
    #dacdb9 1px 16px
  );
  color: var(--color-light-brown);
  z-index: 1;
}

.l-container {
  padding-inline: 5.333333333vw;
}

@media screen and (min-width: 769px) {
  .l-contents {
    position: relative;
    max-width: 482px;
    margin: auto;
  }

  .l-contents::before,
  .l-contents::after {
    content: "";
    position: fixed;
    top: 0;
    width: calc((100% - 482px) / 2);
    height: 100%;
  }

  .l-contents::before {
    left: 0;
    background: url(../img/pc-bg-left.jpg) no-repeat center top / cover;
  }

  .l-contents::after {
    right: 0;
    background: url(../img/pc-bg-right.jpg) no-repeat center bottom / cover;
  }

  .l-main {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .l-container {
    padding-inline: 25px;
  }
}

/* ===================================================
- Common
=================================================== */
.c-heading {
  position: relative;
}

.c-heading__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.c-heading__title {
  color: #fff;
  text-align: center;
  font-family: var(--font-en);
  font-size: 10.8vw;
  font-weight: 600;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 1);
}

.c-heading__title.-small {
  margin-top: -0.05em;
  font-size: 9.73333333vw;
  line-height: 1.05;
}

.c-heading__text {
  color: #fff;
  text-align: center;
  font-size: 3.266666667vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

@media screen and (min-width: 769px) {
  .c-heading__title {
    font-size: 52px;
  }

  .c-heading__title.-small {
    font-size: 47px;
  }

  .c-heading__text {
    font-size: 16px;
  }
}

/* ===================================================
- Project
=================================================== */
.p-hero {
  padding-block: 5.33333333vw 8vw;
}

.p-hero__inner {
  position: relative;
}

.p-hero__inner::before {
  content: "";
  position: absolute;
  left: 2.66666667vw;
  bottom: 14.93333333vw;
  width: 2.13333333vw;
  height: 15.81333333vw;
  background: url(../img/scroll-bar.png) no-repeat center / cover;
}

.p-hero__bg {
  display: block;
  width: 85.46666667vw;
  margin: auto;
}

.p-hero__slider {
  position: absolute;
  bottom: 1vw;
  left: 0;
  right: 0;
  width: 83.06666667vw;
  margin: auto;
  mask-image: url(../img/hero-mask.png);
  mask-size: auto 100%;
}

.p-hero__logo {
  position: absolute;
  bottom: 5.33333333vw;
  left: 0;
  right: 0;
  width: 56.66666667vw;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .p-hero {
    padding-block: 25px 38.5px;
  }

  .p-hero__inner::before {
    left: 13px;
    bottom: 72px;
    width: 10px;
    height: 76px;
  }

  .p-hero__bg {
    width: 412px;
  }

  .p-hero__slider {
    bottom: 4.8px;
    width: 400px;
  }

  .p-hero__logo {
    bottom: 25.7px;
    width: 273px;
  }
}

.p-about {
  padding-bottom: 9.6vw;
  background-color: #fff;
  border-top: 4px solid var(--color-gold);
  color: var(--color-brown);
}

.p-about__read {
  margin-top: 6.666666667vw;
  font-size: 5.333333333vw;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: -0.03em;
}

.p-about__text {
  margin-top: 2.4vw;
  font-size: 3.46666667vw;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.8;
}

.p-about__buttonWrap {
  margin-top: 9.333333333vw;
  text-align: center;
}

.p-about__button {
  padding: 2.4vw 5.06666667vw 2.4vw 6.66666667vw;
  background-color: var(--color-gold);
  color: #fff;
  border-radius: 5vw;
  font-size: 3.73333333vw;
  font-weight: 700;
}

.p-about__button img {
  margin-left: 8px;
  width: 2.8vw;
}

@media (any-hover: hover) {
  .p-about__button {
    transition: opacity 0.3s;
  }

  .p-about__button:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .p-about {
    padding-bottom: 46px;
  }

  .p-about__read {
    margin-top: 32px;
    font-size: 25px;
  }

  .p-about__text {
    margin-top: 11px;
    font-size: 16px;
  }

  .p-about__buttonWrap {
    margin-top: 45px;
  }

  .p-about__button {
    padding: 11px 24px 11px 32px;
    border-radius: 24px;
    font-size: 18px;
  }

  .p-about__button img {
    width: 13px;
  }
}

.p-setContents {
  border-top: 4px solid var(--color-gold);
}

.p-setContents__container {
  padding-top: 5.33333333vw;
}

.p-setContents__block {
  position: relative;
  width: calc(100% - 5.33333333vw);
  margin: 13.86666667vw auto;
  padding-block: 2vw 4vw;
  background: url(../img/bg-middle.png) repeat-y center / 100%;
}

.p-setContents__block::before,
.p-setContents__block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 13.86666667vw;
}

.p-setContents__block::before {
  top: -13vw;
  background: url(../img/bg-top.png) no-repeat center top / 100%;
}

.p-setContents__block::after {
  bottom: -13vw;
  background: url(../img/bg-bottom.png) no-repeat center bottom / 100%;
}

.p-setContents__block + .p-setContents__block {
  margin-top: 32vw;
}

.p-setContents__heading01 {
  display: block;
  width: 55.73333333vw;
  margin: auto;
}

.p-setContents__read {
  margin-top: 5.33333333vw;
  text-align: center;
  font-size: 3.86666667vw;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.6;
}

.p-setContents__image {
  margin-left: 10.13333333vw;
  width: 77.97333333vw;
}

.p-setContents__text {
  width: 75.33333333vw;
  margin: 4.266666667vw auto 0;
  font-size: 3.46666667vw;
  line-height: 1.5;
  letter-spacing: -0.05em;
}

.p-setContents__heading02 {
  display: block;
  width: 33.6vw;
  margin: auto;
}

.p-products__item {
  width: calc(100% - 14.93333334vw);
  margin-top: 9.6vw;
  margin-inline: auto;
}

.p-products__item + .p-products__item {
  padding-top: 9.6vw;
  border-top: 1px solid var(--color-gold);
}

.p-products__image01 {
  width: 76vw;
  margin-left: -4vw;
}

.p-products__image02 {
  width: 75.2vw;
  margin-left: -3vw;
  margin-bottom: -2vw;
}

.p-products__image03 {
  width: 79.06666667vw;
  margin-left: -6.5vw;
}

.p-products__name {
  margin-top: -5vw;
  text-align: center;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.p-products__text {
  margin-top: 0.5em;
  padding-inline: 1.73333333vw;
  font-size: 3.46666667vw;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.65;
}

.p-products__bnr {
  position: relative;
  display: block;
  width: 60vw;
  margin: 24.26666667vw auto 13.33333333vw;
  z-index: 0;
}

.p-products__bnr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}

@media (any-hover: hover) {
  .p-products__bnr img {
    transition: opacity 0.3s;
  }

  .p-products__bnr:hover img {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .p-setContents__container {
    padding-top: 25px;
  }

  .p-setContents__block {
    width: 456px;
    margin: 66px auto;
    padding-block: 19px;
  }

  .p-setContents__block::before,
  .p-setContents__block::after {
    height: 66px;
  }

  .p-setContents__block::before {
    top: -66px;
  }

  .p-setContents__block::after {
    bottom: -66px;
  }

  .p-setContents__block + .p-setContents__block {
    margin-top: 154px;
  }

  .p-setContents__heading01 {
    width: 268px;
  }

  .p-setContents__read {
    margin-top: 25px;
    font-size: 18px;
  }

  .p-setContents__image {
    margin-left: 48px;
    width: 376px;
  }

  .p-setContents__text {
    width: 363px;
    margin: 20px auto 0;
    font-size: 16px;
  }

  .p-setContents__heading02 {
    width: 162px;
  }

  .p-products__item {
    width: 384px;
    margin-top: 46px;
  }

  .p-products__item + .p-products__item {
    padding-top: 46px;
  }

  .p-products__image01 {
    width: 366px;
    margin-left: -19px;
  }

  .p-products__image02 {
    width: 362px;
    margin-left: -14px;
    margin-bottom: -10px;
  }

  .p-products__image03 {
    width: 381px;
    margin-left: -31px;
  }

  .p-products__name {
    margin-top: -24px;
    font-size: 23px;
  }

  .p-products__text {
    padding-inline: 8px;
    font-size: 16px;
  }

  .p-products__bnr {
    width: 289px;
    margin: 117px auto 64px;
  }
}

.p-order {
  padding-block: 6.4vw 12.53333333vw;
  background-color: #fff;
}

.p-order__label {
  position: relative;
  display: block;
  width: 74.4vw;
  margin: 0 auto -7vw;
}

.p-order__block {
  padding: 5.33333333vw 4.266666667vw;
  background-color: var(--color-baige);
}

.p-order__title {
  display: block;
  width: 60vw;
  margin: auto;
}

.p-order__list {
  margin-top: 3vw;
  font-size: 2.53333333vw;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1.8;
}

.p-order__list span {
  letter-spacing: 0em;
}

.p-order__sample {
  width: calc(100% + 2.53333333vw);
  margin-top: 2vw;
  margin-left: -2.53333333vw;
}

.p-order__price {
  display: block;
  margin: 4vw auto;
  width: 66vw;
}

.p-order__button {
  position: relative;
  display: block;
  width: fit-content;
  margin: auto;
  padding: 2.93333333vw 13.06666667vw 2.93333333vw 15.2vw;
  background: var(--color-gold);
  color: #fff;
  border-radius: 5vw;
  font-size: 4.8vw;
  font-weight: 700;
}

.p-order__button::before,
.p-order__button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-order__button::before {
  left: 8vw;
  width: 5.4vw;
  height: 5.266666667vw;
  background: url(../img/icon-cart.png) no-repeat center / cover;
}

.p-order__button::after {
  right: 8vw;
  width: 2.57333333vw;
  height: 3.77333333vw;
  background: url(../img/arrow-wh.png) no-repeat center / cover;
}

.p-order__attr {
  margin-top: 3.73333333vw;
  text-align: center;
  font-size: 2.93333333vw;
  font-weight: 400;
  letter-spacing: -0.14em;
}

@media (any-hover: hover) {
  .p-order__button {
    transition: opacity 0.3s;
  }

  .p-order__button:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .p-order {
    padding-block: 30px 60px;
  }

  .p-order__label {
    width: 358px;
    margin: 0 auto -34px;
  }

  .p-order__block {
    padding: 25px 20px;
  }

  .p-order__title {
    width: 289px;
  }

  .p-order__list {
    margin-top: 14px;
    font-size: 12px;
  }

  .p-order__sample {
    width: calc(100% + 12px);
    margin-top: 9px;
    margin-left: -12px;
  }

  .p-order__price {
    margin: 19px auto;
    width: 318px;
  }

  .p-order__button {
    padding: 14px 62px 14px 73px;
    border-radius: 30px;
    font-size: 23px;
  }

  .p-order__button::before {
    left: 38px;
    width: 26px;
    height: 25px;
  }

  .p-order__button::after {
    right: 38px;
    width: 12px;
    height: 18px;
  }

  .p-order__attr {
    margin-top: 18px;
    font-size: 14px;
  }
}

.p-use__list {
  padding-block: 10.66666667vw;
  overflow: hidden;
}

.p-use__item.-image01 {
  width: 103.2vw;
  margin-left: -1.6vw;
}

.p-use__item.-image02 {
  width: 97.546666667vw;
  margin-left: 1.6vw;
  margin-top: 4vw;
}

.p-use__item.-image03 {
  width: 102.12vw;
  margin-left: -1.5vw;
  margin-top: 5vw;
}

@media screen and (min-width: 769px) {
  .p-use__list {
    padding-block: 51px;
  }

  .p-use__item.-image01 {
    width: 497px;
    margin-left: -7px;
  }

  .p-use__item.-image02 {
    width: 470px;
    margin-left: 7px;
    margin-top: 19px;
  }

  .p-use__item.-image03 {
    width: 492px;
    margin-left: -7px;
    margin-top: 24px;
  }
}

.p-footer {
  padding: 9.33333333vw 5.33333333vw;
  background-color: var(--color-gold);
  color: #fff;
}

.p-footer__heading {
  width: 74vw;
  margin: 0 auto 8vw;
  border-bottom: 1px solid #b6a480;
}

.p-footer__read {
  text-align: center;
  font-size: 3.46666667vw;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.1em;
}

.p-footer__read > span {
  position: relative;
  padding-inline: 4vw;
}

.p-footer__read > span::before,
.p-footer__read > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 84%;
  background-color: #fff;
}

.p-footer__read > span::before {
  left: 0;
  rotate: -35deg;
}

.p-footer__read > span::after {
  right: 0;
  rotate: 35deg;
}

.p-footer__read span.-en {
  position: static;
  padding: 0;
  letter-spacing: 0;
}

.p-footer__read > span.-en::before,
.p-footer__read > span.-en::after {
  content: none;
}

.p-footer__ig {
  position: relative;
  width: 18.66666667vw;
  margin: 4vw auto 8.26666667vw;
  z-index: 1;
}

/* .p-footer__ig::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  height: 88%;
  margin: auto;
  background-color: #fff;
  z-index: -1;
  border-radius: 10vw;
} */

.p-footer__snsList {
  display: flex;
  justify-content: center;
  gap: 5.33333333vw;
}

.p-footer__snsItem {
  position: relative;
  width: 9.33333333vw;
  z-index: 1;
}

/* .p-footer__snsItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10vw;
  z-index: -1;
} */

.p-footer__navList {
  display: grid;
  gap: 4.66666667vw;
  width: fit-content;
  margin: 9.33333333vw auto 12vw;
}

.p-footer__navItem {
  font-size: 3.46666667vw;
  font-weight: 700;
}

.p-footer__logo {
  width: 16.26666667vw;
  margin: auto;
}

.p-footer__copy {
  margin-top: 2vw;
  text-align: center;
  font-size: max(10px, 2.44933333vw);
}

@media (any-hover: hover) {
  .p-footer__ig img,
  .p-footer__snsItem img,
  .p-footer__navItem a {
    transition: opacity 0.3s;
  }

  .p-footer__ig:hover img,
  .p-footer__snsItem:hover img,
  .p-footer__navItem a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .p-footer {
    padding: 45px 25px;
  }

  .p-footer__heading {
    width: 347px;
    margin: 0 auto 38px;
  }

  .p-footer__read {
    font-size: 16px;
  }

  .p-footer__read > span {
    padding-inline: 19px;
  }

  .p-footer__ig {
    width: 90px;
    margin: 19px auto 40px;
  }

  .p-footer__snsList {
    gap: 25px;
  }

  .p-footer__snsItem {
    width: 45px;
  }

  .p-footer__navList {
    gap: 22px;
    margin: 45px auto 58px;
  }

  .p-footer__navItem {
    font-size: 16px;
  }

  .p-footer__logo {
    width: 78px;
  }

  .p-footer__copy {
    margin-top: 10px;
    font-size: 11px;
  }
}

/* ===================================================
- modal
=================================================== */
.p-modalBg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.p-modalContent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 81.86666667vw;
  height: fit-content;
  max-height: 90vh;
  margin: auto;
  padding: 1.5vw;
  background-color: #fff;
  border: none;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
  overflow: auto;
}

.p-modal__inner {
  width: 100%;
  height: fit-content;
  margin: auto;
  padding: 10vw 5.26666667vw 11.33333333vw;
  border: 2px solid var(--color-brown);
  overflow: auto;
}

.p-modalClose {
  position: absolute;
  top: 3.5%;
  right: 5%;
  width: 4.85%;
  z-index: 1;
}

.p-modal__logo {
  width: 37.84vw;
  margin: auto;
}

.p-modal__text {
  margin-top: 4.66666667vw;
  color: var(--color-brown);
  font-size: 3.4vw;
  line-height: 1.725;
}

.p-modal__button {
  display: block;
  width: 56vw;
  margin: 6.66666667vw auto 0;
  padding-inline: 4vw 7.46666666vw;
  background: url(../img/arrow-br.png) no-repeat right 5vw center / 3.06666667vw;
  color: var(--color-brown);
  border: 1px solid var(--color-brown);
  font-size: 3.73333333vw;
  font-weight: 700;
  line-height: 8.53333333vw;
}

@media (any-hover: hover) {
  .p-modal__button {
    transition: opacity 0.3s;
  }

  .p-modal__button:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .p-modalBg {
    right: 0;
    width: 482px;
    margin: auto;
  }

  .p-modalContent {
    width: 380px;
    padding: 8px;
  }

  .p-modalClose {
    top: 22px;
    right: 20px;
    width: 20px;
  }

  .p-modal__inner {
    padding: 48px 24px 54px;
  }

  .p-modal__logo {
    width: 182px;
  }

  .p-modal__text {
    margin-top: 22px;
    font-size: 16px;
  }

  .p-modal__button {
    width: 258px;
    margin: 32px auto 0;
    padding-inline: 19px 36px;
    background: url(../img/arrow-br.png) no-repeat right 24px center / 15px;
    font-size: 18px;
    line-height: 41px;
  }
}

/* ============================================================
パララックス
============================================================ */
.p-fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
  visibility: hidden;
  transition-delay: 0.1s;
}

.p-fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
