/* Source: src\components\Breadcrumb.astro */
.breadcrumb {
	display: block;
	max-width: 80rem;
	margin: 1.25rem auto;
	padding-inline: 3rem;
	font-size: 0.75rem;
	line-height: 1;
}

.breadcrumb__separator {
	font-size: 1.5rem;
	line-height: 0.666;
	color: var(--brand-black);
	margin-inline: 0.3125rem;
	vertical-align: -0.125rem;
}

.breadcrumb__item {
	color: var(--brand-black);
}

.breadcrumb__item--link {
	text-decoration: none;
}

.breadcrumb__item--link:hover {
	text-decoration: underline;
}

.breadcrumb__item--current {
	font-weight: 700;
	color: var(--brand-main-color-light);
}
@media screen and (max-width: 64rem) {
	.breadcrumb {
		margin-block: 1rem;
		padding-inline: 1.5rem;
	}
}

/* Source: src\components\careers\LeadSection.astro */
.lead-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.125rem;
}

.lead-section__logo {
	width: 100%;
	max-width: 32.8125rem;
}

.lead-section__text--bold {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.8;
	word-break: auto-phrase;
}

.lead-section__text--description {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
}

@media screen and (max-width: 64rem) {
	.lead-section__logo {
		width: 100%;
		max-width: 32.8125rem;
	}
}

@media screen and (max-width: 36rem) {
	.lead-section {
		gap: 2rem;
	}

	.lead-section__text {
		padding: 0 1rem;
	}

	.lead-section__text--bold {
		font-size: 1rem;
	}

	.lead-section__text--description {
		font-size: 0.875rem;
	}
}

/* Source: src\components\FeatureCard.astro */
.feature-card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 1.25rem;
	place-items: center;
}

.feature-card__image {
	width: 100%;
	max-width: 18.75rem;
	margin-inline: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.feature-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	word-break: auto-phrase;
}

.feature-card__description {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	place-self: start;
}

@media screen and (max-width: 36rem) {
	.feature-card {
		gap: 1rem;
	}

	.feature-card__image {
		height: 12rem;
	}

	.feature-card__title {
		font-size: 1rem;
	}

	.feature-card__description {
		font-size: 0.875rem;
	}
}

/* Source: src\components\FeatureCards.astro */
.feature-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3.125rem;
}

@media screen and (max-width: 62rem) {
	.feature-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media screen and (max-width: 36rem) {
	.feature-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Source: src\components\Footer.astro */
.footer {
	position: sticky;
	top: 100%;
	width: 100%;
	background-color: var(--brand-main-color-dark);
	color: white;
}

.footer-content {
	display: flex;
	padding: 1.25rem;
	flex-direction: column;
	align-items: center;
	gap: 1.625rem;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
	width: 100%;
}

.footer-nav a {
	color: white;
	text-decoration: none;
	font-size: 0.6875rem;
	font-weight: 700;
	font-family: "Noto Sans JP", sans-serif;
	white-space: nowrap;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.footer-copyright {
	text-align: center;
	font-size: 0.6875rem;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.5;
}

.footer-copyright p {
	margin: 0;
}

/* Source: src\components\Header.astro */
.header {
	background-color: #ffffff;
	box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.05);
	width: 100%;
}

.header__container {
	display: flex;
	flex-direction: column;
	max-width: 80rem;
	margin-inline: auto;
	padding: 1.375rem 2rem 0;
}

.header__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.header__bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 1rem;
}

.header__logo {
	width: 18.625rem;
	height: 3.25rem;
}

.header__logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header__nav {
	display: flex;
	align-items: center;
	gap: 0;
}

.header__nav--primary {
	margin-left: 0;
}

.header__nav--secondary {
	margin-right: 0.94rem;
}

.header__nav-link {
	padding: 0.62rem 0.94rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #000000;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.header__nav-link--secondary {
	font-weight: 400;
	font-size: 0.75rem;
}

.header__actions {
	display: flex;
	align-items: center;
}

.header__buttons {
	display: flex;
	gap: 0.5rem;
}

.header__menu-button {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 2rem;
	height: 1.5rem;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-left: 1rem;
}

.header__menu-line {
	width: 100%;
	height: 0.125rem;
	background-color: #000;
	border-radius: 0.0625rem;
	transition: all 0.3s ease;
}

@media (max-width: 64rem) {
	.header__nav--secondary,
	.header__buttons,
	.header__bottom {
		display: none;
	}

	.header__menu-button {
		display: flex;
	}

	.header__logo {
		width: 12rem;
		height: 2.125rem;
	}

	.header__container {
		padding: 1rem 1rem 0;
	}
}

/* Source: src\components\HeaderButton.astro */
.header__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 7.8125rem;
	height: 1.875rem;
	border-radius: 0.25rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.header__button:hover {
	opacity: 0.8;
}

.header__button--filled {
	background-color: var(--brand-gold);
	color: #ffffff;
}

.header__button--outlined {
	background-color: #ffffff;
	border: 0.03125rem solid var(--brand-gold);
	color: var(--brand-gold);
}

@media (max-width: 64rem) {
	.header__button {
		width: 100%;
	}
}

/* Source: src\components\KeyValueTable.astro */
.key-value-table {
	width: 100%;
	flex: 1;
	border-collapse: collapse;
}

.key-value-table__cell {
	padding: 0.625rem;
	vertical-align: top;
}

.key-value-table__cell--key {
	width: 9.375rem;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--brand-black);
}

