* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #f1f5f9;
}

.container {
    gap: 10px;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.grid-container {
    gap: 10px;
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

#images {
    padding: 70px;
}

#new-button {
    margin-left: 10px;
    font-size: 19px;
    padding: 2px 10px;
    border-radius: 12px;
    background-color: #FF6E07;
    color: #fff;
    border: none;
    opacity: 0.8;
}

#navLinks li a {
    font-size: 22px;
}

/* ===============artle */
.article-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-header {
    background-color: #1a365d;
    color: white;
    padding: 20px;
    border-bottom: 5px solid #c53030;
}

.article-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    opacity: 0.9;
}

.article-content {
    padding: 25px;
}

.article-content h2 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.article-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.article-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

.sales-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.sales-period {
    background-color: #f7fafc;
    border-radius: 6px;
    padding: 20px;
    border-left: 4px solid #4299e1;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.sales-period img {
    width: 100%;
}

.sales-period h3 {
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 10px;
}

.sales-stats {
    padding: 1%;
    font-size: 19px;
    font-weight: bold;
    color: #2b6cb0;
}

.growth-note {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
    font-style: italic;
}

.highlight {
    color: #c53030;
    font-weight: bold;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
    .sales-data {
        flex-direction: row;
    }

    .sales-period {
        flex: 1;
    }

    .article-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .article-header {
        padding: 15px;
    }

    .article-header h1 {
        font-size: 20px;
    }

    .article-content {
        padding: 20px;
    }

    .sales-stats {
        font-size: 20px;
    }
}

.note {
    margin-top: 30px;
    padding: 15px;
    background-color: #e6fffa;
    border-radius: 6px;
    border-left: 4px solid #38b2ac;
    font-size: 14px;
}

/* ============ */
/* Header & Navigation */
header {
    background-color: #090158;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    align-items: center;
}

