/* oyz.php / fee.php ページ固有スタイル */

/* ヘッダーをダーク固定 */
.oyz-body .header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow: visible;
}

/* ヘッダー内コンテナ：ロゴ幅分確保・はみ出し許可 */
.oyz-body .header-bar .header__inner {
  overflow: visible;
  position: relative;
  padding-left: 160px;
}

/* ロゴ：左上に固定配置 */
.oyz-body .header-bar .header__logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 110;
  line-height: 0;
  background: #111;
  border-radius: 0 0 20px 0; /* 右下のみ角丸 */
  border-right: 2px solid #c9a84c;
  border-bottom: 2px solid #c9a84c;
  padding: 0 10px 10px 0;
}

.oyz-body .header-bar .header__logo img {
  height: 130px;
  width: 130px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1100px) {
  .oyz-body .header-bar .header__inner {
    padding-left: 110px;
  }

  .oyz-body .header-bar .header__logo img {
    height: 90px;
    width: 90px;
  }
}

@media (max-width: 639px) {
  .oyz-body .header-bar .header__inner {
    padding-left: 85px;
  }

  .oyz-body .header-bar .header__logo img {
    height: 70px;
    width: 70px;
  }
}

/* ページヒーロー（OYZページ） */
.oyz-page-hero {
  height: 220px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.oyz-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.oyz-page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.oyz-page-hero__en {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  color: rgba(201,168,76,0.85);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.oyz-page-hero__ja {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

/* コンタクトセクション（fee.php anchor） */
#contact {
  scroll-margin-top: 80px;
}
