@charset "UTF-8";

:root {
  --color-text: #13131e;
  --color-border: #ddd;
}

/* Header */
.agent-common .agent-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 156px 0;
}

.agent-common .agent-header-right {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.agent-common .agent-header-left img {
  width: auto;
  height: 45px;
}

.agent-common .service_logo {
  display: flex;
  flex-direction: column;
}

.agent-common .service_logo img {
  width: auto;
  height: 19px;
}

.agent-common .service_logo p.catch {
  padding-left: 0;
  margin-bottom: 5px;
  font-size: 11px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .agent-common .agent-header-inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 32px 0;
  }

  .agent-common header {
    height: auto;
    min-height: unset;
  }

  .agent-common .agent-header-right {
    display: block;
  }

  .agent-common .agent-header-right img {
    width: auto;
    height: 16px;
  }

  .agent-common .agent-header-right .service_logo:last-child img {
    margin-top: 8px;
  }

  .agent-common .service_logo p.catch {
    display: none;
  }

  .agent-common .informationArea {
    margin-top: 20px;
    border-radius: 0;
  }
}

/* Title */
.agent-common .informationArea h1 {
  color: var(--color-text);
  border-color: var(--color-border);
}

/* Service List */
.agent-common .table__wrap {
  max-width: 720px;
  margin: 48px auto 0;
}

.agent-common .service__list {
  padding: 0;
  list-style: none;
}

.agent-common .service__list .list__item {
  padding: 20px;
  margin-bottom: 30px;
  background: #f2f2f2;
  border: solid 2px #c2c2c2;
  border-radius: 5px;
}

.agent-common .service__list p {
  margin-top: 0;
  font-size: inherit;
}

/* -- Table -- */
.agent-common .service__list__table {
  overflow: hidden;
}

.agent-common .service__list__table dt,
.agent-common .service__list__table dd {
  float: left;
  margin-bottom: 30px;
}

.agent-common .service__list__table dt {
  width: 100px;
  clear: both;
  font-weight: bold;
}

.agent-common .service__list__table dd {
  width: calc(100% - 100px);
}

.agent-common .service__list__table dd .classification {
  display: inline-block;
}

/* --Links-- */
.agent-common .service__link__list {
  display: flex;
  justify-content: center;
}

.agent-common .service__link__list a {
  padding: 0 1vw;
  color: blue;
}

/* -- Classification -- */
.agent-common .classification {
  display: block;
  padding: 10px 20px;
  margin-bottom: 5px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  border-radius: 100px;
}

.agent-common .classification:last-of-type {
  margin-bottom: 0;
}

.agent-common .classification.strictly__necessary {
  background: #ccd547;
}

.agent-common .classification.performance {
  background: #2c98da;
}

.agent-common .classification.functional {
  background: #fa8231;
}

.agent-common .classification.targeting {
  background: #fd5b65;
}

.agent-common .classification.social__media {
  background: #f7b731;
}

.agent-common .classification.unknown {
  background: #a5b1c2;
}

.agent-common .classification.onetrust {
  background: #6cc04a;
}

/* Footet */
.agent-common footer {
  background-color: var(--color-text);
}

.agent-common footer .footer-inner ul {
  margin-bottom: 28px;
}

.agent-common footer .footer-inner ul li {
  line-height: normal;
  border-right: 1px solid #fff;
}

.agent-common footer .footer-inner ul li:last-child {
  border: none;
}
