/* プライスページ専用スタイル - ガイデン風 */

:root {
    --primary-color: #C8E6C9;  /* 薄緑をプライマリカラーに */
    --secondary-color: #81C784;  /* 少し濃いめの緑 */
    --light-color: #E8F5E9;  /* とても薄い緑 */
    --dark-color: #4CAF50;  /* アクセント用の濃い緑 */
    --d-color: #005203;  /* アクセント用の濃い緑 */
    --text-color: #2E7D32;  /* テキストカラーを濃い緑に */
    --text-light: #689F38;  /* 明るい緑色 */
    --white: #fff;
    --transition: all 0.3s ease;
    --kiiro: #F1F8E9;  /* 薄い黄緑に変更 */
    /* シンプルなフォントファミリーに変更 */
    --main-font: 'Helvetica Neue', Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
}





/* パンくずリスト */
.breadcrumb {
    padding: 15px 0;
    background-color: #f8f9fa;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--dark-pink);
}

.breadcrumb span {
    color: var(--dark-pink);
    font-weight: 500;
}

/* ヒーローセクション */
.price-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


.price-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}

.price-hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}


/* プライスページ専用スタイル - ガイデン風 */

/* パンくずリスト */
.breadcrumb {
    padding: 15px 0;
    background-color: #f8f9fa;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--dark-pink);
}

.breadcrumb span {
    color: var(--dark-pink);
    font-weight: 500;
}

/* ヒーローセクション */
.price-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("image/573749984920076545.jpg");
    background-size: cover;
    
}

.price-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.price-hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.image-text-section {
    padding: 100px 60px;
}





/* プランタイトルセクション */
.plans-title-section {
    padding: 60px 0 0;
    text-align: center;
}

.plans-title-section .section-title {
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.plans-title-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .plans-title-section {
        padding: 40px 0 20px;
    }
    
    .plans-title-section .section-title {
        font-size: 2rem;
    }
    
    .plans-title-section .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .image-text-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .plans-title-section .section-title {
        font-size: 1.8rem;
    }
    
    .plans-title-section .section-subtitle {
        font-size: 0.9rem;
    }
}















/* 画像＋テキストセクションのスタイル */
/* 画像＋テキストセクションのスタイル */
.image-below-text-section {
    padding: 80px 0;
    background-color: #f7f8f7;
}

.image-text-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 常に3列にする */
    gap: 30px;
    margin-top: 50px;
}

.image-text-card {
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    /* 追加: レスポンシブなサイズ調整 */
    min-height: 350px; /* 最小高さを設定 */
    height: 100%; /* 高さを親要素に合わせる */
}

/* 画像コンテナもレスポンシブに */
.card-image {
    width: 80%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* 画像が読み込まれる前の背景色 */
}


.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナにフィットさせる */
    display: block;
}





/* カードコンテンツも柔軟に */
.card-content {
    padding: 15px 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%; /* 幅を100%に */
}

.card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem); /* 可変フォントサイズ */
    font-weight: 600;
    color: var(--dark-pink);
    margin-bottom: 15px;
}

.card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem; /* 可変フォントサイズ */
    text-align: left;
}

/* グリッドレイアウトの調整 */
.image-text-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* ギャップを少し小さく */
    margin-top: 50px;
}

/* タブレットサイズでは2列 */
@media (max-width: 1024px) {
    
    
    .image-text-card {
        min-height: 320px;
        padding: 15px;
    }
    
    .card-image {
        max-width: 180px;
    }
}

/* モバイルサイズでは1列 */
@media (max-width: 768px) {
    .image-below-text-section {
        padding: 60px 0;
    }
    
    .image-text-cards {
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .image-text-card {
        min-height: 300px;
 
    }
    
    .card-image {
        max-width: 160px;
    }
    
    .card-content {
        padding: 15px 0 0;
    }

    .card-content h3 {
        font-size: 0.9rem;
    }


    .card-content p {
        font-size: 0.6rem;
    }
}

/* 小さなモバイルデバイス用 */
@media (max-width: 480px) {
    .image-text-cards {
        gap: 1px;
    }
    
    .image-text-card {
        min-height: 280px;
        padding: 15px;
    }
    
    .card-image {
        max-width: 140px;
        margin-bottom: 15px;
    }
    
    .card-content h3 {
        margin-bottom: 10px;
        font-size: 0.6rem;
    }


    .card-content p {
        font-size: 0.6rem;
    }
}


/* 特徴画像のスタイル */
.feature-image-container {
    margin: 40px 300px 30px;
    max-width: 800px;
    text-align: center;
}

.feature-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .feature-image-container {
        margin: 30px auto 20px;
    }
    
    .feature-image {
        max-width: 90%;
    }
}

