/* PCAクラウド for アカデミー */

/* ヘッダバナー */
.as_top_banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	max-width: 1500px;
	margin: 0 auto;
}

/* 左のテキスト */
.as_top_text {
	flex: 1;
	padding: 20px;
}

.as_top_text p {
	font-size: 1rem;
	color: #666;
	padding: 25px 0;
	text-align: center;
}

/* 右のバナー */
.as_banner_image {
	flex: 1;
	text-align: right;
}

.as_banner_image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

/* メイン */
/* 背景背景 */
.as_bgc_lightyellow {
	background-color: #ffe97c !important;
}

a[target="_blank"]:after {
	content: none;
}

/* ボーダー */
.as_academy_box {
	padding: 20px;
	text-align: center;
}

.as_academy_main .card_02:hover {
	box-shadow: 0 0 8px rgba(0, 0, 0, .16);;
}

/* ボーダーのタイトル */
.as_box__title {
	text-align: center;
	color: #00529f;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 600;
	margin: 0 0 7px;
}

/* ボーダーの画像 */
.as_box__img {
	margin: 0 auto 10px;
	max-width: 350px;
}

.as_box__product {
	width: 100%;
	margin: 10px auto;
	display: flex; 
	justify-content: center; 
	align-items: center;
	gap: 20px; 
}

/* 詳細ボタン */
.as_box__button {
	background: #f5a200;
	padding: 5px;
	width: fit-content;
	margin: 0 auto;
	border-radius: 10px;
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	max-width: 100%;
	border: 2px solid #f5a200;
	color: #fff !important;
	text-decoration: none;
	text-align: center;
}

.as_box__button:hover, .as_box__button:focus {
	background: #fff;
	color: #f5a200 !important;
}

.as_text_org {
	color: #f5a200 !important;
}

/* 申し込みボタン */
.as_academy_register {
	text-align: center;
	margin: 10px;
}

.as_btn_sub_balloon {
	display: block;
	position: relative;
	z-index: 2;
	padding: 9px 0;
	width: max-content;
	margin: 0 auto 5px;
	line-height: 1;
	font-weight: 700;
	font-size: 16px;
}

.as_btn_sub_balloon::before {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	left: -15%;
	width: 25px;
	height: 2px;
	background-color: #00529f;
	-webkit-transform: rotate(-60deg);
	transform: rotate(60deg);
}

.as_btn_sub_balloon .as_font_blue {
	color: #00529f;
}

.as_btn_sub_balloon::after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	right: -15%;
	width: 25px;
	height: 2px;
	background-color: #00529f;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}

.as_academy_register .as_box__button {
	padding: 15px 40px;
	font-size: larger;
}

/* ～910px */
@media (max-width: 910px) {
	.as_top_banner {
		flex-direction: column;
		align-items: center;
		position: relative;
	}

	.as_banner_image {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 0;
		opacity: 0.2;
	}

	.as_banner_image img {
		width: auto;
		height: 80%;
		max-width: 100%;
		object-fit: contain;
		margin: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.as_top_text {
		position: relative;
		z-index: 2;
		text-align: center;
		color: #ffffff;
	}

	.as_box__title {
		font-size: 25px;
	}

	.as_academy_box .as_simple_box p br {
		display: none;
	} 

	.as_box__product {
		flex-direction: column;
		align-items: center;
	}
}