@charset "utf-8";

/* --------------------------------------------------
  Base
-------------------------------------------------- */

.lead-text {
	color: #000;
	padding-top: var(--sp-4x);
}

.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}

.pending-text {
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width:768px) {
	.pending-text {
		min-height: 240px;
	}
}
@media screen and (max-width:540px) {
	.pending-text {
		min-height: 160px;
	}
}
* + .pending-text {
	min-height: inherit;
}

.single-image-title {
	font-size: var(--fs-22);
	font-weight: var(--fw-bold);
}
.single-image {
	width: 80%;
	max-width: 848px;
	margin-inline: auto;
}
.single-image.fullsize {
	width: 100%;
	max-width: 100%;
}
@media screen and (max-width:540px) {
	.single-image {
		width: 100%;
	}
}

/* --------------------------------------------------
  Sections
-------------------------------------------------- */
.section {
	background-color: #fff;
}
.section-gray {
	background-color: #ECF0F2;
}
.section-navy {
	background-color: var(--primary-color);
	color: #fff;
}
.section__inner {
	max-width: var(--contentMaxWidth);
	margin-inline: auto;
	padding-block: var(--sp-10x);
	padding-inline: var(--contentInlinePadding);
}
.section__inner > * + * {
	margin-top: var(--sp-5x);
}

/* --------------------------------------------------å
  Blocks
-------------------------------------------------- */


/* --------------------------------------------------
  Titles (Top Page)
-------------------------------------------------- */
/* section-title */
.section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-3x);
	padding-block: var(--sp-5x) var(--sp-10x);
	color: var(--primary-color);
	font-size: var(--fs-56);
	position: relative;
}
.section-title::before,
.section-title::after {
	content: '';
	display: block;
	position: absolute;
}
.section-title::before {
	aspect-ratio: 128 / 206;
	width: 2.285em;
	background-color: #ECF0F2;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.section-title::after {
	width: 100px;
	height: 1px;
	background-color: var(--primary-color);
	bottom: 0.85em;
	left: 50%;
	transform: translateX(-50%);
}
.section-title__sub,
.section-title__main {
	margin-block: var(--leading-trim);
	line-height: 1.2;
	position: relative;
	z-index: 1;
}
.section-title__sub {
	font-family: "Cinzel", serif;
	font-weight: var(--fw-regular);
	text-transform: uppercase;
}
.section-title__main {
	font-family: "Noto Serif JP", serif;
	color: #333;
	font-size: var(--fs-18);
	font-weight: var(--fw-light);
}
.section-title-block + *,
.section-title + * {
	margin-top: var(--sp-4x);
}

.section-gray .section-title::before {
	background-color: #fff;
}

.section-navy .section-title__main,
.section-navy .section-title__sub {
	color: #fff;
}
.section-navy .section-title::before {
	background-color: #3D5964;
}
.section-navy .section-title::after {
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.section-title {
		gap: var(--sp-2x);
		padding-top: var(--sp-3x);
		padding-bottom: var(--sp-6x);
		font-size: var(--fs-32);
	}
	.section-title::before {
		width: 2.5em;
	}
	.section-title::after {
		width: 60px;
		bottom: var(--sp-4x);
	}
	.section-title__main {
		font-size: var(--fs-14);
	}
}
@media screen and (max-width: 540px) {
	.section-title {
		/* font-size: var(--fs-32); */
	}
}

/* block-title */
.block-title {
	display: flex;
	align-items: flex-start;
	gap: 0.36em;
	margin-block: var(--leading-trim);
	font-size: var(--fs-22);
	color: #1A1A1A;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.2;
}
.block-title::before {
	content: '';
	display: block;
	aspect-ratio: 1 / 1;
	width: 0.72em;
	height: 100%;
	border: 3px solid var(--primary-color);
	border-radius: 50%;
	background-color: #fff;
	flex-shrink: 0;
	transform: translateY(38%);
}
.block-title + * {
	margin-top: var(--sp-4);
}
@media screen and (max-width: 768px) {
	.block-title {
		font-size: var(--fs-20);
	}
}
@media screen and (max-width: 540px) {
	.block-title {
		font-size: var(--fs-18);
	}
}


