        body {
            font-family: sans-serif;
            margin: 0;
            background-color: #ffffff;
        }
        .container_map {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            padding: 20px;
//	    border-radius: 8px;
//            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .map-container {
            position: relative;
            width: 100%;
            height: 450px;
            margin-top: 20px;
        }
        .map-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }
	.kikan_list {
		width:80%;
		margin:20px auto;
	}
        .pin {
            position: absolute;
            width: 15px;
            height: 15px;
            background-color: #f00;
            border-radius: 50%;
            border: 2px solid white;
            cursor: pointer;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        .pin:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }
        .tooltip {
            visibility: hidden;
            background-color: black;
            color: white;
            text-align: center;
            border-radius: 6px;
            padding: 5px 10px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }
        .tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }
       header h1 {
            color: #333;
            text-align: left;
        }
        main h1, main p {
            text-align: center;
        }
        h2 {
            margin-top: 30px;
        }
        p {
            color: #666;
            text-align: center;
        }
        ul {
            text-align: left;
            margin-top: 20px;
            list-style-type: none;
            padding: 0;
        }
        li {
            background-color: #f9f9f9;
            padding: 15px;
            margin-bottom: 10px;
            border-left: 5px solid #ff7f00;
            border-radius: 4px;
        }
        li strong {
            display: block;
            margin-bottom: 5px;
        }
        .tel-image {
            vertical-align: middle;
        }
        /* ヘッダーメニューの左のオレンジ色を削除 */
        #g_menu_full li, #g_menu li {
            border-left: none;
        }
        .c-list {
            border-left: none !important;
        }