@charset "UTF-8";
/* ============================== */
/*  TOP PAGE */
/* ============================== */
/* slide-dots共通*/
.slide-dots {
	text-align: center;
	font-size: 10px; /* Font Sizeで大きさを指定 */
	line-height: 1;
	position: absolute;
	bottom: 20px;
	width: 100%;
	left: 0;
}
.slide-dots li {
	display: inline-block;
	margin: 0 4px;
	padding: 0;
}
.slide-dots li button {
	position: relative;
	text-indent: -9999px;
	width: 3.5em;
	height: 0.4em;
	padding: 0;
	box-sizing: border-box;
	appearance: none;
	border: none;
	background: transparent;
	margin: 0;
}
.slide-dots li button:focus {
	outline: none;
}
.slide-dots li button::-moz-focus-inner {
	border: 0;
}
.slide-dots li button::before {
	content: '';
	text-indent: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #C1C1C1;
	border-radius: 0;
}
.slide-dots li.slick-active button::before {
	background: var(--theme-color);
}
@media screen and (min-width: 768px), print {
	.slide-dots li button {
		width: 4em;
	}
}
@media screen and (min-width: 1232px), print {
	.slide-dots li button {
		width: 5em;
	}
}
/* TOPPAGE HERO  ====================*/
/* スライダー読み込み時 */
#js-slider1 {
	transition: 300ms;
	height: 37.5vw;
	position: relative;
	overflow: hidden;
}
#js-slider1::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	transition: 1000ms;
	pointer-events: none;
	z-index: 200;
}
#js-slider1::after {
	content: "";
	position: absolute;
	top: calc(50% - 16px);
	left: calc(50% - 16px);
	width: 32px;
	height: 32px;
	background: url("../imgs/common/loading-icon.gif") no-repeat center;
	background-size: 100%;
	z-index: 201;
}
#js-slider1.slick-initialized {
	opacity: 1;
	height: auto;
	overflow: auto;
}
/* end of スライダー読み込み時 */
#js-slider1.slick-initialized::before {
	opacity: 0;
}
#js-slider1.slick-initialized::after {
	display: none;
}
.top-page-hero-slider li a {
	position: relative;
	display: block;
}
.top-page-hero-slider li a:hover {
	opacity: 0.7;
}
.top-page-hero-slider li p.lead-copy {
	font-weight: 700;
	line-height: 1.75;
	font-feature-settings: "palt"1;
}
/* HERO BUSINESS */
.top-page-hero-slider li.hero-business {
	display: flex;
}
.top-page-hero-slider li.hero-business > * {
	width: 50%;
}
.top-page-hero-slider li.hero-business .text {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 17px;
	font-size: 106.25%;
	width: 100%;
	padding: 15px 12px;
}
.top-page-hero-slider li.hero-business h2 {
	margin: 0;
	font-size: inherit;
}
.top-page-hero-slider li.hero-business h2 .en {
	display: none;
	margin: 0;
}
.top-page-hero-slider li.hero-business h2 .ja {
	display: block;
	line-height: 1.27;
	word-break: keep-all;
}
.top-page-hero-slider li.hero-business p.lead-copy {
	font-size: 12px;
	font-size: 75%; /*fontset*/
	font-size: 85.714285714285714%;
}
.top-page-hero-slider li.hero-business .icon {
	width: 2.3em;
	margin-right: 0.3em;
}
.top-page-hero-slider li.hero-business .hero-blank {
	background: url("../imgs/common/mark_nespa.svg") no-repeat center;
	background-size: contain;
}
@media screen and (min-width: 768px), print {
	.top-page-hero-slider li.hero-business .text {
		font-size: 24px;
		font-size: 3.12vw;
		padding: 0 7.3125vw 50px;
	}
}
@media screen and (min-width: 1232px), print {
	.top-page-hero-slider li.hero-business .text {
		font-size: 36px;
		padding: 0 40px 60px;
	}
	.top-page-hero-slider li.hero-business h2 .en {
		display: block;
		font-size: 50%;
		margin: 0 0 0.25em;
	}
}
/* TOPPAGE HERO SLIDE ARROW */
#js-slider1 .slide-arrow {
	position: absolute;
	font-size: 12px;
	top: calc(50% - 1.125em);
	width: 2.25em;
	height: 2.25em;
	z-index: 2;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
}
#js-slider1 .slide-arrow.prev-arrow {
	left: 10px;
}
#js-slider1 .slide-arrow.next-arrow {
	right: 10px;
}
#js-slider1 .slide-arrow::after {
	content: "";
	width: 0.6em;
	height: 0.6em;
	position: absolute;
	top: calc(50% - 0.3em);
	transform: rotate(45deg);
	border: 2px solid var(--text-color);
}
#js-slider1 .slide-arrow.prev-arrow::after {
	left: calc(50% - 0.2em);
	border-top: none;
	border-right: none;
}
#js-slider1 .slide-arrow.next-arrow::after {
	right: calc(50% - 0.2em);
	border-bottom: none;
	border-left: none;
}
@media screen and (min-width: 1232px), print {
	#js-slider1 .slide-arrow {
		font-size: 29px;
	}
	#js-slider1 .slide-arrow.prev-arrow {
		left: 24px;
	}
	#js-slider1 .slide-arrow.next-arrow {
		right: 24px;
	}
}
#js-slider1 {
	margin-bottom: 0;
}
#js-slider1 .slide-dots {
	text-align: center;
	font-size: 10px; /* Font Sizeで大きさを指定 */
	line-height: 1;
	position: absolute;
	bottom: -25px;
	width: 100%;
	left: 0;
}
.top-page-hero {
	padding-bottom: 25px;
}
@media screen and (min-width: 768px), print {
	#js-slider1 {
		margin-bottom: 0;
	}
	#js-slider1 .slide-dots {
		bottom: 15px;
	}
	.top-page-hero {
		padding-bottom: 0;
	}
}
@media screen and (min-width: 1232px), print {
	#js-slider1 .slide-dots {
		bottom: 20px;
	}
}
/* 緊急のお知らせ  */
.urgent-notice {
	border: 1px solid var(--red);
	margin-top: 25px;
	margin-bottom: 30px;
}
.urgent-notice h2 {
	color: var(--red);
	border-bottom: 1px solid var(--red);
	font-size: 15px;
	font-size: 93.75%; /*fontset*/
	line-height: 1.388888888888889;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.75em 0.5em;
	margin: 0;
}
.urgent-notice h2::before {
	content: "";
	display: block;
	width: 1.388888888888889em;
	height: 1.388888888888889em;
	background: url("../imgs/common/ico_notice.svg") no-repeat center;
	margin-right: 0.333333em;
}
.urgent-notice .section-body {
	padding: 10px 10px;
}
.urgent-notice-list {
	margin-top: -0.5em;
}
.urgent-notice-list li {
	border-bottom: 1px solid #C1C1C1;
	color: #505050;
}
.urgent-notice-list li a {
	display: block;
	padding: 0.5em 0;
	color: inherit;
	text-decoration: none;
}
.urgent-notice-list .date {
	color: var(--red);
}
@media screen and (min-width: 768px), print {
	.urgent-notice {
		margin: var(--y-margin-xl) var(--x-margin);
	}
	.urgent-notice h2 {
		font-size: 18px;
		font-size: 112.5%; /*fontset*/
	}
	.urgent-notice .section-body {
		padding: 30px 45px;
	}
	.urgent-notice-list {
		column-count: 2;
		column-gap: 4em;
		margin-top: -15px;
	}
	.urgent-notice-list li {
		break-inside: avoid;
	}
	.urgent-notice-list li a {
		padding: 0.9375em 0;
	}
}
.urgent-notice-list li a:hover {
	background-color: var(--hover-bg);
}
/* ソーシャル */
.head-social {
  margin:var(--y-margin-m) var(--x-margin);
}
.head-social ul{
  display: flex;
  gap:10px;
}
.head-social ul a{
  display: block;
}
.head-social ul a:hover{
	opacity: 0.7;
}

