/* 1. リセットと基本設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
* {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 0px;
}
body {
    background-color: #F5F5F5;
    color: #333333;
    line-height: 1.8;
}

/* 2. コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. ヘッダー */
.header {
    background-color: transparent;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}
.header.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px; /* ロゴサイズ(80px)に合わせて調整 */
}
.logo-link {
    text-decoration: none;
}
.logo {
    width: 105px;
    height: 80px;
    vertical-align: middle;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-list li a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s;
}
.nav-list li a:hover, .nav-list li a.active {
    color: #005B99;
}
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #005B99;
    cursor: pointer;
}

/* 4. ヒーローセクション */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    margin-top: 100px; /* ヘッダーの高さに合わせて修正 */
    background-repeat: no-repeat;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 10px;
}
.hero-content .btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #005B99;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
}
.hero-content .btn:hover {
    background-color: #003F66;
    transform: scale(1.05);
}

/* 5. セクション */
.section {
    padding: 80px 0;
}
.section#contact-form {
    margin-top: 100px; /* ヘッダーの高さに合わせて修正 */
}
.section-title {
    font-size: 36px;
    color: #005B99;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}
.section-title h3 {
    font-size: 24px;
    color: #005B99;
    margin: 60px 0 20px 0;
}
.position-left{text-align: left;
}
.highlight-section {
    background-color: #E8E3D9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}
.highlight-section h3 {
    font-size: 28px;
    color: #005B99;
    margin-bottom: 20px;
    text-align: center;
}
.highlight-section p {
    text-align: left;
}
.highlight-section ul {
    list-style: none;
    padding: 0;
}
.highlight-section li {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.highlight-section li i {
    color: #005B99;
    margin-right: 10px;
    font-size: 24px;
}
.flow-section {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}
.flow-section h3 {
    font-size: 24px;
    color: #005B99;
    margin-bottom: 15px;
    text-align: center;
}
.flow-section ol {
    padding-left: 20px;
    text-align: left;
}
.flow-section li {
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}
.checkup-page #checkup-institutions .content ol {
    padding-left: 1em;
}
.faq-section {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}
.faq-section h3 {
    font-size: 24px;
    color: #005B99;
    margin-bottom: 15px;
    text-align: center;
}
.faq-section dl {
    text-align: left;
}
.faq-section dt {
    font-size: 18px;
    font-weight: 700;
    color: #005B99;
    margin-bottom: 10px;
}
.faq-section dd {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}
.cta-section {
    text-align: center;
    margin-top: 40px;
}
.cta-section .btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #005B99;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 20px;
}
.cta-section .btn:hover {
    background-color: #003F66;
    transform: scale(1.05);
}
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.index-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.grid-item-home {
    background-color: #FFFFFF;
    margin-top: 1.5em;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.grid-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.grid-item h4 {
    font-size: 18px;
    color: #005B99;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 700;
    grid-column: 1;
    text-align: center;
}
.grid-item .content {
    text-align: left;
    grid-column: 2;
}
/* PC版のvaccine-pageの枠線は維持 */
.vaccine-page .grid-item .content {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.grid-item .content p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
}
.grid-item-home .content p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
}
.grid-item .content ul {
    list-style: none;
    padding: 0;
}
.grid-item-home .content ul {
    list-style: none;
    padding: 0;
}
.grid-item .content ul li {
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}
.grid-item-home .content ul li {
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}
.grid-item .content .btn-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.grid-item .content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #005B99;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
}
.grid-item-home .content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #005B99;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
}
.grid-item .content .btn:hover {
    background-color: #003F66;
    transform: scale(1.05);
}
.grid-item-home .content .btn:hover {
    background-color: #003F66;
    transform: scale(1.05);
}
#business-vaccine-support .btn-container, #business-overseas-checkup .btn-container, #vaccine-general .btn-container, #vaccine-jica .btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.grid-item.unitas-section .content p, .grid-item.greeting-section .content p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.grid-item.unitas-section .content, .grid-item.greeting-section .content {
    background: linear-gradient(to bottom, #F5F5F5, #E8E3D9);
    border: 1px solid #E8E3D9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-group .detail-data-group .detail-data-item .border {
    border-bottom: 2px solid #ddd;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}
.detail-row .detail-data .border {
    border-bottom: 2px solid #ddd;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}
.grid-item.company-section .content a {
    color: #005B99;
    text-decoration: none;
}
.grid-item.company-section .content a:hover {
    text-decoration: underline;
}
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.company-table {
    min-width: 500px;
}

/* ★★★ PC/タブレット版でのボタン表示修正 ★★★ */
.index-page .grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.index-page .grid-item {
    display: block;
    text-align: center;
}
.index-page .grid-item h3 {
    font-size: 24px;
    color: #005B99;
    margin-bottom: 15px;
}
.index-page .grid-item img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}
.index-page .grid-item .content {
    text-align: center;
}
.index-page .grid-item .btn-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.inspection-items {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
    gap: 15px;
}
.inspection-items li {
    background-color: #F5F5F5;
    color: #333333;
    padding-top: 0px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 0px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 300;
    text-align: center;
    border: thin solid #C4C3C3;
}

.checkup-page .grid, .vaccine-page .grid, .business-page .grid, .contact-form .grid {
    grid-template-columns: 1fr;
}
.checkup-page .grid-item, .business-page .grid-item, .contact-form .grid-item {
    display: grid;
    grid-template-columns: 30% 70%; 
    gap: 20px;
    align-items: start;
    padding: 30px;
}
.vaccine-page .grid-item {
    display: grid;
    grid-template-columns: 20% 80%; 
    gap: 20px;
    align-items: start;
    padding: 30px;
}
.checkup-page .grid-item .content, .vaccine-page .grid-item .content, .business-page .grid-item .content, .contact-form .grid-item .content {
    text-align: left;
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 6px;
}
.contact-form .grid-item .content {
    text-align: center;
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 6px;
}
.contact-form .grid-item h3 {
    font-size: 18px;
    color: #005B99;
    font-weight: 700;
    text-align: center;
    grid-column: 1;
}
.business-page .grid-item .subheading {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #333333;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form .checkbox-group {
    margin-bottom: 20px;
    text-align: left;
}
.contact-form .checkbox-group label {
    font-weight: 400;
}
.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #005B99;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.contact-form button[type="submit"]:hover {
    background-color: #003F66;
    transform: scale(1.02);
}
.contact-form .required {
    color: red;
    margin-left: 5px;
    font-size: 12px;
}
.footer {
    background-color: #E8E3D9;
    color: #333333;
    padding: 40px 0;
    text-align: center;
}
.footer p {
    margin: 10px 0;
}
.footer a {
    color: #005B99;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.social-links a {
    color: #005B99;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #003F66;
}
/*　予約ページ */
.header-reservation {
    background-color: transparent;
    width: 100%;
    background-color: #E8E3D9;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
    margin-bottom: 0px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.container-reservation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.highlight-section-reservation {
    background-color: #E8E3D9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: left;
    margin-top: 30px;
}
.section-reservation {
    padding: 0px 0;
}
.reservation {
    width: 100%;
    height: 100%;
    border-width: 0%;
    border-style: none;
}
.font-color-red{
    color: #C84C4E
    
}
/*会社概要*/
.about-page .company-section .company-details {
    /* PC版のテーブル全体を囲む枠線 */
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

/* ------------------------------------- */
/* A. シンプルな2列の行 */
/* ------------------------------------- */
.about-page .company-section .detail-row {
    display: flex; /* Flexboxで2列にする */
    border-bottom: 1px solid #F0F0F0; /* 各行の下線 */
}
.about-page .company-section .detail-row:last-child {
    border-bottom: none; /* 最後の行の下線は削除 */
}

/* thの代わり: 項目名 (.detail-header) */
.about-page .company-section .detail-header {
    background-color: #005B99;
    font-weight: 700;
    width: 30%; /* thの幅を30%に */
    flex-shrink: 0;
    border-right: 1px solid #ccc; /* 縦の区切り線 */
    padding: 10px;
    display: flex;
    align-items: center; /* 垂直方向の中央 */
    justify-content: center; /* 水平方向の中央 */
    text-align: center;
    color: #FFFFFF;
}

/* tdの代わり: 内容 (.detail-data) */
.about-page .company-section .detail-data {
    width: 70%; /* tdの幅を70%に */
    padding: 10px;
    border-bottom: thin solid #E0E0E0;
}

/* ------------------------------------- */
/* B. グループ化された行 */
/* ------------------------------------- */
.about-page .company-section .detail-group {
    display: flex; /* Flexboxで2列にする */
    border-bottom: 1px solid #F0F0F0; /* グループ全体の下線 */
}
.about-page .company-section .detail-group:last-child {
    border-bottom: none; /* 最後のグループの下線は削除 */
}

/* rowspanの代わり: 項目名 (.detail-header-span) */
.about-page .company-section .detail-header-span {
    background-color: #005B99;
    font-weight: 700;
    width: 30%; /* thの幅を30%に */
    flex-shrink: 0;
    border-right: 1px solid #ccc; /* 縦の区切り線 */
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center; /* 垂直方向の中央 */
    justify-content: center; /* 水平方向の中央 */
    color: #FFFFFF;
    /* 高さを detail-data-group に合わせる（Flexboxの自動調整機能を使用） */
}

/* tdの内容全体を囲むラッパー */
.about-page .company-section .detail-data-group {
    width: 70%; /* td全体の幅を70%に */
}

/* tdの各行（detail-data-item） */
.about-page .company-section .detail-data-item {
    padding: 10px;
    /* 各アイテムの下線を追加し、元のtrの罫線を再現 */
    border-bottom: 1px solid #F0F0F0; 
}
.about-page .company-section .detail-data-item:last-child {
    border-bottom: thin solid #F0F0F0;
}

.about-page .company-section .detail-data a,
.about-page .company-section .detail-data-item a {
    color: #005B99;
    text-decoration: none;
}
/* 1024px以下のPC/タブレット向け修正（PC版のレイアウトを維持） */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    .nav {
        min-height: 80px;
    }
    .logo {
        width: 80px;
        height: 60px;
    }
    .nav-list {
        gap: 15px;
    }
    .hero {
        height: 70vh;
        margin-top: 81px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .section {
        padding: 60px 0;
    }
    .section#contact-form {
        margin-top: 81px;
    }
    .section-title {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .grid {
        gap: 20px;
    }
    .grid-item {
        padding: 25px;
    }
    .index-page .grid {
        grid-template-columns: 1fr;
    }
    /* ★★★ タブレット (769px-1024px) のグリッドレイアウトをPC版に揃える ★★★ */
    .checkup-page .grid-item, .business-page .grid-item, .contact-form .grid-item {
        display: grid;
        grid-template-columns: 30% 70%; 
    }
    .vaccine-page .grid-item {
        display: grid;
        grid-template-columns: 20% 80%; 
    }
    /* ★★★ ここまで ★★★ */
    .checkup-page .grid-item h4, .business-page .grid-item h4, .vaccine-page .grid-item h4, .contact-form .grid-item h3 {
        grid-column: 1;
        text-align: center;
    }
    .checkup-page .grid-item .content, .vaccine-page .grid-item .content, .business-page .grid-item .content, .contact-form .grid-item .content {
        grid-column: 2;
        padding: 10px;
    }
    .grid-item.company-section .content table {
        min-width: unset;
    }
    .grid-item.company-section .content th {
        width: 30%;
    }
}

/* ★★★ モバイル版 (@media (max-width: 768px)) のみ変更を適用 ★★★ */
@media (max-width: 768px) {
    /* モバイル共通レイアウト調整 */
    .header {
        background-color: #FFFFFF;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        width: 100%; 
    }
    .nav {
        min-height: 60px;
        position: relative;
        display: flex; 
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        width: 70px;
        height: 50px;
    }
   .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: #FFFFFF; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
        padding: 0;
        z-index: 999;
    }
    .nav-list.active {
        display: flex;
    }
    .nav-list li {
        text-align: left;
        width: 100%;
        padding: 0 20px;
        margin: 2px 0;
    }
    .nav-list li a {
        display: block; 
        padding: 5px 0;
        text-decoration: none;
        color: #333333;
        font-weight: 700;
        transition: background-color 0.3s, color 0.3s;
        border-bottom: 1px solid #F0F0F0;
    }
    
    .nav-list li a:hover, 
    .nav-list li a.active {
        background-color: #E6F3FF; 
        color: #005B99;
        padding-left: 10px;
        border-radius: 3px;
    }
    
    .hamburger {
        display: block;
    }
    .hero {
        height: 60vh;
        margin-top: 61px;
    }
    .section {
        padding: 40px 0;
    }
    .section#contact-form {
        margin-top: 61px;
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    .checkup-page .grid-item,
    .vaccine-page .grid-item, 
    .business-page .grid-item,
    .contact-form .grid-item {
        display: flex; 
        flex-direction: column;
        grid-template-columns: 100%; 
        gap: 15px;
        padding: 20px; 
    }
    .checkup-page .grid-item h4,
    .vaccine-page .grid-item h4,
    .business-page .grid-item h4,
    .contact-form .grid-item h3 {
        grid-column: auto !important;
        text-align: left;
        margin-top: 0;
    }
   .grid-item img {
        display: block; 
        margin-left: auto; 
        margin-right: auto;
    }
    .checkup-page .grid-item .content,
    .vaccine-page .grid-item .content, 
    .business-page .grid-item .content,
    .contact-form .grid-item .content {
        grid-column: auto !important;
        width: 100%;
        padding: 15px;
        background-color: #F5F5F5;
        border-radius: 6px;
    }
    /* vaccine-page固有のコンテンツ枠線リセット（モバイル版のみ） */
    .vaccine-page .grid-item .content {
        border-left: none !important;
        border-bottom: none !important;
    }
    /* ★★★ ワクチンリスト（ボタン表示）をモバイル向けに調整 ★★★ */
    .inspection-items li {
        font-size: 12px; 
        padding: 8px 12px;        
    }
    /*----------------------------------------------------------------------*/

    /* ★★★ 会社概要テーブル（.company-section）のth幅均一化修正 (ここから) ★★★ */
    /* 1. 全体の枠線を解除 */
    .about-page .company-section .company-details {
        border: none;
        border-radius: 0;
    }

    /* 2. シンプルな行（detail-row）をカード化 */
    .about-page .company-section .detail-row {
        flex-direction: column; 
        border: 1px solid #CCCCCC; 
        border-radius: 4px;
        margin-bottom: 15px; 
        overflow: hidden; 
        border-bottom: none; 
    }

    /* 項目名 (.detail-header) */
    .about-page .company-section .detail-header {
        width: 100%; 
        padding: 10px 15px;
        background-color: #005B99; 
        border-right: none;
        border-bottom: 1px solid #CCCCCC; 
        color: #ffffff; 
        display: flex;
        align-items: center; 
        justify-content: center; 
        text-align: center; 
    }

    /* 内容 (.detail-data) */
    .about-page .company-section .detail-data {
    width: 100%;
    padding: 10px 15px;
    background-color: #FFFFFF;
    border-bottom-width: thin;
    }


    /* 3. グループ化された行（detail-group）をカード化 */
    .about-page .company-section .detail-group {
        flex-direction: column; 
        border: 1px solid #CCCCCC; 
        border-radius: 4px;
        margin-bottom: 15px; 
        overflow: hidden; 
        border-bottom: none;
    }

    /* rowspanの代わり: 項目名 (.detail-header-span) */
    .about-page .company-section .detail-header-span {
        width: 100%; /* 横幅を100%に強制 */
        padding: 10px 15px;
        background-color: #005B99; 
        border-right: none;
        border-bottom: 1px solid #CCCCCC; 
        color: #FFFFFF;
        display: flex;
        align-items: center; 
        justify-content: center; 
        text-align: center; 
    }

        .about-page .company-section .detail-data-group {
        width: 100%;
        background-color: #FFFFFF;
    }

    /* tdの各行（detail-data-item） */
    .about-page .company-section .detail-data-item {
        padding: 10px 15px;
        border-bottom: 1px solid #F0F0F0; /* 各アイテムの下線 */
    }
    .about-page .company-section .detail-data-item:last-child {
    border-bottom-style: none;
    border-width: medium;
    }
    
    /* ★★★ 会社概要テーブル（.company-section）のth幅均一化修正 (ここまで) ★★★ */

    
    /* Greeting　氏名部分対応*/
    .greeting-page h3,
    .greeting-page p.name { 
        content: "\A";
        white-space: pre-wrap;
    }
    
    .highlight-section h3 {
        font-size: 24px;
    }
    .highlight-section li {
        font-size: 16px;
    }
    .flow-section h3, .faq-section h3 {
        font-size: 20px;
    }
    .flow-section li, .faq-section dt, .faq-section dd {
        font-size: 16px;
    }
    .grid-item {
        padding: 20px;
    }
    .grid-item .content p, .grid-item .content ul li {
        font-size: 16px;
    }
    
    .grid-item.unitas-section img, .grid-item.greeting-section img {
        max-width: 200px;
        margin: 0 auto 15px;
    }
    .highlight-section {
        padding: 20px;
    }
    .flow-section {
        padding: 20px;
    }
    .faq-section {
        padding: 20px;
    }
    .cta-section .btn {
        font-size: 16px;
        padding: 12px 25px;
    }
    .footer {
        padding: 20px 0;
    }


.service-grid .grid .margin-top{
    margin-top: 20px;
}
.margin-left{
    margin-left: 1em;
}
/* 7. フッター */
.footer {
    background-color: #E8E3D9;
    color: #333333;
    padding: 40px 0;
    text-align: center;
}
.footer p {
    margin: 10px 0;
}
.footer a {
    color: #005B99;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.social-links a {
    color: #005B99;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #003F66;
}
}
