@charset "UTF-8";

.access-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf6ec 0%, #ffffff 100%);
}
.access-section::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  display: none; /* 装飾ブロブ無効化（背景を単色で統一）*/
  z-index: 0;
}
.access-section .inner {
  position: relative;
  z-index: 1;
}
.access-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 48px;
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .access-map iframe {
    height: 280px;
  }
}
.access-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.access-detail {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  background: #f9f7f2;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .access-detail {
    flex: 0 0 100%;
  }
}
.access-detail h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4DB6AC;
  margin-bottom: 8px;
}
.access-detail h3 i {
  margin-right: 8px;
}
.access-detail p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
}
.access-detail p a {
  color: #4DB6AC;
  font-weight: 700;
  font-size: 2.0rem;
}
.access-photos {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .access-photos {
    flex-direction: column;
    gap: 28px;
  }
}
.access-photo {
  flex: 1;
  margin: 0;
  text-align: center;
}
.access-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: block;
}
.access-photo figcaption {
  margin-top: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #4DB6AC;
}
.access-transport {
  margin-top: 20px;
}
.transport-list {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .transport-list {
    flex-direction: column;
  }
}
.transport-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 2px solid #e8f5f3;
  border-radius: 12px;
}
.transport-item i {
  font-size: 2.4rem;
  color: #4DB6AC;
  margin-top: 4px;
  flex-shrink: 0;
}
.transport-item h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.transport-item p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
}

/* thanks page */
.thanks-section {
  padding: 80px 0;
}
.thanks-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #f9f7f2;
  border-radius: 16px;
}
.thanks-box i {
  font-size: 6.0rem;
  color: #4DB6AC;
  margin-bottom: 24px;
}
.thanks-box h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}
.thanks-box p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}
