
        .section {
            margin-right: -2em;
            margin-left: -2em;
        }

        /* 施設写真スライダー */
        .facility {
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-top: 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }


        /* 施設情報テーブル */
        .facility-info {
            padding: 0;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
        }

        .info-table th,.info-table td{
            line-height: 2;
        }
        .info-table th {
            background: #FFB6C1;
            color: #333;
            padding: 20px;
            font-weight: 600;
            text-align: left;
            vertical-align: top;
            width: 200px;
            border-bottom: 1px solid #FFE3E3;
        }

        .info-table td {
            padding: 20px;
            border-bottom: 1px solid #FFE3E3;
            vertical-align: top;
        }

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

        /* 地図セクション */
        .map-section {
            padding: 0;
            text-align: center;
        }

        .map-container {
            margin: 30px 0;
            border-radius: 15px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        .map-button {
            background: #e04f54;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin: 20px 0;
            transition: transform 0.3s ease;
        }

        .map-button:hover {
            transform: translateY(-2px);
        }

        /* 採用セクション */
        .recruitment-section {
            padding: 0;
            text-align: center;
        }

        .recruitment-content {
            border-radius: 15px;
            margin: 30px 0;
        }

        .recruitment-text {
            line-height: 1.8;
            margin: 20px 0;
            text-align: left;
        }

        .recruitment-button {
            background: #FF9800;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin: 20px 0;
            transition: transform 0.3s ease;
        }

        .recruitment-button:hover {
            transform: translateY(-2px);
        }

        .carousel-slider-access {
            position: relative;
        }

        .carousel-slider-access .swiper-pagination {
            top: auto;
            margin-bottom: -65px;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {

            .section {
                margin-right: -1em;
                margin-left: -1em;
            }

            .info-table th {
                display: block;
                width: 100%;
                padding: 10px 15px;
                font-size: 1.8rem;
            }

            .info-table td {
                display: block;
                padding: 10px 10px 20px 10px;
                font-size: 1.8rem;
            }

            .map-container iframe {
                height: 300px;
            }

            .carousel-slider-access .swiper-pagination {
                margin-bottom: -35px;
            }

        }
