@charset "UTF-8";


/* リセット */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
}
/* /リセット */



/* ベース */
:root {
	--color-red: #E71B1E;
	--color-navy: #04345A;
	--color-black: #333333;

	--inner-width: 1200px;
	--inner-padding-inline: 32px;

	--header-height: 80px;
}

@media (max-width: 1280px) {
	:root {
		--header-height: 64px;
	}
}

@media (max-width: 780px) {
	:root {
		--header-height: 120px;
		--inner-padding-inline: 16px;
	}
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
/* /ベース */

.page-container {
	margin-top: var(--header-height);
}

.page-header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--header-height);
	background-color: rgb(255 255 255 / 0.7);
	backdrop-filter: blur(1px);
}

.page-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-header__nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.header-nav {}

.header-nav__list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-nav__item {}

.header-nav__link {
	text-decoration: none;
	font-size: 16px;
	color: inherit;
}

@media (max-width: 780px) {
	.header-nav__link {
		font-size: 14px;
	}
}

@media (max-width: 1280px) {
	.page-header__logo {
		width: 320px;
	}
}

@media (max-width: 780px) {
	.page-header__inner {
		flex-direction: column;
	}

	.page-header__logo-wrapper {
		align-self: flex-start;
	}

	.page-header__nav-wrapper {
		align-self: flex-end;
	}
}


.page-main {
	padding-block: 32px;
}

.page-section + .page-section {
	margin-top: 64px;
}

.page-title {
	margin-bottom: 48px;
}

.page-title__text {
	margin-block: 0;
}

.page-footer {
	padding-block: 32px;
}

.inner {
	width: var(--inner-width);
	max-width: calc(100% - (var(--inner-padding-inline) * 2));
	margin-inline: auto;
}



.main-catchphrase {
	margin-block: 80px;
	line-height: 1.6;
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--color-black);
}


.rounded-button {
	padding-inline: 24px;
	padding-block: 12px;
	border-radius: 32px;
	border: 1px solid var(--color-black);
	text-decoration: none;
	font-size: 16px;
	color: inherit;
}

@media (max-width: 780px) {
	.rounded-button {
		padding-inline: 16px;
		padding-block: 8px;
		font-size: 14px;
	}
}


.table {
	border-collapse: collapse;
	border: 1px solid var(--color-black);
}

.table th,
.table td {
	padding: 8px;
	border: 1px solid var(--color-black);
}

.table th {
	white-space: nowrap;
}


.map {
	width: 100%;
}
