/* company-map.css  ── COMPANY ページ専用 */
/*--------------------------------------------------------------
  ▼ Google Map 埋め込みレスポンシブ対応
--------------------------------------------------------------*/
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;       /* 16:9 */
  overflow: hidden;
  border-radius: 4px;           /* 任意：角丸 */
}

.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*--------------------------------------------------------------
  ▼ 会社ページ レイアウト基礎
--------------------------------------------------------------*/
.company-access {
  padding: 80px;
  background: #f9f9f9;
  width: 100% 
  
}

.company-access .inner {
  max-width: 960px;
  margin: 20 auto;
  padding: 0 20px;
}

/* 見出し */
.company-access .secondSubTtl01 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;          /* 全角風スペーシング */
  margin-bottom: 40px;
}

/* 住所・連絡先ボックス（例）*/
.company-access .company-info {
  text-align: center;
  margin-top: 24px;
  line-height: 1.8;
  font-size: 1rem;
}

/*--------------------------------------------------------------
  ▼ レスポンシブ調整
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .company-access {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .company-access {
    padding: 48px 0;
  }

  .company-access .secondSubTtl01 {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    
    margin-bottom: 32px;
  }

  .company-access .company-info {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .company-access .secondSubTtl01 {
    font-size: 1rem;
    
    letter-spacing: 0.1em;
  }
}