@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  color: #000;
  word-break: normal;
  line-break: strict;
  height: 100%;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  height: 100%;
  margin: 0 auto;
}

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

img {
  border: 0;
  margin: 0;
  display: block;
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

figure {
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}

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

th, td {
  border: none;
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .pc {
    display: none !important;
  }
}
/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.8474576271vw;
  }
}
@media (min-width: 1180px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
l-header
--------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 40px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
    max-width: 600px;
  }
}

/* --------------------------------
l-wrapper
----------------------------------- */
.l-wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* --------------------------------
l-main
----------------------------------- */
.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .l-main {
    margin-top: 6rem;
  }
}

.l-main--lower {
  padding-bottom: 8rem;
}
@media only screen and (min-width: 768px) {
  .l-main--lower {
    padding-bottom: 16rem;
  }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  width: 3.2rem;
  height: 100%;
  margin-left: auto;
  position: relative;
  display: block;
  z-index: 999;
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 0.2rem;
  background-color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 44%;
  width: 3.2rem;
}

.c-hamburger span:nth-child(2) {
  top: 56%;
  width: 2.2rem;
}

.c-hamburger.is-step01 span:nth-child(1) {
  top: 50%;
  background-color: #fff;
}

.c-hamburger.is-step01 span:nth-child(2) {
  top: 50%;
  background-color: #fff;
}

.c-hamburger.is-step02 span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 2.2rem;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .c-hamburger.is-step02 span:nth-child(1) {
    width: 4rem;
  }
}

.c-hamburger.is-step02 span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 2.2rem;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .c-hamburger.is-step02 span:nth-child(2) {
    width: 4rem;
  }
}

/* ------------------------------------------------
c-btn
--------------------------------------------------- */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  padding-left: 0.1rem;
}
.c-btn span {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media (any-hover: hover) {
  a:has(.c-btn):hover .c-btn {
    color: #000;
    background-color: #a2865e;
  }
  a:has(.c-btn):hover .c-btn::before {
    opacity: 1;
  }
  a:has(.c-btn):hover .c-btn::after {
    -webkit-transform: translate(-50%, -50%) scale(100%);
            transform: translate(-50%, -50%) scale(100%);
  }
}
.c-btn--long {
  width: 12rem;
  height: 4rem;
  border-radius: 5rem;
}
@media only screen and (min-width: 768px) {
  .c-btn--long {
    width: 16rem;
    height: 5rem;
    padding-top: 0;
    padding-left: 0.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-btn--long span {
    font-size: 1.6rem;
  }
}

.c-btn--ja {
  padding-top: 0.3rem;
  background-color: #000;
  color: #fff;
}
.c-btn--ja span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1.1rem, 8px);
}

@media (any-hover: hover) {
  .c-btn--long:hover {
    color: #000;
    background-color: #a2865e;
  }
  .c-btn--ja:hover {
    color: #000;
    background-color: #a2865e;
  }
}
/* ------------------------------------------------
c-link-btn
--------------------------------------------------- */
.c-link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25rem;
  height: 4rem;
  border-radius: 2rem;
  background-color: #000;
  color: #fff;
  font-family: "EB Garamond", serif;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .c-link-btn {
    width: 30rem;
    height: 5rem;
    border-radius: 5rem;
    padding-top: 0;
    padding-left: 0.6rem;
    font-size: 1.8rem;
  }
}
.c-link-btn span {
  font-size: 1.4rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .c-link-btn span {
    font-size: 1.6rem;
  }
}

@media (any-hover: hover) {
  .c-link-btn:hover {
    color: #000;
    background-color: #a2865e;
  }
}
/* ------------------------------------------------
c-section-title
--------------------------------------------------- */
.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 0.1rem solid #000;
}
@media only screen and (min-width: 768px) {
  .c-section-title {
    gap: 2.4rem;
  }
}
.c-section-title span {
  display: block;
}
.c-section-title span:nth-child(1) {
  text-transform: capitalize;
  font-family: "EB Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .c-section-title span:nth-child(1) {
    font-size: 4.4rem;
  }
}
.c-section-title span:nth-child(2) {
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 400;
  padding-bottom: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .c-section-title span:nth-child(2) {
    font-size: 1.6rem;
  }
}

.c-section-title--center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  border: none;
}

@media only screen and (max-width: 767px) {
  .c-section-title-sp-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.8rem;
  }
}

/* ------------------------------------------------
パンくず
--------------------------------------------------- */
/* パンくずリストの親要素 */
.c-breadcrumbs .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* パンくずリンクとテキスト */
.c-breadcrumbs a,
.c-breadcrumbs span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-breadcrumbs a {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-block: 1rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs a {
    padding: 0.6rem 0.4rem;
  }
}

.c-breadcrumbs span:not(:last-of-type) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-breadcrumbs span:last-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 最後の要素が余分に広がらないよう調整 */
  max-width: 100%; /* 必ず幅を制限 */
  min-width: 0;
}

.c-breadcrumbs span.current-item {
  width: 100%;
  display: block;
  overflow: hidden; /* はみ出し部分を隠す */
  white-space: nowrap; /* テキストを1行に制限 */
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs span.current-item {
    padding: 0.6rem 0.4rem;
  }
}

.c-breadcrumbs .breadcrumb-icon {
  display: block;
  width: 0.8rem;
  height: 0.1rem;
  background-color: #000;
  margin-top: 0.2rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs .breadcrumb-icon {
    margin-top: 0.1rem;
    width: 0.6rem;
  }
}

.c-breadcrumbs a:hover {
  opacity: 0.5;
}

/* ------------------------------------------------
c-my-photo-page
--------------------------------------------------- */
.c-my-photo-page a {
  display: inline-block;
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  border: 0.1rem solid #000;
  padding: 0.3rem 1rem 0.4rem 1.3rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (min-width: 768px) {
  .c-my-photo-page a {
    padding: 0.6rem 1.2rem 0.7rem 1.5rem;
    font-size: 1.4rem;
  }
}

.c-my-photo-page--white a {
  border: 0.1rem solid #fff;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .c-my-photo-page--footer a {
    width: 100%;
  }
}

@media (any-hover: hover) {
  .c-my-photo-page a:hover {
    background-color: #000;
    color: #fff;
  }
  .c-my-photo-page--white a:hover {
    background-color: #fff;
    color: #000;
  }
}
/* ------------------------------------------------
c-text
--------------------------------------------------- */
.c-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  .c-text {
    font-size: max(1.4rem, 10px);
  }
}

/* ------------------------------------------------
c-price-border-title
--------------------------------------------------- */
.c-price-border-title {
  text-align: center;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .c-price-border-title {
    font-size: 1.8rem;
  }
}
.c-price-border-title span {
  background-color: #eee;
  position: relative;
  padding-inline: 7rem;
}
@media only screen and (min-width: 768px) {
  .c-price-border-title span {
    padding-inline: 22rem;
  }
}
.c-price-border-title span::before, .c-price-border-title span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6rem;
  height: 0.1rem;
  background-color: #000;
}
@media only screen and (min-width: 768px) {
  .c-price-border-title span::before, .c-price-border-title span::after {
    width: 20rem;
  }
}
.c-price-border-title span::after {
  position: absolute;
  content: "";
  left: initial;
  right: 0;
}

/* ------------------------------------------------
c-fixed-nav
--------------------------------------------------- */
.c-fixed-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  z-index: 777;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1.2rem;
}
.c-fixed-nav a {
  padding: 1rem;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000;
  font-size: 1.3rem;
  text-align: center;
  background-color: #a2865e;
  padding-left: 2rem;
}

.c-fixed-nav.is-fixed {
  opacity: 1;
  visibility: visible;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* common */
/* ------------------------------------------------
p-header
--------------------------------------------------- */
.p-header {
  height: 5rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-header {
    height: 6rem;
  }
}

.p-header__inner {
  height: inherit;
  padding-inline: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .p-header__inner {
    padding-inline: 4rem;
  }
}

.p-header__logo {
  height: inherit;
  position: relative;
  z-index: 999;
}
.p-header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.8rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-header__logo a {
    font-size: 2.6rem;
  }
}

.p-header__logo.is-white a {
  color: #fff;
}

@media (any-hover: hover) {
  .p-header__logo a:hover {
    color: #a2865e;
  }
}
.p-header__right {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-header__right {
    gap: 3.2rem;
  }
}