.key-value-table__cell--value {
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--brand-black);
}

@media screen and (max-width: 64rem) {
	.key-value-table__cell {
		padding: 0.625rem 0.5rem;
	}

	.key-value-table__cell--key {
		width: 7.5rem;
		font-size: 0.875rem;
	}

	.key-value-table__cell--value {
		font-size: 0.875rem;
	}
}

/* Source: src\components\MessageSection.astro */
.message-section {
	display: flex;
	gap: 3.125rem;
	align-items: flex-start;
}

.message-section__image-wrapper {
	display: flex;
	flex: 25 1 25rem;
	flex-direction: column;
	gap: 0.625rem;
	align-items: center;
}

.message-section__image {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.message-section__person-name {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	color: var(--brand-black);
	white-space: nowrap;
}

.message-section__content {
	display: flex;
	flex: 31.25 1 31.25rem;
	flex-direction: column;
	gap: 1.25rem;
}

.message-section__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.8;
	color: var(--brand-black);
	word-break: auto-phrase;
}

.message-section__description {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	color: var(--brand-black);
}

@media screen and (max-width: 48rem) {
	.message-section {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}

	.message-section__image-wrapper,
	.message-section__content {
		flex: 1;
	}

	.message-section__image {
		width: 100%;
		max-width: 25rem;
	}

	.message-section__content {
		max-width: 100%;
	}
}

@media screen and (max-width: 36rem) {
	.message-section {
		gap: 2rem;
	}

	.message-section__title {
		font-size: 1rem;
	}

	.message-section__description {
		font-size: 0.875rem;
	}
}

/* Source: src\components\MobileMenu.astro */
.header__mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.header__mobile-nav--open {
	opacity: 1;
	visibility: visible;
}

.header__mobile-nav-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.header__mobile-nav-container {
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	max-width: 20rem;
	height: 100%;
	background-color: #ffffff;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.header__mobile-nav--open .header__mobile-nav-container {
	transform: translateX(0);
}

