@charset "shift_jis";

/*------------------------------------------------
reset
-------------------------------------------------*/
html,
body,
div,
applet,
object,
iframe,
header .site-title,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	word-wrap: break-word;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	overflow-y: scroll;
}

body {
	font-size: 15px;
	color: #444;
	font-family: "メイリオ", Meiryo, Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", sans-serif;
	letter-spacing: 0.1em;
	line-height: 1.6;
}


blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}

input,
textarea {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
	word-wrap: break-word;
}

a:focus {
	outline: none;
}

.inline_block {
	display: inline-block;
}

code {
	display: inline-block;
}


img {
	max-width: 100%;
	height: auto;
}

p {
	/* margin: 0 0 1.2em; */
	line-height: 1.6;
}


/*------------------------------------------------
テキストの両端揃え
-------------------------------------------------*/
main,
article,
.text,
.content {
	text-align: justify;
	text-justify: inter-ideograph;
}

h1,
h2,
h3,
nav,
button,
li {
	text-align: left;
}



/*------------------------------------------------
高さを100%
-------------------------------------------------*/
html,
body {
	height: 100%;
	margin: 0;
}

main>*:last-child {
	margin-bottom: 0;
}

/*------------------------------------------------
見出し
-------------------------------------------------*/

h1 {
	margin: 0;
	color: #444;
	text-align: center;
	margin-bottom: 2rem;
}

@media screen and (max-width:767px) {
	h1 {
		padding: 0;
		font-size: 1.8rem;
	}
}


h2 {
	font-weight: 800;
	font-size: 1.6rem;
	margin: 20px 0;
	background: #dbf0cb;
	border-left: solid 18px #82bf56;
	line-height: 1.4;
	margin: 2em 0 1.2em 0;
	padding: 8px 0 5px 10px;
	/* display: flex; */
	align-items: center;
	position: relative;
}



@media screen and (max-width:767px) {
	h2 {
		font-size: 1.4rem;
		margin: 1em 0 1em 0;
		line-height: 1.2;
	}
}



h3 {
	font-weight: 800;
	font-size: 1.45rem;
	margin: 20px 0;
	border-left: solid 13px #82bf56;
	margin: 1.5em 0 1em 0;
	padding: 7px 0 5px 10px;
	border-bottom: solid 1px #cccccc;
	display: flex;
	align-items: center;
	line-height: 1.4;
}

@media screen and (max-width:767px) {
	h3 {
		font-size: 1.2rem;
	}
}


h4 {
	font-weight: 800;
	font-size: 1.3rem;
	margin: 20px 0;
	border-left: solid 8px #bcdda5;
	padding: 4px 0 0px 10px;
	color: #438b0e;
	display: flex;
	align-items: center;
	line-height: 1.3;
}


@media screen and (max-width:767px) {
	h4 {
		font-size: 1.1rem;
	}
}


h5 {
	font-weight: 800;
	font-size: 1.2rem;
	margin: 10px 0 5px 0;
	color: #438b0e;
}

h6 {
	font-weight: 800;
	font-size: 1.1rem;
	margin: 20px 0 5px 0;
}

h2.simple,
h3.simple,
h4.simple,
h5.simple,
h6.simple {
	border: none;
	background-color: transparent;
	color: #444;
	padding: 0;
	margin: 30px 0 5px 0;
}

/*------------------------------------------------
layout grit system
-------------------------------------------------*/
ol.clearfix li,
ol.row li,
dl.row dt,
dl.row dd,
ul.clearfix li,
ul.row li,
dl.clearfix dt,
dl.clearfix dd {
	float: left;
}

/* 親要素にgridを設定 */
.row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	/* 12等分 */
	gap: 2rem;
	/* 横・縦の間隔を2remに */
	margin-bottom: 2rem;
	/* 行間の余白 */
}

/* 子要素はfloatや幅指定不要 */
.grid1 {
	grid-column: span 1;
}

.grid2 {
	grid-column: span 2;
}

.grid3 {
	grid-column: span 3;
}