.p-header__contact a {
  font-size: clamp(10px, 1.0169491525vw, 1.2rem);
  display: grid;
  place-content: center;
  height: 2.9rem;
  padding-inline: 2rem;
  background-color: #000;
  color: #fff;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

@media (any-hover: hover) {
  .p-header__contact a:hover {
    background-color: #a2865e;
    color: #000;
  }
}
.p-header.is-bg {
  background-color: #fff;
}

/* --------------------------------
p-drawer
----------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  color: #fff;
  padding-inline: 2.5rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 888;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #000;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer__contents {
  width: 30rem;
  padding-inline: 1rem;
  margin-inline: auto;
  padding-block: 8rem;
  margin-block: auto; /* 上下に余白があるときは中央配置になる */
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .p-drawer__contents {
    padding-inline: 5rem;
    max-width: initial;
    width: 46rem;
    padding-block: 6rem;
  }
}

/* --------------------------------
p-drawer-nav
----------------------------------- */
.p-drawer-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-drawer-nav__lists {
    gap: 3rem;
  }
}

/* --------------------------------
p-drawer-list
----------------------------------- */
.p-drawer-list > p, .p-drawer-list > a {
  width: 100%;
  font-size: 2rem;
  font-family: "EB Garamond", serif;
  font-weight: 300;
  text-transform: capitalize;
  padding: 0.5rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.p-drawer-list > p span:nth-child(2), .p-drawer-list > a span:nth-child(2) {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .p-drawer-list > p, .p-drawer-list > a {
    font-size: 2.6rem;
  }
}

.p-drawer-list__sub {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
  margin-top: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .p-drawer-list__sub {
    margin-top: 0.8rem;
    gap: 1.4rem;
  }
}

.p-drawer-list__sub a {
  display: inline-block;
  padding: 0.5rem;
  font-size: 1.2rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-drawer-list__sub a {
    font-size: max(1.4rem, 10px);
  }
}

/* --------------------------------
p-drawer-shop
----------------------------------- */
.p-drawer-shop {
  margin-top: 4rem;
  border-top: 0.1rem solid #fff;
  padding-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-drawer-shop {
    margin-top: 5rem;
  }
}

.p-drawer-shop__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
}
@media only screen and (min-width: 768px) {
  .p-drawer-shop__items {
    gap: 5.6rem;
  }
}

/* --------------------------------
p-drawer-shop-item
----------------------------------- */
.p-drawer-shop-item {
  position: relative;
}

.p-drawer-shop-item__info {
  padding-left: 0.4rem;
}

.p-drawer-shop-item__info > a {
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-drawer-shop-item__info > a {
    font-size: 2.4rem;
  }
}

.p-drawer-shop-item__address {
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1.8rem;
  padding-top: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-drawer-shop-item__address {
    font-size: 1.4rem;
    padding-top: 2rem;
  }
}
.p-drawer-shop-item__address::before {
  position: absolute;
  content: "";
  top: 75%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1.2rem;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/icon_place.svg);
  mask-image: url(../img/common/icon_place.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.p-drawer-shop-item__tel {
  position: relative;
  padding-left: 1.8rem;
  margin-top: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .p-drawer-shop-item__tel {
    margin-top: 0.5rem;
  }
}
.p-drawer-shop-item__tel::before {
  position: absolute;
  content: "";
  top: 60%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.1rem;
  height: 1.3rem;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/icon_tel.svg);
          mask-image: url(../img/common/icon_tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.p-drawer-shop-item__tel a {
  display: inline-block;
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-drawer-shop-item__tel a {
    font-size: 2rem;
  }
}

.p-drawer-shop-item__time {
  font-size: 1.2rem;
  position: relative;
  padding-left: 1.8rem;
  padding-top: 0.5rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-drawer-shop-item__time {
    font-size: 1.4rem;
    padding-top: 0.7rem;
  }
}
.p-drawer-shop-item__time::before {
  position: absolute;
  content: "";
  top: 70%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1.2rem;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/icon_calendar.svg);
          mask-image: url(../img/common/icon_calendar.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

/* --------------------------------
p-drawer-sns
----------------------------------- */
.p-drawer-sns {
  position: absolute;
  top: -0.4rem;
  right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-drawer-sns {
    top: 0;
  }
}
.p-drawer-sns a.p-drawer-sns__instagram {
  display: block;
  width: 3.5rem;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
  fill: #fff;
}
@media only screen and (min-width: 768px) {
  .p-drawer-sns a.p-drawer-sns__instagram {
    width: 4.2rem;
  }
}
.p-drawer-sns a.p-drawer-sns__line {
  display: block;
  width: 2.6rem;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
  fill: #fff;
}
@media only screen and (min-width: 768px) {
  .p-drawer-sns a.p-drawer-sns__line {
    width: 3rem;
  }
}

@media (any-hover: hover) {
  .p-drawer__contents a:hover {
    color: #a2865e;
  }
  .p-drawer-sns a:hover {
    fill: #a2865e;
  }
}
/* ------------------------------------------------
p-footer
--------------------------------------------------- */
.p-footer {
  background-color: #000;
  padding-block: 4rem 3rem;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-footer {
    padding-block: 8rem 4rem;
  }
}

.p-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__left-nav {
  width: 18rem;
}

@media only screen and (max-width: 767px) {
  .p-footer__contact {
    margin-top: 5rem;
  }
}
.p-footer__contact a {
  font-size: 1.1rem;
  display: grid;
  place-content: center;
  width: 100%;
  height: 2.7rem;
  text-align: center;
  background-color: #a2865e;
  color: #000;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-footer__contact a {
    height: 3rem;
    font-size: clamp(10px, 1.0169491525vw, 1.2rem);
  }
}

.p-footer__my-photo-page {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__my-photo-page {
    margin-top: 3rem;
    width: 100%;
  }
}

.p-footer__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2.4rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-footer__logo a {
    font-size: 3rem;
  }
}

.p-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 36rem;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .p-footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: initial;
    margin-inline: initial;
  }
}

@media only screen and (max-width: 767px) {
  .p-footer__nav {
    margin-top: 5rem;
  }
}

