/* ===================================
   MAHO Website Stylesheet
   中東・アジア太平洋ハラル機構
   =================================== */

/* リセット & ベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #2c5530;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --dark-bg: #1a3a1f;
    --light-bg: #f8f6f2;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0ddd8;
    --success-color: #4caf50;
    --error-color: #f44336;
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* スペーシング */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* トランジション */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===================================
   ヘッダー
   =================================== */

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.logo h1 a {
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::before {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 250px;
    padding: 0.5rem 0;
    z-index: 1000;
    margin-top: 0.5rem;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    pointer-events: none;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    /* メインナビのflexスタイルをリセット */
    display: block;
    gap: 0;
    align-items: stretch;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===================================
   ヒーローセクション
   =================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    background: linear-gradient(135deg, #1a3a1f 0%, #2c5530 50%, #8b7355 100%);
}

.hero-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 169, 97, 0.3) 35px, rgba(201, 169, 97, 0.3) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px);
    background-size: 100px 100px;
}

.hero-pattern-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-pattern-bg::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* ヒーロー画像バージョン */
.hero-image {
    background: var(--dark-bg);
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-xl) 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   ボタン
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b89850;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* ===================================
   セクション共通スタイル
   =================================== */

section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ===================================
   特徴セクション
   =================================== */

.features {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   メリットセクション
   =================================== */

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: var(--spacing-lg);
}

.benefits-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-serif);
    min-width: 60px;
}

.benefit-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-text p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   認証対象セクション
   =================================== */

