.map-area-title {
    font-family: "Noto Sans JP" , sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    padding-top: 0 !important;
    vertical-align: middle !important;
}

.map-area-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 1.4em;
    margin-bottom: 1em;
}

.map-area {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px 20px;
    width: 100%;
    min-height: 600px;
    /*margin-bottom: 60px;*/
    padding-bottom: 3em;
   /* border-bottom: solid 1px #DDDDDD;*/
}

#map {
    width: 60%;
    height: 560px;
    border: solid 1px #B1B1B1;
    box-sizing: border-box;
}

#map-search-top {
    display: none;
}

#map-search {
    box-sizing: border-box;
    width: calc(40% - 20px);
}

#map-info {
    display: flex;
    gap: 10px 10px;
    align-self: flex-start;
    flex-flow: column;
}

.map-area .search {
    font-size: 14px;
    margin-bottom: 30px;
}

.map-area .search .search-title {
    margin-bottom: 5px;
}

.map-area .search-title {
    font-size: 14px;
}

.map-area .search .search-description {
    margin-bottom: 5px;
}

.map-input-zip {
    width: 140px;
}

.map-area .map-info-items {
    padding: 6px;
    border-radius: 4px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
}

.map-area .map-info-item {
    border-radius: 4px;
    border: solid 1px #FFFFFF;
    padding: 12px;
    font-size: 14px;
    cursor: pointer;
}

.map-area .map-info-item:hover {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
}

.map-area .map-info-item.selected {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
}

.map-area .changing .map-info-item {
    border: solid 1px #FFFFFF;
    color: #000000;
}

.map-area .changing .map-info-item.selected {
    border: 1px solid #FFFFFF;
}

.map-area .map-info-item .title {
    font-weight: bold;
    margin-bottom: 2px;
    position: relative;
}

.map-area .map-info-item .address {
}

.map-area .map-info-item input[type="radio"] {
    display: none;
    position: absolute;
    top: 2px;
    right: 2px;
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.map-area .map-info-item input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #1a1d25;
    border-radius: 50%;
  }

  /* 白チェックマーク */
.map-area .map-info-item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    right: 7px;
    top: 50%;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-60%) rotate(45deg);
  }

.map-area .map-info-item input[type="radio"]:checked {
    display: inline-block;
}

@media screen and (max-width:1100px) {
    .map-area {
        width: 100%;
        height: auto;
    }

    #map-search-top {
        display: block;
    }
    
    #map-search {
        width: 100%;
    }
    
    #map-search .search {
        display: none;
    }
    
    #map {
        width: 100%;
        height: 400px;
    }
    
    #map-info {
        width: 100%;
    }
}

