/* 基本設定とリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center; /* 全体を中央に寄せる */
}

/* ヘッダーの設定 */
.site-header {
    width: 100%;
    max-width: 1100px; /* ヘッダーの最大幅 */
    padding: 40px 20px;
}

.header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start; /* 左から並べる */
    gap: 60px; /* ロゴとメニューの間隔 */
}

/* ロゴのスタイル */
.logo-main {
    font-size: 2.8rem;
    color: #0054A6;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 1.4rem;
    color: #0054A6;
    font-weight: 500;
    margin-top: 2px;
}

/* メニューのスタイル */
.nav-list {
    list-style: none;
    display: flex;
    gap: 45px;
}

.nav-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
    transition: opacity 0.2s;
}

.nav-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.nav-icon {
    width: 18px;
    height: 18px;
    background-color: #0054A6;
    border-radius: 50%;
    position: relative;
}

.nav-icon::after {
    content: "";
    position: absolute;
    top: 38%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-link:hover {
    opacity: 0.6;
}

/* メインコンテンツ（バナー）のスタイル */
.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.banner-container {
    width: 100%;
    max-width: 1000px; /* 画像の最大表示幅 */
    margin-top: 10px;  /* ヘッダーとの隙間を調整 */
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    /* 枠なしのクリーンな表示 */
}

/* レスポンシブ対応 */
@media (max-width: 950px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .logo {
        text-align: center;
    }
    .nav-list {
        gap: 20px;
    }
}