/* 特徴画像とキャプションのスタイル */
.feature-image-container {
    margin: 40px auto 50px;
    max-width: 800px;
    text-align: center;
}

.feature-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.image-caption {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: #fbfff9;
    border-radius: 8px;
    border-left: 4px solid rgb(47, 108, 0);
}

.image-caption p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .feature-image-container {
        margin: 30px auto 40px;
    }
    
    .feature-image {
        max-width: 90%;
        margin-bottom: 15px;
    }
    
    .image-caption {
        padding: 12px 15px;
    }
    
    .image-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .image-caption {
        padding: 10px 12px;
    }
    
    .image-caption p {
        font-size: 0.95rem;
    }
}





/* 画像とテキストの左右レイアウトを均等にする */
.image-text-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: stretch; /* 高さを揃える */
}

.image-text-item {
    flex: 1; /* 両方のアイテムを同じ幅に */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px; /* 最小高さを設定して揃える */
}

/* 画像コンテナの高さを調整 */
.image-container {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    flex: 1; /* 利用可能なスペースを埋める */
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image {
    width: 100%;
    max-height: 300px; /* 最大高さを制限 */
    height: auto;
    display: block;
    object-fit: cover; /* 画像のアスペクト比を維持 */
}

/* テキストコンテナの高さを調整 */
.text-container {
    flex: 1; /* 利用可能なスペースを埋める */
    display: flex;
    flex-direction: column;
    justify-content: center; /* コンテンツを中央揃え */
    width: 100%;
}

.text-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(97, 96, 96);
    margin-bottom: 15px;
}

.text-container div {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color:rgb(97, 96, 96);
    margin-bottom: 20px;
}

.text-container p {
    color:rgb(97, 96, 96);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    padding-bottom: 5px;
    text-align: left;
}

/* 安否確認セクションの特別なスタイル */
.safety-confirmation-section .image-text-item {
    min-height: 250px; /* 安否確認セクションは少し高く */
}

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

   

    .image-text-item {
        min-height: 200px; /* モバイルでは少し小さく */
        margin-bottom: 30px;
    }
    
    .safety-confirmation-section .image-text-item {
        min-height: 400px;
    }
    
    .section-image {
        max-height: 250px; /* モバイルでは画像を小さく */
    }
}

@media (max-width: 480px) {
    .image-text-item {
        min-height: 150px;
    }
    

    .section-image {
        max-height: 200px;
    }
}








/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container-image-text {
        padding: 40px 20px;
        margin: 40px 15px;
    }
    
    .container-image-text::before {
        width: 16px;
        height: 16px;
        top: 10px;
    }
    
    .container-image-text::after {
        width: 6px;
        height: 12px;
        top: 20px;
    }
}




.text-container p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .text-container p {
        padding-left: 22px;
        font-size: 0.8rem;
    }

    .text-container{
        justify-content: flex-start;
    }
    
    .text-container p::before {
        width: 10px;
        height: 10px;
        top: 0.6em;
    }
}

@media (max-width: 480px) {
    .text-container p {
        padding-left: 20px;
        margin-bottom: 12px;
    }
    
    .text-container p::before {
        width: 8px;
        height: 8px;
        top: 0.5em;
    }
}









/* 2×2画像ギャラリーセクション */
.gallery-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid white;
    position: relative;
    aspect-ratio: 2/1; /* 縦横比を4:3に固定 */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #f8c8dc;
}

.gallery-image {
    width: 100%;
    height: 100%; /* 高さを100%に変更 */
    overflow: hidden;
    position: relative;
    border: 2px solid white;
    box-sizing: border-box;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナにフィットさせる */
    transition: transform 0.5s ease;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .gallery-item {
        aspect-ratio: 16/8; /* モバイルではより横長の比率に */
    }
}



/* ホバーエフェクトの強化 */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 200, 220, 0.1) 0%, rgba(244, 166, 197, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* 枠の装飾を強化 */
.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    pointer-events: none;
    z-index: 2;
}





/* Q&Aセクションのスタイル */
.qa-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.qa-container {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-left: 4px solid var(--dark-pink);
}