.grid4 {
	grid-column: span 4;
}

.grid5 {
	grid-column: span 5;
}

.grid6 {
	grid-column: span 6;
}

.grid7 {
	grid-column: span 7;
}

.grid8 {
	grid-column: span 8;
}

.grid9 {
	grid-column: span 9;
}

.grid10 {
	grid-column: span 10;
}

.grid11 {
	grid-column: span 11;
}

.grid12 {
	grid-column: span 12;
}

/* 1行全幅 */


@media screen and (max-width:767px) {

	/* rowを縦並びにして、横方向も中央揃え */
	.row {
		display: flex !important;
		flex-direction: column !important;
		/* align-items: center !important; */
		/* ← 横方向中央揃え */
		gap: 1rem !important;
	}

	[class^="grid"] img.tCenter {
		display: block !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

.grid1,
.grid2,
.grid3,
.grid4,
.grid5,
.grid6,
.grid7,
.grid8,
.grid9,
.grid10,
.grid11,
.grid12 {
	/* grid-column: span 1; */
	/* 1列になるように全て span 1 */
}
}

@media screen and (max-width:767px) {


	.grid1.btnLink,
	.grid2.btnLink,
	.grid3.btnLink,
	.grid4.btnLink,
	.grid5.btnLink,
	.grid6.btnLink,
	.grid7.btnLink,
	.grid8.btnLink,
	.grid9.btnLink,
	.grid10.btnLink,
	.grid11.btnLink,
	.grid12.btnLink {
		width: 85%;
	}


	.gridclear,
	*[class^="grid"]:first-child {
		margin-left: auto;
		margin-top: 0;
		clear: left;
	}

	.row *[class^="grid"]:last-child {
		margin-bottom: 0;
	}

	.grid1 img,
	.grid2 img,
	.grid3 img,
	.grid4 img,
	.grid5 img,
	.grid6 img,
	.grid7 img,
	.grid8 img,
	.grid9 img,
	.grid10 img,
	.grid11 img,
	.grid12 img {
		margin-left: auto;
		margin-right: auto;
	}

}

@media screen and (max-width:767px) {
	[class^="grid"] img.tCenter {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}



/* ボーダーなど任意装飾 */
.borderLeft {
	position: relative;
}

.borderLeft:before {
	content: " ";
	display: block;
	position: absolute;
	left: -10px;
	top: 0;
	min-height: 100%;
	border-left: 1px solid #ccc;
}

/*------------------------------------------------
スマホ対応：横並び解除
-------------------------------------------------*/
@media screen and (max-width: 767px) {
	.row {
		flex-direction: column;
		/* 縦並び */
		gap: 20px;
	}

	[class^="grid"] {
		/* flex: 0 0 100%; */
		/* 全幅 */
	}
}


/*------------------------------------------------
共通
-------------------------------------------------*/
main.main {
	color: #444;
}

.green_block {
	background: #8ed15d;
	padding: 3rem 0;
}


@media screen and (max-width: 767px) {
	.green_block {
	padding: 1.5rem 0;
	}
}

/*--------------------------------
Container
--------------------------------*/
.container {
	width: 100%;
	max-width: 1200px;
	
	margin: 0 auto;
	box-sizing: border-box;
	padding: 2rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .5);
}

/* メディアクエリで流動幅対応 */
@media screen and (max-width: 999px) {
	.container {
		width: 90%;
		padding: 1rem;
	}
}


/*--------------------------------
ヘッダー
--------------------------------*/
body {
	padding-top: 60px;
	/* header の高さと同じ値 */
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background-color: #fff;
	z-index: 1000;
	padding: 0;
	box-shadow: 0 2px 4px rgb(0 0 0 / 16%);
}

header .inner {
	max-width: 1200px;
	
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

header nav ul.menu {
	display: flex;
	/* gap: 2rem; */
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

header nav ul.menu li a {
	text-decoration: none;
	color: #555;
	position: relative;
}


header nav ul.menu li a:hover {
	color: #23b553;
}

/* 区切り線 */
header nav ul.menu li:not(:last-child)::after {
	content: "｜";
	padding: 0 10px;
	color: #ccc;
}

@media screen and (max-width: 1024px) {
	header nav ul.menu li:not(:last-child)::after {
		content: none;
	}
}


/* カレントページのリンク */
header nav ul.menu li a.current {
	color: #5fae79;
	/* 強調色 */
	font-weight: bold;
	/* 太字にする場合 */
}

/* カレントリンクの後ろの「｜」を薄くする */
header nav ul.menu li a.current+li::before {
	content: "";
}

.site-title a {
	display: block;
	text-align: left;
	font-size: 1.0rem;
	color: #555;
	margin: 10px 0;
	font-weight: 800;
}

.site-title a:hover {
	color: #5fae79;
	text-decoration: none;
}


.site-title img {
	display: block;
	width: 200px;
	height: auto;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	.site-title {
		font-size: 14px;
	}

	.site-title img {
		width: 70%;
	}
}

nav ul.menu li a.contact_btn {
	background: #ed5656;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: all .3s;
}

nav ul.menu li a.contact_btn:hover {
	background: #ff0000;
	color: #fff;
}

/*--------------------------------
ハンバーガーメニュー
--------------------------------*/
/* ハンバーガー（三本線） */

/* PCサイズでは非表示 */
@media screen and (min-width: 1024px) {
	.hamburger {
		display: none;
	}
}

/* iPadサイズ以下 */
@media screen and (max-width: 1024px) {

	.hamburger {
		display: none;
		flex-direction: column;
		justify-content: space-between;
		width: 24px;
		height: 18px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
	}

	.hamburger span {
		display: block;
		height: 3px;
		width: 100%;
		background-color: #333;
		border-radius: 2px;
		transition: all 0.3s ease;
	}

	/* ハンバーガー開閉アニメ */
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}



	nav ul.menu {
		flex-direction: column;
		gap: 20px;
	}

	/* ハンバーガー位置調整 */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 24px;
		height: 18px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 2000;
	}


	/* navは少し下のz-index */
	nav.nav-menu {
		position: fixed;
		top: 0;
		right: -300px;
		width: 250px;
		height: 100%;
		background-color: #fff;
		padding: 60px 20px;
		box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
		transition: right 0.3s ease;
		z-index: 1000;
		/* ハンバーガーより下 */
	}

	nav.nav-menu {
		position: fixed;
		top: 0;
		right: -300px;
		width: 250px;
		height: 100%;
		background-color: #fff;
		padding: 60px 20px;
		box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
		transition: right 0.3s ease;
		z-index: 1000;
	}

	nav.nav-menu.active {
		right: 0;
	}
}


/*----------------------------------
パンナビ
----------------------------------*/
.breadcrumb {
	background: #f2f2f2;
	padding: 0 20px;
}

.breadcrumb ol {
	height: 40px;
	max-width: 1200px;
	display: flex;
	margin: auto;
	align-items: center;
}



.breadcrumb ol li {
	display: inline;
	color: #555;
	font-size: 0.8rem;
}

@media screen and (max-width: 767px) {
	.breadcrumb ol {
		display: flex;
		flex-wrap: wrap;
		/* li同士は折り返せるようにする */
		gap: 0.3em;
		/* li間の余白を調整 */
		padding: 5px 0;
	}

	.breadcrumb ol li,
	.breadcrumb ol li a{
		font-size: 10px;
		white-space: nowrap;
		/* li内のテキストを折り返さない */
	}
}

.breadcrumb ol li a {
	color: #23b553;
}

.breadcrumb li+li:before {
	content: "＞";
	color: #555;
	margin: 0 1em;
}

@media screen and (max-width: 767px) {
	.breadcrumb li+li:last-child:before {
		margin-left: 0;
	}
}


/*----------------------------------
フッター
----------------------------------*/
footer {
	background-color: #f2f2f2;
	color: #666;
	text-align: center;
	padding: 20px 0;
	font-size: 11px;
}

footer .footer_inner {
	max-width: 1200px;
	
	display: flex;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}


footer .footer_inner p {
	margin-bottom: 0;
}

footer .footer_inner ul {
	display: flex;
}

footer .footer_inner ul li {
	position: relative;
	margin-right: 2rem;
}

footer .footer_inner ul li:after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1.2em;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-top: 1px solid #bbb;
	border-right: 1px solid #bbb;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


footer .footer_inner ul li a {
	color: #666;
	font-size: 11px;
}

footer .footer_inner ul li a.ic_blank:after {
	content: "";
	display: inline-block;
	background: url("/univ_rps/images/ic_window_fotter.png") no-repeat center center;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-left: 9px;
	/* ← 左側に余白を追加 */
}


@media screen and (max-width: 767px) {
	footer {
		padding: 10px 0;
	}

	footer .footer_inner {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 5px;
	}

	footer .footer_inner ul {
		justify-content: center;
	}

	footer .footer_inner ul li:last-child {
		margin-right: 0;
	}

	footer .footer_inner ul li {
		margin-right: 1.5rem;
	}

	footer .footer_inner ul li a,
	footer p{
		color: #666;
		font-size: 9px;
	}

}



/*----------------------------------
youtube
----------------------------------*/
.youtube {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.youtube iframe {
	width: 100%;
	height: 100%;
	display: block;
}

/*----------------------------------
keyimg
----------------------------------*/
.keyimg {
	text-align: center;
	background: #FFF;
	padding: 0 0 2rem 0;
}


@media screen and (max-width: 767px) {
	.keyimg {
		padding: 10px 0;
	}
}

.keyimg02 {
	text-align: center;
	padding: 2rem 0;
}

h1.sample02 {
	padding: 2rem 0 0 0;
	text-align: center;
	background: #8ed15d;
}

.container02 {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	
	margin: 2rem auto;
	box-sizing: border-box;
}


/*------------------------------------------------
font size
-------------------------------------------------*/


code {
	font-family: "メイリオ", Meiryo, Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", sans-serif;
	font-size: 0.8em;
}

.fs06 {
	font-size: 0.6em !important;
}

.fs07 {
	font-size: 0.7em !important;
}

.fs08 {
	font-size: 0.8em !important;
}

.fs09 {
	font-size: 0.9em !important;
}

.fs10 {
	font-size: 1em !important;
}

.fs11 {
	font-size: 1.1em !important;
}

.fs12 {
	font-size: 1.2em !important;
}

.fs13 {
	font-size: 1.3em !important;
}

.fs14 {
	font-size: 1.4em !important;
}

.fs15 {
	font-size: 1.5em !important;
}

.fs16 {
	font-size: 1.6em !important;
}

.fs18 {
	font-size: 1.8em !important;
}

.fs20 {
	font-size: 2em !important;
}

.fs24 {
	font-size: 2.4em !important;
}

.fwBld {
	font-weight: bold !important;
}

.fwNml {
	font-weight: normal !important;
}

.flBld:first-line {
	font-weight: bold !important;
}

span.framePart {
	border: 2px solid #ccc;
	padding: 0 0.3em;
	margin-right: 0.5em;
	font-weight: bold;
	font-size: 0.9em;
}

.alert01 {
	color: #ff000d !important;
}

.att01 {
	color: #4CAF50;
	font-weight: 800;
}

dl.description {
	line-height: 1.6em;
}

dl.description dt {
	font-size: 1.05em;
	font-weight: bold;
	margin-bottom: 0.5em;
}

dl.description>dd+dt {
	margin-top: 1.05em;
}


dl.disc dd {
	display: list-item;
	list-style-type: disc;
}

dl.disc dd.no-list {
	margin-left: 0;
	list-style-type: none;
}

dl.ddmg1em dd,
dl.disc dd.no-list {
	margin-bottom: 1em;
}

ul.disc,
ul.circle {
	padding-left: 0.5em;
}

dl.disc dd {
	margin-left: 1.5em;
}

li.tIndent dl.disc dd {
	padding-left: 1em;
}

ul.disc {
	list-style-type: disc;
}

ul.disc li,
ul.circle li {
	margin-left: 1em;
	/* padding-bottom: 10px; */

}

ul.disc li::marker {
	color: #b6da9d;
}


ul.disc li.no-list {
	margin-left: 0;
	list-style-type: none;
}

ul.circle {
	list-style-type: circle;
}

ul.discList li:not(:last-child)::after {
	content: "・";
}

ol.decimal {
	margin-left: 2em;
	margin-right: 1em;
	list-style-type: decimal;
	list-style-position: outside;
}

ol.lRoman {
	margin-left: 2em;
	margin-right: 1em;
	list-style-type: lower-roman;
	list-style-position: outside;
}

ol.decimal li,
ol.lRoman li {
	margin-bottom: 0.5em;
}

ol.lLatin {
	margin-left: 2em;
	margin-right: 1em;
	list-style-type: lower-latin;
	list-style-position: outside;
}

.decimal li ol,
.decimal li ul,
.decimal li dl,
.eachIndent li ol,
.eachIndent li ul,
.eachIndent li dl,
.eachIndent dd dl,
.eachIndent dd ol,
.eachIndent dd ul {
	margin-left: 2em;
	margin-right: 0;
}


/*-------------------
マージン
-------------------*/
.mgT00 {
	margin-top: 0 !important;
}

.mgT10 {
	margin-top: 10px !important;
}

.mgT20 {
	margin-top: 20px !important;
}

.mgT30 {
	margin-top: 30px !important;
}

.mgT40 {
	margin-top: 40px !important;
}

.mgT50 {
	margin-top: 50px !important;
}

.mgT60 {
	margin-top: 50px !important;
}

.mgB00 {
	margin-bottom: 0px !important;
}

.mgB10 {
	margin-bottom: 10px !important;
}

.mgB20 {
	margin-bottom: 20px !important;
}

.mgB30 {
	margin-bottom: 30px !important;
}

.mgB40 {
	margin-bottom: 40px !important;
}

.mgB60 {
	margin-bottom: 50px !important;
}

.mgB60 {
	margin-bottom: 60px !important;
}


/*-------------------
パディング
-------------------*/
.pdT00 {
	padding-top: 0 !important;
}

.pdT10 {
	padding-top: 10px !important;
}

.pdT20 {
	padding-top: 20px !important;
}

.pdT30 {
	padding-top: 30px !important;
}

.pdT40 {
	padding-top: 40px !important;
}

.pdT50 {
	padding-top: 50px !important;
}

.pdT60 {
	padding-top: 50px !important;
}

.pdB10 {
	padding-bottom: 10px !important;
}

.pdB20 {
	padding-bottom: 20px !important;
}

.pdB30 {
	padding-bottom: 30px !important;
}

.pdB40 {
	padding-bottom: 40px !important;
}

.pdB60 {
	padding-bottom: 50px !important;
}

.pdB60 {
	padding-bottom: 60px !important;
}


.fLeft {
	float: left;
}

.fRight {
	float: right;
}

.tCenter {
	text-align: center !important;
}

.tRight {
	text-align: right !important;
}

.tLeft {
	text-align: left !important;
}

a.tCenter,
a.tRight,
a.tLeft {
	display: block;
}

.tCenter img,
.tRight img,
.tLeft img {
	display: inline;
}

.nowrap {
	white-space: nowrap;
}

span.nowrap {
	display: inline-block;
	white-space: normal;
}



.pcNone {
	display: none !important;
}

.smNone {
	display: block !important;
}

@media (max-width: 768px) {


	.smNone {
		display: none !important;
	}

	.pcNone {
		display: block !important;
	}
}


/*---------------------
テキストインデント
---------------------*/
.tIndent {
	text-indent: -1em;
	padding-left: 1em;
}

.tIndent2 {
	margin-left: 1.5em;
	text-indent: -2.5em;
	padding-left: 1em;
}

.tIndentBracket {
	margin-left: 0.8em;
	text-indent: -1.6em;
	padding-left: 1em;
}

.tIndent25em {
	text-indent: -2.5em;
	padding-left: 2.5em;
}

.tIndent3em {
	text-indent: -3em;
	padding-left: 3em;
}

/*---------------------
コンバージョンエリア
---------------------*/
.cv_area {
	padding: 2rem;
}

@media (max-width: 768px) {
	.cv_area {
		padding: 0;
	}

}

.cv_area .flow {
	display: flex;
	padding: 2rem;
	margin: 2rem 0;
	background-color: #6baebe;
	color: #fff;
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	background-image: url(/univ_rps/common/images/cv_bgimg_AI72220-202510-003.png);
	background-repeat: no-repeat;
}

@media (max-width: 768px) {
	.cv_area .flow {
		flex-direction: column;
		padding: 1rem;
	}

	.cv_area .flow {
		background-image: url(/univ_rps/common/images/cv_bgimg_sm_AI72220-202510-004.png);
	}
}

.cv_area .flow p {
	padding-left: 15rem;
	font-weight: 800;
	font-size: 1.2rem;
	text-shadow: 1px 1px 2px #4698ab, 0 0 1em #6baebe, 0 0 0.2em #6baebe;
}

@media (max-width: 11000px) {
	.cv_area .flow p {
		padding-left: 8rem;
	}
}

@media (max-width: 1000px) {
	.cv_area .flow p {
		padding-left: 0;
		font-size: 1.0rem;
	}
}

.cv_area .flow a.grid4 {
	width: 20%;
}

@media (max-width: 768px) {
	.cv_area .flow {
		flex-direction: column;
	}

	.cv_area .flow p {
		padding: 8rem 0 0 0;
		font-size: 1.0rem;
		margin-left: 0;
	}

	.cv_area .flow a.grid4 {
		width: 70%;
	}

}

.cv_area .flow .cv_btn {
	text-align: center;
	width: 80%;
}

@media (max-width: 768px) {
	.cv_area .flow {
		text-align: center;
	}
}

p.cv_btn {
	text-align: center;

}

p.cv_btn a {
	width: 30%;
}

@media (max-width: 768px) {
	p.cv_btn a {
		width: 70%;
	}
}


/*--------------------
高さを揃えるJS-1
--------------------*/
pre,
p.codeStyle {
	margin: 0.5em auto 1em auto;
	border: 1px solid #999;
	padding: 0 2em;
	background: #F9F9F9;
}

p.codeStyle {
	padding: 0.8em 2em;
}





/*--------------------
テーブルの基本
--------------------*/

table.detail {
	width: 100%;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
}

table.detail caption {
	margin-bottom: 0.2em;
	text-align: left;
	padding-left: 1.04%;
	font-size: 1.05em;
}

table.detail th,
table.detail td {
	padding: 1.04%;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}

table.detail th {
	background: #efefef;
	text-align: left;
	width: 8em;
	vertical-align: top;
}

table.vaTop td,
table td.vaTop {
	vertical-align: top;
}

table.thCenter th {
	text-align: center;
}

table.tdCenter td {
	text-align: center;
}

table.detail td p,
table.detail td ol,
table.detail td ul,
table.detail td dl {
	margin-top: 1em;
}

table.detail td *:first-child {
	margin-top: 0;
}

table td.teacher:after {
	content: "";
	clear: both;
	display: block;
}

table td.teacher img {
	float: left;
	margin-right: 2em;
}

table td.teacher a,
table td.teacher span {
	width: 100%;
	float: left;
	line-height: 51px;
}

table td.teacher a.clear,
table td.teacher p.clear {
	margin-top: 10px;
}

table td.teacher a.clear:after,
table td.teacher p.clear:after {
	content: "";
	clear: both;
	display: block;
}

table tr td ul.disc,
table tr td ul.circle {
	margin-left: 1em;
}