@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;600&family=IBM+Plex+Sans:wght@400;600&family=IBM+Plex+Serif:ital,wght@1,400;1,600&display=swap");


/* --------------------------------
	Layout

	max-width はコンテンツ幅を表す。
	padding は幅に含めない（content-box）。
-------------------------------- */


html.lang-ja {
	font-family: "IBM Plex Sans JP", sans-serif;
}

html.lang-en {
	font-family: "IBM Plex Sans", sans-serif;
}

em,
.is-serif-italic {
	font-family: "IBM Plex Serif", serif;
	font-style: italic;
}

.brpc {	display:block;}
.brsp {	display:none;}
@media (max-width: 767px) {
	.brpc {	display:none;}
	.brsp {	display:block;}
}

body {
	background: url(../../images/bg_pc.gif) repeat;
}

/* --------------------------------
	Variables
-------------------------------- */
:root {
	--color-text: #222;
	--color-grn: #009844;
	--color-hover: #082;
	--color-lgrn: #cce6cc;
	--color-yel: #ef9;
	--color-border: #d9d9d9;

	/* Layout */
	--container-width: 1128px;

	/* Animation */
	--transition: .3s ease;
}



/* --------------------------------
  Header
-------------------------------- */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: #fff;
	color: var(--color-text);
}


.site-header--legacy {
	display: none;
}

.site-header--main {
	position: sticky;
	top: 0;
	z-index: 100;
	color: var(--color-grn);
	background: #fff;
	border-top: 16px solid var(--color-grn);
	transition: transform var(--transition);
}
.site-header--main.is-hidden {
	transform: translateY(-100%);
}
.site-header__title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	padding: 16px 24px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.site-header__title a {
	color: inherit;
}

/* --------------------------------
  Header navigation
-------------------------------- */
.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
	padding: 0 max(24px, calc((100% - 1080px) / 2));
	border-top: 1px solid var(--color-grn);
}

.global-nav__list {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.global-nav__list a {
	display: block;
	color: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	white-space: nowrap;
}

/* --------------------------------
  Header utility
-------------------------------- */
.site-header__utility {
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-header__utility > a {
	color: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	white-space: nowrap;
}

.menu-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 22px;
	padding: 0;
	color: inherit;
	background: transparent;
	border: 0;
}

.menu-button span {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
}

/* --------------------------------
  Header mobile
-------------------------------- */
@media (max-width: 767px) {
	.site-header--main {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 56px;
		min-height: 72px;
		border-top: 0;
		border-left: 10px solid var(--color-grn);
		border-bottom: 1px solid var(--color-grn);
	}

	.site-header__title {
		justify-content: flex-start;
		min-width: 0;
		min-height: 71px;
		padding: 12px 16px 12px 24px;
		font-size: 16px;
		line-height: 1.45;
		text-align: left;
	}

	.site-header__nav {
		display: block;
		min-height: 71px;
		padding: 0;
		border-top: 0;
		border-bottom: 0;
		border-left: 1px solid var(--color-grn);
	}

	.global-nav,
	.site-header__utility > a {
		display: none;
	}

	.site-header__utility {
		display: block;
		width: 100%;
		height: 100%;
	}

	.menu-button {
		width: 100%;
		height: 71px;
	}
}







/* --------------------------------
  Footer
-------------------------------- */
.site-footer {
	color: #fff;
	padding: 40px 0 0;
	background: var(--color-grn);
	position: relative;
}

.site-footer__primary-inner {
	display: grid;
	grid-template-columns: minmax(0, 455px) minmax(280px, 1fr);
	gap: clamp(40px, 10vw, 220px);
	max-width: var(--container-width);
	width: 100%;
	margin: 0 auto;
	padding: 0 20px 40px;
	box-sizing: content-box;
}

.site-footer__introduction h2 {
	margin: 0 0 40px;
	font-size: 24px;
	font-weight: 600;
}

.site-footer__introduction p {
	font-size: 14px;
	line-height: 2;
}

/* --------------------------------
  Footer navigation
-------------------------------- */

.site-footer__navigation {
	display: grid;
	grid-template-columns: minmax(0, 180fr) minmax(0, 190fr);
	gap: clamp(16px, 3vw, 30px);
	width: 100%;
}

.site-footer__navigation-list li + li {
	margin-top: 13px;
}

.site-footer__navigation-list a {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
}

.site-footer__back-to-top {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 120px;
	height: 120px;
}

.site-footer__back-to-top::before,
.site-footer__back-to-top::after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
}

.site-footer__back-to-top::before {
	width: 22px;
	height: 22px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: translate(-50%, -50%) rotate(45deg);
	transition:
		top var(--transition),
		border-color var(--transition);
}

.site-footer__back-to-top::after {
	width: 2px;
	height: 29px;
	background: #fff;
	transform: translate(-50%, -50%);
	transition:
		height var(--transition),
		background-color var(--transition);
}

