@charset "utf-8";

/* ヘッダー */
header{
  display: flex;
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  padding: 0 1rem;
  flex-direction: row;
  align-items: center;
  background-color: var(--color-white);
}
@media (min-width:961px){
}
.header--transparent {
  background-color: transparent;
}

/* ヘッダーの下線 */
header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2.5%; /* 左右の余白を10%に設定 */
  width: 95%; /* 下線の幅を全体の80%に設定 */
  border-bottom: var(--border-thin);
  pointer-events: none; /* 下線がクリックを妨げないようにする */
  /*気休め程度のズーム対策*/
  transform: translateZ(0); /* GPU層に移してピクセルパーフェクト描画 */
  will-change: transform; /* ブラウザに最適化のヒントを与える */
}

/* ブランディングロゴ */
.header-branding {
  /* outline: 1px solid #ff0000; */
  display: inline-flex;
  flex-direction: column;
  align-items: center; /*縦方向に中央揃え*/
  text-align: left;
  flex-shrink: 0; /* 他要素に押されて、横幅を縮小しない */
  max-width: 450px;
  max-height: 565px;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
@media (max-width:767px) {
  .header-branding {
    width: 80vw;
    max-width: 450px;
  }
}

/* ロゴ */
.header-branding__logo {
}
/* タイトル */
.header-branding__text {
  margin: 0px auto;
}
.header-branding__text p {
  /* outline: 1px solid #ff0000; */
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.0;/* 行の高さを最小に */
}
.header-branding__text p > a {
  font-size: clamp(12px, 3vw, 20px);
  margin: 0;
  padding: 0;
  border: 0;
  color: black;
  text-decoration-line: none;
  font-weight: 700;
}