/* バナー */
.head-banners {
	margin-top: var(--y-margin-xl);
	margin-bottom: calc(var(--y-margin-xl) + 32px);
}
.head-banners .banner-list-item {
	padding: 0 5px;
}
.head-banners .slide-dots {
	bottom: -32px;
}
/* js-slider2 slide-arrow*/
#js-slider2 .slide-arrow {
	position: absolute;
	top: calc(50% - 1.75em);
	width: 2.45em;
	height: 3.5em;
	z-index: 2;
	cursor: pointer;
	font-size: 10px;
	background: #000;
}
#js-slider2 .slide-arrow.prev-arrow {
	left: 10px;
	background: url("../imgs/common/chv_01l.svg") no-repeat center;
}
#js-slider2 .slide-arrow.next-arrow {
	right: 10px;
	background: url("../imgs/common/chv_01r.svg") no-repeat center;
}
@media screen and (min-width: 768px), print {
	#js-slider2 .slide-arrow {
		font-size: 14px;
	}
}
/* 事業一覧 */
.top-business {
	margin-left: 0;
	margin-right: 0;
}
.top-business .business-list > li {
	position: relative;
}
.top-business .business-list > li:not(:first-child) {
	margin-top: 70px;
}
.top-business .business-list .image {
	padding: 15px var(--x-margin);
	position: relative;
}
.top-business .business-list .image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 100%;
	background-color: #444;
}
.top-business .business-list .image img {
	display: block;
	position: relative;
	z-index: 1;
}
.top-business .business-list .link-button {
	margin: 20px 40px 0 auto;
	width: 265px;
	position: relative;
	background: url("../imgs/top/ico_idx01.svg") no-repeat center;
	background-size: contain;
	color: #444;
}
.top-business .business-list .link-button a {
	padding: 1.8em;
	display: block;
	color: inherit;
	text-decoration: none;
}
.top-business .business-list > li:nth-child(even) .image::before {
	left: auto;
	right: 0;
}
.top-business .business-list > li:nth-child(even) .link-button {
	margin-left: var(--x-margin);
}
.top-business .business-list .link-button .arrow {
	position: absolute;
	top: calc(50% - (30px / 2));
	right: -30px;
	width: 30px;
	height: 30px;
}
.top-business .business-list .link-button .arrow::after {
	content: "";
	border-top: 1px solid #444;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
}
.top-business .business-list .link-button .arrow::before {
	content: "";
	border-top: 1px solid #444;
	width: 40%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: rotate(45deg);
	transform-origin: right center;
}
.top-business .business-list .link-button .corner span {
	border: 1px solid #444;
	position: absolute;
	width: 32px;
	height: 32px;
	display: block;
}
.top-business .business-list .link-button .corner span:first-child {
	border-right: none;
	border-bottom: none;
	top: 0;
	left: 0;
}
.top-business .business-list .link-button .corner span:nth-child(2) {
	border-left: none;
	border-bottom: none;
	top: 0;
	right: 0;
}
.top-business .business-list .link-button .corner span:nth-child(3) {
	border-left: none;
	border-top: none;
	bottom: 0;
	right: 0;
}
.top-business .business-list .link-button .corner span:nth-child(4) {
	border-right: none;
	border-top: none;
	bottom: 0;
	left: 0;
}
.top-business .business-list .link-button h3 {
	line-height: 1.277777777777778;
	margin: 0 0 0.6em;
}
.top-business .business-list .link-button h3 .en {
	font-size: 14px;
	font-size: 100%;
	display: block;
	margin: 0 0 0.7em;
}
.top-business .business-list .link-button h3 .ja {
	font-size: 32px;
	display: block;
}
.top-business .business-list .link-button p.intro-copy {
	font-size: 13px;
	font-size: 92.857142857142857%;
	line-height: 1.75;
}
/* 事業一覧 各項目カラー等調整所 */
/* スポーツ事業 */
.top-business .business-list .sport-business .link-button {
	color: #0C7BFF;
	background-image: url("../imgs/top/ico_idx01.svg");
}
.top-business .business-list .sport-business .image::before {
	background-color: #0C7BFF;
}
.top-business .business-list .sport-business .link-button .corner span, .top-business .business-list .sport-business .link-button .arrow::after, .top-business .business-list .sport-business .link-button .arrow::before {
	border-color: #0C7BFF;
}
/* 青少年交流プラザ */
.top-business .business-list .youth-exchange-plaza-business .link-button {
	color: #84ABC1;
	background-image: url("../imgs/top/ico_idx02.svg");
}
.top-business .business-list .youth-exchange-plaza-business .image::before {
	background-color: #84ABC1;
}
.top-business .business-list .youth-exchange-plaza-business .link-button .corner span, .top-business .business-list .youth-exchange-plaza-business .link-button .arrow::after, .top-business .business-list .youth-exchange-plaza-business .link-button .arrow::before {
	border-color: #84ABC1;
}
/* トワイライト事業 */
.top-business .business-list .twilight-school-business .link-button {
	color: #E58014;
	background-image: url("../imgs/top/ico_idx03.svg");
}
.top-business .business-list .twilight-school-business .image::before {
	background-color: #E58014;
}
.top-business .business-list .twilight-school-business .link-button .corner span, .top-business .business-list .twilight-school-business .link-button .arrow::after, .top-business .business-list .twilight-school-business .link-button .arrow::before {
	border-color: #E58014;
}
/* 生涯学習センター事業じ */
.top-business .business-list .lifelong-learning-business .link-button {
	color: #81D15B;
	background-image: url("../imgs/top/ico_idx04.svg");
}
.top-business .business-list .lifelong-learning-business .image::before {
	background-color: #81D15B;
}
.top-business .business-list .lifelong-learning-business .link-button .corner span, .top-business .business-list .lifelong-learning-business .link-button .arrow::after, .top-business .business-list .lifelong-learning-business .link-button .arrow::before {
	border-color: #81D15B;
}
/* 生涯学習開放事業 */
/*
.top-business .business-list .lifelong-learning-open-business .link-button {
  color: #AA87CC;
  background-image: url("../imgs/top/ico_idx05.svg");
}
.top-business .business-list .lifelong-learning-open-business .image::before {
  background-color: #AA87CC;
}
.top-business .business-list .lifelong-learning-open-business .link-button .corner span, .top-business .business-list .lifelong-learning-open-business .link-button .arrow::after, .top-business .business-list .lifelong-learning-open-business .link-button .arrow::before {
  border-color: #AA87CC;
}
*/
/* 野外教育事業 */
.top-business .business-list .outdoor-education-business .link-button {
	color: #D60C18;
	background-image: url("../imgs/top/ico_idx05.svg");
}
.top-business .business-list .outdoor-education-business .image::before {
	background-color: #D60C18;
}
.top-business .business-list .outdoor-education-business .link-button .corner span, .top-business .business-list .outdoor-education-business .link-button .arrow::after, .top-business .business-list .outdoor-education-business .link-button .arrow::before {
	border-color: #D60C18;
}
/* 科学教室事業 */
.top-business .business-list .science-class-business .link-button {
	color: #23c184;
	background-image: url("../imgs/top/ico_idx06.svg");
}
.top-business .business-list .science-class-business .image::before {
	background-color: #23c184;
}
.top-business .business-list .science-class-business .link-button .corner span, .top-business .business-list .science-class-business .link-button .arrow::after, .top-business .business-list .science-class-business .link-button .arrow::before {
	border-color: #23c184;
}
/* 学校給食事業 */
.top-business .business-list .school-lunch-business .link-button {
	color: #8A4421;
	background-image: url("../imgs/top/ico_idx07.svg");
}
.top-business .business-list .school-lunch-business .image::before {
	background-color: #8A4421;
}
.top-business .business-list .school-lunch-business .link-button .corner span, .top-business .business-list .school-lunch-business .link-button .arrow::after, .top-business .business-list .school-lunch-business .link-button .arrow::before {
	border-color: #8A4421;
}
/* 体育協会事業 */
#page .top-business .business-list .amateur-sports-association-business {
	margin-left: var(--x-margin);
	margin-right: var(--x-margin);
}
#page .top-business .business-list .amateur-sports-association-business a {
	display: block;
	text-decoration: none;
	background-color: var(--theme-color);
}
#page .top-business .business-list .amateur-sports-association-business a:hover {
	background: var(--theme-color-dark);
}
.top-business .business-list .amateur-sports-association-business .text {
	background: url("../imgs/common/arr_01wh.svg") no-repeat center right 10px;
	background-size: 30px;
	color: #fff;
	padding: 1.5em 3em 1.5em 1.5em;
	font-size: 16px;
	font-size: 114.285714285714286%;
	line-height: 1.75;
}
#page .top-business .business-list .amateur-sports-association-business .image {
	padding: 0;
}
.top-business .business-list .amateur-sports-association-business .image::before {
	display: none;
}
@media screen and (min-width: 768px), print {
	.top-business .business-list {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 100px;
	}
	.top-business .business-list > li {
		width: calc(50% - 3.5%);
		margin-top: 70px;
	}
	.top-business .business-list > li:first-child, .top-business .business-list > li:nth-child(2) {
		margin-top: 0;
	}
	.top-business .business-list .image {
		padding: 4vw 0 4vw var(--x-margin);
	}
	.top-business .business-list .image::before {
		width: 7vw;
	}
	.top-business .business-list .link-button {
		margin: -5px 30px 0 auto;
		width: calc(100% - 10vw - 30px);
		background-size: 180px;
	}
	.top-business .business-list .link-button a {
		padding: 2em;
	}
	.top-business .business-list > li:nth-child(even) {
		top: 120px;
		margin-left: auto;
	}
	.top-business .business-list > li:nth-child(even) .image {
		padding-right: var(--x-margin);
		padding-left: 0;
	}
	.top-business .business-list > li:nth-child(even) .link-button {
		margin-left: 0;
	}
	.top-business .business-list .link-button h3 .en {
		font-size: 14px;
		font-size: 87.5%;
	}
	.top-business .business-list .link-button h3 .ja {
		font-size: 28px;
	}
	.top-business .business-list .link-button p.intro-copy {
		font-size: 13px;
		font-size: 81.25%; /*fontset*/
	}
	/* 体育協会事業 */
	#page .top-business .business-list .amateur-sports-association-business {
		padding-right: var(--x-margin);
	}
	.top-business .business-list .amateur-sports-association-business .text {
		font-size: 15px;
		font-size: 93.75%; /*fontset*/
	}
}
@media screen and (min-width: 1232px), print {
	.top-business .business-list {
		margin-bottom: 140px;
	}
	.top-business .business-list > li {
		width: calc(50% - 66px);
		margin-top: 85%;
	}
	.top-business .business-list > li:first-child, .top-business .business-list > li:nth-child(2) {
		margin-top: 0;
	}
	.top-business .business-list .image {
		padding: 65px 0 65px calc(100% - 534px); /* 534=photo-width */
	}
	.top-business .business-list .image::before {
		width: calc(100% - 534px + 105px);
	}
	.top-business .business-list .link-button {
		margin: -26px 40px 0 auto;
		width: 320px;
		background-size: 230px;
	}
	.top-business .business-list .link-button a {
		padding: 2.5em;
	}
	.top-business .business-list > li:nth-child(even) {
		top: 170px;
	}
	.top-business .business-list > li:nth-child(even) .image {
		padding-right: calc(100% - 534px);
		padding-left: 0;
	}
	.top-business .business-list > li:nth-child(even) .link-button {
		margin-left: 0;
	}
	.top-business .business-list .link-button .arrow {
		top: calc(50% - (40px / 2));
		right: -40px;
		width: 40px;
		height: 40px;
	}
	.top-business .business-list .link-button h3 .en {
		font-size: 16px;
		font-size: 100%; /*fontset*/
	}
	.top-business .business-list .link-button h3 .ja {
		font-size: 36px;
	}
	.top-business .business-list .link-button p.intro-copy {
		font-size: 15px;
		font-size: 93.75%; /*fontset*/
	}
	/* 体育協会事業 */
	.top-business .business-list .amateur-sports-association-business .text {
		background-position: center right 30px;
		background-size: 40px;
		font-size: 18px;
		font-size: 112.5%; /*fontset*/
	}
}
/* hover-color */
.top-business .business-list .link-button a:hover {
	color: #fff;
}
/* スポーツ事業 */
.top-business .business-list .sport-business a:hover {
	background-color: #0C7BFF;
}
/* 青少年交流プラザ */
.top-business .business-list .youth-exchange-plaza-business a:hover {
	background-color: #84ABC1;
}
/* トワイライト事業 */
.top-business .business-list .twilight-school-business a:hover {
	background-color: #E58014;
}
/* 生涯学習センター事業 */
.top-business .business-list .lifelong-learning-business a:hover {
	background-color: #81D15B;
}
/* 生涯学習開放事業 */
/*
  .top-business .business-list .lifelong-learning-open-business a:hover {
    background-color: #AA87CC;
  }
    */
