@charset "utf-8";
/* ==========================================================================
   店舗紹介ページ専用スタイル
   greeting/access-row/access-hours-panel 系の共通コンポーネントは
   assets/css/common.css を使い回す(TOP・訪問鍼灸ページと共通)。
   ここには店舗紹介ページ固有の背景(bg-wrap)・駐車場案内・地図画像のみを定義する。
   ========================================================================== */

/* ==========================================================================
   bg(ベージュの丸み背景。FV〜院長ご挨拶セクションを内包)
   ========================================================================== */

.tenpo-bg-wrap {
  background-color: var(--color-bg);
  border-bottom-left-radius: 180px;
  overflow: hidden;
}

/* ==========================================================================
   access(アクセス・院のご案内)
   ========================================================================== */

.tenpo-access-section {
  max-width: 1070px;
  padding: 80px 15px;
}

.tenpo-access-inner {
  gap: 56px;
  /* テキスト側の位置はそのままに、写真だけをウィンドウ右端まで伸ばす */
  width: calc(100% + ((100vw - 100%) / 2));
}

.tenpo-access-inner .access-photo img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* 駐車場案内 */
.parking-row {
  max-width: 1070px;
  margin: 50px auto;
  gap: 40px;
}

.parking-photo {
  display: block;
  width: 318px;
  max-width: 100%;
  height: 291px;
  object-fit: cover;
  flex-shrink: 0;
}

.parking-text {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.48px;
  color: var(--color-black);
  flex: 1 1 300px;
  min-width: 280px;
}

.parking-text p {
  margin-bottom: 0;
}

/* 地図・外観の大きい画像 */
.map-section{
  max-width: 1070px;
  margin: 100px auto;
}

.map-section iframe{
  width: 100%;
  aspect-ratio: 1070 / 634;
}

.map-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1572 / 932;
  object-fit: cover;
  border-radius: 20px;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */

@media (max-width: 991px) {
  .tenpo-bg-wrap {
    border-bottom-left-radius: 100px;
  }
}

@media (max-width: 767px) {
  .parking-row {
    flex-direction: column;
  }
}
