@charset "UTF-8";

.a_block {
    display: block;
}
.heading-number {
    color: var(--dark-gold);
}
.gray_border {
    width: 100%;
    height: 1px;
    background-color: #D7D7D7;
}
.cookie_section {
    white-space: normal;
    padding-left: 25px;
    padding-right: 25px;
}
.cookie_section a.text-link {
  overflow-wrap: anywhere;
}
/* cookie_表 */
.cookie_fee {
    width: 100%;
    vertical-align: middle;
    table-layout: fixed;
    border-collapse: collapse;
}
.cookie_fee thead {
    background: var(--fee-gold);
    color: var(--white);
    height: 50px;
}
.cookie_fee thead th {
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    border-right: 1px solid #E0DECF;
    height: 50px;
}
.cookie_fee thead th:last-child {
    border-right: none;
}
.cookie_fee tbody tr {
    background: var(--beige);
    height: 80px;
    border-bottom: 1px solid #E0DECF;
}
.cookie_fee tbody th,
td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}
.cookie_fee tbody th {
    border-right: 1px solid #E0DECF;
}
.cookie_fee tbody tr td:first-of-type {
    border-right: 1px solid #E0DECF;
}
.cookie-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .cookie_section {
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .cookie_fee {
        min-width: 570px;
    }
    .cookie_fee th,
    td {
        padding: 1rem;
    }
}