<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 {
	margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
	.contentsHome h2 {
		margin-bottom: 20px;
	}
}
/* ------------------------------
 メインビジュアル
------------------------------ */
.mainimgBlock {
	margin: 0 auto 95px;
	position: relative;
}
.mainImgBox {
	position: relative;
}
.mainImgBox img {
	width: 100%;
}
.mainImgBox .swiper-wrapper {
	border-radius: 24px;
	overflow: hidden;
}
/* swiper上書き */
.mainImgBox.swiper {
	overflow: visible;
}
.mainImgBox .swiper-pagination-bullets.swiper-pagination-horizontal {
	left: 0;
	right: 0;
	bottom: -43px;
}
.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: #D96C9B;
}
@media screen and (min-width: 768px) {
	.mainimgBlock {
		padding-left: 25px;
		padding-right: 25px;
	}
	.mainImgBox {
		max-width: 1318px;
	}
}
@media screen and (max-width: 767px) {
	.mainimgBlock {
		margin: 0 5% 70px;
		position: relative;
	}
	.mainImgBox .swiper-wrapper {
		border-radius: 12px;
	}
}

/* ------------------------------
 ブログ
------------------------------ */
.blogBlock {
	margin-bottom: 70px;
}
.articleBlock {
	padding: 45px 0;
	background-image: 
		radial-gradient(rgba(232, 241, 248, 1) 24%, rgba(232, 241, 248, 0) 34%), 
		radial-gradient(rgba(232, 241, 248, 1) 24%, rgba(232, 241, 248, 0) 34%);
	background-size: 12px 12px;
	background-position: 0 0, 6px 6px;
}
/* -- 記事 -- */
.articleBox {
	border-radius: 14px;
	background: #fff;
	position: relative;
	display: flex;
	box-shadow: 8px 8px 0px 0px #E8F1F8;
}
.articleBox.new::before {
	content: "";
	width: 88px;
	height: 88px;
	display: block;
	position: absolute;
	top: -4px;
	left: -4px;
	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 {
	border-radius: 14px 14px 0 0;
	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: 2;
}
/* カテゴリー */
.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: #D96C9B;
	display: inline-block;
	padding: 2px 12px;
	border-radius: 22px;
	margin-right: 4px;
	margin-bottom: 4px;
	border: solid 1px #D96C9B;
}
@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;
		margin-bottom: -45px;
	}
	.articleBox {
		margin-bottom: 45px;
	}
	.blogList .articleBox a:hover {
		opacity: .7;
	}
}
@media screen and (max-width: 767px) {
	.blogBlock {
		margin-bottom: 40px;
	}
	.blogList {
		padding-left: 5%;
		padding-right: 5%;
	}
	.articleBlock {
		padding: 35px 0;
	}
	/* -- 記事 -- */
	.articleBox {
		box-shadow: 4px 4px 0px 0px #E8F1F8;
	}
	.articleBox:not(:last-child) {
		margin-bottom: 20px;
	}
	/* 記事テキスト */
	.articleBox .textBox {
		padding: 20px;
	}
}
</pre></body></html>