@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

/* CSS Document */

body {
  background: white;
}

.top img {
  width: 100%;
  height: auto;
}

.header {
  max-width: 1200px;
  margin: 25px auto;
  padding: 0 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  justify-content: flex-end;

}

.menu ul {
  display: flex;
  gap: 8px;
  /* 間隔 */
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 20px;
  font-weight: bold;
  list-style: none;
}

.menu a {
  text-decoration: none;

}

.pick h2 {
  text-align: center;
  margin: 60px 0 30px 0;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__list--left li {
  padding: 0 5px;
  margin: 0 10px;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
}

.scroll-infinity__item img {
  width: 100%;
  height: auto;
}

.kobetu {
  text-decoration: none;
}

.feature {
  text-align: center;
  margin: 30px 0;
}

.feature h2 {
  margin: 60px 0 30px 0;
}

.menu_list .last {
  grid-column: span 2;
}

.menu_list .last img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.feature .menu_list {
  max-width: 1000px;
  margin: 0 auto;
}

.menu_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;

}

.menu_list figure {
  margin: 0;
}

.menu_list img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.menu_list dl,
.menu_list dd {
  margin: 0;
}

.menu_list dl {
  margin-top: .5em;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  text-align: right;
}

.menu_list dt,
.menu_list .summary {
  text-align: left;
}

.menu_list dt {
  font-size: .875em;
  font-weight: 700;
}

.menu_list dd {
  margin-top: .3em;
  font-size: .75em;
}

.menu_list .price {
  display: inline-block;
  padding: .2em .8em;
  /* background: #eee; */
}

.menu_list li {
  padding: 16px 24px;
  box-shadow: 3px 3px 3px 3px rgba(144, 144, 144, 0.45);
  background: #fff;

}

.map h2 {
  text-align: center;
  margin-top: 60px;
}

.map {
  text-align: center;
  margin: 50px 0;
}

.map iframe {
  width: 80%;
  max-width: 800px;
  display: block;
  margin: 30px auto 10px;
}

.map-text {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
  color: #333;
}

iframe {
  width: 80%;
  max-width: 800px;
  display: block;
  margin: 30px auto;

  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}



.sample-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;

}

.contact {
  background: url("../images/footerimg.jpg") center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  text-align: center;

}

/* 白いぼかしオーバーレイ */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

/* 中身を前に出す */
.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-lead {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff3b5c;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn img {
  width: 20px;
  height: auto;
}

.contact-btn:hover {
  background: #e63250;
  transform: translateY(-3px);
}

.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0;
}

.copyright {
  margin: 0;
  padding: 25px 20px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.6;
}




@media screen and (max-width: 768px) {
  .menu_list {
    grid-template-columns: 1fr;
    gap: 20px;

  }

  .menu_list .last {
    grid-column: span 1;
  }
}