@charset "UTF-8";
@import url("sp.css") only screen and (max-width: 768px);
@import url("pc.css") only screen and (min-width: 769px);
/*==============================================

	Common Styles

==============================================*/
/*================================
	Display Utilities
================================*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*================================
	Font Classes
================================*/
.mincho {
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
}

.redhat {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  color: #0f9cb5;
  text-transform: uppercase;
}

/*================================
	Heading
================================*/
.page_wrap .heading .redhat {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.page_wrap .heading h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 24px;
  color: #333;
  letter-spacing: 0.16em;
  line-height: 1.67;
}