@charset "utf-8";
.outline {
    padding: 20px 0 20px;
    color: black;
}
.outline-title {
    position: relative;
    margin: 50 0 15px;
    padding: 10px;
    font-size: 35px;
    border-color: coral;
    font-family: "Yu Gothic", sans-serif;
    text-align: center;
}
.outline-title:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    border-bottom: solid 2px #000;
    transform: translateX(-50%);
    animation: border-top 0.5s linear forwards;
}
@keyframes border-top {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
.outline-title:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 76px;
    width: 0;
    border-top: solid 2px #000;
    transform: translateX(-50%);
    animation: border-bottom 0.5s linear forwards;
}
@keyframes border-bottom {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
table {
    left: 50%;
    margin: 50px;
    width: 700px;
}
table td {
    text-align: center;
}
table td a:link {
    color: #202020;
}
.outline-subtitle {
    border: 1px solid black;
    padding: 20px 10px;
    font-size: 15px;
    line-height: 50px;
    width: 20%;
}
.outline-text {
    border: 1px solid black;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    font-family: serif;
    line-height: 40px;
    color: #202020;
}
.outline-map {
    border: 1px solid black;
    font-size: 15px;
    font-family: serif;
    line-height: 40px;
}
.google-map {
    margin: 20px;
    text-align: center;
}