/* --------------------------------------------------
  Titles (Sub Page)
-------------------------------------------------- */
.heading01 {
	display: flex;
	justify-content: center;
	padding-block: 2.625em 1.875em;
	font-family: "Noto Serif JP", serif;
	font-size: var(--fs-32);
	font-weight: var(--fw-light);
	line-height: 1.4;
	position: relative;
}
.heading01 + * {
	margin-top: var(--sp-4);
}
.heading01 .text {
	display: inline-block;
	padding-bottom: 0.75em;
	font-size: 1em;	
	position: relative;
}
.heading01 .text::before {
	content: '';
	display: block;
	width: 100px;
	height: 1px;
	background-color: var(--primary-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
	.heading01 {
		font-size: var(--fs-28);
	}
}	
@media screen and (max-width: 540px) {
	.heading01 {
		font-size: var(--fs-24);
	}
	.heading01 .text::before {
		width: 60px;
	}
}

.heading02 {
	color: var(--primary-color);
	font-size: var(--fs-22);
	letter-spacing: 0.04em;
	line-height: 1.6;
}
.heading02 + * {
	margin-top: var(--sp-3x);
}
@media screen and (max-width: 768px) {
	.heading02 {
		font-size: var(--fs-20);
	}
}
@media screen and (max-width: 540px) {
	.heading02 {
		font-size: var(--fs-18);
	}
}

.heading03 {
	display: flex;
	align-items: flex-start;
	gap: 0.36em;
	margin-block: var(--leading-trim);
	font-size: var(--fs-22);
	color: #1A1A1A;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.2;
}
.heading03::before {
	content: '';
	display: block;
	aspect-ratio: 1 / 1;
	width: 0.72em;
	height: 100%;
	border: 3px solid var(--primary-color);
	border-radius: 50%;
	background-color: #fff;
	flex-shrink: 0;
	transform: translateY(38%);
}
.heading03 + * {
	margin-top: var(--sp-3x);
}
@media screen and (max-width: 768px) {
	.heading03 {
		font-size: var(--fs-20);
	}
}
@media screen and (max-width: 540px) {
	.heading03 {
		font-size: var(--fs-18);
	}
}

.subheading01 {
	color: #4D4D4F;
	font-size: var(--fs-16);
	font-weight: 700;
}
* + .subheading01,
.subheading01 + * {
	margin-top: var(--sp-3x);
}

/* --------------------------------------------------
	Page Head (Sub Page)
-------------------------------------------------- */
.page-head-area {
	background-color: #ECF0F2;
}
.page-head-area__inner {
	min-height: 422px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: var(--sp-3x) var(--contentInlinePadding);
}
.page-head-area .title-block {
	width: 100%;
	height: 100%;
	padding-block: 1.2em 2.2em;
	font-size: var(--fs-40);
	position: relative;
}
.page-head-area .title-block::before {
	content: '';
	display: block;
	aspect-ratio: 128 / 206;
	width: 128px;
	background-color: #fff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.page-head-area .title-block::after {
	content: '';
	display: block;
	width: 100px;
	height: 1px;
	background-color: var(--primary-color);
	position: absolute;
	bottom: 1.1em;
	left: 50%;
	transform: translateX(-50%);
}
.page-title {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-block: var(--leading-trim);
	font-family: "Noto Serif JP", serif;
	line-height: 1.2;
	font-size: 1em;
	font-weight: var(--fw-light);
	position: relative;
}
@media screen and (max-width: 1080px) {
	.page-title {
		font-size: var(--fs-36);
	}
}
@media screen and (max-width: 768px) {
	.page-title {
		font-size: var(--fs-32);
	}
}
@media screen and (max-width: 540px) {
	.page-title {
		font-size: var(--fs-28);
	}
}


/* --------------------------------------------------
  Breadcrumb
-------------------------------------------------- */
.breadcrumb {
	padding-block: 1em;
	border-bottom: 1px solid #B8C2C7;
	background-color: #fff;
	font-family: "Noto Serif JP", serif;
	font-size: var(--fs-12);
	line-height: 1.2;
}
.breadcrumb__inner {
	max-width: var(--contentMaxWidth);
	margin-inline: auto;
	padding-inline: var(--contentInlinePadding);
}
.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.breadcrumb__item:not(:last-child) {
	padding-right: 1.5em;
	position: relative;
}
.breadcrumb__item:not(:last-child)::after {
	content: '>';
	display: block;
	aspect-ratio: 1 / 2;
	width: 0.428em;
	position: absolute;
	top: 0.4em;
	right: 0.75em;
	transform: translate(50%, -30%);
}
.breadcrumb__item a {
	text-decoration: none;
}
.breadcrumb__item a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.breadcrumb {
		padding-block: 1.8em;
	}
}



