@charset "UTF-8";

/* 基本設定 */
:root {
    --primary-color: #0A2463; /* 濃紺：信頼 */
    --accent-color: #C5A059;  /* ゴールド：繁栄 */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Noto Serif JP', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 【変更】ロゴを巨大化するためヘッダーを200pxに拡張 */
    height: 200px; 
}

/* ロゴ画像の調整 */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    /* 【変更】ロゴを今の2倍（160px）に拡大 */
    /* これで文字もしっかり読めるようになります */
    height: 160px; 
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--accent-color);
}

/* スマホ表示時の調整 */
@media (max-width: 768px) {
    .nav { display: none; }
    
    /* スマホでは200pxだと大きすぎて邪魔になるため、少し控えめにします */
    .header-container { height: 100px; }
    .logo img { height: 80px; } 
    
    /* ※もしスマホでももっと大きくしたい場合は、ここを以下のように変えてください */
    /* .header-container { height: 120px; } */
    /* .logo img { height: 100px; } */
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    
    /* 【変更】ヘッダーが200pxになったので、開始位置も200px下げます */
    margin-top: 200px; 
}

/* スマホ時のヒーローセクション開始位置調整 */
@media (max-width: 768px) {
    .hero { margin-top: 100px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 99, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-sub {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #b08d4a;
}

@media (max-width: 768px) {
    .hero-title { font-size: 28px; }
    .hero-text { font-size: 14px; }
}

/* セクション共通 */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.en-title {
    display: block;
    font-size: 14px;
    color: var(--accent-color);
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* グリッドレイアウト */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
}

/* 強みカード */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card p {
    font-size: 14px;
    text-align: left;
}

/* サービスリスト */
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-item {
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
}

.service-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

@media (max-width: 768px) {
    .service-list { grid-template-columns: 1fr; }
}

/* 代表プロフィール */
.profile-box {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-img img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-text h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 5px;
}

.position {
    color: var(--accent-color);
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .profile-box { flex-direction: column; }
    .profile-img img { width: 100%; }
}

/* お客様の声 */
.voice-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.voice-text {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
}

.voice-author {
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

/* 会社概要 */
.company-info {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}

.company-info dt {
    width: 30%;
    padding: 20px;
    background: #fff;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.company-info dd {
    width: 70%;
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    .company-info dt, .company-info dd { width: 100%; display: block; }
    .company-info dt { background: var(--light-bg); }
}

/* お問い合わせ */
.contact-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-white { color: var(--white); }
.text-gold { color: var(--accent-color); }
.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }

.contact-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-info {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.btn-large {
    width: 100%;
    max-width: 400px;
    border: none;
    cursor: pointer;
}

.form-note {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.8;
}

/* フッター */
.footer {
    background-color: #05163D;
    color: rgba(255,255,255,0.6);
    padding: 20px 0;
    font-size: 12px;
}