.qa-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.qa-question:hover {
    background: #fff5f8;
}

.qa-question h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.qa-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark-pink);
    transition: transform 0.3s ease;
}

.qa-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.qa-answer p {
    padding: 15px 0 25px 0;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* アクティブ状態 */
.qa-item.active .qa-answer {
    max-height: 200px;
    padding: 0 30px;
}

.qa-item.active .qa-toggle {
    transform: rotate(45deg);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .qa-section {
        padding: 60px 0;
    }
    
    .qa-question {
        padding: 20px;
    }
    
  
    .qa-answer p {
        font-size: 0.95rem;
        padding: 0 0 20px 0;
    }
    
    .qa-item.active .qa-answer {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .qa-question {
        padding: 15px;
    }
    
    
    
    .qa-toggle {
        font-size: 1.3rem;
    }
}












/* 既存のスタイルは変更なし */

/* Q&Aセクションのスタイル */
.qa-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.qa-container {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-left: 4px solid var(--dark-pink);
}

.qa-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.qa-question:hover {
    background: #f9fff5;
}

.qa-question h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.qa-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark-pink);
    transition: transform 0.3s ease;
}

.qa-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.qa-answer p {
    padding: 15px 0 25px 0;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* アクティブ状態 */
.qa-item.active .qa-answer {
    max-height: 200px;
    padding: 0 30px;
}

.qa-item.active .qa-toggle {
    transform: rotate(45deg);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .qa-section {
        padding: 60px 0;
    }
    
    .qa-question {
        padding: 20px;
    }
    
          .qa-question h3 {
  font-size: 1.1rem;
    }
    
    .qa-answer p {
        font-size: 0.95rem;
        padding: 0 0 20px 0;
    }
    
    .qa-item.active .qa-answer {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .qa-question {
        padding: 15px;
    }
    
    .qa-question h3 {
        font-size: 0.9rem;
    }
    
    .qa-toggle {
        font-size: 1.3rem;
    }
}




















/* 求人セクション */
.recruitment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.recruitment-content {
    max-width: 900px;
    margin: 0 auto;
     background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--dark-pink);
}

.recruitment-category {
    margin-bottom: 40px;
    padding: 30px;
    border-left: 4px solid var(--dark-pink);
}

.recruitment-category h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-pink);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.recruitment-category h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.recruitment-details ul {
    list-style: none;
    padding-left: 0;
    text-align: left; /* 左寄せを明示的に指定 */
}

.recruitment-details li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    text-align: left; /* 左寄せを明示的に指定 */
}

.recruitment-details li::before {
    content: '•';
    color: var(--dark-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.recruitment-details strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
    text-align: left; /* 左寄せを明示的に指定 */
}

.recruitment-details p {
    color: #6c757d;
    line-height: 1.6;
    text-align: left; /* 左寄せを明示的に指定 */
}

.note {
    font-style: italic;
    color: #888;
    margin-top: 5px;
    text-align: left; /* 左寄せを明示的に指定 */
}

.recruitment-qa {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--dark-pink);
    text-align: left; /* 左寄せを明示的に指定 */
}

.question {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: left; /* 左寄せを明示的に指定 */
}

.answer {
    color: #6c757d;
    line-height: 1.6;
    text-align: left; /* 左寄せを明示的に指定 */
}

.application-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.application-section p {
    margin-bottom: 20px;
    color: #6c757d;
}

.btn-application {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(221, 221, 221);
    color: rgb(130, 130, 130);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(175, 175, 175, 0.3);
}

.btn-application:hover {
    background: #787878;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(122, 122, 122, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .recruitment-section {
        padding: 60px 0;
    }
    
    .recruitment-category {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .recruitment-category h3 {
        font-size: 1.3rem;
    }
    
    .application-section {
        padding: 20px;
    }
    
    .btn-application {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}










/* 画像とテキストの左右レイアウトセクション */
.image-text-side-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.image-text-side-content {
    display: flex;
   text-align: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
   
}

.side-image-container {
    flex: 1;
    text-align: center;
}

.side-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 500px;
}

.side-text-container {
    flex: 1;
}

.side-text-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 20px;
}

.side-text-container p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.side-feature-list {
    list-style: none;
    padding-left: 0;
}

.side-feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #6c757d;
}

