@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
* {
  font-family: "Noto Sans JP", sans-serif;
}

.header {
  display: flex;
  align-items: center;
  margin-block: 20px;
  justify-content: space-around;
}

.rogo img {
  width: 200px;
  height: auto;
}

.moji {
  display: flex;
  list-style: none;

}

.moji li {
  margin-inline: 20px;

  a {
    text-decoration: none;
  }

}

.haikei img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.sotin {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
}

.oomoji {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
  font-size: 32px;
}

.debu {
  display: grid;
  width: 72%;
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.last {
  grid-column: span 2;
}

.slider .slick-slide {
  margin: 0 20px;
}

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

.item {
  box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.35);
}

.item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  vertical-align: bottom;
}

.kuzu {
  padding: 22px;
  font-size: 15px;
}

.hage {
  text-align: right;
}

.zako h3 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
  font-size: 32px;
}

.boke {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boke iframe {
  width: 70%;
  height: 400px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.boke p {
  width: 70%;
  text-align: left;
  margin-bottom: 200px;
}

#footer {
  background-color: black;
  height: 350px;
  width: 100%;
}

.buta {
  height: 300px;
  position: relative;
  background-image: url(../image/p7.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.buta>p {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 24px;
}

.buta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #ffffffbd;
}

.gai {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f13c68;
  z-index: 3;
  gap: 20px;
  color: #fff;
  text-decoration: none;

  img {
    width: 20px;
    height: auto;
  }
}


.copppp {
  position: relative;
}

.ero {
  position: absolute;
  z-index: 5;
  color: white;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

@media (width <=375px) {
  .header {
    justify-content: start;
    padding-inline: 20px;
  }

  .debu {
    width: 343px;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 1fr);
  }

  .last {
    grid-column: 1;
  }

  .rogo img {
    width: 100px;
  }

  .boke iframe {
    width: 100%;
    height: auto;
  }

  .boke p {
    width: 80%;
    text-align: left;
    font-size: 13px;
    margin-bottom: 150px;
  }

  .buta>p {
    text-align: center;
    width: 80%;
    font-size: 18px;
    font-weight: bold;
  }
}