:root {
  --blue:         #005AAB;
  --blue-dark:    #368AD5;
  --blue-deeper:  #003F78;
  --blue-vivid:   #0A70E3;
  --blue-light:   #EBF4FC;
  --white:        #ffffff;
  --off-white:    #F9F9F8;
  --gray-100:     #D0D0D9;
  --gray-200:     #9EAAB1;
  --gray-400:     #656568;
  --gray-600:     #5F6368;
  --text:         #191A1C;
  --sans:         "Gen Interface JP", Helvetica, "Hiragino Sans", "Noto Sans JP", sans-serif;
  --transition:   0.18s ease;
}

@font-face { font-family: "Gen Interface JP"; src: url("/fonts/gen-interface-jp/GenInterfaceJP-Regular.woff2") format("woff2"), local("Gen Interface JP"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Gen Interface JP-Bold"; src: url("/fonts/gen-interface-jp/GenInterfaceJP-Bold.woff2") format("woff2"), local("Gen Interface JP-Bold"); font-weight: 700; font-display: swap; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); font-size: 18px; line-height: 1.8; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { text-decoration: none; color: inherit; }

.breadcrumb { background: transparent; border-bottom: none; padding: 0; }
.breadcrumb__inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 48px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray-600);
}
.breadcrumb a { color: var(--blue); text-decoration: underline; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb__sep { color: var(--gray-400); font-size: 11px; }
.breadcrumb__cur { color: var(--text); font-weight: 500; }

.page-layout { max-width: 1200px; margin: 0 auto; padding: 40px 48px 56px; }
.page-main { min-width: 0; }
.page-h1 {
  font-size: 48px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 24px;
}

.detail-section { margin-bottom: 48px; }
.detail-section__title {
  font-size: 36px; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em; padding-bottom: 14px; border-bottom: 2px solid var(--text);
  margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}

.contact-box-list { display: flex; flex-direction: column; gap: 16px; }
.contact-box {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-box:hover { border-color: var(--blue-vivid); box-shadow: 0 4px 16px rgba(10,112,227,0.10); }
.contact-box__label { font-size: 24px; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.contact-box__label a { text-decoration: underline; text-underline-offset: 3px; }
.contact-box__label a:hover { color: var(--blue); }
.contact-box__label a i { font-size: 12px; color: var(--gray-400); margin-left: 4px; }
.contact-box__tel { font-size: 30px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }

.office-list { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; }
.office-item { padding-top: 16px; border-top: 1px solid var(--gray-100); }
.office-item:first-child { padding-top: 0; border-top: none; }
.office-item__name { font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.office-item__detail { font-size: 18px; color: var(--text); line-height: 1.9; }
.office-item__icon { width: 16px; color: var(--gray-400); margin-right: 6px; text-align: center; }
.office-item__icon--gap { margin-left: 10px; }

@media (max-width: 768px) {
  .breadcrumb__inner { padding: 10px 20px; font-size: 10px; flex-wrap: wrap; }
  .page-layout { max-width: 100%; margin: 0; padding: 32px 20px; }
  .page-h1 { font-size: 28px; }
  .detail-section__title { font-size: 24px !important; }
  .contact-box { padding: 20px; }
  .contact-box__tel { font-size: 24px; }
  .office-item__name { font-size: 16px; }
  .office-item__detail { font-size: 12px; }
  .contact-box__label { font-size: 16px; }
}
