<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/* ---------------------
&nbsp;&nbsp;&nbsp;&nbsp;common style
--------------------- */
body {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	width: 100%;
	color: #3E3E3E;
	min-height: 100vh;
	font-size: 16px;
}
a {
	transition: 0.5s;
	color: #1400FF;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.contents-gray {
	background-color: #F4F4F4;
}
.pc {
	display: block;
}
.tb {
	display: none;
}
.sp {
	display: none;
}
@media (max-width: 1023px) {
	.pc {
		display: none;
	}
	.tb {
		display: block;
	}
	.sp {
		display: none;
	}
}
@media (max-width: 640px) {
	.pc {
		display: none;
	}
	.tb {
		display: none;
	}
	.sp {
		display: block;
	}
}
/* ---------------------
&nbsp;&nbsp;&nbsp;&nbsp;custom style
--------------------- */
#header {
	width: 100%;
	height: 70px;
	position: fixed;
	z-index: 2;
}
/* ヘッダー */
.header-main {
	width: 100%;
	height: 70px;
	padding-left: 30px;
	padding-right: 15px;
	background-color: #fff;
}
.header-main .header-main_left .logo {
	width: auto;
	height: 30px;
}
.header-main .header-main_right {
	display: flex;
	justify-content: flex-end;
}
.header-main .header-main_right .nav {
	display: flex;
	justify-content: flex-end;
}
.header-main .header-main_right .nav li {
	padding-right: 15px;
	padding-left: 15px;
}
.header-main .header-main_right .nav li a {
	color: #3e3e3e;
}
/* mv */
.mv {
	width: 100%;
	height: 600px;
	background-image: url("../img/mv.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	top: 70px; /* header分 */
}
.mv_over {
	width: 100%;
	padding-left: 60px;
	position: relative;
}
.mv_over_left {
	width: 45%;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	;
	flex-direction: column;
}
.mv_over_left_lead {
	display: inline-block;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 30px;
	border-bottom: 4px dashed #fff;
}
.mv_over_left_title {
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 60px;
}
.mv_over_left_title mark {
	color: #fff;
	padding-bottom: 10px;
	background: linear-gradient(transparent 60%, #AEDD45 0%);
}
.mv_over_left_subtitle {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 50px;
}
.mv_over_right {
	width: 55%;
	position: absolute;
	bottom: 0;
	right: 0;
	;
}
.mv_over_upper_right {
	position: absolute;
	top: 30px;
	right: 20px;
}
.mv_over_upper_right_title {
	width: 140px;
}
.mv_over_right_defaultimage {
	display: block;
}
.mv_over_right_largeimage {
	display: none;
}
.contents-mv_list {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	position: relative;
}
.contents-mv_list li {
	width: 230px;
	height: 230px;
	margin-right: 15px;
	margin-left: 15px;
	border-radius: 115px;
	background-color: #BAD883;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* contents共通 */
.contents {
	/*max-width: 1440px;*/
	margin: 0 auto;
	padding: 80px 30px;
	text-align: center;
	color: #0E162E;
}
.contents .title {
	font-size: 30px;
	font-weight: 600;
	position: relative;
}
.contents .title::after {
	position: absolute;
	left: 50%; /* 線の中央寄せ */
	bottom: -40px;
	content: "";
	width: 50px;
	height: 3px;
	background-color: #3e3e3e;
	transform: translateX(-50%); /* 線の中央寄せ */
}
.contents .detail {
	margin-top: 100px;
}
/* contents個別 */
/* 紹介動画 */
.contents-introduce .detail {
	margin-top: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	column-gap: 30px;
	row-gap: 30px;
}
.introduce_block {
	width: 500px;
}
.introduce_block p {
	margin-bottom: 15px;
	text-align: left;
}
/* CTA */
.cta {
	width: 100%;
	padding: 20px;
	background-color: #FAF5CF;
}
.cta_block {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 50px;
}
.cta_img {
	width: 300px;
}
.cta_btn a {
	padding: 20px 50px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	background-color: #3CB789;
	border-radius: 10px;
}
/* footer */
.footer {
	width: 100%;
	padding: 30px 120px 20px;
	align-items: flex-start;
	background-color: #fff;
}
.footer li {
	margin-bottom: 10px;
}
.footer li a {
	color: #3e3e3e;
	font-weight: normal;
	font-size: 14px;
}
.footer li span {
	font-size: 18px;
}
.footer .company_logo{
	width: auto;
	height: 80px;
	margin-top: 30px;
}
.footer .aischool_logo {
	width: 120px;
	margin-top: 0;
	display: block;
}
/* 効率化できる日常業務 */
.contents-streamlining .detail {
	justify-content: center;
	column-gap: 60px;
	row-gap: 60px;
}
.streamlining_block {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
.streamlining_block_img {
	width: 150px;
	height: 150px;
	border-radius: 75px;
	background-color: #3CB789;
	position: relative;
}
.streamlining_block_img01 img {
	width: 80px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 30%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.streamlining_block_img02 img, .streamlining_block_img03 img {
	width: 80px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.streamlining_block_list li {
	margin-top: 7.5px;
	margin-bottom: 7.5px;
	font-size: 22px;
	text-align: left;
	display: block;
}
.streamlining_block_list li span {
	padding-bottom: 5px;
	display: inline;
	border-bottom: 3px dashed #2F9768;
}
/* 講座主催 */
.sponsore_block {
	margin: 0 auto;
	padding-top: 60px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	column-gap: 60px;
}
.sponsore_block:first-child { /*1個目のコンテンツだけ.contents .detailの100があるため、padding:0*/
	padding-top: 0;
}
.sponsore_block_lead {
	font-size: 18px;
}
.sponsore_block_img {
	width: 180px;
}
.sponsore_block_img img:nth-child(2) {
	margin-top: 30px;
}
.sponsore_block_text {
	width: 800px;
	text-align: left;
}
.sponsore_block_text_title {
	padding: 5px 20px;
	font-size: 22px;
	background-color: #fff;
	display: inline-block;
}
.sponsore_block_text_name {
	margin-top: 20px;
	font-size: 22px;
}
.sponsore_block_text_belong {
	margin-top: 5px;
	font-size: 14px;
}
.sponsore_block_text_text {
	margin-top: 30px;
}
/* 講座の特徴 */
.contents-feature .detail {
	display: flex;
	justify-content: center;
	align-items: stretch;
	column-gap: 30px;
}
.feature_block {
	width: 320px;
	border: 1px solid #707070;
}
.feature_block_text {
	padding: 20px;
	text-align: left;
}
.feature_block_text mark {
	padding-bottom: 5px;
	background: linear-gradient(transparent 60%, #CCEFD7 0%);
}
/* 講義の様子 */
.lecture_movie {
	width: 700px;
	margin: 0 auto;
}
.contents-lecture h3 {
	margin-top: 80px;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.contents-lecture h3::before, .contents-lecture h3::after {
	background-color: #3e3e3e;
	content: "";
	flex-grow: 1;
	height: 1px;
}
.contents-lecture h3::before {
	margin-right: 30px;
}
.contents-lecture h3::after {
	margin-left: 30px;
}
.contents-lecture h4 {
	margin-top: 60px;
	color: #2F9768;
	font-size: 20px;
	font-weight: bold;
}
.contents-lecture h4:first-of-type {
	margin-top: 40px;
}
.lecture_block {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	column-gap: 30px;
}
.lecture_block_left {
	width: 570px;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
.lecture_block_left_label {
	width: 80px;
	background-color: #BAD883;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lecture_block_left_text {
	width: 100%;
	padding: 20px;
	font-size: 20px;
	text-align: left;
	background-color: #fff;
	position: relative;
}
.lecture_block_left_text01::after {
	position: absolute;
	content: '';
	background-image: url("../img/lecture01.png");
	width: 90px;
	height: 140px;
	bottom: 5px;
	right: 5px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}
.lecture_block_left_text02::after {
	position: absolute;
	content: '';
	background-image: url("../img/lecture02.png");
	width: 180px;
	height: 160px;
	bottom: 5px;
	right: 5px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}
.lecture_block_left_text03::after {
	position: absolute;
	content: '';
	background-image: url("../img/lecture03.png");
	width: 190px;
	height: 160px;
	bottom: 5px;
	right: 5px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}
.lecture_block_left_text04::after {
	position: absolute;
	content: '';
	background-image: url("../img/lecture04.png");
	width: 180px;
	height: 120px;
	bottom: 5px;
	right: 5px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}
.lecture_block_left_text05::after {
	position: absolute;
	content: '';
	background-image: url("../img/lecture05.png");
	width: 180px;
	height: 160px;
	bottom: 5px;
	right: 5px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}
.lecture_block_right {
	width: 570px;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
.lecture_block_right_label {
	width: 80px;
	background-color: #3CB789;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lecture_block_right_text {
	width: 100%;
	padding: 20px;
	font-size: 20px;
	text-align: left;
	background-color: #fff;
}
/* FAQ */
.faq_block {
	max-width: 1440px;
	margin: 0 auto;
	padding-right: 120px;
	padding-left: 120px;
}
.faq_person {
	width: 150px;
}
.faq_block_left {
	font-size: 18px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 30px;
	margin-bottom: 20px;
}
.faq_block_left_comment p {
	padding: 30px;
	text-align: left;
	border-radius: 25px;
	background-color: #D8F1E7;
	position: relative;
	display: inline-block;
}
.faq_block_left_comment p::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: -10px;
	top: 38%;
	border-right: 20px solid #D8F1E7;
	border-top: 20px solid transparent;
	border-bottom: 10px solid transparent;
}
.faq_block_right {
	font-size: 18px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
	margin-bottom: 30px;
}
.faq_block_right_comment p {
	padding: 30px;
	text-align: left;
	border-radius: 25px;
	background-color: #FAF5CF;
	position: relative;
	display: inline-block;
}
.faq_block_right_comment p::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	right: -10px;
	top: 50%;
	border-left: 20px solid #FAF5CF;
	border-top: 20px solid transparent;
	border-bottom: 10px solid transparent;
}
.faq_block_right_comment p img {
	width: 600px;
	padding-top: 10px;
}
/* 講座内容 */
.contents-course .detail {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	;
	padding: 25px 80px;
	text-align: center;
	background-color: #fff;
}
.course_list {
	padding-top: 15px;
	padding-bottom: 15px;
	color: #399C6F;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	column-gap: 30px;
}
.course_list dt {
	width: 130px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #399C6F;
}
.course_list dd {
	width: calc(100% - 160px);
}
/* 料金 */
.price_table {
	width: 750px;
	margin-right: auto;
	margin-left: auto;
}
.price_table th, .price_table td {
	height: 110px;
	font-size: 26px;
	border: solid 1px #3CB789;
	vertical-align: middle;
}
.price_table th span, .price_table td span {
	font-size: 20px;
	font-weight: normal;
}
.price_table th {
	width: 340px;
	background-color: #EBF8F3;
}
.price_table td {
	width: 410px;
}
.price_note {
	width: 750px;
	margin: 15px auto 0;
	font-size: 14px;
	text-align: right;
}
/* お申し込み・お問い合わせ */
.contents-request .detail {
	display: flex;
	justify-content: center;
	align-items: stretch;
	column-gap: 30px;
}
.request_block {
	width: 500px;
	padding: 30px;
	background-color: #fff;
	position: relative;
}
.request_block h5 {
	width: 230px;
	height: 40px;
	margin: 0 auto 30px;
	color: #399C6F;
	font-size: 20px;
	font-weight: bold;
	line-height: 40px;
	border: 1px solid #399C6F;
}
.request_list {
	height: 330px;
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 18px;
	text-align: left;
}
.request_list li {
	list-style-position: outside;
	margin: 0 0 15px;
	padding-left: 1.25em
}
.request_list li span {
	position: absolute;
	left: 0;
	margin: 0
}
.request_btn {
	width: 360px;
	/*margin: 30px auto 0;*/
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #3CB789;
	border-radius: 10px;
	position: absolute;
	bottom: 65px;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.request_btn a {
	color: #fff;
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
	display: block;
}
.request_btn a span {
	font-size: 16px;
	font-weight: normal;
	line-height: 16px;
}
.request_link {
	width: 360px;
	height: 20px;
	margin-top: -20px;
	font-size: 18px;
	text-align: left;
	line-height: 20px;
	display: inline-block;
}
/* お問合せ */
.contents-contact {
	padding-top: 170px;
}
.contact-form iframe {
	width: 95%;
	max-width: 1200px;
	height: 960px;
}
@media (min-width: 1441px) { /*1441px超えた時だけ*/
	/* mv */
	.mv_over {
		max-width: 1440px;
		margin: 0 auto;
		padding-right: 60px;
		padding-left: 60px;
		position: relative
	}
	.mv_over_right {
		right: 0
	}
	.mv_over_right_largeimage {
		display: block;
	}
	.mv_over_right_defaultimage {
		display: none;
	}
	.mv_over_upper_right {
	top: 50px;
}
	.mv_over_upper_right_title {
	width: 180px;
}
} /*end 1441px超えた時だけ*/
@media (max-width: 1279px) {
	/* mv */
	.mv_over_right {
		width: 50%;
	}
	.mv_over_left_title {
		font-size: 48px;
	}
	.mv_over_left_subtitle {
		font-size: 26px;
	}
	.contents-mv_list li {
		width: 180px;
		height: 180px;
		font-size: 20px;
		margin-right: 5px;
		margin-left: 5px;
	}
	.footer {
		padding-right: 80px;
		padding-left: 80px;
	}
	/* contents個別 */
	.introduce_block {
		width: 350px;
	}
	.faq_block {
		padding-right: 60px;
		padding-left: 60px;
	}
}
@media (max-width: 1023px) {
	/* header */
	.header-sub {
		column-gap: 40px;
	}
	/* mv */
	.contents-mv_list li {
		width: 150px;
		height: 150px;
		font-size: 18px;
		margin-right: 5px;
		margin-left: 5px;
	}
	
	/* contents共通 */
	.contents {
		padding: 60px 20px;
	}
	.footer {
		padding: 30px;
	}
	.footer .company {
		width: 100%;
		margin-top: 30px;
		text-align: center;
	}
	.footer img {
		width: 80%;
		height: auto;
		margin-top: 15px;
	}
	.footer .aischool_logo {
		margin-left: -10px;
		margin-bottom: 30px;
	}
	/* contents個別 */
	.faq_block {
		padding-right: 30px;
		padding-left: 30px;
	}
	.request_list {
		height: 385px;
	}
	.contact-form iframe {
		height: 1300px;
	}
}
@media (max-width: 768px) {
	.body {
		font-size: 14px;
	}
	.header-main {
		flex-direction: column;
		justify-content: center;
		row-gap: 10px;
		height: 90px;
		paddreing-right: 15px;
		padding-left: 15px;
	}
	.header-main .header-main_left .logo {
		height: 20px;
	}
	.header-main .header-main_right {
		font-size: 12px;
	}
	/* mv */
	.mv {
		height: 800px;
		top: 90px;
	}
	.mv_over {
		height: 100%;
		padding-left: 30px;
	}
	.mv_over_left {
		width: 100%;
		height: 460px;
	}
	.mv_over_right {
		width: 80%;
	}
	.mv_over_upper_right {
		top: 20px;
	}
	.mv_over_upper_right_title {
	width: 100px;
}
	.contents-mv_list {
		margin-top: 30px;
	}
	/* contents共通 */
	.contents {
		padding: 60px 15px;
	}
	.contents .title {
		font-size: 24px;
	}
	.contents .title::after {
		bottom: -30px;
	}
	.contents .detail {
		margin-top: 60px;
	}
	.footer {
		flex-direction: column;
	}
	/* contents個別 */
	.contents-introduce .detail {
		margin-top: 0;
	}
	.cta_img {
		width: 200px;
	}
	.cta_btn a {
		padding-right: 30px;
		padding-left: 30px;
		font-size: 24px;
	}
	.contents-streamlining .detail {
		width: 90%;
		max-width: 450px;
		margin-right: auto;
		margin-left: auto;
		justify-content: flex-start;
		row-gap: 30px;
	}
	.streamlining_block_img {
		width: 120px;
		height: 120px;
	}
	.streamlining_block_img01 img {
		width: 60px;
	}
	.streamlining_block_img02 img, .streamlining_block_img03 img {
		width: 60px;
	}
	.streamlining_block_list li {
		font-size: 16px;
	}
	.sponsore_block_lead {
		font-size: 16px;
	}
	.sponsore_block_text {
		width: calc(100% - 270px);
	}
	.lecture_block_right_label, .lecture_block_left_label {
		font-size: 16px;
	}
	.lecture_block_right_text, .lecture_block_left_text {
		font-size: 16px;
	}
	.lecture_block_left_text01::after {
		display: none;
	}
	.faq_block {
		padding-right: 0;
		padding-left: 0;
	}
	.faq_person {
		width: 100px;
	}
	.faq_block_left_comment p, .faq_block_right_comment p {
		padding: 20px;
		font-size: 16px;
	}
	.faq_block_right_comment p img {
		width: 90%;
	}
	.contents-course .detail {
		width: 100%;
		padding: 15px 30px;
	}
	.course_list {
		font-size: 16px;
		align-items: center;
	}
	.course_list dd {
		text-align: left;
	}
	.price_table {
		width: 90%;
	}
	.price_table th, .price_table td {
		height: 90px;
		font-size: 20px;
	}
	.price_table th span, .price_table td span {
		font-size: 14px;
	}
	.price_note {
		width: 90%;
	}
	.request_block {
		width: 47.5%;
	}
	.request_btn {
		width: 90%;
	}
	.request_btn a span {
		font-size: 14px;
		line-height: 14px;
	}
	.request_link {
		width: 100%;
		font-size: 14px;
	}
}
@media (max-width: 640px) {
	#header {
		height: 50px;
	}
	.header-main {
		height: 50px;
	}
	.header-main_left a {
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header-main .header-main_left .logo {
		height: 30px;
	}
	.header-main .header-main_right {
		display: none;
	}
	/* mv */
	.mv {
		height: 480px;
		top: 50px;
	}
	.mv_over_left {
		height: 340px;
	}
	.mv_over_left_lead {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.mv_over_left_title {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.mv_over_left_title .pc {
		display: block;
	}
	.mv_over_left_subtitle {
		font-size: 16px;
	}
	.mv_over_left_subtitle .pc {
		display: block;
	}
	.mv_over_upper_right_title {
		font-size: 18px;
	}
	.contents-mv_list {
		flex-wrap: wrap;
	}
	.contents-mv_list li {
		width: 100px;
		height: 100px;
		font-size: 12px;
		line-height: 1.2;
		margin-right: 5px;
		margin-left: 5px;
	}
	/* contents共通 */
	.contents {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.contents .title {
		font-size: 18px;
	}
	.contents .title::after {
		bottom: -20px;
	}
	/* contents個別 */
	.cta_block {
		flex-direction: column;
		row-gap: 30px;
	}
	.cta_img {
		width: 160px;
	}
	.cta_btn {
		width: 90%;
	}
	.cta_btn a {
		padding-top: 15px;
		padding-bottom: 15px;
		display: block;
		font-size: 18px;
		text-align: center;
	}
	.sponsore_block {
		flex-direction: column;
		padding-top: 30px;
	}
	.sponsore_block_img {
		width: 100%;
		display: flex;
		column-gap: 15px;
		justify-content: center;
		align-items: center;
	}
	.sponsore_block_img img {
		width: calc(50% - 30px);
	}
	.sponsore_block_img img:nth-child(2) {
		margin-top: 0;
	}
	.sponsore_block_text {
		width: 100%;
	}
	.sponsore_block_text_title {
		margin-top: 30px;
		font-size: 16px;
	}
	.sponsore_block_text_name {
		font-size: 18px;
	}
	.sponsore_block_text_belong {
		font-size: 12px;
	}
	.sponsore_block_text_text {
		margin-top: 20px;
	}
	.contents-feature .detail {
		flex-direction: column;
		align-items: center;
		row-gap: 15px;
	}
	.lecture_movie {
		width: 90%;
		margin: 0 auto;
	}
	.contents-lecture h3 {
		margin-top: 40px;
		font-size: 16px;
	}
	.contents-lecture h4 {
		margin-top: 40px;
		font-size: 14px;
	}
	.contents-lecture h4:first-of-type {
		margin-top: 15px
	}
	.lecture_block {
		margin-top: 20px;
		flex-direction: column;
		row-gap: 15px;
	}
	.lecture_block_right, .lecture_block_left {
		width: 100%;
	}
	.lecture_block_right_label, .lecture_block_left_label {
		font-size: 14px;
	}
	.lecture_block_right_text, .lecture_block_left_text {
		font-size: 14px;
	}
	.lecture_block_left_text::after {
		display: none;
	}
	.faq_person {
		width: 80px;
		height: 80px;
	}
	.faq_block_left_comment p, .faq_block_right_comment p {
		font-size: 14px;
	}
	.course_list {
		font-size: 14px;
	}
	.course_list dt {
		width: 90px;
	}
	.course_list dd {
		width: calc(100% - 120px);
	}
	.price_table {
		width: 100%;
	}
	.price_table th, .price_table td {
		width: 50%;
		font-size: 18px;
	}
	.price_table th span, .price_table td span {
		font-size: 12px;
	}
	.price_note {
		width: 100%;
		font-size: 12px;
	}
	.contents-request .detail {
		flex-direction: column;
		row-gap: 15px;
	}
	.request_block {
		width: 100%;
	}
	.request_block h5 {
		width: 180px;
		height: 36px;
		margin-bottom: 20px;
		font-size: 14px;
		line-height: 36px;
	}
	.request_list {
		height: auto;
		font-size: 14px;
	}
	.request_btn {
		width: 100%;
		position: static;
	}
	.request_btn a {
		font-size: 18px;
	}
	.request_btn a span {
		font-size: 12px;
		line-height: 12px;
	}
	.request_link {
		margin-top: 10px;
	}
}</pre></body></html>