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

:root {
    --primary-orange: #FF5722;
    --dark-orange: #E64A19;
    --light-orange: #FF8A65;
    --safety-red: #D32F2F;
    --technical-green: #43A047;
    --inspection-blue: #1E88E5;
    --dark-gray: #1a1a1a;
    --light-gray: #F5F5F5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.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: all 0.3s ease;
}

/* ヘッダー */
.header {
    background-color: var(--dark-gray);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-gr {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-orange);
    letter-spacing: -2px;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
}

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

.nav a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav a:hover {
    background-color: var(--primary-orange);
}

/* タブレット・小型PCでのナビ余白調整 */
@media (max-width: 1100px) {
    .nav ul {
        gap: 0.5rem;
    }
    .nav a {
        padding: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* スマートフォン対応（479px以下） */
@media (max-width: 479px) {
    .logo-image {
        height: 40px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }

    .nav a {
        padding: 0.3rem 0.4rem;
        font-size: 0.75rem;
    }
}

/* ヒーローイメージ */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 80%;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スライド切り替えボタン */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* スライドインジケーター */
.slide-dots {
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 100;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #fff;
}

/* フェードアニメーション */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* セクション共通スタイル */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    border-radius: 2px;
}

.title-icon {
    color: var(--primary-orange);
    font-size: 0.6em;
    margin-right: 0.5rem;
    letter-spacing: -2px;
}

/* 会社概要 */
.about {
    background-color: #f8f9fa;
}

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

.company-info {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.company-info th,
.company-info td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.company-info th {
    background-color: var(--primary-orange);
    color: #fff;
    font-weight: 600;
    width: 30%;
}

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

/* 経営理念 */
.philosophy {
    background-color: #fff;
    padding: 5rem 0 6rem;
}

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

.philosophy-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.philosophy-intro p {
    color: #666;
    line-height: 2;
    font-size: 1.05rem;
}

.philosophy-diagram {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-diagram img {
    max-width: 100%;
    height: auto;
}

.philosophy-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.philosophy-circle:hover {
    transform: scale(1.05);
}

.philosophy-circle.safety {
    background: linear-gradient(135deg, var(--safety-red), #E53935);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.philosophy-circle.technical {
    background: linear-gradient(135deg, var(--technical-green), #66BB6A);
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.philosophy-circle.inspection {
    background: linear-gradient(135deg, var(--inspection-blue), #42A5F5);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.philosophy-circle.center {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    flex-direction: column;
}

.logo-gr-center {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: -3px;
    line-height: 1;
}

.logo-text-center {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 0.3rem;
}

.circle-content {
    text-align: center;
    line-height: 1.3;
}

/* 事業内容 */
.services {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-left: 5px solid var(--primary-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
}

/* 実績写真 */
.gallery {
    background-color: #fff;
    padding: 5rem 0;
}

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

.gallery-item {
    display: flex;
    align-items: stretch;
    position: relative;
    background-color: #fff;
    border: 5px solid var(--primary-orange);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.gallery-image {
    width: 50%;
    min-height: 180px;
    overflow: hidden;
    background-color: #e9ecef;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-caption {
    width: 50%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: #fff;
}

.gallery-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-caption p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* フッター */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-image {
        height: 400px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .philosophy-diagram {
        position: relative;
    }

    .philosophy-circle {
        position: absolute;
    }

    .philosophy-circle.safety {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .philosophy-circle.technical {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .philosophy-circle.inspection {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
    }

    .philosophy-circle.center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-info th,
    .company-info td {
        padding: 1rem;
        display: block;
        width: 100%;
    }

    .company-info th {
        border-bottom: none;
        padding-bottom: 0.5rem;
    }

    .company-info td {
        padding-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 300px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* ========================================
   お問い合わせフォーム
   ======================================== */

/* セクション */
.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* ページタイトル */
.page-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    border-radius: 2px;
}

/* ステップインジケーター */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step.active .step-number {
    background-color: var(--primary-orange);
}

.step.completed .step-number {
    background-color: var(--technical-green);
}

.step-label {
    font-size: 0.9rem;
    color: #666;
}

.step.active .step-label {
    color: var(--primary-orange);
    font-weight: bold;
}

.step-line {
    width: 60px;
    height: 3px;
    background-color: #ccc;
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

/* フォーム */
.contact-form {
    /* max-width: 700px; */
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

/* fieldsetリセット（アクセシビリティ用） */
fieldset.form-group {
    border: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

fieldset.form-group legend.form-label {
    padding: 0;
    margin-bottom: 0.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
}

.required {
    background-color: #D32F2F;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    font-weight: normal;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* エラーメッセージ */
.error-message {
    display: none;
    color: #D32F2F;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #FFEBEE;
    border-radius: 4px;
    border-left: 3px solid #D32F2F;
}

.error-message.show {
    display: block;
}

.form-input.error,
.form-textarea.error {
    border-color: #D32F2F;
    background-color: #FFF8F8;
}

.form-input.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* 入力フィールド */
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-input-short {
    max-width: 200px;
}

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

/* ラジオボタン・チェックボックス */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.radio-label:hover,
.checkbox-label:hover {
    background-color: #f5f5f5;
}

.radio-label input,
.checkbox-label input {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
    accent-color: var(--primary-orange);
}

.radio-text,
.checkbox-text {
    font-size: 1rem;
    color: #333;
}

/* 中央寄せチェックボックス（プライバシーポリシー用） */
.checkbox-label-center {
    justify-content: center;
}

/* プライバシーポリシーボックス */
.privacy-box {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0;
    margin-bottom: 1rem;
    overflow: hidden;
}

.privacy-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding: 1rem;
    margin: 0;
}

.privacy-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ボタン */
.form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 確認画面用テーブル */
.confirm-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.confirm-table th,
.confirm-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.confirm-table th {
    background-color: var(--primary-orange);
    color: #fff;
    font-weight: 600;
    width: 35%;
}

.confirm-table td {
    background-color: #fff;
}

/* 完了画面 */
.complete-message {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* max-width: 700px; */
    margin: 0 auto;
}

.complete-icon {
    width: 80px;
    height: 80px;
    background-color: var(--technical-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.complete-icon::before {
    content: '✓';
    font-size: 2.5rem;
    color: #fff;
}

.complete-message h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.complete-message p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.complete-actions {
    margin-top: 2rem;
}

/* フォーム用レスポンシブ */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .step-indicator {
        gap: 0;
    }

    .step-line {
        width: 30px;
        margin: 0 0.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .confirm-table th,
    .confirm-table td {
        display: block;
        width: 100%;
    }

    .confirm-table th {
        border-bottom: none;
        padding-bottom: 0.5rem;
    }

    .confirm-table td {
        padding-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   採用情報
   ======================================== */

.recruit-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

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

.recruit-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.recruit-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.recruit-job-title {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: #fff;
    padding: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

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

.recruit-table th,
.recruit-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.recruit-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    width: 25%;
    color: #333;
}

.recruit-table td {
    background-color: #fff;
}

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

.recruit-list {
    margin: 0;
    padding-left: 1.2rem;
}

.recruit-list li {
    margin-bottom: 0.3rem;
}

.recruit-list li:last-child {
    margin-bottom: 0;
}

.recruit-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
}

.recruit-sub-title {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.recruit-salary {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.recruit-apply {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.recruit-apply p {
    margin-bottom: 1rem;
    color: #666;
}

/* 採用情報レスポンシブ */
@media (max-width: 768px) {
    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
        padding: 0.8rem 1rem;
    }

    .recruit-table th {
        border-bottom: none;
        padding-bottom: 0.3rem;
        background-color: var(--primary-orange);
        color: #fff;
    }

    .recruit-table td {
        padding-top: 0.5rem;
    }

    .recruit-job-title {
        font-size: 1.3rem;
        padding: 1rem;
    }
}

/* ========================================
   プライバシーポリシー
   ======================================== */

.privacy-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

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

.privacy-intro {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #333;
}

.privacy-section-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.privacy-section-item h2 {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-orange);
}

.privacy-section-item p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.privacy-section-item p:last-child {
    margin-bottom: 0;
}

.privacy-contact {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.privacy-contact h2 {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-orange);
}

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

.privacy-contact-table th,
.privacy-contact-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.privacy-contact-table th {
    width: 120px;
    color: #333;
    font-weight: 600;
}

.privacy-contact-table td {
    color: #555;
}

/* プライバシーポリシーレスポンシブ */
@media (max-width: 768px) {
    .privacy-intro,
    .privacy-section-item,
    .privacy-contact {
        padding: 1.5rem;
    }

    .privacy-contact-table th,
    .privacy-contact-table td {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    .privacy-contact-table th {
        border-bottom: none;
        padding-bottom: 0;
    }
}