/* --------------------------------------------------
  Status Tags
-------------------------------------------------- */
.status-tags {
	display: flex;
	gap: var(--sp-2x);
	flex-wrap: wrap;
}
.status-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-block: var(----leading-trim);
	padding: 0.57em 1.14em;
	background-color: #F8F8F8;
	color: #4D4D4F;
	font-size: var(--fs-14);
	line-height: 1.2;
}
.status-tag.new {
	background-color: #FDEBEC;
	color: var(--primary-color);
}
.status-tag.running {
	background-color: #DDF1FD;
	color: #0059BE;
}


/* --------------------------------------------------
  Tables
-------------------------------------------------- */
.table-wrapper:has(.table-scroll) {
	overflow-x: auto;
}

/* cell */
.cell-center {
	text-align: center !important;
}
.cell-right {
	text-align: right !important;
}
.cell-left {
	text-align: left !important;
}

/* table-base */
.table-base {
	--minWidtn: 720px;
	--borderColor: #ECF0F2;
	--bgColor-tbodyTh: #ECF0F2;
	--bgColor-tfoot: #fff;
}
.table-base.table-scroll {
	width: 100%;
	min-width: var(--minWidtn);
}
.table-base th,
.table-base td {
	padding: 1.333em;
	border-top: 1px solid var(--borderColor);
	border-bottom: 1px solid var(--borderColor);
	border-left: 1px solid var(--borderColor);
	/* color: #0A0A0A; */
	color: #4D4D4F;
}
.table-base thead th {
	background-color: #B8C2C7;
	line-height: 1.6;
	text-align: center;
}
.table-base thead tr th:last-child {
	border-right: 1px solid var(--borderColor);
}
.table-base tbody th {
	border-right: 1px solid var(--borderColor);
	background-color: var(--bgColor-tbodyTh);
	text-align: center;
	vertical-align: middle;
}
.table-base tbody td {
	line-height: 1.6;
}
.table-base tbody td:last-child {
	border-right: 1px solid var(--borderColor);
}
.table-base tfoot th {
	background-color: #ECF0F2;
}
.table-base tfoot th {
	border-right: 1px solid var(--borderColor);
	text-align: center;
}
.table-base tfoot td:last-child {
	border-right: 1px solid var(--borderColor);
}
@media screen and (max-width: 768px) {
	.table-base {
		--minWidtn: 540px;
		font-size: var(--fs-16);
	}
	.table-base thead th,
	.table-base tbody th,
	.table-base td {
		padding: 0.75em 1em;
		line-height: 1.4;
	}
	.table-base tbody th {
		width: auto;
		white-space: nowrap;
	}
}
@media screen and (max-width: 540px) {
	.table-base {
		font-size: var(--fs-14);
	}
}



/* table-nowrap */
.table-nowrap th,
.table-nowrap td {
	white-space: nowrap;
}


/* --------------------------------------------------
  List
-------------------------------------------------- */
/* 標準のドットつきリスト */
.list-dot {
	padding-left: 0.5em;
}
.list-dot li {
	padding-left: 0.8em;
	position: relative;
}
.list-dot li + li {
	margin-top: 0.5em;
}
.list-dot li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--primary-color);
	position: absolute;
	left: 0;
	top: 0.7em;
}

/* 小さいドットつきリスト */
.list-small-dot {
	padding-left: 0.5em;
}
.list-small-dot li {
	padding-left: 0.8em;
	position: relative;
}
.list-small-dot li + li {
	margin-top: 0.5em;
}
.list-small-dot li::before {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--primary-color);
	position: absolute;
	left: 0;
	top: 0.85em;
}

/* 赤丸付きリスト */
.list-dot-feature {
  list-style: none;
}
.list-dot-feature li {
	padding-left: var(--sp-2x);
  position: relative;
}
.list-dot-feature li + li {
	margin-top: 1em;
}
.list-dot-feature li::before {
  content: '';
	aspect-ratio: 1 / 1;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
	position: absolute;
  left: 0;
  top: 0.68em;
}

/* 数字 + 角括弧：[1] */
.list-numbered-bracket {
	list-style: none;
	padding-left: 0;
	counter-reset: bracket-counter;
}
.list-numbered-bracket > li {
	counter-increment: bracket-counter;
	display: flex;
	gap: 0.75em;
	line-height: 1.6;
}
.list-numbered-bracket > li::before {
	content: "[" counter(bracket-counter) "]";
	display: inline-block;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}
.list-numbered-bracket > li + li {
	margin-top: 1em;
}



