@charset "UTF-8";
.bg-fixed-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url(../img/bg_gray.webp) center center/cover no-repeat;
  background-color: #F4F4F4;
}

.mainvl {
  position: relative;
  overflow: hidden;
  height: 100svh;
}
.mainvl picture {
  display: block;
  overflow: hidden;
  transform-origin: center center;
  animation: slowZoom 30s ease-in-out infinite;
}
.mainvl picture img {
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.mainvl .mv__copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  margin: auto;
  padding-top: 100px;
}
@media screen and (max-width: 750px) {
  .mainvl .mv__copy {
    padding-top: min(160 / 750 * 100vw, 160px);
  }
}
.mainvl .mv__copy p {
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.64);
}
.mainvl .mv__copy p:first-of-type {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  .mainvl .mv__copy p:first-of-type {
    font-size: clamp(14px, 64 / 750 * 100vw, 64px);
    margin-bottom: min(60 / 750 * 100vw, 60px);
  }
}
.mainvl .mv__copy p span {
  display: block;
}

.latestNews {
  position: absolute;
  z-index: 5;
  bottom: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.latestNews .latestNews__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1200px;
  height: 70px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .latestNews .latestNews__inner {
    max-width: 100%;
    height: min(128 / 750 * 100vw, 128px);
  }
}
.latestNews .latestNews__inner .latestNews__container {
  width: 100%;
}
.latestNews .latestNews__inner .latestNews__container .latestNews__link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.latestNews .latestNews__inner .latestNews__container .latestNews__link-wrapper:hover {
  opacity: 0.7;
}
.latestNews .latestNews__inner .latestNews__container .latestNews__txt--date {
  flex-shrink: 0;
  padding-left: 100px;
  text-align: right;
  color: #707070;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .latestNews .latestNews__inner .latestNews__container .latestNews__txt--date {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.latestNews .latestNews__inner .latestNews__container .latestNews__txt--title {
  width: auto;
}
@media screen and (max-width: 750px) {
  .latestNews .latestNews__inner .latestNews__container .latestNews__link-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-left: 3vw;
  }
  .latestNews .latestNews__inner .latestNews__container .latestNews__txt--date {
    width: 100%;
    padding-left: 0;
    text-align: left;
  }
  .latestNews .latestNews__inner .latestNews__container .latestNews__txt--title {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
    white-space: nowrap;
  }
}
.latestNews .latestNews__inner .latestNews__link {
  text-align: center;
}
.latestNews .latestNews__inner .latestNews__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 70px;
  color: #AD8F5E;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .latestNews .latestNews__inner .latestNews__link a {
    width: 24vw;
    height: min(128 / 750 * 100vw, 128px);
    background-color: #AD8F5E;
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
    color: #FFFFFF;
  }
}
.latestNews .latestNews__inner .latestNews__link a:hover {
  color: #FFFFFF;
  background-color: #AD8F5E;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.concept {
  position: relative;
  height: 300svh;
  background-color: #1F1F1F;
}
.concept .concept__inner {
  position: sticky;
  top: 120px; /* PC用ヘッダー分 */
  height: calc(100svh - 120px);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.concept .concept__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90svh; /* GSAP/Swiper共通: 1画面1セクション */
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.concept .concept__wrap {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
  background: url(../img/bg_black.webp) #3B3A3A center center/cover repeat;
}

@media screen and (max-width: 750px) {
  .concept {
    height: 100vh;
    background: url(../img/bg_black.webp) #3B3A3A center center/cover repeat;
  }
  .concept .concept__inner {
    position: relative;
    top: 0 !important;
    height: 100vh;
    overflow: hidden;
  }
  .concept .concept__item {
    position: absolute; /* 重ねてフェード切替する */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  .concept .concept__wrap {
    gap: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
  }
}
/* Swiper用 */
.mySwiper {
  height: 100svh;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 750px) {
  .mySwiper .mySwiper .swiper-slide {
    z-index: 1;
  }
  .mySwiper .mySwiper .swiper-slide-active {
    z-index: 2;
  }
}

.mySwiper,
.mySwiper .swiper-wrapper,
.mySwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .mySwiper,
  .mySwiper .swiper-wrapper,
  .mySwiper .swiper-slide {
    position: initial;
  }
}

@supports (-webkit-touch-callout: none) {
  .concept .concept__item {
    background-attachment: scroll;
  }
}
@supports not (-webkit-touch-callout: none) {
  .concept .concept__item {
    background-attachment: fixed;
  }
}
.concept__item__img {
  width: 100%;
  max-width: 50%;
  height: 100%;
  overflow: hidden;
}
.concept__item__img picture {
  height: 100%;
}
.concept__item__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 80%;
     object-position: center 80%;
}
@media screen and (max-width: 750px) {
  .concept__item__img {
    max-width: 100%;
    height: 35svh;
    overflow: visible;
  }
}

