* {
    font-family: "Noto Sans JP", sans-serif;
}

body {
margin: 0;
font-family: "Noto Sans JP", sans-serif;
background: #000;
color: white;
}

/* ===== ヘッダー ===== */
.header {
text-align: center;
padding: 40px 10px;

background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
}

.header h1 {
font-size: 28px;
font-weight: bold;
letter-spacing: 0;
}

/* ===== 画像 ===== */
.hero img {
width: 100%;
height: auto;
display: block;
}

/* ===== ナビ ===== */
.nav {
background: rgba(0, 0, 0, 0.8);

position: sticky;
top: 0;
z-index: 1000;
}

.nav ul {
display: flex;
margin: 0;
padding: 0;
list-style: none;
}

.nav li {
flex: 1;
}

.nav a {
display: block;
padding: 25px 15px;
text-align: center;
color: white;
text-decoration: none;
transition: 0.3s;
}

.nav a:hover {
background: #333;
}

/* ===== フッター ===== */
.footer {
text-align: center;
padding: 20px;
font-size: 12px;
background: rgba(0, 0, 0, 0.8);
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
.nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr; /* ←２列 */
}

.nav li {
    border: 1px solid #222;  /* 区切りつけると見栄えUP */
}
}



/* ===== ホーム ===== */
.site-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.logo {
    width: 70px;     /*サイズ調整はここ*/
    margin-right: -6px;
    margin-top: 6px;
}


/* ===== 会社概要コンテンツ ===== */
.content {
padding: 50px 20px;
display: flex;
justify-content: center;
}

/* ===== 表 ===== */
.company-table {
width: 100%;
max-width: 700px;
border-collapse: collapse;
background: #111;
color: white;
border: 1px solid #333; /* ← 高級感UP */
}

/* 見出し */
.company-table th {
text-align: left;
padding: 15px;
width: 30%;
background: #1a1a1a;
border-bottom: 1px solid #333;
letter-spacing: 1px; /* ← 追加 */
}

/* 内容 */
.company-table td {
padding: 15px;
border-bottom: 1px solid #333;
letter-spacing: 0.5px; /* ← 追加 */
}

/* 最後の行 */
.company-table tr:last-child th,
.company-table tr:last-child td {
border-bottom: none;
}

/* タイトル */
.about-page .header {
margin-bottom: 40px;
}

/* ナビ */
.about-page .nav {
margin-bottom: 80px;
}

/* コンテンツ */
.about-page .content {
padding: 20px 20px 60px;
}


/* ===== 問い合わせフォーム全体 ===== */
.contact-form {
width: 100%;
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 20px;
}

/* ラベル */
.contact-form label {
color: white;
font-size: 14px;
}

/* 入力欄 */
.contact-form input,
.contact-form textarea {
padding: 12px;
border: none;
background: #1a1a1a;
color: white;
border: 1px solid #333;
}

/* フォーカス */
.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border: 1px solid #555;
}

/* ボタン */
.contact-form button {
padding: 15px;
background: #111;
color: white;
border: 1px solid #333;
cursor: pointer;
}

/* ホバー */
.contact-form button:hover {
background: #222;
}


/* ===== サンクスページ中央寄せ ===== */
.thanks-content {
display: flex;
justify-content: center;
align-items: center;
min-height: 60vh;
}

/* ボックス */
.thanks-box {
text-align: center;
background: #111;
padding: 40px;
border: 1px solid #333;
color: white;
}

/* 見出し */
.thanks-box h2 {
margin-bottom: 20px;
}

/* テキスト */
.thanks-box p {
margin-bottom: 30px;
line-height: 1.6;
}
.small {
    font-size: 14px;
}

/* ボタン */
.back-home {
display: inline-block;
padding: 12px 25px;
background: #111;
border: 1px solid #333;
color: white;
text-decoration: none;
}

.back-home:hover {
background: #222;
}



/* ===== サービスページ導入文 ===== */
.intro {
text-align: center;
color: white;
max-width: 700px;
margin: 0 auto 40px;
}

/* ===== サービス一覧 ===== */
.services {
display: flex;
gap: 20px;
padding: 0 20px 50px;
}

/* カード */
.service-card {
flex: 1;
background: #111;
padding: 25px;
border: 1px solid #333;
color: white;
}

/* タイトル */
.service-card h2 {
margin-bottom: 15px;
font-size: 18px;
}

/* テキスト */
.service-card p {
line-height: 1.6;
}

/* CTA */
.cta {
text-align: center;
padding: 50px 20px;
background: #111;
color: white;
}

/* CTAボタン */
.cta a {
display: inline-block;
margin-top: 20px;
padding: 12px 25px;
border: 1px solid #333;
color: white;
text-decoration: none;
}

.cta a:hover {
background: #222;
}

/* スマホ対応 */
@media (max-width: 768px) {
.services {
flex-direction: column;
}
}


/* ===== 共通ロゴエリア ===== */
.logo-area {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: white;
}

/* 会社名（他ページ用） */
.company-name {
font-size: clamp(20px, 4vw, 40px);
letter-spacing: 2px;
font-weight: bold;
}

/* ページタイトル（お問い合わせとか） */
.page-title {
text-align: center;
font-size: 22px;
margin: 20px 0 40px;
}


.site-title,
.header h1,
.company-name {
    font-size: 28px !important;
    font-weight: bold !important;
    letter-spacing: 0 !important;
}