@charset "utf-8";

/* =====================================
	keyframes
===================================== */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


/* =====================================
	base
===================================== */
/* root */
:root {
	scroll-behavior: smooth;
}

/* body */
body {
	margin: 0;
}


/* =====================================
	header
===================================== */
.header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
@media (max-width: 991px) {
	.header {
		gap: 20px 10px;
		padding: 20px var(--inner-padding);
	}
}
@media (min-width: 992px) {
	.header {
		gap: 15px min(2vw, 24px);
		padding: 25px var(--inner-padding) 30px var(--inner-padding);
	}
}

/* header-brand */
.header-brand {
	flex: 1;
	margin: 0;
	font-size: 100%;
}
.header-brand__link {
	display: inline-block;
}
@media (max-width: 991px) {
	.header-brand__image--pc {
		display: none;
	}
}
@media (min-width: 992px) {
	.header-brand__image--sp {
		display: none;
	}
}

/* header-lang */
.header-lang__list {
	display: grid;
	gap: 4px;
	height: 3.4rem;
	margin: 0;
	padding: 4px;
	list-style: none;
	border-radius: 17px;
	background-color: var(--color-blue-light);
}
.header-lang__link {
	display: grid;
	align-content: center;
	justify-content: center;
	height: 100%;
	transition: color 0.3s, background-color 0.3s;
	color: inherit !important;
	border-radius: 13px;
	font-weight: var(--weight-bold);
}
.header-lang__link[aria-current] {
	color: var(--color-white) !important;
	background-color: var(--color-blue);
}
@media (max-width: 991px) {
	.header-lang__link {
		font-size: 1.0rem;
	}
	.header-lang__list {
		grid-template-columns: 4.2rem 4.2rem;
	}
}
@media (min-width: 992px) {
	.header-lang__link {
		font-size: 1.2rem;
	}
	.header-lang__list {
		grid-template-columns: 6.4rem 6.4rem;
	}
}

/* header-search */
@media (max-width: 991px) {
	.header-search {
		width: 100%;
		max-width: 300px;
		margin-bottom: 30px;
	}
	.header-search--pc {
		display: none;
	}
}
@media (min-width: 992px) {
	.header-search {
		width: 200px;
	}
	.header-search--sp {
		display: none;
	}
}

/* search-box */
.search-box {
	display: grid;
	grid-template-columns: 1fr 4.8rem;
	width: 100%;
	height: 3.4rem;
}
.search-box__field {
	appearance: none;
	min-width: 0;
	padding: 0 15px;
	border: 2px solid var(--color-blue);
	border-right: none;
	border-radius: 17px 0 0 17px;
	outline-offset: 3px;
	background: var(--color-white);
}
.search-box__button {
	appearance: none;
	padding: 0;
	transition: color 0.3s, background 0.3s;
	color: var(--color-white);
	border: 2px solid var(--color-blue);
	border-radius: 0 17px 17px 0;
	outline-offset: 3px;
	background: var(--color-blue) url("../files/ico_search_white_01.svg") no-repeat 8px center;
}
@media (hover: hover) {
	.search-box__button:hover {
		color: var(--color-blue);
		background-color: var(--color-white);
		background-image: url("../files/ico_search_blue_01.svg");
	}
}

/* cse */
.gsc-control-cse {
	margin-top: 60px;
	padding: 0 !important;
}
.gsc-option-menu-container {
	white-space: nowrap;
}
.gsst_a .gscb_a {
	color: var(--color-blue) !important;
}

/* header-jst */
.header-jst {
	line-height: 1;
}
@media (max-width: 991px) {
	.header-jst__image {
		width: 24px;
	}
}

/* header-sns */
.header-sns {
	line-height: 1;
}
@media (max-width: 991px) {
	.header-sns--pc {
		display: none;
	}
}
@media (min-width: 992px) {
	.header-sns {
		margin-left: -5px;
	}
	.header-sns--sp {
		display: none;
	}
}