.concept__item__read {
  display: grid;
  grid-template-rows: auto 1fr 2fr auto;
  align-content: space-between;
  width: 500px;
  margin: 0 auto;
  padding: 120px 0;
  color: #FFFFFF;
  min-height: 100%;
}
@media screen and (max-width: 750px) {
  .concept__item__read {
    grid-template-rows: auto 1.25fr 3fr auto;
    align-content: start;
    width: 90%;
    min-height: auto;
    height: 65svh;
    padding: 4svh 0;
  }
}
.concept__item__read h3 {
  font-size: 14px;
  color: #FFFFFF;
}
@media screen and (max-width: 750px) {
  .concept__item__read h3 {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.concept__item__read h3 .en {
  font-family: "Lora", serif;
  font-weight: 500;
}
.concept__item__read h3 .ja {
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .concept__item__read h3 .ja {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .concept__item__read h3 {
    padding-bottom: min(10 / 750 * 100vw, 10px);
  }
}
.concept__item__read .concept__item__read--subTtl {
  align-self: center;
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  .concept__item__read .concept__item__read--subTtl {
    font-size: clamp(14px, 48 / 750 * 100vw, 48px);
  }
}
@media screen and (max-width: 750px) {
  .concept__item__read .concept__item__read--subTtl {
    align-self: flex-start;
  }
}
.concept__item__read .concept__item__read--txt p {
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .concept__item__read .concept__item__read--txt p {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
    padding-bottom: min(10 / 750 * 100vw, 10px);
  }
}
.concept__item__read .concept__item__read--link a {
  display: inline-block;
  width: 352px;
  height: 64px;
}
@media screen and (max-width: 750px) {
  .concept__item__read .concept__item__read--link a {
    width: 100%;
    height: min(128 / 750 * 100vw, 128px);
  }
}
.concept__item__read .concept__item__read--link a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  background: none;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .concept__item__read .concept__item__read--link a p {
    border: none;
    background: #AD8F5E;
    color: #FFFFFF;
  }
}
.concept__item__read .concept__item__read--link a p::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .concept__item__read .concept__item__read--link a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
.concept__item__read .concept__item__read--link a p::after {
  background: #AD8F5E;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.concept__item__read .concept__item__read--link a p:hover {
  border: 1px solid #AD8F5E;
  color: #FFFFFF;
}
.concept__item__read .concept__item__read--link a p:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.concept__item__read .concept__item__read--link a p:hover::before {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}

.menu {
  position: relative;
  z-index: 0;
  background-color: #F4F4F4;
  background-image: url(../img/bg_gray.webp);
  background-position: center center;
  background-size: 100% auto;
  background-repeat: repeat;
}
.menu .menu__inner.wrap .menu__list {
  display: flex;
  gap: 30px;
  padding: 60px 0;
}
.menu .menu__inner.wrap .menu__list .munu__list__item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 30px;
  width: 50%;
}
.menu .menu__inner.wrap .menu__list .munu__list__item .munu__list__item--txt {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1em;
}
.menu .menu__inner.wrap .menu__list .munu__list__item .munu__list__item--txt .txt--menuName {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__list .munu__list__item .munu__list__item--txt .txt--menuName {
    font-size: clamp(14px, 40 / 750 * 100vw, 40px);
  }
}
.menu .menu__inner.wrap .menu__list .munu__list__item .munu__list__item--txt .txt--price {
  color: #AD8F5E;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__list .munu__list__item .munu__list__item--txt .txt--price {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__list .munu__list__item {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__list {
    flex-direction: column;
    gap: min(60 / 750 * 100vw, 60px);
    padding: min(80 / 750 * 100vw, 80px) 0;
  }
  .menu .menu__inner.wrap .menu__list .munu__list__item {
    gap: min(60 / 750 * 100vw, 60px);
  }
}
.menu .menu__inner.wrap .menu__link {
  display: flex;
  gap: 20px;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn {
  width: 100%;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn a {
  display: inline-block;
  width: 100%;
  height: 128px;
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a {
    width: 100%;
    height: min(256 / 750 * 100vw, 256px);
  }
}
.menu .menu__inner.wrap .menu__link .menu__link--btn a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  background: #1F1F1F;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p {
    border: none;
    background: #AD8F5E;
    color: #FFFFFF;
  }
}
.menu .menu__inner.wrap .menu__link .menu__link--btn a p::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
.menu .menu__inner.wrap .menu__link .menu__link--btn a p::after {
  background: #AD8F5E;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn a p:hover {
  border: 1px solid #AD8F5E;
  color: #FFFFFF;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn a p:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn a p:hover::before {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
.menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a {
  display: inline-block;
  width: 100%;
  height: 128px;
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a {
    width: 100%;
    height: min(256 / 750 * 100vw, 256px);
  }
}
.menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  background: #1F1F1F;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p {
    border: none;
    background: #928473;
    color: #FFFFFF;
  }
}
.menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
.menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p::after {
  background: #928473;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p:hover {
  border: 1px solid #928473;
  color: #FFFFFF;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p:hover::before {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link {
    flex-direction: column;
    gap: min(20 / 750 * 100vw, 20px);
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn a {
    display: inline-block;
    width: 100%;
    height: 70px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a {
    width: 100%;
    height: min(140 / 750 * 100vw, 140px);
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid #FFFFFF;
    background: #1F1F1F;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    transition-duration: 0.4s;
    z-index: 2;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p {
    border: none;
    background: #AD8F5E;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p::before {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p::after {
    background: #AD8F5E;
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity 0.5s, transform 0s;
    transition-delay: 0s, 0.4s;
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p:hover {
    border: 1px solid #AD8F5E;
    color: #FFFFFF;
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity 0.8s, transform 0.6s ease-in-out;
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn a p:hover::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a {
    display: inline-block;
    width: 100%;
    height: 70px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a {
    width: 100%;
    height: min(140 / 750 * 100vw, 140px);
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid #FFFFFF;
    background: #1F1F1F;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    transition-duration: 0.4s;
    z-index: 2;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p {
    border: none;
    background: #928473;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p::before {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
@media screen and (max-width: 750px) {
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p::after {
    background: #928473;
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity 0.5s, transform 0s;
    transition-delay: 0s, 0.4s;
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p:hover {
    border: 1px solid #928473;
    color: #FFFFFF;
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity 0.8s, transform 0.6s ease-in-out;
  }
  .menu .menu__inner.wrap .menu__link .menu__link--btn:last-of-type a p:hover::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
  }
}

.shop .shop__list.wrap {
  display: grid;
  gap: 40px;
  padding-bottom: 0;
}
.shop .shop__list.wrap .shop__list__inner {
  position: relative;
  height: 500px;
  padding-right: 10%;
}
.shop .shop__list.wrap .shop__list__inner picture {
  height: 100%;
}
.shop .shop__list.wrap .shop__list__inner picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 450px;
  padding: 24px 50px;
  background-color: #FFFFFF;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--name {
  color: #AD8F5E;
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--name {
    font-size: clamp(14px, 48 / 750 * 100vw, 48px);
  }
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--name span {
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--name span {
    font-size: clamp(14px, 32 / 750 * 100vw, 32px);
  }
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--addr dt {
  color: #AD8F5E;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--addr dd {
  padding-bottom: 20px;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--addr dd a {
  display: flex;
  gap: 0.5em;
  color: #AD8F5E;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--addr dd a {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--addr dd a img {
  width: 16px;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--icon {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 20px;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--icon li a img {
  width: 24px;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a {
  display: inline-block;
  width: 100%;
  height: 48px;
}
@media screen and (max-width: 750px) {
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a {
    width: 100%;
    height: min(96 / 750 * 100vw, 96px);
  }
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #1F1F1F;
  background: #FFFFFF;
  color: #1F1F1F;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p {
    border: none;
    background: #AD8F5E;
    color: #FFFFFF;
  }
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #1F1F1F 50% 100%);
}
@media screen and (max-width: 750px) {
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p::after {
  background: #AD8F5E;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p:hover {
  border: 1px solid #AD8F5E;
  color: #FFFFFF;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--shopLink a p:hover::before {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .shop .shop__list.wrap {
    gap: min(80 / 750 * 100vw, 80px);
  }
  .shop .shop__list.wrap .shop__list__inner {
    display: grid;
    grid-template-rows: min(440 / 750 * 100vw, 440px) 1fr;
    height: auto;
    padding-right: 0;
  }
  .shop .shop__list.wrap .shop__list__inner picture {
    grid-row: 1/2;
    height: min(440 / 750 * 100vw, 440px);
  }
  .shop .shop__list.wrap .shop__list__inner .shop__txt {
    grid-row: 2/3;
    position: relative;
    width: 100%;
    height: auto;
    min-height: min(400 / 750 * 100vw, 400px);
    padding: min(48 / 750 * 100vw, 48px) 0;
  }
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--name {
    font-size: clamp(14px, 40 / 750 * 100vw, 40px);
  }
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--addr dt {
    padding: min(40 / 750 * 100vw, 40px) 0 min(20 / 750 * 100vw, 20px) 0;
  }
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--icon {
    padding: min(40 / 750 * 100vw, 40px) 0;
    margin-bottom: 0;
  }
  .shop .shop__list.wrap .shop__list__inner .shop__txt .shop__txt--icon li a img {
    width: min(48 / 750 * 100vw, 48px);
  }
}

.calender {
  background-image: url(../img/bg_pig.webp), url(../img/bg_pig.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: 135% top, -20% bottom;
  background-size: 50%;
}
.calender .calender_inner h2 {
  padding-bottom: 70px;
}
.calender .calender_inner .calender__iframe {
  width: 100%;
  aspect-ratio: 2/1;
}
.calender .calender_inner .calender__iframe iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.calender .calender_inner .calender__note {
  display: grid;
  gap: 1em;
  padding-top: 40px;
}
@media screen and (max-width: 750px) {
  .calender {
    background-position: -300% top, 160% bottom;
    background-size: 110%;
    background-attachment: scroll;
  }
  .calender .calender_inner h2 {
    padding-bottom: min(140 / 750 * 100vw, 140px);
  }
  .calender .calender_inner .calender__iframe {
    aspect-ratio: 1/1;
  }
  .calender .calender_inner .calender__note {
    padding-top: min(80 / 750 * 100vw, 80px);
  }
}

.news {
  position: relative;
  z-index: 0;
  background-color: #3B3A3A;
  background-image: url(../img/bg_black.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .news {
    background-attachment: scroll;
  }
}
.news .news__inner.wrap {
  display: grid;
  gap: 70px;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap {
    gap: min(100 / 750 * 100vw, 100px);
    padding: min(100 / 750 * 100vw, 100px) 0 min(140 / 750 * 100vw, 140px);
  }
}
.news .news__inner.wrap h2 {
  color: #FFFFFF;
}
.news .news__inner.wrap .news__list {
  display: grid;
}
.news .news__inner.wrap .news__item {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 32px;
  border-top: 1px solid #E8E8E8;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__item {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: min(32 / 750 * 100vw, 32px) 0;
  }
}
.news .news__inner.wrap .news__item:last-of-type {
  border-bottom: 1px solid #E8E8E8;
}
.news .news__inner.wrap .news__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.news .news__inner.wrap .news__item .news__date {
  /* padding-left: 5%; */
  color: #FFFFFF;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__item .news__date {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__item .news__date {
    padding-left: 0;
  }
}
.news .news__inner.wrap .news__item .news__title {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__item .news__title {
    font-size: clamp(14px, 36 / 750 * 100vw, 36px);
  }
}
.news .news__inner.wrap .news__item .news__text {
  display: none;
}
.news .news__inner.wrap .news__link {
  text-align: right;
}
.news .news__inner.wrap .news__link a {
  display: inline-block;
  width: 180px;
  height: 64px;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__link a {
    width: 100%;
    height: min(128 / 750 * 100vw, 128px);
  }
}
.news .news__inner.wrap .news__link a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  background: none;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__link a p {
    border: none;
    background: #AD8F5E;
    color: #FFFFFF;
  }
}
.news .news__inner.wrap .news__link a p::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__link a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
.news .news__inner.wrap .news__link a p::after {
  background: #AD8F5E;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.news .news__inner.wrap .news__link a p:hover {
  border: 1px solid #AD8F5E;
  color: #FFFFFF;
}
.news .news__inner.wrap .news__link a p:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.news .news__inner.wrap .news__link a p:hover::before {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__link {
    margin: 0 20%;
  }
}
.news .news__pagination {
  display: none;
}

.onlineStore {
  position: relative;
  z-index: 0;
  background-color: #F4F4F4;
  background-image: url(../img/bg_gray.webp);
  background-position: center center;
  background-size: 100% auto;
  background-repeat: repeat;
}
.onlineStore .onlineStore_inner {
  padding: 100px 0;
  text-align: center;
}
.onlineStore .onlineStore_inner .onlineStore__slider {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
}
.onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper {
  width: 100%;
}
.onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu {
  padding: 30px;
  text-align: left;
}
.onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu .slider__item__menu--txt {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu .slider__item__menu--txt {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu .slider__item__menu--ttl {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu .slider__item__menu--ttl {
    font-size: clamp(14px, 40 / 750 * 100vw, 40px);
  }
}
.onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu .slider__item__menu--price {
  padding-top: 1em;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu .slider__item__menu--price {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap {
  margin: auto;
  padding: 0;
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap a {
  display: inline-block;
  width: 352px;
  height: 64px;
}
@media screen and (max-width: 750px) {
  .onlineStore .onlineStore_inner .onlineStore__link.wrap a {
    width: 100%;
    height: min(128 / 750 * 100vw, 128px);
  }
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  background: #1F1F1F;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .onlineStore .onlineStore_inner .onlineStore__link.wrap a p {
    border: none;
    background: #AD8F5E;
    color: #FFFFFF;
  }
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap a p::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .onlineStore .onlineStore_inner .onlineStore__link.wrap a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap a p::after {
  background: #AD8F5E;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap a p:hover {
  border: 1px solid #AD8F5E;
  color: #FFFFFF;
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap a p:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.onlineStore .onlineStore_inner .onlineStore__link.wrap a p:hover::before {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .onlineStore .onlineStore_inner {
    padding: min(120 / 750 * 100vw, 120px) 0;
  }
  .onlineStore .onlineStore_inner .onlineStore__slider {
    max-width: 100%;
    margin: min(100 / 750 * 100vw, 100px) auto;
  }
  .onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slick-track {
    gap: min(20 / 750 * 100vw, 20px);
  }
  .onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item {
    width: 100%;
    margin: 0;
  }
  .onlineStore .onlineStore_inner .onlineStore__slider .swiper-wrapper .slider__item .slider__item__menu {
    padding: min(20 / 750 * 100vw, 20px);
  }
}