/* --------------------------------------------------
  Grid
-------------------------------------------------- */
.grid-box {
	display: grid;
}
.grid-box[data-col="2"] {
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-6x);
}
@media screen and (max-width:840px) {	
	.grid-box[data-col="2"] {
		grid-template-columns: minmax(0, 1fr);
	}
}


/* --------------------------------------------------
  News Resease
-------------------------------------------------- */
.news-release {
  display: grid;
  grid-template-columns: auto auto 1fr;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans',YuGothic,'Yu Gothic',sans-serif;
	font-size: var(--fs-16);
}
.news-release__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: baseline;
  gap: var(--sp-1x) var(--sp-4x);
	padding-block: 1.25em;
  border-bottom: 1px solid #ddd;
}
.news-release__item:first-of-type {
	padding-top: 0;
}
.news-release__date {
	color: #4D4D4F;
}
/* .news-release__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-block: var(--leading-trim);
	padding: 0.5em 1em;
	border: 1px solid currentColor;
	font-size: var(--fs-12);
	line-height: 1;
} */
.news-release__text {
	text-decoration: none;
	line-height: 1.6;
}
a.news-release__text:hover {
	text-decoration: underline;
}
.btn-news-all {
	margin-block: var(--leading-trim);
	padding: 0.5em 0 0.5em 2em;
	font-family: "Cinzel", serif;
	font-size: var(--fs-20);
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	position: relative	;
}
.btn-news-all::before {
	content: '';
	display: block;
	aspect-ratio: 1 / 1;
	width: 1px;
	height: 1.896em;
	background-color: var(--primary-color);
	position: absolute;
	left: 0;
	top: 0;
	transform: rotate(17deg);
	transform-origin: center bottom;
}
@media screen and (max-width:768px) {
	.news-release__item {
		gap: var(--sp-1x) var(--sp-2x);
	}
	.news-release__date,
	.news-release__text {
		font-size: var(--fs-14);
	}
	.btn-news-all {
		padding-left: 1.11em;
		font-size: var(--fs-18);
	}
}
@media screen and (max-width:540px) {
	.news-release {
		/* grid-template-columns: max-content max-content; */
	}
	.news-release__item {
		display: flex;
		flex-wrap: wrap;
	}
	/* .news-release__tag {
		padding: 0.25em 0.75em;
	} */
	.news-release__text {
		width: 100%;
	}
}


