@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている */
  width: 275px;
  height: 90%;
  background-image:url(../image/background_image.png);
  color: #333;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
  font-family: 'Shippori Mincho', serif;
}
.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  font-family: sans-serif;
  position: relative;
}
.logo {
  padding-right: 6%;
  width: 100px;
  height: auto;
}
.header_shop-info {
  font-size: 0.6rem;
  text-align: left;
  font-weight: 400;
}
.header_shop-info li:nth-child(2) {
  padding: 3px 0;
}
.header_tellicon {
  width: 6%;
  display: inline-block;
}
.header 
/* メニューが開いているとき */
.menu.open {
  right: 0;
}
/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 2px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 60px;
}

.menu li {
  padding: 15px 0;
  text-align: left;
  padding-left: 30px;
}

.menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}
.menu li a:hover {
  color: #666;
  text-decoration: underline;
}
.menu li span{
  font-size: 13px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* ←グレー半透明 */
  z-index: 9; /* .menu より下、.headerより上 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* メニューが開いたときに表示 */
.overlay.open {
  opacity: 1;
  visibility: visible;
}
.lang-switch {
  margin:15px 0 30px;
  text-align: left;
  padding-left: 30px;
}
.lang-switch a {
  margin-right: 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.menu_social-icons {
  width: 50%;
  display: flex;
  margin-top: 30px;
  padding-left: 30px;
  gap: 20px;
}
.footer_container{
  padding: 24px 8%;
}
.footer_logo {
  text-align: left;
  width: 30%;
}
.logo-sns-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    font-size: 1.6rem;
}
.footer_social-icons {
    width: 40%;
    display: flex;
    gap: 0 20px;
}
.footer_container address {
    text-align: left;
    font-size: 0.8rem;
    line-height: normal;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 背景色 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

/* ロゴアニメーション前の初期状態 */
.logo-start {
  opacity: 0;
  width: 50%;
  transform: scale(0.8);
  animation: fadeZoom 3s ease-out forwards;
}

/* ロゴのフェード＋ズームアニメーション */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 非表示にするクラス */
#loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-numbers{
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3rem;
}
@media screen and (min-width: 501px) {
.header_shop-info {
  font-size: 0.7rem;
  text-align: left;
}
.footer_social-icons {
    width: 30%;
    gap: 0 30px;
}
}
@media screen and (min-width: 801px) {
  .header {
    display: flex;
    justify-content:space-around;
    align-items: center;
    gap: 40px;
    padding: 20px;
  }
  .logo {
    padding-right: 0;
    width: 110px;
  }
  .header_shop-info {
    font-style: normal;
  }
  .header_shop-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
  }
  .menu {
    position: static;
    display: flex;
    height: auto;
    background: none;
    padding: 0;
    transition: none;
    right: 0;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .menu ul {
    display: flex;
    gap: 15px;
    margin-top: 0;
    padding-left: 0;
  }
  .menu ul li:first-child {
    display: none;
  }
  .menu li {
    padding: 0;
  }
  .menu li a {
    font-size: 14px;
    text-align: center;
  }
  .menu li span {
    font-size: 10px;
    margin-left: 0;
  }
  /* ハンバーガーとオーバーレイを非表示 */
  .hamburger,
  .overlay {
    display: none !important;
  }
    .lang-switch,
  .menu_social-icons {
    display: none !important;
  }
  .footer_container address {
    font-size: 1rem;
}
.footer_logo {
  width: 25%;
}
.footer_social-icons {
    width: 20%;
    gap: 0 30px;
}
.page-numbers{
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3rem;
}
}
@media screen and (min-width: 1024px) {
  .menu li a {
    font-size: 16px;
  }
}