@charset "utf-8";

/*============

mocktest.css

=============*/

/*============

Nav

=============*/

/*-------------

bottom-nav-list

--------------*/

.bottom-nav-list > li:not(.bottom-nav-list__service),
.bottom-nav-list__service > ul > li:not(.bottom-nav-list__business),
.bottom-nav-list__service .bottom-nav-list__first-title,
.bottom-nav-list__business .bottom-nav-list__second-title,
.bottom-nav-list__business .bottom-nav-list__second-level > li:not(.bottom-nav-list__business__mocktest) {
	display: none;
}

.bottom-nav-list__first-level,
.bottom-nav-list__second-level {
	padding-left: 0;
}

/* title */
.bottom-nav-list__third-title {
	font-size: max(2.0rem, 18px);
}

.bottom-nav-list .bottom-nav-list__third-title a {
	padding: 1.6rem 1.6rem 1.6rem 3.2rem;
}

.bottom-nav-list .bottom-nav-list__third-title a:before {
	width: 2.4rem;
	height: 0.6rem;
	top: 2.9rem;
}

/*============

Layout

=============*/

/*-------------

content-title

--------------*/

.content-title + .content-second-title {
	margin-top: 8rem;
}

.content-fourth-title {
	margin-top: 4rem;
}

/*-------------

sample-box

--------------*/

.sample-box {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	padding-bottom: 2rem;
}

.sample-box__unit {
	width: calc(100%/2 - 2rem);
	margin-top: 2rem;
}

.sample-box__unit a {
	display: block;
	background-color: #fff;
	border-radius: 2rem;
	box-shadow: 0 0.6rem 1.2rem -0.2rem rgba(50, 50, 93, 0.25), 0 0.3rem 0.7rem -0.3rem rgba(0, 0, 0, 0.3); /* #22 */
	transition: all 0.3s;
	height: 100%;
}

.sample-box__unit a:hover {
	box-shadow: 0 1.3rem 2.7rem -0.5rem rgba(50, 50, 93, 0.25), 0 0.8rem 1.6rem -0.8rem rgba(0, 0, 0, 0.3); /* #23 */
	transition: all 0.3s;
}

/* sample-box__img-cont */

.sample-box__img-cont {
	overflow: hidden;
	border-radius: 2rem 2rem 0 0;
	position: relative;
}

.sample-box__img {
	position: relative;
}

.sample-box__img:after {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 5.6rem;
	height: auto;
	opacity: 0.8;
}

.sample-box__img--pdf:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 0.1rem;
	background-color: #ccc;
	z-index: 1;
}

.sample-box__img--pdf:after {
	background: url(../../../img/pdf_ic02.svg) no-repeat center center;
	background-size: 4.8rem auto;
}

.sample-box__img--movie:after {
	background: url(../../../img/movie_ic02.svg) no-repeat center center;
	background-size: 5.6rem auto;
}

.sample-box__img img {
	width: 100%;
	height: 28rem;
	object-fit: cover;
}

.sample-box__unit a .sample-box__img img {
	transition: all 0.3s;
}

.sample-box__unit a:hover .sample-box__img img {
	transform: scale(1.1);
	transition: all 0.3s;
}

/* sample-box__caption */

.sample-box__caption {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	margin: auto;
	display: inline-block;
	text-align: center;
	font-size: 14px;
}

.sample-box__caption span {
	display: inline-block;
	padding: 0.2rem 1rem 0.2rem 3.2rem;
	border: solid 0.1rem #ccc;
	background-color: rgba(255, 255, 255, 0.9);
	position: relative;
}

.sample-box__caption__pdf:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 1rem;
	margin: auto;
	width: 1.6rem;
	height: auto;
	background: url(../../../img/pdf_ic03.svg) no-repeat center left;
	background-size: 1.6rem auto;
}

.sample-box__caption__movie:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0.9rem;
	margin: auto;
	width: 2.0rem;
	height: auto;
	background: url(../../../img/clock_ic03.svg) no-repeat center left;
	background-size: 2.0rem auto;
}

/* sample-box__txt-cont */

.sample-box__txt-cont {
	padding: 0 2rem 2rem 2rem;
	text-align: center;
}

.sample-box__tag {
	font-size: 14px;
	margin-top: 1rem;
}

.sample-box__title {
	font-size: max(2.0rem, 20px);
	font-weight: bold;
}

/*-------------

lecture-table

--------------*/

.lecture-table {
	width: 100%;
}

.lecture-table__col--number {
	width: 8%;
}

.lecture-table__col--course {
	width: 28%;
}

.lecture-table__col--class {
	width: 24%;
}

.lecture-table__thead th {
	border-bottom: solid 0.3rem #999;
	padding: 2rem 1rem;
	text-align: center;
	vertical-align: middle;
}

.lecture-table__tbody th,
.lecture-table__tbody td {
	border-bottom: solid 0.1rem #ccc;
	padding: 2rem 1rem;
	text-align: center;
	vertical-align: middle;
}

.lecture-table__def {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.lecture-table__def dt {
	width: 8rem;
	text-align: right;
	font-size: 14px;
	font-weight: bold;
}

.lecture-table__def dd {
	width: calc(100% - 8rem);
	text-align: left;
	padding-left: 2rem;
}

/*============

media queries

=============*/

/*-------------

タブレット・スマホ

--------------*/

@media (max-width: 959px) {
	/* sample-box */
	.sample-box__unit {
		width: calc(100%/2 - 1rem);
	}

	.sample-box__img img {
		height: 24rem;
	}
}

/*-------------

スマホ

--------------*/

@media (max-width: 519px) {
	/* sample-box */
	.sample-box__unit {
		width: 100%;
	}

	/* lecture-table */
	.lecture-table__def {
		flex-direction: column;
	}

	.lecture-table__def dt {
		width: 100%;
		text-align: left;
	}

	.lecture-table__def dd {
		width: 100%;
		text-align: left;
		padding-left: 0;
	}
}