/* --------------------------------------------------
  News Archive
-------------------------------------------------- */
.news-archive {
	--label-bg-color: var(--primary-color);
	--label-color: #fff;
	--borderColor: #CDCDCD;
	--tab-bg-color: #DEE6EA;
	font-size: var(--fs-16);
}
.news-archive-tabs {
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); */
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-1x);
	margin-bottom: var(--sp-12x);
}
.news-archive-tabs button {
	display: flex;
	justify-content: flex-start;
	padding: 0.8em 1.2em;
	background-color: var(--tab-bg-color);
	font-family: "Cinzel", serif;
	font-size: var(--fs-20);
	font-weight: var(--fw-regular);
	line-height: 1.2;
}
.news-archive-tabs button.is-active {
	background-color: var(--primary-color);
	color: #fff;
}
.news-archive a {
	text-decoration: none;
}
.news-archive a:hover {
	text-decoration: underline;
}
.news-archive-year-block {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	gap: var(--sp-7x);
}
.news-archive-year-block--hidden {
	display: none;
}
.news-archive-year-block__label {
	padding-bottom: var(--sp-3x);
	font-family: "Noto Serif JP", serif;
	font-size: var(--fs-32);
	font-weight: var(--fw-extralight);
	text-align: center;
	line-height: 1.4;
	position: relative;
}
.news-archive-year-block__label::before {
	content: '';
	display: block;
	width: 100px;
	max-width: 100%;
	height: 1px;
	background-color: currentColor;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.news-archive-list {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: var(--sp-4x);
	width: 100%;
}
.news-archive-list__item {
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1 / -1;
	gap: 1em;
	align-items: baseline;
	padding: 1.5em 2em;
	border-top: 1px solid var(--borderColor);
}
.news-archive-list__item:last-of-type {
	border-bottom: 1px solid var(--borderColor);
}
.news-archive-list__date {
	margin-block: var(--leading-trim);
}
/* .news-archive-list__link {
	padding-left: var(--sp-3x);
	position: relative;
}
.news-archive-list__link::before {
	content: '';
	display: inline-block;
	aspect-ratio: 15 / 21;
	width: 15px;
	position: absolute;
	left: 0;
	top: 0.4em;
} */
/* [data-file-type="pdf"] .news-archive-list__link::before {
	background: url('/assets/img/common/icon-download_pdf.svg') no-repeat center center;
} */
/* [data-file-type="ppt"] .news-archive-list__link::before {
	background: url('/assets/img/common/icon-download_ppt.svg') no-repeat center center;
}
[data-file-type="xls"] .news-archive-list__link::before {
	background: url('/assets/img/common/icon-download_xls.svg') no-repeat center center;
}
[data-file-type="doc"] .news-archive-list__link::before {
	background: url('/assets/img/common/icon-download_doc.svg') no-repeat center center;
} */
/* [data-file-type="none"] .news-archive-list__text {
	padding-left: 1.5em;
} */
@media screen and (max-width:1080px) {
	.news-archive-year-block {
		grid-template-columns: 100%;
	}
	.news-archive-year-block__label {
		width: 100%;
		height: auto;
	}
	.news-archive-list__item {
		padding: 1.5em 1em;
	}
}
@media screen and (max-width:768px) {
	.news-archive-tabs {
		grid-template-columns: repeat(3, 1fr);
	}
	.news-archive-year-block__label {
		font-size: var(--fs-24);
	}
}
@media screen and (max-width:540px) {
	.news-archive-tabs {
		grid-template-columns: repeat(2, 1fr);
	}
	.news-archive-list {
		grid-template-columns: 100%;
	}
}

/* --------------------------------------------------
  Buttons
-------------------------------------------------- */
.btn-primary {
	display: flex;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1em;
	color: #DA2128;
	text-decoration: none;
}
.btn-primary:hover {
	opacity: 1;
	text-decoration: underline;
}
.btn-primary .icon {
	display: flex;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	width: 3em;
	border: 1px solid #E6E6E6;
	border-radius: 50%;
	background-color: #fff;
	transition: background-color 0.4s, border 0.4s;
}
.btn-primary .icon::before {
	content: '';
	display: block;
	aspect-ratio: 9 / 12;
	width: 18.75%;
	background-color: var(--primary-color);
	clip-path: polygon(0 0, 0% 100%, 100% 46%);
	transition: background-color 0.4s;
}
.btn-primary:hover .icon {
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
}
.btn-primary:hover .icon::before {
	background-color: #fff;
}


/* --------------------------------------------------
  Property Gallery
-------------------------------------------------- */
.property-gallery {
	--gap: var(--sp-1x);
	display: grid;
	grid-template-columns: 742fr 440fr;
	gap: var(--gap);
}	
.property-gallery__sub {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--gap);
}
.property-gallery__frame {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.property-gallery__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width:768px) {
	.property-gallery {
		grid-template-columns: minmax(0, 1fr);
	}
	.property-gallery__sub {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width:540px) {
	.property-gallery__sub {
		grid-template-columns: minmax(0, 1fr);
	}
}


/* --------------------------------------------------
  Annotation
-------------------------------------------------- */
.annotation-group {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.8em;
	color: #000;
	font-size: var(--fs-16);
	line-height: 1.75;
}
* + .annotation-group {
	margin-top: var(--sp-3x);
}
.annotation {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / 3;
	column-gap: 0.625em;
}
.annotation__mark {
  grid-column: 1;
	text-align: right;
}
.annotation__body {
  grid-column: 2;
}


/* --------------------------------------------------
  Caption
-------------------------------------------------- */
.caption-group {
	margin-top: var(--sp-3x);
	line-height: 1.8;
	font-weight: var(--fw-medium);
	/* letter-spacing: 0.057em; */
}
* + .caption-group,
.caption-group + * {
	margin-top: var(--sp-3x);
}

/* --------------------------------------------------
  Distribution Card
-------------------------------------------------- */
.distribution-card {
	display: grid;
	grid-template-columns: auto 2fr;
	font-size: var(--fs-18);
}
.distribution-card__head {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 408px;
	padding: 1.5em;
	background-color: #758A93;
	font-size: var(--fs-18);
	letter-spacing: 0.04em;
	line-height: 1.6;
}
.distribution-card__body {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5em;
	background-color: #ECF0F2;
	font-size: var(--fs-18);
	letter-spacing: 0.04em;
}
.distribution-card__amount {
	line-height: 1.2;
}
.distribution-card__value {
	font-size: var(--fs-26);
	line-height: 1.12;
}
/* .distribution-card.confirmed .distribution-card__head {
	background-color: var(--primary-color);
	color: #fff;
} */
@media screen and (max-width: 840px) {
	.distribution-card {
		grid-template-columns: 100%;
	}
	.distribution-card__head {
		width: 100%;
	}
	.distribution-card__value {
		font-size: var(--fs-22);
	}
}
@media screen and (max-width: 540px) {
	.distribution-card__value {
		font-size: var(--fs-20);
	}
}


/* --------------------------------------------------
  Highlight Chart Grid
-------------------------------------------------- */
.highlight-chart-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-13x) var(--sp-5x);
}
.highlight-chart-card__unit {
	padding-left: 2.5em;
	color: #6E6E6E;
	font-size: var(--fs-12);
	line-height: 1;
}
.heading03 + .highlight-chart-card__unit {
	margin-top: var(--sp-4x);
}
.highlight-chart-card__chart {
	min-height: 360px;
}
.highlight-chart-card__title {
	font-family: "Noto Serif JP", serif;
	font-size: var(--fs-30);
	font-weight: var(--fw-regular);
	line-height: 1.4;
}
.highlight-chart-card__title + * {
	margin-top: var(--sp-6x);
}
@media screen and (max-width: 768px) {
	.highlight-chart-card__chart {
		min-height: 300px;
	}
	.highlight-chart-card__title {
		font-size: var(--fs-24);
	}
}
@media screen and (max-width: 540px) {
	.highlight-chart-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.highlight-chart-card__title {
		font-size: var(--fs-20);
	}
}


