@charset "UTF-8";

/* --- 基本設定（カラー・フォント） --- */
:root {
    --color-bg: #FFFFFF;

    /* ▼ ロゴカラー（#031529）に完全に合わせたテーマカラー構成 ▼ */
    --color-text: #031529;   /* メイン文字色 */
    --color-light: #526375;  /* サブテキスト・英語見出し用 */
    --color-border: #E2E7ED; /* 薄い境界線 */

    /* Adobe Fontsの設定 */
    --font-serif: "a-otf-ryumin-pr6n", "Yu Mincho", "游明朝", serif;
    --font-sans: "a-otf-shin-go-pr6n", "Yu Gothic", "游ゴシック", sans-serif;
    --font-en: "futura-pt", "Helvetica Neue", Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

/* --- ファーストビュー（画面いっぱいのヒーローエリア） --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    animation: fadeIn 2.5s ease-out forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ロゴ画像の最適サイズ表示 */
.hero-logo {
    width: 100%;
    max-width: 320px; /* PCでの表示幅 */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 検索用隠しテキスト（h1用） */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 意図しない改行を防ぐためのブロック化 */
.nowrap-block {
    display: inline-block;
    white-space: nowrap;
}

/* --- 下部のコンテンツエリア --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

/* --- セクション共通 --- */
section {
    margin-bottom: 120px;
}
.section-title {
    font-family: var(--font-en);
    font-weight: 600; /* Demi */
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--color-light);
    text-align: center;
    margin-bottom: 60px;
}

/* --- ABOUT US（テキストエリア） --- */
.about-block {
    margin-bottom: 60px;
}
.about-block h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: normal;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 10px;
    margin-bottom: 24px;
    color: var(--color-text);
    letter-spacing: 0.1em;
    text-align: left;
}
.statement {
    font-family: var(--font-serif);
    font-size: 15px;
    line-height: 2.2;
    text-align: justify;
}
.statement p {
    margin-bottom: 1.5em;
}
.statement .list-title {
    margin-top: 2.5em;
    margin-bottom: 0.5em;
}
.statement ul {
    padding-left: 1.5em;
    margin-bottom: 2em;
}
.statement ul li {
    margin-bottom: 0.8em;
    line-height: 1.8;
}

/* 代表者の署名部分 */
.signature {
    margin-top: 40px;
    text-align: right;
    font-family: var(--font-serif);
    line-height: 1.8;
}

/* --- テーブルデザイン共通 --- */
.profile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.profile-table th, .profile-table td {
    padding: 24px 10px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}
.profile-table th {
    width: 25%;
    text-align: left;
    font-weight: normal;
    color: var(--color-light);
}
.profile-table ul, .profile-table ol {
    margin: 0;
    padding-left: 20px;
}
.profile-table li {
    margin-bottom: 8px;
}

/* 役員の会社リンク用装飾 */
.company-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-right: 14px; 
}
.company-link::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 48%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
    color: var(--color-light);
    transition: all 0.3s;
}
.company-link:hover {
    color: var(--color-text);
}
.company-link:hover::after {
    color: var(--color-text);
    transform: translateY(-50%) translateX(2px);
}

/* 役員の会社名表示（リンク無しの場合） */
.company-text {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--color-light);
}

/* 改行調整用のクラス */
.break-sp { display: none; }
.break-pc { display: inline; }

/* --- コンタクト --- */
.contact-info {
    text-align: center;
    font-size: 14px;
}
.mail-text {
    display: inline-block;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    padding: 8px 16px;
    background-color: #F5F7FA;
    border-radius: 4px;
    margin-top: 10px;
}

/* --- フッター --- */
footer {
    font-family: var(--font-en);
    text-align: center;
    font-size: 11px;
    color: var(--color-light);
    margin-top: 100px;
    padding-top: 40px;
}

/* --- スマートフォン対応 --- */
@media (max-width: 600px) {
    .hero-logo {
        max-width: 240px; /* スマホでの表示幅 */
    }
    
    .about-block h3 { font-size: 16px; }
    
    .break-sp { display: block; }
    .break-pc { display: none; }
    
    .profile-table th, .profile-table td {
        display: block;
        width: 100%;
    }
    .profile-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
    .profile-table td {
        padding-top: 0;
        padding-bottom: 24px;
    }
    
    .company-name-wrap {
        display: block;
        line-height: 1.6;
    }
}