.header__mobile-close-button {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2rem;
	height: 2rem;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.header__mobile-close-icon {
	font-size: 2rem;
	line-height: 1;
	color: #000;
}

.header__mobile-nav-content {
	padding: 5rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.header__mobile-nav-link {
	padding: 1rem 0;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	color: #000000;
	text-decoration: none;
	border-bottom: 0.0625rem solid #e5e5e5;
}

.header__mobile-nav-link--secondary {
	font-weight: 400;
	font-size: 0.875rem;
}

.header__mobile-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

@media (max-width: 64rem) {
	.header__mobile-nav {
		display: block;
	}
}

/* Source: src\components\Section.astro */
.section {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
}

/* Source: src\components\SectionContainer.astro */
.section-container {
	display: flex;
	flex-direction: column;
	gap: 6.25rem;
	width: 100%;
}

/* Source: src\components\SectionSubTitle.astro */
.section-subtitle {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
}

/* Source: src\components\SectionTitle.astro */
.lp-head2 {
	display: flex;
	width: 100%;
	margin: 0;
	font-size: 22px;
	align-items: baseline;
	font-weight: 700;
	word-break: auto-phrase;
}

.lp-head2::before {
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	flex: 0 0 1rem;
	box-sizing: content-box;
	border-inline: 1rem solid var(--brand-main-color-dark);
	background-color: var(--brand-main-color-light);
}

.lp-head2 > span {
	flex: 0 1 auto;
	padding-inline: 0.4rem;
}

.lp-head2::after {
	content: "";
	display: block;
	flex: 1 1 0;
	height: 1px;
	background-color: #000;
	align-self: center;
}

/* Source: src\components\TabNavigation.astro */
.tab-navigation {
	display: grid;
	grid-template-columns: repeat(auto-fit, 11.125rem);
	margin-block: 3.7rem 2rem;
	gap: 0.625rem;
	justify-content: center;
}

.tab-navigation__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem;
	font-size: 0.875rem;
	line-height: 1.8;
	text-decoration: none;
	border: 1px solid var(--brand-main-color-light);
	color: var(--brand-main-color-light);
	font-weight: 400;
	transition: all 0.2s ease;
}

.tab-navigation__item--active {
	background-color: var(--brand-main-color-light);
	color: white;
	font-weight: 700;
}

.tab-navigation__item:hover {
	opacity: 0.8;
}

@media screen and (max-width: 62rem) {
	.tab-navigation {
		margin-block: 1rem;
		gap: 0.5rem;
	}
}

@media screen and (max-width: 36rem) {
	.tab-navigation {
		margin-block: 0;
		gap: 0.5rem;
		grid-template-columns: 1fr 1fr;
	}
}

/* Source: src\components\top\NewsSection.astro */
.news-section {
	display: flex;
	flex: 37.5;
	flex-direction: column;
	align-items: center;
	border: 1px solid var(--border-gray);
	flex-shrink: 0;
}

.news-tabs {
	display: flex;
	width: 100%;
	border-bottom: 1px solid var(--border-gray);
	flex-shrink: 0;
}

.news-tabs__tab {
	flex: 1;
	flex-shrink: 0;
	padding-block: 0.625rem 0.375rem;
	border: none;
	border-bottom: 0.25rem solid transparent;
	background: none;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	color: var(--brand-gray);
	cursor: pointer;
	transition: all 0.3s ease;
}

.news-tabs__tab--active {
	font-weight: 700;
	color: var(--brand-main-color-light);
	border-color: var(--brand-main-color-light);
}

.news-tabs__tab:hover {
	color: var(--brand-main-color-light);
}

.news-list {
	display: flex;
	flex-direction: column;
	padding: 2.25rem 1rem 1.5rem 1rem;
	gap: 1rem;
	flex-shrink: 0;
}

.news-list__item {
	display: flex;
	gap: 2.5rem;
	width: 34.375rem;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--brand-black);
}

.news-list__date {
	font-weight: 400;
	flex-shrink: 0;
}

.news-list__content {
}

