* {
    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: #f8f9fa;
}

.container {
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-container {
    gap: 10px;
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
.news-item {
    text-decoration: none;
}
#images {
    padding: 70px;
}

/* 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;
}

/*  */
#header-button {
    display: flex;
    align-items: center;
}

#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;
}

/*  */
.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;
    }
}

/* =========== */
.feature-icon img {
    width: 50% !important;
}

.feature-icon {
    display: flex;
    justify-content: center;
}

#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-container {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-item-horizontal {
    display: flex;
    align-items: center;
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.news-item-horizontal:hover {
    background-color: #f9f9f9;
}

.news-item-horizontal:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 14px;
    color: #666;
    width: 100px;
    flex-shrink: 0;
}

.news-category {
    display: inline-block;
    font-size: 12px;
    color: white;
    background-color: #25BEDD;
    padding: 4px 12px;
    border-radius: 5px;
    margin-right: 25px;
    width: 85px;
    text-align: center;
    flex-shrink: 0;
    font-weight: bold;
}

.news-category.announcement {
    color: white;
    background-color: #FF6E07;
}

.news-title {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: normal;
    line-height: 1.5;
    flex-grow: 1;
}

.view-all-button {
    padding: 2%;
}

.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);
}

@media (max-width: 769px) {
    .view-all-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.page-number {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.page-number:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}

.page-number.active {
    background-color: #333;
    color: white;
    border-color: #333;
    font-weight: bold;
}

.page-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.page-arrow:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}

.page-arrow.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.page-arrow.disabled:hover {
    background-color: #fff;
    border-color: #ddd;
}

.page-dots {
    color: #999;
    font-size: 14px;
    margin: 0 8px;
}

.items-per-page {
    font-size: 13px;
    color: #666;
    margin-right: auto;
}

@media (max-width: 768px) {
    .news-item-horizontal {
        flex-wrap: wrap;
        padding: 15px 10px;
    }

    .news-date {
	display: block;
        width: 100%;
        margin-bottom: 5px;
    }

    .news-category {
	display: block;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .news-title {
        width: 100%;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 4px;
    }

    .items-per-page {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        margin-right: 0;
    }

    #blue-text {
        height: 40px !important;
    }

    #blue-text h1 {
        font-size: 28px !important;
    }

    #blue-text span {
        font-size: 28px !important;
    }

    .feature-icon img {
        margin-top: 10%;
    }
}

/* Footer */
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;
}

@media (max-width: 1560px) {
    #navLinks li a {
        font-size: 20px;
    }
}

@media (max-width: 1370px) {
    #navLinks li a {
        font-size: 15px;
    }
}

/* 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 {
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ====================== */