@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", sans-serif;
}

section {
    margin: 0px auto;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    padding: 0;
  }


.header,
.footer {
  background: repeating-linear-gradient( 229deg, #FDA9BF 0 40px, #A9F0FD 30px 80px );
  padding: 40px;
}
.header{
  text-align: center;
}
.sen {
  height: 20px;
  width: 100%;
  background: repeating-linear-gradient( 229deg, #FDA9BF 0 40px, #A9F0FD 30px 80px );
}

h2 {
  font-size: 30px;
  margin-bottom: 30px;
  font-family: Abril Fatface;
  color:#000000a6;
  text-align: center;
  z-index: 2;
  position: relative;
  padding-top: 50px;
}

/* TOP */
.top img {
  width: 100%;
  height: auto;
  display: block;
}
.top{
  padding: 0;
}

/* MENU */
.menu {
  background: #A9F0FD;
}
.menu-paper{
  padding-bottom: 50px;
  display: flex;
  margin-bottom: 50px;
  padding-bottom: 10px;
  background:url(../image/memo.png);
  background-size: cover;
}
.menu-list {
  list-style: none;
  text-align: left;
  font-size: 12px;
  margin: 0 auto;
  padding-top: 20px;
}
.menu-list p {
  font-size: 8px;
}
.menu-list li{
  margin-bottom: 10px;
}
.menu_img{
  width: 90%;
  display: block;
  margin: 0 auto;
  margin-top: -20px;
  margin-bottom: 50px;
}
/* Gallery */
.gallery {
  background: #FDA9BF;
}
.grid {
  display: flex;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  max-width: 390px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
}
.grid img {
  width: 100%;
  max-width: 90px;
  transition: transform .3s;
}
.grid img:hover {
  transform: scale(1.05);
}
/* Info */
.info {
  position: relative;
  background: url("../image/burger.jpg") center / cover no-repeat;
}
.info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
}
.info * {
  position: relative;
}
.info-box {
  max-width: 800px;
  margin: auto;
}
.info-list {
  margin-bottom: 30px;
  width: 230px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.info-list div {
  display: flex;
  margin-bottom: 12px;
  justify-content: left;
}
.info-list dt {
  width: 90px;
  font-weight: bold;
  font-size: 12px;
}
.info-list dd {
  margin-left: 20px;
  font-size: 12px;
}
.map iframe {
  width: 80%;
  height: 300px;
  border: none;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  padding-bottom: 50px;
}
/* Footer */
footer {
  padding: 40px;
  background: #FDA9BF;
}
.sns-links{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sns-links a{
  text-decoration: none;
}
/* ===== フェードイン ===== */
.fade {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.delay-1{
  transition-delay: 0.3s;
}
.pop{
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease,transform 0.7s cubic-bezier(.34,1.56,.64,1);

}
.pop.show{
  opacity: 1;
  transform: scale(1);
}
.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.3s; }
.card:nth-child(3) { transition-delay: 0.5s; }
.card:nth-child(4) { transition-delay: 0.1s; }
.card:nth-child(5) { transition-delay: 0.3s; }
.card:nth-child(6) { transition-delay: 0.5s; }
.card:nth-child(7) { transition-delay: 0.1s; }
.card:nth-child(8) { transition-delay: 0.3s; }
.card:nth-child(9) { transition-delay: 0.5s; }

.slide{
  opacity: 0;
  transform: translate3d(-40px,0,0);
  transition: opacity 0.6s ease,transform 0.6s ease;
}
.slide.show{
  opacity: 1;
  transform: translate3d(0,0,0);
}


/* レスポンシブ */
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }
 
}

body {
  position: relative;
}
main {
  position: relative;
  z-index: 1;
}
