.l-header
{
    position: relative;
    top: unset;
    z-index: 1 !important;
}
.methods
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.methods > *
{
    margin: 0;
    padding:0;
    width: 48%;
}
.car dl,
.car ul,
.bus dl,
.bus ul
{
    list-style: none;
}
.car dt,
.bus dt
{
    margin: 0;
    position: relative;
    padding-left: 4vw;
    width: 100%;
    box-sizing: border-box;
}
.car dt:before
{
    content:"";
    display: flex;
    width: 3vw;
    height: 1.5vw;
    background-size: 100%;
    background-image: url("/images/icon/car-black.png");
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.bus dt:before
{
    content:"";
    display: flex;
    width: 4vw;
    height: 1.5vw;
    background-size: contain;
    background-image: url("/images/icon/bus.png");
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.car dd,
.bus dd
{
    margin: 1em 0 0 0;
    padding: 0;
}
.car li,
.bus li
{
    background-color: #ECF1F4;
    border-radius: 10px;
    padding: 1em 10px;
    margin:  0 0 20px 0;
    position: relative;
    text-align: center;
}
.bus li:nth-of-type(n+2):before
{
    background: #4BB1D9;
    top: -20px;
    content: '';
    display: block;
    height: 20px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 10px;
}
.bus a
{
    color: #4BB1D9;
    display: inline-block;
    line-height: 1;
    padding: 0;
    position: relative;
}
.bus a:after
{
    background-image: url("/images/icon/link-blue.png");
    background-size: 100%;
    content:"";
    display: flex;
    height: 10px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
}




#parking-map
{
    border: 1px solid #999;
    box-sizing: border-box;
    height: 450px;
    width: 100%;
}

/* 写真ピン全体 */
.photo-pin {
  position: relative;
  width: 64px;
  height: 82px; /* 丸(64) + 尖り分(18) */
  transform: translateZ(0); /* ちょい保険 */
}

/* 丸い写真部分 */
.photo-pin .photo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  position: absolute;
  top: 0;
  left: 0;
}

/* 下の尖り（三角） */
.photo-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 18px solid #fff; /* 白枠っぽい尖り */
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.35));
}

/* 尖りの内側（写真色を少し残すための小三角） */
.photo-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 14px solid #e0e0e0;
}

/* 地点名ラベル（写真の上） */
.photo-pin .photo-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  pointer-events: none; /* クリック邪魔しない */
}

/* 番号マーカー（丸＋数字） */
.number-marker
{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1976d2;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* 大きめ黒ドット */
.black-dot
{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}




.parking-map-container
{
    position: relative;
}
.parking-legend
{
    background: rgba(255,255,255,0.7);
    border: 1px solid #fff;
    bottom: 30px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 10px 10px;
    position: absolute;
    right: 10px;
    width: 300px;
    z-index: 77777;
}
.parking-legend:hover
{
    background: rgba(255,255,255,1);
}
.parking-legend dd,
.parking-legend dt
{
    margin: 0;
    padding: 0;
}
.parking-legend dt
{
    align-items: center;
    display: flex;
    justify-content: center;
    width: 35%;
}
.parking-legend dd
{
    font-size: 12px;
    padding: 10px 0;
    width: 65%;
}
.parking-legend dt .number-marker
{
    font-size: 12px;
    height: 24px;
    width: 24px;
}
.parking-legend dt .black-dot
{
    content: '';
    height: 14px;
    width: 14px;
}




.availability-container
{
    background: #f9f9f9;
    box-sizing: border-box;
    padding: 40px;
}
.availability-container h2
{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.availability-container h2::after
{
    display: none;
}
.availability-container h2 span
{
    font-size: 14px;
    font-weight: normal
}
.availability-container ul
{
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.availability-container li
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.availability-container ul:nth-of-type(1) li
{
    width: calc((100% - 40px) / 2);
}
.availability-container ul:nth-of-type(2) li
{
    margin-top: 40px;
    width: calc((100% - 80px) / 3);
}
.availability-container li:nth-child(n+2)
{
    margin-left: 40px;
}
.availability-container li > *
{
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    font-weight: 900;
    overflow: hidden;
}
.availability-container .number
{
    background: #4BB1D9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    font-size: 24px;
    padding: 10px 0;
}
.availability-container .availability
{
    background: #12262F;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #fff;
    font-size: 40px;
    padding: 20px 0;
}
.availability-container li.full .availability { color: #F26262; }
.availability-container li.busy .availability { color: #ff66ff; }
.availability-container li.open .availability { color: #04B8A3; }
.availability-container .comment
{
    line-height: 1.5;
    margin-top: 40px;
    text-align: center;
}

@media all and (max-width: 768px) {
                .parking-legend
                {
                    background: #fff;
                    padding: 5px 5px;
                    width: 240px;
                }
                .parking-legend dt
                {
                    width: 30%;
                }
                .parking-legend dd
                {
                    font-size: 10px;
                    padding: 5px 0;
                    width: 70%;
                }
                .availability-container
                {
                    margin-bottom: 20px;
                    padding: 0;
                }
                .availability-container h2
                {
                    margin-bottom: 20px;
                }
                .availability-container ul:nth-of-type(1) li
                {
                    width: calc((100% - 20px) / 2);
                }
                .availability-container ul:nth-of-type(2) li
                {
                    margin-top: 20px;
                    width: calc((100% - 40px) / 3);
                }
                .availability-container li:nth-child(n+2)
                {
                    margin-left: 20px;
                }
                
}