@charset 'UTF-8';

* {
	box-sizing: border-box;
}

:root {
	--arrow-border-style: solid 2px var(--corporate-color);
}

.container {
	width: 93.75%;
}

.mainVisual_area {
	position: relative;
	height: clamp(192px, 20vw, 230px);
	margin: 0 auto;
	padding: 1em 0;
	background-image: url(../images/mv.jpg);
	background-position: center center;
	background-size: cover;
}

.mainVisual_area::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: '';
	opacity: .5;
	background: #000;
}

.h1group {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	color: #fff;
	text-shadow: 0 0 10px black;
}

@supports (font-variation-settings: 'wght'700) {
	.h1group * {
		font-family: 'Noto Sans JP';
		font-weight: 700;
	}
}

@supports (font-variation-settings: 'wght'400) {
	.h1group .lead-text {
		font-family: 'Noto Sans JP';
		font-weight: 400;
	}
}

.h1group h1 {
	font-size: clamp(20px, 7.6vw, 48px);
	margin-bottom: clamp(10px, 3.6vw, 24px);
	text-align: center;
	color: #fff;
}

.lead-text {
	font-size: clamp(12px, 3.3vw, 20px);
	line-height: 1.5;
	width: 80%;
	margin: 0 auto;
}

.btn-arrow {
	color: #333;
}

.btn-arrow::before {
	display: inline-block;
	width: .5em;
	height: .5em;
	margin-right: 1em;
	content: '';
	transform: rotate(45deg);
	border-top: var(--arrow-border-style);
	border-right: var(--arrow-border-style);
}

.page-link .nav-area {
	font-family: 'Noto Sans JP';
	font-size: clamp(11px, 3vw, 13px);
	display: grid;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1em;
	grid-template-columns: repeat(auto-fill, clamp(13em, 50vw, 14.5ch));
	grid-gap: .75em 0;
}

.page-link .nav-area li {
	height: 100%;
	padding-bottom: .5em;
}

.page-link .nav-area li a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 1.25em 0 .5em;
}

.page-link .nav-area li:nth-last-of-type(1) {
	flex-grow: 1;
}

.page-link .icon {
	max-width: 32px;
	margin-right: 1em;
	max-height: 32px;
}

.page-link-arrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	color: #333;
	--arrow-style: solid 2px #666;
	line-height: 1.2;
	text-align: center;
}

.page-link-arrow::after {
	position: relative;
	top: -.175em;
	display: inline-block;
	width: .45em;
	margin-left: 1em;
	content: '';
	transform: rotate(45deg);
	border-right: var(--arrow-style);
	border-bottom: var(--arrow-style);
	aspect-ratio: 1/1;
}

.service-wrapper {
	padding: 2em 0;
	background: #f9f9f9;
}

.service {
	display: grid;
	margin-bottom: 40px;
	grid-gap: 1em;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.service>h2 {
	font-size: 126%;
	font-weight: bold;
	margin-bottom: .25em;
	padding-bottom: .25em;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100% 2px;
}

.service>h2 .icon-wrapper {
	display: inline-block;
	width: clamp(32px, 2em, 40px);
	margin-right: .5em;
	aspect-ratio: 1/1;
}

.card1 {
	position: relative;
	display: inline-block;
	transition: transform .2s ease-in-out;
	border-radius: 4px;
	background: #fff !important;
	box-shadow: 0 0 1px rgb(124 124 124 / 80%), 0 0 5px rgb(175 175 175 / 50%);
}

.card1:hover {
	transform: scale(1.03);
	box-shadow: 0 0 1px 2px rgb(191 191 191 / 50%), 0 0 10px rgb(128 128 128 / 50%);
}

.account {
	position: relative;
	display: block;
	color: #333;
}

.account:hover {
	text-decoration: none;
	color: #333;
}

.account[href^='http']::before {
	position: absolute;
	top: 5px;
	right: 10px;
	content: url(/share/images/icon_external_link_s.gif);
}

.account hgroup {
	display: grid;
	align-items: center;
	padding: 1.5em 1em;
	border-radius: 4px;
	background: #eee;
	grid-template-columns: clamp(80px, 32%, 100px) 1fr;
	grid-template-areas: 'logo account-name'
		'logo outline';
	grid-gap: .5em 1.5em;
}

.account .profile-image {
	overflow: hidden;
	margin-bottom: 0;
	border-radius: 100%;
	background: #fff;
	grid-area: logo;
	aspect-ratio: 1/1;
}

.profile-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 1/1;
}

.account h3 {
	font-size: 116%;
	grid-area: account-name;
}

.account .outline {
	grid-area: outline;
}

.account .summary {
	padding: 1em;
}

@media (min-width:980px) {
	.container {
		width: 960px;
	}

	.page-link .nav-area li {
		position: relative;
	}

	.page-link .nav-area li::before,
	.page-link .nav-area li:nth-last-of-type(1)::after {
		position: absolute;
		top: 50%;
		left: 0;
		display: inline-block;
		width: 1px;
		height: 50%;
		content: '';
		transform: translateY(-50%);
		background: #ddd;
	}

	.page-link .nav-area li:nth-last-of-type(1)::after {
		right: 0;
		left: auto;
	}

	.page-link .nav-area li a {
		justify-content: center;
		padding: 0;
	}

	.page-link-arrow {
		width: auto;
	}

	.page-link .nav-area {
		grid-template-columns: repeat(auto-fit, 20.5ch);
	}
}

@media (min-width:35em) {
	.service {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1em 2em;
	}

	.service>h2 {
		grid-column: 1/-1;
	}
}

@media (orientation:portrait) and (min-height:640px) {
	.mainVisual_area {
		height: auto;
		aspect-ratio: 640/320;
	}
}