*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 2rem;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
    width: 100%;
    height: auto;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
}

h1 {
    margin-bottom: 1.5rem;
}

h1 img {
    display: block;
    margin-bottom: 2rem;
}

.btn {
    width: 220px;
    height: 50px;
    margin: 50px auto;
}

.btn a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #333;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    transition: .3s;
}

.btn a:hover {
    transform: translateY(-5px);
}

#index .container {
    margin-top: 50px;
}

#index h1 {
    width: 90%;
    max-width: 380px;
    margin: 0 auto 50px;
    padding: 0;
    border-bottom: none;
}

#index main h2 {
    font-size: min(5vw, 34px);
    text-align: center;
}

#index .shops {
    margin: 50px 0 70px;
    padding: 0;
    list-style: none;
}

#index .shops li {
    max-width: 380px;
    margin: 0 auto 15px;
}

#index .shops li p {
    margin: 8px 0 0;
    font-size: min(3.7vw, 24px);
    text-align: center;
}

#index .links a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 10px auto 0;
    padding: 10px 25px;
    border-radius: 9999px;
    background: #eee;
    color: #333;
    font-weight: bold;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

#index .links a:after {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 1.5rem;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    font-size: 14px;
    transition: right 0.3s;
    content: "";
}

#index .links a:hover {
    background: #333;
    color: #fff;
}

#index .links a:hover:after {
    right: 1rem;
}

@media screen and (min-width: 600px) {
    #index .shops {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
    }

    #index .shops li {
        width: 47.5%;
        margin: 0 0 15px;
    }

    #index .shops li p {
        font-size: min(2.3vw, 24px);
    }
}

@media screen and (min-width: 768px) {
    #index main {
        text-align: center;
    }

    #index .links {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    #index .links a {
        margin: 0;
    }
}

footer {
    padding: 50px 0;
    font-size: 12px;
    text-align: center;
}

.description {
    margin: 0 0 50px;
}

.list {
    position: relative;
    margin: 0;
}

.list::before {
    display: block;
    position: absolute;
    top: 5px;
    left: 15px;
    width: 1px;
    height: 100%;
    background: #333;
    content: "";
}

.list dt {
    margin: 0;
    padding-left: 40px;
    font-weight: bold;
    font-size: 18px;
    text-indent: -40px;
}

.list dt::before {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 50%;
    background: #333;
    content: "";
}

.list dd {
    margin: 0;
    padding: 10px 0 30px 50px;
    font-size: 16px;
}