/* --------------------------------------------------
  Document List
-------------------------------------------------- */
.document-list {
	display: grid;
	grid-template-columns: auto 1fr;
	font-family: "Noto Serif JP", serif;
	color: #324B55;
}
.document-list__item {
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1 / -1;
	gap: var(--sp-1x) var(--sp-2x);
	padding-block: 1.5em;
	border-bottom: 1px solid #D3D3D3;
}
/* .document-list__item.revision {
	padding-left: 1em;
	background: url('/assets/img/common/icon-branch.svg') no-repeat left 0.68em;
	background-size: 0.5em;
} */
.document-list__link {
	text-decoration: none;
}
.document-list__title {
	line-height: 1.6;
}
.document-list__link:hover .document-list__title {
	text-decoration: underline;
}
/* .document-list__file {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-1x);
	margin-left: 1em;
} */
/* .document-list__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5em 0.75em;
	font-size: var(--fs-12);
	line-height: 1;
	letter-spacing: 0.025em;
}
.document-list__tag.pdf {
	background-color: #FDF1F1;
	color: #E60012;
} */
.document-list__size {
	font-size: var(--fs-14);
	line-height: 1;
}
.document-list__icon {
	display: inline-block;
}
.document-list__item[data-file-type="pdf"] .document-list__icon {
	aspect-ratio: 11 / 14;
	width: 0.68em;
	margin-left: 0.2em;
	background: url('/assets/img/common/icon-file_pdf.svg') no-repeat center center;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.document-list__item {
		display: flex;
		flex-wrap: wrap;
	}
	.document-list__date {
		width: 100%;
	}
}


/* --------------------------------------------------
  Form
-------------------------------------------------- */
.form-base {
	--title-bg-color: #758A93;
	--title-color: #fff;
	--body-bg-color: #ECF0F2;
	--border-color: #fff;
	--input-border-color: #B9B9B9;
	--input-bg-color: #fff;
}
.form-lead-text {
	font-size: var(--fs-16);	
	font-weight: var(--fw-regular);
}
.form-wrapper {
	padding-block: var(--sp-3x);
}
.form-base {
	font-size: var(--fs-16);	
}
.form-block {
	display: grid;
	grid-template-columns: 340px 1fr;
	border-top: 1px solid var(--border-color);
}
.form-block:last-of-type {
	border-bottom: 1px solid var(--border-color);
}
.form-required-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	width: 46px;
	height: 22px;
	border-radius: 3px;
	background-color: var(--required-color);
	color: #fff;
	line-height: 1;
	font-size: var(--fs-14);
}
.form-block__title,
.form-block__body {
	padding: 1.5em 2.5em;
}
.form-block__title {
	border-right: 1px solid var(--border-color);
	background-color: var(--title-bg-color);
}
.form-base .form-block__title .form-required-badge {
	margin-left: 0.5em;
}
.form-lead-text .form-required-badge {
	margin-right: 0.5em;
}
.form-base .title-text {
	color: var(--title-color);
}
.form-block__body {
	background-color: var(--body-bg-color);
}
.form-base input[type="text"],
.form-base input[type="email"],
.form-base textarea,
.form-base select {
	width: 100%;
	padding: 0.5em 0.75em;
	border: 1px solid var(--input-border-color);
	border-radius: 2px;
	background-color: var(--input-bg-color);
}
.form-base input[type="text"],
.form-base input[type="email"] {
	max-width: 300px;
	line-height: 1.4;
}
.form-base textarea {
	line-height: 1.6;
}
.form-base select {
	max-width: fit-content;
}
.form-block__checkbox {
	position: relative;
}
.form-block__checkbox input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.checkbox-label {
	padding-left: 1.5em;
	position: relative;
	line-height: 1.6;
	cursor: pointer;
}
.checkbox-label::before,
.checkbox-label::after {
	content: '';
	display: block;
	position: absolute;
}
.checkbox-label::before {
	aspect-ratio: 1 / 1;
	width: 1em;
	height: 1em;
	border: 1px solid #767676;
	border-radius: 4px;
	background-color: #fff;
	left: 0;
	top: 0.35em;
	transition: background-color 0.4s;
}
.checkbox-label::after {
	width: 0.6em;
	height: 0.3em;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	transform-origin: center;
	transition: transform 0.4s;
	left: 0.2em;
	top: 0.65em;
}
.form-block__checkbox:has(input[type="checkbox"]:checked) .checkbox-label::before {
	border-color: var(--primary-color);
	background-color: var(--primary-color);
}
.text-privacy-policy + .form-block__checkbox {
	margin-top: 0.75em;
}
.form-block__note {
	margin-top: 0.25em;
	font-size: var(--fs-14);
	line-height: 1.4;
}
.form-block__caution {
	color: var(--required-color);
	font-size: var(--fs-14);
}
.form-block__caution {
	margin-top: 0.5em;
}
.form-block__caution:not(.error) {
	display: none;
}
.form-base__actions {
	margin-top: var(--sp-5x);
}
.form-confirm-btn,
.form-submit-btn,
.form-return-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: 95%;
	max-width: 400px;
	min-height: 70px;
	padding: 0.875em 2em;
	border-radius: 300px;
	transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}
.form-confirm-btn,
.form-submit-btn {
	border: 2px solid var(--primary-color);
	background-color: var(--primary-color);
	color: #fff;
	line-height: 1.4;
}
.form-confirm-btn:hover,
.form-submit-btn:hover {
	background-color: #fff;
	color: var(--primary-color);
	font-weight: var(--fw-bold);
}
.form-confirm-btn:disabled {
	background-color: #CCCCCC;
	color: #fff;
	border-color: #CCCCCC;
	font-weight: var(--fw-regular);
}
.form-confirm-modal {
	border: 0;
}
.form-return-btn {
	background-color: #fff;
	border: 2px solid #333;
}
.form-return-btn:hover {
	background-color: #333;
	color: #fff;
}
@media screen and (max-width: 840px) {
	.form-block {
		grid-template-columns: 1fr;
	}
}

/* プライバシーポリシー */
.privacy-policy-block {
	margin-top: var(--sp-4x);
	text-align: center;
}
.privacy-policy-block a {
	color: #1956B1;
}
.privacy-policy-block__title {
	font-size: var(--fs-18);
	font-weight: var(--fw-semibold);
}
.privacy-policy-block__text {
	word-break: auto-phrase;
}
.privacy-policy-block__text + .privacy-policy-block__text {
	margin-top: var(--sp-2x);
}
.privacy-policy-block__text.text-small {
	font-size: var(--fs-14);
	line-height: 1.86;
}
.form-block__checkbox {
	margin-top: var(--sp-2x);
}
@media screen and (max-width:540px) {
	.privacy-policy-block__text.text-small {
		font-size: var(--fs-12);
	}
}

