@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&family=M+PLUS+Rounded+1c:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  min-height: 100vh;
}

html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  position: relative;
  z-index: 1;
}
html::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(235, 233, 233, 0.5),
      rgba(247, 244, 244, 0.5)
    ),
    url("img/pink-brush-stroke-texture-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  z-index: -1;

  /* ぼかし効果を追加 */
  filter: blur(3px);
}

.wrapper {
  margin: auto 10vw;
}
.space {
  margin-top: 50px;
  margin-bottom: 50px;
}
/*ロゴ*/
#shop-name {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #fdf9f9;
  opacity: 0.9;

  z-index: 4;
}
#shop-name picture {
  margin: 0 auto;
}

/*キャッチコピー*/
#catchcopy {
  width: 100%;
  margin-top: 30px;
  opacity: 0;
  z-index: -1;
  transform: translateY(20px);
}
.catchcopy-h1 {
  font-size: 1.3rem;
  text-align: center;
  margin: 50px auto;
  letter-spacing: 2px;
  font-family: "Zen Kurenaido", serif;
  font-weight: 400;
  font-style: normal;
}
#catchcopy.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 2.5s;
}

#fixed-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 10px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #fffefc;
  color: #eeb82e;
  border-radius: 50%;
  border: 1px solid #ecba44;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(162, 74, 74, 0.1);
  transition: opacity 0.5s ease-in-out;
  z-index: 12;
  cursor: pointer;
}

.slider {
  width: 150px;
  height: 100vh;
  position: relative;
  background-color: #fdf9f9;
  opacity: 0.9;
  color: #fff;
  display: flex;

  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  transition: transform 0.8s ease-in-out;
  transform: translateX(-100%);
}
.slider-visible {
  transform: translateX(0%);
}
.tell-time {
  transform: translate(-20%, -50%);
  width: 100%;
  height: auto;
}
#close {
  margin: 5px;
  color: #867c7c;
  cursor: pointer;
}
.menu-list {
  list-style-type: none;
  padding: 30px;
  margin-top: 10px;
}

.menu-list li {
  margin-bottom: 30px;
}

.menu-list a {
  text-decoration: none;
  color: #867c7c;
  font-size: 1.2rem;
  transition: color 0.4s;
}

.menu-list a:hover {
  color: #f0a500;
}

.phone-link::before {
  content: "phone";
  font-size: 0.9rem;
  margin-right: 5px;
  vertical-align: middle;
}

.phone-img {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 40px;
  height: 40px;
  margin-top: 5px;
  transition: all 0.4s;
}
.phone-img:hover {
  opacity: 0.5;
}
.phone-img img {
  width: 100%;
  margin: 0 auto;
}

.slider-visible {
  transform: translateX(0%);
}

/*スライドショー*/

.slideshow-container {
  width: 100%;
  height: 500px;
  padding-top: 120px;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.slide {
  width: 100%;
  position: absolute;
  transition: opacity 1.5s ease-in-out;
}
.slide img {
  object-fit: cover;
  background-size: cover;
  height: 500px;
}
.fade {
  animation: fadeEffect 2s ease-in-out;
}

.dots-container {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #717171;
}
#shop-gaikan {
  width: 100%;
}
.shop-img img {
  width: 100%;
  margin: 30px 0 20px 0;
}
.gaikan-p {
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  font-family: "Zen Kurenaido", serif;
  font-weight: 400;
  font-style: normal;
}

/*新着情報*/

@keyframes blink-orange {
  0% {
    color: rgba(248, 191, 4, 0.942);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    color: rgba(248, 191, 4, 0.942);
    opacity: 1;
  }
}

.new-info {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.new-info a {
  font-size: 1.3rem;
  font-family: "Zen Kurenaido", serif;
  font-weight: 400;
  font-style: normal;
  border-bottom: solid 1px #ecba44;
  padding-bottom: 5px;
  animation: blink-orange 1.8s infinite;
  display: inline-block;
}
.sns-x {
  padding: 30px;
}

/*地図、カレンダー*/
.information {
  width: 90%;
  margin: 0 auto;
}
.information p {
  font-size: 1.1rem;
  text-align: center;
  margin: 15px;
}
.new-h3 {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-family: "Zen Kurenaido", serif;
  font-weight: 400;
  font-style: normal;
}

.map {
  width: 100%;
  margin-bottom: 20px;
}

#calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.day {
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 80px;
  background-color: #f9f9f9;
  position: relative;
}

