@charset "UTF-8";

/* ページタイトルはsite.cssに記載 */
.size,
.color {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.size > div {
  box-sizing: border-box;
  display: flex;
  flex: 1 1 calc(100% / 3);
  flex-direction: column;
  min-width: 0;
  height: auto;
  padding: 16px;
  border: 1px solid var(--mono-color-1);
}

#fontSmall h1 {
  font-size: 1.7rem !important;
}

#fontSmall {
  font-size: 0.8rem !important;
}

#fontLarge h1 {
  font-size: 2.55rem !important;
}

#fontLarge {
  font-size: 1.2rem !important;
}

.color > div {
  width: 50%;
  padding: 16px;
  border: 1px solid var(--mono-color-1);
}

.size a,
.color a {
  display: block;
  min-height: 188px;
  color: var(--mono-color-1);
  text-decoration: none;
}

.size a:hover,
.color a:hover {
  opacity: 0.6;
}

#blue h1,
#yellow h1,
#black h1 {
  border: 1px solid;
}

.white {
  background-color: var(--mono-color-white) !important;
}

.white,
.white * {
  color: var(--mono-color-1) !important;
}

#blue,
#blue * {
  color: #fff !important;
  background: none !important;
  background-color: #00b !important;
  border-color: #fff !important;
}

#yellow,
#yellow * {
  color: #000 !important;
  background: none !important;
  background-color: #ee0 !important;
  border-color: #000 !important;
}

#black,
#black * {
  color: #fff !important;
  background: none !important;
  background-color: #000 !important;
  border-color: #fff !important;
}

@media only screen and (max-width: 1200px) {
  .size,
  .color {
    flex-direction: column;
  }

  .color > div {
    width: 100%;
  }
}