/* header-hamburger */
.header-hamburger {
	appearance: none;
	position: relative;
	align-self: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
}
.header-hamburger__line,
.header-hamburger__line::before,
.header-hamburger__line::after {
	position: absolute;
	display: block;
	width: 24px;
	height: 2px;
	content: "";
	transition: top 0.3s, transform 0.3s, background-color 0.3s;
	border-radius: 1px;
	background-color: var(--color-black);
}
.header-hamburger__line {
	top: 11px;
	left: 0;
}
.header-hamburger__line::before {
	top: -7px;
}
.header-hamburger__line::after {
	top: 7px;
}
[data-hamburger][aria-expanded="true"] .header-hamburger__line {
	background-color: transparent;
}
[data-hamburger][aria-expanded="true"] .header-hamburger__line::before {
	top: 0;
	transform: rotate(45deg);
}
[data-hamburger][aria-expanded="true"] .header-hamburger__line::after {
	top: 0;
	transform: rotate(-45deg);
}
@media (min-width: 992px) {
	.header-hamburger {
		display: none;
	}
}

/* header-bar */
@media (max-width: 991px) {
	.header-bar {
		display: none;
		justify-items: center;
		width: calc(100% + 40px);
		margin: 0 -20px;
		padding: 60px 20px;
		background-color: var(--color-gray-light-xx);
	}
	body:has([data-hamburger][aria-expanded="true"]) .header-bar {
		display: grid;
		animation: fadeIn 0.3s forwards;
	}
}
@media (min-width: 992px) {
	.header-bar {
		width: 100%;
	}
}

/* header-navi */
.header-navi__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-navi__link {
	display: grid;
	align-content: center;
	justify-content: center;
	height: 100%;
	text-decoration: none;
	color: inherit !important;
	font-size: 1.8rem;
	font-weight: var(--weight-bold);
	line-height: 1;
}
.header-navi__link[aria-current] {
	text-decoration: underline;
}
@media (max-width: 991px) {
	.header-navi {
		margin-bottom: 60px;
	}
	.header-navi__list {
		display: grid;
		gap: 30px;
		justify-items: center;
	}
}
@media (min-width: 992px) {
	.header-navi__list {
		display: flex;
		height: 2.6rem;
	}
	.header-navi__item {
		width: 100%;
	}
	.header-navi__item:not(:first-child) {
		border-left: 1px solid var(--color-black);
	}
}
@media (hover: hover) {
	.header-navi__link:hover {
		text-decoration: underline;
	}
}


/* =====================================
	main
===================================== */
/* breadcrumb */
.breadcrumb {
	padding: 0 var(--inner-padding) 20px var(--inner-padding);
}
.breadcrumb__list {
	display: flex;
	gap: 5px 0;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}
.breadcrumb__item:not(:last-child)::after {
	margin: 0 12px;
	content: url("../files/ico_chevron-thin_black_right_01.svg");
	vertical-align: middle;
}
.breadcrumb__link {
	color: inherit !important;
}
@media (max-width: 991px) {
	.breadcrumb__list {
		font-size: 1.2rem;
	}
}
@media (min-width: 992px) {
	.breadcrumb__list {
		font-size: 1.4rem;
	}
}

/* cover */
.cover {
	padding: 75px var(--inner-padding);
	background: var(--gradient-blue), url("../files/bg_cover_01.png") no-repeat left calc(50% + 310px) top -25px;
	background-size: auto, 715px;
}
.cover-heading {
	margin: 0;
	color: var(--color-blue);
	font-weight: var(--weight-black);
	line-height: var(--line-height-narrow);
}
@media (max-width: 991px) {
	.cover-heading {
		font-size: 3.6rem;
	}
}
@media (min-width: 992px) {
	.cover-heading {
		font-size: 4.6rem;
	}
}

