@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/***
  The new CSS reset - version 1.7.3 (last updated 7.8.2022)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

html {
  font-size: 62.5%;
}

body {
  background: #f2f2f0;
  color: #303030;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.3;
  min-width: 375px;
}
@media screen and (min-width: 1140px) {
  body {
    overflow-y: scroll;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 1140px) {
  img,
  svg {
    width: auto;
  }
}

.c-svg-sprite {
  display: none;
}

a,
button {
  cursor: pointer;
}

.l-inner {
  position: relative;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 100px;
}
@media screen and (max-width: 600px) {
  .l-inner {
    padding-inline: 35px;
  }
}

.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-loading__text {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.c-loading__count {
  font-size: 3rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1;
  margin: 8px 0;
}

.c-loading__indicator {
  width: 400px;
  height: 2px;
  margin: 16px 0 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.c-loading__progress {
  width: 0%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: width 0.2s ease;
}

.-loaded .c-loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.-loaded .c-loading__grp {
  transform: translate(0, -30%);
  transition: transform 2s ease;
}

.c-svg-sprite {
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.l-main .c-event {
  padding: 140px 0;
}
@media screen and (max-width: 600px) {
  .l-main .c-event {
    padding: 70px 0;
  }
}
.l-main .c-event .l-inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 50px;
  border-left: 1px solid #303030;
  border-right: 1px solid #303030;
}
.l-main .c-event-info {
  position: relative;
  padding: 120px 0;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info {
    padding: 60px 0;
  }
}
.l-main .c-event-info__title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__title {
    font-size: 1.5rem;
  }
}
.l-main .c-event-info__schedule {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-main .c-event-info__year {
  writing-mode: vertical-rl;
  font-family: "EB Garamond", serif;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__year {
    font-size: 2.5rem;
  }
}
.l-main .c-event-info__date {
  font-family: "EB Garamond", serif;
  font-size: 12.8rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__date {
    font-size: 6.5rem;
  }
}
.l-main .c-event-info__week {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  border-radius: 50%;
  background: #303030;
  transform: translateY(20px);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__week {
    width: 25px;
    height: 25px;
    margin-left: 2px;
    transform: translateY(14px);
    font-size: 1.3rem;
  }
}
.l-main .c-event-info__hyphen {
  width: 28px;
  height: 8px;
  background: #303030;
  margin-inline: 20px 7px;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__hyphen {
    width: 15px;
    height: 4px;
    margin-inline: 10px 4px;
  }
}
.l-main .c-event-info__venue {
  margin-top: 8px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__venue {
    font-size: 1.5rem;
  }
}
.l-main .c-event-info__intro {
  display: flex;
  align-items: center;
  gap: 77px;
  margin: 77px auto 0;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__intro {
    display: block;
    margin-top: 60px;
  }
}
.l-main .c-event-info__image {
  flex-shrink: 0;
  width: 515px;
  height: auto;
  aspect-ratio: 515/456;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__image {
    width: 100%;
  }
}
.l-main .c-event-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-main .c-event-info__text-area {
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__text-area {
    margin-top: 30px;
  }
}
.l-main .c-event-info__catch {
  position: relative;
  z-index: 1;
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.40625;
  margin-bottom: 23px;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__catch {
    font-size: 2rem;
  }
}
.l-main .c-event-info__text {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .l-main .c-event-info__text {
    font-size: 1.2rem;
  }
}
.l-main .c-event-info__caption {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  line-height: 1.83;
}
.l-main .c-event-info__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.c-kitabanner {
  display: flex;
  max-width: 770px;
  height: 155px;
  position: relative;
  background-image: url(../images/bg-kitabaner.webp);
  background-size: cover;
  background-position: center;
  padding: 30px 70px;
  border-radius: 5px;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .c-kitabanner {
    height: auto;
    padding: 30px;
    flex-direction: column;
    padding: 20px;
    gap: 50px;
  }
}
.c-kitabanner__text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: white;
}
.c-kitabanner__text p {
  font-size: 3.3rem;
  line-height: 1;
  font-weight: bold;
}
.c-kitabanner__text span {
  font-size: 1.5rem;
  font-weight: bold;
}
.c-kitabanner__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  right: 40px;
  margin: auto;
  color: white;
  font-family: "EB Garamond", serif;
  border: solid 1px white;
  border-radius: 5px;
  width: 180px;
  height: 40px;
}
.c-kitabanner__button span {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .c-kitabanner__button {
    position: relative;
    bottom: unset;
    right: unset;
  }
}

.c-pageLink {
  margin-bottom: 45px;
}
.c-pageLink .l-inner {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .c-pageLink .l-inner {
    flex-direction: column;
  }
}
.c-pageLink a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100px;
  color: white;
}
.c-pageLink a.is-active {
  pointer-events: none;
}
.c-pageLink a.is-active p {
  opacity: 1 !important;
}
.c-pageLink a.is-active span {
  opacity: 1 !important;
}
.c-pageLink.three a {
  width: 33.3333333333%;
}
@media screen and (max-width: 600px) {
  .c-pageLink.three a {
    width: 100%;
  }
}
.c-pageLink.three a p {
  font-size: 2.4rem;
  font-weight: bold;
  opacity: 0.47;
}
.c-pageLink.three a span {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  opacity: 0.47;
}
.c-pageLink.four a {
  width: 25%;
}
@media screen and (max-width: 600px) {
  .c-pageLink.four a {
    width: 100%;
  }
}
.c-pageLink.four a p {
  font-size: 2rem;
  font-weight: bold;
  opacity: 0.47;
}
.c-pageLink.four a span {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  opacity: 0.47;
}
.c-pageLink.foods01 a {
  background-color: #96AD80;
}
.c-pageLink.foods02 a {
  background-color: #BC707D;
}
.c-pageLink.foods03 a {
  background-color: #796E94;
}
.c-pageLink.sports a {
  background-color: #79A9BD;
}
.c-pageLink.walk a {
  background-color: #79A9BD;
}
.c-pageLink.work a {
  background-color: #79A9BD;
}
.c-pageLink.home a {
  background-color: #79A9BD;
}

.c-lowercaption {
  margin-bottom: 50px;
}
.c-lowercaption p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: bold;
}
.c-lowercaption.future .l-inner {
  padding: 35px;
  background-color: #E2EBEF;
  border-radius: 10px;
}

.c-mv picture {
  width: 100%;
  height: auto;
}
.c-mv picture img {
  width: 100%;
  height: auto;
}

.l-main .c-product__category {
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .l-main .c-product__category {
    margin-bottom: 80px;
  }
}
.l-main .c-product__category-title {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 30px;
  padding-bottom: 40px;
  color: #442623;
  font-family: "EB Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-main .c-product__category-title {
    padding-inline: 8.8vw;
    padding-bottom: 30px;
    font-size: 3rem;
  }
}
.l-main .c-product-pickup {
  position: relative;
}
.l-main .c-product-pickup .c-product__category-title {
  padding-left: 0;
}
.l-main .c-product-pickup__block {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
@media screen and (max-width: 600px) {
  .l-main .c-product-pickup__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.l-main .c-product-pickup__block .image {
  width: 516px;
  flex-shrink: 0;
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-main .c-product-pickup__block .image {
    width: 100%;
  }
}
.l-main .c-product-pickup__block img + img {
  margin-top: 20px;
}
.l-main .c-product-pickup__block .item_text-area {
  width: calc(100% - 516px);
  padding: 0 60px;
}
@media screen and (max-width: 600px) {
  .l-main .c-product-pickup__block .item_text-area {
    width: 100%;
    padding: 0;
  }
}
.l-main .c-product-pickup__block .brand {
  font-size: 2.8rem;
  font-weight: 700;
}
.l-main .c-product-pickup__block .present {
  padding-bottom: 20px;
  font-weight: 700;
}
.l-main .c-product-pickup__block .product {
  font-size: 2.2rem;
  font-weight: 700;
}
.l-main .c-product-pickup__block .price {
  font-size: 1.8rem;
  font-weight: 700;
}
.l-main .c-product-pickup__block .link {
  text-decoration: underline;
}
.l-main .c-product-pickup__block .place {
  display: flex;
  align-items: flex-start;
  gap: 6px 14px;
  margin-top: 1em;
}
.l-main .c-product-pickup__block .place + .place {
  margin-top: 0.5em;
}
.l-main .c-product-pickup__block .store {
  flex-shrink: 0;
  padding: 6px 8px;
  background: #303030;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.l-main .c-product-pickup__block .store.-mitsukoshi {
  background: #9B8D6D;
}
.l-main .c-product-pickup__block .store.-marui {
  background: #BC2B2B;
}
.l-main .c-product-pickup__block .floor {
  margin-top: 0;
  padding-top: 2px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}
.l-main .c-product-pickup__block p + p {
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin-top: 1em;
}
.l-main .c-product-pickup__block a {
  transition: all 0.4s ease;
}
.l-main .c-product-pickup__block a:hover {
  opacity: 0.6;
}
.l-main .c-product-pickup__block + .c-product-pickup__block {
  margin-top: 40px;
}
.l-main .c-product-list {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .l-main .c-product-list {
    padding-top: 60px;
  }
}
.l-main .c-product-list__swiper {
  overflow: visible;
}
.l-main .c-product-list__item {
  width: 300px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: left;
}
.l-main .c-product-list__item:hover {
  opacity: 0.6;
}
.l-main .c-product-list__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.l-main .c-product-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-main .c-product-list__brand {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-main .c-product-list__name {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-main .c-product-list__button {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 132px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #79A9BD;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}
.l-main .c-product-list__button::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  height: 10px;
  aspect-ratio: 1;
  background: #fff;
  transform: translateX(3px);
}
.l-main .c-product-list__button:hover {
  opacity: 0.6;
}
.l-main .c-product-list__button.-next {
  right: -18px;
}
.l-main .c-product-list__button.-prev {
  left: -18px;
  transform: scale(-1, 1);
}
.l-main .c-product-list__button.swiper-button-disabled {
  opacity: 0.4;
}
.l-main .c-product-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 50px;
  margin-top: 42px;
}
@media screen and (max-width: 600px) {
  .l-main .c-product-block {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}
.l-main .c-product-block__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.l-main .c-product-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-main .c-product-block__brand {
  margin-top: 20px;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-main .c-product-block__name {
  margin-top: 15px;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-main .c-product-block__description {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
.l-main .c-product-block__price {
  margin-top: 15px;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-main .c-product-block__material {
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-main .c-product-block__place {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 20px;
}
.l-main .c-product-block__place + .c-product-block__place {
  margin-top: 10px;
}
.l-main .c-product-block__store {
  padding: 6px 8px;
  background: #303030;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.l-main .c-product-block__store.-mitsukoshi {
  background: #9B8D6D;
}
.l-main .c-product-block__store.-marui {
  background: #BC2B2B;
}
.l-main .c-product-block__floor {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}
.l-main .c-product-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url(../images/bg_productTitle.webp);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 40px;
  gap: 20px;
}
.l-main .c-product-title.mb {
  margin-bottom: 80px;
}
.l-main .c-product-title .c-product-title__label {
  width: 450px;
  font-size: 3.2rem;
  font-family: "EB Garamond", serif;
  color: white;
  border-bottom: 1px solid white;
  text-align: center;
}
.l-main .c-product-title .c-product-title__text {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  color: white;
  line-height: 1.4;
}

.l-main .c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100svh;
  display: none;
  animation: fade-In 0.3s linear;
  color: #303030;
}
.l-main .c-modal:before, .l-main .c-modal:after {
  display: none;
}
.l-main .c-modal.is-open {
  display: block;
}
.l-main .c-modal__overlay {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.l-main .c-modal__close {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #79A9BD;
  border: 1px solid #fff;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__close {
    top: -12px;
    right: -12px;
    width: 50px;
    height: 50px;
  }
}
.l-main .c-modal__close::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__close::before {
    width: 16px;
  }
}
.l-main .c-modal__close::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__close::after {
    width: 16px;
  }
}
.l-main .c-modal__container {
  width: 968px;
  max-height: 90vh;
  background-color: #fff;
  padding: 80px;
  border-radius: 13px;
  display: flex;
  position: relative;
  z-index: 0;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__container {
    width: 86.4vw;
    max-width: 540px;
    padding: 30px;
  }
}
@keyframes fade-In {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-main .c-modal__main {
  overflow: auto;
}
.l-main .c-modal__content {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__content {
    padding: 0 3px;
  }
}
.l-main .c-modal__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__item {
    display: block;
    margin-top: 40px;
  }
}
.l-main .c-modal__image {
  position: relative;
  width: 380px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__image {
    width: 100%;
  }
}
.l-main .c-modal__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-main .c-modal__text-area {
  width: calc(100% - 380px - 60px);
  color: #1E1E1E;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__text-area {
    width: 100%;
    margin-top: 30px;
  }
}
.l-main .c-modal__brand-name {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__brand-name {
    font-size: 3.2rem;
  }
}
.l-main .c-modal__description {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__description {
    font-size: 1.3rem;
  }
}
.l-main .c-modal__product-name {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__product-name {
    font-size: 1.8rem;
  }
}
.l-main .c-modal__link {
  margin-top: 15px;
}
.l-main .c-modal__link a {
  transition: all 0.4s ease;
}
.l-main .c-modal__link a:hover {
  opacity: 0.6;
}
.l-main .c-modal__price {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__price {
    font-size: 1.7rem;
  }
}
.l-main .c-modal__present {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__present {
    font-size: 1.4rem;
  }
}
.l-main .c-modal__present + * {
  margin-top: 20px;
}
.l-main .c-modal__other {
  width: 100%;
  margin-top: 30px;
  border: 1px solid #999;
}
.l-main .c-modal__other-title {
  padding: 10px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__other-title {
    font-size: 1.3rem;
  }
}
.l-main .c-modal__material {
  padding: 16px 30px 30px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__material {
    padding: 12px 22px 22px;
    font-size: 1.1rem;
  }
}
.l-main .c-modal__place {
  display: flex;
  align-items: flex-start;
  gap: 6px 14px;
  margin-top: 20px;
}
.l-main .c-modal__place + .c-modal__place {
  margin-top: 10px;
}
.l-main .c-modal__store {
  flex-shrink: 0;
  padding: 6px 8px;
  background: #303030;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.l-main .c-modal__floor {
  padding-top: 2px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}
.l-main .c-modal__swiper-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #79A9BD;
  border: 1px solid #fff;
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__swiper-button {
    width: 25px;
    height: 25px;
  }
}
.l-main .c-modal__swiper-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  height: 10px;
  aspect-ratio: 1;
  background: #fff;
  transform: translate(calc(-50% + 3px), -50%);
}
.l-main .c-modal__swiper-button.-next {
  right: 18px;
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__swiper-button.-next {
    right: 12px;
  }
}
.l-main .c-modal__swiper-button.-prev {
  left: 18px;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 600px) {
  .l-main .c-modal__swiper-button.-prev {
    left: 12px;
  }
}

.c-bottom {
  padding: 95px 0;
}
@media screen and (max-width: 600px) {
  .c-bottom {
    padding: 50px 0;
  }
}
.c-bottom .l-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .c-bottom .l-inner {
    gap: 30px;
    align-items: end;
    flex-direction: column;
  }
}
.c-bottom .l-inner p {
  font-size: 1.4rem;
  font-weight: 500;
}
.c-bottom .l-inner a {
  width: 180px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #87A7B5;
  border-radius: 10px;
  background-color: white;
}
.c-bottom .l-inner a span {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .c-bottom .l-inner a {
    height: 55px;
  }
}

.c-bannerArea {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 770px;
  margin: auto;
}
.c-bannerArea a {
  display: flex;
}
.c-bannerArea a img {
  width: 100%;
  height: auto;
}

.l-main {
  position: relative;
}

.p-top-schedule {
  padding: 140px 0;
}
.p-top-schedule .l-inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 50px;
  border-left: 1px solid #303030;
  border-right: 1px solid #303030;
}
.p-top-categoryArea {
  margin-bottom: 100px;
}
.p-top-categoryArea__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  border-bottom: 1px solid #303030;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__title {
    font-size: 4rem;
  }
}
.p-top-categoryArea__title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 5px;
  left: 0;
  right: 0;
  background-color: #303030;
}
.p-top-categoryArea__title span {
  font-family: "EB Garamond", serif;
  font-size: 1.3rem;
}
.p-top-categoryArea__contentsArea {
  padding: 80px;
  border-left: 1px solid #303030;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
}
.p-top-categoryArea__contentsArea-label {
  display: flex;
  flex-direction: column;
  font-family: "EB Garamond", serif;
  font-size: 7rem;
  padding-bottom: 30px;
  margin-bottom: 80px;
  border-bottom: 1px solid #303030;
}
.p-top-categoryArea__contentsArea-label span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea-label {
    font-size: 4rem;
    margin-bottom: 50px;
  }
}
.p-top-categoryArea__contentsArea-linkArea {
  display: flex;
  gap: 50px;
  padding-bottom: 90px;
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea-linkArea {
    flex-direction: column;
  }
}
.p-top-categoryArea__contentsArea-linkArea__parts {
  position: relative;
  width: 33%;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea-linkArea__parts {
    width: 100%;
  }
}
.p-top-categoryArea__contentsArea-linkArea__parts-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.p-top-categoryArea__contentsArea-linkArea__parts-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 35px;
}
.p-top-categoryArea__contentsArea-linkArea__parts-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-categoryArea__contentsArea-linkArea__parts-no {
  font-family: "EB Garamond", serif;
  font-size: 1.6rem;
  margin-bottom: 40px;
}
.p-top-categoryArea__contentsArea-linkArea__parts-caption {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-top-categoryArea__contentsArea-linkArea__parts-link {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 55px;
  border: 1px solid #303030;
  border-radius: 5px;
  bottom: -55px;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea-linkArea__parts-link {
    position: relative;
    bottom: unset;
  }
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea {
    padding: 35px;
  }
}

.p-top-categoryArea__contentsArea-futureArea {
  margin-top: 120px;
}
.p-top-categoryArea__contentsArea-futureArea__label {
  display: flex;
  flex-direction: column;
  font-size: 7rem;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  padding-bottom: 30px;
  margin-bottom: 90px;
  border-bottom: 1px solid #303030;
}
.p-top-categoryArea__contentsArea-futureArea__label span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea-futureArea__contentsArea {
    flex-direction: column;
  }
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-block {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea-futureArea__contentsArea-block {
    width: 100%;
  }
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-block:last-of-type {
  padding-top: 15px;
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-textArea {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 105px;
  padding-left: 50px;
}
@media screen and (max-width: 600px) {
  .p-top-categoryArea__contentsArea-futureArea__contentsArea-textArea {
    padding-left: unset;
    margin-bottom: 50px;
  }
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-textArea__deco {
  font-family: "EB Garamond", serif;
  font-size: 1.6rem;
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-textArea__caption {
  font-size: 2rem;
  font-weight: bold;
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-textArea a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 55px;
  font-family: "EB Garamond", serif;
  border-radius: 5px;
  border: solid 1px #303030;
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-titleArea {
  display: flex;
  flex-direction: column;
  font-family: "EB Garamond", serif;
  font-size: 7rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 70px;
}
.p-top-categoryArea__contentsArea-futureArea__contentsArea-titleArea span {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.p-top-shortsummerArea {
  padding: 120px 0 60px;
  background-image: url(../images/bg-shortssummer.webp);
}
.p-top-shortsummerArea__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  font-size: 6rem;
  font-weight: bold;
  padding-bottom: 30px;
  margin-bottom: 70px;
  line-height: 1.1;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-top-shortsummerArea__title {
    font-size: 4rem;
    margin-bottom: 50px;
  }
}
.p-top-shortsummerArea__title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
  bottom: 5px;
}
.p-top-shortsummerArea__title span {
  font-size: 1.3rem;
  font-weight: 400;
}
.p-top-shortsummerArea__caption {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 60px;
}
.p-top-shortsummerArea__linkArea {
  display: flex;
  flex-wrap: wrap;
}
.p-top-shortsummerArea__linkArea-parts {
  position: relative;
  width: 50%;
  height: auto;
  aspect-ratio: 4/3;
  background-position: center;
  background-size: cover;
}
.p-top-shortsummerArea__linkArea-parts:nth-of-type(1) {
  background-image: url(../images/bg-shortssummer__link01.webp);
}
.p-top-shortsummerArea__linkArea-parts:nth-of-type(2) {
  background-image: url(../images/bg-shortssummer__link02.webp);
}
.p-top-shortsummerArea__linkArea-parts:nth-of-type(3) {
  background-image: url(../images/bg-shortssummer__link03.webp);
}
.p-top-shortsummerArea__linkArea-parts:nth-of-type(4) {
  background-image: url(../images/bg-shortssummer__link04.webp);
}
.p-top-shortsummerArea__linkArea-parts p {
  position: absolute;
  color: white;
  font-size: 2.6rem;
  font-weight: bold;
  left: 40px;
  bottom: 40px;
}
@media screen and (max-width: 600px) {
  .p-top-shortsummerArea__linkArea-parts p {
    bottom: unset;
    left: 20px;
    top: 20px;
    font-size: 1.8rem;
  }
}
.p-top-shortsummerArea__linkArea-parts__deco {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 55px;
  right: 50px;
  bottom: 50px;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
}
.p-top-shortsummerArea__linkArea-parts__deco span {
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 600px) {
  .p-top-shortsummerArea__linkArea-parts__deco {
    right: 20px;
    bottom: 20px;
    font-size: 1.2rem;
    height: 40px;
  }
}
.p-top-shortsummerArea__more {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 55px;
  background-color: white;
  color: #79A9BD;
  right: 0;
}
@media screen and (max-width: 600px) {
  .p-top-shortsummerArea__more {
    position: unset;
  }
}

.u-mt05 {
  margin-top: 0.5em;
}

.u-mb05 {
  margin-bottom: 0.5em;
}

.u-pt05 {
  padding-top: 0.5em;
}

.u-pb05 {
  padding-bottom: 0.5em;
}

.u-mt1 {
  margin-top: 1em;
}

.u-mb1 {
  margin-bottom: 1em;
}

.u-pt1 {
  padding-top: 1em;
}

.u-pb1 {
  padding-bottom: 1em;
}

.u-mt2 {
  margin-top: 2em;
}

.u-mb2 {
  margin-bottom: 2em;
}

.u-pt2 {
  padding-top: 2em;
}

.u-pb2 {
  padding-bottom: 2em;
}

.u-mt3 {
  margin-top: 3em;
}

.u-mb3 {
  margin-bottom: 3em;
}

.u-pt3 {
  padding-top: 3em;
}

.u-pb3 {
  padding-bottom: 3em;
}

.u-mt4 {
  margin-top: 4em;
}

.u-mb4 {
  margin-bottom: 4em;
}

.u-pt4 {
  padding-top: 4em;
}

.u-pb4 {
  padding-bottom: 4em;
}

.u-mt5 {
  margin-top: 5em;
}

.u-mb5 {
  margin-bottom: 5em;
}

.u-pt5 {
  padding-top: 5em;
}

.u-pb5 {
  padding-bottom: 5em;
}

.u-white {
  color: #fff;
  fill: #fff;
}
.u-white * {
  color: #fff;
  fill: #fff;
}

.u-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.u-right {
  text-align: right;
  margin-left: auto;
}

.u-left {
  text-align: left;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .u-sp {
    display: block !important;
  }
}
@media screen and (max-width: 1139px) {
  .u-sp {
    display: none;
  }
}
@media screen and (min-width: 1140px) {
  .u-sp {
    display: none !important;
  }
}

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