.side-feature-list li::before {
    content: '✓';
    color: var(--dark-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .image-text-side-content {
        flex-direction: column;
        gap: 30px;
        
        
    }
    
    .side-text-container h3 {
        font-size: 1.5rem;
    }
    
    .side-feature-list {
        text-align: left;
    }
}






















/* 背景画像セクションのレスポンシブ対応 */
.text-section-before-faq {
    padding: 200px 0;
    background-image: url('image/24641440_l.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    min-height: 400px; /* 最小高さを設定 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* タブレットサイズ */
@media (max-width: 1024px) {
    .text-section-before-faq {
        padding: 150px 0;
        min-height: 350px;
        background-attachment: scroll; /* タブレットではスクロールに変更 */
    }
}

/* モバイルサイズ */
@media (max-width: 768px) {
    .text-section-before-faq {
        padding: 100px 0;
        min-height: 300px;
        background-attachment: scroll; /* モバイルではスクロールに変更 */
        background-size: cover;
        background-position: center 30%; /* モバイルでは位置を調整 */
    }
}

/* 小さなモバイルデバイス */
@media (max-width: 480px) {
    .text-section-before-faq {
        padding: 80px 0;
        min-height: 250px;
        background-size: cover;
        background-position: center 20%; /* さらに位置を調整 */
    }
}

/* 非常に小さなデバイス */
@media (max-width: 360px) {
    .text-section-before-faq {
        padding: 60px 0;
        min-height: 200px;
    }
}

/* 高解像度ディスプレイ用 */
@media (min-width: 1920px) {
    .text-section-before-faq {
        padding: 250px 0;
        min-height: 500px;
    }
}

/* テキストコンテンツのレスポンシブ対応 */
.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.text-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem); /* 可変フォントサイズ */
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* テキストの読みやすさ向上 */
}

.text-description {
    font-size: clamp(1.2rem, 3vw, 2.1rem); /* 可変フォントサイズ */
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* テキストの読みやすさ向上 */
}

.text-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem); /* 可変フォントサイズ */
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight-item i {
    color: white;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* モバイルでのテキスト配置調整 */
@media (max-width: 768px) {
    .text-content {
        padding: 0 20px;
    }
    
    .text-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-item {
        justify-content: center;
    }
}

/* 背景画像の読み込みが遅い場合のフォールバック */
.text-section-before-faq {
    background-color: #f8f9fa; /* 画像読み込み前の背景色 */
}

.text-section-before-faq.loaded {
    background-color: transparent;
}










/* 対応エリアセクションのスタイル */
.service-area-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-area-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 450px; /* 高さを固定 */
}

.area-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.area-info {
    flex: 1;
    padding: 20px;
}

.area-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.area-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.area-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    color: #6c757d;
}

.area-list li::before {
    content: '✓';
    color: var(--dark-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.area-list strong {
    color: #2c3e50;
}

.area-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--dark-pink);
}

.area-note p {
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 1rem;
}

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

.btn-area-contact {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(220, 220, 220);
    border-radius: 30px;
    font-weight: 600;
    color: #747474;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-area-content {
        gap: 30px;
    }
    
    .area-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-area-section {
        padding: 60px 0;
    }
    
    .service-area-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .area-map {
        width: 100%;
        height: 350px;
    }
    
    .area-info {
        width: 100%;
        order: 1; /* 情報を上に移動 */
        padding: 0;
    }
    
    .area-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .area-list li {
        font-size: 1rem;
    }
    
    .btn-area-contact {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-area-section {
        padding: 40px 0;
    }
    
    .area-map {
        height: 500px;
    }
    
    .area-info {
        padding: 0 10px;
    }
    
    .area-list li {
        font-size: 0.9rem;
    }
    
    .area-note {
        padding: 15px;
    }
    
    .area-note p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .area-map {
        height: 250px;
    }
}






/* サービスボタンのスタイル */
.service-button {
    display: inline-block;
    padding: 12px 25px;
    background: rgb(118, 117, 117);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 2px solid var(--dark-pink);
}



.button-container {
    text-align: center;
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .button-container {
        margin-top: 15px;
    }
}





/* 横長画像背景セクション - 上部固定 */
.banner-section {
    padding: 80px 0;
    background-image: url('image/573749984148324778.jpg'); /* 横長画像に変更 */
    background-size: cover;
    background-position: top center; /* 上部を基準に配置 */
    background-repeat: no-repeat;
    background-attachment: fixed; /* 背景を固定 */
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 暗いオーバーレイで文字を見やすく */
    z-index: 1;
}




