.top-flow-wrapper {
    background: var(--main-color);
    padding: 90px 0 75px;
}

@media(max-width:992px) {
    .top-flow-wrapper {
        padding: 40px 0 75px;
    }
}

.top-flow-inner {
    width: 1200px;
    margin: 0 auto;
}

@media(max-width:992px) {
    .top-flow-inner {
        max-width:768px;
        padding: 0 10px;
        width: 100%;
    }
}

.top-flow-contents {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

@media(max-width:992px) {
    .top-flow-contents {
        flex-direction: column;
        margin-top: 25px;
    }
}

.top-flow-content {
    background: #FFF;
    width: 50%;
    padding: 20px 15px;
}

@media(max-width:992px) {
    .top-flow-content {
        width: 100%;
    }
}

.top-flow-titles {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.top-flow-title {
    font-weight: bold;
    display: flex;
    align-items: flex-end;
}

.top-flow-title-caption {
    margin-left: 5px;
}

.top-flow-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
}

.top-flow-info {
    color: var(--txt-color-1);
    font-weight: bold;
}

@media(max-width:992px) {
    .top-flow-info {
        text-align: center;
        font-size: 20px;
        margin-top: 15px;
    }
}

.top-flow-address {
    font-weight: bold;
    margin-top: 5px;
}

.top-flow-map-link {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg-color-1);
    width: 100px;
    text-align: center;
    border-radius: 50px;
}

@media(max-width:992px) {
    .top-flow-map-link {
        top: -10px;
    }
}

.top-flow-map-link-txt {
    position: relative;
    color: #FFF;
    width: 100%;
    display: block;
	z-index:100;
}

.top-flow-map-link-txt:hover {
    color: #FFF;
}

.top-flow-map-link-txt::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 70%;
    transform: translateY(-50%);
    background: url("../../img/common/arrow2.png");
    background-repeat: no-repeat;
    width: 15px;
    height: 100%;
    background-size: 100%;
}

@media(max-width:992px) {
    .top-flow-map-link-txt::after {
        right: 10px;
    }
}

.top-flow-links {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 20px;
}

@media(max-width:992px) {
    .top-flow-links {
        flex-wrap: wrap;
    }
}

.top-flow-link {
    background: var(--bg-color-1);
    color: #FFF;
    width: 23%;
    height: 80px;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 5px;
}

@media(max-width:992px) {
    .top-flow-link {
        width: 48%;
        font-size: 18px;
        padding: 10px;
    }
}

.top-flow-link:hover {
    color: #FFF;
}

.top-flow-link.line {
    background: var(--bg-color-2);
}

.top-flow-link.reserve {
    background: var(--bg-color-3);
    justify-content: start;
}

.top-flow-link span {
    display: block;
    font-weight: bold;
}

@media(max-width:992px) {
    .top-flow-link span {
        font-size: 24px;
    }
}

.top-flow-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.top-flow-icon.top {
    top: 5px;
    right: 5px;
}

.top-flow-icon.bottom {
    bottom: 5px;
    right: 5px;
}

.top-flow-store-map {
    margin: 15px 0;
    width: 100%;
    height: 160px;
}

.top-flow-store-map-link {
    background: var(--main-color);
    width: 100%;
    display: block;
    text-align: center;
    color: #FFF;
    border-radius: 10px;
    /* padding: 10px 0; */
}

@media(max-width:992px) {
    .top-flow-store-map-link {
        font-size: 16px;
        padding: 5px 0;
    }
}

.top-flow-store-map-link:hover {
    color: #FFF;
}

.top-flow-lists {
    margin-top: 30px;
    background: var(--bg-color-4);
    padding: 30px 20px;
}

.top-flow-lists-title {
    text-align: center;
    font-weight: bold;
    border-bottom: 4px solid var(--main-color);
    padding-bottom: 15px;
}

.top-flow-list {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

@media(max-width:992px) {
    .top-flow-list {
        flex-direction: column;
        gap: 25px;
    }
}

.top-flow-list-content {
    font-weight: 500;
}

@media(max-width:992px) {
    .top-flow-list-content {
        text-align: center;
    }
}

.top-flow-list-content-arrow {
    font-weight: 500;
    position: relative;
    padding-right: 12px;
}

.top-flow-list-content-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 14px solid var(--main-color);
}

@media(max-width:992px) {
    .top-flow-list-content-arrow::after {
        right: initial;
        left: 48%;
        transform: rotate(90deg) translateX(-50%);
    }
}