*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0
}

html {
    font-size: 52.5%;
}


body {
    font-size: 1.6rem;
}

,
html,
body {
    height: 100%
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%
}

input,
button,
textarea,
select {
    font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word
}

#root,
#__next {
    isolation: isolate
}

.inner {
    /* width: 90vw;
    margin: 0 auto; */
}
.table__wrap{
    width: 90vw;
    margin: 0 auto;
    position: relative;
    /* left: 50%;
    transform: translateX(-50%); */
}

.header {
    overflow: hidden;
    padding: 50px 0 20px;
}

.language_switch {
    float: right;
}

#language_select {
    padding: 10px;
    width: 150px;
    border: none;
    background: #f7f7f7;
}

.main {
    padding: 5px 0;
}


.overfllow__auto {
    overflow: auto;
}

.modal {
    opacity: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    transition: opacity 0.3s;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.open {
    opacity: 1;
    z-index: 999;
}

.modal__content {
    background-color: #ffffff;
    width: 50%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    padding: 50px;
    position: relative;
    text-align: left;
    max-height: 80vh;
    overflow-y: auto;

}

.icon__button {
    cursor: pointer;
    color: #6f6f6f;
    transform: scale(1);
    transition: all 0.3s;
}

.icon__button:hover {
    transform: scale(1.3);
}

.modal__close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.intro {
    /* text-align: center;
    width: 65%; */
    margin: 0 auto 30px;
}

.intro__title {
    font-size: 16px;
    margin-bottom: 5px;
}

.intro__text {}

.service__table {
    width: 100%;
    border-collapse: collapse;
}

.service__table thead th {
    background: #e5e5e5;
    padding: 10px;
}

.service__table tbody td {
    padding: 10px 20px;
    background: #fafafa;
    border-bottom: solid 2px #d7d7d7;
}

.service__table tbody td.no__border {
    border-bottom: none;
}

.service__table tbody td.text__center {
    text-align: center;
}

.service__table tbody td img {
    height: 20px;
    width: auto;
    margin: 0 auto;
}

.classification {
    padding: 10px 20px;
    color: #fff;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    border-radius: 100px;
    line-height: 1;
    margin-bottom: 5px;
}

.classification:last-of-type {
    margin-bottom: 0;
}

.classification.strictly__necessary {
    background: #ccd547;
}

.classification.performance {
    background: #2c98da;
}

.classification.functional {
    background: #fa8231;
}

.classification.targeting {
    background: #F18E38;
}

.classification.social__media {
    background: #f7b731;
}

.classification.unknown {
    background: #a5b1c2;
}

.classification.onetrust {
    background: #6cc04a;
}

.modal__title {
    padding-bottom: 10px;
    border-bottom: solid 2px #f3f3f3;
}

.modal__company__names {
    font-size: 2rem;
    padding-right: 20px;
}

.modal__service_names {
    font-size: 2.4rem;
}

.modal__sub__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 30px;
}

.modal__in__content {
    border-radius: 5px;
    border: solid 2px #c2c2c2;
    background: #f2f2f2;
    padding: 10px;
    min-height: 100px;
}

footer {
    text-align: center;
    padding: 10px 0;
    border-top: solid 2px #d3d3d3;
}

@media screen and (min-width: 969px) {
    .hidden__pc {
        display: none;
    }

    footer {
        /* position: absolute; */
        bottom: 0;
        width: 100%;
    }
}

@media screen and (max-width: 968px) {
    .table__wrap{
        width: 100%;
        margin: 0 auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    body {
        font-size: 13px;
    }
    .hidden__sp {
        display: none;
    }

    .inner {
        width: 100%;
        padding: 0 15px;
    }

    .intro {
        width: 100%;
    }

    .intro__text {
        text-align: left !important;
    }

    .service__list {
        padding: 0;
        list-style: none;
    }

    .service__list .list__item {
        border-radius: 5px;
        border: solid 2px #c2c2c2;
        background: #f2f2f2;
        padding: 20px;
        margin-bottom: 30px;
    }

    .service__list__table {
        overflow: hidden;
    }

    .service__list__table dt,
    .service__list__table dd {
        float: left;
        margin-bottom: 30px;
    }

    .service__list__table dt {
        font-weight: bold;
        clear: both;
        width: 100px;
    }

    .service__list__table dd {
        width: calc(100% - 100px);
    }

    .service__list__table dd .classification {
        display: inline-block;
    }

    .service__link__list {
        display: flex;
        justify-content: center;
    }

    .service__link__list a {
        color: blue;
        font-size: 15px;
        padding: 0px 1vw;
    }

}