@charset "utf-8";

/* ------------------------------
 見出し&テキスト（PC）
------------------------------ */
/* HOME H2 */
.contentsHome h2 {
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}
.contentsHome h2 span {
	display: block;
	color: #18A1CC;
	font-family: "Hind", sans-serif;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 700;
	margin-top: 10px;
}

/* -- H3 -- */
.contents h3,
.contentsHome h3 {
	margin-bottom: 10px;
	color: #000;
	font-size: 2rem;
	line-height: 1.4;
		font-weight: bold;
}
/* その他 */
.font-en {
	font-family: "Hind", sans-serif;
}
/* ------------------------------
 見出し&テキスト（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* HOME H2 */
	.contentsHome h2 {
		margin-bottom: 20px;
		font-size: 2.8rem;
	}
	.contentsHome h2 span {
		margin-top: 5px;
	}
	/* -- H3 -- */
	.contents h3,
	.contentsHome h3 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	/* その他 */
}

/* ------------------------------
 ボックス（PC）
------------------------------ */
/* 横並び */
.flexBox {
	display: flex !important;
	flex-wrap: wrap;
}
.cms_block.flexBox::after {
	content: none;
}
/* 横並び センター揃え */
.flexBox.jc-c {
	justify-content: center;
}
/* 横並び 端揃え */
.flexBox.jc-sb {
	justify-content: space-between;
}
/* 横並び 縦センター揃え */
.flexBox.ai-c {
	align-items: center;
}
/* 横並び4列（SP横並び2列） */
.flexBox.div4 {
	flex-wrap: wrap;
	gap: 40px 3.158%;
}

@media print, screen and (min-width: 768px) {
	/* 横並び2列 */
	.flexBox.div2 {
		flex-wrap: wrap;
		gap: 40px 4.21%;
	}
	.flexBox.div2 > * {
		width: 47.895%;
		margin-bottom: 0;
	}
	/* 横並び3列 */
	.flexBox.div3 {
		flex-wrap: wrap;
		gap: 40px 3.948%;
	}
	.flexBox.div3 > * {
		width: 30.702%;
		margin-bottom: 0;
	}
	/* 横並び4列（SP横並び2列） */
	.flexBox.div4 > * {
		width: 22.632%;
		margin-bottom: 0;
	}
}
/* ------------------------------
 ボックス（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* 横並び2列・横並び3列 */
	.flexBox.div2,
	.flexBox.div3 {
		display: block !important;
	}
	/* 横並び4列（SP横並び2列） */
	.flexBox.div4 {
		flex-wrap: wrap;
		gap: 25px 5.5%;
	}
	.flexBox.div4 > * {
		width: 47.25%;
		margin-bottom: 0;
	}
	/* 横並び4列（SP横並びにしない） */
	.flexBox.div4.sp_nodiv {
		display: block;
	}
	.flexBox.div4.sp_nodiv > * {
		width: 100%;
	}
}


/* ------------------------------
 リスト（PC）
------------------------------ */
/* ノーマルリスト */
.contents ul > li {
	line-height: 1.5;
	padding-left: 1em;
	position: relative;
}
.contents ul > li::before {
	content: "●";
	font-size: 50%;
	position: absolute;
	left: 4px;
	top: 5px;
}
/* お知らせ */
.contents .infoList ul > li {
	padding-left: 0;
	position: static;
}
.contents .infoList ul > li::before {
	content: none;
}
/* インライン */
.contents ul.inline > li:not(:last-child) {
	display: inline-block;
	margin-right: 1em;
}
/* 数字 */
.contents ol {
	list-style-type: decimal;
	padding-left: 1.1em;
}
.contents ol li:not(:last-child) {
	margin-bottom: 1.5em;
}

/* ----------------------
 リスト（SP）
---------------------- */
@media screen and (max-width: 767px) {
	/* 数字 */
	.contents ol li:not(:last-child) {
		margin-bottom: 1.2em;
	}
}

/* ------------------------------
 アイコン
------------------------------ */
/* -- 丸矢印 -- */
a.icon-arrow,
.icon-arrow a {
	display:inline-block;
	position: relative;
	padding-left: 30px;
	color: #00A0D9;
}
a.icon-arrow:before,
.icon-arrow a:before,
a.icon-arrow:after,
.icon-arrow a:after {
	content:" ";
	display:inline-block;
	position: absolute;
}
a.icon-arrow:before,
.icon-arrow a:before {
	width: 24px;
	height: 24px;
	background-color: #00A0D9;
	border-radius: 100%;
	left: 0;
	top: -1px;
}
a.icon-arrow:after,
.icon-arrow a:after {
	width: 6px;
	height: 6px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	left: 7px;
	top: 0;
	bottom: 2px;
	margin: auto;
}

/* ------------------------------
 リンクボタン（PC）
------------------------------ */
.btn a,
.btn .noLink {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	min-width: 470px;
	min-height: 72px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 24px;
	border-radius: 16px;
	-webkit-box-shadow: 0px 4px 0px 0px rgba(0,0,0,.05);
	box-shadow: 0px 4px 0px 0px rgba(0,0,0,.05);
	background-color: rgba(24,161,204,1);
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.btn a:hover {
	opacity: 1;
}
.btn a[target="_blank"]::after {
	content: none;
}

@media print, screen and (min-width: 768px) {
	.btn a:hover {
		opacity: .85;
	}
	.contents .btn a {
		max-width: 470px;
	}
}
/* ------------------------------
 リンクボタン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.btn a,
	.btn .noLink {
		min-width: 240px;
		height: 48px;
		border-radius: 12px;
		-webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,.05);
		box-shadow: 0px 3px 0px 0px rgba(0,0,0,.05);
		font-size: 2rem;
	}
}

/* ------------------------------
 お知らせ（PC）
------------------------------ */
.infoList li {
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
}
.infoList li a {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
/* 日付 */
.date {
	color: #969696;
}
/* お知らせタイトル（詳細ページ） */
.contents h2.headline {
	float: none;
	width: 100%;
	margin-bottom: 0;
	padding-left: 0;
}
.contents h2.headline::before {
	content: none;
}
/* お知らせ内容（詳細ページ） */
.detail {
	margin-top: 1.5em;
}
.contentsHome .headline {
	font-weight: bold;
}
@media print, screen and (min-width: 768px) {
	.infoList li::after {
		content: "";
		display: block;
		clear: both;
	}
	.infoList li a:hover {
		opacity: .85;
	}
	/* 日付 */
	.infoList li .date {
		float: left;
		width: 160px;
	}
	/* お知らせタイトル */
	.headline {
		overflow: hidden;
		float: left;
		width: calc(100% - 160px);
	}
	.contentsHome .headline {
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}
/* ------------------------------
 お知らせ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.infoList ul li {
		margin-bottom: 10px;
	}
}