.certification-targets {
    background-color: var(--light-bg);
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.target-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.target-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.target-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.target-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.target-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   CTAセクション
   =================================== */

.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   ニュースセクション
   =================================== */

.news-list {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    gap: 2rem;
    transition: var(--transition);
}

.news-item:hover {
    background-color: var(--light-bg);
}

.news-date {
    font-size: 0.95rem;
    color: var(--text-light);
    min-width: 100px;
}

.news-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-title {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.news-title:hover {
    color: var(--primary-color);
}

/* ===================================
   フッター
   =================================== */

.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-org-name {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-org-name-en {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   ページヘッダー
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   About Page - ミッション・ビジョン
   =================================== */

.mission-vision {
    background-color: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.mv-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mv-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.mv-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: var(--text-dark);
    line-height: 2;
    font-size: 1.05rem;
}

/* ===================================
   About Page - 団体概要
   =================================== */

.org-description {
    margin-top: var(--spacing-lg);
}

.org-description p {
    margin-bottom: 1.5rem;
    line-height: 2;
}

.org-table {
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.org-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.org-table th,
.org-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.org-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    width: 30%;
}

.org-table td {
    color: var(--text-dark);
    line-height: 1.8;
}

.org-table tr:last-child th,
.org-table tr:last-child td {
    border-bottom: none;
}

/* ===================================
   About Page - 強み
   =================================== */

.strengths {
    background-color: var(--light-bg);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.strength-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-color);
}

.strength-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.strength-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.strength-item p {
    color: var(--text-light);
    line-height: 1.9;
}

/* ===================================
   About Page - 沿革
   =================================== */

.timeline {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 100px;
    text-align: right;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--light-bg);
}

.timeline-content {
    flex: 1;
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   About Page - 認証基準
   =================================== */

.standards {
    background-color: var(--light-bg);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.standard-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.standard-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.standard-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.standard-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   About Page - 会長・シャリア委員会
   =================================== */

.leadership {
    background-color: var(--white);
}

.chairman-profile {
    max-width: 900px;
    margin: var(--spacing-lg) auto 3rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

.profile-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--secondary-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.profile-title-en {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.profile-position {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-nationality {
    color: var(--text-dark);
    font-weight: 500;
}

.profile-nationality i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.profile-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.profile-content p {
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.sharia-committee {
    max-width: 1000px;
    margin: 0 auto;
}

.committee-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.committee-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 2;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.committee-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-color);
}

.committee-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.committee-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.committee-card ul {
    list-style: none;
    padding: 0;
}

.committee-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.committee-card li:last-child {
    border-bottom: none;
}

.committee-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===================================
   Services Page - 認証分野
   =================================== */

.service-overview {
    text-align: center;
}

.service-overview .overview-content {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.certification-fields {
    background-color: var(--light-bg);
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.fields-grid-two-column {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.field-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.field-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.field-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    color: var(--white);
    font-size: 3rem;
    padding: 2rem;
    text-align: center;
}

.field-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 1.5rem 2rem 1rem;
    font-weight: 600;
}

.field-description {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
}

.field-details {
    padding: 1.5rem 2rem 2rem;
    background-color: var(--light-bg);
}

.field-details h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.field-details h4:first-child {
    margin-top: 0;
}

.field-details ul {
    list-style: none;
    padding-left: 0;
}

.field-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.field-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ===================================
   Services Page - メリット
   =================================== */

.certification-benefits {
    background-color: var(--light-bg);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.benefit-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.benefit-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-box p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Services Page - 対象地域
   =================================== */

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.regions-gcc {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
}

.region-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.region-card-primary {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05), rgba(201, 169, 97, 0.05));
    border-left: 6px solid var(--secondary-color);
    padding: 3rem;
}

.region-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.region-card h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.region-card ul {
    list-style: none;
}

.region-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
}

.region-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.region-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(201, 169, 97, 0.3);
}

.region-note p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.region-note i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* ===================================
   Services Page - 料金案内
   =================================== */

.pricing-info {
    background-color: var(--light-bg);
    text-align: center;
}

.pricing-content {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.pricing-notes {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.pricing-note {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.pricing-note i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    line-height: 1.8;
}

.pricing-cta {
    margin-top: 2.5rem;
}

/* ===================================
   Process Page - プロセスステップ
   =================================== */

.process-overview {
    background-color: var(--light-bg);
}

.steps-wrapper {
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
}

.step-card {
    background-color: var(--white);
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    color: var(--white);
    padding: 2rem;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.step-number span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.step-number .number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.step-content {
    flex: 1;
    padding: 2.5rem;
}

.step-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-duration {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-duration i {
    margin-right: 0.5rem;
}

.step-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.step-description h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.step-description ul {
    list-style: none;
    padding-left: 0;
}

.step-description li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.step-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.step-note {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.step-note.success {
    background-color: #e8f5e9;
    border-left-color: var(--success-color);
}

.step-note i {
    color: #2196f3;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.step-note.success i {
    color: var(--success-color);
}

/* ===================================
   Process Page - タイムライン
   =================================== */

.process-timeline {
    background-color: var(--light-bg);
}

.timeline-visual {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.timeline-bar {
    display: flex;
    background-color: #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    height: 80px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-phase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem;
    position: relative;
}

.timeline-phase:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 40px 10px;
    border-color: transparent transparent transparent var(--accent-color);
    z-index: 1;
}

.phase-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.phase-duration {
    font-size: 0.8rem;
    opacity: 0.9;
}

.timeline-total {
    text-align: center;
    margin-top: 2rem;
}

.timeline-total p strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.timeline-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Process Page - FAQ
   =================================== */

.faq {
    background-color: var(--light-bg);
}

.faq-intro {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.faq-intro a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.faq-list {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding: 1.5rem;
    background-color: var(--white);
}

.faq-answer p {
    line-height: 1.9;
    color: var(--text-dark);
}

/* ===================================
   Privacy Policy セクション - 新規追加
   =================================== */

.policy-section {
    padding: 2.5rem 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light-bg);
    padding: 3rem;
}

.policy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--secondary-color);
}

.policy-intro .lead {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
}

.policy-item {
    margin-bottom: 3rem;
}

.policy-item h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-item h2 i {
    color: var(--secondary-color);
}

.policy-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-item p,
.policy-item ul {
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.policy-item ul {
    list-style: none;
    padding-left: 1.5rem;
}

.policy-item li {
    position: relative;
    padding: 0.5rem 0;
}

.policy-item li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.contact-box.highlight {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05), rgba(201, 169, 97, 0.05));
    border-left: 6px solid var(--secondary-color);
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box strong {
    color: var(--primary-color);
}

/* ===================================
   Financial Info Page - 新規追加
   =================================== */

.financial-section {
    padding: var(--spacing-xl) 0;
}

.financial-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.financial-intro .lead {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 1rem;
}

.financial-years {
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.financial-year-block {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.year-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.year-title i {
    color: var(--secondary-color);
}

.fiscal-year {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.document-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.doc-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.document-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.document-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.financial-summary {
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.summary-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.summary-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.summary-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.summary-card ul {
    list-style: none;
    padding: 0;
}

.summary-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.summary-card li:last-child {
    border-bottom: none;
}

.summary-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.financial-notes {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.notes-box {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: var(--spacing-lg);
}

.note-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.note-item p {
    line-height: 1.8;
    margin: 0;
}

.financial-contact {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.financial-contact h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05), rgba(201, 169, 97, 0.05));
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid var(--secondary-color);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box strong {
    color: var(--primary-color);
}

/* ===================================
   Contact Page
   =================================== */

.contact-intro {
    background-color: var(--light-bg);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.form-container h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* ===================================
   Contact Form
   =================================== */

.contact-form {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--secondary-color);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    color: var(--success-color);
    border: 1px solid var(--success-color);
    display: block;
}

.form-message.error {
    background-color: #ffebee;
    color: var(--error-color);
    border: 1px solid var(--error-color);
    display: block;
}

/* ===================================
   Contact Sidebar
   =================================== */

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    min-width: 25px;
    flex-shrink: 0;
}

.info-item > div {
    flex: 1;
    min-width: 0;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===================================
   Map Section
   =================================== */

.map-section {
    background-color: var(--light-bg);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.map-placeholder {
    background-color: #e0e0e0;
    height: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.access-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.access-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.access-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.access-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.access-info li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* ===================================
   Privacy Policy
   =================================== */

.privacy-policy {
    background-color: var(--light-bg);
    padding: var(--spacing-xl) 0;
}

.policy-content {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-content p,
.policy-content ul {
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: none;
    padding-left: 1.5rem;
}

.policy-content li {
    position: relative;
    padding: 0.25rem 0;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
}

/* ===================================
   レスポンシブデザイン
   =================================== */

@media (max-width: 1024px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .fields-grid-two-column {
        grid-template-columns: 1fr;
    }
    
    .committee-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* ボディとコンテナ */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* セクション */
    section {
        padding: 3rem 0;
    }
    
    .section-content {
        padding: 0;
    }
    
    /* ナビゲーション */
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
    }
    
    /* モバイルでのドロップダウン */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        padding: 0 !important;
        background-color: var(--light-bg);
        max-height: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease !important;
        pointer-events: auto !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px !important;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        display: block !important;
        width: 100% !important;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 0 0.75rem 1.5rem !important;
        font-size: 0.95rem;
        white-space: normal !important;
        text-align: left !important;
    }
    
    .btn-contact {
        border-radius: 8px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* ヒーロー */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* セクション */
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .page-header p {
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    /* グリッド */
    .features-grid,
    .targets-grid,
    .regions-grid,
    .standards-grid,
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .strengths-grid,
    .fields-grid {
        grid-template-columns: 1fr;
    }
    
    /* ステップカード */
    .step-card {
        flex-direction: column;
    }
    
    .step-number {
        padding: 1.5rem;
    }
    
    /* タイムライン */
    .timeline-bar {
        flex-direction: column;
        height: auto;
        border-radius: 15px;
    }
    
    .timeline-phase {
        width: 100% !important;
        padding: 1.5rem 1rem;
        border-radius: 0;
    }
    
    .timeline-phase::after {
        display: none;
    }
    
    .timeline-phase:not(:last-child) {
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    /* フォーム */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .checkbox-group label {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: auto;
        min-width: 20px;
        max-width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin: 0;
    }
    
    /* お問い合わせフォーム */
    .contact-form {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* お問い合わせページ全体 */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-feature {
        padding: 1.5rem 1rem;
    }
    
    /* サイドバー */
    .contact-sidebar {
        gap: 1.5rem;
    }
    
    .contact-info-box {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .info-item {
        flex-direction: row;
        gap: 0.75rem;
        word-break: break-word;
    }
    
    .info-item i {
        min-width: 30px;
        flex-shrink: 0;
    }
    
    .info-item .info-content {
        flex: 1;
        min-width: 0;
    }
    
    .info-item p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* ニュース */
    .news-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* CTA */
    .cta-buttons {
        flex-direction: column;
    }
    
    /* FAQ、資料ダウンロードなどのカード */
    .contact-feature,
    .download-box {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* ボタン */
    .btn, .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.9rem 1.5rem;
    }
    
    /* マップセクション */
    .map-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .access-info {
        padding: 1.5rem 1rem;
    }
    
    .access-info h3 {
        font-size: 1.3rem;
    }
}

/* ===================================
   ユーティリティクラス
   =================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* アクセシビリティ */
:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ===================================
   認証対象セクション - 2カラムバージョン
   =================================== */

.targets-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
}

.target-card-large {
    padding: 3rem;
}

.target-card-large .target-details {
    margin-top: 1.5rem;
    text-align: left;
}

.target-card-large .target-details ul {
    list-style: none;
    padding: 0;
}

.target-card-large .target-details li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.target-card-large .target-details li:last-child {
    border-bottom: none;
}

.target-card-large .target-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.certification-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
    border-radius: 8px;
}

.certification-note p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.certification-note i {
    color: #ff9800;
    margin-right: 0.5rem;
}

/* ===================================
   認証取得企業セクション
   =================================== */

.certified-companies {
    background-color: var(--light-bg);
    text-align: center;
}

.companies-actions {
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.certified-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.certified-note p {
    margin: 0;
    color: var(--text-dark);
}

.certified-note i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* ===================================
   認証取得企業一覧ページ
   =================================== */

.companies-intro {
    text-align: center;
    padding: var(--spacing-md) 0;
}

.companies-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.companies-filter {
    background-color: var(--light-bg);
    padding: var(--spacing-md) 0;
}

.filter-controls {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 250px;
}

.filter-group label {
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

.filter-select,
.search-input {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.filter-select:focus,
.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.companies-list-section {
    padding: var(--spacing-xl) 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.company-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-color);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.company-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.company-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.company-details strong {
    color: var(--primary-color);
}

.company-status {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-bg);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.active {
    background-color: #e8f5e9;
    color: var(--success-color);
}

.status-badge i {
    font-size: 1rem;
}

.no-results {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p {
    font-size: 1.2rem;
}

.companies-notes {
    background-color: var(--light-bg);
}

.notes-content {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.note-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.note-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.note-item p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===================================
   レスポンシブ - 追加
   =================================== */

@media (max-width: 1024px) {
    .targets-grid-two {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-content-section .hero-description {
        font-size: 1.1rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .company-header {
        flex-direction: column;
        text-align: center;
    }
    
    .company-info {
        text-align: center;
    }
}