/* ======================================= 
   ファイル名: access-section.css
   ======================================= */

.access-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: "Yu Mincho", "游明朝体", serif;
  text-align: center;
}

.access-inner {
  max-width: 900px; /* マップを見やすくするため、少し広めに確保 */
  margin: 0 auto;
}

/* タイトルエリア */
.access-header {
  margin-bottom: 20px;
}

.access-title {
  font-size: 24px;
  font-weight: 600;
  color: #12458f;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.access-en {
  font-size: 14px;
  color: #12458f;
  letter-spacing: 0.2em;
}

/* 横線（指示通りのデザイン） */
.access-line {
  width: 60px;
  border: none;
  border-top: 1px solid #12458f;
  margin: 30px auto;
}

/* リード文 */
.access-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #12458f;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

/* Googleマップ容器 */
.access-map-container {
  width: 100%;
  margin-bottom: 60px;
  border: 1px solid rgba(18, 69, 143, 0.2); /* 控えめな囲み線 */
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 5px 20px rgba(18, 69, 143, 0.08);
}

.access-map-container iframe {
  filter: grayscale(10%); /* サイトの雰囲気に馴染ませる加工 */
}

/* --- 独立したボタン設定 (side-contentの意匠を反映) --- */
.access-btn-wrapper {
  text-align: center;
}

.btn-access-rect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 60px;
  font-size: 15px;
  font-weight: 600;
  color: #12458f;
  border: 2px solid #12458f; /* 2pxに変更して強調 */
  border-radius: 4px;       /* 角丸4pxを追加して独立化 */
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}

.btn-access-rect .arrow {
  display: inline-block;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.btn-access-rect:hover {
  background-color: #12458f;
  color: #fff;
}

.btn-access-rect:hover .arrow {
  transform: translateX(5px);
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .access-section {
    margin: 80px auto;
  }

  .access-title {
    font-size: 20px;
  }

  .access-lead {
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .access-map-container {
    margin-bottom: 40px;
  }
  
  .access-map-container iframe {
    height: 300px;
  }

  .btn-access-rect {
    width: 80%;
    padding: 12px 0;
  }
}