/* base css */
html,
body {
	height: 100%;
	margin: 0;
	font-family: "Helvetica Neue",
		Arial,
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;
}

body {
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	color: #52656e;
	padding: 197px 0 0 0;
}

@media screen and (max-width:768px) {
	body {
		padding: 86px 0 0 0;
	}
}

*, *::before, *::after {
	box-sizing: border-box;
}

img, picture, video, canvas, svg, figure {
	max-width: 100%;
	margin: 0;
	height: auto !important;
}

input, button, textarea, select {
	font: inherit;
}

p, h1, h2, h3, h4, h5, h6, div {
	overflow-wrap: break-word;
}

a {
	color: #1A0DAB;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
}

/* pc only display */
.hp_lgOnly {
	display: block;
}

@media screen and (max-width:768px) {
	.hp_lgOnly {
		display: none;
	}
}

/* sp only display*/
.hp_md0nly {
	display: none;
}

@media screen and (max-width:768px) {
	.hp_md0nly {
		display: block;
	}
}

.hp_mb130 {
	margin-bottom: 130px;
}

.hp_pb130 {
	padding-bottom: 130px;
}


@media screen and (max-width:768px) {
	.hp_mb130 {
		margin-bottom: 80px;
	}

	.hp_pb130 {
		padding-bottom: 80px;
	}
}

/* txtcolor */
.hp_colorBl {
	color: #00b0eb;
}

.hp_colorPi {
	color: #e2567d;
}

