@charset "UTF-8";
.access-section {
  margin: 3em auto;
  padding: 0 1em;
  color: #333;
}

.access-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
  color: #006400;
  text-align: center;
}

.access-section .car_access{
}

.access-section .car_access .car_access_img{
text-align:center;
}

.access-section .car_access .car_access_text{
}

/* 補足説明 */
.notes {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  background-color: #fdfdfd;
  border-left: 4px solid #ccc;
  padding: 1em 1em 1em 1.2em;
  margin:2em 0 0 0;
}

/* スマホやタブレットなど、狭い画面でのみ表示 */
@media screen and (max-width: 768px) {
.access-section .car_access{
    display: block;
  }
  
  .access-section .car_access .car_access_text{
    width: 100%;
	padding:1em 0 0 0;
}

}
.access-image { 
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    flex-wrap: wrap;
    padding: 1.5em 0;
    /*justify-content: center;*/
}

@media screen and (max-width: 768px) {
.access-image { 
padding: 2em 0 1em 0;
}}



.point {
  background: #e6f5e6;
  padding: 1em;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}


.arrow {
  color: #555;
  font-size: 16px;
   color: #666;
}



.streetview-section {
  display: flex;           /* 横並びにする */
  flex-wrap: wrap;         /* 横幅が足りなくなったら折り返す */
  gap: 90px;               /* 各figureの間隔 */
  justify-content: center; /* 中央寄せ */
  margin: 20px 0;
}

.streetview-section figure {
  flex: 1 1 400px;         /* 最小幅400pxで横幅自動調整 */
  max-width: 450px;
  margin: 0;
  text-align: center;       /* キャプションを中央揃え */
}

.streetview-section iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .streetview-section {
    flex-direction: column; /* 縦並び */
    gap: 15px;
  }

  .streetview-section figure {
    max-width: 100%;
	 flex: 1 1 300px;
  }

  .streetview-section iframe {
    height: 250px;
  }
}