/* LESS Document */
main {
  position: relative;
}
main::before {
  content: '';
  display: block;
  width: 100%;
  height: 200vh;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 500px, #ffffff 650px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	pageHeader
+++++++++++++++++++++++++++++++++++++++++++ */
.pageHeader {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1100px;
  min-height: 550px;
  margin: 0 auto;
  padding: 274px 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pageHeader {
    min-height: 0;
    padding-left: 10px;
    padding-bottom: 50px;
  }
}
.pageHeader p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .pageHeader p {
    font-size: 6.4vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パンくず
+++++++++++++++++++++++++++++++++++++++++++ */
#breadcrumbsList {
  margin: 0;
  font-size: 1.4rem;
  line-height: normal;
  text-align: left;
}
#breadcrumbsList a {
  font-weight: normal;
  text-decoration: underline;
  color: #000;
}
#breadcrumbsList li {
  display: inline;
}
#breadcrumbsList li + li::before {
  content: " > ";
}
#breadcrumbsList::before {
  content: '\f015';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #2755A6;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	article
+++++++++++++++++++++++++++++++++++++++++++ */
article {
  position: relative;
  z-index: 1;
}
