@charset "utf-8";

.price_table {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.price_table table {
    border-collapse: collapse;
    width: 1000px;
}

.price_table th,
.price_table td {
    font-weight: normal;
    height: 3rem;
    border: 1px solid #ccc;
}

.price_table tr:not(:first-child) {
    border-bottom: #aaa 1px solid;
}

/* table tr:nth-child(odd) {
    background:
        #f1f1f1;
} */

.price_table table tr:first-of-type {
    background: #ffffff;
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.price_table td {
    text-align: center;
}

.price_table s {
    font-size: 0.8rem;
}

.price_table a {
    color: #333;
    text-decoration: none;
    width: 100%;
    height: auto;
    display: block;
    padding-top: 0.5rem;
}

.price_table a:hover {
    background: #ffdaff;
}

.price_table .sumi {
    display: block;
    font-size: 0.8rem;
    padding: 0.5rem;
}

h3 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.add_info {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 6rem;
}



@media screen and (min-width:600px) {
    ul.price_link {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    /* h3 {
        padding-left: 4rem;
    } */
}

ul.price_link {
    display: flex;

    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 4rem;
}

.price_link li {
    list-style: none;
    line-height: 1.5rem;
    width: 49%;
    border-bottom: #aaa 1px solid;
    /* padding: 0 1rem; */
    position: relative;
}

.price_link li:first-child,
.price_link li:nth-of-type(2) {
    border-top: #aaa 1px solid;
}


.price_link a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 1rem 0.5rem;
}

.price_link a:hover {
    background: #ffdaff;
}

.price_link li a::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    position: absolute;
    right: 0.5rem;
    top: calc(50% - 2px);
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg) translateY(-50%);
    color: inherit;
}

@media screen and (min-width:600px) {
    .price_link li {
        width: 47%;
    }

    .price_link a {
        padding: 1rem 2rem;
    }

    .price_link li a::after {

        right: 1rem;

    }
}

.go_cart {
    display: block;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    padding: 1rem;
    border: #000 1px solid;
}

a.go_cart {
    color: #333;
    text-align: center;
    text-decoration: none;
    position: relative;
}


a:hover.go_cart {
    background: #ffdaff;
    border: #ffdaff 1px solid;
}

a.go_cart::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 16px;
    top: calc(50% - 2px);
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg) translateY(-50%);
    color: inherit;
}