/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Arial', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

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

/* ============================================
   Header
   ============================================ */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
}

/* ハンバーガーメニューボタン */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav a:hover,
nav a.active {
    color: #FF6B35;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6B35;
    transition: width 0.3s ease;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(255, 167, 81, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #FF6B35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #FF6B35;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* ============================================
   Section Common Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

/* ============================================
   Services Preview Section
   ============================================ */
.services-preview {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE5D9 0%, #FFF0E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-link {
    color: #FF6B35;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #FF8556;
}

/* ============================================
   Strengths Section
   ============================================ */
.strengths {
    background-color: #fff;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.strength-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.strength-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 20px;
}

.strength-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.strength-item p {
    color: #666;
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    background: linear-gradient(135deg, #FF6B35 0%, #FFA751 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFA751;
}

.footer-section p,
.footer-section a {
    color: #ECF0F1;
    line-height: 2;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #FFA751;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #BDC3C7;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #FF6B35 0%, #FFA751 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* ============================================
   Company Info Section
   ============================================ */
.company-info {
    background-color: #fff;
}

.company-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.company-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.company-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
    margin-bottom: 20px;
}

.company-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.company-table table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 25px 30px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.company-table th {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    font-weight: 700;
    color: #FF6B35;
    width: 200px;
}

.company-table td {
    color: #333;
}

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

/* ============================================
   Mission & Vision Section
   ============================================ */
.mission-vision {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 2;
}

/* ============================================
   Access Section
   ============================================ */
.access {
    background-color: #fff;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.access-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 15px;
    margin-top: 30px;
}

.access-info h3:first-child {
    margin-top: 0;
}

.access-info p {
    color: #666;
    line-height: 2;
}

.map-placeholder {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    border-radius: 15px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #999;
}

/* ============================================
   Services Detail Section
   ============================================ */
.services-detail {
    background-color: #fff;
}

.service-detail-item {
    margin-bottom: 100px;
    padding: 60px 0;
}

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

.service-detail-item:nth-child(even) {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-item.reverse .service-detail-content {
    grid-template-columns: 1fr 1.5fr;
}

.service-detail-item.reverse .service-detail-text {
    order: 2;
}

.service-detail-item.reverse .service-detail-image {
    order: 1;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.service-detail-text h3 {
    font-size: 1.1rem;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-detail-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px;
}

.service-detail-text p {
    color: #666;
    line-height: 2;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 20px;
    background-color: #FFFAF7;
    border-left: 4px solid #FF6B35;
    margin-bottom: 15px;
    border-radius: 5px;
}

.service-features strong {
    color: #FF6B35;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-benefits {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.service-benefits h4 {
    margin-top: 0;
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #666;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
}

.service-detail-image {
    position: sticky;
    top: 100px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Service Flow Section
   ============================================ */
.service-flow {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.flow-number {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FFA751 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.flow-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.flow-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.flow-arrow {
    color: #FF6B35;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 15px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background-color: #fff;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #FF6B35;
    font-size: 0.85rem;
    margin-left: 5px;
}

.optional {
    color: #999;
    font-size: 0.85rem;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.privacy-check {
    margin: 30px 0;
}

.privacy-check label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.privacy-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.privacy-link {
    color: #FF6B35;
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Contact Info Box */
.contact-info-box {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-info-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-phone {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 10px;
}

.phone-hours {
    font-size: 0.9rem;
    color: #666;
}

.contact-email p,
.contact-address p,
.contact-access p {
    color: #666;
    line-height: 2;
}

.contact-email a {
    color: #FF6B35;
    text-decoration: underline;
}

/* ============================================
   Privacy Policy Section
   ============================================ */
.privacy-policy {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
}

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

.privacy-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content p,
.privacy-content ul {
    color: #666;
    line-height: 2;
    margin-bottom: 20px;
}

.privacy-content ul {
    padding-left: 20px;
}

.privacy-content li {
    list-style: disc;
    margin-bottom: 10px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    /* Header */
    header .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .logo img {
        height: 50px;
    }

    /* ハンバーガーメニュー表示 */
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0;
    }

    nav ul li {
        border-bottom: 1px solid #f0f0f0;
    }

    nav a {
        display: block;
        padding: 20px 30px;
        font-size: 16px;
    }

    nav a::after {
        display: none;
    }

    /* オーバーレイ */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero */
    .hero {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .services-grid,
    .strengths-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card,
    .strength-item,
    .mv-card {
        padding: 30px 25px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* Service Detail */
    .service-detail-item {
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .service-detail-content,
    .service-detail-item.reverse .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item.reverse .service-detail-text,
    .service-detail-item.reverse .service-detail-image {
        order: initial;
    }

    .service-detail-image {
        position: static;
    }

    .service-detail-text h2 {
        font-size: 1.6rem;
    }

    .service-detail-text h3 {
        font-size: 1rem;
    }

    .service-detail-text h4 {
        font-size: 1.3rem;
        margin: 30px 0 15px;
    }

    .service-detail-text p {
        font-size: 0.95rem;
    }

    .service-features li {
        padding: 15px;
        font-size: 0.9rem;
    }

    .service-features strong {
        font-size: 1rem;
    }

    /* Flow */
    .flow-steps {
        flex-direction: column;
        gap: 20px;
    }

    .flow-step {
        min-width: 100%;
        padding: 25px 20px;
    }

    .flow-step h3 {
        font-size: 1.2rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    /* CTA Section */
    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Contact */
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .contact-form-wrapper,
    .contact-info-box {
        max-width: 600px;
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* iOS のズーム防止 */
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
        min-height: 48px; /* タッチターゲット */
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 1.05rem;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-info-box h3 {
        text-align: center;
    }

    .phone-number {
        font-size: 1.8rem;
    }

    /* Access */
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-placeholder {
        min-height: 300px;
    }

    /* Page Header */
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Company Info */
    .company-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .company-intro p {
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    /* Company Table */
    .company-table {
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .company-table th {
        padding-bottom: 10px;
        background: linear-gradient(135deg, #FFE5D9 0%, #FFF0E6 100%);
    }

    .company-table td {
        padding-top: 10px;
        padding-bottom: 20px;
    }

    /* Container のパディング調整 */
    .container {
        padding: 0 15px;
    }

    /* Privacy Policy */
    .privacy-content h3 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .privacy-content p,
    .privacy-content ul {
        font-size: 0.95rem;
    }
}