/* lyout */
.hp_inner {
	width: 100%;
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

/* ttl style */
.bl_ttlWrap {
	margin-bottom: 30px;
	position: relative;
}

.el_lv1Heading {
	font-size: 40px;
	margin: 0;
	padding: 0;
	line-height: 1.3;
}

.el_lv2Heading {
	font-size: 50px;
	font-weight: bold;
	color: #005b76;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

@media screen and (max-width:768px) {
	.el_lv1Heading {
		font-size: 35px !important;
	}

	.el_lv2Heading {
		font-size: 35px !important;
	}
}

/* btn */
.el_btn {
	display: inline-block;
	width: 100%;
	max-width: 600px;
	padding: 20px 10px;
	background-color: #e2567d;
	border: 2px solid transparent;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	color: #fff;
	font-size: 1.125rem;
	text-align: center;
	text-decoration: none;
	transition: .25s;
}

.el_btn:focus,
.el_btn:hover {
	background-color: #fff;
	border-color: currentColor;
	color: #e2567d;
}



/* bg */
.hp_bgGray {
  background-color: #f8f8f8;

}

/* header */
.ly_header {
	padding-top: 20px;
	border-bottom: 1px solid #ddd;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.ly_header_inner {
	max-width: 1230px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.bl_headerUtils {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

@media screen and (max-width:768px) {
	.ly_header {
		padding-top: 10px;
	}

	.bl_headerUtils {
	justify-content: flex-start;
		margin-bottom: 20px;
	}
}


.bl_headerUtils_logo {
	width: 250px;
	flex-grow: 1;
}

.bl_headerUtils .el_btn {
	width: auto;
	padding: 10px 20px;
	box-shadow: none;
}

@media screen and (max-width:768px) {
	.bl_headerUtils .el_btn {
		padding: 5px 20px;
	}

	.bl_headerUtils_logo {
		width: 50%;
		max-width: 220px;
	}
}

.ly_headerNav {
	display: block;
}

.bl_headerNav,
.bl_headerNav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bl_headerNav {
	display: flex;
	justify-content: space-around;
}

.bl_headerNav_item {
	flex-grow: 1;
	text-align: center;
	position: relative;
}

.bl_headerNav_item:last-child .bl_headerNav_link::after {
	content: none;
}

.bl_headerNav_link {
	position: relative;
	display: block;
	padding: 15px 5px;
	border-bottom: 4px solid transparent;
	color: #005b76;
	text-decoration: none;
	transition: .25s;
	font-weight: bold;
}

.bl_headerNav_link:focus,
.bl_headerNav_link:hover {
	border-bottom-color: #005b76;
}

.bl_headerNav_link::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 20px;
	background-color: #ddd;
	transform: translateY(-50%);

}

/* 子メニューのスタイル */
.bl_headerNavLv2 {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 10;
	list-style: none;
	padding: 10px;
	width: 300px;
}

.bl_headerNavLv2 li a {
	display: block;
	text-align: left;
	padding: 15px 15px 15px 45px;
	position: relative;
	font-size: 14px;
	text-decoration: none;
	color: #000;
	transition: 0.3s;
}

.bl_headerNavLv2 li a:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: calc(50% - 3px);
	left: 25px;
	width: 7px;
	height: 7px;
	border-top: solid 2px #005b76;
	border-right: solid 2px #005b76;
	transform: rotate(45deg);

}

/* スマホで子メニューを常に表示 */
@media screen and (max-width: 768px) {
	.bl_headerNav {
		position: fixed;
		right: -80%;
		width: 80%;
		height: 100vh;
		display: block;
		color: #efefef;
		background-color: rgba(255, 255, 255, 1);
		transition: .3s;
		z-index: 100;
		overflow: auto;
	}

	.bl_headerNav li {
		text-align: left;
	}

	.bl_headerNav a {
	b	order-bottom: solid 1px #eee;
	}

	.bl_headerNav_link {
		padding: 20px;
	}

	.bl_headerNav_link:focus,
	.bl_headerNav_link:hover {
		border-bottom-color: #fff;
		background-color: #f8f8f8;
	}

	.bl_headerNav.is_open {
		right: 0;
	}

	.bl_headerNavLv2 {
		display: block;
		position: static;
		box-shadow: none;
		background-color: transparent;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.bl_headerNavLv2 li a {
		padding: 15px 20px 15px 40px;
	}
}

/* sp menubtn */
.bl_headerUtils_spMenuIcon .el_menuBtn {
	position: fixed;
	top: 28px;
	right: 16px;
	z-index: 1000;
}

.el_menuBtn {
	margin: 0;
	padding: 0;
	border: none;
	width: 48px;
	height: 48px;
	background-color: transparent;

}

.el_menuBtn span {
	display: block;
	position: relative;
	width: 65%;
	height: 3px;
	background-color: #333;
	transition: .2s;
	margin: -10px auto 0 auto;
}

.el_menuBtn span::before,
.el_menuBtn span::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #333;
	transition: .5s;
	left: 0;
}

.el_menuBtn span::before {
	transform: translateY(-9px);
}

.el_menuBtn span::after {
	transform: translateY(9px);
}

.el_menuBtn::after {
	content: "MENU";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: .68rem;
}

/***** メニューオープン時 *****/
.el_menuBtn span.is_open {
	background-color: transparent;
}

.el_menuBtn span.is_open::before,
.el_menuBtn span.is_open::after {
	content: "";
	transition: .2s;
}

.el_menuBtn span.is_open::before {
	transform: rotate(45deg);
}

.el_menuBtn span.is_open::after {
	transform: rotate(-45deg);
}

/* search */
.bl_searchForm {
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 3px;
}

.bl_searchForm input {
	width: 250px;
	height: 45px;
	padding: 5px 15px;
	border: none;
	border-radius: 3px 0 0 3px;
	box-sizing: border-box;
	background-color: #f2f2f2;
	font-size: 1em;
	outline: none;
}

.bl_searchForm input::placeholder {
	color: #777777;
}

.bl_searchForm_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 45px;
	border: none;
	border-radius: 0 3px 3px 0;
	background-color: #005b76;
	cursor: pointer;
}

.bl_searchForm_btn::after {
	width: 24px;
	height: 24px;
	background-image: url(/image/custom/flccac/icon_search@2x.png);
	background-repeat: no-repeat;
	background-size: 24px;
	content: '';

}

.bl_spSearchBtn,
.bl_spSearch {
	display: none;
}

@media screen and (max-width:768px) {
	.bl_searchForm {
		display: none;
	}

	.bl_spSearchBtn {
		display: block;
		position: absolute;
		top: 35px;
		right: 90px;
	}

	.bl_spSearchBtn img {
		width: 28px;
	}

	.bl_spSearch {
		display: none;
		background-color: #fff;
		width: 100%;
		height: 130px;
		padding: 20px 10px;
		position: absolute;
		top: 90px;
		left: 0;
	}

	.bl_spSearch.is_active {
		display: block;
	}

	.bl_spSearch_form {
		width: 80%;
		margin: 0 auto;
	}

	.bl_spSearch_form input {
		display: block;
		width: 100%;
		margin: 0 auto;
	}

	.bl_spSearch_btn {
		text-align: center;
	}

	.bl_spSearch_btn .el_btn {
		padding: 10px 20px;
		border-radius: 5px;
		width: 100%;
		margin-top: 10px;
		font-size: 13px;
		line-height: 1;
	}
}

/* change fontsize */
.bl_changeFontSize {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.bl_changeFontSize_text {
	font-size: 13px;
}

.bl_changeFontSize span {
	display: inline-block;
	margin-left: 8px;
}

.bl_changeFontSize_item {
	border: solid 1px #ccc;
	border-radius: 5px;
	padding: 10px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

.bl_changeFontSize_item.active,
.bl_changeFontSize_item:hover {
	background-color: #005b76;
	color: white;
	border-color: #005b76;
}

@media screen and (max-width:768px) {
	.bl_changeFontSize {
		display: none;
	}
}

/* slider */
.ly_KV {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 25px 0;
	margin: 0 auto;
	background: url(/image/custom/flccac/header_bg@2x.png) no-repeat bottom center;
	background-size: 2200px;
}

@media screen and (max-width:768px) {
	.ly_KV {
		padding: 15px;
		background: url(/image/custom/flccac/header_bg@2x.png) no-repeat bottom center / cover;
	}
}

.ly_KV_inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ly_KV_inner ul {
	display: flex;
	transition: transform 0.5s ease-in-out;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ly_KV_inner ul li {
	flex-shrink: 0;
	width: 100%;
	display: flex;
	justify-content: center;
}

.ly_KV_inner ul li img {
	max-width: 1200px;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

/* ボタンスタイル */
.bl_KV_btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	z-index: 10;
}

/* 左ボタン */
.bl_KV_btn.prev {
	left: calc(50% - 600px);
}

.bl_KV_btn.next {
	right: calc(50% - 600px);
}

/* ホバー時のスタイル */
.bl_KV_btn:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
	.bl_KV_btn.prev {
		left: 10px;
	}

	.bl_KV_btn.next {
		right: 10px;
	}
}

/* media */
.bl_mediaList,
.bl_mediaList_item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bl_mediaList_item {
	border-bottom: solid 1px #e8e8e8;
	padding: 15px 0;
}

.bl_mediaList_item:first-child {
	border-top: solid 1px #e8e8e8;
}

.bl_media {
	display: flex;
	color: #52656e;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	.bl_media {
		display: block;
	}
}

.bl_media_imgWrapper {
	width: 33%;
	aspect-ratio: 4 / 3;
	margin-right: 3.33333%;
	position: relative;
}

.bl_media_imgWrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bl_media_body {
	width: 63%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 12rem;
}

.bl_media_ttl {
	margin: 0 0 10px 0;
	font-size: 1.125rem;
	font-weight: bold;
}

.bl_media_txt {
	font-weight: normal;
}

.bl_media_date {
	font-size: 12px;
	margin: 0;
	padding: 0
}

@media screen and (max-width:768px) {
	.bl_media_imgWrapper {
	margin: 0 0 25px 0;
		width: 100%;
	}

	.bl_media_body {
		width: 100%
	}
}

/* news_txt */
.bl_newsList,
.bl_newsList_item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bl_newsList_item {
	border-bottom: solid 1px #e8e8e8;
	padding: 40px 0;
}

.bl_newsList_item:first-child {
	border-top: solid 1px #e8e8e8;
}

.bl_newsList_item a {
	display: block;
	color: #52656e;
	text-decoration: none;
}

.bl_newsList_ttl {
	margin: 0 0 10px 0;
	font-size: 1.125rem;
	font-weight: bold;
}

.bl_newsList_txt {
	font-weight: normal;
}

.bl_newsList_date {
	font-size: 12px;
	margin: 0;
	padding: 0
}

.bl_ttlWrap .el_btn {
	max-width: 360px;
	border-radius: 999px;
	background: #e2567d url(/image/custom/flccac/icon_arrow_pi@2x.png) no-repeat center right 10px / 29px;
	font-size: 19px;
	padding: 10px;
	position: absolute;
	top: 0;
	right: 0;
}

@media screen and (max-width:768px) {
	.bl_ttlWrap .hp_md0nly .el_btn {
		width: 120px;
		background: #e2567d url(/image/custom/flccac/icon_arrow_pi@2x.png) no-repeat center right 10px / 20px;
		font-size: 16px !important;
		padding: 10px;
		position: absolute;
		bottom: 0;
		right: 0;
		line-height: 1;
	}
}

.bl_learnAboutWrap {
	background: url(/image/custom/flccac/bg1.png) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 50px 0 40px 0;
	background-color: rgba(255, 255, 255, 0.5);
}

.el_ttlCloud {
	width: 90%;
	max-width: 670px;
	margin: 0 auto 20px auto;
	text-align: center;
}

.bl_learnAbout_itemUnit {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.bl_learnAbout_item {
	width: 48%;
}

@media screen and (max-width:768px) {
	.bl_learnAbout_item {
		width: 100%;
		margin-bottom: 20px;
	}
}

.bl_bunnerArea {
	background: #fbf9f5 url(/image/custom/flccac/round_bg@2x.png) no-repeat top center / 100%
}

.bl_bunnerList {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: space-between;
	flex-wrap: wrap;
}

.bl_bunnerList_item {
	width: 48%;
	margin: 0 0 50px 0;
	padding: 0;
	text-align: center;
}

.bl_bunnerList_item__img {
	display: flex;
	align-items: center;
}

.bl_bunnerList_item__img img {
	width: 100%;
	max-width: 534px;
	display: block;
	margin: 0 auto
}

.bl_contactWrap {
	background-size: cover;
	background-attachment: fixed;
	padding: 105px 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.bl_contactWrap:before {
	content: '';
	background: inherit;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
}

.bl_contact {
	background-color: #fff;
	border-radius: 25px;
	display: flex;
	padding: 8% 10%;
	box-shadow: 0px 0px 10px #ccc;
}

.bl_contact_ttlWrap {
	width: 35%;
	display: flex;
	align-items: center;
}

.bl_contact_ttl {
	font-size: 33px;
	font-weight: bold;
}

.bl_contact_info {
	width: 65%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bl_contact_item {
	margin: 0 0 5px 0;
	padding: 0;
}

.bl_contact_item.bl_contact_item__ttl {
	margin-bottom: 10px;
}

@media screen and (max-width:768px) {
	.bl_contactWrap {
		padding: 55px 0;
	}

	.bl_contact {
		display: block
	}

	.bl_contact_info,
	.bl_contact_ttlWrap {
		width: 100%;
	}
}

.ly_footerNavWrap {
	background-color: #005b76;
	color: #fff;
	padding: 30px 0;
}

.bl_footerNav,
.bl_footerNav_item {
	margin: 0;
	padding: 0;
}

.bl_footerNav {
	list-style: none;

}

.bl_footerNav.bl_footerNav__main {
	border-bottom: solid 1px #fff;
	padding: 15px 0 45px 0;
}

.bl_footerNav.bl_footerNav__sub {
	padding: 30px 0 15px 0;
}

.bl_footerNav_item {
	display: inline-block;
	margin-right: 20px;
}

.bl_footerNav_link {
	color: #fff;
	text-decoration: none;
	font-weight: normal;
}

.hp_externalLink {
	background: url(/image/custom/flccac/icon_externalLink@2x.png) no-repeat center left / 18px;
	padding-left: 25px;
}

.el_coppy {
	margin: 0;
	padding: 0;
}

.ly_footerLogo {
	text-align: center;
	padding: 20px 0;
}

.ly_footerLogo img {
	width: 300px;
	display: inline-block;
	transform: translateX(-40px);
}

@media screen and (max-width:768px) {
	.ly_footerLogo img {
		width: 200px;
	}
}

.ly_cont_ttl {
	width: 100%;
	padding: 55px 0 35px 0;
	background-color: #edf3f5;
	color: #005b76;
}

.ly_cont_body {
	padding: 30px 0
}

.bl_breadcrumb,
.bl_breadcrumb_item {
	margin: 0;
	padding: 0;
}

.bl_breadcrumb {
	list-style: none;
	margin-top: 10px;
}

.bl_breadcrumb_item {
	display: inline;
	font-size: 14px;
	margin-right: 10px;
}

.bl_breadcrumb_item:after {
	content: ">";
	margin-left: 10px;
}

.bl_breadcrumb_item:last-child:after {
	content: " ";
}

.bl_breadcrumb_link,
.bl_breadcrumb_txt {
	color: #005b76;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	.ly_cont_ttl {
		padding: 25px 0;
	}

	.bl_breadcrumb {
		margin-top: 0;
	}
}

.ly_contPage_body {
	padding: 60px 0;
	color: #333;
}

/* list_pager */
.bl_pager {
	border-bottom: solid 1px #ccc;
	padding: 20px 0
}

.bl_pager_inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}

.bl_pager_btn {
	display: flex;
}

.bl_pager_link,
.bl_pager_txt {
	margin-right: 10px;
}

.bl_pager_txt {
	margin-bottom: 5px;
}

.bl_pager_link a {
	background-color: #005b76;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border-radius: 10px;
	font-size: 1.125rem;
	font-weight: bold;
	position: relative;
	width: 90px;
	text-align: center;
}

.bl_pager_link a::before {
	content: "";
	width: 16px;
	height: 16px;
	border-top: solid 5px #fff;
	border-right: solid 5px #fff;
	position: absolute;
	top: calc(50% - 8px);
}

.bl_pager_prev a {
	padding: 8px 0 8px 15px;
}

.bl_pager_prev a::before {
	transform: rotate(-135deg);
	left: 15px;
}

.bl_pager_next a {
	padding: 8px 15px 8px 0;
}

.bl_pager_next a::before {
	transform: rotate(45deg);
	right: 15px;
}