/*ページタイトル*/

.page-title {
  text-align: center;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background-color: #FFFFE6;
  z-index: -1;
}

.page-title > p:last-of-type {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
	height: 100%;
  z-index: -1;
}

.page-title > p:last-of-type img{
  height: 100%;
	width: 100%;
	object-fit:cover;
}


.page-title > p:last-of-type::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background: linear-gradient(90deg,#FFFFE6, transparent 20%);
}

/*パンくず*/
.page-pan {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}

.page-pan a {
  margin-right: 40px;
  position: relative;
  text-decoration: underline;
}

.page-pan a::before {
  content:'>';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
}


@media (max-width: 768px) {
.page-title > p:first-of-type,.page-title h1 {
  background-color: rgba(255, 255, 230, 0.5);
  width: 100%;
  
  }

.page-title h1 {
  font-size: 2.4rem;
  padding: 10px 0;
  }

.page-title > p:last-of-type {
  width: 100%;
  height: 100%;
}

.page-title > p:last-of-type img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page-title > p:last-of-type::before {
  display: none;
}

}