@charset "UTF-8";

html{
    font-size: 100%;
    scroll-behavior: smooth;
}
img{
    max-width: 100%
}
body {
  font-family: "Playfair Display", "Shippori Mincho", serif;
  line-height: 1.7;
  color: #000000;
}

a {
    text-decoration: none;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  display: block;
  max-width: 300px; /* 好きなサイズに */
  height: auto;
}


.main-nav li{
  list-style: none;
}
nav {
  position: fixed;   /* ← 追加！ */
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: none;
  background: #ffffff;
  z-index: 1500;     /* ハンバーガー(2000)より下でOK */
  padding-top: 2rem;
}

nav.active {
  display: block;
}

.hamburger {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 2000;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #000000;
  margin: 5px 0;
  transition: .3s;
}

.main-nav a {
  display: block;
  padding: 1rem;
  font-size: 14px;
  color: #4a3b33;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.shop-btn {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 2000;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
}


h1{
  font-size: 20px;
  padding: 1.5rem 0;

}
.main{
  text-align: center;
  padding-bottom: 2rem;;
}
.main p{
  padding-top: .6rem;
}
.title{
  padding: 2rem 0 1rem;
  text-align: center;
}
.about{
background-color: rgba(68, 68, 68, 0.15);
padding-bottom: 2.5rem;
}
.about p,
.items p,
.details p,
.reviews p{
  padding: 0 2rem;
}
h3{
  padding: .5rem 1rem;
}
.details{
background-color: rgba(68, 68, 68, 0.15);
padding-bottom: 2.5rem;
}
.items{
  padding-bottom: 2rem;;
}
.item1,
.item2,
.item3{
  padding-bottom: 1rem;
}
footer img{
  width: 40%;
  height: auto;
}

.to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  color: #ffffff;
  background-color: #444444;
  font-family: "Playfair", serif;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
  z-index: 100;
}

.to-top:hover {
  opacity: 1;
  transform: translateY(-5px);
}

footer{
  text-align: center;
}
.footer-info{
  padding-bottom: 1rem;
}
.medium-hr{
  width: 160px;
  border: .5px solid rgba(68, 68, 68, 0.15);
  margin: 0 auto;
}
.large-hr{
  width: 240px;
  border: .5px solid #444444;
  margin: 0 auto;
}

.main-photos {
  overflow: hidden;
  width: 100vw;
}

.loop {
  display: flex;
  animation: slide 45s linear infinite; /* ← 動く速度はここで調整！ */
  gap: 20vw;
}

.loop img {
  width: 120vw;
  height: auto;
  flex-shrink: 0;
  max-width: none;
}

.review svg{
  padding-left:1rem;
  max-width: 100%;
  width: 90px;
}
.review p{
  padding-bottom: 1rem;
}
.reviews hr{
  padding-bottom: 1rem;
  border-bottom: none;
  border-right: none;
  border-left: none;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease, transform 2s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-photos img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.8s ease forwards;
}
.footer-info a{
  color:#444444;
}



@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-360vw); }
}

@media (min-width: 769px) {
  .sp-br,
  .sp-hr {
  display: none;
}
  .main-photos img {
    width: 45vw; /* PCはこのくらいが上品 */
  }
    .shop-btn {
    font-size: 18px;
  }
  .about p,
  .reviews p,
  .detail-p{
    text-align: center;
  }
  .medium-hr{
  width: 460px;
  border: .2px solid rgba(68, 68, 68, 0.15);
  margin: 0 auto;
}
.large-hr{
  width: 240px;
  border: .2px solid #444444;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-right: none;
  border-left: none;
  border-bottom: none;
}
.items img{
  width: 300px;
  height: auto;
}
.items-photos{
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding-left: 1rem;
}
.detail1,
.detail2{
  padding-bottom: 1rem;
}
.review svg{
  width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
  padding-left: 0;
}
.gallery-photos{
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  justify-content: center;
  gap: 1rem;
}
footer img{
  width: 200px;
  height: auto;
}
footer p{
  padding-top: .5rem;
}
}