.header-container {
    max-width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    color: #e63946;
    margin-right: 10px;
    font-size: 28px;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #e63946;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: #DFE5E9;
    color: white;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-content {
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 40px;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #10B879;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.hero-content h2 {
    font-size: 64px;
    max-width: 80%;
    margin: 2% auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.hero-content p {
    font-size: 24px;
    max-width: 80%;
    margin: 1% auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.hero-badge {
    margin: 3%;
    font-size: 40px;
    padding: 12px 20px;
    border-radius: 30px;
    background: #FF6E07;
    color: #fff;
    border: none;
    opacity: 0.8;
}

.hero-badge:hover {
    background-color: #F5F5F5;
    color: #090158;
    transform: translateY(-5px);
    border-color: white;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f1faee;
}

.hero-description {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #e2e8f0;
    line-height: 1.8;
}

/* Media Icons */
.media-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.media-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.media-icon:hover {
    background-color: rgba(230, 57, 70, 0.9);
    transform: translateY(-5px);
    border-color: white;
}

.media-icon.tv {
    color: #e63946;
}

.media-icon.newspaper {
    color: #457b9d;
}

.media-icon.radio {
    color: #a8dadc;
}

.media-icon.online {
    color: #f1faee;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background-color: white;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* =========== */
.policy-section {
    width: 100%;
    border-radius: 4px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
}

/* メインタイトル - POLICY */
.policy-title {
    font-size: 32px;
    font-weight: 800;
    color: #090158;
    letter-spacing: 2px;
    margin-bottom: 5px;
    line-height: 1;
}

/* サブタイトル - PRポリシー */
.policy-subtitle {
    font-size: 48px;
    color: #090158;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* 日本語サブタイトルの中の「PR」のスタイル */
.pr-text {
    color: #090158;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 区切り線 */
.divider {
    width: 100px;
    height: 3px;
    background-color: #d32f2f;
    margin: 0 auto 40px auto;
}

/* メッセージ */
.policy-message {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* 「成果」の強調スタイル */
.highlight {
    color: #d32f2f;
    font-weight: 700;
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(211, 47, 47, 0.2);
}

/* 装飾要素 */
.decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(211, 47, 47, 0.1);
    border-radius: 50%;
}

.decoration-1 {
    top: 30px;
    left: 30px;
}

.decoration-2 {
    bottom: 30px;
    right: 30px;
}


/* レスポンシブ対応 */
@media (max-width: 1015px) {
    .policy-section {
        padding: 40px 30px;
    }

    .policy-title {
        font-size: 42px;
    }

    .policy-subtitle {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .policy-message {
        font-size: 22px;
    }

    .decoration {
        width: 60px;
        height: 60px;
    }

    .decoration-1 {
        top: 20px;
        left: 20px;
    }

    .decoration-2 {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {

    .policy-section {
        padding: 35px 25px;
    }

    .policy-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .policy-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .policy-message {
        font-size: 20px;
    }

    .divider {
        width: 80px;
        margin-bottom: 30px;
    }

    .decoration {
        width: 50px;
        height: 50px;
    }

    .decoration-1 {
        top: 15px;
        left: 15px;
    }

    .decoration-2 {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 360px) {
    .policy-title {
        font-size: 32px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-message {
        font-size: 18px;
    }
}

/*====== */
#fire {
    display: flex;
    justify-content: center;
    margin-bottom: 2%;
}

/* =========== */
.media-container {
    width: 100%;
    max-width: 1200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* ヘッダー部分 */
.main-header {
    background-color: #090158;
    /* 緑色 */
    color: white;
    padding: 25px 35px;
}

.main-title {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 2カラムレイアウト */
.columns-wrapper {
    display: flex;
    min-height: 600px;
}

/* 左側カラム */
.left-column {
    flex: 1;
    padding: 30px 35px;
    border-right: 1px solid #eaeaea;
}

.company-title {
    font-size: 36px;
    font-weight: bold;
    color: #090158;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #090158;
}

.media-list {
    list-style-type: none;
    margin-bottom: 35px;
}

.media-item {
    padding: 12px 0;
    font-size: 17px;
    position: relative;
    padding-left: 20px;
}

.media-item:before {
    position: absolute;
    left: 0;
    color: #090158;
    font-weight: bold;
}

/* 右側カラム */
.right-column {
    flex: 1.2;
    padding: 30px 35px;
    background-color: #f9f9f9;
}

.event-title {
    font-size: 32px;
    font-weight: bold;
    color: #090158;
    margin-bottom: 15px;
}

.event-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* 赤いエリア - 画像挿入用 */
.image-area {
    background-color: #e60000;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder {
    text-align: center;
    padding: 20px;
}

.image-placeholder-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.image-placeholder-text {
    font-size: 16px;
}

/* 実際の画像用スタイル */
.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    margin-top: 25px;
}

.event-date {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
}

.event-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.photo-caption {
    font-size: 15px;
    color: #777;
    margin: 15px 0;
    font-style: italic;
}

.photo-caption:before {
    content: "【写真】";
    font-weight: bold;
    font-style: normal;
}

.highlight-section {
    background-color: #f0f7f2;
    border-left: 4px solid #090158;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.highlight-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #090158;
    font-size: 21px;
}

.event-media-list {
    list-style-type: none;
    margin-top: 25px;
}

.event-media-item {
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.event-media-item:before {
    position: absolute;
    left: 0;
    color: #2a7c3e;
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .columns-wrapper {
        flex-direction: column;
    }

    .left-column {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }

    .right-column {
        background-color: white;
    }

    /* .image-area {
        height: 150px;
    } */
}

@media (max-width: 768px) {

    .main-header {
        padding: 20px 25px;
    }

    .main-title {
        font-size: 24px;
    }

    .left-column,
    .right-column {
        padding: 25px;
    }

    .company-title,
    .event-title {
        font-size: 20px;
    }

    .media-item,
    .event-media-item {
        font-size: 16px;
    }

    .event-text {
        font-size: 15px;
    }

    /* .image-area {
        height: 130px;
    } */
}

@media (max-width: 480px) {
    .main-header {
        padding: 18px 20px;
    }

    .main-title {
        font-size: 22px;
    }

    .left-column,
    .right-column {
        padding: 20px;
    }

    .company-title,
    .event-title {
        font-size: 18px;
    }

    .event-subtitle {
        font-size: 16px;
    }

    .media-item,
    .event-media-item {
        font-size: 15px;
        padding: 10px 0;
    }

    .event-text,
    .event-date {
        font-size: 14px;
    }

    .image-area {
        height: 110px;
    }

    .image-placeholder-icon {
        font-size: 30px;
    }

    .image-placeholder-text {
        font-size: 14px;
    }
}

/* =========== */
#blue-text {
    background-color: #090158;
    display: flex;
    justify-content: center;
    align-items: center;
}

#blue-text h1 {
    font-size: 48px;
    color: white;
    text-align: center;

}

#blue-text span {
    font-size: 40px;
    color: red;

}

/* ============== */

.news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 120px;
    background-color: #e60012;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.text-content {
    width: 100%;
    font-weight: 900;
    text-align: center;
}

/* Individual item styling */
.line-news .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0.5px;
}

.newsweek .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #000000;
    letter-spacing: 0.5px;
}

.financial-news .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    line-height: 1.1;
}

.shopping-news .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    line-height: 1.1;
}

.seller .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0.5px;
}

.nikkei-business .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #000000;
    line-height: 1.1;
}

.yahoo-japan {
    grid-column: span 2;
    width: 100%;
}

.yahoo-japan .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #000000;
    letter-spacing: 0.5px;
    line-height: 1;
}

.yahoo-japan .yahoo-line {
    font-size: 32px;
    margin-bottom: 5px;
}

.yahoo-japan .japan-line {
    font-size: 26px;
}

.livedoor-news .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0.5px;
}

.ohayou-nippon .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #000000;
    line-height: 1.1;
}

.toyama-news .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #000000;
    line-height: 1.1;
}

