/* Scss Document */
@-webkit-keyframes slide_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slide_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slide_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slide_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slide_up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.slide_up.animate_slide_up {
  -webkit-animation-name: slide_up;
          animation-name: slide_up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide_down {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.slide_down.animate_slide_down {
  -webkit-animation-name: slide_down;
          animation-name: slide_down;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide_right {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.slide_right.animate_slide_right {
  -webkit-animation-name: slide_right;
          animation-name: slide_right;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide_left {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.slide_left.animate_slide_left {
  -webkit-animation-name: slide_left;
          animation-name: slide_left;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.animate_slide_up {
  -webkit-animation-name: slide_up;
          animation-name: slide_up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate_slide_down {
  -webkit-animation-name: slide_down;
          animation-name: slide_down;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate_slide_right {
  -webkit-animation-name: slide_right;
          animation-name: slide_right;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate_slide_left {
  -webkit-animation-name: slide_left;
          animation-name: slide_left;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(15px);
            filter: blur(15px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(15px);
            filter: blur(15px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes blur_up {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes blur_up {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes blur_down {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes blur_down {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes blur_right {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes blur_right {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes blur_left {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes blur_left {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.blur {
  opacity: 0;
}
.blur.animate_blur {
  -webkit-animation-name: blur;
          animation-name: blur;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.blur_up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.blur_up.animate_blur_up {
  -webkit-animation-name: blur_up;
          animation-name: blur_up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.blur_down {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.blur_down.animate_blur_down {
  -webkit-animation-name: blur_down;
          animation-name: blur_down;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.blur_right {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.blur_right.animate_blur_right {
  -webkit-animation-name: blur_right;
          animation-name: blur_right;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.blur_left {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.blur_left.animate_blur_left {
  -webkit-animation-name: blur_left;
          animation-name: blur_left;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.animate_blur {
  -webkit-animation-name: blur;
          animation-name: blur;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate_blur_up {
  -webkit-animation-name: blur_up;
          animation-name: blur_up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate_blur_down {
  -webkit-animation-name: blur_down;
          animation-name: blur_down;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate_blur_right {
  -webkit-animation-name: blur_right;
          animation-name: blur_right;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate_blur_left {
  -webkit-animation-name: blur_left;
          animation-name: blur_left;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (prefers-reduced-motion: reduce) {
  .slide_up {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .slide_up.animate_slide_up,
  .animate_slide_up {
    -webkit-animation: none;
            animation: none;
  }
  .slide_down {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .slide_down.animate_slide_down,
  .animate_slide_down {
    -webkit-animation: none;
            animation: none;
  }
  .slide_right {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .slide_right.animate_slide_right,
  .animate_slide_right {
    -webkit-animation: none;
            animation: none;
  }
  .slide_left {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .slide_left.animate_slide_left,
  .animate_slide_left {
    -webkit-animation: none;
            animation: none;
  }
  .blur {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .blur.animate_blur,
  .animate_blur {
    -webkit-animation: none;
            animation: none;
  }
  .blur_up {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .blur_up.animate_blur_up,
  .animate_blur_up {
    -webkit-animation: none;
            animation: none;
  }
  .blur_down {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .blur_down.animate_blur_down,
  .animate_blur_down {
    -webkit-animation: none;
            animation: none;
  }
  .blur_right {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .blur_right.animate_blur_right,
  .animate_blur_right {
    -webkit-animation: none;
            animation: none;
  }
  .blur_left {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .blur_left.animate_blur_left,
  .animate_blur_left {
    -webkit-animation: none;
            animation: none;
  }
}
/* gsap animation add */
.js-mv-el {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.js-mv-line {
  opacity: 0;
}

.js-draw-line, .js-mv-line {
  stroke: #fb0002;
  stroke-width: 1.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: none;
}

.js-sepia {
  -webkit-filter: sepia(100%) grayscale(40%);
          filter: sepia(100%) grayscale(40%);
  -webkit-transition: all linear 3s;
  transition: all linear 3s;
}
.js-sepia.active {
  -webkit-filter: none;
          filter: none;
}

.js-swing {
  -webkit-transform-origin: top center;
          transform-origin: top center;
  display: inline-block;
}

.paragraph-group {
  display: block;
}

.paragraph {
  display: inline-block;
}

.text-white {
  color: #fff;
}

.text-bold {
  font-weight: bold;
}

.text-black {
  font-weight: 700;
}

.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.align-justify {
  text-align: justify;
}

.font-xla {
  font-size: 3rem;
}
.font-la {
  font-size: 2rem;
}
.font-mi {
  font-size: 1.8rem;
}
.font-sm {
  font-size: 1.6rem;
}
.font-xsm {
  font-size: 1.4rem;
}

.margin-b16 {
  margin-bottom: 1.6rem;
}
.margin-b24 {
  margin-bottom: 2.4rem;
}
.margin-b32 {
  margin-bottom: 3.2rem;
}
.margin-b40 {
  margin-bottom: 4rem;
}
.margin-b80 {
  margin-bottom: 8rem;
}
.margin-l16 {
  margin-left: 1.6rem;
}
.margin-l24 {
  margin-left: 2.4rem;
}
.margin-l32 {
  margin-left: 3.2rem;
}

.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}
.w-100 {
  width: 100%;
}

html {
  height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background-color: #e0deda;
  font-size: calc(10 / 500 * min(100vw, 500px));
}
html ::-moz-selection {
  background: #fb0002;
  color: #ffffff;
}
html ::selection {
  background: #fb0002;
  color: #ffffff;
}
@media print, screen and (min-width: 768px) {
  html {
    background-color: #e0deda;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (min-width: 501px) and (max-width: 1099px) {
  html:has(> body > .p-pc-root) {
    background-color: #2b2b2b;
  }
  html:has(> body > .p-pc-root)::before, html:has(> body > .p-pc-root)::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
  }
  html:has(> body > .p-pc-root)::before {
    left: 0;
    width: max((100vw - 500px) / 2, 0px);
    background-image: url("../images/common/bg_pc_01.webp");
    background-position: center center;
  }
  html:has(> body > .p-pc-root)::after {
    right: 0;
    width: max((100vw - 500px) / 2, 0px);
    background-image: url("../images/common/bg_pc_02.webp");
    background-position: center center;
  }
}

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

@-webkit-keyframes body-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes body-fade-in {
  to {
    opacity: 1;
  }
}
body {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow-x: clip;
  min-height: 100vh;
  margin: 0 auto;
  color: #2b2b2b;
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.08em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  opacity: 0;
  -webkit-animation: body-fade-in 1s ease forwards;
          animation: body-fade-in 1s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  body {
    -webkit-animation-duration: 0.01s;
            animation-duration: 0.01s;
  }
}
@media print, screen and (min-width: 768px) {
  body {
    -webkit-box-shadow: 0 0 4rem rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 4rem rgba(0, 0, 0, 0.08);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  body::-webkit-scrollbar {
    display: none;
  }
}
body:has(.p-pc-root) {
  max-width: 500px;
}
@media screen and (min-width: 501px) and (max-width: 1099px) {
  body:has(.p-pc-root) {
    -webkit-box-shadow: 0 0 4rem rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 4rem rgba(0, 0, 0, 0.08);
  }
}
@media print, screen and (min-width: 1100px) {
  body:has(.p-pc-root) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: none;
    margin: 0;
    overflow: hidden;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media print, screen and (min-width: 1100px) {
  body:has(> .p-pc-root) > .p-pc-root {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
    width: 100%;
  }
}

@media print, screen and (min-width: 1100px) {
  .p-pc {
    display: block;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    overflow-x: clip;
  }
}

main {
  overflow-x: clip;
}

.p-pc__hero {
  display: none;
}
@media print, screen and (min-width: 1100px) {
  .p-pc__hero {
    display: block;
    position: absolute;
    inset: 0;
    min-width: 0;
    min-height: 0;
    color: #ffffff;
  }
}

@media print, screen and (min-width: 1100px) {
  .p-pc__hero-bg {
    position: absolute;
    inset: 0;
    background-color: #2b2b2b;
    overflow: hidden;
    pointer-events: none;
  }
  .p-pc__hero-bg::before, .p-pc__hero-bg::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-pc__hero-bg::before {
    left: 0;
    right: calc(50% + min(250px, 50vw));
    background-image: url("../images/common/bg_pc_01.webp");
    background-position: center center;
  }
  .p-pc__hero-bg::after {
    left: calc(50% + min(250px, 50vw));
    right: 0;
    background-image: url("../images/common/bg_pc_02.webp");
    background-position: center center;
  }
}

@media print, screen and (min-width: 1100px) {
  .p-pc__hero-inner {
    position: absolute;
    top: var(--c-header-offset, 7.2rem);
    right: calc(50% + min(250px, 50vw));
    bottom: 0;
    left: 0;
    z-index: 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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 4rem;
    -webkit-transition: top 0.8s ease 0.4s, right 0.8s ease 0.4s;
    transition: top 0.8s ease 0.4s, right 0.8s ease 0.4s;
  }
}

.p-pc__hero-title {
  margin: 0;
  max-width: 100%;
}
@media print, screen and (min-width: 1100px) {
  .p-pc__hero-title {
    width: clamp(20rem, 12vw + 8rem, 35rem);
  }
}

.p-pc__hero-title-link {
  display: block;
}

.p-pc__hero-title-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

.p-pc__column {
  width: 100%;
  overflow-x: clip;
}
@media print, screen and (min-width: 1100px) {
  .p-pc__column {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: min(500px, 100vw);
    max-width: 500px;
    margin-inline: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-pc__column::-webkit-scrollbar {
    display: none;
  }
  .p-pc__column.is-header-menu-locked {
    overflow: hidden !important;
  }
  .p-pc__column {
    min-height: 0;
    max-height: none;
    background-color: #efeeed;
    -webkit-box-shadow: 0 0 3.2rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 3.2rem rgba(0, 0, 0, 0.1);
  }
}
.p-pc__column main {
  position: relative;
  height: auto;
  width: 100%;
}

body.has-bottom-cta {
  padding-bottom: 5rem;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.75;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

.contarea {
  width: 100%;
  padding: 0 5rem;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  min-width: 14rem;
  min-height: 4.4rem;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background-color: #fb0002;
  color: #ffffff;
  font-family: "Libre Caslon Text", serif, "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 3px;
}
.c-btn--outline {
  border-color: #fb0002;
  background-color: transparent;
  color: #fb0002;
}
.c-btn--light {
  background-color: #ffffff;
  color: #fb0002;
}
.c-btn--circle {
  width: 4.8rem;
  height: 4.8rem;
  min-width: 0;
  padding: 0;
  border-radius: 50%;
}

.c-arrow-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.2rem;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #fb0002;
  color: #ffffff;
  line-height: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-arrow-button:hover {
  opacity: 0.8;
}
.c-arrow-button:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 3px;
}
.c-arrow-button--outline {
  border: 1px solid #fb0002;
  background-color: #ffffff;
  color: #fb0002;
}
.c-arrow-button--outline-dark {
  border: 1px solid #2b2b2b;
  background: transparent;
  color: #2b2b2b;
}
.c-arrow-button--outline-light {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.c-arrow-button--sm {
  width: 2.6rem;
}
.c-arrow-button__icon {
  position: relative;
  top: -0.1rem;
  display: block;
  width: 2.4rem;
  height: auto;
  pointer-events: none;
}
.c-arrow-button--sm .c-arrow-button__icon {
  width: 1.4rem;
}

.c-link-btn {
  position: relative;
  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: 100%;
  min-height: 6.4rem;
  padding: 1.4rem 6.4rem;
  background-color: #fb0002;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-link-btn:hover {
  opacity: 0.85;
}
.c-link-btn:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 3px;
}
.c-link-btn--outline {
  border: 1px solid #fb0002;
  background-color: #ffffff;
  color: #fb0002;
}
.c-link-btn--outline-dark {
  border: 1px solid #2b2b2b;
  background: transparent;
  color: #2b2b2b;
}
.c-link-btn--auto {
  width: auto;
  min-width: 22rem;
  padding-right: 5.6rem;
  padding-left: 2.4rem;
}
.c-link-btn__icon {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.c-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-cta:hover {
  opacity: 0.8;
}
.c-cta:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 3px;
}
.c-cta--circle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background-color: #fb0002;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
}
.c-cta__line {
  display: block;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
.c-cta__line--lg {
  font-size: 2.2rem;
  font-weight: 700;
}
.c-cta__line--md {
  font-size: 2.2rem;
  font-weight: 700;
}
.c-cta__line--sm {
  font-size: 1.6rem;
  font-weight: 500;
}
.c-cta--pill {
  gap: 0.8rem;
  min-height: 4.4rem;
  padding: 1rem 2rem;
  border: 1px solid #fb0002;
  border-radius: 999px;
  background-color: transparent;
  color: #fb0002;
  font-family: "Libre Caslon Text", serif, "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.c-cta__arrow {
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-cta--fixed {
  position: fixed;
  right: max((100vw - 500px) / 2 + 1.6rem, 1.6rem);
  bottom: 1.6rem;
  z-index: 1000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.6rem;
  height: 9.6rem;
  gap: 0.15rem;
  opacity: 0;
  -webkit-transform: translateY(1.2rem);
          transform: translateY(1.2rem);
  pointer-events: none;
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.15);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.c-cta--fixed.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.c-cta--fixed .c-cta__line--lg,
.c-cta--fixed .c-cta__line--md {
  font-size: 1.6rem;
}
.c-cta--fixed .c-cta__line--dot {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
body.has-bottom-cta .c-cta--fixed {
  bottom: 6.6rem;
}
@media print, screen and (min-width: 1100px) {
  body:has(> .p-pc-root) .c-cta--fixed {
    right: calc(50% - min(250px, 50vw) + 1.6rem);
  }
}

.c-section-title {
  position: relative;
  overflow: hidden;
  color: #2b2b2b;
}
.c-section-title__en {
  margin: 0;
  font-family: "Libre Caslon Text", serif;
  font-size: 4.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.c-section-title__jp {
  margin: 2rem 0 0;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.c-section-title--right {
  text-align: right;
}

.c-shop-section-title {
  color: #2b2b2b;
  text-align: center;
}
.c-shop-section-title__en {
  margin: 0;
  color: #fb0002;
  font-family: "Libre Caslon Text", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.c-shop-section-title__jp {
  margin: 1.6rem 0 0;
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}

.c-feature-card {
  position: relative;
  overflow: visible;
}
.c-feature-card__label {
  position: absolute;
  top: -8rem;
  left: -3rem;
  margin: 0;
  color: #e0deda;
  font-family: "Libre Caslon Text", serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
}
.c-feature-card__media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 25rem;
  margin-top: 10rem;
  overflow: hidden;
}
.c-feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-feature-card__title {
  position: relative;
  z-index: 1;
  margin: 4rem 0 0;
  color: #fb0002;
  font-family: "Shippori Mincho", serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}
.c-feature-card__text {
  position: relative;
  z-index: 1;
  margin: 4rem 0 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.c-feature-card--right .c-feature-card__label {
  right: -3rem;
  left: auto;
}

.c-key-point {
  position: relative;
  overflow: visible;
}
.c-key-point__media {
  position: relative;
  width: 40rem;
  overflow: visible;
}
.c-key-point__media img:not(.c-key-point__line) {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 415/250;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-key-point__body {
  padding: 3.2rem 0 0;
}
.c-key-point__title-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.c-key-point__line {
  position: absolute;
  width: 10.4rem;
  height: auto;
  pointer-events: none;
}
.c-key-point__title {
  margin: 0;
  color: #2b2b2b;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
}
.c-key-point__title-accent {
  color: #fb0002;
  font-size: 2.2rem;
}
.c-key-point__title-sub {
  font-size: 1.8rem;
  font-weight: inherit;
  color: inherit;
}
.c-key-point__title-lead {
  font-size: 2.2rem;
  font-weight: inherit;
  color: inherit;
}
.c-key-point__text {
  margin: 3.2rem 0 0;
  color: #2b2b2b;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}
.c-key-point__label {
  margin: 0;
}
.c-key-point--01 .c-key-point__media, .c-key-point--03 .c-key-point__media {
  margin-left: -5rem;
}
.c-key-point--01 .c-key-point__title, .c-key-point--02 .c-key-point__title, .c-key-point--03 .c-key-point__title {
  text-align: left;
}
.c-key-point--01 .c-key-point__text, .c-key-point--02 .c-key-point__text, .c-key-point--03 .c-key-point__text {
  text-align: left;
}
.c-key-point--01 .c-key-point__body, .c-key-point--02 .c-key-point__body, .c-key-point--03 .c-key-point__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 5rem minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40rem;
  max-width: 100%;
  margin-left: -5rem;
  padding-left: 2.5rem;
  padding-right: 0;
}
.c-key-point--01 .c-key-point__body > *:nth-child(1), .c-key-point--02 .c-key-point__body > *:nth-child(1), .c-key-point--03 .c-key-point__body > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-key-point--01 .c-key-point__body > *:nth-child(2), .c-key-point--02 .c-key-point__body > *:nth-child(2), .c-key-point--03 .c-key-point__body > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.c-key-point--01 .c-key-point__body > *:nth-child(3), .c-key-point--02 .c-key-point__body > *:nth-child(3), .c-key-point--03 .c-key-point__body > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.c-key-point--01 .c-key-point__body > *:nth-child(4), .c-key-point--02 .c-key-point__body > *:nth-child(4), .c-key-point--03 .c-key-point__body > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.c-key-point--01 .c-key-point__label, .c-key-point--02 .c-key-point__label, .c-key-point--03 .c-key-point__label {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/span 2;
  -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-align: start;
      justify-self: start;
  margin-top: 1rem;
  color: #e0deda;
  font-family: "Libre Caslon Text", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}
.c-key-point--01 .c-key-point__title-wrap, .c-key-point--02 .c-key-point__title-wrap, .c-key-point--03 .c-key-point__title-wrap {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  width: 100%;
}
.c-key-point--01 .c-key-point__title-accent, .c-key-point--02 .c-key-point__title-accent, .c-key-point--03 .c-key-point__title-accent {
  display: block;
}
.c-key-point--01 .c-key-point__text, .c-key-point--02 .c-key-point__text, .c-key-point--03 .c-key-point__text {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
  width: 100%;
  margin-top: 2.4rem;
}
.c-key-point--01 .c-key-point__media {
  padding-bottom: 7rem;
  margin-bottom: -7rem;
}
.c-key-point--01 .c-key-point__line {
  right: -11rem;
  top: 20rem;
  width: 10.4rem;
}
.c-key-point--03 .c-key-point__media {
  padding-bottom: 9rem;
  margin-bottom: -9rem;
}
.c-key-point--03 .c-key-point__line {
  right: -12rem;
  top: 20rem;
  width: 9.3rem;
}
.c-key-point--02 .c-key-point__media {
  margin-right: -5rem;
  margin-left: auto;
  padding-bottom: 7rem;
  margin-bottom: -7rem;
}
.c-key-point--02 .c-key-point__line {
  right: -2rem;
  top: 26rem;
  width: 11.5rem;
  -webkit-transform: none;
          transform: none;
}

.c-filter {
  padding: 2.2rem;
  background-color: #efeeed;
}
.c-filter__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
}
.c-filter__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.c-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0.8rem;
  margin-top: 2rem;
}

.c-filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.8rem 2rem;
  border: 1px solid #c1bfbd;
  border-radius: 1rem;
  background-color: #ffffff;
  color: #2b2b2b;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-filter 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-filter 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
}
.c-filter-btn--chip:not(.c-filter-btn--active):hover {
  border-color: #fb0002;
  background-color: #fb0002;
  color: #ffffff;
}
.c-filter-btn--chip.c-filter-btn--active:hover {
  -webkit-filter: brightness(0.94);
          filter: brightness(0.94);
}
.c-filter-btn--clear:hover {
  border-color: #fb0002;
  background-color: #fb0002;
  color: #ffffff;
}
.c-filter-btn:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 2px;
}
.c-filter-btn--active {
  border-color: #fb0002;
  background-color: #fb0002;
  color: #ffffff;
}
.c-filter-btn--clear {
  border-color: #fb0002;
}
.c-filter-btn__icon {
  font-family: "Libre Caslon Text", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.c-shop-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-shop-icon-list > li {
  position: relative;
  width: 12rem;
}
.c-shop-icon-list {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-shop-icon-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  width: auto;
}
.c-shop-icon-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  right: 0;
  width: 1px;
  background-color: #fb0002;
  pointer-events: none;
}

.c-shop-icon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.7rem;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 1.2rem 0 1rem;
  background-color: transparent;
  border: none;
  text-align: center;
}
.c-shop-icon__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.8rem;
          flex: 0 0 4.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 4.8rem;
  margin: 0;
}
.c-shop-icon__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-shop-icon__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  color: #fb0002;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  white-space: normal;
}
.c-shop-icon--01 .c-shop-icon__img {
  height: 3.2rem;
}
.c-shop-icon--02 .c-shop-icon__img {
  height: 2.4rem;
}
.c-shop-icon--03 .c-shop-icon__img {
  height: 4.4rem;
}

.c-shop-card__body {
  padding: 1rem 0 5rem;
}
.c-shop-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-shop-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: #efeeed;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.c-shop-card__foot {
  margin: 2rem 0 0;
}
.c-shop-card__link-row {
  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: 1.2rem;
  width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.c-shop-card__link-row:has(.c-shop-card__title--brand), .c-shop-card__link-row:has(.c-shop-card__title--market) {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-shop-card__link-row:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 3px;
  border-radius: 0.4rem;
}
.c-shop-card__link-row .c-arrow-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-shop-card__link-row > .c-shop-card__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.c-shop-card__headline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.c-shop-card__title {
  margin: 0;
  color: #2b2b2b;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: pre-line;
}
.c-shop-card__title--brand, .c-shop-card__title--market {
  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.3rem;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: normal;
}
.c-shop-card__label, .c-shop-card__en {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.c-shop-card__name {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.c-shop-card__title--market .c-shop-card__en {
  letter-spacing: 0.12em;
}
.c-shop-card__note {
  margin: 1rem 0 0;
  color: #2b2b2b;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.c-info-table {
  width: 100%;
  border-collapse: collapse;
  color: #2b2b2b;
}
.c-info-table th,
.c-info-table td {
  padding: 0;
  border: 0;
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
.c-info-table th {
  width: 8rem;
  padding-right: 3rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.c-info-table td {
  font-weight: 500;
}
.c-info-table tr + tr th,
.c-info-table tr + tr td {
  padding-top: 2.8rem;
}

.c-bottom-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 1050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: min(100%, 50rem);
  min-height: 5rem;
  background-color: #fb0002;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-bottom-cta__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26%;
          flex: 0 0 26%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 5rem;
  padding: 1.2rem 0.8rem;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}
.c-bottom-cta__item + .c-bottom-cta__item::before {
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 0;
  content: "";
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}
.c-bottom-cta__item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}
.c-bottom-cta__item--phone {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  padding-inline: 0.6rem;
  font-family: "Libre Caslon Text", serif, "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.c-bottom-cta--dual .c-bottom-cta__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
.c-bottom-cta--dual .c-bottom-cta__item--phone {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding-inline: 0.6rem;
}

@-webkit-keyframes c-header-drawer-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes c-header-drawer-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes c-header-drawer-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes c-header-drawer-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes c-header-drawer-nav-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes c-header-drawer-nav-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.p-pc-root {
  --c-header-offset: 7.2rem;
}

.c-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  width: min(500px, 100vw);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
  pointer-events: none;
}
.c-header.is-header-revealed {
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .c-header__inner {
    -webkit-transition-duration: 0.01s;
            transition-duration: 0.01s;
  }
  .c-header__drawer-screen, .c-header__drawer-nav {
    -webkit-transition-duration: 0.01s;
            transition-duration: 0.01s;
    -webkit-animation: none;
            animation: none;
  }
  .c-header__drawer.is-header-drawer-closing .c-header__drawer-screen, .c-header__drawer.is-header-drawer-closing .c-header__drawer-nav {
    -webkit-animation-duration: 0.01s;
            animation-duration: 0.01s;
    -webkit-transition-duration: 0.01s;
            transition-duration: 0.01s;
  }
}
@media print, screen and (min-width: 1100px) {
  body:has(> .p-pc-root) .c-header {
    left: 0;
    width: 100%;
    background-color: transparent;
    -webkit-transform: none;
            transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  body:has(> .p-pc-root) .c-header .c-header__inner {
    opacity: 1;
    background-color: transparent;
  }
  body:has(> .p-pc-root) .c-header:not(.is-header-menu-open) {
    background-color: transparent;
  }
  body:has(> .p-pc-root) .c-header:not(.is-header-menu-open) .c-header__menu {
    color: #ffffff;
  }
  body:has(> .p-pc-root) .c-header:not(.is-header-menu-open) .c-header__menu:focus-visible {
    outline-color: #ffffff;
  }
  body:has(> .p-pc-root) .c-header:not(.is-header-menu-open) .c-header__logo img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  body:has(> .p-pc-root) .c-header.is-header-menu-open {
    background-color: transparent;
  }
  body:has(> .p-pc-root) .c-header.is-header-menu-open .c-header__logo img {
    -webkit-filter: none;
            filter: none;
  }
}
.c-header.is-header-menu-open {
  z-index: 1200;
  visibility: visible;
  pointer-events: none;
  background-color: transparent;
  -webkit-transform: none;
          transform: none;
  left: 0;
  width: 100%;
  max-width: none;
}
@media screen and (max-width: 1050px) {
  .c-header.is-header-menu-open {
    left: 50%;
    width: min(500px, 100vw);
    max-width: 500px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-header.is-header-menu-open .c-header__inner {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  background-color: transparent;
}
.c-header.is-header-menu-open .c-header__logo,
.c-header.is-header-menu-open .c-header__lang,
.c-header.is-header-menu-open .c-header__menu {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.c-header__inner {
  position: relative;
  z-index: 1;
  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: 1.6rem;
  width: 100%;
  min-height: 6rem;
  padding: 0 1.5rem;
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 0.42s ease;
  transition: opacity 0.42s ease;
}
.c-header.is-header-revealed .c-header__inner {
  opacity: 1;
}
.c-header__logo {
  position: relative;
  z-index: 1;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 58%;
  margin-top: 1rem;
  line-height: 0;
}
.c-header__logo img {
  display: block;
  width: auto;
  min-width: 8rem;
  max-width: 100%;
  max-height: 5.5rem;
  min-height: 2.4rem;
  height: auto;
}
.c-header__lang {
  position: relative;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 0.4rem;
  line-height: 0;
  overflow: visible;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-header__lang .gt_switcher_wrapper, .c-header__lang.gtranslate_wrapper,
.c-header__lang .gt_switcher {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.c-header__lang .gt_switcher {
  position: relative !important;
  width: auto !important;
  overflow: visible !important;
}
.c-header__lang .gt_switcher .gt_option {
  position: absolute !important;
  top: 100% !important;
  left: 0;
  right: auto;
  margin-top: 0.4rem;
  z-index: 1001;
  -webkit-box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.12);
}
.c-header__menu {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.3rem;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #2b2b2b;
}
.c-header__menu:focus-visible {
  outline: 2px solid #2b2b2b;
  outline-offset: 3px;
}
.c-header__menu-line {
  display: block;
  width: 4.2rem;
  height: 1px;
  background-color: currentcolor;
  -webkit-transition: opacity 0.24s ease, -webkit-transform 0.32s ease;
  transition: opacity 0.24s ease, -webkit-transform 0.32s ease;
  transition: transform 0.32s ease, opacity 0.24s ease;
  transition: transform 0.32s ease, opacity 0.24s ease, -webkit-transform 0.32s ease;
}
.c-header__menu[aria-expanded=true] {
  gap: 0;
}
.c-header__menu[aria-expanded=true] .c-header__menu-line {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.5px;
  margin-left: -2.1rem;
}
.c-header__menu[aria-expanded=true] .c-header__menu-line:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-header__menu[aria-expanded=true] .c-header__menu-line:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-header__drawer[hidden] {
  display: none;
}
.c-header__drawer:not([hidden]) {
  display: block;
  z-index: 1150;
  pointer-events: auto;
}
.c-header__drawer {
  --c-header-offset: 7.2rem;
  position: fixed;
  inset: 0;
  z-index: 1150;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  pointer-events: none;
}
@media screen and (max-width: 1050px) {
  .c-header__drawer {
    left: 50%;
    right: auto;
    width: min(500px, 100vw);
    max-width: 500px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-header__drawer-screen {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background-color: #ededed;
  opacity: 0;
  -webkit-transition: opacity 0.48s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.48s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: auto;
  cursor: default;
}
.c-header__drawer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.c-header__drawer:not([hidden]) .c-header__drawer-screen {
  opacity: 1;
}
.c-header__drawer:not([hidden]):not(.is-header-drawer-closing) .c-header__drawer-screen {
  -webkit-animation: c-header-drawer-fade-in 0.48s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: c-header-drawer-fade-in 0.48s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.c-header__drawer.is-header-drawer-closing {
  pointer-events: none;
}
.c-header__drawer.is-header-drawer-closing .c-header__drawer-screen {
  -webkit-animation: c-header-drawer-fade-out 0.48s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: c-header-drawer-fade-out 0.48s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  -webkit-transition: none;
  transition: none;
}
.c-header__drawer-nav {
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  padding: calc(var(--c-header-offset, 7.2rem) + 3.2rem) 2.4rem 6rem;
  overflow-x: hidden;
  overflow-y: 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: 4.8rem;
  text-align: center;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, -webkit-transform 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, -webkit-transform 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, transform 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, transform 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, -webkit-transform 0.52s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
}
.c-header__drawer-nav::-webkit-scrollbar {
  display: none;
}
.c-header__drawer:not([hidden]) .c-header__drawer-nav {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-header__drawer.is-header-drawer-closing .c-header__drawer-nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: c-header-drawer-nav-out 0.52s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: c-header-drawer-nav-out 0.52s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  -webkit-transition: none;
  transition: none;
}
.c-header__drawer-list, .c-header__drawer-shop-list {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.c-header__drawer-list {
  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;
}
.c-header__drawer-link {
  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: 1.2rem;
  padding: 0;
  color: #2b2b2b;
  text-align: center;
}
.c-header__drawer-link-en {
  font-family: "Libre Caslon Text", serif, "Zen Kaku Gothic New", sans-serif, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-header__drawer-link-jp {
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.c-header__drawer-locations {
  position: relative;
  width: 100%;
}
.c-header__drawer-locations-illust {
  position: absolute;
  top: 58%;
  left: 50%;
  display: block;
  width: 30rem;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.92;
}
.c-header__drawer-locations-deco {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 4rem;
  pointer-events: none;
}
.c-header__drawer-locations-text {
  display: block;
  height: auto;
}
.c-header__drawer-shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.c-header__drawer-shop-link {
  display: block;
  padding: 0;
  color: #2b2b2b;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-align: center;
}

body.is-header-menu-open {
  overflow: hidden;
}
body.is-header-menu-open .c-cta--fixed {
  opacity: 0;
  pointer-events: none;
}

.c-footer {
  padding: 6rem 0 4rem;
  background-color: #ffffff;
  color: #2b2b2b;
  text-align: center;
}
.c-footer__inner {
  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: 2.4rem;
}
.c-footer__logo {
  display: inline-block;
  width: 15rem;
  max-width: 100%;
}
.c-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.c-footer__copy {
  margin: 0;
  color: #2b2b2b;
  font-family: "Libre Caslon Text", serif, "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

body.is-scroll-locked {
  overflow: hidden !important;
  height: 100% !important;
}
body.is-scroll-locked .p-pc-root {
  height: 100vh !important;
  overflow: hidden !important;
}

@media print, screen and (min-width: 1100px) {
  .is-hero-mv-active .p-pc__hero-inner {
    top: 13rem;
    right: 0;
    z-index: 10000;
    pointer-events: none;
  }
}

.p-video-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9000;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.p-video-layer__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-video-layer__video--pc {
  display: none;
}
@media print, screen and (min-width: 1100px) {
  .p-video-layer__video--pc {
    display: block;
  }
}

@media print, screen and (min-width: 1100px) {
  .p-video-layer__video--sp {
    display: none;
  }
}

.p-video-layer.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.p-pc__hero-title-img.is-hero-logo-reset {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-pc__hero-title-img.is-hero-logo-reset:hover {
  opacity: 0.75;
}

.p-sp__hero-title-img {
  position: absolute;
  width: clamp(20rem, 65vw, 35rem);
  height: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 10000;
}
@media print, screen and (min-width: 1100px) {
  .p-sp__hero-title-img {
    display: none;
  }
}

.p-mv-stage {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
}
.p-mv-stage__video {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}
.p-mv-stage__video-pin {
  width: 100%;
  height: 100%;
}
.p-mv-stage__video-pin.is-pinned {
  position: fixed;
  z-index: 0;
}
.p-mv-stage__video-el {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-mv-stage__content {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -100vh;
  margin-top: -100dvh;
}
.p-mv-stage__reveal {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}

.p-mv {
  position: relative;
  height: min(75rem, 100vh);
  height: min(75rem, 100dvh);
  min-height: min(75rem, 100vh);
  min-height: min(75rem, 100dvh);
  overflow-x: clip;
}
.p-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #ffffff;
  pointer-events: none;
}
.p-mv__line {
  position: absolute;
  top: -3.8rem;
  left: 51%;
  z-index: 1;
  width: 101%;
  max-width: none;
  height: auto;
  -webkit-transform: translateX(-46%);
          transform: translateX(-46%);
  pointer-events: none;
}
.p-mv__illust {
  position: absolute;
  top: 6.8rem;
  right: 4rem;
  z-index: 2;
  width: 14.3rem;
  height: auto;
  pointer-events: none;
}
.p-mv__inner {
  position: relative;
  z-index: 3;
  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;
  min-height: inherit;
  padding: 21rem 4rem 20rem 10rem;
}
.p-mv__heading {
  margin: 0;
  color: #fb0002;
}
.p-mv__heading-en {
  display: block;
  font-family: "Libre Caslon Text", serif;
  font-size: 6.3rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.p-mv__heading-line {
  display: block;
}
.p-mv__heading-line + .p-mv__heading-line {
  margin-top: 0.16em;
}
.p-mv__heading-jp {
  display: block;
  margin-top: 2.6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.12em;
}
.p-mv__cta {
  position: absolute;
  right: 3rem;
  bottom: 5.4rem;
  z-index: 4;
}
.p-mv__cta .c-cta__line {
  font-family: "Shippori Mincho", serif;
}

@media print, screen and (min-width: 1100px) {
  body:has(> .p-pc-root) .p-pc__column {
    container-type: size;
    container-name: pc-column;
  }
  @container pc-column (min-width: 0) {
    .p-mv-stage__video {
      height: 100cqh;
    }
    .p-mv-stage__content {
      margin-top: -100cqh;
    }
  }
}
.p-journey {
  position: relative;
  z-index: 1;
  padding: 8rem 0 8rem;
  background-color: #ffffff;
  overflow-x: clip;
  overflow-y: visible;
}
.p-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #ffffff;
}
.p-journey__title-block {
  position: relative;
  margin-bottom: 9rem;
  margin-left: -5rem;
  margin-right: -5rem;
  padding-top: 2.4rem;
  overflow: visible;
}
.p-journey__title-line {
  position: absolute;
  top: -9rem;
  right: 0;
  left: -4.8rem;
  z-index: 1;
  width: 110%;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.p-journey .c-section-title {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 5rem;
  padding-left: 5rem;
  overflow: visible;
}
.p-journey__title-deco {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 11rem;
  padding-right: 3rem;
  padding-left: 3rem;
}
.p-journey__title-script {
  width: 15rem;
  height: auto;
}
.p-journey__title-illust {
  width: 16rem;
  height: auto;
}
.p-journey__text {
  color: #2b2b2b;
  font-family: "Shippori Mincho", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
.p-journey__stage {
  position: relative;
  margin-top: 12rem;
  margin-right: -5rem;
  margin-left: -5rem;
  overflow: visible;
}
.p-journey__stage--past {
  padding-bottom: 5rem;
}
.p-journey__stage--now {
  margin-top: 6.4rem;
  padding-bottom: 2rem;
}
.p-journey__stage-caption {
  position: absolute;
  top: 0;
  right: 4rem;
  z-index: 2;
  width: min(42%, 15rem);
  max-width: 100%;
  height: auto;
  -webkit-transform: translateY(-42%);
          transform: translateY(-42%);
  pointer-events: none;
}
.p-journey__collage {
  position: relative;
  width: 100%;
  min-height: clamp(22rem, 92vw, 30rem);
}
.p-journey__img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.p-journey__img--01 {
  top: -24%;
  left: 17%;
  z-index: 2;
  width: 17rem;
}
.p-journey__img--02 {
  bottom: 22%;
  left: 8%;
  z-index: 3;
  width: 10rem;
}
.p-journey__img--03 {
  top: 14%;
  right: 8%;
  z-index: 1;
  width: 29rem;
}
.p-journey__now-unit {
  position: relative;
  width: 100%;
  min-height: 60rem;
  margin: 0 auto;
}
.p-journey__now-photo, .p-journey__now-caption, .p-journey__now-illust {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
}
.p-journey__now-photo--shop {
  top: 0;
  left: 10%;
  z-index: 1;
  width: 30.2rem;
}
.p-journey__now-photo--pasta {
  right: 8%;
  top: 32%;
  z-index: 3;
  width: 24.4rem;
}
.p-journey__now-caption {
  top: 61%;
  left: 14%;
  z-index: 3;
  width: 11.7rem;
}
.p-journey__now-illust {
  bottom: -2%;
  left: 13%;
  z-index: 4;
  width: 20.2rem;
}

.p-commitment {
  position: relative;
  z-index: 0;
  padding: 8rem 0 0;
  background-color: transparent;
  overflow-x: clip;
  overflow-y: visible;
}
.p-commitment > .contarea {
  background-color: #ffffff;
}
.p-commitment__title-block {
  position: relative;
  margin-bottom: 20rem;
  margin-left: -5rem;
  margin-right: -5rem;
  overflow-x: clip;
  padding-top: 2.4rem;
  padding-bottom: 2rem;
}
.p-commitment__title-line {
  position: absolute;
  top: 20%;
  left: -1%;
  z-index: 0;
  width: 102%;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.p-commitment__title-illust {
  position: absolute;
  top: 91%;
  left: 10%;
  z-index: 2;
  width: 13rem;
  height: auto;
  pointer-events: none;
}
.p-commitment .c-section-title {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: 4.8rem auto 0;
  padding-right: 0;
  padding-left: 0;
  overflow: visible;
  text-align: right;
}
.p-commitment__intro {
  margin-bottom: 8rem;
  text-align: center;
}
.p-commitment__intro .c-feature-card__title {
  margin-top: 0;
}
.p-commitment__intro .c-feature-card__text {
  margin-top: 2.4rem;
}
.p-commitment .c-feature-card__media {
  margin-top: 0;
}
.p-commitment__feature + .p-commitment__feature {
  margin-top: 15rem;
}
.p-commitment__closing {
  position: relative;
  margin: 8rem -5rem 0;
  padding: 0 0 4rem;
  overflow-x: clip;
}
.p-commitment__closing-line {
  position: absolute;
  top: -18rem;
  left: -2%;
  z-index: 0;
  width: 105%;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.p-commitment__closing-inner {
  --closing-lead-top: 17rem;
  position: relative;
  z-index: 1;
  padding: var(--closing-lead-top) 2rem 0;
  text-align: center;
}
.p-commitment__closing-lead-head {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.p-commitment__closing-lead-row {
  margin: 0;
  color: #2b2b2b;
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.6;
}
.p-commitment__closing-illust {
  position: absolute;
  top: -6.4rem;
  right: -3rem;
  z-index: 2;
  width: 6.5rem;
  height: auto;
  pointer-events: none;
}
.p-commitment__closing-en {
  margin: 2.4rem 0 0;
  color: #2b2b2b;
  font-family: "Libre Caslon Text", serif, "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.p-commitment__photo {
  margin: 0 -5rem;
  padding: 0;
  background-color: #2b2b2b;
}
.p-commitment__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-mv-stage + .p-commitment {
  margin-top: -18rem;
  padding-top: 14rem;
}

.p-shop {
  padding: 8rem 0;
  background-color: #ffffff;
}
.p-shop__title-block {
  position: relative;
  margin-bottom: 5.8rem;
  margin-left: -5rem;
  margin-right: -5rem;
  overflow: hidden;
  padding-top: 20rem;
}
.p-shop__title-line {
  position: absolute;
  top: 5.5rem;
  left: 50%;
  z-index: 0;
  width: 110%;
  max-width: none;
  height: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.p-shop__title-illust {
  position: absolute;
  top: 0;
  right: 4rem;
  z-index: 2;
  width: min(46%, 18rem);
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
.p-shop .c-section-title {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-top: 7.6rem;
  overflow: visible;
  padding-right: 5rem;
  padding-left: 5rem;
}
.p-shop .c-filter {
  margin-bottom: 5.8rem;
}

._empty {
  margin: 0 0 4rem;
  padding: 3.2rem 2rem;
  background-color: #efeeed;
  color: #2b2b2b;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-closing {
  margin: 0;
}
.p-closing__deco {
  position: relative;
  padding: 10rem 0 0;
  background-color: #ffffff;
  overflow: hidden;
}
.p-closing__line {
  position: absolute;
  top: 55%;
  left: 44%;
  z-index: 0;
  width: 118%;
  max-width: none;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.p-closing__deco-inner {
  position: relative;
  z-index: 1;
  min-height: 22rem;
  padding-top: 1.6rem;
}
.p-closing__phrase {
  position: absolute;
  top: 3rem;
  right: 7rem;
  z-index: 3;
  width: 23rem;
  height: auto;
}
.p-closing__cutlery-wrap {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7.2rem 0 0;
}
.p-closing__cutlery {
  width: min(36%, 14rem);
  max-width: 100%;
  height: auto;
}
.p-closing__photo {
  margin: 0;
  background-color: #2b2b2b;
}
.p-closing__photo img {
  width: 100%;
  height: auto;
}

#journey,
#commitment,
#shop {
  scroll-margin-top: var(--c-header-offset, 7.2rem);
}

#shop-main.contarea {
  padding: 0;
}

body.has-bottom-cta.is-shop-page {
  padding-bottom: 0;
}
body.has-bottom-cta.is-shop-page.is-bottom-cta-fixed {
  padding-bottom: 5rem;
}
@media print, screen and (min-width: 1100px) {
  body.has-bottom-cta.is-shop-page.is-bottom-cta-fixed {
    padding-bottom: 0;
  }
  body.has-bottom-cta.is-shop-page.is-bottom-cta-fixed .p-pc__column {
    padding-bottom: 5rem;
  }
}

body.is-ilcentro .p-shop-mv__logo-img {
  max-height: 6rem;
}

body.is-mealmarket .p-shop-lead__illust {
  top: -1rem;
  right: -8rem;
}

body.is-mealmarket .p-shop-menu__illust {
  top: -1rem;
  right: -6rem;
}

body.is-mealmarket .c-shop-icon--01 .c-shop-icon__img {
  height: 4rem;
}

body.is-mealmarket .c-shop-icon--02 .c-shop-icon__img {
  height: 4rem;
}

body.is-mealmarket .p-shop-mv__body {
  padding: 0 2rem 4rem;
}

body.is-mealmarket .p-shop-mv__logo-img {
  max-width: 32rem;
}

body.is-shop-page .c-header {
  visibility: visible;
  pointer-events: auto;
  background-color: transparent;
}
body.is-shop-page .c-header .c-header__inner {
  opacity: 1;
}

.p-shop-mv {
  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;
  height: 59rem;
  min-height: 59rem;
  overflow: hidden;
  color: #ffffff;
}
.p-shop-mv__visual {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.p-shop-mv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-shop-mv__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(66.67%, transparent), color-stop(83.33%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(180deg, transparent 0%, transparent 66.67%, rgba(0, 0, 0, 0.2) 83.33%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.p-shop-mv__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-shop-mv__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0 2rem 2rem;
}
.p-shop-mv__heading {
  margin: 0;
  font-weight: inherit;
}
.p-shop-mv__logo {
  display: block;
  line-height: 0;
}
.p-shop-mv__logo-img {
  display: block;
  width: auto;
  max-width: 26rem;
  height: auto;
  max-height: 8rem;
}
.p-shop-mv__logo-img--brand {
  max-width: 30rem;
  max-height: none;
}
.p-shop-mv__catch {
  display: block;
  margin-top: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.p-shop-mv__branch {
  display: block;
  margin-top: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.p-shop-mv__cta-slot {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5rem;
          flex: 0 0 5rem;
  min-height: 5rem;
}
.p-shop-mv .c-bottom-cta {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  width: 100%;
  -webkit-transform: none;
          transform: none;
}
.p-shop-mv .c-bottom-cta.is-fixed {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 1050;
  width: min(100%, 50rem);
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.p-shop-mv .c-bottom-cta.is-fixed.is-fixed-visible {
  -webkit-animation: p-shop-bottom-cta-fade-in 0.65s ease-out forwards;
          animation: p-shop-bottom-cta-fade-in 0.65s ease-out forwards;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .p-shop-mv .c-bottom-cta.is-fixed.is-fixed-visible {
    -webkit-animation-duration: 0.01s;
            animation-duration: 0.01s;
  }
}

@-webkit-keyframes p-shop-bottom-cta-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes p-shop-bottom-cta-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-shop-lead {
  padding: 5rem 0 11rem;
  background-color: #ffffff;
  overflow-x: clip;
}
.p-shop-lead__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
.p-shop-lead__head {
  position: relative;
  padding-top: 5rem;
  overflow: visible;
}
.p-shop-lead__illust {
  position: absolute;
  top: 1rem;
  right: -6rem;
  z-index: 0;
  width: 24rem;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.p-shop-lead__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-shop-lead__heading:has(> .p-shop-lead__heading-left) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.p-shop-lead__heading-right, .p-shop-lead__heading-center, .p-shop-lead__heading-left {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.08em;
}
.p-shop-lead__heading-right {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.65;
}
.p-shop-lead__heading-center {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.25;
}
.p-shop-lead__heading-left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
}
.p-shop-lead__heading-bracket {
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
}
.p-shop-lead__heading-bracket--open {
  -webkit-margin-start: -0.5em;
          margin-inline-start: -0.5em;
}
.p-shop-lead__heading-bracket--close {
  -webkit-margin-end: -0.3em;
          margin-inline-end: -0.3em;
}
.p-shop-lead__body {
  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;
  width: 31.5rem;
  max-width: 100%;
  margin-inline: auto;
}
.p-shop-lead__text {
  margin: 0;
  color: #2b2b2b;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.p-shop-key-points {
  padding: 0 0 6.8rem;
  background-color: #ffffff;
  overflow: visible;
}
.p-shop-key-points__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
.p-shop-key-points .c-shop-section-title {
  margin-bottom: -1rem;
}
.p-shop-key-points .c-key-point + .c-key-point {
  margin-top: 0;
}

.p-shop-gallery {
  padding: 0 0 6.8rem;
  background-color: #ffffff;
}
.p-shop-gallery__head {
  margin-bottom: 1rem;
  text-align: center;
}
.p-shop-gallery__title {
  margin: 0;
  line-height: 0;
}
.p-shop-gallery__title-img {
  display: block;
  width: 27rem;
  height: auto;
  margin-left: auto;
  margin-right: -1.6rem;
}
.p-shop-gallery__slider {
  width: 100%;
  overflow: hidden;
}
.p-shop-gallery__slider.swiper {
  padding-bottom: 0;
}
.p-shop-gallery .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p-shop-gallery .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  line-height: 0;
}
.p-shop-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-shop-gallery__pagination {
  position: static !important;
  inset: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(12 / 500 * min(100vw, 500px));
  width: 100% !important;
  margin: calc(20 / 500 * min(100vw, 500px)) 0 0;
  padding: 0;
  -webkit-transform: none !important;
          transform: none !important;
}
.p-shop-gallery__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.p-shop-gallery__pagination.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.p-shop-gallery__pagination .swiper-pagination-bullet {
  width: calc(10 / 500 * min(100vw, 500px));
  height: calc(10 / 500 * min(100vw, 500px));
  margin: 0;
  border: none;
  border-radius: 50%;
  opacity: 1;
  background-color: #c1bfbd;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-shop-gallery__pagination .swiper-pagination-bullet {
    -webkit-transition: none;
    transition: none;
  }
}
.p-shop-gallery__pagination .swiper-pagination-bullet-active {
  background-color: #fb0002;
  -webkit-transform: none !important;
          transform: none !important;
}

.p-shop-menu {
  padding: 0 0 6.8rem;
  background-color: #ffffff;
  overflow-x: clip;
}
.p-shop-menu__inner {
  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.2rem;
}
.p-shop-menu__head {
  position: relative;
  padding-top: 6.4rem;
  overflow: visible;
}
.p-shop-menu__illust {
  position: absolute;
  top: 2rem;
  right: -8rem;
  z-index: 0;
  width: 20.8rem;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.p-shop-menu .c-shop-section-title {
  position: relative;
  z-index: 1;
}
.p-shop-menu__preview {
  display: block;
  line-height: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-shop-menu__preview:hover {
  opacity: 0.85;
}
.p-shop-menu__preview:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 3px;
}
.p-shop-menu__thumb {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}
.p-shop-menu__groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.p-shop-menu__group {
  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;
}
.p-shop-menu__group-title {
  margin: 0;
  color: #2b2b2b;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-shop-menu__group-time {
  margin: -1.2rem 0 0;
  color: #fb0002;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-shop-menu__links {
  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;
}

.p-shop-info {
  padding: 4.8rem 0 10.6rem;
  background-color: #ffffff;
}
.p-shop-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8rem;
}
.p-shop-info__shop-name {
  margin: 3rem 0 0;
  color: #2b2b2b;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-shop-info__branch {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.p-shop-info__contact {
  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: 1.6rem;
  padding: 2.6rem;
  background-color: #efeeed;
}
.p-shop-info__phone {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.p-shop-info__tel {
  display: block;
  color: #fb0002;
  font-family: "Libre Caslon Text", serif, "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.p-shop-info__tel:hover {
  opacity: 0.85;
}
.p-shop-info__tel:focus-visible {
  outline: 2px solid #fb0002;
  outline-offset: 3px;
}
.p-shop-info__tel-note {
  margin: 0;
  color: #2b2b2b;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.p-shop-info .c-link-btn--auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 14rem;
}
.p-shop-info__map {
  position: relative;
  width: 100%;
  aspect-ratio: 390/220;
  overflow: hidden;
  background-color: #efeeed;
}
.p-shop-info__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body:has(.c-bottom-cta--dual) .p-shop-lead__heading-center {
  font-size: 2.6rem;
}
body:has(.c-bottom-cta--dual) .p-shop-lead__heading-left {
  font-size: 3.1rem;
}
body:has(.c-bottom-cta--dual) .p-shop-info__contact {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body:has(.c-bottom-cta--dual) .p-shop-info__contact .p-shop-info__phone {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  text-align: center;
}

.p-shop-bottom {
  background-color: #ffffff;
}
.p-shop-bottom__visual {
  line-height: 0;
}
.p-shop-bottom__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.p-shop-bottom__action {
  padding-block: 7rem 7rem;
  border-bottom: 1px solid #e0deda;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */