@charset "UTF-8";

/* ====================================
	共通スタイル
==================================== */
.font-s {
	font-size: 1.4rem;
}

.page-section:not(:last-of-type) {
	padding-bottom: 10rem;
}

.info-table {
	inline-size: 100%;
}

.info-table__tr {
	border-top: 1px solid #d9d9d9;

	&:last-child {
		border-bottom: 1px solid #d9d9d9;
	}

	>th,
	>td {
		font-size: 1.4rem;
	}

	>th {
		font-weight: 700;
		inline-size: 25%;
		min-inline-size: 80px;
		vertical-align: top;
		padding: 2rem 0;
	}

	>td {
		line-height: 1.7;
		padding: 1rem 0 1rem 1rem;
	}

	.representative-title {
		display: inline-block;
		inline-size: 5.5em;
		text-align: justify;
		text-align-last: justify;
		-webkit-text-align-last: justify;
	}

	small {
		font-size: 1.2rem;
	}
}

/* ラインアロー付きテキスト */
.line-arrow-title {
	font-size: 1.3rem;
	margin-top: 1rem;
}

.link__list>li:not(:first-child) .line-arrow-title {
	margin-top: 0.5rem;
}

/* 丸囲みアロー付きタイトル */
.circle-arrow-title .ico-circle-arrow {
	inline-size: 2.4rem;
	block-size: 2.4rem;
}

/* 代表者 */
.representative-table__tr-title {
	padding-right: 1em;
	font-weight: 400;
}

/* PDFダウンロード */
.section-title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

.card__container {
	background: #f5f5f5;
	margin-top: 3rem;
	padding: 2rem 5%;
}

.download__list {
	margin-top: 3rem;
	font-size: 1.6rem;

	li {
		border-top: 1px solid #d9d9d9;
		padding: 1.8rem 0;

		&:last-child {
			border-bottom: 1px solid #d9d9d9;
		}
	}
}


/* ====================================
	ホバー、マウスポインタが有効なデバイス
==================================== */
@media (hover:hover) and (pointer: fine) {}

/* ====================================
	480px以上専用スタイル
==================================== */
@media screen and (width >=480px) {}

/* ====================================
	768px未満専用スタイル
==================================== */
@media screen and (width <768px) {

	/* 代表者 */
	.representative-table__tr-item,
	.representative-table__tr-title {
		display: block;
	}
}

/* ====================================
	768px以上専用スタイル
==================================== */
@media screen and (width >=768px) {

	.info-table__tr {

		>th,
		>td {
			font-size: 1.6rem;
		}

		>th {
			inline-size: 25%;
			padding: 3rem 0 3rem 2.5rem;
		}

		>td {
			line-height: 1.7;
			padding: 3rem 2.5rem;
		}

		.flex-cell {
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 1.2rem 1rem;
		}
	}

	/* ラインアロー付きテキスト */
	.line-arrow-title {
		margin-top: 1.5em;
		font-size: 1.4rem;
	}

	.link__list>li:not(:first-child) .line-arrow-title {
		margin-top: 0.5em;
	}

	/* PDFダウンロード */
	.section-title {
		font-size: 2.8rem;
	}

	.card__container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-content: space-between;
		gap: 0 7%;
		margin-top: 5rem;
		padding: 5rem 5%;
	}

	.download__list {
		margin-top: 0;
		font-size: 2rem;

		li {
			padding: 2.6rem 0;
		}
	}

	/* 丸囲みアロー付きテキスト・common.css上書き */
	.circle-arrow a {

		&:nth-of-type(n+2) {
			margin-top: 2.6rem;
			font-size: 1.6rem;
		}
	}
}