/* contents */
.contents {
	display: flex;
	gap: 80px min(7.9vw, 95px);
	padding: 60px var(--inner-padding);
}
.contents__main {
	flex: 1;
	min-width: 0;
}
:where(.contents__main, .contents__sub) > :first-child {
	margin-top: 0 !important;
}
:where(.contents__main, .contents__sub) > :last-child {
	margin-bottom: 0 !important;
}
@media (max-width: 991px) {
	.contents {
		flex-direction: column;
	}
}
@media (min-width: 992px) {
	.contents__sub {
		width: 265px;
	}
}

/* heading-sub */
.heading-sub {
	margin: 60px 0 15px 0;
	padding: 1px 0 1px 16px;
	border-left: 6px solid var(--color-black);
	font-size: 2.0rem;
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
}
.heading-sub + * {
	margin-top: 0 !important;
}

/* quick-access */
.quick-access {
	margin: 0;
	padding: 0;
	list-style: none;
}
.quick-access__item {
	border-bottom: 1px solid var(--color-gray-light);
}
.quick-access__link {
	display: block;
	padding: 25px 10px 25px 50px;
	text-decoration: none;
	color: inherit !important;
	background: no-repeat 2px center;
	font-size: 1.6rem;
	font-weight: var(--weight-bold);
}
.quick-access__link--contract {
	background-image: url("../files/ico_quick-access_contract_01.svg");
}
.quick-access__link--link {
	background-image: url("../files/ico_quick-access_link_01.svg");
}
.quick-access__link--brochure {
	background-image: url("../files/ico_quick-access_brochure_01.svg");
}
.quick-access__link--projectdb {
	background-image: url("../files/ico_quick-access_projectdb_01.svg");
}
@media (hover: hover) {
	.quick-access__link:hover {
		text-decoration: underline;
	}
}


/* =====================================
	footer
===================================== */
/* footer-bar */
.footer-bar {
	display: grid;
	background: var(--gradient-blue);
}
@media (max-width: 991px) {
	.footer-bar {
		gap: 60px;
		padding: 60px var(--inner-padding);
	}
}
@media (min-width: 992px) {
	.footer-bar {
		gap: 40px 0;
		grid-template-rows: auto 1fr;
		grid-template-columns: 1fr auto;
		padding: 85px var(--inner-padding);
	}
}

/* footer-brand */
.footer-brand {
	grid-row: 1 / 3;
	font-size: 1.4rem;
	line-height: var(--line-height-narrow);
}
.footer-brand__name {
	font-weight: var(--weight-bold);
}
.footer-brand__division {
	font-size: 2.0rem;
	font-weight: var(--weight-bold);
}
.footer-brand__address {
	margin-top: 15px;
}
.footer-brand__button {
	margin-top: 20px;
}
@media (max-width: 991px) {
	.footer-brand {
		text-align: center;
	}
}

/* footer-navi */
.footer-navi {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.6rem;
	font-weight: var(--weight-bold);
}
.footer-navi__link {
	text-decoration: none;
	color: inherit !important;
}
@media (max-width: 991px) {
	.footer-navi {
		gap: 15px 30px;
		flex-wrap: wrap;
		justify-content: center;
	}
}
@media (min-width: 992px) {
	.footer-navi {
		gap: min(3.3vw, 40px);
		justify-content: flex-end;
	}
}
@media (hover: hover) {
	.footer-navi__link:hover {
		text-decoration: underline;
	}
}

/* footer-utility */
.footer-utility {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.4rem;
}
.footer-utility__link {
	color: inherit !important;
}
@media (max-width: 991px) {
	.footer-utility {
		gap: 15px 30px;
		flex-wrap: wrap;
		justify-content: center;
	}
}
@media (min-width: 992px) {
	.footer-utility {
		gap: min(2.9vw, 35px);
		justify-content: flex-end;
	}
}

/* footer-copyright */
.footer-copyright {
	display: block;
	padding: 26px var(--inner-padding);
	text-align: center;
	font-size: 1.4rem;
}


