/* リセット */
body, h1, a {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-decoration: none;
}

/* ヘッダー全体 */

.page-header {
	display: flex;
	height: 300px;
	overflow: hidden;
	position: relative;
	z-index: 5; /* .page-sub-imageより手前 */
	margin-bottom: 0px;
}
.header-left,
.overlay,
.header-content,
.header-photo,
.header-right {
  position: relative;
  z-index: 10; /* すべて .page-header の中で上 */
}
/* 左側（背景＋グラデーション） */
.header-left {
	position: relative;
	flex: 0 0 80%;
	display: flex;
	align-items: flex-end;
	padding: 0 6%;
	box-sizing: border-box;
}

.header-photo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	border-bottom-right-radius: 50px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,90,200,0.85), rgba(0,150,250,0.6));
  z-index: 2;
	border-bottom-right-radius: 50px;
}

.header-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 30px;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.9;
}
.breadcrumb a {
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.breadcrumb a:hover {
  opacity: 1;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* 右側（白い余白） */
.header-right {
	position: relative;
	flex: 0 0 20%;
	z-index: 10; /* 四角を必ず上に */
}

/* 正方形の共通スタイル */
.square {
  position: absolute;
  right: 10%; /* 少し内側に寄せる */
  background: linear-gradient(135deg, #0078d7, #00aaff);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* 第一の正方形（右側・大） */
.large-square {
  width: 110px;
  height: 110px;
  bottom: 0;
  right: 0px; /* 右寄せ */
}

/* 第二の正方形（左側・小） */
.small-square {
  width: 75px;
  height: 75px;
  bottom: calc(110px + 0%); /* 大きい正方形の上に1%空けて配置 */
  right: 110px; /* ← 左側に配置 */
}
.page-sub-image {
  position: relative;
  margin-top: -300px;
  z-index: 1;
}

.page-sub-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;        /* 枠に合わせて拡大/トリミング */
  object-position: center;  /* 中央を優先して表示 */
  display: block;
}

/*シンプルスモールキャップ*/
.section-title {
	font-weight: 600;
	font-size: 2.5em;
}

.section-title small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.section-title.navy {
  color: #1F2A56; /* ネイビー */
}

.section-title.navy small {
  color: #7C8295; /* 薄いグレー */
}

/*下線だけ青*/

.section-title.underline {
  color: #1F2A56; /* ネイビー */
  padding-bottom: 6px;
  display: inline-block;
  border-bottom: 2px solid #1F4FAF; /* 品のあるブルー */
}

.section-title.underline small {
  color: #A0A4B0;
}
/*アクセントブルー*/
.section-title.blue {
  color: #154EA8; /* 落ち着いたブルー */
}

.section-title.blue small {
  color: #A5B6D6; /* 薄いブルーグレー */
}


/*H2見出し*/
.h2_01{
	color: #FFFFFF;
	text-align: center;
	margin-top: 50px;
	background-color: #1F286F;
	border-radius: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .page-header {
	flex-direction: column;
	height: 200px;
	margin-top: 60px;
  }

  .header-right {
    display: none;
  }

  .header-left {
    flex: 1;
    height: 240px;
    padding: 0 5%;
  }

  .page-title {
	font-size: 28px;
	text-align: center;
  }

  .breadcrumb {
    font-size: 12px;
  }
	.header-photo {
border-bottom-right-radius: 0px;
}
	.overlay {
		border-bottom-right-radius: 50px;
	width: 90%;

}
}