.p-footer-nav {
  display: grid;
  gap: 2rem;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav {
    gap: 8rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-footer-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.6rem;
}

.p-footer-nav__item > p, .p-footer-nav__item > a {
  font-size: 2rem;
  font-family: "EB Garamond", serif;
  text-transform: capitalize;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__item > p, .p-footer-nav__item > a {
    font-size: 2.4rem;
  }
}
.p-footer-nav__item ul li a {
  font-size: 1.3rem;
  font-weight: 300;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-footer-nav__item a {
  display: inline-block;
  white-space: nowrap;
}

.p-footer-nav__sub {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__sub {
    gap: 2rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-footer-nav__sub--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-footer__copyright {
  margin-top: 6rem;
  text-align: center;
}
.p-footer__copyright p small {
  font-size: 1rem;
}

@media (any-hover: hover) {
  .p-footer-nav__item a:hover {
    color: #a2865e;
  }
  .p-footer__logo a:hover {
    color: #a2865e;
  }
  .p-footer__contact a:hover {
    background-color: #fff;
    color: #000;
  }
}
/* ------------------------------------------------
p-gallery
--------------------------------------------------- */
.p-gallery__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-gallery__items {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.6rem;
  }
}

.p-gallery__item {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-gallery__item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.p-gallery__item button:hover .p-gallery__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-gallery__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

/* ------------------------------------------------
p-lower-mv
--------------------------------------------------- */
.p-lower-mv {
  padding-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-lower-mv {
    padding-bottom: 8rem;
  }
}

.p-lower-mv__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.3333333333vw;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .p-lower-mv__flex {
    gap: 6.9444444444vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-mv-block01 {
  padding-inline: 2rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 768px) {
  .p-mv-block01 {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 34.7222222222vw;
    padding-left: 6.9444444444vw;
    padding-top: 11.1111111111vw;
    padding-right: 0;
  }
}
.p-mv-block01 .p-mv-block01__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (min-width: 768px) {
  .p-mv-block01 .p-mv-block01__img {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    margin-top: 4.1666666667vw;
    width: 27.7777777778vw;
  }
}
.p-mv-block01 .p-mv-block01__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400/727;
}

.p-mv-block01__page-title-box {
  position: relative;
}

.p-lower-mv__title {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.8rem;
  padding-bottom: 1.2rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-lower-mv__title {
    gap: 0.6rem;
    padding-bottom: 1.6rem;
    width: min(41.6666666667vw, 600px);
  }
}
.p-lower-mv__title span {
  display: block;
}
.p-lower-mv__title span:nth-child(1) {
  text-transform: capitalize;
  font-family: "EB Garamond", serif;
  font-size: 3.2rem;
  font-weight: 400;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-lower-mv__title span:nth-child(1) {
    font-size: 6rem;
    font-size: min(4.1666666667vw, 60px);
  }
}
.p-lower-mv__title span:nth-child(2) {
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 400;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 768px) {
  .p-lower-mv__title span:nth-child(2) {
    font-size: 1.6rem;
    font-size: min(1.1111111111vw, 16px);
    padding-bottom: 0.6rem;
  }
}
.p-lower-mv__title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #000;
}
@media only screen and (min-width: 768px) {
  .p-lower-mv__title::before {
    width: 41.6666666667vw;
  }
}

.p-mv-block01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5.3333333333vw;
  gap: 5.3333333333vw;
}
@media only screen and (min-width: 768px) {
  .p-mv-block01__flex {
    margin-top: 4.1666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-mv-block01__text {
  width: 42.6666666667vw;
  padding-bottom: 8vw;
}
@media only screen and (min-width: 768px) {
  .p-mv-block01__text {
    width: 100%;
    padding-bottom: 0;
  }
}

.p-mv-block02 {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .p-mv-block02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 58.3333333333vw;
  }
}
.p-mv-block02 .p-mv-block02__img--main {
  aspect-ratio: 840/560;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (min-width: 768px) {
  .p-mv-block02 .p-mv-block02__img--main {
    aspect-ratio: 840/560;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
.p-mv-block02 .p-mv-block02__img--main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv-block02 .p-mv-block02__flex {
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5.3333333333vw;
  padding-inline: 2rem;
  margin-top: -16vw;
  position: relative;
  padding-bottom: 32vw;
}
@media only screen and (min-width: 768px) {
  .p-mv-block02 .p-mv-block02__flex {
    margin-top: initial;
    width: auto;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    margin-top: 5.5555555556vw;
    padding-right: 6.9444444444vw;
    padding-left: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    padding-bottom: 0;
  }
}
.p-mv-block02 .p-mv-block02__flex .p-mv-block02__img--01 {
  width: 42.6666666667vw;
  aspect-ratio: 1/1;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-mv-block02 .p-mv-block02__flex .p-mv-block02__img--01 {
    width: 31.9444444444vw;
  }
}
.p-mv-block02 .p-mv-block02__flex .p-mv-block02__img--01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv-block02 .p-mv-block02__flex .p-mv-block02__img--02 {
  position: absolute;
  width: 29.3333333333vw;
  aspect-ratio: 200/200;
  bottom: 0;
  right: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-mv-block02 .p-mv-block02__flex .p-mv-block02__img--02 {
    width: 13.8888888889vw;
    bottom: -5.5555555556vw;
    right: initial;
    left: -9.7222222222vw;
  }
}
.p-mv-block02 .p-mv-block02__flex img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .p-mv-block02__text {
    margin-top: 15.4666666667vw;
  }
}

.p-mv-block01__text p,
.p-mv-block02__text p {
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .p-mv-block01__text p,
  .p-mv-block02__text p {
    font-size: clamp(10px, 0.9722222222vw, 16px);
    line-height: 2.4;
  }
}

/* ------------------------------------------------
p-price
--------------------------------------------------- */
.p-price {
  padding-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-price {
    padding-top: 10rem;
  }
}

.p-price__container {
  margin-inline: auto;
  width: 100%;
  padding: 4rem 2rem;
  border: 2px solid #000;
  position: relative;
  background-color: #fff;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .p-price__container {
    max-width: 94rem;
    padding: 6rem 5rem;
  }
}
.p-price__container::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 0.8rem);
  height: calc(100% - 0.8rem);
  border: 1px solid #000;
  background-color: #eee;
}
.p-price__container > span {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  font-size: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-price__container > span {
    font-size: 1rem;
  }
}

.p-price__text {
  margin-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-price__text {
    font-size: max(1.2rem, 8px);
    text-align: center;
  }
}

.p-price__contents {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-price__contents {
    margin-top: 6rem;
    gap: 4rem;
  }
}

.p-price-main__items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #000;
  padding-inline: 1.6rem;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-price-main__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 0;
  }
}
.p-price-main__items::before, .p-price-main__items::after {
  position: absolute;
  z-index: 5;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4rem;
  height: 1rem;
  background-color: #000;
}
.p-price-main__items::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-price-main-item {
  padding-block: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-price-main-item:not(:first-child) {
    border-left: 0.1rem solid #000;
  }
  .p-price-main-item:not(:last-child) {
    border-bottom: none;
  }
}
.p-price-main-item > span {
  display: block;
}
.p-price-main-item:nth-child(1) {
  padding-block: 3rem 4rem;
  border-bottom: 0.1rem solid #000;
}
@media only screen and (min-width: 768px) {
  .p-price-main-item:nth-child(1) {
    padding-block: 3rem 2.4rem;
    border-bottom: none;
  }
}
.p-price-main-item:nth-child(2) {
  padding-block: 4rem 3rem;
}
@media only screen and (min-width: 768px) {
  .p-price-main-item:nth-child(2) {
    padding-block: 3rem 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-price-main-item--free {
    padding-block: 4.7rem 5.2rem !important;
    gap: 1.2rem !important;
  }
}

.p-price-main-item__price {
  font-size: 2rem;
  line-height: 2rem;
  font-family: "barlow-condensed", sans-serif;
}
@media only screen and (min-width: 768px) {
  .p-price-main-item__price {
    font-size: 2.4rem;
  }
}
.p-price-main-item__price .u-price-small {
  padding-left: 0.2rem;
  font-size: 1rem !important;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.04em;
}
@media only screen and (max-width: 767px) {
  .p-price-main-item__price .u-price-small {
    display: block;
  }
}

.p-price-main-item__title {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-price-main-item__title {
    font-size: 1.6rem;
  }
}
.p-price-main-item__title span {
  font-size: 1.1rem;
  color: #717171;
  text-transform: capitalize;
}

.p-price-main-item__note {
  margin-top: 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #717171;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-price-main-item__note {
    font-size: max(1.1rem, 8px);
  }
}

.p-price-main-item__link {
  position: absolute;
  display: inline-block;
  bottom: 7rem;
  right: -2rem;
}
@media only screen and (min-width: 768px) {
  .p-price-main-item__link {
    top: initial;
    bottom: -1.6rem;
    right: 0.8rem;
  }
}

.p-price-special__title {
  margin-top: 2rem;
}
.p-price-special__box {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 0.1rem solid #000;
  padding: 0 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-price-special__box {
    justify-self: center;
    padding: 2rem 3rem;
  }
}

.p-price-special__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.p-price-special__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid #717171;
}
@media only screen and (min-width: 768px) {
  .p-price-special__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem;
    gap: 2rem;
  }
}
.p-price-special__item span {
  display: block;
}
.p-price-special__item:last-child {
  border-bottom: none;
}

.p-price-special__type span {
  display: inline;
}
@media only screen and (min-width: 768px) {
  .p-price-special__type {
    min-width: 22rem;
  }
}

.p-price-special__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-price-special__price {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}

.special-name {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) {
  .special-name {
    font-size: 1.6rem;
  }
}

.special-term {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .special-term {
    margin-top: 0;
  }
}

.special-percent {
  text-transform: uppercase;
  width: 8rem;
  height: 2.4rem;
  background-color: #a2865e;
  color: white;
  border-radius: 2rem;
  font-family: "barlow-condensed", sans-serif;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.4rem;
  padding-left: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .special-percent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 6rem;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding-left: 0.4rem;
  }
}

.special-percent__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.special-percent__num {
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .special-percent__num {
    font-size: 2.4rem;
  }
}

.special-percent__percent {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .special-percent__percent {
    font-size: 1.2rem;
  }
}

.special-percent__off {
  font-size: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .special-percent__off {
    font-size: 1.8rem;
  }
}

.special-price {
  text-align: right;
  font-family: "barlow-condensed", sans-serif;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .special-price {
    margin-left: auto;
    font-size: 2.4rem;
  }
}

.p-price-special__note {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #717171;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-price-special__note {
    font-size: max(1.1rem, 8px);
  }
}

.p-price-contents__note {
  padding-block: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
}
.p-price-contents__note ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.p-price-contents__note li {
  font-size: max(1.2rem, 10px);
  line-height: 1.5;
}

.p-price-option__title {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-price-option__title {
    margin-top: 4rem;
  }
}

.p-price-option__note {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #717171;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-price-option__note {
    font-size: max(1.1rem, 8px);
  }
}

.p-price-option__items {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #000;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-price-option__items {
    margin-top: 2.4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 0;
  }
}