@media (max-width: 64rem) {
	.news-section {
		width: 100%;
	}

	.news-list__item {
		width: 100%;
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* Source: src\components\top\ServiceSection.astro */
.service-section {
	display: flex;
	padding-block: 3.125rem;
	gap: 1.875rem;
	align-items: center;
	justify-content: center;
	background-color: rgba(95, 150, 217, 0.15);
}

.service-section__card {
	display: flex;
	width: 26.25rem;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.service-section__card-image {
	display: flex;
	width: 100%;
	height: 15.625rem;
	margin-bottom: 1.25rem;
	align-items: center;
	justify-content: center;
}

.service-section__card-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.service-section__card-content {
	display: flex;
	width: 26.25rem;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.service-section__card-title {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1;
	color: #109cf1;
	text-align: center;
}

.service-section__card-button {
	display: flex;
	width: 7.8125rem;
	height: 1.875rem;
	border: 0.03125rem solid var(--brand-main-color-dark);
	border-radius: 0.25rem;
	align-items: center;
	justify-content: center;
	background-color: white;
	color: var(--brand-main-color-dark);
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.service-section__card-button:hover {
	background-color: var(--brand-main-color-dark);
	color: white;
}

.service-section__card-button span {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--brand-main-color-dark);
	white-space: nowrap;
}

.service-section__card-button:hover span {
	color: white;
}

.service-section__card-description {
	margin: 0;
	padding: 0 1rem;
	max-width: 40rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	color: var(--brand-black);
}

@media (max-width: 64rem) {
	.service-section {
		flex-direction: column;
	}

	.service-section__card {
		width: 100%;
	}

	.service-section__card-content {
		width: 100%;
	}
}

/* Source: src\components\top\SiteBlock.astro */
.site-block {
	display: flex;
	flex: 1 1 25rem;
	gap: 0.625rem;
	align-items: center;
	text-decoration: none;
}

.site-block__image-container {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.site-block__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.site-block__content {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: flex-start;
	justify-content: center;
	flex: 1;
	line-height: 1.8;
}

.site-block__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 500;
	color: #109cf1;
	width: 100%;
}

.site-block:hover .site-block__title {
	text-decoration: underline;
}

.site-block__description {
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	width: 100%;
}

@media (max-width: 48rem) {
	.site-block {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-block__content {
		width: 100%;
	}
}

/* Source: src\components\top\VideoSection.astro */
.video-section {
	display: flex;
	flex: 21.875;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	width: 21.875rem;
	gap: 0.5rem;
	flex-shrink: 0;
}

.video-card {
	position: relative;
	width: 21.875rem;
	height: 12.375rem;
	margin-inline: auto;
	border-radius: 1.375rem;
	overflow: hidden;
	flex-shrink: 0;
}

.video-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-card__play {
	position: absolute;
	top: 5rem;
	left: 9.75rem;
	width: 2.4168rem;
	height: 2.4168rem;
}

.video-card__play-icon {
	width: 100%;
	height: 100%;
}

.youtube-link {
	display: flex;
	width: 21.875rem;
	align-items: center;
	margin-inline: auto;
	gap: 0.625rem;
	background: white;
	text-decoration: none;
	flex-shrink: 0;
}

.youtube-link__text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--brand-black);
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.youtube-link__arrow {
	width: 0.375rem;
	height: 0.6565rem;
	flex-shrink: 0;
}

.recruitment-button {
	display: flex;
	width: 100%;
	height: 3.6rem;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding-block: 0.625rem;
	background-color: var(--brand-main-color-light);
	text-decoration: none;
	transition: background-color 0.3s ease;
	flex-shrink: 0;
}

.recruitment-button:hover {
	background-color: var(--brand-main-color-normal);
}

.recruitment-button__text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: white;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.recruitment-button__arrow {
	width: 0.375rem;
	height: 0.6565rem;
	flex-shrink: 0;
}

@media (max-width: 64rem) {
	.video-section {
		width: 100%;
	}
}

/* Source: src\layouts\Layout.astro */
:root {
	--brand-main-color-dark: #0b4271;
	--brand-main-color-normal: #4169e1;
	--brand-main-color-light: #5f96d9;
	--brand-gold: #b8860b;
	--brand-dark: #3e3e3e;
	--brand-black: #212529;
	--brand-gray: #7c7c7c;
	--border-gray: #d4d4d4;
	--bk-gray: #f0f0f0;
}

[v-cloak] {
	display: none !important;
}
@font-face {
	font-family: "Noto Sans JP";
	src: local("Noto Sans JP"), url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
	ascent-override: 100%;
	descent-override: 22%;
}

*, *::before, *::after {
	box-sizing: border-box;
	line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
}
p {
	margin: 0;
}
img, svg {
	vertical-align: middle;
}

/* Source: src\layouts\Layout.astro */
html,
body {
	position: relative;
	margin: 0;
	width: 100%;
	height: 100%;
	font-family: "Noto Sans JP", sans-serif;
}

.main-content {
	max-width: 62rem;
	margin-inline: auto;
	margin-top: 4.5rem;
	margin-bottom: 6.5rem;
	padding-inline: 1rem;
}

/* Source: src\pages\about\index.astro */
.philosophy__content {
	display: flex;
	padding-inline: 1.5rem;
	flex-direction: column;
	gap: 3.125rem;
}

.philosophy__item {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	width: 100%;
}

.philosophy__label {
	flex: 1 0 7.125rem;
	font-weight: 700;
	font-size: 1.125rem;
	text-align: center;
}

.philosophy__text {
	flex: 1 1 51rem;
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--brand-black);
}

@media screen and (max-width: 64rem) {
	.philosophy__content {
		padding-inline: 1rem;
	}
	.philosophy__item {
		flex-direction: column;
		align-items: center;
	}
	.philosophy__label {
		flex: 1 1 auto;
	}
	.philosophy__text {
		flex: 1 1 auto;
	}
}

.side-by-side {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

@media screen and (max-width: 64rem) {
	.side-by-side {
		flex-direction: column;
	}
}

.office-image {
	margin-inline: auto;
	flex: 1;
	max-width: 28rem;
}

.office-image__image {
	width: 100%;
	height: auto;
}

.office-image__note {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	text-align: end;
}

/* Source: src\pages\careers\index.astro */
.careers-kv__img {
	display: block;
	width: 100%;
	height: min(18.8rem, 33lvh);
	margin-bottom: 0.5rem;
	object-fit: cover;
}
.careers-kv__text {
	padding: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	word-break: auto-phrase;
	background: var(--brand-main-color-light);
}

/* Source: src\pages\group\index.astro */
.kv-table-wrapper {
	max-width: 37.6rem;
	margin-inline: auto;
}

/* Source: src\pages\group\index.astro */
.business-contents {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.business-contents > article {
	flex: 1 0 45%;
	border-left: 4px solid var(--brand-main-color-light);
	padding-left: 0.5rem;
}
.business-contents > article > strong {
	color: var(--brand-main-color-dark);
}

@media screen and (max-width: 36rem) {
	.business-contents {
		flex-direction: column;
	}
}

/* Source: src\pages\hanbaiten\index.astro */
.hanbaiten-shinai-table {
	width: 100%;
	border-collapse: collapse;
}

.hanbaiten-shinai-table__row {
	border-bottom: 0.0625rem solid var(--border-gray);
}

.hanbaiten-shinai-table__cell {
	padding: 0.625rem;
	vertical-align: top;
	text-align: start;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--brand-black);
}

.hanbaiten-shinai-table__cell--header {
	font-weight: 700;
}

.hanbaiten-shinai-table__cell:nth-child(1) {
	width: 9.375rem;
}

.hanbaiten-shinai-table__cell:nth-child(2) {
	width: 9.375rem;
}

.hanbaiten-shinai-table__cell:nth-child(3) {
	width: 9.375rem;
}

.hanbaiten-shinai-table__cell:nth-child(4) {
	flex: 1;
}

@media screen and (max-width: 64rem) {
	.hanbaiten-shinai-table__cell {
		padding: 0.625rem 0.5rem;
		font-size: 0.875rem;
	}

	.hanbaiten-shinai-table__cell:nth-child(1) {
		width: auto;
	}

	.hanbaiten-shinai-table__cell:nth-child(2) {
		width: auto;
	}

	.hanbaiten-shinai-table__cell:nth-child(3) {
		width: auto;
	}

	.hanbaiten-shinai-table__cell:nth-child(4) {
		width: auto;
	}
}

@media screen and (max-width: 36rem) {
	.hanbaiten-shinai-table,
	.hanbaiten-shinai-table__row,
	.hanbaiten-shinai-table__cell {
		display: block;
	}

	.hanbaiten-shinai-table__row {
		border-bottom: 1px solid var(--border-gray);
		padding: 1.5rem 0 0.5rem 0;
	}

	.hanbaiten-shinai-table__cell {
		padding: 0.25rem 0.5rem;
		text-align: start;
	}

	.hanbaiten-shinai-table__cell--header {
		display: none;
	}

	.hanbaiten-shinai-table__cell:nth-child(1),
	.hanbaiten-shinai-table__cell:nth-child(2),
	.hanbaiten-shinai-table__cell:nth-child(3) {
		display: inline-block;
		width: calc(33.333% - 0.333rem);
		vertical-align: top;
	}

	.hanbaiten-shinai-table__cell:nth-child(4) {
		display: block;
		margin-top: 0.5rem;
		width: 100%;
		border: 1px solid var(--border-gray);
		background: #f9f9f9;
	}
}

/* Source: src\pages\hanbaiten-shigai\index.astro */
.hanbaiten-shigai-table {
	width: 100%;
	border-collapse: collapse;
}

.hanbaiten-shigai-table__row {
	border-bottom: 1px solid var(--border-gray);
}

.hanbaiten-shigai-table__cell {
	padding: 0.625rem;
	vertical-align: top;
	text-align: start;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--brand-black);
}

.hanbaiten-shigai-table__cell--header {
	font-weight: 700;
}

.hanbaiten-shigai-table__cell:nth-child(1) {
	width: 15.625rem;
}

.hanbaiten-shigai-table__cell:nth-child(2) {
	width: 12.5rem;
}

.hanbaiten-shigai-table__cell:nth-child(3) {
	width: 31.25rem;
}

@media screen and (max-width: 64rem) {
	.hanbaiten-shigai-table__cell {
		padding: 0.625rem 0.5rem;
		font-size: 0.875rem;
	}

	.hanbaiten-shigai-table__cell:nth-child(1) {
		width: 9.375rem;
	}

	.hanbaiten-shigai-table__cell:nth-child(2) {
		width: 8.75rem;
	}

	.hanbaiten-shigai-table__cell:nth-child(3) {
		width: auto;
	}
}

@media screen and (max-width: 36rem) {
	.hanbaiten-shigai-table__cell {
		padding: 0.5rem 0.25rem;
	}

	.hanbaiten-shigai-table__cell:nth-child(1) {
		width: auto;
	}

	.hanbaiten-shigai-table__cell:nth-child(2) {
		width: auto;
	}

	.hanbaiten-shigai-table__cell:nth-child(3) {
		width: auto;
	}
}

/* Source: src\pages\index.astro */
.top-kv {
	display: block;
	width: 100%;
	height: 18.5rem;
	object-fit: cover;
}

.content-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
}

.site-blocks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

@media (max-width: 64rem) {
	.content-wrapper {
		flex-direction: column;
	}
}

@media (max-width: 36rem) {
	.site-blocks {
		grid-template-columns: 1fr;
	}
}

/* Source: src\pages\shashi\index.astro */
.shashi__subtitle {
	margin-block: 2.5rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	color: #000;
	text-align: center;
	flex-shrink: 0;
	word-break: auto-phrase;
}

.shashi__description {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	color: #000;
}

.shashi__history-content {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	justify-content: space-between;
}

.shashi__history-image-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: center;
	flex-shrink: 0;
}

.shashi__history-image {
	width: 12.59375rem;
	height: 17.96875rem;
	object-fit: cover;
}

.shashi__history-caption {
	width: 17.875rem;
}

.shashi__history-caption-title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 0;
}

