@charset "utf-8";

/*============

common.css

=============*/

/* 共通 ------------------------------ */
h2.catTitle {
	margin-bottom: 0;
	font-size: min(2.2rem,8vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #f6f6f6;
  border-bottom: 2px solid;
  border-image: linear-gradient(45deg, #70778b 0%, #ccc 100%) 1;
}

h2.catTitle::after {
  content: "";
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9em;
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  width: fit-content;
  color: #cbccd2;
  letter-spacing: -.04rem;
}
#comRoad h2::after { content: "ROAD"; }
#comPark h2::after { content: "PARK"; }
#comSports h2::after { content: "SPORTS"; }
#comFactory h2::after { content: "FACTORY"; }
#comCommerce h2::after { content: "COMMERCE"; }
#comEvent h2::after { content: "EVENT"; }
#comBillboard h2::after { content: "BILLBOARD"; }

figure.catPict {
	margin: 0;
  background: linear-gradient(135deg, #739ad0 50%, #5a81c1 50%);
  aspect-ratio: 1 / 1;
}

figure.catPict img {
  width: 100%;
  height: auto;
  transition: transform .5s ease;
}

a:hover figure.catPict img {
  transform: scale(1.15);
}



/* PC -------------------------------- */
@media(min-width: 769px) {
}

/* スマホ横、タブレット大 ------------ */
@media(max-width: 1279px) {
}

/* タブレット・スマホ ---------------- */
@media(max-width: 768px) {
}

/* スマホ縦、SplitView --------------- */
@media (max-width: 639px) {
}