@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-height: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #09182a;
}

img {
  display: block;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  border: none;
  background-color: #eee;
  border-radius: 5.2rem;
  padding: 0.6rem;
  min-height: 4.4rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  transition: background-color 200ms ease-in-out;
  cursor: pointer;
}
button:hover {
  background-color: #ddd;
}

iframe {
  background-color: #eeeeee;
}

.page__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  padding-left: 6%;
  padding-right: 6%;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #ccc;
}

.contents-list:popover-open {
  inset: auto;
  position: fixed;
  bottom: anchor(top);
  left: anchor(left);
  margin-bottom: 2rem;
  border: none;
  border-radius: 0.6rem;
  padding: 1.4rem;
  list-style: none;
}
.contents-list:popover-open .contents__item:not(:last-child) {
  margin-bottom: 1.2rem;
}

.item__link {
  text-decoration: none;
  color: inherit;
  transition: color 100ms;
}
.item__link:hover {
  color: #295f67;
}
.item__link--active, .item__link--active:hover {
  font-weight: bold;
  color: orangered;
}
.item__link span {
  margin-left: 0.8rem;
}

.details {
  display: flex;
  flex-direction: column;
  padding-left: 6%;
  padding-right: 6%;
  padding-top: 6rem;
  gap: 3rem;
}

.td-logo {
  width: 25rem;
}

.project {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: initial;
  margin-bottom: 3.2rem;
}
.project__title {
  color: orangered;
}
.project__subheading, .project__group {
  font-weight: bold;
}

.subheading__value,
.group__value {
  font-weight: normal;
  color: #666;
}

#previews {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  padding-bottom: 12rem;
}

.banner-set {
  display: flex;
  row-gap: 2.4rem;
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
  flex-wrap: wrap;
}
.banner-set__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  padding-left: 6%;
  padding-right: 6%;
  background: white;
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #ccc;
  min-height: 5rem;
}
.banner-set__btn-refresh-all {
  background-color: white;
  padding-right: 1.2rem;
}
.banner-set__btn-refresh-all:hover {
  background-color: #81dfc5;
}

.banner__type {
  display: flex;
  flex-direction: column;
  padding-left: 6%;
  padding-right: 6%;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1.6rem;
}
.banner__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner__refresh {
  min-height: 3.6rem;
}
.banner__refresh p {
  margin-right: 1.2rem;
}
.banner__refresh:hover {
  background-color: #81dfc5;
}
.banner__refresh::before, .banner-set__btn-refresh-all::before {
  content: "";
  display: inline-block;
  background: url("../src/assets/refresh_24dp_333_FILL0_wght400_GRAD0_opsz24.svg") no-repeat;
  width: 2.4rem;
  height: 2.4rem;
}
.banner__variant {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  color: #295f67;
}

.nav__main-menu {
  display: flex;
  gap: 1.6rem;
}
.nav__btn-group {
  position: relative;
}
.nav__contents {
  padding: 1.3rem;
  min-width: 4.8rem;
  display: flex;
}
.nav__contents span {
  margin-left: 1.2rem;
}
.nav__top {
  width: 4.4rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}
.nav__top:hover {
  background-color: #ddd;
}
.nav__notice {
  border-radius: 4rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.4rem;
  text-align: center;
}
.nav__notice--warn {
  background-color: #ffbcbc;
  color: #962828;
}
.nav__notice--info {
  background-color: #bce8ff;
  color: #285a96;
}

#sectionMenuBtn {
  anchor-name: --btn-section-menu;
}

#section-link-list {
  position-anchor: --btn-section-menu;
}

#setPreviewMenuBtn {
  anchor-name: --btn-preview-menu;
}

#preview-set-list {
  position-anchor: --btn-preview-menu;
}/*# sourceMappingURL=styles.css.map */