@charset "UTF-8";
.photo-placeholder {
  background: #d8dce8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  letter-spacing: 0.05em;
  width: 100%;
  aspect-ratio: 4/3;
}
.photo-placeholder.map { 
  aspect-ratio: 16/7; 
}

/* 園情報 */
.access-info {
  padding: 60px 40px;
  background: #fff;
}
.access-info-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}
.access-info-title {
  font-size: 28px;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.access-info-box {
  border: 1px solid #ccc;
  background-color: var(--accent-bg);
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #555;
  line-height: 2.0;
  letter-spacing: 0.04em;
}
.access-info-tel {
  font-size: 18px;
  color: #444;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.access-info-hours {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .access-info { padding: 40px 20px; }
  .access-info-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* アクセスマップ */
.access-map-section {
  background: #fff;
  padding: 0 40px 60px;
}
.access-map-inner {
  max-width: 900px;
  margin: 0 auto;
}
.access-map-illust {
  margin-bottom: 24px;
}
.access-route-list {
  list-style: none;
}
.access-route-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1.7;
  font-weight: 500;
}
.route-icon {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 768px) { 
  .access-map-section { padding: 0 20px 50px; } 
  .access-route-item {
    font-size: 16px;
    color: var(--accent);
    line-height: 1.2;
  }
  .route-icon {
    width: 32px;
  }
}

/* 駐車場 */
.access-parking {
  background: #fff;
  padding: 0 40px 60px;
}
.access-parking-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.access-parking-text {
  margin-top: 90px;
}
.access-parking-text h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.access-parking-text p {
  font-size: 16px;
  color: #666;
  line-height: 2.0;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .access-parking { padding: 0 20px 50px; }
  .access-parking-inner { grid-template-columns: 1fr; gap: 24px; }
  .access-parking-text {
    margin-top: 0;
  }
}

/* Googleマップ */
.access-google {
  background: #fff;
  padding: 0 40px 80px;
}
.access-google-inner {
  max-width: 900px;
  margin: 0 auto;
}
.access-google-map {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin-bottom: 20px;
}
.access-google-map iframe {
  width: 100%;
  height: calc(100% + 300px);
  margin-top: -150px;
  border: 0;
  border-radius: 8px;
}
.access-google-btn-wrap {
  text-align: center;
}
.access-google-btn {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.access-google-btn:hover { 
  opacity: 0.7;
}
@media (max-width: 768px) { 
  .access-google { padding: 0 20px 60px; } 
}
