<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ------------------------------
 見出し
------------------------------ */
.contentsHome h2 {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 30px;
}
.contentsHome h2 .title-en {
	font-family: 'Roboto', sans-serif;
	font-size: 4.6rem;
	font-weight: 400;
	color: #164686;
	display: block;
}
@media screen and (max-width: 767px) {
	.contentsHome h2 {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	.contentsHome h2 .title-en {
		font-size: 3.4rem;
	}
}

/* ------------------------------
 メインビジュアル
------------------------------ */
.mainimgBlock {
	margin: 0 auto 95px;
	position: relative;
}
.mainImgBox {
	position: relative;
}
.mainImgBox img {
	width: 100%;
}
/* swiper上書き */
.mainImgBox.swiper {
	overflow: visible;
}
.mainImgBox .swiper-pagination-bullets.swiper-pagination-horizontal {
	left: 0;
	right: 0;
	bottom: 25px;
}
.mainImgBox .swiper-horizontal &gt; .swiper-pagination-bullets .swiper-pagination-bullet, 
.mainImgBox .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px;
}
.mainImgBox .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #E8F1F8;
	opacity: 1;
}
.mainImgBox .swiper-pagination-bullet-active {
	background-color: #164686;
}

@media screen and (max-width: 767px) {
	.mainimgBlock {
		margin-bottom: 40px;
		position: relative;
	}
	/* swiper上書き */
	.mainImgBox .swiper-pagination-bullets.swiper-pagination-horizontal {
		bottom: 15px;
	}
	.mainImgBox .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}
}

/* ------------------------------
 新着情報
------------------------------ */
.newsBlock .newsList {
	border-top: solid 1px #DCDCDC;
	margin-bottom: 30px;
}
.newsBlock .newsList li {
	padding: 22px 0;
	border-bottom: solid 1px #DCDCDC;
}
/* -- 新着一覧 -- */
.newsList a {
	color: #000;
	text-decoration: none;
}
.newsList a:focus, .newsList a:hover {
	opacity: .7;
}
.newsList li {
	display: flex;
	align-items: flex-start;
	flex-flow: row wrap;
}
/* 記事日付 */
.date {
	font-size: 1.4rem;
	color: #949FA8;
	line-height: 20px;
	width: 160px;
}
@media print, screen and (min-width: 768px) {
	.newsBlock {
		width: 1140px;
		margin: 0 auto 95px;
	}
	.boxText {
		width: calc(100% - 160px);
	}
}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.newsBlock {
		margin: 0 5% 40px;
	}
	.newsBlock .newsList {
		margin-bottom: 20px;
	}
	.newsBlock .newsList li {
		padding: 15px 0;
	}
	/* 記事日付 */
	.date {
		font-size: 1.2rem;
		width: 100%;
		margin-bottom: 5px;
	}
}

/* ------------------------------
 ブログ
------------------------------ */
.blogBlock {
	margin-bottom: 125px;
}
.articleBlock {
	padding: 30px 0;
	background: linear-gradient(180deg, rgba(255,255,255,1) 161px, rgba(29,111,188,.1) 161px, rgba(29,111,188,.1) 100%);
}
/* -- 記事 -- */
.articleBox {
	background: #fff;
	position: relative;
	display: flex;
}
.articleBox.new::before {
	content: "";
	width: 64px;
	height: 64px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: url(../img/icon_new.svg) no-repeat 0 0 / cover;
}
.articleBox a {
	width: 100%;
	display: flex;
	flex-flow: column;
	color: #000;
	text-decoration: none;
}
/* 記事テキスト */
.articleBox .textBox {
	padding: 24px;
}
/* 画像 */
.articleBox .imgBox img {
	width: 100%;
}
/* 日付 */
.articleBox .date {
	font-size: 1.2rem;
	font-weight: 500;
	color: #949FA8;
	margin-bottom: 10px;
}
/* 記事見出し */
.articleBox .title {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
/* カテゴリー */
.articleBox .cate {
	display: flex;
	flex-flow: row wrap;
	margin-top: 10px;
	margin-bottom: -4px;
}
.articleBox .cate span {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
	display: inline-block;
	padding: 2px 12px;
	border-radius: 2px;
	margin-right: 4px;
	margin-bottom: 4px;
	background-color: #3498DB;
}
.blogBlock .btn {
	margin-bottom: -55px;
}
@media print, screen and (min-width: 768px) {
	.blogList {
		width: 1140px;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0 45px;
		margin-left: auto;
		margin-right: auto;
	}
	.articleBox {
		margin-bottom: 45px;
	}
	.blogList .articleBox a:hover {
		opacity: .7;
	}
}
@media screen and (max-width: 767px) {
	.blogBlock {
		margin-bottom: 70px;
	}
	.articleBlock {
		padding-top: 0;
		padding-left: 5%;
		padding-right: 5%;
		background: linear-gradient(180deg, rgba(255,255,255,1) 125px, rgba(29,111,188,.1) 125px, rgba(29,111,188,.1) 100%);
	}
	
	/* -- 記事 -- */
	.articleBox {
		margin-bottom: 20px;
	}
	/* 記事テキスト */
	.articleBox .textBox {
		padding: 20px;
	}
}

/* ------------------------------
 コンテンツナビ
------------------------------ */
.contentsHome .contents_navi .linkList li a {
	font-size: 2.2rem;
	height: 130px;
	padding-left: 40px;
	background-color: #619AD0;
}
.contentsHome .contents_navi .linkList li a::after {
	width: 26px;
	height: 26px;
	top: calc(50% - 13px);
}
.contentsHome .en-title {
	font-family: 'Roboto', sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0;
	margin-top: 5px;
}
/* 2分割 */
.contentsHome .contents_navi .linkList.div2 li a {
	color: #1D6FBC;
	background-color: #D2E2F2;
}
.contentsHome .contents_navi .linkList.div2 li a::after {
	background: url(../img/icon_arrow_bl.svg) no-repeat 0 0 / cover;
}
@media print, screen and (min-width: 768px) {
	.contents_navi {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	/* 2分割 */
	.contents_navi .linkList.div2 {
		width: 910px;
		margin: 0 auto 65px;
		grid-template-columns: 1fr 1fr;
		gap: 0 26px;
	}
	.contentsHome .contents_navi .linkList.div2 li:not(:nth-last-child(-n+3)) {
		margin-bottom: 0;
	}
	.contentsHome .contents_navi .linkList.div2 li:not(:nth-last-child(-n+2)) {
		margin-bottom: 26px;
	}
}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.contentsHome .contents_navi {
		margin-left: 5%;
		margin-right: 5%;
	}
	.contentsHome .contents_navi .linkList li a {
		height: 90px;
		padding-left: 20px;
	}
}</pre></body></html>