/* 野外教育 */
.top-business .business-list .outdoor-education-business a:hover {
	background-color: #D60C18;
}
/* 科学教室事業 */
.top-business .business-list .science-class-business a:hover {
	background-color: #23c184;
}
/* 学校給食事業 */
.top-business .business-list .school-lunch-business a:hover {
	background-color: #8A4421;
}
/* ダイレクトナビ */
.direct-nav {
	background-color: #DDE8F2;
	border-top: 1px solid var(--theme-color);
	border-bottom: 1px solid var(--theme-color);
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding: var(--y-margin-xl) var(--x-margin);
}
.direct-nav ul {
	display: flex;
	justify-content: space-between;
}
.direct-nav ul li {
	width: 31.666666666666667%;
	position: relative;
	font-size: 14px;
	font-size: 87.5%; /*fontset*/
}
.direct-nav ul li .image img {
	display: block;
}
.direct-nav ul li .label {
	line-height: 1.4;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-bottom: 0.5em;
	font-weight: 700;
	color: #fff;
	background: url("../imgs/common/arr_01wh.svg") no-repeat bottom 22% center;
	background-size: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
}
@media screen and (min-width: 768px), print {
	.direct-nav ul li {
		font-size: 20px;
	}
}
@media screen and (min-width: 1232px), print {
	.direct-nav ul li {
		font-size: 28px;
	}
	.direct-nav ul li .label {
		background-position: bottom 28% center;
		background-size: 40px;
	}
}
/* 協会からのお知らせ */
.association-news {
	background-color: #EEEEEE;
	margin: 0;
	padding: var(--y-margin-xl) var(--x-margin);
}
.association-news .article-list {
	display: flex;
	flex-wrap: wrap;
}
.association-news .article-list li {
	font-size: 15px;
	font-size: 93.75%; /*fontset*/
}
.association-news .article-list li a {
	padding: 0.5em 0;
	border-bottom: 1px solid #c8c8c8;
	color: #505050;
	display: flex;
	align-items: center;
	text-decoration: none;
}
.association-news .article-list > li a:hover {
	background: rgba(255, 255, 255, 0.8);
}
.association-news .article-list .date {
	color: var(--theme-color);
	margin: 0 0 0.75em;
}
.association-news .article-list li .thumb {
	flex: 0 0 124px;
	margin-right: 10px;
}
.association-news .article-list li .thumb img {
	width: 124px;
	height: 84.5px;
	object-fit: cover;
}
.association-news .article-list > li:first-child {
	margin-left: 0;
}
@media screen and (min-width: 768px), print {
	.association-news .article-list {
		margin-top: -2em;
	}
	.association-news .article-list > li {
		width: calc((100% - 3.333333333333333%) / 2);
		margin-left: 3.333333333333333%;
		margin-top: 2em;
	}
	.association-news .article-list > li:nth-child(2n + 1) {
		margin-left: 0;
	}
	.association-news .article-list > li a {
		display: block;
		border-bottom: none;
		height: calc(100% + 20px);
		margin: -10px;
		padding: 10px;
	}
	.association-news .article-list li .thumb {
		margin: 0;
	}
	.association-news .article-list li .thumb img {
		width: 100%;
		height: calc((100vw - 3.333333333333333vw) * 0.681 / 2);
		object-fit: cover;
	}
	.association-news .article-list .article-text {
		margin: 20px 0 0;
	}
}
@media screen and (min-width: 1232px), print {
	.association-news .article-list > li:nth-child(n) {
		width: calc((100% - 3.333333333333333% * 3) / 4);
		margin-left: 3.333333333333333%;
	}
	.association-news .article-list > li:nth-child(4n + 1) {
		margin-left: 0;
	}
	.association-news .article-list li .thumb img {
		width: 100%;
		height: 184px;
		object-fit: cover;
	}
}
/* 関連事業 */
.related-business {
	margin: 0;
	padding: var(--y-margin-l) var(--x-margin);
	background-color: #DDE8F2;
}
.related-business ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: -20px;
	margin-left: -10px;
}
.related-business ul li {
	width: 50%;
	padding-left: 10px;
	margin-top: 20px;
}
.related-business ul li .banner-footnote {
	font-size: 12px;
	font-size: 85.714285714285714%;
	line-height: 1.4;
	margin-top: 5px;
}
@media screen and (min-width: 768px), print {
	.related-business ul {
		margin-left: -20px;
	}
	.related-business ul li {
		width: 33.33333333%;
		padding-left: 20px;
	}
}
@media screen and (min-width: 1232px), print {
	.related-business ul {
		margin-top: -30px;
	}
	.related-business ul li {
		width: 20%;
		margin-top: 30px;
	}
	.related-business ul li .banner-footnote {
		font-size: 12px;
		font-size: 75%;
	}
}
/* バナー */
.foot-banners {
	margin: 0;
	padding: var(--y-margin-l) var(--x-margin);
	background-color: #EEEEEE;
}
.foot-banners ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: -20px;
	margin-left: -10px;
	justify-content: center;
}
.foot-banners ul li {
	width: 50%;
	padding-left: 10px;
	margin-top: 20px;
}
.foot-banners ul li .banner-footnote {
	font-size: 12px;
	font-size: 85.714285714285714%;
	line-height: 1.4;
	margin-top: 5px;
}
@media screen and (min-width: 768px), print {
	.foot-banners ul {
		margin-left: -20px;
	}
	.foot-banners ul li {
		width: 33.33333333%;
		padding-left: 20px;
	}
}
@media screen and (min-width: 1232px), print {
	.foot-banners ul {
		margin-top: -30px;
	}
	.foot-banners ul li {
		width: 20%;
		margin-top: 30px;
	}
	.foot-banners ul li .banner-footnote {
		font-size: 12px;
		font-size: 75%;
	}
}
/* 広告バナー */
.foot-ads {
	margin: 0;
	padding: var(--y-margin-l) var(--x-margin);
}
.foot-ads .banner-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: -1em;
	align-items: center;
}
.foot-ads .banner-list li {
	width: calc((100% - 3.645833333333333%) / 2);
	margin-left: 3.645833333333333%;
	margin-top: 1em;
}
.foot-ads .banner-list li:nth-child(2n + 1) {
	margin-left: 0;
}
.foot-ads .footnote {
	text-align: center;
	margin: 2em 0 0;
}
.foot-ads .banner-list a {
	border: 1px solid #ccc;
	display: block;
}
.foot-ads .banner-list a:hover {
	opacity: 0.75;
}
@media screen and (min-width: 768px), print {
	.foot-ads .banner-list li:nth-child(n) {
		width: calc((100% - 3.645833333333333% * 4) / 5);
		margin-left: 3.645833333333333%;
	}
	.foot-ads .banner-list li:nth-child(5n + 1) {
		margin-left: 0;
	}
	.foot-ads .footnote {
		margin-top: 2em;
		font-size: 15px;
		font-size: 93.75%; /*fontset*/
	}
}