@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media only screen and (max-width: 768px) {
}

/***************************************************************************
taiken_search（基本設定）
****************************************************************************/

#taiken_search {
/*この親要素に、display none/block/flexは指定せず、子要素で指定。
  ページによってdisplayON・OFF切り替えのため、親要素は指定無し*/
	background-image: url(../img/bg_footer_taiken.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 30px 0px 10px 0px;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
}

.taiken_block_outline .inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0px auto 0px auto;
}
.taiken_block_outline .inner > div {
	width: 50%;
	margin-bottom: 10px;
	padding: 0px 5px 0px 5px;
}

@media only screen and (max-width: 768px) {
#taiken_search {
	padding: 20px 0px 20px 0px;
}
.taiken_block_outline .inner {
	display: block;
}
.taiken_block_outline .inner > div {
	width: 100%;
}
}

.taiken_block_outline .inner > div a {
	display: flex;
	color: #333333;
	text-align: left;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.1);
}
.taiken_block_outline .taiken_sam {
	width: 100px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-right: 1px solid #CCCCCC;
}
.taiken_block_outline .taiken_exp {
	flex: 1;
	padding: 8px 15px 8px 15px;
	line-height: 1.3em;
}

/***************************************************************************
btn_toggle_change
****************************************************************************/

.toggle_spacer {
	 height: 20px;
}
.btn_toggle_change a {
	display: block;
	color: #FFFFFF;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	background-color: #0085B2;
	border-radius: 20px;
	cursor: pointer;
	max-width: 240px;
	margin: 0px auto 0px auto;
	padding: 10px 0px 10px 0px;
	position: relative;
	margin-bottom: 20px;
	transition: background-color 0.3s, opacity 0.3s !important;
}
.btn_toggle_change a:hover {
	background-color: #003362;
	opacity: 1 !important;
}

/*ボタン内文字変更*/

.btn_toggle_change a:before {
	content: "さらに情報を表示する";
	transition: opacity 0.2s !important;
}
.btn_toggle_change a:after {
	content: "閉じる";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s !important;
}
.btn_toggle_change a.active:before {
	opacity: 0;
}
.btn_toggle_change a.active:after {
	opacity: 1;
}

/*ボタン内 + 変更*/

.btn_toggle_change i.plus:after {
	content: "＋";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.btn_toggle_change a.active i.plus:after {
	content: "－";
}

/*ボタン内 矢印 変更*/

.btn_toggle_change i.arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	border-radius: 20px;
	background-color: #FFFFFF;
	transition: 0.2s;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.btn_toggle_change i.arrow:after {
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-top: 2px solid #0085B2;
	border-right: 2px solid #0085B2;
	transform: rotate(135deg);
	margin-top: -2px;
}
.btn_toggle_change a:hover i.arrow:after {
	border-top: 2px solid #003362;
	border-right: 2px solid #003362;
}
.btn_toggle_change a.active i.arrow:after {
	transform: rotate(-45deg);
	margin-top: 2px;
}

/***************************************************************************
over_count_toggle（ボタンクリックで表示、非表示）
****************************************************************************/

.over_count_toggle {
	display: none;
	opacity: 0;
	transition: opacity 1s;
}
.over_count_toggle.active {
	opacity: 1;
}