.p-price-option-item {
  padding-block: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #fff;
}
.p-price-option-item:not(:last-child) {
  border-bottom: 0.1rem solid #000;
}
@media only screen and (min-width: 768px) {
  .p-price-option-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-price-option-item:not(:first-child) {
    border-left: 0.1rem solid #000;
  }
  .p-price-option-item:not(:last-child) {
    border-bottom: none;
  }
}

.p-price-option-item__title {
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .p-price-option-item__title {
    font-size: 1.5rem;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-price-option-item__title > span {
  font-size: 1.3rem;
  font-family: "barlow-condensed", sans-serif;
  color: #717171;
  text-transform: capitalize;
}

.p-price-option-item__price {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.04em;
}
@media only screen and (min-width: 768px) {
  .p-price-option-item__price {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-price-option-item__price .u-price-small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem !important;
}

/* ------------------------------------------------
p-modal
--------------------------------------------------- */
.p-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.p-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.p-modal__body {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 80rem;
}

.p-modal__view {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.p-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  width: 5rem;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-modal__close {
    top: 2rem;
    right: 2rem;
  }
}

.p-modal__close-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-modal__close-icon {
    width: 4rem;
    height: 4rem;
  }
}

.p-modal__close-label {
  position: absolute;
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-modal__close-label {
    font-size: 1.1rem;
  }
}

.p-modal__close svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}
@media only screen and (min-width: 768px) {
  .p-modal__close svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.p-modal__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

@media (any-hover: hover) {
  .p-modal__close:hover .p-modal__close-icon {
    background-color: rgba(255, 255, 255, 0.06);
  }
  .p-modal__close:hover .p-modal__close-label {
    opacity: 1;
  }
}
.p-modal__swiper {
  height: 65vh;
  width: 100%;
}

.p-modal__swiper .swiper-wrapper {
  height: 100%;
}

.p-modal__swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.p-modal__swiper .swiper-slide picture {
  display: contents;
}

.p-modal__swiper .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 65vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-modal__nav {
  position: absolute;
  top: 50%;
  left: -1.8rem;
  right: -1.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .p-modal__nav {
    left: -2.5rem;
    right: -2.5rem;
  }
}

.p-modal__arrow {
  width: 3.6rem;
  height: 3.6rem;
  background-color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media only screen and (min-width: 768px) {
  .p-modal__arrow {
    width: 5rem;
    height: 5rem;
  }
}

.p-modal__arrow svg {
  width: 1rem;
  height: 1rem;
  fill: #fff;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-modal__arrow svg {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.p-modal__arrow:hover {
  background-color: #a2865e;
}

.p-modal__arrow:hover svg {
  fill: #000;
}

.p-modal__arrow--prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

/* ------------------------------------------------
p-campaign
--------------------------------------------------- */
.p-campaign__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ------------------------------------------------
p-campaign-item
--------------------------------------------------- */
.p-campaign-item {
  padding-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item {
    padding-top: 10rem;
  }
}

.p-campaign-item__container {
  padding: 2rem 2rem 3rem;
  border: 0.1rem solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__container {
    padding: 2.4rem 3.6rem 3.6rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-campaign-item__head {
    display: contents;
  }
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__head {
    width: 44%;
  }
}

.p-campaign-item__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.6rem;
  text-decoration-color: #a2865e;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media only screen and (max-width: 767px) {
  .p-campaign-item__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__title {
    font-size: 2.6rem;
  }
}
.p-campaign-item__title span {
  position: absolute;
  top: -4.8rem;
  left: -1.6rem;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #000;
  background-color: #a2865e;
  display: grid;
  place-content: center;
  width: 13rem;
  height: 3.4rem;
  padding-top: 0.1rem;
  border-radius: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__title span {
    top: -6rem;
    left: -2rem;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
    width: 18rem;
    height: 4.5rem;
    padding-top: 0.1rem;
    border-radius: 3rem;
  }
}
.p-campaign-item__title span::before {
  position: absolute;
  content: "";
  bottom: -0.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1rem;
  height: 0.8rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #a2865e;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__title span::before {
    bottom: -0.9rem;
    width: 1.6rem;
    height: 1.2rem;
  }
}
.p-campaign-item__title span::after {
  position: absolute;
  content: "";
  top: -1.3rem;
  right: -0.6rem;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  width: 1.6rem;
  height: 1.4rem;
  background-image: url(../img/common/icon_check-line.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__title span::after {
    top: -2rem;
    width: 2rem;
    height: 1.8rem;
  }
}

.p-campaign-item__date {
  margin-top: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-campaign-item__date {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__date {
    gap: 1.6rem;
    font-size: 1.8rem;
  }
}
.p-campaign-item__date span {
  display: inline-block;
  background-color: #000;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0.5rem 1.6rem 0.6rem 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__date span {
    font-size: 1.6rem;
    padding: 0.5rem 3rem 0.6rem 3rem;
  }
}

.p-campaign-item__date--posted {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__date--posted {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-campaign-item__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__img {
    margin-top: 5rem;
  }
}
.p-campaign-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .p-campaign-item__body {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.p-campaign-item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.8rem;
}

.p-campaign-item__text {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__text {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

/* information 用語（タクソノミー event）: タイトル・投稿日・本文のみ */
.p-campaign-item--information .p-campaign-item__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item--information .p-campaign-item__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-campaign-item__head--information {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__head--information {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .p-campaign-item__title--information {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__title--information {
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-campaign-item__body--information {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    padding-top: 0;
  }
}
.p-campaign-item__body--information {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

.p-campaign-item__text a {
  color: #a2865e;
}

.p-campaign-item__btn-list {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-campaign-item__btn-list {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__btn-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4rem;
    margin-inline: auto;
    gap: 1.6rem;
  }
}

.p-campaign-item__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  height: 6rem;
  gap: 1.6rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__btn a {
    padding-top: 0.3rem;
    width: 28rem;
    height: 6rem;
    gap: 1.6rem;
    padding-left: 1.2rem;
  }
}
.p-campaign-item__btn a svg {
  fill: #fff;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__btn a svg {
    margin-bottom: 0.4rem;
  }
}
.p-campaign-item__btn a:nth-child(1) svg {
  width: 2.4rem;
  height: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__btn a:nth-child(1) svg {
    margin-top: 0.4rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}
.p-campaign-item__btn a:nth-child(2) svg {
  width: 3rem;
  height: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-campaign-item__btn a:nth-child(2) svg {
    width: 3.8rem;
    height: 3.8rem;
  }
}

@media (min-width: 1180px) {
  .p-campaign-item__btn-text {
    width: 15rem;
  }
}
@media (min-width: 768px) and (max-width: 1180px) {
  .p-campaign-item__btn-text {
    width: calc(9.7087vw + 35.4369px);
  }
}
.p-campaign-item__btn-text span {
  display: block;
}
.p-campaign-item__btn-text span:nth-child(1) {
  font-size: 1rem;
}
.p-campaign-item__btn-text span:nth-child(2) {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-campaign-item__btn-text span:nth-child(3) {
  font-family: "barlow-condensed", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.p-campaign-item__btn--timegraph a {
  background-color: #645030;
}
.p-campaign-item__btn--flow a {
  background-color: #3e4757;
}

.p-campaign-item__btn--ueyama a {
  background-color: #594c4e;
}

/* ------------------------------------------------
p-page-top
--------------------------------------------------- */
.p-page-top {
  height: calc(100% + 2.5rem);
  position: absolute;
  top: 0;
  right: 1rem;
  z-index: 100;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-page-top {
    height: calc(100% + 3rem);
    right: 1.6rem;
  }
}

.p-page-top__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  top: calc(100% - 12.5rem);
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  width: 5rem;
  height: 5rem;
  background-color: #a2865e;
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  pointer-events: auto;
  padding-top: 0.4rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
}
@media only screen and (min-width: 768px) {
  .p-page-top__btn {
    padding-top: 0.5rem;
    gap: 0.3rem;
    top: calc(100% - 8rem);
    width: 6rem;
    height: 6rem;
  }
}
.p-page-top__btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-page-top__text {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .p-page-top__text {
    font-size: 1.2rem;
  }
}

.p-page-top__icon {
  width: 1.4rem;
  height: 1.4rem;
  line-height: 1;
}
.p-page-top__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media only screen and (max-width: 767px) {
  .p-page-top__btn--shop {
    top: calc(100% - 6.5rem);
  }
}

/* --------------------------------
inview
----------------------------------- */
.js-fadeUp {
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media only screen and (max-width: 767px) {
  .js-fadeUp {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.js-fadeUp.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .js-fadeUp.js-fadeUp-pc {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media only screen and (min-width: 768px) {
  .js-fadeUp.js-fadeUp-pc.is-inview {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@media only screen and (min-width: 768px) {
  .js-fadeUp.js-fadeUp-sp {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media only screen and (max-width: 767px) {
  .js-fadeUp.js-fadeUp-sp.is-inview {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.anime-delay1s {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.js-mv-fade {
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .js-mv-fade {
    -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
    transition: opacity 1.5s, -webkit-transform 1.5s;
    transition: opacity 1.5s, transform 1.5s;
    transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

@media only screen and (max-width: 767px) {
  .js-mv-fade--main {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.js-mv-fade.is-inview {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .js-mv-fade.is-inview {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.anime-delay02s {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 767px) {
  .anime-delay02s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay03s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 767px) {
  .anime-delay03s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay04s {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media only screen and (max-width: 767px) {
  .anime-delay04s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay05s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media only screen and (max-width: 767px) {
  .anime-delay05s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay06s {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 767px) {
  .anime-delay06s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay07s {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
@media only screen and (max-width: 767px) {
  .anime-delay07s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay08s {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media only screen and (max-width: 767px) {
  .anime-delay08s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay09s {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (max-width: 767px) {
  .anime-delay09s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay10s {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media only screen and (max-width: 767px) {
  .anime-delay10s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay11s {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
@media only screen and (max-width: 767px) {
  .anime-delay11s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.anime-delay12s {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 767px) {
  .anime-delay12s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.js-anime-message,
.js-anime-shop,
.js-anime-clock {
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-anime-message.is-inview,
.js-anime-shop.is-inview,
.js-anime-clock.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* js-text-show: 1文字ずつフェード（.is-inview で開始） */
.js-character {
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-delay: calc(var(--i) * 0.1s);
          transition-delay: calc(var(--i) * 0.1s);
}

.js-text-show--delay .js-character {
  -webkit-transition-delay: calc(1s + var(--i) * 0.1s);
          transition-delay: calc(1s + var(--i) * 0.1s);
}

.js-text-show.is-inview .js-character {
  opacity: 1;
}

/* page */
/* ------------------------------------------------
p-top
--------------------------------------------------- */
.p-top__col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  padding-block: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-top__col {
    padding-block: 8rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}

/* ------------------------------------------------
p-top-mv
--------------------------------------------------- */
.p-top-mv__img {
  width: 100%;
  aspect-ratio: 375/500;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__img {
    aspect-ratio: 3600/1800;
  }
}

.p-top-mv__contents {
  margin-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__contents {
    margin-top: 10rem;
    padding-bottom: 0;
  }
}

.p-top-mv__title {
  font-family: "Shippori Mincho", serif;
  font-family: "EB Garamond", serif;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__title {
    text-align: center;
    font-size: 3.6rem;
  }
}

.p-top-mv__message {
  margin-top: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__message {
    margin-top: 4rem;
    font-size: 1.6rem;
    text-align: center;
  }
}
.p-top-mv__message span {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__message span {
    font-size: 2rem;
  }
}

.p-top-mv__shop {
  margin-top: 3rem;
  font-family: "EB Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__shop {
    margin-top: 8rem;
    font-size: 1.6rem;
    text-align: center;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-top-mv .swiper-slide-active img,
.p-top-mv .swiper-slide-duplicate-active img,
.p-top-mv .swiper-slide-prev img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

/* ------------------------------------------------
p-top-information
--------------------------------------------------- */
.p-top-information {
  padding-block: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-top-information {
    padding-block: 10rem 4rem;
  }
}

.p-top-information__body {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-top-information__body {
    margin-top: 3rem;
  }
}

.p-top-information__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-top-information__items {
    gap: 4rem;
  }
}

.p-top-information__title {
  font-size: 1.6rem;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.6rem;
  text-decoration-color: #a2865e;
}
@media only screen and (min-width: 768px) {
  .p-top-information__title {
    font-size: 2rem;
  }
}

.p-top-information__day {
  display: block;
  margin-top: 0.6rem;
  font-size: 1rem;
  color: #717171;
}
@media only screen and (min-width: 768px) {
  .p-top-information__day {
    font-size: 1.4rem;
  }
}

.p-top-information__content {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-top-information__content {
    margin-top: 1.6rem;
    font-size: max(1.4rem, 10px);
    line-height: 1.6;
  }
}
.p-top-information__content a {
  color: #a2865e;
}

/* ------------------------------------------------
p-top-campaign
--------------------------------------------------- */
.p-top-campaign {
  padding-block: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-top-campaign {
    padding-block: 10rem 8rem;
  }
}

.p-top-campaign__body {
  position: relative;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-top-campaign__body {
    margin-top: 4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-campaign__swiper {
    overflow: visible !important;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-campaign__items {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-campaign-item {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-campaign__arrow {
    display: none;
  }
}

/* ------------------------------------------------
p-top-campaign-item
--------------------------------------------------- */
.p-top-campaign-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.p-top-campaign-item__img {
  width: 100%;
  overflow: hidden;
}
.p-top-campaign-item__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-top-campaign-item__btn {
  position: absolute;
  bottom: 1.6rem;
  right: 1rem;
}

.p-top-campaign-item__date {
  margin-top: 0.6rem;
  position: relative;
  padding-left: 1.8rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-top-campaign-item__date {
    font-size: 1.4rem;
  }
}
.p-top-campaign-item__date::before {
  position: absolute;
  content: "";
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 1.5rem;
  -webkit-mask-image: url(../img/common/icon_calendar.svg);
          mask-image: url(../img/common/icon_calendar.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #000;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-top-campaign-item__title {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-top-campaign-item__title {
    margin-top: 1.6rem;
    font-size: 1.7rem;
  }
}

.p-top-campaign-item__text {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 1.3rem;
}

@media (any-hover: hover) {
  .p-top-campaign-item a:hover .p-top-campaign-item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-top-campaign-item a:hover .p-top-campaign-item__title,
  .p-top-campaign-item a:hover .p-top-campaign-item__date,
  .p-top-campaign-item a:hover .p-top-campaign-item__text {
    color: #a2865e;
  }
  .p-top-campaign-item a:hover .p-top-campaign-item__date::before {
    background-color: #a2865e;
  }
}

/* ------------------------------------------------
swiper用
--------------------------------------------------- */
/* デフォルト矢印削除 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

.p-top-campaign__arrow {
  width: 3.6rem;
  height: 3.6rem;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .p-top-campaign__arrow {
    top: 42%;
    width: 5rem;
    height: 5rem;
  }
}
.p-top-campaign__arrow svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: #fff;
  display: block;
}
.p-top-campaign__arrow--prev {
  left: -2.5rem;
}
.p-top-campaign__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-top-campaign__arrow--next {
  right: -2.5rem;
}

.p-top-campaign__arrow.swiper-button-disabled {
  opacity: 0;
  cursor: not-allowed;
}

@media (any-hover: hover) {
  .p-top-campaign__arrow:hover {
    background-color: #a2865e;
  }
  .p-top-campaign__arrow:hover svg {
    fill: #000;
  }
}
/* ------------------------------------------------
p-photo-menu
--------------------------------------------------- */
.p-photo-menu {
  padding-block: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-photo-menu {
    padding-block: 8rem;
  }
}

.p-photo-menu__body {
  margin-top: 3rem;
  padding-inline: 2rem;
  max-width: 600px;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-photo-menu__body {
    margin-top: 4rem;
    max-width: none;
    padding-inline: 0;
  }
}

.p-photo-menu__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-photo-menu__items {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}

/* ------------------------------------------------
p-menu-item
--------------------------------------------------- */
.p-menu-item a {
  position: relative;
  overflow: hidden;
  display: block;
}
.p-menu-item a span {
  position: absolute;
  z-index: 5;
  bottom: 0.6rem;
  left: 1rem;
  margin-top: 0.4rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-menu-item a span {
    bottom: 1.2rem;
    left: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-menu-item a::before {
    display: none;
  }
}
.p-menu-item a::before {
  position: absolute;
  z-index: 3;
  content: "";
  inset: 0;
  background-color: #000;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  mix-blend-mode: multiply;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-menu-item a::after {
  position: absolute;
  z-index: 3;
  content: "";
  inset: 0;
  background-color: #000;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
  mix-blend-mode: multiply;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-menu-item a::after {
    opacity: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(180deg, transparent 80%, rgba(0, 0, 0, 0.7) 100%);
  }
}

.p-menu-item__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #ccc;
}
.p-menu-item__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (any-hover: hover) {
  .p-menu-item a:hover .p-menu-item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-menu-item a:hover::before {
    opacity: 0;
  }
  .p-menu-item a:hover::after {
    opacity: 1;
  }
}
/* ------------------------------------------------
p-top-block
--------------------------------------------------- */
.p-top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-block__body {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (min-width: 768px) {
  .p-top-block__body {
    padding-top: 3.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-block__inner.l-inner {
    padding-inline: 0;
  }
}

.p-top-block-link {
  display: block;
  position: relative;
}

.p-top-block-link__btn {
  position: absolute;
  bottom: -1.4rem;
  left: 1rem;
}

@media only screen and (min-width: 768px) {
  .p-top-block__img {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top-block__img img {
    aspect-ratio: 1100/560;
    background-color: #ccc;
  }
}

.p-top-block__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-top-block__text {
    margin-top: 0;
  }
}

.p-top-block__btn {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .p-top-block__btn {
    margin-top: 4rem;
  }
}

.p-top-block-link__img {
  background-color: #ccc;
  aspect-ratio: 1100/560;
}

/* ------------------------------------------------
p-top-shop
--------------------------------------------------- */
.p-top-shop {
  padding-block: 4rem 8rem;
}
@media only screen and (min-width: 768px) {
  .p-top-shop {
    padding-block: 8rem 12rem;
  }
}

.p-top-shop__items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-top-shop__items {
    margin-top: 3.6rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.6rem;
  }
}

.p-top-shop-item__img {
  overflow: hidden;
  aspect-ratio: 375/240;
}
.p-top-shop-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-top-shop-item__body {
  padding-top: 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-top-shop-item__body {
    padding-top: 2rem;
  }
}

.p-top-shop-item__name {
  font-size: 2.4rem;
  font-family: "EB Garamond", serif;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-top-shop-item__address {
  margin-top: 1.6rem;
  font-size: 1.3rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-top-shop-item__address {
    margin-top: 2rem;
  }
}
.p-top-shop-item__address::before {
  position: absolute;
  content: "";
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../img/common/icon_place.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.p-top-shop-item__tel {
  margin-top: 0.7rem;
  position: relative;
  padding-left: 1.8rem;
}
.p-top-shop-item__tel::before {
  position: absolute;
  content: "";
  top: 60%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.p-top-shop-item__tel a {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.8rem;
}

.p-top-shop-item__time {
  margin-top: 0.7rem;
  font-size: 1.3rem;
  position: relative;
  padding-left: 1.8rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-top-shop-item__time {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
.p-top-shop-item__time::before {
  position: absolute;
  content: "";
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../img/common/icon_calendar.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.p-top-shop-item__sns {
  position: absolute;
  bottom: -0.8rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-top-shop-item__sns {
    gap: 0.5rem;
  }
}
.p-top-shop-item__sns a {
  display: block;
}
.p-top-shop-item__sns a svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #000;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.p-top-shop-item__sns-instagram {
  width: 4.4rem;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .p-top-shop-item__sns-instagram {
    width: 3.8rem;
  }
}

.p-top-shop-item__sns-line {
  width: 3rem;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .p-top-shop-item__sns-line {
    width: 2.8rem;
  }
}

.p-top-shop-item > a {
  position: relative;
  display: block;
}

.p-top-shop-item__btn {
  position: absolute;
  bottom: -2rem;
  right: 1rem;
}

@media (any-hover: hover) {
  .p-top-shop-item > a:hover .p-top-shop-item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-top-shop-item > a:hover + .p-top-shop-item__body .p-top-shop-item__name a {
    color: #a2865e;
  }
  .p-top-shop-item__name a:hover {
    color: #a2865e;
  }
  .p-top-shop-item:has(.p-top-shop-item__name a:hover) .p-top-shop-item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-top-shop-item__sns a:hover {
    fill: #a2865e;
  }
  .p-top-shop-item__sns a:hover svg {
    fill: #a2865e;
  }
}
/* ------------------------------------------------
p-top-other
--------------------------------------------------- */
.p-top-other {
  background-color: #eee;
  padding-block: 4rem 6rem;
}
@media only screen and (min-width: 768px) {
  .p-top-other {
    padding-block: 8rem 12rem;
  }
}

.p-top-other__items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-top-other__items {
    margin-top: 3.6rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.6rem;
  }
}

.p-other-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-other-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-other-item__head p {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-other-item__head p span {
  font-size: 1.3rem;
  line-height: 1.5;
  font-family: "barlow-condensed", sans-serif;
}

.p-other-item__title {
  font-size: 2rem;
  text-transform: uppercase;
  font-family: "EB Garamond", serif;
}
.p-other-item__title span {
  font-size: 1.1rem;
}

.p-other-item__banner {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-other-item__banner {
    position: relative;
  }
}

.p-other-item__text {
  margin-top: 1rem;
  font-size: 1.3rem;
  line-height: 1.5;
}

.p-other-item:nth-child(3) .p-other-item__head {
  min-height: 4.55rem;
}
.p-other-item:nth-child(3) .p-other-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-other-item:nth-child(3) .p-other-item__title > span {
  justify-self: flex-end;
}

@media only screen and (min-width: 768px) {
  .p-other-item__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-other-item__btn {
    position: absolute;
    bottom: -0.5rem;
    right: 1.6rem;
  }
}

/* ------------------------------------------------
時計
--------------------------------------------------- */
.p-top-clock {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.2rem;
  font-family: "barlow-condensed", sans-serif;
  font-family: "EB Garamond", serif;
  text-transform: capitalize;
  font-size: 1.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #717171;
}
@media only screen and (min-width: 768px) {
  .p-top-clock {
    margin-top: 2.4rem;
    gap: 0.4rem;
    font-size: 1.8rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-top-clock__card {
  display: inline-block;
  text-align: center;
}
.p-top-clock__card[data-unit=year] {
  min-width: 4ch;
}
.p-top-clock__card[data-unit=month], .p-top-clock__card[data-unit=day], .p-top-clock__card[data-unit=hour], .p-top-clock__card[data-unit=minute], .p-top-clock__card[data-unit=second] {
  min-width: 2ch;
}
.p-top-clock__card[data-unit=weekday] {
  min-width: 2em;
}

/* ------------------------------------------------
p-costume
--------------------------------------------------- */
.p-costume button {
  color: #000;
}

.p-costume__container {
  position: relative;
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-costume__container {
    padding-top: 6rem;
  }
}

.p-costume__head {
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-costume__head {
    padding-bottom: 6rem;
  }
}

.p-costume__note {
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #717171;
}
@media only screen and (min-width: 768px) {
  .p-costume__note {
    margin-top: 1.6rem;
    font-size: 1rem;
  }
}

.p-costume__filter {
  position: sticky;
  top: 5rem;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
  background-color: #fff;
  padding-bottom: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-costume__filter {
    top: 6rem;
    padding-bottom: 2rem;
  }
}

.p-costume__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-costume__tabs {
    gap: 1.6rem;
  }
}

.p-costume__tab {
  padding: 0.4rem 0.4rem 0.6rem;
  border: 1px solid #ccc;
  background-color: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.04em;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .p-costume__tab {
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
  }
}
.p-costume__tab span {
  text-transform: uppercase;
}
.p-costume__tab.is-active {
  background-color: #000;
  color: #fff;
  border-color: #000;
  cursor: default;
}

.p-costume__genres {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (min-width: 768px) {
  .p-costume__genres {
    grid-template-columns: repeat(7, 1fr);
  }
}

.p-costume__genre {
  padding-block: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5rem;
  background-color: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-costume__genre {
    margin-top: 1.6rem;
    padding-block: 1rem;
    font-size: 1.4rem;
  }
}
.p-costume__genre.is-active {
  background-color: #a2865e;
  color: #fff;
  border-color: #a2865e;
}

.p-costume__categories {
  display: none;
}
.p-costume__categories.is-visible {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (min-width: 768px) {
  .p-costume__categories.is-visible {
    margin-top: 2rem;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.6rem 1rem;
  }
}

.p-costume__category {
  padding: 0.3rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  background-color: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-costume__category {
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
  }
}
.p-costume__category.is-active {
  background-color: #717171;
  color: #fff;
  border-color: #717171;
}

.p-costume__empty {
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #717171;
}
@media only screen and (min-width: 768px) {
  .p-costume__empty {
    margin-top: 4rem;
    font-size: 1.1rem;
  }
}
.p-costume__empty[hidden] {
  display: none;
}

.p-costume__items {
  display: none;
}
@media only screen and (min-width: 768px) {
  .p-costume__items {
    margin-top: 4rem;
  }
}
.p-costume__items {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-costume__items {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.6rem;
  }
}
.p-costume__items.is-visible {
  display: grid;
}

.p-costume__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.p-costume__item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.p-costume__item button:hover .p-costume__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-costume__img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-costume__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.p-costume__outing-label {
  position: absolute;
  bottom: 0.5rem;
  right: 0.4rem;
  background-color: #000;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.3rem 0.8rem 0.4rem 1.8rem;
  pointer-events: none;
  border-radius: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-costume__outing-label {
    bottom: 0.8rem;
    right: 0.6rem;
    font-size: 1.2rem;
    padding: 0.4rem 1.2rem 0.6rem 2.7rem;
  }
}
.p-costume__outing-label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-image: url(../img/common/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-costume__outing-label::before {
    left: 1rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}

.p-costume__outing-label--only {
  background-color: #a2865e;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-costume__outing-label--only {
    padding: 0.4rem 1.2rem 0.6rem 1.2rem;
  }
}
.p-costume__outing-label--only::before {
  display: none;
}

.p-costume__terms {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
}

@media (any-hover: hover) {
  .p-costume__tab:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
  }
  .p-costume__genre:hover {
    background-color: #a2865e;
    border-color: #a2865e;
    color: #fff;
  }
  .p-costume__category:hover {
    background-color: #717171;
    border-color: #717171;
    color: #fff;
  }
}
/* ------------------------------------------------
p-shop
--------------------------------------------------- */
.p-shop__head {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-shop__head {
    margin-top: 6rem;
  }
}

.p-shop__container {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-shop__container {
    padding-top: 6rem;
  }
}

.p-shop__note {
  margin-top: 1.6rem;
}

.p-shop__link {
  margin-top: 4rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-shop__link {
    margin-top: 8rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}

.p-shop__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ------------------------------------------------
p-shop-item
--------------------------------------------------- */
.p-shop-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 6rem 8rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item {
    padding-block: 12rem 16rem;
  }
}

.p-shop-item__inner {
  max-width: 1080px;
}

.p-shop-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-shop-item__title span:nth-child(1) {
  font-size: 2.4rem;
  font-family: "EB Garamond", serif;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__title span:nth-child(1) {
    font-size: 3.6rem;
  }
}
.p-shop-item__title span:nth-child(2) {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__title span:nth-child(2) {
    font-size: 1.4rem;
    padding-bottom: 0.4rem;
  }
}

.p-shop-item__mv {
  margin-top: 2rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__mv {
    margin-top: 4rem;
    aspect-ratio: 1440/700;
  }
}
.p-shop-item__mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-shop-item__desc {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__desc {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
}

.p-shop-item__photo-gallery {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__photo-gallery {
    margin-top: 3rem;
  }
}
.p-shop-item__photo-gallery .p-gallery__inner.l-inner {
  padding-inline: 0;
}

.p-shop-item__contents {
  margin-top: 2rem;
  border-top: 0.1rem solid #717171;
  border-bottom: 0.1rem solid #717171;
  padding: 2rem 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__contents {
    margin-top: 6rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3rem;
    gap: 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-shop-item__img {
    width: 40%;
  }
}
.p-shop-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-shop-item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-shop-item__btn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__btn {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-shop-item__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  height: 6rem;
  gap: 1.6rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__btn a {
    height: 7rem;
    gap: 1.6rem;
  }
}
.p-shop-item__btn a svg {
  fill: #fff;
}
.p-shop-item__btn a:nth-child(1) svg {
  width: 2.4rem;
  height: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__btn a:nth-child(1) svg {
    margin-top: 0.4rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}
.p-shop-item__btn a:nth-child(2) svg {
  width: 3rem;
  height: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__btn a:nth-child(2) svg {
    width: 3.8rem;
    height: 3.8rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-shop-item__btn-text {
    margin-top: 0.6rem;
  }
}
.p-shop-item__btn-text span {
  display: block;
}
.p-shop-item__btn-text span:nth-child(1) {
  font-size: 1rem;
}
.p-shop-item__btn-text span:nth-child(2) {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-shop-item__btn-text span:nth-child(3) {
  font-family: "barlow-condensed", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.p-shop-item__content {
  position: relative;
}

.p-shop-item__address {
  margin-top: 3rem;
  font-size: 1.3rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__address {
    margin-top: 5rem;
    font-size: 1.6rem;
  }
}
.p-shop-item__address::before {
  position: absolute;
  content: "";
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 1.6rem;
  background-image: url(../img/common/icon_place.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__address::before {
    width: 1.5rem;
    height: 1.9rem;
  }
}

.p-shop-item__tel {
  margin-top: 0.4rem;
  position: relative;
  padding-left: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__tel {
    padding-left: 2.6rem;
  }
}
.p-shop-item__tel::before {
  position: absolute;
  content: "";
  top: 60%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__tel::before {
    width: 2rem;
    height: 2rem;
  }
}
.p-shop-item__tel a {
  font-family: "barlow-condensed", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__tel a {
    font-size: 3.2rem;
  }
}

.p-shop-item__time {
  margin-top: 0.7rem;
  font-size: 1.3rem;
  position: relative;
  padding-left: 1.8rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__time {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
.p-shop-item__time::before {
  position: absolute;
  content: "";
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../img/common/icon_calendar.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.p-shop-item__map {
  margin-top: 3rem;
  padding-bottom: 1rem;
  width: 100%;
  aspect-ratio: 375/200;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__map {
    margin-top: 6rem;
    aspect-ratio: 1000/400;
    padding-bottom: 0;
  }
}
.p-shop-item__map iframe {
  width: 100%;
  height: 100%;
}

.p-shop-item__sns {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.6rem;
}
.p-shop-item__sns a {
  display: block;
}
.p-shop-item__sns a svg {
  fill: #000;
  width: 4rem;
  -webkit-transform: translate(0.5rem, 0.9rem);
          transform: translate(0.5rem, 0.9rem);
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-shop-item__sns a svg {
    width: 6rem;
    -webkit-transform: translate(1rem, 1.4rem);
            transform: translate(1rem, 1.4rem);
  }
}

.p-shop-item--photo-therapy-timegraph {
  background-color: #f0f0ef;
}

.p-shop-item--studio-ueyama-p-c-s {
  background-color: #f0f0ef;
}

.p-shop-item__btn--photo-therapy-timegraph a {
  background-color: #645030;
}

.p-shop-item__btn--photo-flow a {
  background-color: #3e4757;
}

.p-shop-item__btn--studio-ueyama-p-c-s a {
  background-color: #594c4e;
}

@media (any-hover: hover) {
  .p-shop-item__btn--photo-therapy-timegraph a:hover {
    background-color: #483921;
  }
  .p-shop-item__btn--photo-flow a:hover {
    background-color: #2b323f;
  }
  .p-shop-item__btn--studio-ueyama-p-c-s a:hover {
    background-color: #443839;
  }
  .p-shop-item__sns a:hover svg {
    fill: #a2865e;
  }
}
/* ------------------------------------------------
gallery
--------------------------------------------------- */
.p-shop .p-gallery__inner {
  max-width: 1080px;
}

/* ------------------------------------------------
p-goods
--------------------------------------------------- */
.p-goods__container {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-goods__container {
    padding-top: 6rem;
  }
}

.p-goods__head {
  padding-bottom: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-goods__head {
    padding-bottom: 0;
  }
}

.p-goods__note {
  margin-top: 1.6rem;
}

.p-goods__link {
  margin-top: 4rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-goods__link {
    margin-top: 8rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-goods__type {
    margin-top: 8rem;
  }
}

/* ------------------------------------------------
p-goods-type-item 商品タイプ
--------------------------------------------------- */
.p-goods-type-item {
  padding-block: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-goods-type-item {
    padding-block: 10rem 14rem;
  }
}

.p-goods-type-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
.p-goods-type-item__title span:nth-child(1) {
  font-size: 3rem;
  font-family: "EB Garamond", serif;
}
@media only screen and (min-width: 768px) {
  .p-goods-type-item__title span:nth-child(1) {
    font-size: 3.6rem;
  }
}
.p-goods-type-item__title span:nth-child(2) {
  font-size: 1.2rem;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 768px) {
  .p-goods-type-item__title span:nth-child(2) {
    font-size: 1.4rem;
    padding-bottom: 0.4rem;
  }
}

.p-goods-type-item__container {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-goods-type-item__container {
    margin-top: 4rem;
  }
}

.p-goods-type-item__mv {
  aspect-ratio: 2/1;
  background-color: #c5c5c5;
}
@media only screen and (min-width: 768px) {
  .p-goods-type-item__mv {
    aspect-ratio: 3/1;
  }
}
.p-goods-type-item__mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-goods-type-item__items {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.6rem;
}
@media only screen and (min-width: 768px) {
  .p-goods-type-item__items {
    margin-top: 8rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 8rem 4.8rem;
  }
}

.p-goods-type-item:nth-child(odd) {
  background-color: #f0f0ef;
}

/* ------------------------------------------------
p-goods-item 商品アイテム
--------------------------------------------------- */
.p-goods-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.p-goods-main__items {
  position: absolute;
  inset: 0;
}

.p-goods-main__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.p-goods-main__slide.is-active {
  opacity: 1;
}
.p-goods-main__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-goods-item__thumbnail {
  margin-top: 0.8rem;
}

.p-goods-thumbnail__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}

.p-goods-thumbnail__slide {
  cursor: pointer;
}
.p-goods-thumbnail__slide img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-goods-item__contents {
  margin-top: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-goods-item__contents {
    margin-top: 2rem;
  }
}

.p-goods-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.p-goods-item__title span:nth-child(1) {
  font-size: 2.4rem;
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-goods-item__title span:nth-child(1) {
    font-size: 2.8rem;
  }
}
.p-goods-item__title span:nth-child(2) {
  font-size: 1.2rem;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 768px) {
  .p-goods-item__title span:nth-child(2) {
    font-size: 1.4rem;
    padding-bottom: 0.4rem;
  }
}

.p-goods-item__text {
  margin-top: 1.6rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-goods-item__text {
    font-size: 1.3rem;
  }
}

.p-goods-item__kinds {
  margin-top: 1.6rem;
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  border-top: 0.1rem solid #717171;
  border-bottom: 0.1rem solid #717171;
}

.p-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

.p-item-meta__size {
  font-size: 1.2rem;
}

.p-item-meta__price {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.8rem;
}

.p-goods-item__note {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

/* ------------------------------------------------
p-set セット商品
--------------------------------------------------- */
.p-set__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-set__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}

.p-set-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  border: 0.1rem solid #000;
  padding: 1.6rem;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-set-item {
    gap: 4rem;
    padding: 4rem;
  }
}

.p-set-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 3rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-set-item__head {
    max-width: 34rem;
    margin-inline: auto;
  }
}

.p-set-item__img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-set-item__img {
    width: 36.8rem;
  }
}
.p-set-item__img img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-set-item__data {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 12rem;
}
@media only screen and (min-width: 768px) {
  .p-set-item__data {
    bottom: -2rem;
    right: -2rem;
    width: 18rem;
  }
}
.p-set-item__data p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  padding-top: 0.4rem;
  padding-left: 0.6rem;
}
@media only screen and (min-width: 768px) {
  .p-set-item__data p {
    padding-top: 0.6rem;
    padding-left: 1rem;
  }
}
.p-set-item__data p span {
  display: block;
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  .p-set-item__data p span {
    font-size: 3rem;
  }
}

.p-set-item__movie {
  position: absolute;
  top: -2rem;
  left: -2rem;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  width: 12rem;
}
@media only screen and (min-width: 768px) {
  .p-set-item__movie {
    top: -1rem;
    left: -1.6rem;
    width: 18rem;
  }
}
.p-set-item__movie span {
  position: absolute;
  bottom: -2rem;
  left: 45%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  color: #a2865e;
}
@media only screen and (min-width: 768px) {
  .p-set-item__movie span {
    font-size: 1.6rem;
  }
}

.p-set-item__content {
  margin-top: 2rem;
  padding: 1.6rem;
  background-color: #eee;
}
@media only screen and (min-width: 768px) {
  .p-set-item__content {
    padding: 2.4rem;
  }
}

.p-main-set__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #000;
}
.p-main-set__head dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-main-set__head dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-main-set__head dt span {
  background-color: #eee;
  position: relative;
  z-index: 3;
  padding-right: 1rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-main-set__head dt span {
    font-size: 1.6rem;
  }
}
.p-main-set__head dt span span.p-main-set__small {
  font-size: 1.2rem;
}
.p-main-set__head dt::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 0.1rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#717171), color-stop(0.1rem, #717171), color-stop(0.2rem, transparent), color-stop(0.3rem, transparent));
  background-image: linear-gradient(to right, #717171, #717171 0.1rem, transparent 0.2rem, transparent 0.3rem);
  /*  #000は2pxまで transparentは2pxから8pxまでという意味　つまりtransparentは6px*/
  background-size: 0.3rem 0.1rem;
  /* リピート幅・高さを指定 */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
  /* 横向きにのみ繰り返す */
}
.p-main-set__head dd {
  text-align: right;
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.4rem;
  width: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-main-set__head dd {
    font-size: 1.8rem;
    width: 7rem;
  }
}

.p-main-set__total span:nth-child(1) {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-main-set__total span:nth-child(1) {
    font-size: 1.4rem;
  }
}
.p-main-set__total span:nth-child(2) {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-main-set__total span:nth-child(2) {
    font-size: 1.8rem;
  }
}

.p-main-set__foot {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-main-set__discount {
  font-family: "barlow-condensed", sans-serif;
  background-color: #a2865e;
  font-size: 1.4rem;
  border-radius: 2rem;
  padding: 0.3rem 0.8rem 0.4rem;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-main-set__discount {
    font-size: 2rem;
    border-radius: 3rem;
    padding: 0.6rem 1.2rem 0.7rem;
  }
}

.p-main-set__price {
  text-align: right;
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.8rem;
  color: #a2865e;
}
@media only screen and (min-width: 768px) {
  .p-main-set__price {
    font-size: 2.4rem;
  }
}

.p-set-item__sub-wrap {
  margin-top: 3rem;
  padding-top: 0.8rem;
  border-top: 0.1rem solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.p-set-item__sub {
  margin-top: 0;
}

.p-sub-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-sub-set {
    gap: 2rem;
  }
}

.p-sub-set__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 0.8rem;
  position: relative;
  padding-right: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-sub-set__head {
    gap: 1.6rem;
    padding-right: 3rem;
  }
}
.p-sub-set__head::before {
  position: absolute;
  content: "";
  top: 51%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1rem;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #000;
}
.p-sub-set__head span:nth-child(1) {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-sub-set__head span:nth-child(1) {
    font-size: 1.4rem;
  }
}

.p-sub-set__total {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-sub-set__total {
    font-size: 1.8rem;
  }
}

.p-sub-set__price {
  font-family: "barlow-condensed", sans-serif;
  font-size: 1.4rem;
  width: 5rem;
  text-align: right;
  color: #a2865e;
}
@media only screen and (min-width: 768px) {
  .p-sub-set__price {
    width: 7rem;
    font-size: 1.8rem;
  }
}

.p-set-item__note {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-set-item__note {
    margin-top: 1.6rem;
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------
p-event
--------------------------------------------------- */
.p-event__container {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-event__container {
    padding-top: 6rem;
  }
}

.p-campaign__empty {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-campaign__empty {
    margin-top: 8rem;
    font-size: 1.6rem;
  }
}

/* --------------------------------
p-404
----------------------------------- */
.p-404 {
  position: relative;
  margin-top: 6rem;
  padding-block: 16rem;
}
@media only screen and (max-width: 767px) {
  .p-404 {
    margin-top: 5.2rem;
    padding-block: 8rem 6rem;
  }
}

.p-404__page-title {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-404__page-title {
    font-size: 3rem;
  }
}

.p-404__text {
  margin-top: 6rem;
  font-size: max(1.6rem, 12px);
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-404__text {
    max-width: 420px;
    margin-inline: auto;
    margin-top: 3.6rem;
    text-align: left;
    font-size: 1.4rem;
  }
}

.p-404__btn {
  margin-top: 8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-404__btn {
    margin-top: 6rem;
  }
}

/* ------------------------------------------------
p-gallery-model
--------------------------------------------------- */
.p-gallery-model__container {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-gallery-model__container {
    padding-top: 6rem;
  }
}

.p-gallery-model__text {
  margin-top: 1.6rem;
}

.p-gallery-model__body {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-gallery-model__body {
    margin-top: 8rem;
  }
}

@media only screen and (min-width: 768px) {
  .mgl-img-container img {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .mgl-masonry {
    -webkit-column-count: 3 !important;
       -moz-column-count: 3 !important;
            column-count: 3 !important;
  }
}
/* --------------------------------
utility
----------------------------------- */
.u-ib {
  display: inline-block;
}

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

@media only screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-uppercase {
  text-transform: uppercase;
}

.u-price {
  font-family: "EB Garamond", serif;
}

.u-price-small {
  font-size: 1.3rem !important;
}

.u-lower-gallery {
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .u-lower-gallery {
    margin-top: 12rem;
  }
}/*# sourceMappingURL=style.css.map */