/* =====================================
	tab
===================================== */
.tablist {
	display: flex;
	gap: 5px;
	margin: 0 0 15px 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid var(--color-black);
}
.tablist__button {
	appearance: none;
	position: relative;
	display: grid;
	align-content: center;
	justify-content: center;
	height: 100%;
	padding: 15px 0;
	text-decoration: none;
	color: inherit !important;
	border: none;
	border-radius: 0;
	background: none;
	font-weight: var(--weight-bold);
}
.tablist__button::before {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: var(--color-black);
}
.tablist__button[aria-selected="true"]::before,
.tablist__button[aria-current="page"]::before {
	content: "";
}
.tablist__button[aria-selected="true"]::after,
.tablist__button[aria-current="page"]::after {
	position: absolute;
	bottom: -16px;
	left: calc(50% - 7px);
	width: 13px;
	height: calc(tan(60deg) * 13px / 2);
	content: "";
	background-color: var(--color-black);

	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tabpanel__message {
	margin-top: 35px;
}
.tabpanel__action {
	margin-top: 35px;
	text-align: right;
}
.tabpanel__action-link {
	color: inherit !important;
	font-weight: bold;
}
@media (max-width: 991px) {
	.tablist__item {
		flex-grow: 1;
	}
	.tablist__button {
		flex-grow: 1;
		font-size: 1.6rem;
	}
}
@media (min-width: 992px) {
	.tablist__button {
		width: 15.0rem;
		font-size: 1.8rem;
	}
}
@media (hover: hover) {
	.tablist__button:hover::before {
		content: "";
	}
}


/* =====================================
	post
===================================== */
/* post */
.post {
	display: grid;
	gap: 15px 20px;
	grid-template-columns: 9.5rem 1fr;
	justify-items: start;
	padding: 35px 0;
	border-bottom: 1px solid var(--color-gray-light);
}
.post__image {
	width: 100%;
	border-radius: 5px;
}
.post__date {
	white-space: nowrap;
	font-size: 1.4rem;
}
.post__body {
	grid-column: 1 / 3;
}
.post__body > :first-child {
	margin-top: 0 !important;
}
.post__body > :last-child {
	margin-bottom: 0 !important;
}
.post__heading {
	margin: 0;
	font-size: 1.6rem;
	font-weight: var(--weight-bold);
}
@media (max-width: 991px) {
	.post__image {
		grid-column: 1 / 3;
	}
}
@media (min-width: 992px) {
	.post:has(.post__image) {
		grid-template-rows: auto 1fr;
		grid-template-columns: 40% 9.5rem 1fr;
	}
	.post__image {
		grid-row: 1 / 3;
	}
	.post:has(.post__image) .post__body {
		grid-column: 2 / 4;
	}
}


/* =====================================
	home
===================================== */
/* hero */
.hero {
	display: grid;
	min-height: 510px;
	padding: 0 max(calc(50% - 600px), 30px);
	background: var(--gradient-blue), url("../files/bg_home_hero_01.png") no-repeat;
}
@media (max-width: 991px) {
	.hero {
		padding-top: 80px;
		background-position: 0 0, right -150px bottom 10px;
		background-size: auto, max(65vw, 500px) auto;
	}
}
@media (min-width: 992px) {
	.hero {
		align-content: center;
		background-position: 0 0, calc(50% + 275px) center;
		background-size: auto, 650px auto;
	}
}

/* pickup */
.pickup {
	padding: 25px;
	border-radius: 15px;
	background: var(--gradient-blue);
}
.pickup__heading {
	margin: -5px 0 20px 0;
	font-size: 3.0rem;
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
}
.pickup__posts {
	margin: -35px 0;
}
.pickup__post:last-child {
	border-bottom: none;
}

/* heading-home */
.heading-home {
	margin: 60px 0 20px 0;
	font-size: 3.6rem;
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
}
