/* ======================================================================
   company.css（整理版）
   - Header：ロゴ2段（英字は疑似要素）＋センター
   - Notice：INFORMATION下線＋メッセージ＋ロゴ入り白ボタン（矢印）
   - Sections：左アクセント線
   - Info：PC 2列 / SP 縦並び
======================================================================== */

/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.7;
  color: #2b2b2b;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* SPだけ改行する <br> */
.sp-br {
  display: none;
}

/* ===== Layout ===== */
.container {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.main {
  padding: 12px 0 64px;
}

/* ===== Header ===== */
.site-header {
  padding: 36px 0 8px; /* ← 上を増やす */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ロゴ（日本語＋英字の2段） */
h1.logo {
  margin: 0;
  display: inline-block;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}

h1.logo::after {
  content: "s p e a k l a b o";
  display: block;
  margin-top: 4px;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(43, 43, 43, 0.7);
}

/* ===== Notice ===== */
.notice {
  margin: 28px auto 44px;
  padding: 28px 20px;
  background: #f2b1ad;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* INFORMATION（文字幅だけ下線） */
.notice h2 {
  display: inline-block;
  margin: 0 0 10px;
  padding-bottom: 6px;

  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: 0.12em;

  color: rgba(0, 0, 0, 0.72);
  border-bottom: 3px solid rgba(255, 255, 255, 0.95);
}

/* メインメッセージ（少し小さめ） */
.notice__title {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.55;
}

/* サブ */
.notice__sub {
  margin: 8px 0 18px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

/* URLボタン */
.notice__url {
  margin: 0;
  text-align: center;
}

.notice__url a {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 12px 22px;
  background: #fff;
  color: #38a297;
  text-decoration: none;

  border-radius: 999px;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 14px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}

.notice__url img {
  width: 34px;
  height: auto;
}

.notice__url a::after {
  content: "→";
  font-weight: 700;
}

.notice__url a:hover {
  background: #38a297;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== Sections ===== */
.section {
  margin-top: 34px;
}

.section-title {
  margin: 0 0 14px;
  padding-left: 12px;

  font-size: 18px;
  font-weight: 700;

  border-left: 4px solid #38a297;
}

/* ===== Info Box ===== */
.info-box {
  background: #f1f1f1;
  border: 2px solid #bdbdbd;
  border-radius: 8px;
  padding: 18px;
}

/* dl直下 dt/dd（PCは2列） */
.info-list {
  margin: 0;
  display: grid;
  grid-template-columns: 170px 1fr;
}

.info-list > dt,
.info-list > dd {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.info-list > dt {
  margin: 0;
  white-space: nowrap;
  font-weight: 600;
}

.info-list > dd {
  margin: 0;
}

.info-list > dt:last-of-type,
.info-list > dd:last-of-type {
  border-bottom: none;
}

/* 事業所概要：左情報＋右地図 */
.info-box--split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  align-items: start;
}

.map-frame {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3; /* PCは縦長 */
}

.map-frame iframe,
.map-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== Footer ===== */
.footer {
  margin-top: 46px;
  text-align: center;
  color: #5a5a5a;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .info-box--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  /* notice */
  .notice {
    padding: 22px 16px;
  }

  .notice__sub {
    margin-bottom: 14px;
  }

  .notice__url a {
    padding: 10px 16px;
    gap: 10px;
    font-size: 13px;
  }
  .header-inner {
    justify-content: center;
  }

  h1.logo {
    text-align: center;
  }
  .notice__url img {
    width: 28px;
  }

  /* SPだけ改行 */
  .sp-br {
    display: inline;
  }

  /* info：スマホは縦並び */
  .info-list {
    grid-template-columns: 1fr;
  }

  .info-list > dt {
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: none;
    white-space: normal;
  }

  .info-list > dd {
    padding-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .info-list > dd:last-of-type {
    border-bottom: none;
  }

  /* map：スマホは横長 */
  .map-frame {
    aspect-ratio: 16 / 9;
  }
}
.footer-privacy {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 10px;
}