.site-footer__back-to-top:hover::before {
	top: calc(50% - 10px);
	border-color: var(--color-yel);
}
.site-footer__back-to-top:hover::after {
	background: var(--color-yel);
	height: 49px;
}

/* --------------------------------
	Footer logo
-------------------------------- */
.site-footer__secondary {
	min-height: 128px;
	padding: 20px 24px;
	color: #666;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.site-footer__secondary a {
	display: block;
	flex: 0 1 auto;
}

.site-footer__secondary a img {
	display: block;
}

.site-footer__secondary a img {
	width: 100%;
}

.site-footer__secondary p {
	flex: 0 0 auto;
	font-size: 16px;
	line-height: 1.5;
	text-align: right;
}


/* --------------------------------
  Footer mobile
-------------------------------- */
@media (max-width: 767px) {
	.site-footer {
		font-size: 14px;
	}

	.site-footer__primary-inner {
		display: block;
		width: 87%;
	}

	.site-footer__introduction {
		border-bottom: 1px solid #fff;
		padding: 0 5px 40px;
		margin: 0 0 40px;
	}

	.site-footer__introduction h2 {
		margin: 0 0 20px;
		font-size: 18px;
	}

	.site-footer__title {
		margin-bottom: 18px;
		padding: 0 8px;
		font-size: 18px;
		line-height: 1.55;
	}

	.site-footer__description {
		max-width: none;
		padding: 0 8px;
		line-height: 1.5;
	}

	.site-footer__navigation-wrap {
		display: block;
		padding-top: 34px;
		margin-top: 36px;
		border-top: 1px solid #fff;
	}

	.site-footer__navigation {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 16px;
		padding: 0 5px;
	}

	.site-footer__navigation-list li + li {
		margin-top: 5px;
	}

	.site-footer__navigation-list a {
		display: block;
		overflow-wrap: anywhere;
	}

	.site-footer__back-to-top {
		display: none;
	}

	.site-footer__secondary {
		min-height: auto;
		padding: 18px 5px 14px;
		flex-direction: column;
		justify-content: flex-start;
		gap: 10px;
	}


	.site-footer__secondary a {
		flex: none;
		width: 100%;
	}

	.site-footer__secondary a img {
		max-width: 730px;
	}

	.site-footer__secondary p  {
		font-size: 12px;
		text-align: center;
	}
}


/* --------------------------------
	Main
-------------------------------- */
.site-main {
	width: calc(100% - 40px);
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: content-box;
}

/* --------------------------------
	Home hero
-------------------------------- */
.home-hero {
	margin: 40px 0;
}

.home-hero__message {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 432px;
	padding: 48px 40px;
	text-align: center;
	background: url(../../images/bg-home-hero_pc.gif) center / cover no-repeat;
	border: 16px solid var(--color-grn);
}

.home-hero__title {
	margin: 0;
	font-size: clamp(36px, 3.4vw, 48px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.home-hero__description {
	margin: 34px 0 0;
	font-size: clamp(24px, 2.2vw, 32px);
	font-weight: 600;
	line-height: 1.4;
}

/* --------------------------------
	Home hero navigation
-------------------------------- */
.home-hero__navigation {
	margin-top: 40px;
}

.home-hero__navigation ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.home-hero__navigation a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 120px;
	padding: 24px 80px 24px 64px;
	color: #fff;
	background: var(--color-grn);
	border-radius: 60px;
	text-decoration: none;
	transition:
		color var(--transition),
		background-color var(--transition);
}

.home-hero__navigation a span {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
}

.home-hero__navigation a::before {
	position: absolute;
	top: 50%;
	right: 38px;
	width: 29px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: translateY(-50%);
	transition: width var(--transition);
}

.home-hero__navigation a::after {
	position: absolute;
	top: 50%;
	right: 38px;
	width: 20px;
	height: 20px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

.home-hero__navigation a:hover {
	color: var(--color-yel);
	background: var(--color-hover);
}

.home-hero__navigation a:hover::before {
	width: 49px;
}



/* --------------------------------
	Home hero mobile
-------------------------------- */
@media (max-width: 767px) {
	main {
		padding: 0 16px;
	}

	.home-hero {
		margin: 24px 0 36px;
	}

	.home-hero__message {
		min-height: 336px;
		padding: 30px 14px;
		background-image: url(../../images/bg-home-hero_sp.gif);
		border-width: 8px;
	}

	.home-hero__title {
		font-size: 28px;
		line-height: 1.5;
	}

	.home-hero__description {
		font-size: 20px;
		line-height: 1.5;
	}

	.home-hero__navigation {
		margin-top: 16px;
	}

	.home-hero__navigation ul {
		display: block;
	}

	.home-hero__navigation li + li {
		margin-top: 8px;
	}

	.home-hero__navigation a {
		min-height: 64px;
		padding: 14px 62px 14px 34px;
		border-radius: 32px;
	}

	.home-hero__navigation a span {
		font-size: 18px;
	}

	.home-hero__navigation a::before {
		right: 24px;
		width: 24px;
	}

	.home-hero__navigation a::after {
		right: 24px;
		width: 12px;
		height: 12px;
	}

	.home-hero__navigation a:hover::before {
		width: 32px;
	}

	html.lang-en .home-hero__title {
		font-size: 28px;
		line-height: 1.25;
	}

	html.lang-en .home-hero__description {
		font-size: 18px;
		line-height: 1.35;
	}

}





/* --------------------------------
	Home news
-------------------------------- */
.home-news {
	margin: 40px 0;
}

.home-news__title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 22px 0;
	color: var(--color-grn);
	background: #fff;
	border-top: 1px solid var(--color-grn);
	border-bottom: 1px solid var(--color-grn);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

/* --------------------------------
	Home news filter
-------------------------------- */
.home-news__filter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.home-news__filter a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	min-height: 48px;
	padding: 10px 24px;
	color: var(--color-grn);
	background: #fff;
	border: 1px solid var(--color-grn);
	border-radius: 48px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	transition:
		color var(--transition),
		background-color var(--transition);
}


.home-news__filter a:hover,
.home-news__filter a.is-current {
	color: #fff;
	background: var(--color-grn);
	border-color: var(--color-grn);
}

/* --------------------------------
	Home news grid
-------------------------------- */
.home-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px 24px;
	margin-top: 40px;
	padding: 0;
	list-style: none;
}