/* 入力内容確認モーダル */
.form-confirm-modal {
  width: 100%;
  max-width: inherit;
  height: 100%;
  max-height: inherit;
  margin: 0;
  padding: var(--sp-4x) var(--contentInlinePadding);
  background-color: transparent;
}
.form-confirm-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-confirm-modal[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}
.form-confirm-modal__inner {
  width: 100%;
  max-width: 720px;
  height: fit-content;
  max-height: 100%;
  padding: var(--sp-5x) var(--contentInlinePadding);
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
.form-confirm-modal__title {
  font-size: var(--fs-16);
  text-align: center;
}
.form-confirm-modal__title + * {
  margin-top: var(--sp-5x);
}
.form-confirm-modal__title span {
  display: inline-block;
}
.form-confirm-modal .form-confirm-modal__actions {
  --min: 180px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  gap: var(--sp-2x);
  max-width: 560px;
  margin: var(--sp-5x) auto 0;
}
.form-confirm-modal .form-confirm-modal__actions .btn-return,
.form-confirm-modal .form-confirm-modal__actions .btn-confirm,
.form-confirm-modal .form-confirm-modal__actions .btn-submit {
  max-width: 220px;
  padding: 0.875em 2em;
}
.form-confirm-modal .table-wrapper {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.form-confirm-modal .table-confirm th,
.form-confirm-modal .table-confirm td {
  padding: 1.5em 1em;
  font-size: var(--fs-16);
}
.form-confirm-modal .table-confirm th {
  width: 180px;
  text-align: right;
  position: relative;
}
.form-confirm-modal .table-confirm th::after {
  content: '';
  display: block;
  width: 1px;
  height: 50%;
  background-color: #D6D6D6;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width:540px) {
  .form-confirm-modal .table-confirm th,
  .form-confirm-modal .table-confirm td {
    padding: 1em;
    display: block;
  }
  .form-confirm-modal .table-confirm th {
    width: 100%;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: left;
  }
  .form-confirm-modal .table-confirm tr + tr th {
    border-top: 0;
  }
  .form-confirm-modal .table-confirm td {
    padding-top: 0.5em;
    border-top: 0;
  }
  .form-confirm-modal .table-confirm th::after {
    display: none;
  }
}


/* --------------------------------------------------
  External Link Modal
-------------------------------------------------- */
.external-link-modal {
  border: none;
	width: 95%;
  max-width: 640px;
	height: 360px;
	padding: var(--sp-9x) var(--sp-4x) var(--sp-6x);
	max-height: 90vh;
	font-size: var(--fs-16);
}
.external-link-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.external-link-modal__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-2x);
	max-width: 512px;
	min-height: 100%;
	margin-inline: auto;
	font-weight: var(--fw-regular);
	line-height: 2;
}
.external-link-modal__close {
	border: none;
	aspect-ratio: 1 / 1;
	width: 30px;
  position: absolute;
  top: var(--sp-3x);
  right: var(--sp-4x);
  cursor: pointer;
}
.external-link-modal__close-icon {
	display: block;
	width: 100%;
	position: relative;
}
.external-link-modal__close-icon::before,
.external-link-modal__close-icon::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: #62747D;
	position: absolute;
	left: 50%;
	top: 50%;
}
.external-link-modal__close-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.external-link-modal__close-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.external-link-modal__link {
	display: flex;
	align-items: center;
	gap: 1em;
	width: 100%;
	justify-content: center;
	max-width: 368px;
	border-bottom: 1px solid var(--primary-color);
	padding-inline: var(--sp-3x) var(--sp-2x);
	padding-bottom: 1em;
	color: var(--base-text);
	font-size: var(--fs-16);
	text-decoration: none;
	line-height: 1.2;
	position: relative;
}
.external-link-modal__link::after {
	content: '';
	display: block;
	aspect-ratio: 10 / 6.19;
	width: 10px;
	background-color: currentColor;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width:540px) {
	.external-link-modal {
		padding-inline: 8vw;
		font-size: var(--fs-14);
	}
	.external-link-modal__link  {
		font-size: var(--fs-14);
	}
}


/* --------------------------------------------------
  Error Block
-------------------------------------------------- */
.error-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2x);
	padding-top: var(--sp-14x);
}
.error-block .error-code {
	font-size: var(--fs-82);
	font-weight: var(--fw-bold);
}
.error-block .error-title {
	font-size: var(--fs-32);
}
.error-block .error-text {
	margin-top: var(--sp-2x);
}
.error-block .btn-wrapper {
	margin-top: var(--sp-4x);
}
@media screen and (max-width:540px) {
	.error-block {
		padding-top: var(--sp-10x);
	}
	.error-block .error-code {
		font-size: var(--fs-64);
	}
	.error-block .error-title {
		font-size: var(--fs-24);
	}
	.error-block .error-text br {
		display: none;
	}
}


/* --------------------------------------------------
  Skip-link
-------------------------------------------------- */
.skip-link {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal !important;
  background-color: #324B55;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
}
.skip-link:focus {
  clip-path: none;
  display: block;
  height: auto;
  width: auto;
  left: 5px;
  top: 5px;
  padding: 15px 23px 14px;
}
[data-skip-target="first-content"] {
	scroll-margin-top: var(--headerHeight);
}
