@charset "UTF-8";
/* CSS Document */
body {
  background-image: radial-gradient(rgba(230, 241, 232, 0.3), rgba(230, 241, 232));
  text-align: left;
  letter-spacing: 0.1em;
  margin: 0;
}
p {
  padding: 10px 25px;
}
/*トップ*/
.section-access__top-img {
  background-image: url("../assets/materials-assets/flower-img.png");
  background-color: gray;
  background-position: 35% 15%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  margin-bottom: 30px;
  opacity: 0.8;
}
.section-top__title {
  width: 175px;
  position: absolute;
  top: 20%;
  left: 10%;
  filter: drop-shadow(0 0 0.6rem #333);
}
@media(min-width:480px) {
  .section-access__top-img {
    height: 65vh;
    margin-bottom: 50px;
  }
  .section-top__title {
    width: 220px;
  }
}
/*タイトル*/
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 50px auto 30px;
}
.title span {
  text-align: center;
}
.title:before {
  position: absolute;
  margin-left: -230px;
  content: url("../assets/Illust/leaf_line.png");
  transform: scale(0.1)
}
.title:after {
  position: absolute;
  margin-right: -230px;
  content: url("../assets/Illust/leaf_line.png");
  transform: scale(0.1);
}
/*住所*/
.section-address p {
  text-align: center;
}
.google-map {
  height: 330px;
}
.google-map iframe {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 0.1rem #333);
}
/*アクセス*/
.section-access__description {
  background-color: #fafafa;
  padding-top: 50px;
}
.line {
  border-top: 1px solid #8c8b8b;
  margin: 50px 20px;
}
.section-access__img div {
  margin: 0px 20px;
  padding-bottom: 35px;
  text-align: center;
}
.section-access__img img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  filter: saturate(80%);
  border-radius: 5px;
  opacity: 0.8;
}
.section-access__img h3 {
  padding: 15px 25px 25px;
}
.section-access__img p {
  margin-bottom: 5px;
}
@media(min-width:1160px) {
  .text-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .img-wrapper {
    display: grid;
    gap: 20px 0px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 70px;
  }
}