.news .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #000000;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 15px;
    }

    .yahoo-japan {
        grid-column: span 1;
    }

    .grid-container {
        display: block;
    }

    .grid-container div {
        padding: 15px;
    }

    #images {
        padding: 20px;
    }

    #blue-text h1 {
        font-size: 28px !important;
    }

    #blue-text span {
        font-size: 28px !important;
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .image-placeholder {
        height: 100px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .yahoo-japan {
        grid-column: span 1;
    }
}

/* ----------------- */
.section-title {
    display: flex;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: #1a2b4c;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title-concept {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #FF6E07;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 4px;
    background-color: #090158;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-text {
    font-size: 22px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 40px;
}

.highlight {
    color: #e63946;
    font-weight: 700;
}

/* Features Section */
.features {
    background-color: #f1f5f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow:
        -2px -2px 0 #D9D9D9,
        2px -2px 0 #D9D9D9,
        -2px 2px 0 #D9D9D9,
        2px 2px 0 #D9D9D9;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    color: #e63946;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 20px;
}

.feature-text {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.cta-text {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #e63946;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: #f1faee;
}

.achievement-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

/* カード共通スタイル */
.achievement-card {
    width: 50%;
    border-radius: 22px !important;
    flex: 1;
    min-width: 300px;
    background-color: #D9D9D9;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    min-height: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* 画像セクション - 左50% */
.image-section {
    border-radius: 22px;
    flex: 0 0 50%;
    background-color: #f2f2f2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    width: 100%;
    height: 100%;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e9e9e9;
    color: #aaa;
    font-size: 14px;
}

.image-placeholder::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-color: #ddd;
    border-radius: 2px;
    margin-bottom: 10px;
}

/* テキストセクション - 右50% */
.text-section {
    text-align: center;
    flex: 0 0 50%;
    padding: 55px 25px;
    display: flex;
    flex-direction: column;
}

/* 千葉システム開発会社様のカード */
.card-1 .company-name {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-1 .company-desc {
    font-size: 20px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.result-container {
    background-color: #DFE5E9;
}

.card-1 .result-container div {
    font-size: 24px;
    color: black;
    padding: 0 35px;
}

.result-container span {
    color: red;
    font-size: 36px;
    padding: 15px;
}

.card-1 .result-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.card-1 .result-value {
    font-size: 22px;
    color: #e53935;
    font-weight: 700;
    line-height: 1.3;
}

/* 物流サービス企業様のカード */
.card-2 .company-name {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-2 .capital-section {
    margin-bottom: 20px;
}

.card-2 .capital-label {
    font-size: 20px;
    color: #777;
    margin-bottom: 5px;
}

.card-2 .capital-value {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

.funding-container {
    background-color: #DFE5E9;
}

.card-2 .funding-container div {
    font-size: 24px;
    color: black;
    padding: 0 35px;
}

.funding-container span {
    color: red;
    font-size: 36px;
    padding: 15px;
}

.card-2 .funding-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.card-2 .funding-value {
    font-size: 22px;
    color: #e53935;
    font-weight: 700;
    line-height: 1.3;
}

.view-all-button {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 70px;
    background-color: #FF6E07;
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover {
    background-color: #444;
}

.view-all-btn:hover::after {
    transform: translateX(5px);
}

.hid-img {
    display: none;
}

.box-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* レスポンシブデザイン */
@media (max-width: 900px) {
    .achievement-card {
        flex-direction: column;
        min-height: auto;
    }

    .image-section,
    .text-section {
        flex: 0 0 100%;
    }

    .image-section {
        min-height: 180px;
    }

    .text-section {
        padding: 20px;
        min-height: 200px;
    }

    .card-1 .company-desc {
        margin-bottom: 20px;
    }

    .image-section img:first-of-type {
        display: none;
    }

    .hid-img {
        display: block;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .achievement-row {
        flex-direction: column;
    }

    .achievement-card {
        min-width: 100%;
    }

    .view-all-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 1560px) {
    #navLinks li a {
        font-size: 20px;
    }
}

@media (max-width: 1370px) {
    #navLinks li a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .text-section {
        padding: 18px;
    }

    .card-1 .company-name,
    .card-2 .company-name {
        font-size: 18px;
    }

    .card-1 .company-desc {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .card-1 .result-value,
    .card-2 .funding-value {
        font-size: 20px;
    }

    .card-2 .capital-value {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 13px;
    }
}

/* Footer */

.ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer {
    background-color: #090158;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.footer-contact {
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact strong {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #a0aec0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 1205px) {
    .nav-links li {
        margin: 10px;
    }

    .logo h4 {
        font-size: 17px;
    }

    .logo img {
        width: 35%;
        padding-right: 0;
    }
}

@media screen and (max-width: 1015px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #214079;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .hero {
        padding: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 18px;
    }

    .mission-text {
        font-size: 20px;
    }

    .media-icons {
        gap: 20px;
    }

    .media-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .section-title {
        font-size: 30px;
    }

    .mission-text {
        font-size: 18px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }
}

/* Animation for scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ====================== */