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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
  background: #f5f5f3;
}

/* =========================
   Elements
========================= */
h1, h2, h3, h4, h5, h6,
p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a.edit {
  text-decoration: underline;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

input, textarea {
  font: inherit;
}

.l-header {
  position: static;
  padding: 2.2rem 2.4rem 0;
}
.l-header__inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.l-header__menu {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.l-header__menu span {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: #222;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header__logo {
  width: 40%;
  max-width: 150px;
}
.l-header__logo a {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

body.is-menu-open .l-header__menu span:nth-child(1) {
  transform: translateY(0.6rem) rotate(45deg);
}
body.is-menu-open .l-header__menu span:nth-child(2) {
  opacity: 0;
}
body.is-menu-open .l-header__menu span:nth-child(3) {
  transform: translateY(-0.6rem) rotate(-45deg);
}

.p-footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 5px;
  z-index: 2;
}
.p-footer-fixed__text {
  font-size: 1.2rem;
  line-height: 1.4em;
  margin-left: auto;
}
@media (max-width: 767px) {
  .p-footer-fixed {
    width: 100%;
    padding: 5px;
  }
  .p-footer-fixed__text {
    font-size: 1.1rem;
    text-align: left;
  }
}

.p-side {
  position: fixed;
  top: 0;
  left: 0;
  width: 28rem;
  height: 100dvh;
  background: url(../assets/img/nav-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 20;
  padding: 5rem 2.4rem 3rem;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow: hidden;
}
.p-side__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.p-side__nav--main {
  margin-bottom: auto;
}
.p-side__nav--legal {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-side {
    width: 26rem;
    padding: 8rem 2rem 2.4rem;
  }
}

.p-side-menu,
.p-side-legal-menu {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.p-side-menu a,
.p-side-legal-menu a {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-side-legal-menu a {
  font-size: 1.3rem;
}

.p-side-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.l-site {
  min-height: 100vh;
  background: #f5f5f3;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 30;
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .p-side {
  transform: translateX(0);
}
body.is-menu-open .p-side-overlay {
  opacity: 1;
  visibility: visible;
}
body.is-menu-open .l-site {
  transform: translateX(28rem);
}
@media (max-width: 767px) {
  body.is-menu-open .l-site {
    transform: translateX(26rem);
  }
}

.p-side-user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.p-side-user__login {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.4rem;
}
.p-side-user__login.is-login {
  background: rgba(255, 255, 255, 0.15);
}
.p-side-user__icon img {
  width: 1.8rem;
  height: 1.8rem;
}
.p-side-user__cart {
  position: relative;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-side-user__cart img {
  width: 2rem;
  height: 2rem;
}
.p-side-user__badge {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 1.8rem;
  height: 1.8rem;
  background: #47abc1;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-side-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.l-site {
  min-height: 100vh;
  background: #f5f5f3;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 30;
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .p-side {
  transform: translateX(0);
}
body.is-menu-open .p-side-overlay {
  opacity: 1;
  visibility: visible;
}
body.is-menu-open .l-site {
  transform: translateX(28rem);
}
@media (max-width: 767px) {
  body.is-menu-open .l-site {
    transform: translateX(26rem);
  }
}

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

.p-home {
  display: flex;
  position: relative;
}
.p-home::after {
  content: "";
  width: 15%;
  max-width: 350px;
  height: calc(100% + 60px);
  background: url(../assets/img/illust-midnight.jpg);
  background-position: top;
  background-size: cover;
  position: absolute;
  right: 0;
  top: -60px;
}
@media (max-width: 767px) {
  .p-home::after {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .p-home {
    display: block;
  }
}

.p-home-fv {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10%;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .p-home-fv {
    flex-direction: column;
    align-items: normal;
    justify-content: center;
    gap: 4em;
    margin-left: 5%;
  }
}
.p-home-fv__image {
  width: 60%;
  max-width: 440px;
}
@media (max-width: 767px) {
  .p-home-fv__image {
    text-align: center;
  }
}
.p-home-fv__image img {
  width: 100%;
  max-width: 440px;
}
@media (max-width: 767px) {
  .p-home-fv__image img {
    max-width: 240px;
  }
}
.p-home-fv__sub {
  letter-spacing: 0.5em;
  font-size: 1.6em;
}
@media (max-width: 767px) {
  .p-home-fv__sub {
    font-size: 1.4em;
  }
}
.p-home-fv__title {
  font-size: 7em;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: normal;
  line-height: 1em;
  margin: 0.1em 0;
}
@media (max-width: 767px) {
  .p-home-fv__title {
    font-size: 6em;
  }
}
.p-home-fv__btn {
  display: inline-block;
  margin-top: 16px;
  background: #333333;
  color: #fff;
  padding: 8px 16px;
  font-size: 1.4em;
  text-decoration: none;
  position: relative;
  padding-right: 30px;
  margin-bottom: 3em;
}
.p-home-fv__btn::after {
  content: "→";
  color: #fff;
  display: block;
  position: absolute;
  right: 10px;
  top: 7px;
  transition: 0.3s;
}
.p-home-fv__btn:hover::after {
  right: 5px;
}

.p-single-product {
  background: #f5f5f3;
}

/* =================================
  Hero
================================= */
.p-product-hero {
  padding: 8.8rem 0;
  position: relative;
  margin-bottom: 8rem;
}
.p-product-hero::after {
  content: "";
  width: 20rem;
  height: calc(100% + 60px);
  background: url(../assets/img/illust-midnight.jpg) top center/cover no-repeat;
  position: absolute;
  top: -60px;
}
@media (min-width: 1200px) {
  .p-product-hero::after {
    right: calc((100vw - 1200px) / 2 + 5%);
  }
}
@media (max-width: 1199px) {
  .p-product-hero::after {
    width: 20%;
    right: 0;
  }
}
.p-product-hero__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.p-product-hero__content {
  max-width: 100%;
}
.p-product-hero__title {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 7rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.p-product-hero__line {
  width: 18.2rem;
  height: 0.1rem;
  background: #6f6f6f;
  margin: 3.2rem 0 2.2rem;
}
.p-product-hero__lead {
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-product-hero__lead p + p {
  margin-top: 0.2rem;
}
.p-product-hero__text {
  margin-top: 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-product-hero__text p + p {
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .p-product-hero {
    padding: 5rem 0;
  }
  .p-product-hero::after {
    width: 22%;
  }
  .p-product-hero__title {
    font-size: 5rem;
  }
  .p-product-hero__line {
    width: 14rem;
    margin: 2.4rem 0 1.8rem;
  }
  .p-product-hero__lead {
    font-size: 1.4rem;
  }
  .p-product-hero__text {
    width: 70%;
    margin-top: 2.8rem;
    font-size: 1.5rem;
  }
}

/* =================================
  Main
================================= */
.p-product-main {
  padding: 0 0 7.8rem;
}
.p-product-main__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 5%;
  align-items: start;
}
@media (max-width: 767px) {
  .p-product-main {
    padding: 0 0 5rem;
  }
  .p-product-main__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =================================
  Gallery
================================= */
.p-product-gallery__main {
  width: 100%;
  margin-bottom: 0.8rem;
}
.p-product-gallery__main img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.p-product-gallery__thumbs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
}
.p-product-gallery__thumb-item {
  width: calc((100% - 3.2rem) / 5);
}
.p-product-gallery__thumb-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.p-product-gallery__thumb-button.is-active {
  opacity: 1;
}
.p-product-gallery__thumb-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* =================================
  Summary
================================= */
.p-product-summary {
  padding-top: 0.2rem;
}
.p-product-summary__brand {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #708286;
  margin-bottom: 1.2rem;
}
.p-product-summary__title {
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 3.4rem;
}
.p-product-summary__cart {
  margin-bottom: 3.2rem;
}
.p-product-summary__price {
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}
.p-product-summary__price .woocommerce-Price-amount {
  font-size: inherit;
}
.p-product-summary__price .woocommerce-Price-currencySymbol {
  margin-right: 0.2rem;
}
.p-product-summary__price .tax_label,
.p-product-summary__price small,
.p-product-summary__price .includes_tax {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 0.8rem;
}
.p-product-summary__text {
  font-size: 1.4rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
}
.p-product-summary__text p + p {
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .p-product-summary__brand {
    font-size: 1.4rem;
  }
  .p-product-summary__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .p-product-summary__price {
    font-size: 2.8rem;
  }
  .p-product-summary__price .tax_label,
  .p-product-summary__price small,
  .p-product-summary__price .includes_tax {
    display: inline-block;
    font-size: 1.4rem;
    margin-left: 0.6rem;
  }
  .p-product-summary__text {
    font-size: 1.5rem;
  }
}

/* =================================
  Woo customize
================================= */
.p-product-summary .variations_form {
  margin: 0;
}
.p-product-summary table.variations {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2.4rem;
}
.p-product-summary table.variations tbody {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-product-summary table.variations tr {
  display: block;
}
.p-product-summary table.variations th,
.p-product-summary table.variations td {
  display: block;
  padding: 0;
  border: 0;
  text-align: left;
}
.p-product-summary table.variations th.label {
  margin-bottom: 1rem;
}
.p-product-summary table.variations th.label label {
  display: inline-block;
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
}
.p-product-summary table.variations td.value select {
  width: 100%;
  height: 5.2rem;
  padding: 0 1.4rem;
  border: 0.1rem solid #c9c9c9;
  border-radius: 0;
  background: #fff;
  font-size: 1.4rem;
}
.p-product-summary .reset_variations {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #777;
}
.p-product-summary .single_variation_wrap {
  margin-top: 2.4rem;
}
.p-product-summary .woocommerce-variation-price {
  display: none;
}
.p-product-summary .quantity {
  display: none !important;
}
.p-product-summary .single_add_to_cart_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 7.2rem;
  border: 0;
  border-radius: 1.2rem;
  background: #47abc1;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
  margin-top: 0;
}
.p-product-summary .single_add_to_cart_button:disabled, .p-product-summary .single_add_to_cart_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.p-product-summary .woocommerce-variation-add-to-cart,
.p-product-summary .cart {
  display: block;
  margin: 0;
}
@media (max-width: 767px) {
  .p-product-summary table.variations {
    margin-bottom: 2rem;
  }
  .p-product-summary table.variations th.label label {
    font-size: 1.4rem;
  }
  .p-product-summary table.variations td.value select {
    height: 4.8rem;
    font-size: 1.5rem;
  }
  .p-product-summary .single_add_to_cart_button {
    min-height: 6.2rem;
    font-size: 1.7rem;
    border-radius: 1rem;
  }
}

/* =================================
  Content
================================= */
.p-product-content {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 9.8rem;
}
.p-product-content__inner {
  width: 100%;
}
.p-product-content__body {
  width: 100%;
  padding-top: 1rem;
}
.p-product-content__body h2,
.p-product-content__body h3 {
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
  font-weight: 400;
  color: #506f74;
}
.p-product-content__body h2 {
  font-size: 5rem;
  line-height: 1.35;
  margin: 0 0 3rem;
}
.p-product-content__body h3 {
  font-size: 3.2rem;
  line-height: 1.45;
  margin: 6rem 0 2.4rem;
}
.p-product-content__body p {
  font-size: 1.4rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
}
.p-product-content__body img {
  display: block;
  margin: 3rem 0;
  max-width: 100%;
  height: auto;
}
.p-product-content__body hr {
  border: 0;
  border-top: 0.1rem solid #d8dede;
  margin: 7rem 0 6rem;
}
@media (max-width: 767px) {
  .p-product-content {
    padding: 0 0 6rem;
  }
  .p-product-content__body h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .p-product-content__body h3 {
    font-size: 2.4rem;
    margin: 4rem 0 1.8rem;
  }
  .p-product-content__body p {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
  }
  .p-product-content__body hr {
    margin: 4.8rem 0 4rem;
  }
}

/* =================================
  Related
================================= */
.p-product-related {
  padding: 0 0 12rem;
}
.p-product-related__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.p-product-related__title {
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.2;
  color: #506f74;
  margin-bottom: 2.8rem;
}
.p-product-related__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.p-product-related__thumb img {
  width: 100%;
  aspect-ratio: 1/1.4;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-product-related {
    padding: 0 0 7rem;
  }
  .p-product-related__title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
  .p-product-related__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}

/* =================================
  Variation fake UI
================================= */
.p-product-summary .variations select {
  display: none;
}

.p-variation-ui {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.p-variation-ui.is-color {
  gap: 1rem;
}
.p-variation-ui.is-size {
  gap: 0.8rem;
}
.p-variation-ui__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}
.p-variation-ui__sr {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.p-variation-ui__swatch {
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 0.1rem solid #b9b9b9;
  background: #ddd;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.is-color-chip {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: transparent;
  border: 0;
}
.is-color-chip.is-active .p-variation-ui__swatch {
  border-color: #4d5f64;
  transform: scale(1.08);
  box-shadow: 0 0 0 0.1rem #4d5f64 inset;
}

.is-text-chip {
  min-width: 10.2rem;
  height: 4.4rem;
  padding: 0 1.8rem;
  border: 0.1rem solid #cfcfcf;
  background: #fff;
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
  font-size: 2rem;
  line-height: 1;
  color: #222;
}
.is-text-chip.is-active {
  border-color: #4d5f64;
  background: #f0f4f4;
}

.p-variation-ui__swatch[data-color=Blue] {
  background: #4a82b8 !important;
}

.p-variation-ui__swatch[data-color=Gray] {
  background: #d9dee2 !important;
}

.p-product-summary form.cart .single_add_to_cart_button {
  width: 100%;
  min-height: 6rem;
  background: #47abc1 !important;
  color: #fff !important;
  font-size: 1.4rem !important;
  letter-spacing: 0.08em;
  font-weight: 400;
  border: 0;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.p-product-summary form.cart .single_add_to_cart_button:disabled, .p-product-summary form.cart .single_add_to_cart_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.p-page {
  padding: 8rem 0 6rem;
  background: #f5f5f3;
  min-height: 100vh;
}
.p-page__inner {
  width: 92%;
  max-width: 600px;
  margin: 0 4%;
}
.p-page__inner h3 {
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 1px dashed #333;
  margin-top: 1em;
}
.p-page__inner p {
  font-size: 1.4rem;
  margin: 1em 0;
}
@media (max-width: 767px) {
  .p-page {
    padding: 5.6rem 0 4rem;
  }
}

/* My Account 横タブ */
.woocommerce-account .woocommerce {
  display: block;
}
.woocommerce-account {
  /* ナビ全体 */
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 3.2rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  flex: 0 0 auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: #506f74;
  color: #fff;
  border-color: #506f74;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 0 2rem;
  border: 0.1rem solid #d6d6d6;
  border-radius: 999px;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  color: #222;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: #506f74;
  color: #fff;
  border-color: #506f74;
}
.woocommerce-account {
  /* 本文 */
}
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100%;
}

address {
  font-size: 1.4em;
  text-decoration: none;
}

.woocommerce-Address-title h2 {
  border-bottom: 1px solid #333333;
  margin-bottom: 5px;
}

/*# sourceMappingURL=style.css.map */
