/*************************************************
  RESET & BASE
*************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/*************************************************
  COLOR PALETTE（高級ブランドトーン）
*************************************************/
:root {
    --deep-green: #013220;      /* メイン深緑 */
    --deep-green-light: #024f31;/* 少し明るい深緑 */
    --gold: #a89968;            /* 上質なゴールド */
    --black-text: #1a1a1a;
    --gray-bg: #f8f8f3;         /* 薄い上品な白 */
}

/*************************************************
  HEADER
*************************************************/
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-green);
    letter-spacing: 0.6px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: var(--black-text);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--deep-green-light);
}

/*************************************************
  HERO（深緑×黒×ゴールドの高級トーン）
*************************************************/
.hero {
    background: linear-gradient(135deg, #012a19 0%, var(--deep-green) 100%);
    color: #fff;
    text-align: center;
    padding: 180px 0 140px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.hero-description {
    margin-top: 24px;
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/*************************************************
  BUTTON
*************************************************/
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 白背景×深緑 */
.btn-primary {
    background: #fff;
    color: var(--deep-green);
}

.btn-primary:hover {
    background: var(--gold);
    color: #fff;
}

/* 透明×白枠 */
.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--deep-green);
}

/*************************************************
  SECTION TITLE（ゴールドのアクセントライン）
*************************************************/
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--deep-green);
    position: relative;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 18px auto 0;
}

/*************************************************
  BUSINESS（カードを高級ブランド仕様に）
*************************************************/
.business {
    padding: 100px 0;
    background: var(--gray-bg);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.business-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    text-align: left;
    transition: border-color 0.3s ease;
}

.business-card:hover {
    border-color: var(--deep-green-light);
}

.business-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--deep-green);
    color: #fff;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

/* チェックアイコン付きリスト（事業内容・OEM GATE用） */
.business-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.business-features .fa-li i {
    color: var(--gold);
    font-size: 1.1rem;
}

.business-features li {
    margin-bottom: 14px;
    line-height: 1.8;
    padding-left: 6px;
}

/*************************************************
  OEM GATEとは（白背景）
*************************************************/
#oemgate .business-card h3 {
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 16px;
}

/*************************************************
  VISION（深緑のグラデ）
*************************************************/
.vision {
    background: linear-gradient(135deg, #012a19 0%, var(--deep-green) 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.vision .section-title {
    color: #fff;
}

.vision .section-title::after {
    background: var(--gold);
}

.vision-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.vision-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.stat-item {
    padding: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

/*************************************************
  FAQ
*************************************************/
#faq .business-card {
    border-left: 4px solid var(--deep-green);
}

/*************************************************
  FOOTER（ラグジュアリーブランド仕様）
*************************************************/
.footer {
    background: #01170f; /* 深く黒に寄せた深緑 */
    color: #ffffff;
    padding: 90px 0 50px;
    border-top: 1px solid #033524;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    position: relative;
    padding-bottom: 8px;
}

/* ゴールドの下線（上品） */
.footer-title::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    background: var(--gold);
    margin-top: 10px;
}

.footer-inner p {
    line-height: 1.8;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* メニュー系 */
.footer-inner ul {
    list-style: none;
    padding: 0;
}

.footer-inner ul li {
    margin-bottom: 10px;
}

.footer-inner a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-inner a:hover {
    color: var(--gold);
}

/* コピーライト部 */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #033524;
}

.footer-bottom p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
}


/*************************************************
  COMPANY SECTION（高級ブランド向け）
*************************************************/

.company {
    padding: 120px 0;
    background: #ffffff;
}

.company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch; /* ← ここを変更 */
}

.company-box,
.ceo-box {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 40px 36px;
    border-radius: 6px;
    height: 100%; /* ← 追加 */
}

/* 小見出し */
.company-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 28px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

/* 会社情報のリスト */
.company-list {
    list-style: none;
}

.company-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

.company-list .label {
    width: 120px;
    font-weight: 600;
    color: var(--deep-green);
}

.company-list .value {
    flex: 1;
    line-height: 1.8;
}

.company-list a {
    color: var(--deep-green-light);
    text-decoration: none;
}

.company-list a:hover {
    color: var(--gold);
}

/* 代表プロフィール */
.ceo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-green);
}

.ceo-title {
    color: #555;
    margin-bottom: 8px;
}

.ceo-education {
    color: #777;
    font-style: italic;
    margin-bottom: 24px;
}

.ceo-description {
    line-height: 1.9;
    color: #333;
}

/*************************************************
  RESPONSIVE
*************************************************/
@media (max-width: 900px) {
    .company-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-list li {
        flex-direction: column;
        gap: 6px;
    }

    .company-list .label {
        width: auto;
    }
}