.banner-section-1 {
    padding: 80px 0;
    background-image: url('image/24010551_s.jpg'); /* 横長画像に変更 */
    background-size: cover;
    background-position: top center; /* 上部を基準に配置 */
    background-repeat: no-repeat;
    background-attachment: fixed; /* 背景を固定 */
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}




.banner-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content {
    max-width: 600px;
    color: white;
    text-align: left;
}

.banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.highlight-item i {
    color: #81C784; /* 緑色のチェックマーク */
    font-size: 1.2rem;
}

/* レスポンシブ対応 - モバイルでは固定背景を解除 */
@media (max-width: 768px) {
    .banner-section {
        padding: 60px 0;
        min-height: 350px;
        text-align: center;
        background-attachment: scroll; /* モバイルではスクロールに */
    }
    
    .banner-content {
        text-align: center;
        max-width: 100%;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-text {
        font-size: 1.1rem;
    }
    
    .banner-highlights {
        align-items: center;
    }
    
    .highlight-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 50px 0;
        min-height: 300px;
        background-attachment: scroll; /* モバイルではスクロールに */
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
}

/* 高解像度ディスプレイ用 */
@media (min-width: 1920px) {
    .banner-section {
        min-height: 500px;
        background-size: cover;
        background-position: top center;
    }
}


















/* ====== 料金表示スタイル（price-block） ====== */
.price-block {
   
    padding: 22px;
    margin-top: 24px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.price-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: left;
}

/* 共通テーブル風 */
.price-table {
    border-left: 4px solid #E2F0DF;
    padding: 14px;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    border-bottom: 1px dashed #f0f0f0;
}

.price-row:last-child {
    border-bottom: none;
}

.price-item {
    font-size: 1rem;
    color: #465a43;
    font-weight: 600;
    flex: 1;
    margin-top: 6px
}

.price-amount {
    font-size: 1.05rem;
    color: #2E7D32;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 20px;
}

/* 補助テキスト */
.price-sub {
    font-size: 0.85rem;
    color: #8aa07a;
    font-weight: 500;
    margin-left: 6px;
}

.price-note {
    margin: 6px 0 0;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

/* 個別テーブルに色をつける（見分け用） */
.price-buying { border-left-color: #A5D6A7; }
.price-safety { border-left-color: #FFE082; }
.price-lecture { border-left-color: #90CAF9; }
.price-escort h4 {
    color: #2c3e50;
    font-weight: 700;
    margin: 18px 0 6px;
}

.price-escort p {
    color: #465a43;
    font-weight: 500;
}

.price-escort .price-note {
    color: #465a43;
}

/* 料金ブロック下のボタン配置 */
.price-contact {
    text-align: right;
    margin-top: 12px;
}

/* モバイル調整 */
@media (max-width: 768px) {
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .price-amount {
        margin-left: 0;
    }

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

    .price-note {
        font-size: 0.8rem;
    }
}








.image-text-side-content {
            display: flex;
           
            margin-bottom: 60px;
            overflow: hidden;
        }
        
        .side-image-container {
            flex: 0 0 40%;
        }
        
        .side-image {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .side-text-container {
            flex: 1;
            padding: 40px;
        }
        
        .side-text-container h3 {
            font-size: 28px;
            margin-top: 0;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .side-text-container p {
            font-size: 16px;
            color: #555;
            margin: 0;
        }
        
        /* 2x2グリッドコンテンツ */
        .grid-section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
        }
        
        .grid-section-title h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .grid-section-title p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .grid-item {
           
            padding: 30px;
           
        }
        
       
        
        .grid-item h3 {
            font-size: 22px;
            margin-top: 0;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .grid-item p {
            font-size: 16px;
            color: #555;
            margin: 0;
        }
        
        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .image-text-side-content {
                flex-direction: column;
            }
            
            .side-image-container {
                flex: 0 0 auto;
            }
            
            .side-text-container {
                padding: 30px 20px;
            }
            
            .grid-container {
                grid-template-columns: 1fr;
            }
        }














/* 42. レザーメニュー表（タッチスクロール対応版） */
.slider-news-touch {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    touch-action: pan-y; /* 垂直スクロールのみ許可 */
}

.news-slides-touch {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding: 20px 0;
    cursor: grab;
}

.news-slides-touch:active {
    cursor: grabbing;
}

.news-slides-touch::-webkit-scrollbar {
    display: none;
}

.news-slide-touch {
    scroll-snap-align: start;
    flex: 0 0 calc(50% - 20px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    user-select: none;
    max-width: 300px; /* 最大幅を300pxに設定 */
    max-height: 450px;
}

.news-slide-touch:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    overflow: hidden;
}

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

.news-slide-touch:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.news-content {
    max-width: 300px; /* 最大幅を300pxに設定 */
    margin: 0 auto; /* 中央揃え */
    padding: 1rem;
}

.news-content h3 {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
}

.news-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #3498db;
}

.news-content p {
    color: #666;
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
}

.news-soldout {
    color: red;
    font-size: 0.6rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #3498db;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.news-nav-touch {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.news-prev-touch,
.news-next-touch {
    pointer-events: auto;
   background-color:transparent;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-slides-touch {
    will-change: transform; /* ハードウェアアクセラレーションを有効化 */
    user-select: none; /* テキスト選択を防止 */
}

.news-slide-touch {
    pointer-events: none; /* 子要素のイベントを無効化 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-slide-touch {
        flex: 0 0 calc(80% - 20px);
    }
    .news-content {
        max-width: 100%; /* 小さい画面では幅を100%に */
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .news-slide-touch {
        flex: 0 0 calc(90% - 20px);
    }
    
    
    .news-content {
        padding: 1rem;
    }
}




















/* other.html専用の青色テーマ */
body.other-page {
    --primary-color: #256180;  /* 薄青をプライマリカラーに */
    --secondary-color: #0d4358;  /* 少し濃いめの青 */
    --light-color: #E8F5FD;  /* とても薄い青 */
    --dark-color: #4CAFDB;  /* アクセント用の濃い青 */
    --d-color: #00527A;  /* アクセント用の濃い青 */
    --text-color: #2E7D99;  /* テキストカラーを濃い青に */
    --text-light: #689FB8;  /* 明るい青色 */
    --kiiro: #F1F8FD;  /* 薄い青に変更 */
}

/* 青色テーマの適用 */
.other-page .qa-item {
    border-left-color: var(--dark-color);
}

.other-page .qa-question:hover {
    background: #f5fbff;
}

.other-page .recruitment-category {
    border-left-color: var(--dark-color);
}

.other-page .recruitment-qa {
    border-left-color: var(--dark-color);
}

.other-page .btn-application {
    background: rgb(221, 221, 221);
    color: rgb(130, 130, 130);
}

.other-page .btn-application:hover {
    background: #787878;
}

.other-page .service-button {
    background: rgb(118, 117, 117);
    border-color: var(--dark-color);
}

.other-page .price-table {
    border-left-color: #E2F0F5;
}

.other-page .price-buying { 
    border-left-color: #A5D6F5; 
}

.other-page .price-safety { 
    border-left-color: #FFE082; 
}

.other-page .price-lecture { 
    border-left-color: #90CAF9; 
}

.other-page .profile-card-icon {
    background: var(--light-color);
}

.other-page .profile-card-icon i {
    color: var(--dark-color);
}

.other-page .coupon-content {
    border-color: var(--secondary-color);
}

.other-page .btn-submit {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
}

.other-page .contact-method i {
    color: var(--dark-color);
}

.other-page .btn-line {
    background: #06C755;
}

.other-page .btn-line:hover {
    background: #05a845;
}







/* other.htmlのロゴスタイル */
.other-page .logo {
    color: var(--d-color); /* 青色テーマに合わせた色 */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 82, 122, 0.2);
}

.other-page .logo-container {
    border-left: 3px solid var(--dark-color);
    padding-left: 10px;
}

/* フッターのロゴも変更 */
.other-page .footer-logo {
    color: var(--d-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}







/* other.htmlのフッタースタイル */
.other-page .simple-footer {
    background: linear-gradient(135deg, var(--d-color) 0%, var(--dark-color) 100%);
    color: white;
}

.other-page .footer-logo {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.other-page .footer-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.other-page .copyright {
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

/* フッターコンテンツのスタイル */
.other-page .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.other-page .footer-info {
    margin-bottom: 20px;
}

/* ホバーエフェクト */
.other-page .simple-footer {
    transition: all 0.3s ease;
}

.other-page .simple-footer:hover {
    background: linear-gradient(135deg, var(--dark-color) 0%, #006699 100%);
}