.day.weekend {
  background-color: #ffecec;
}

.day .date {
  font-weight: bold;
  margin-bottom: 5px;
}

.day .info {
  font-size: 0.85em;
}

/*トップへ戻るボタン*/

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #fffefc;
  color: #eeb82e;
  border-radius: 50%;
  border: 1px solid #ecba44;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(162, 74, 74, 0.1);
}

.back-to-top:hover {
  opacity: 0.8;
}

.back-to-tops {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #fffefc;
  color: #eeb82e;
  border-radius: 50%;
  border: 1px solid #ecba44;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(162, 74, 74, 0.1);
}

.back-to-tops:hover {
  opacity: 0.8;
}
/*フッター*/
footer {
  text-align: center;
  margin: 40px auto;
}
/*レスポンシブデザイン*/
@media (min-width: 344px) and (max-width: 480px) {
  /*お店のロゴ*/

  #shop-name img {
    margin-top: 5px;
    width: 120px;
  }

  .slider {
    width: 120px;
  }
  .menu-list {
    padding: 10px;
    margin-top: 5px;
  }

  .menu-list li {
    margin: 12px 0;
  }

  .menu-list a {
    margin-left: 12px;
    font-size: 1rem;
  }

  .phone-link::before {
    content: "tell↓";
    font-size: 0.7rem;
  }
  .tell-time {
    transform: translate(-20%, -20%);
    width: 100%;
    height: auto;
  }

  .phone-img {
    width: 25px;
    height: 25px;
    margin-left: 12px;
  }
  .tell-time img {
    margin-top: 30px;
    width: 85px;
  }

  #hmb {
    top: 10px;
    left: 20px;
    width: 30px;
    height: 30px;
  }

  #hmb2 {
    top: 10px;
    left: 20px;
    width: 30px;
    height: 30px;
  }
  #hmb2 img {
    width: 100%;
  }
  .menu-list li a {
    font-size: 0.9rem;
  }
  /*キャッチコピー*/
  .catchcopy-h1 {
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 300px;
    margin: 15% auto 20px auto;
    line-height: 1.5;
    z-index: -10;
  }
  .day {
    padding: 5px;
    font-size: 0.7rem;
  }

  .day .info {
    font-size: 0.7rem;
  }
}
@media (min-width: 481px) and (max-width: 820px) {
  .sns-x {
    margin-left: 20%;
  }
  .menu-list li {
    margin-top: 30px;
  }

  #shop-name img {
    width: 120px;
  }
  .catchcopy-h1 {
    font-size: 1.3rem;
    text-align: center;
    margin: 10% auto 20px auto;
  }
}
@media (min-width: 821px) {
}
@media (min-width: 822px) and (max-width: 2500px) {
  .sns-x {
    margin-left: 29%;
  }
  #shop-name {
    height: 130px;
  }
  #shop-name img {
    width: 200px;
  }
  #shop-name picture {
    margin: 0;
    margin-left: 80px;
  }

  #close,
  #fixed-menu {
    opacity: 0;
  }

  .slider {
    width: 100%;
    height: 140px;
    flex-direction: row;
    transform: translateX(0);
    justify-content: end;
    margin-right: 50px;
    align-items: center;
    background-color: transparent;
  }
  .menu-list {
    display: flex;
    justify-content: space-around;

    align-items: center;
    padding: 0;
    margin-right: 20px;
  }
  .menu-list li {
    width: 200px;
    margin: 0 30px;
  }

  .menu-list a {
    font-size: 1rem;
  }
  .tell-time {
    transform: translate(40%, -15%);
  }
  .tell-time img {
    width: 190px;
  }

  .menu-list li {
    margin: 0 0 30px 0;
  }
  .menu-list li a {
    font-size: 1.4rem;
  }
  .catchcopy-h1 {
    font-size: 2rem;
    margin: 8% auto;
  }
  .new-block {
    width: 30%;
  }
  .new-ps {
    font-size: 1.2rem;
  }
  .map {
    width: 45%;
  }
  .calendar {
    width: 45%;
  }
  .information {
    display: flex;
    justify-content: space-around;
  }
  .information p {
    display: none;
  }
  /*トップへ戻るボタン*/

  .back-to-top {
    bottom: 50px;
    right: 20px;
    width: 70px;
    height: 70px;
  }

  .back-to-tops {
    bottom: 140px;
    right: 20px;
    width: 70px;
    height: 70px;
  }
}