.home-news-card {
	min-width: 0;
}

.home-news-card > a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.home-news-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	padding: 12px 12px 12px 16px;
	color: #fff;
	background: var(--color-grn);
	transition:
		color var(--transition),
		background-color var(--transition);
}

.home-news-card__category {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.home-news-card__icon {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	background: currentColor;
	-webkit-mask: var(--icon) no-repeat center / contain;
	mask: var(--icon) no-repeat center / contain;
}

.home-news-card__body {
	padding: 24px 28px 26px;
	color: var(--color-text);
	background: #fff;
	border: 4px solid var(--color-grn);
	transition:
		color var(--transition),
		background-color var(--transition);
}

.home-news-card__body time {
	display: block;
	font-size: 16px;
	line-height: 1.5;
}

.home-news-card__body h3 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.home-news-card > a:hover .home-news-card__header {
	color: var(--color-yel);
	background: var(--color-hover);
}

.home-news-card > a:hover .home-news-card__body {
	color: var(--color-yel);
	background: var(--color-grn);
}

/* --------------------------------
	Home news archive
-------------------------------- */
.home-news__archive {
	margin-top: 40px;
	text-align: center;
}

.home-news__archive a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 356px;
	min-height: 48px;
	padding: 15px 32px;
	color: var(--color-grn);
	background: #fff;
	border: 1px solid var(--color-grn);
	border-radius: 72px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	transition:
		color var(--transition),
		background-color var(--transition),
		border-color var(--transition);
}

.home-news__archive a:hover {
	color: var(--color-yel);
	background: var(--color-hover);
	border-color: var(--color-hover);
}

/* --------------------------------
	Home news English
-------------------------------- */
html.lang-en .home-news-card__body h3 {
	line-height: 1.5;
}

/* --------------------------------
	Home news mobile
-------------------------------- */
@media (max-width: 767px) {
	.home-news {
		margin: 36px 0 80px;
	}

	.home-news__title {
		min-height: 64px;
		padding: 16px;
		font-size: 18px;
	}

	.home-news__filter {
		display: none;
	}

	.home-news__filter button {
		font-size: 14px;
	}

	.home-news__grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 24px;
	}

	.home-news-card__header {
		min-height: 64px;
		padding: 0 8px 0 14px;
	}

	.home-news-card__category {
		font-size: 14px;
	}

	.home-news-card__header img {
		width: 56px;
		height: 56px;
	}

	.home-news-card__body {
		min-height: 148px;
		padding: 20px 22px 24px;
	}

	.home-news-card__body time {
		font-size: 14px;
	}

	.home-news-card__body h3 {
		margin-top: 10px;
		font-size: 18px;
		line-height: 1.6;
	}

	.home-news__archive {
		justify-content: stretch;
		margin-top: 32px;
	}

	.home-news__archive a {
		width: 100%;
		min-width: 0;
		font-size: 14px;
	}

	.home-news__archive a::before {
		right: 24px;
		width: 24px;
	}

	.home-news__archive a::after {
		right: 24px;
		width: 12px;
		height: 12px;
	}

	.home-news__archive a:hover::before {
		width: 36px;
	}
}