/* ヘッダー */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}
.wp-block-site-logo {
  width: 200px;
  height: auto;
}
.wp-container-core-group-is-layout-ce155fab {
  gap: 0.5rem;
}
@media screen and (max-width: 600px) {
  .wp-container-core-group-is-layout-ce155fab {
    gap: 0.1rem;
  }
}

.wp-container-core-group-is-layout-8d5a28f0 {
  margin-top: -100px !important;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 12px 30px rgba(0, 0, 0, 0.08);
  strong {
    font-weight: 700;
    font-size: 3rem;
  }
}
@media screen and (max-width: 1400px) {
  .wp-container-core-group-is-layout-8d5a28f0 {
    margin-top: -50px !important;
  }
}
@media screen and (max-width: 1200px) {
  .wp-container-core-group-is-layout-8d5a28f0 {
    margin-top: -20px !important;
    margin-left: 1rem;
    margin-right: 1rem;
    strong {
      font-weight: 700;
      font-size: 2rem;
    }
  }
}
/* カラム順序反転
   Gutenberg の .wp-block-columns は max-width: 781px で縦積みになる。
   .col_reverse を追加すると、スマホ表示時に上下が逆順になる。
   使い方：エディターでカラムブロックに追加CSSクラス「col_reverse」を設定 */
@media (max-width: 781px) {
  .col_reverse.wp-block-columns,
  .col_reverse .wp-block-columns {
    flex-direction: column-reverse;
  }
}

/* パンくず */
.yoast-breadcrumbs {
  max-width: 1448px;
  margin: 0 auto;
  padding: 80px 24px 0;
  font-size: 13px;
  a {
    color: #555;
    text-decoration: none;
  }
}

/* フッター */
footer {
  margin-top: 0;
}
.site-footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 0;
  font-size: 13px;
  color: #555;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 24px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-brand {
  min-width: 200px;
  flex-shrink: 0;
}

.footer-logo img {
  display: block;
  margin-bottom: 12px;
  width: 200px;
}

.footer-brand address {
  font-style: normal;
  line-height: 1.8;
  font-size: 12px;
  color: #555;
}

.footer-brand small {
  font-size: 11px;
  color: #888;
}

.footer-nav {
  min-width: 120px;
  flex: 1;
}

.footer-nav__title {
  font-size: 13px;
  font-weight: bold;
  color: #222;
  margin: 0 0 12px;
  padding-bottom: 8px;
  padding-top: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.footer-nav__subtitle {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 6px;
}

.footer-nav ul li a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
}

.footer-nav ul li a:hover {
  color: #1a6cbf;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    width: 100%;
  }
}
