
/* サイトに馴染ませるためのスタイル調整 */
#yado-global-header {
background: #1a1a1a; /* 真っ黒より少し柔らかい高級感のある黒 */
color: #fff;
padding: 0;
border-bottom: 3px solid #d4af37; /* 赤ではなくロゴと同じゴールドに変更 */
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
line-height: 1.5;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 100%;
position: relative;
z-index: 999;
}
.yado-header-inner {
max-width: 1100px; /* サイトのメイン幅に合わせ調整 */
margin: 0 auto;
padding: 12px 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
/* ロゴ部分 */
.yado-header-logo {
color: #fff;
text-decoration: none;
font-weight: 700;
font-size: 1.2rem;
letter-spacing: 0.05em;
display: flex;
align-items: center;
}
.yado-header-logo span {
color: #d4af37; /* ゴールド */
margin-left: 5px;
font-size: 0.9em;
}
/* ナビゲーション部分 */
.yado-header-nav {
display: flex;
gap: 25px;
align-items: center;
}
.yado-header-nav a {
color: #e0e0e0;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 6px; /* アイコンと文字の間隔 */
}
.yado-header-nav a i {
color: #d4af37; /* アイコンもゴールドにして統一感 */
}
.yado-header-nav a:hover {
color: #fff;
opacity: 0.8;
}
/* スマホ対応(レスポンシブ) */
@media (max-width: 768px) {
.yado-header-inner {
flex-direction: column;
padding: 15px 10px;
gap: 15px;
}
.yado-header-logo {
font-size: 1.1rem;
}
.yado-header-nav {
width: 100%;
justify-content: center;
flex-wrap: wrap;
gap: 15px 20px; /* 上下左右の間隔 */
border-top: 1px solid #333;
padding-top: 15px;
}
.yado-header-nav a {
font-size: 0.8rem;
}
}

本ページはプロモーションを含みます。