.shashi__history-caption-note {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.8;
}

.shashi__history-text {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: flex-start;
	line-height: 1.8;
	color: #000;
}

.shashi__history-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
}

.shashi__history-description {
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
}

@media (max-width: 48rem) {
	.shashi__history-content {
		flex-direction: column;
		gap: 1rem;
	}
}

.shashi__chronology-content {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: flex-start;
}

.shashi__chronology-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.8;
	color: #000;
}

.shashi__chronology-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.shashi__chronology-item {
	display: flex;
	width: 100%;
	padding: 0.625rem 0;
	gap: 0.625rem;
	border-bottom: 0.0625rem solid #e4e4e4;
	align-items: flex-start;
}

.shashi__chronology-year {
	width: 3.5rem;
	padding-block: 0.625rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	white-space: nowrap;
	flex-shrink: 0;
}

.shashi__chronology-month {
	width: 3rem;
	padding-block: 0.625rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	flex-shrink: 0;
}

.shashi__chronology-event {
	padding-block: 0.625rem;
	flex: 1 1 0;
	min-height: 1px;
	min-width: 1px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	word-break: auto-phrase;
}

.shashi__description span,
.shashi__chronology-event span {
	white-space: nowrap;
}

@media (max-width: 48rem) {
	.shashi__chronology-item {
		display: grid;
		grid-template-columns: 3.3rem 1fr;
		grid-template-areas: "year month" "event event";
		gap: 0 1.2rem;
	}

	.shashi__chronology-year {
		grid-area: year;
	}

	.shashi__chronology-month {
		grid-area: month;
	}

	.shashi__chronology-event {
		grid-area: event;
	}
}

/* Source: src\pages\soumu\index.astro */
.soumu__images {
	display: flex;
	gap: 1rem;
	margin-bottom: 2.5rem;
	justify-content: space-between;
}

.soumu__image {
	width: 13.75rem;
	aspect-ratio: 13.75 / 9.1875;
	object-fit: cover;
}

@media screen and (max-width: 64rem) {
	.soumu__images {
		flex-wrap: wrap;
		justify-content: center;
	}

	.soumu__image {
		width: calc(50% - 0.5rem);
	}
}

