/*
Theme Name: LUCRIS Foundation Style
*/

/* --- Base --- */
body {
    background-color: #fff;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; margin: 0; padding: 0; }

/* --- Header Construction --- */
.foundation-style-header {
    background: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-inner {
    max-width: 1400px; /* 画像のように横幅を広めに設定 */
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.header-logo img {
    max-width: 280px;
    height: auto;
}
.text-logo-group { display: flex; flex-direction: column; }
.logo-sub { font-size: 11px; color: #666; font-weight: 500; }
.logo-main { font-size: 26px; font-weight: 700; color: #333; letter-spacing: 0.05em; }

/* Nav Area */
.header-nav-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 右寄せ */
}

/* 上段サブメニュー */
.header-top-nav {
    margin-bottom: 12px;
}
.sub-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}
.sub-menu a {
    font-size: 13px;
    color: #444;
}
.sub-menu a:hover { color: #0088cc; }
.arrow-down { font-size: 8px; vertical-align: middle; color: #0088cc; }

/* 下段メインメニュー */
.main-menu-list {
    display: flex;
    gap: 25px;
}
.main-menu-list a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 5px 0;
}
.main-menu-list a:hover { color: #0088cc; }

/* モバイル対応：一旦PC向けに最適化 */
@media (max-width: 1024px) {
    .header-nav-area { display: none; }
    .sp-menu-trigger { display: block; width: 30px; height: 20px; cursor: pointer; position: relative; }
    .sp-menu-trigger span { display: block; width: 100%; height: 2px; background: #333; position: absolute; }
    .sp-menu-trigger span:nth-child(1) { top: 0; }
    .sp-menu-trigger span:nth-child(2) { top: 9px; }
    .sp-menu-trigger span:nth-child(3) { top: 18px; }
}