@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@900&display=swap');

html,
body,
a,
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}


@font-face {
  font-family: 'font';
  src: url(../font/font.ttf);

}


html {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  overflow-x: hidden;
  -webkit-touch-callout: none;
  background: #f4da67;
  color: #006944;
}


img {
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  display: block;
  font-size: 0;

}

a {
  color: inherit;
  text-decoration: none;
}


li {
  list-style-type: none;
}



.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fadeIn.on {
  opacity: 1;
  transform: translateY(0);
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition-duration: 0.2s;
    
}

.loading.load{
    opacity: 0;
    pointer-events: none;
}
.loading span{
    width: 160px;
    animation: loading 1.4s infinite;
}

@keyframes loading{
  0% {
    filter: drop-shadow(0px 0px 2px #fff) drop-shadow(0px 0px 2px #fff);
  }
    50%{
        filter: drop-shadow(0px 0px 10px #fff)  drop-shadow(0px 0px 10px #fff);
    }
  100% {
     filter: drop-shadow(0px 0px 2px #fff) drop-shadow(0px 0px 2px #fff);
  }
}


.sp {
  display: none;
}

@media screen and (max-width: 896px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

header {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

header.show {
  opacity: 1;
  visibility: visible;
}

.back {
  position: fixed;
  z-index: -1;
  opacity: 0.4;
}

.back img {
  height: 100lvh;
  object-fit: cover;
}

header {
  position: fixed;
  top: 32px;
  right: 52px;
  z-index: 99;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

header.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 218, 103, 0.9);
  padding: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hamburger {
  position: relative;
  z-index: 100;
  width: 40px;
  cursor: pointer;
  margin-top: -4px;
}

.menu-back {
  position: fixed;
  top: 0;
  right: 32px;
  max-width: 80px;
  z-index: 99;
  transition: transform 0.3s ease;
}


.hamburger p {
  color: #FFFFFF;
  font-size: 12px;
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  display: block;
  margin-top: 8px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #FFFFFF;
  margin: 5px 0;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu ul {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: center;
}

.menu li a {
  position: relative;
  display: block;
  color: #006943;
  background: linear-gradient(180deg, #006943 45%, #009760 55%, #006943 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  font-size: 48px;
  transition: all 0.2s ease;
}

.menu li a span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 0.0125em #d39d18;
  text-stroke: 0.0125em #d39d18;
  filter: drop-shadow(0 0.0125em 0px #936602) drop-shadow(0 -0.0125em 0px #ebb93d);
  white-space: nowrap;
}

.menu li a.hover {
  filter: brightness(0.8);
  letter-spacing: 0.03em;
}

.wrap{
    height: 100svh;
    overflow: hidden;
    opacity: 0;
}
.wrap.load{
    height: auto;
    overflow: auto;
    opacity: 1;
}
.kv {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.kv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.kv img.member {
  position: static;
  opacity: 0;
  filter: blur(10px);
}

.kv.animation-start img.member {
    animation: member_anime 1s forwards ease-out;
}
@keyframes member_anime {
  0% {
    opacity: 0;
     filter: blur(10px);
  }

  100% {
   opacity: 1;
      filter: blur(0px);
  }
}

.mark {
  opacity: 0.4;
  margin-top: -1px;
    height: 28px;
}
.mark img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

h1 img:nth-child(1) {
  position: static;
  opacity: 0;
}

h1 img:nth-child(2) {
  -webkit-clip-path: inset(0 96% 0 0);
  clip-path: inset(0 96% 0 0);

}

.kv.animation-start h1 img:nth-child(2) {
  animation: h1_anime_1 0.6s forwards ease-out;
  animation-delay: 1.4s !important;
}

@keyframes h1_anime_1 {
  0% {
    -webkit-clip-path: inset(0 96% 0 0);
    clip-path: inset(0 96% 0 0);
  }

  100% {
    -webkit-clip-path: inset(0 75% 0 0);
    clip-path: inset(0 75% 0 0);
  }
}

h1 img:nth-child(3) {
  -webkit-clip-path: inset(0% 0 100% 0%);
  clip-path: inset(0% 0 100% 0%);

}

.kv.animation-start h1 img:nth-child(3) {
  animation: h1_anime_2 0.8s forwards ease-out;
  animation-delay: 1.4s !important;
}

@keyframes h1_anime_2 {
  0% {
    -webkit-clip-path: inset(0% 0 100% 0%);
    clip-path: inset(0% 0 100% 0%);
  }

  100% {
    -webkit-clip-path: inset(0% 0 50% 0%);
    clip-path: inset(0% 0 50% 0%);
  }
}

.kv.animation-start h1 img:nth-child(1) {
  animation: fadein 0.6s forwards ease-out;
  animation-delay: 1.4s !important;
}

.flower,
.sparkle {
  opacity: 0;
}

.animation-start .flower,
.animation-start .sparkle {
  animation: fadein 0.6s forwards ease-out;
  animation-delay: 1.4s !important;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.ivy-ftame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transform: scale(1.2);
  opacity: 0;
}

.kv.animation-start .flower {

  transform: scale(1);
}

.animation-start .ivy-ftame {
  animation: ivy-ftame 1s forwards ease-out;
}

@keyframes ivy-ftame {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ivy-ftame video {
  width: 100%;
  mask-image: url(../img/frame-mask.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 1;
}
.ivy-ftame .noplay{
    position: absolute;
    top: 0;
    left: 0;
}
.apple {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

main {
  position: relative;
  z-index: 2;
}

section {
  padding-top: 100px;
}

.section-inner {
  background: rgba(255, 255, 255, .3);
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px;
  position: relative;
}

.section-inner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 2px #d49d18;
  filter: drop-shadow(1px 1px 0px #936602) drop-shadow(-1px -1px 0px #ebb93d);
  pointer-events: none;
}

.section-inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: solid 1px #d49d18;
  filter: drop-shadow(1px 1px 0px #936602) drop-shadow(-1px -1px 0px #ebb93d);
  pointer-events: none;
}

h2 {
  text-align: center;
  font-size: 60px;
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
  letter-spacing: -0.3em;
  opacity: 0;
  transition-duration: 0.8s;
  filter: blur(10px);
}

 h2.on {
  letter-spacing: -0em;
  opacity: 1;
  filter: blur(0px);
}

h2 strong,
h2 small {
  display: block;
  position: relative;
}

h2 strong {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h2 small {
  font-size: 50%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}

h2 span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 0.0125em #d39d18;
  text-stroke: 0.0125em #d39d18;
  filter: drop-shadow(0 0.0125em 0px #936602) drop-shadow(0 -0.0125em 0px #ebb93d);
  white-space: nowrap;
}

h2 span:nth-child(2) {
  color: #006943;
  background: linear-gradient(180deg, #006943 45%, #009760 55%, #006943 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.infomation-map {
  display: block;
  max-width: 500px;
  margin: 0 auto;
    position: relative;
}

.pin {
  animation: fluffy 3s infinite;
    display: block;
    width: 5%;
    position: absolute;
}

.pin:nth-child(2){
    top: 11%;
    left: 74%;
}
.pin:nth-child(3){
    top: 42%;
    left: 72%;
}
.pin:nth-child(4){
    top: 50%;
    left: 59%;
}
.pin:nth-child(5){
    top: 61%;
    left: 62%;
}
.pin:nth-child(6){
    top: 66%;
    left: 49%;
}
.pin:nth-child(7){
    top: 70%;
    left: 37%;
}
.pin:nth-child(8){
    top: 68%;
    left: 20%;
}
.pin:nth-child(9){
    top: 75%;
    left: 19%;
}
.pin:nth-child(10){
    top: 76%;
    left: 5%;
}
.pin:nth-child(11){
    top: 83%;
    left: 66%;
}
@keyframes fluffy {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20%);
  }
}

.pin a {
  transition: all 0.2s ease;
}

.pin a.hover {
  filter: brightness(0.8);
}

.map-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 0;
  max-width: 870px;
}

.map-button li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.15em;
  border: 2px solid #d49d18;
  background: linear-gradient(180deg, #006943 45%, #009760 55%, #006943 65%);
  transition: all 0.2s ease;
}

.map-button li a div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d49d18;
  width: 110px;
  height: 30px;
}

.map-button li a.hover {
  filter: brightness(0.8);
}

.modal {
  position: fixed;
  z-index: 1000 !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 218, 103, 0.8);
  backdrop-filter: blur(4px);
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* 表示時に付与 */
.modal.show {
  visibility: visible;
  opacity: 1;
}

.section-inner-content {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  margin: 5% auto;
  padding: 32px;
}

.close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 20px;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  cursor: pointer;
  border: 3px solid #d49d18;
  background: linear-gradient(180deg, #006943 45%, #009760 55%, #006943 65%);
  transition: all 0.2s ease;
  z-index: 10;
}

.close.hover {
  filter: brightness(0.8);
}

.infomation-notes {
  text-align: center;
  font-size: 12px;
  margin: 32px auto 0;
}

.section-inner-content h2 {
  font-size: 20px;
  font-weight: 900;
}


#introduction p {
  font-weight: 900;
  line-height: 2;
  text-align: center;
  font-size: 20px;
   text-shadow: 0 0 0.4em #fff,0 0 0.6em #fff;
}

.store-list>li {
  display: flex;
  border-top: dotted 2px #d49d18;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
  max-width: 700px;
}

.store-list>li:first-child {
  margin-top: 0px;
  border-top: none;
}

.store-list h3 {
  width: 180px;
  font-size: 28px;
  font-weight: 900;
}

.store-detail li {
  margin-bottom: 20px;
  padding: 20px 8px 0;
  border-top: dotted 2px #d49d18;
}

.store-detail li:first-child {
  border-top: none;
  padding: 0 8px 0;
}

.store-detail li:last-child {
  margin-bottom: 0;
}

.store-detail {
  width: calc(100% - 180px);
}

.store-detail li h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
}

.store-detail li dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}

.store-detail li dt {
  width: 100px;
  margin-bottom: 12px;
}

.store-detail li dd {
  width: calc(100% - 100px);
  margin-bottom: 12px;
}

.store-detail li dd a {
  text-decoration: underline;
  transition: all 0.2s ease;
}

.store-detail li dd a.hover {
  color: #25A174;
}
.store-detail aside{
    font-size: 12px;
}
.lineup{
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}
.goods-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 40px;
  column-gap: 24px;
  margin-bottom: 56px;
}

.goods-list li div:nth-child(2) {
  padding: 4px;
}

.goods-list li a img {
  transition: all 0.3s ease;
}

.goods-list li a.hover img {
  filter: opacity(0.6);
}

.goods-list h3 {
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.05em;
  font-weight: 800;
  line-height: 1.4;
  margin: 6px auto 8px;
}

.goods-list dl dt {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
}

.goods-list dl dd {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 900;
  text-align: right;
  margin-top: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.goods-list dl dd span {
  font-size: 10px;
}

.notes-list {
  font-size: 12px;
  line-height: 1.4;
  max-width: 640px;
  margin: 0 auto;
}

.notes-list li {
  gap: 4px;
  margin-top: 4px;
    word-break: break-all;
}
.notes-list li:has(.list-mark){
    padding-left: 1em;
    position: relative;
}

.notes-list li .list-mark{
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    text-align: center;
}
.notes {
  border-top: dotted 2px #d49d18;
  margin-top: 56px;
  padding-top: 32px;
  text-align: justify;
}

.notes p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
    text-shadow: 0 0 0.4em #fff,0 0 0.6em #fff;
}

.goods-slider {
  width: 100%;
  height: auto;
  max-width: 450px;
}

.goods-slider img {
  width: 100%;
}

.goods-slider-nav {
  margin-top: 20px;
  max-width: 450px;
}

.goods-slider-nav div {
  width: 100%;
}

.goods-slider-nav .slick-slide {
  margin: 0 5px;
  /* 左右に5pxの隙間 */
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.goods-slider-nav .slick-center {
  opacity: 1;
  /* 中央だけは不透明に */
}

.goods-modal-box {
  display: flex;
  gap: 32px;
}



.goods-slideBox p {
  display: flex;
  line-height: 1.4;
  font-size: 12px;
  margin-top: 16px;
}


.goods-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 130%;
}

.goods-description {
  font-size: 14px;
  font-weight: 600;
  line-height: 180%;
  margin: 24px auto 24px;
  text-align: justify;
}

.goods-price {
  font-size: 24px;
  font-weight: 900;
  margin-top: 20px;
}

.goods-price span {
  font-size: 16px;
  margin-left: 4px;
}

.goods-attribute {
  margin-top: 40px;
}

.goods-attribute-label {
  font-size:18px;
  font-weight: 800;
  padding-bottom: 2px;
  margin-bottom: 8px;
  border-bottom: 2px dotted #d49d18;
}

.goods-size-list {
  margin-top: 20px;
}

.goods-size-list li {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.goods-size-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  min-width: 110px;
  height: 24px;
  font-size: 14px;
  background: #006944;
  color: #FFFFFF;
  border-radius: 100px;
}

.purchase-box {
  margin-top: 32px;
}

.purchase-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  height: 64px;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  border: 2px solid #d49d18;
  color: #FFFFFF;
  background: linear-gradient(180deg, #006943 35%, #009760 55%, #006943 75%);
}

.purchase-box a div {
  width: 98%;
  height: 53px;
  border: 1px solid #d49d18;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.purchase-box a span {
  font-size: 12px;
}

.purchase-box p {
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}


@media screen and (max-width: 1000px) {
  .goods-slideBox {
    max-width: 300px;
  }

  .goods-slider {
    max-width: 300px;
  }

  .goods-slider-nav {
    max-width: 300px;
  }
}


.card-title {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  line-height: 180%;
    text-shadow: 0 0 0.4em #fff,0 0 0.6em #fff;
}

.card-notice {
  margin-top: 40px;
}

.card-notice dd {
  max-width: 640px;
}

.card-img {
    width: 80%;
    max-width: 400px;
  margin: 40px auto 0;
}



.reservation-list>li {
  border-top: dotted 2px #d49d18;
  padding: 32px 0 0;
}

.reservation-list>li {
  margin-top: 32px;
}

.reservation-list>li h3 {
  font-weight: 800;
  font-size: 28px;
  text-align: center;
    text-shadow: 0 0 0.4em #fff,0 0 0.6em #fff;
}

.reservation-list>li h3 span {
  font-size: 70%;
  margin: 0 1px;
}

.reservation-list>li p {
  font-size: 20px;;
  font-weight: 900;
  margin: 20px auto 14px;
  text-align: center;
}

.reservation-list>li ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

.reservation-list>li ul a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
    flex-flow: column;
  color: #FFFFFF;
  height: 72px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: 3px solid #d49d18;
  border-radius: 100px;
  background: linear-gradient(180deg, #006943 35%, #009760 55%, #006943 75%);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.reservation-list small {
  font-size: 75%;
    display: block;
}

.reservation-list>li ul a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 108%;
  height: 40px;
  background-image: url(../img/button-design.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.reservation-list>li ul a div {
  display: flex;
  justify-content: center;
  align-items: center;
    flex-flow: column;
  height: 58px;
  width: 98%;
  border: 1px solid #d49d18;
  border-radius: 100px;
    line-height: 1.4;
}

.reservation-list>li ul a.hover {
  filter: brightness(0.8);
}

.reservation-notice {
  margin: 56px auto 0;
}



.contact h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 130%;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: dotted 2px #d49d18;
    margin-bottom: 20px;
    text-shadow: 0 0 0.4em #fff,0 0 0.6em #fff;
}

.contact-ul {
  max-width: 640px;
  margin: 32px auto 0;
}

.contact-ul2 {
  margin-top: 20px;
}

.contact-ul li {
  display: flex;
  gap: 4px;
  font-size: 12px;
  line-height: 130%;
}

.contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  height: 40px;
  color: #FFFFFF;
  background: linear-gradient(180deg, #006943 25%, #009760 55%, #006943 65%);
  border: 2px solid #d49d18;
  font-size: 14px;
  margin: 20px auto 8px;
  transition: all 0.2s ease;
}

.contact-button div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97%;
  height: 30px;
  border: 1px solid #d49d18;
}

.contact-date {
  text-align: center;
  font-size: 14px;
}

.contact-button.hover {
  filter: brightness(0.8);
}

.contact-sns {
  text-align: center;
}

.contact-sns dt {
  margin: 32px auto 10px;
}

.contact-sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background: linear-gradient(180deg, #006943 25%, #009760 55%, #006943 65%);
  border: 2px solid #d49d18;
  margin: 0 auto;
  transition: all 0.2s ease;
}

.contact-sns a.hover {
  filter: brightness(0.8);
}

.contact-sns a svg {
  max-width: 28px;
}



footer {
    width: 74%;
    max-width: 520px;
    margin: 0 auto;
  position: relative;
  text-align: center;
 padding: 100px 0 100px;
    z-index: 2;
}


footer .sns {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: centerl;
  gap: 20px;
  margin: 24px auto;
}

footer .sns svg {
  width: 100%;
  height: 100%;
}

.mga-10th {
  width: 40%;
  max-width: 200px;
  display: block;
  margin: 40px auto 0;
}

.sns a {
  font-size: 24px;
}

footer p {
  font-size: 14px;
    line-height: 1.6;
}

footer p small {
  display: block;
  font-size: 10px;
  margin-top: 10px;
}


.youtube-icon {
  height: 28px !important;
}

.x-icon {
  height: 28px !important;
}





@media screen and (max-width: 896px) {
    
    
    .infomation-notes{
        font-size: 10px;
        margin-top: 16px;
    }
  .infomation-map {
    max-width: 400px;
  }

  .goods-list {
    column-gap: 16px;
    row-gap: 32px;
  }

  .goods-list h3 {
    font-size: 14px;
  }

  

  .card-title {
    font-size: 13px;
      line-height: 1.8;
  }
    .reservation-list>li h3{
        font-size: 22px;
    }
  .reservation-list>li ul a {
    height: 58px;
    width: 100%;
    max-width: 500px;
    font-size: 12px;
  }

  .reservation-list>li ul a::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 104%;
    height: 40px;
  }

  .reservation-list>li ul a div {
    height: 46px;
    width: 98%;
  }



  .contact h3 {
    font-size: 14px;
      margin-bottom: 20px;
  }

  .contact-ul {
    margin: 20px auto 0;
  }

  .contact-button {
    margin: 16px auto 8px;
    font-size: 12px;
  }

  .contact-date {
    font-size: 12px;
  }

  .goods-slideBox {
    max-width: 300px;
    margin: 0 auto;
  }

  .menu-back {
    right: 14px;
    max-width: 60px;
  }

  header {
    top: 16px;
    right: 27px;
  }

  .hamburger {
    width: 35px;
  }

  .hamburger p {
    font-size: 10px;
    text-align: center;
    margin: 6px 0 0 0;
  }

  .menu ul {
    gap: 24px;
  }

  .menu li a {
    font-size: 32px;
  }

  .menu-back {
    transform: translateY(-6px) !important;
  }



    
    .loading span{
   
    width: 100px;
}
    .mark {
  opacity: 0.4;
  margin-top: -1px;
    height: 18px;
}

  .section-inner {
    padding: 40px 20px;
  }

  #introduction p {
    font-size:14px;
    line-height: 170%;
  }

  section {
    padding-top: 48px;
  }

  h2 {
    font-size: 36px;
    margin: 0 auto 24px;
  }

  .map-button li a {
    font-size: 12px;
  }

  .goods-list {
    max-width: 600px;
    margin: 0 auto 48px;
    grid-template-columns: 1fr 1fr;
  }

  .goods-list h3 {
    font-size: 16px;
  }

  .goods-list dl dd {
    font-size: 20px;
  }

  .goods-list dl dd span {
    font-size: 12px;
    margin-left: 2px;
  }

  .goods-limit {
    margin-top: 32px;
  }

  .goods-limit p {
    font-size: 14px;
    margin-bottom: 10px;
  }
    .notes{
        margin-top: 24px;
        padding-top: 24px;
    }
    .notes p{
        font-size: 1em;
    }
    .notes-list{
        font-size: 11px;
    }

 

  .reservation-list>li p {
    font-size: 16px;
      margin: 16px 0 8px;
  }
    .reservation-notice{
        margin-top: 32px;
    }

  .store-list {
    max-width: 640px;
    margin: 0 auto;
  }

  .store-list>li {
    max-width: 1000px;
    flex-direction: column;
    gap: 32px;
    border-top: none;
    padding-bottom: 0;
    padding-top: 0;
  }

  .store-list>li:first-child {
    justify-content: center;
    flex-direction: column;
    gap: 32px;
  }

  .store-list h3 {
    width: 100%;
    font-size:18px;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
    margin: 0 auto;
    color: #FFFFFF;
    background: linear-gradient(180deg, #006943 25%, #009760 55%, #006943 65%);
    border: 2px solid #d49d18;
  }

  .store-detail {
    width: 100%;
    text-align: center;
  }

  .store-detail li {
    padding: 32px 8px 0;
  }

  .store-detail li h4 {
    font-size:18px;
    line-height: 130%;
    margin-bottom: 20px;
  }

  .store-detail li dl {
    flex-direction: column;
  }

  .store-detail li dt {
    margin-bottom: 4px;
    width: 100%;
    color: #FFFFFF;
    height: 24px;
    width: 100px;
    margin: 0 auto 10px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #006943 25%, #009760 55%, #006943 65%);
    border: 2px solid #d49d18;
    border-radius: 100px;
  }

  .store-detail li dd {
    width: 100%;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 140%;
  }

  .section-inner-content {
    max-width: 600px;
    margin: 96px auto 5%;
    padding: 40px 20px;
  }

  .goods-modal-box {
    flex-direction: column;
  }

  .goods-slideBox {
    max-width: 300px;
    margin: 0 auto;
  }

  .goods-slider {
    max-width: 600px;
  }

  .goods-slider-nav {
    max-width: 600px;
  }

  .goods-modal-content {
    max-width: 400px;
    margin: 0 auto;
  }

  .goods-title {
    font-size: 20px;
  }

  .goods-description {
    margin: 24px auto 20px;
    font-size: 12px;
  }

  .goods-price {
    margin: 10px auto 0;
    font-size: 20px;
  }

  .goods-price span {
    font-size: 12px;
  }

  .goods-attribute-label {
    text-align: center;
    font-size: 16px;
  }

  .goods-attribute-value {
    text-align: center;
    font-size: 14px;
  }

  .goods-size-list li {
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
    font-size: 14px;
  }

  .goods-size-label {
    font-size: 12px;
    height: 20px;
  }

  .goods-attribute-purchase {
    margin-bottom: 56px;
  }

  .purchase-box {
    margin-top: 20px;
  }

  .purchase-box p {
    font-size: 14px;
  }
    
    

    footer {
 padding: 80px 0 80px;
}
   
    .sns a{
        font-size: 20px;
    }
    
    .sns li:first-child{
        width: 20px;
    }
  footer p {
    font-size: 10px;
  }

  footer p small {
    display: block;
    font-size: 9px;
    margin-top: 10px;
  }


}

