@charset "utf-8";

/* -------------------------------------
.btnCont　共通ボタン
----------------------------------------*/
.btnContSet {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.btnContSet .btn {
	display: inline-block;
	position: relative;
	width: min(49%, 520px);
	background-color: #fff;
	color: #e83f24;
	text-align: center;
	box-sizing: border-box;
	border: 2px solid #e60012;
	box-shadow: 2px 2px 4px 2px rgba(102, 102, 102, 0.15);
	border-radius: 50px;
}
.btnContSet .btn a {
	position: relative;
	display: block;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding: 26px 0;
	border-radius: 50px;
	overflow: hidden;
}
.btnContSet .btn a::before,
.btnContSet .btn a::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}
.btnContSet .btn a::before {
	transition: 0.6s;
	z-index: -1;
}
.btnContSet .btn a::after {
	z-index: -2;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.6s;
}
.btnContSet .btn p{
	position: relative;
}
.btnContSet .btn p:after {
	position: absolute;
	right: 28px;
	top: 0;
	bottom: 0;
	content: "";
	display: block;
	width: 16px;
	height: 24px;
	margin: auto;
	background-image: url(../img/btn_arrow01.png);
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 1;
}
.btnContSet .detailBtn {
	border: 4px solid #e60012;
}
.btnContSet .detailBtn p {
	font-weight: bold
}
.btnContSet .detailBtn a:hover {
	background-color: #e83f24;
	opacity: 1;
}
.btnContSet .detailBtn a:hover p {
	color: #fff;
}
.btnContSet .detailBtn a:hover p:after {
	background-image: url(../img/btn_arrow05.png);
}
.btnContSet .documentBtn{
	border: none;
	background-color: transparent;
	color: #fff;
	overflow: hidden;
	cursor: pointer;
	/*width: 525px;*/
}
.btnContSet .documentBtn p{
	color: #fff;
	font-weight: bold;
}
.btnContSet .documentBtn p:after {
	width: 26px;
	height: 24px;
	background-image: url(../img/btn_arrow02.png);
	background-position: center center;
	background-repeat: no-repeat;
	right: 13px;
}
.btnContSet .documentBtn a{
	position: relative;
	padding: 28px 0 28px 85px;
	z-index: 1;
}
.btnContSet .documentBtn a:before{
	background: linear-gradient(45deg, #e83f24 0%, #eb5a0d 70%,#e83820 100%);
}
.btnContSet .documentBtn a:after{
	background: linear-gradient(45deg, #e83820 0%, #eb5a0d 70%,#e83f24 100%);
}
.btnContSet .documentBtn a:hover::before {
	opacity: 0;
}
.btnContSet .documentBtn a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
.btnContSet .documentBtn p{
	position: relative;
}
.btnContSet .documentBtn p:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 75px;
	display: inline-block;
	content: "";
	width: 38px;
	height: 39px;
	background-image: url(../img/icon_note.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
}
.btnContSet .documentBtn a {
	position: relative;
	padding: 28px 0 28px 55px;
	border-radius: 50px;
}
.btnContSet .documentBtn a:before,
.btnContSet .documentBtn a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}
.btnContSet .documentBtn a:before{
	background: linear-gradient(45deg, #e83f24 0, #eb5a0d 30%,#e83820 100%);
}
.btnContSet .documentBtn a:after{
	background: linear-gradient(45deg, #e83820 0, #eb5a0d 30%,#e83f24 100%);
}
.btnContSet .documentBtn a::before {
	transition: 0.6s;
	z-index: -1;
}
.btnContSet .documentBtn a::after {
	z-index: -2;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.6s;
}
.btnContSet .btn + .btn {
	margin-left: 36px;
}
#schoolmore .btnContSet .documentBtn.type02 a:before,
#schoolmore .btnContSet .documentBtn.type02 a:after{
	display: none;
}
#schoolmore .btnContSet .documentBtn p{
	color: #e83f24;
	font-weight: bold;
}
#schoolmore .btnContSet .documentBtn.type02 p:before{
	background-image: url(../img/icon_note02.svg);
}
#schoolmore .btnContSet .documentBtn.type02 p:after{
	background-image: url(../img/btn_arrow03.png);
}
@media screen and (max-width: 767px) {
	.btnContSet{
		align-items: center;
	}
	.btnContSet .btn {
		display: block;
		/*width: 100%;*/
		box-shadow: 1px 1px 2px 2px rgba(102, 102, 102, 0.1);
	}
	.btnContSet .btn + .btn {
		margin: 12px 0 0;
	}
	.btnContSet .btn a {
		font-size: 14px;
		padding: 18px 0;
	}
	.btnContSet .documentBtn {
		background-size: 60px;
		background-position: 10px 5px;
		margin-top: 0!important;
	}
	.btnContSet .documentBtn:before {
		left: 8%;
	}
	.btnContSet .btn:after {
		right: 5%;
		width: 8px;
		height: 12px;
		background-size: cover;
	}
	.btnContSet .documentBtn:after {
		width: 13px;
		height: 12px;
	}
	.btnContSet .detailBtn {
		border: 2px solid #e60012;
	}
	.btnContSet .detailBtn p,
	.btnContSet .documentBtn p {
		font-size: 16px;
	}
	.btnContSet .documentBtn p:before{
		left: 25px;
		width: 38px;
		height: 39px;
		background-size: contain;
	}
	.btnContSet .documentBtn p:after{
		width: 20px;
		height: 20px;
		background-size: contain;
	}
	#schoolmore .btnContSet .documentBtn p{
		font-size: 16px;
	}
}
@media screen and (max-width: 650px) {
	.btnContSet{
		flex-direction: column;
	}
	.btnContSet .btn {
		width: min(100%, 320px);
	}
	.btnContSet .detailBtn {
		margin: 0;
		margin-bottom: 2em;
	}
}
@media screen and (max-width: 350px) {
	.btnCont .btn a {
		font-size: 14px;
	}
	.btnContSet .documentBtn p:before{
		left: 20px;
		width: 35px;
		height: 35px;
	}
}
.title_set h3 img {
	height: min(7vw, 61px);
}
#results .title_set h3 img {
	height: min(17vw, 159px);
}
-------------------------------------
　メインビジュアル
----------------------------------------*/
#lpmv {
	background-image: url('../img/mv_bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}
#lpmv .mvInner {
    margin: auto;
	max-width: 1600px;
    display: flex;
    justify-content: flex-end;
	align-items: center;
}
#lpmv .ph {
	order: 2;
	width: 58%;
	/*max-width: 908px;*/
}
#lpmv .txt {
	order: 1;
    width: 42%;
	margin: 0 2vw;
	/*max-width: 632px;*/
}
#lpmv .txt .bg {
    border: 2px solid #fff;
    background: rgba(255,255,255,0.4);
    padding: min(50px, 3vw) 2vw 2vw 2vw;
}
#lpmv .txt h1 {
	margin-bottom: min(64px, 3vw);
}
#lpmv .txt li {
	margin-bottom: min(40px, 2.5vw);
}
#lpmv .txt li:last-child {
	margin-bottom: 0;
}
#lpmv .txt img {
	width: 100%;
}
#lpmv .txt a {
	display: block;
}
#lpmv .txt a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
	#lpmv .txt .bg {
		padding-top: 2em;
		position: relative;
	}
	#lpmv .txt .read {
		width: 50%;
		max-width: 300px;
		margin-bottom: 0.2em;
		position: absolute;
		left: 2vw;
		top: 0;
	}
}
@media screen and (max-width: 430px) {
	#lpmv .mvInner {
		display: block;
		padding-bottom: 1vw;
	}
	#lpmv .ph {
		width: auto;
	}
	#lpmv .txt {
		width: auto;
		margin: 10px;
	}
	/*#lpmv .txt .bg {
		padding: 1.8em;
		box-shadow: 0px 2px 4px 2px rgba(102, 102, 102, 0.15);
	}*/
	#lpmv .txt .read {
		right: 3em;
		left: initial;		
		top: initial;
	}
	#lpmv .txt h1 {
		margin-bottom: 1.5em;
	}
	#lpmv .txt h1 img {
		width: 90%;
	}
	#lpmv .txt li {
		margin-bottom: 1.5em;
	}
}
/*右上追従ボタン*/
#flowBtn {
	position: fixed;
	right: 0;
	top: 120px;
	z-index: 3;
}
#flowBtn a {
	writing-mode: vertical-rl;
	position: relative;
	display: block;
	background-color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.2;
	font-size: 18px;
	padding: 2.5em 1em 1em 1em;
	box-shadow: 2px 3px 6px 2px rgba(0, 0, 0, 0.15);
	margin-bottom: 1em;
}
#flowBtn a:hover {
	background-color: #f2f2f2;
	opacity: 1;
}
#flowBtn a span {
	display: inline-block;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}
#flowBtn a:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0.5em;
	margin: 0 auto;
	width: 1.5em;
	height: 1.6em;
	background-image: url('../img/icon_yoyaku.svg');
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: top center;
}
@media screen and (max-width: 767px) {
	#flowBtn {
		top: 58px;
		/*position: absolute;*/
	}
	#flowBtn a {
		font-size: min(4vw, 14px);
		padding-left: 0.7em;
		padding-right: 0.7em;
		background-color: rgba( 255, 255, 255, 0.60 );
	}
	#flowBtn a span {
		display: none;
	}
}
@media screen and (max-width: 430px) {
	#flowBtn {
		top: initial;
		bottom: 150px;
	}
}
/* -------------------------------------
#bannermv MVバナー-
----------------------------------------*/
#bannermv .inner {
	padding: 3em 0;
}
#bannermv li {
	display: block;
	box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.15);
}
#bannermv li:first-child {
	margin-bottom: 2em;
}
#bannermv li a {
	display: block;
} 
#bannermv li a img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 430px) {
	#bannermv .inner {
		padding-top: 1em;
		padding-bottom: 2em;
	}
	#bannermv li {
		box-shadow: none;
	}	
}
/* -------------------------------------
#lecturer 講師
----------------------------------------*/
#lecturer {
	text-align: center;
	background-color: #f1eae2;
	position: relative;
}
#lecturerTop {
	position: relative;
	background-image: url(../img/lecturer_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 280px 0;
	/*overflow: hidden;*/
	max-width: 1600px;
	margin: auto;
}
#lecturer:before {
	content: '';
	position: absolute;
	top: min(14.5vw, 232px);
	left: 0;
	right: 0;
	width: 100%;
	height: 224px;
	margin: 0 auto;
	background-color: #fff;
}
#lecturerTop > div img {
	position: relative;
	padding: 14px 16% 0 0;
	z-index: 1;
}
#lecturerTop > div > div {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	margin: -5% auto 20px;
}
#lecturerTop > div > div .lecturerBtn {
	position: absolute;
	right: 18px;
	bottom: -15px;
	z-index: 2;
}
.iziModal-content > div {
	padding: 40px;
}
.iziModal .detail > div {
	width: 316px;
	float: left;
	text-align: center;
}
.iziModal .detail > div + div {
	width: 410px;
	float: right;
	text-align: left;
}
.iziModal .close {
	display: block;
	position: absolute;
	right: 0px;
	top: -40px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 10;
	padding: 0;
}
.iziModal .close > a {
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
}
.iziModal .close > a {
	position: relative;
}
.iziModal .close > a:before,
.iziModal .close > a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(12px) rotate(-45deg);
}
.iziModal .close > a:before {
	top: 24px;
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}
.iziModal .name {
	text-align: left;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.3;
	letter-spacing: 0.1em;
	padding-bottom: 15px;
}
.iziModal dt {
	font-size: 26px;
	font-size: 2.6rem;
	line-height: 1.2;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 2px solid #e8c27e;
}
.iziModal dd {
	line-height: 1.8;
}
.iziModal-navigate > button {
	opacity: 0.8;
}
#lecturerBottom {
	text-align: center;
}
.iziModal-navigate-caption {
	display: none !important;
}
#lecturerBottom > div {
	position: relative;
}
#lecturerBottom .lecturerImage {
	position: absolute;
	top: -140px;
	right: 24px;
}
#lecturerBottom h3 {
	float: left;
}
#programContents .btnCont .lpBtn {
	width: 100%;
	text-align: left;
	display: inline-block;
	margin-right: 4px;
}
#programContents .btnCont .lpBtn:last-child {
	margin-right: 0;
}
#programContents .btnCont .lpBtn a {
	font-size: 18px;
	font-size: 1.8rem;
	padding: 14px 4px;
	cursor: pointer;
	letter-spacing: 0.05em;
	width: 100%;
}
#programContents .btnCont .lpBtn span {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}
#programContents .btnCont .lpBtn span.subject {
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 0.2em;
}
#programContents .btnCont .lpBtn p{
	display: inline-block;
	font-weight: 500;
	text-align: center;
	max-width: 135px;
	width: 100%;
}
#programContents .btnCont .lpBtn span.subject{
	letter-spacing: 0.1em;
	border: 1px solid #fff;
	max-width: 100px;
	box-sizing: border-box;
	padding: 3px 0 5px;
	text-align: center;
	display: inline-block;
	width: 100%;
	margin-right: 50px;
}
#programContents .btnCont .lpBtn:after {
	right: 19px;
	top: 0;
	width: 12px;
	height: 12px;
	bottom: 0;
	margin: auto;
}
.lecturerContent ul {
	padding: 0 0 92px;
}
.lecturerContent li {
	float: left;
	width: 380px;
	height: 450px;
	background-color: #fff;
	padding: 30px 20px 20px;
	margin-right: 30px;
	box-sizing: border-box;
	background-image: url(../img/corner.png);
	background-position: left top;
	background-repeat: no-repeat;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.2);
}
.lecturerContent li:last-child {
	margin-right: 0;
}
.lecturerContent li dt {
	display: inline-block;
	margin-bottom: 19px;
}
.lecturerContent li dd + dd {
	font-size: 15px;
	font-size: 1.5rem;
	text-align: left;
	line-height: 1.85;
	letter-spacing: -0.04em;
	padding: 23px 0 12px;
}
@media screen and (max-width: 1440px) {
	#lecturerTop {
		padding: 222px 0;
	}
}
@media screen and (max-width: 767px) {
	#lecturer {
		background-color: #ffffff;
	} 
	#lecturer:before {
		content: none;
	}
	#lecturer img {
		vertical-align: top;
	}
	#lecturerBottom {
		padding: 15px 0 20px;
	}
	#lecturerBottom h3 {
		float: none;
		width: 90%;
		margin: auto;
	}
	#lecturerBottom .lecturerImage {
		position: relative;
		top: auto;
		right: auto;
	}
	#lecturerBottom > div > div {
		position: relative;
	}
	#programContents .btnCont .lpBtn a {
		font-size: 12px;
		font-size: 1.2rem;
		padding: 4px;
	}
	#programContents .btnCont .lpBtn a {
		display: flex;
		align-items: center;
		justify-content: left;
		padding: 6px;
	}
	#programContents .btnCont .lpBtn span.subject{
		margin-right: 10px;
	}
	#programContents .btnCont .lpBtn:after {
		width: 8px;
		height: 8px;
	}
	#programContents .btnCont .lpBtn span {
		font-size: 10px;
		font-size: 1.0rem;
		font-weight: 500;
	}
	#programContents .btnCont .lpBtn span.subject {
		font-size: 1.0rem;
		line-height: 1.4;
	}
	#lecturerBottom .message p {
		font-size: 15px;
		font-size: 1.5rem;
		line-height: 1.6;
		text-align: left;
	}
	#lecturerBottom .lecturerBtn {
		padding: 16px 0 0;
	}
	.lecturerContent ul {
		text-align: center;
		padding: 20px 0;
	}
	.lecturerContent li,
	.lecturerContent li:last-child {
		width: 96%;
		height: inherit;
		float: none;
		margin: 0 auto 10px;
		padding: 20px 20px 12px 20px;
	}
	.lecturerContent li dt {
		font-size: 20px;
		font-size: 2.0rem;
	}
	.lecturerContent li dd + dd {
		letter-spacing: -0.01em;
		padding: 15px 0 0;
	}
	.iziModal {
		width: 95%;
	}
	.iziModal .name {
		text-align: center;
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 1.4;
	}
	.iziModal-content > div {
		padding: 20px 5%;
	}
	.iziModal .detail > div {
		width: 70%;
		float: none;
		text-align: center;
		margin: auto;
	}
	.iziModal .detail > div + div {
		width: auto;
		float: none;
		text-align: left;
		padding-top: 15px;
	}
	.iziModal dt {
		font-size: 20px;
		font-size: 2.0rem;
	}
	.movie iframe {
		width: 100%;
		height: 200px;
	}
	.iziModal .iziModal-iframe {
		height: 52.875vw !important;
	}
	.iziModal {
		width: 94%;
	}
	.iziModal .close {
		top: -30px;
	}
	.iziModal .close > a:before,
	.iziModal .close > a:after {
		width: 30px;
	}
}
/* -------------------------------------
#lpmain
----------------------------------------*/
#lpmain {
	position: relative;
	background-image: url(../img/main_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 119px 0 99px;
}
#lpmain .main_bg {
	position: absolute;
	top: -120px;
	left: -40px;
}
#lpmain .mainText {
	font-size: 19px;
	font-size: 1.9rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 2;
	color: #1f1714;
}
#lpmainTop {
	position: relative;
}
#lpmainTop .textWrap {
	float: left;
	width: 42%;
	margin-right: 3%;
}
#lpmainTop .textWrap h2 {
	padding: 30px 0 20px;
}
#lpmainTop .textWrap .textSet {
	background-color: #fff;
	padding: 9px 4px 20px;
}
#lpmainTop .textWrap .textSet p:first-of-type {
	margin-bottom: 20px;
}
#lpmainTop .imgWrap {
	float: right;
	width: 55%;
}
#lpmainTop h2,
#lpmainTop p {
	position: relative;
	z-index: 1;
}
#lpmainTop .main_bg02 {
	position: absolute;
	bottom: 0;
	left: -110px;
	z-index: 0;
}
#school {
	padding: 60px 0 0;
}
#schoolmore {
	background: linear-gradient( 40deg, #e83f24 0%, #eb5a0d 30%, #e83820 100%);
	background-image: -webkit-linear-gradient( 40deg, #e83f24 0%, #eb5a0d 30%, #e83820 100%);
	background-image: -ms-linear-gradient( 40deg, #e83f24 0%, #eb5a0d 30%, #e83820 100%);
	padding: 58px 0 64px;
}
#schoolmore .btnContSet {
	justify-content: center;
}
#schoolmore .btnContSet .documentBtn {
	background: #fff;
	color: #e83f24;
	border: none;
}
#schoolmore .btnContSet .documentBtn:before {
	background-image: url(../img/icon_note02.svg);
}
#schoolmore .btnContSet .documentBtn:after {
	background-image: url(../img/btn_arrow03.png);
}
#school > div > ul {
	margin-bottom: 60px;
}
#schoolmore > div > .centerSet {
	margin-bottom: 27px;
}
#school li {
	float: left;
	width: 23.6%;
	/*width: 285px;*/
	height: 386px;
	background-color: #fff;
	text-align: center;
	margin-right: 20px;
}
#school li:last-child {
	margin-right: 0;
}
#school li > div {
	background-image: url(../img/arrow.png);
	background-position: left 34px;
	background-repeat: no-repeat;
	text-align: left;
	padding: 28px 25px 25px;
}
#school li dt {
	font-size: 22px;
	font-size: 2.2rem;
	letter-spacing: 0.06em;
	padding-bottom: 13px;
	font-weight: 500;
}
#school li dd {
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.85;
}
@media screen and (max-width: 767px) {
	#lpmain {
		background-image: url(../img/main_bg_sp.png);
		background-size: cover;
		background-position: top right;
		padding: 50px 0;
	}
	#lpmainTop .textWrap h2 {
		padding: 0 0 20px;
	}
	#lpmain .mainText {
		font-size: 15px;
		font-size: 1.5rem;
		line-height: 1.75;
		padding: 0;
		letter-spacing: 0;
	}
	#lpmainTop .textWrap .textSet p:first-of-type {
		margin-bottom: 10px;
		padding: 0;
	}
	#lpmainTop .textWrap .textSet {
		padding: 14px;
		margin-bottom: 24px;
	}
	#lpmainTop .main_bg02 {
		display: none;
	}
	#lpmainTop .textWrap {
		float: none;
		width: 100%;
	}
	#lpmainTop .imgWrap {
		float: none;
		width: 95%;
		margin: auto;
	}
	#school {
		padding: 35px 0 0;
	}
	#schoolmore {
		padding: 35px 0 40px;
	}
	#school > div > ul {
		margin-bottom: 28px;
	}
	#school li {
		height: inherit;
	}
	#school li,
	#school li:last-child {
		float: none;
		width: 95%;
		margin: 0 auto 12px;
	}
	#school li > div {
		padding: 15px 22px 15px;
		background-position: left 20px;
	}
	#school li dt {
		font-size: 20px;
		font-size: 2.0rem;
		padding-bottom: 10px;
	}
	#schoolmore > div > .centerSet {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 414px) {
	#lpmain {
		background-position: center top;
	}
}
@media screen and (max-width: 350px) {
	#lpmain .mainText {
		font-size: 13px;
		font-size: 1.3rem;
	}
	#school li dt {
		font-size: 18px;
		font-size: 1.8rem;
	}
	#school li dd {
		line-height: 1.6;
	}
	#school li > div {
		padding: 15px 18px 15px;
	}
}
/* -------------------------------------
.lpBtn
----------------------------------------*/
.lpBtn {
	position: relative;
	width: 188px;
	text-align: center;
	background-color: #e83f24;
	margin: auto;
	border-radius: 50px;
}
#programContents .btnCont .lpBtn {
	position: relative;
	width: 100%;
	background-color: #e83f24;
	border-radius: 0;
	margin-bottom: 9px;
	box-sizing: border-box;
	padding: 0 20px;
}
#programContents .btnCont .lpBtn:last-child {
	margin-bottom: 0;
}
.lpBtn a {
	display: inline-block;
	color: #fff;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	padding: 10px 0;
}
.lpBtn:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background-image: url(../img/arrow_01.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	align-items: center;
	position: absolute;
	right: 13px;
	top: 13px;
}
@media screen and (max-width: 767px) {
	.lpBtn {
		width: 154px;
	}
	.lpBtn:after {
		width: 11px;
		height: 11px;
		top: 13px;
	}
	.lpBtn a {
		font-size: 15px;
		font-size: 1.5rem;
	}
	#programContents .btnCont .lpBtn {
		width: 100%;
		margin-right: 0;
	}
	#programContents .btnCont .lpBtn:last-child {
		margin-right: 0;
	}
	#programContents .btnCont {
		width: 100%;
	}
}
@media screen and (max-width: 350px) {
	.lpBtn {
		width: 160px;
	}
	.lpBtn a {
		font-size: 16px;
		font-size: 1.6rem;
	}
	#programContents .btnCont {
		top: 346px;
		width: 100%;
		left: 0;
		right: 0;
		margin: auto;
	}
	#programContents .btnCont .lpBtn a {
		font-size: 11px;
		font-size: 1.1rem;
	}
}
/* -------------------------------------
#program
----------------------------------------*/
#program {
	background-image: url("../img/oc_bg.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
}
#program {
	padding-bottom: 121px;
}
#programTitle {
	background-image: url(../img/program_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 70px 0;
}
#programContents > div {
	background-color: #fff;
	box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
}
#program #programContents > div.main_title {
	border: none;
	background-color: inherit;
	padding: 116px 0 68px;
	box-shadow: none;
}
#programContents > div > div {
	padding: 57px 60px 15px;
	border-bottom: 1px solid #e8e8e8;
	box-sizing: border-box;
}
#programContents > div > div.btnContSet {
	padding-bottom: 103px;
}
#programContents > div > div.reserve {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 20px;
}
#programContents > div > div.event {
	padding: 86px 52px 0;
	border-bottom: none;
	position: relative;
	display: flex;
	justify-content: space-between;
}
#programContents > div > div.event.type01{
	padding: 50px 52px 0;
}
#programContents > div > div.images {
	border-bottom: none;
}
#programContents .columnn2 > div {
	width: 470px;
	float: left;
}
#programContents .columnn2 > div + div {
	width: 590px;
	float: right;
}
#programContents .columnn2 > div .programText {
	padding: 4px 0 47px 5px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.25;
	letter-spacing: 0.06em;
}
#programContents .event .ocImg {
	padding-top: 41px;
}
#programContents .event.type01 .ocImg{
	margin-top: -3px;
	padding: 11px 0 0;
}
.programText {
	line-height: 1.85;
}
.programTitle {
	background-color: #fafafa;
	padding: 23px 0 25px 30px;
}
.programTitle .programName {
	float: left;
	flex-basis: 31.5%;
	width: 31.5%;
	min-height: 111px;
	background-color: #f1f0f0;
	padding: 16px 0;
	text-align: center;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*.programTitle .programDate {
	box-sizing: border-box;
	flex-basis: 68.5%;
	width: 68.5%;
	display: flex;
	align-items: center;
}*/
/*
.programTitle.type02 .programDate {
	width: 830px;
}
.programTitle.type02 .programName {
	background-color: #ffb85a;
}
.programTitle.type02 .programBtn {
	background-color: #ec7d1a;
}
.programTitle.type02 .programBtn:after {
	border-color: #ec7d1a #ec7d1a transparent transparent;
}*/
.programTitle > div p {
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: 300;
	padding-bottom: 12px;
}
.programTitle > div + img {
	float: left;
}
/*  .programBtn  */
.programBtn {
	position: relative;
	width: 220px;
	text-align: center;
	background-color: #c89961;
	margin: auto;
	border-radius: 50px;
}
.programBtn span {
	display: block;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 9px 0 10px;
}
.programBtn:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	background-color: #fff;
	border-radius: 50px;
	margin: auto;
	pointer-events: none;
}
.programBtn:after {
	position: absolute;
	right: 15px;
	top: 11px;
	bottom: auto;
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	margin: auto;
	border: 2px solid;
	border-color: #c89961 #c89961 transparent transparent;
	transform: rotate(135deg);
	z-index: 1;
	pointer-events: none;
}
.open .programBtn:after {
	top: 16px;
	transform: rotate(-45deg);
}
.programTable {
	display: none;
}
.programTable.type02 {
	padding: 30px 20px 16px;
}
.programTable > ul > li {
	display: table;
	width: 100%;
	border-bottom: 1px solid #d2cdbe;
}
.programTable > ul > li:first-child {
	border-top: 1px solid #d2cdbe;
}
.programTable > ul > li.bg {
	background-color: #e8e6de;
	text-align: center;
	padding: 14px 0;
}
.programTable > ul > li.bg p {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.06em;
}
.programTable dt {
	display: table-cell;
	width: 170px;
	background-color: #f1f1f1;
	font-weight: 500;
	box-sizing: border-box;
	letter-spacing: 0.06em;
	text-align: center;
	font-size: 15px;
}
.programTable dd {
	display: table-cell;
	width: 420px;
	padding: 12px 0 12px 33px;
	box-sizing: border-box;
}
.programTable dd > div {
	width: 205px;
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	box-sizing: border-box;
}
.programTable > ul > li.wid dd > div {
	width: 150px;
}
.programTable dd > div + div {
	width: 175px;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
}
.programTable > ul > li.wid dd > div + div {
	width: 230px;
}
.programTable dd > div p {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.06em;
}
.programTable dd > div + div p {
	line-height: 1.4;
	font-weight: 400;
}
.programTable dd p.description {
	font-size: 12px;
	letter-spacing: -0.08em;
	line-height: 1.7;
}
.programTable dd p.description.ls {
	letter-spacing: 0.06em;
}
.programTable dd p.description.mt {
	margin-top: 0.5em;
}
.programTable .note {
	font-weight: 500;
	padding-top: 20px;
}
.programList li:first-child .programTable {
	display: block;
}
.programTitleWrap {
	padding-bottom: 68px;
}
.programTitleWrap > div {
	width: 400px;
	float: left;
	padding-top: 5px;
	text-align: center;
}
.programTitleWrap > div + div {
	width: 680px;
	float: right;
    padding: 0 0 0 45px;
    box-sizing: border-box;
}
.timeTable {
	display: table;
	width: 100%;
	margin-top: 8px;
	border-top: 1px solid #d2cdbe;
	border-bottom: 1px solid #d2cdbe;
}
.timeTable dt {
	display: table-cell;
	width: 160px;
	background-color: #5b5b5b;
	color: #fff;
	font-weight: 500;
	padding: 14px 20px;
	box-sizing: border-box;
}
.timeTable dd {
	display: table-cell;
	width: 520px;
	font-weight: 500;
	padding: 14px 20px;
	box-sizing: border-box;
}
.programTable.type02 li {
	display: block;
}
.programTable.type02 .tableContent {
	display: block;
	float: left;
	width: 890px;
	vertical-align: middle;
	padding: 0;
}
.programTable.type02 .tableContent div {
	display: block;
	float: left;
	width: 150px;
	padding: 13px 0;
}
.programTable.type02 .date {
	display: table;
	float: left;
	width: 150px;
	background-color: #5b5b5b;
	color: #fff;
	font-weight: 500;
	padding: 13px 20px;
	box-sizing: border-box;
}
.programTable.type02 .date > div {
	display: table-cell;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}
.programTable.type02 .tableContent div.bg {
	background-color: #eaeae8;
	text-align: center;
}
.programTable.type02 .tableContent div + div {
	width: 370px;
	padding: 13px 35px;
	box-sizing: border-box;
}
.programTable.type02 .tableContent div + div p {
	line-height: 1;
	font-weight: 500;
}
.programTable.type02 .tableContent div + div + div p {
	font-weight: 300;
}
.programTable.type02 .tableContent li + li {
	border-top: 1px solid #d2cdbe;
}
#programContents #freeProgram {
	text-align: center;
	padding: 46px 60px 107px;
}
#freeProgram .programTitle {
	text-align: left;
}
.programTitleWrap > div + div p {
	text-align: left;
	font-size: 16px;
	line-height: 2.25;
	font-weight: 500;
}
.programTitleWrap + div {
	text-align: left;
	border-bottom: 1px solid #d2cdbe;
	border-top: 1px solid #d2cdbe;
}
.programTitleWrap + div > div {
	position: relative;
	width: 400px;
	height: 133px;
	float: left;
	background-color: #f9f9f9;
}
.programTitleWrap + div > div img {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: auto;
}
.programTitleWrap + div > div + div {
	width: 680px;
	float: right;
	background-color: #fff;
	padding: 35px 0 0 45px;
	box-sizing: border-box;
}
.programTitleWrap + div > div + div .programText {
	font-weight: 600;
	letter-spacing: 0.06em;
}
.programTitleWrap + div > div + div .periodText {
	font-weight: 500;
	letter-spacing: 0.06em;
	padding-top: 7px;
}
.programBtnCont {
	text-align: center;
	padding: 40px 0 120px;
}
.programBtnCont > div {
	padding-top: 50px;
}
.programBtnCont > div a {
	display: inline-block;
}
.programBtnCont > div a + a {
	margin-left: 12px
}
#programContents > div > div.columnn2.type01 {
	padding-bottom: 50px;
}
#programContents > div > div.images {
	padding-top: 0;
}
#freeProgram .eventBtn{
	padding: 81px 0 0;
}
@media screen and (max-width: 767px) {
	#program {
		background-image: none;
		padding-bottom: 120px;
	}
	#programTitle {
		padding: 0 0 30px;
	}
	#program #programContents > div.main_title {
		padding: 10px 5% 84px;
		background-image: url("../img/oc_bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
		text-align: left;
	}
	#programContents > div {
		padding: 0;
		box-sizing: border-box;
	}
	#programContents > div > div,
	#programContents #freeProgram {
		padding: 30px 5%;
	}
	#programContents .columnn2 > div,
	#programContents .columnn2 > div + div {
		width: auto;
		float: none;
		text-align: center;
	}
	.programTitleWrap > div.mode_pc {
		display: none;
	}
	#programContents .main_title img {
		width: 90%;
		max-width: 420px;
		margin: 10px;
	}
	#program .images {
		display: none;
	}
	#programContents .columnn2 > div + div {
		margin-top: 28px;
	}
	#freeProgram .eventBtn{
		padding: 0;
		width: 94%;
	}
	#freeProgram .eventBtn,
	.programTitleImage,
	.programTitleWrap + div > div img {
		max-width: 400px;
		margin: auto;
	}
	.programText,
	.periodText {
		text-align: left;
		line-height: 1.75;
	}
	#programContents .columnn2 > div .programText {
		padding: 15px 0 15px;
		line-height: 1.75;
		font-size: 15px;
	}
	.programTitleWrap {
		padding-bottom: 20px;
	}
	.programTitle {
		position: relative;
		padding: 14px;
		margin: 0;
	}
	.programTitle .lecturerBtn {
		position: absolute;
		bottom: 10px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.programTitle .programName {
		width: 30%;
		height: 130px;
	}
	.programTitle .programDate,
	.programTitle.type02 .programDate {
		width: 100%;
	}
	.programTitle .programDate.mode_pc {
		display: none;
	}
	.programTitle.type02 .programName.type02,
	.programTitle.type02 .programDate.type02 {
		height: 175px;
	}
	.programTitle > div p {
		font-size: 22px;
		font-size: 2.2rem;
		padding-top: 5px;
	}
	.programTable,
	.programTable.type02 {
		padding: 10px 0;
	}
	.programTable > ul > li,
	.programTable dt,
	.programTable dd,
	.timeTable,
	.timeTable dt,
	.timeTable dd {
		display: block;
		width: 100%;
		text-align: left;
	}
	.programTable dt,
	.programTable dd,
	.timeTable dt,
	.timeTable dd {
		padding: 12px;
	}
	.programTable dd > div + div {
		padding-top: 10px;
	}
	.programTable dd > div + div p {
		line-height: 1.8;
	}
	.programTable > ul > li.bg {
		background-color: #f1f1f1;
		text-align: left;
		padding: 12px 0;
		margin-bottom: 1em;
	}
	.programTable > ul > li.bg p {
		padding-left: 12px;
	}
	.programTitleImage img {
		width: 80%;
		padding-bottom: 10px;
	}
	#freeProgram .programTitleImage img {
		width: 70%;
	}
	#programContents > div > div.event {
		padding: 30px 5% 0;
		display: flex;
		flex-direction: column;
	}
	#programContents > div > div.event.type01{
		padding: 30px 5%;
		display: flex;
		flex-direction: column;
	}
	img.event_img {
		width: 95%;
	}
	.programTable dd > div + div,
	.programTable dd > div,
	.programTitleWrap > div,
	.programTitleWrap > div + div,
	.programTable.type02 .date,
	.programTable.type02 .tableContent div,
	.programTable.type02 .tableContent,
	.programTable.type02 .tableContent div + div {
		display: block;
		width: auto !important;
		float: none;
	}
	.programTitleWrap > div + div {
		padding: 0;
	}
	.programTable.type02 .tableContent div.bg {
		text-align: left;
	}
	.programTable.type02 .date,
	.programTable.type02 .tableContent div,
	.programTable.type02 .tableContent div + div {
		padding: 12px;
	}
	.programTable.type02 .tableContent div + div + div {
		padding-top: 0;
	}
	.programTitleWrap + div > div,
	.programTitleWrap + div > div + div {
		width: auto;
		height: auto;
		float: none;
		padding: 0;
	}
	.programTitleWrap + div > div {
		text-align: center;
		padding: 8px 24px;
	}
	.programTitleWrap + div > div + div {
		padding: 16px 0;
		margin-bottom: 30px;
		border-bottom: 1px solid #d2cdbe;
	}
	.programTitleWrap > div + div p {
		padding-top: 0;
		font-size: 14px;
	}
	.programTitleWrap + div > div img {
		position: relative;
		top: 0;
		width: 94%;
	}
	.programTitleWrap + div {
		border-bottom: none;
	}
	.border_set {
		border-bottom: 1px solid #d2cdbe;
	}
	.programBtnCont {
		padding: 20px 0 40px;
	}
	.programBtnCont > div {
		padding-top: 25px;
	}
	.programBtnCont > div a + a {
		margin-left: 0;
		margin-top: 25px;
	}
	.programBtn {
		width: 64%;
		margin: 0;
		right: -33%;
	}
	.programBtn span {
		font-size: 14px;
		font-size: 1.4rem;
		padding: 8px 0;
	}
	.programBtn:after {
		top: 8px;
	}
	.open .programBtn:after {
		top: 13px;
	}
	#program .text_set {
		margin-top: -70px;
		border: 1px solid #d2cdbe;
		margin-bottom: -54px;
	}
	#programContents .event .ocImg {
		padding-top: 0;
		width: 90%;
		max-width: 420px;
	}
	.programTable dd p.description{
		letter-spacing: 0.06em;
	}
}
@media screen and (max-width: 350px) {
	.programTitle > div p {
		font-size: 18px;
		font-size: 1.8rem;
		padding-top: 5px;
	}
	#freeProgram .note {
		font-size: 11px;
		font-size: 1.1rem;
	}
}
/*school_image*/
#program .school_image {
	display: flex;
	justify-content: space-between;
	max-width: 1080px;
	margin: 0 auto;
	padding-top: 20px;
}
#program .school_image li {
	display: block;
	width: 50%;
	position: relative;
	padding-bottom: 100px;
}
#program .school_image li dl {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	border: 2px solid #e83e23;
	background-color: #ffffff;
	padding: 1em 1.8em;
	width: 85%;
	max-width: 480px;
}
#program .school_image li dl:before {
	content: "";
	position: absolute;
	top: -40px;
	right: 70px;
	z-index: 2;
	width: 32px;
	height: 54px;
	background-image: url("../img/vod_arrow.svg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}
#program .school_image li:last-child {
	padding-bottom: 0;
	padding-top: 100px;
}
#program .school_image li:last-child dl {
	bottom: initial;
	top: 0;
	left: 0;
}
#program .school_image li:last-child dl:before {
	top: initial;
	bottom: -40px;
	background-image: url("../img/study_arrow.svg");
}
#program .school_image dt {
	font-size: 22px;
	line-height: 1.63;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #e83e23;
}
#program .school_image dd {
	font-size: 15px;
	line-height: 1.86;
	font-weight: 500;
	letter-spacing: 0.06em;
}
#program .school_image .ph {
	position: relative;
	width: 88.9%;
}
#program .school_image li:last-child .ph {
	right: -11.1%;
}
@media screen and (max-width: 767px) {
	#program .school_image {
		display: block;
		padding: 0 5% 1em 5%;
		border-bottom: none;
	}
	#program .school_image li {
		width: 100%;
		margin: 0 auto 20px auto;
		padding-bottom: 70px;
	}
	#program .school_image li:last-child {
		padding-bottom: 0;
		padding-top: 135px;
		margin-bottom: 0;
	}
	#program .school_image li dl {
		max-width: 320px;
	}
	#program .school_image dt {
		font-size: 16px;
	}
	#program .school_image dd {
		font-size: 12px;
	}
}
#programContents #movie {
	text-align: center;
	padding: 47px 60px 83px;
}
#movie .programTitle {
	text-align: left;
}
#movie .programTitleWrap{
	padding-bottom: 68px;
}
#movie .programText .txt-v {
	font-size: 140%;
	font-weight: 500;
	line-height: inherit;
	display: block;
}
#movie .programText .txt-red {
	display: block;
	color: #e83f24;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.06em;
}
/*#movie .programTitleWrap > div + div p {
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.25;
	padding-top: 41px;
}
#movie .programTitleWrap > div + div p span {
	font-size: 120%;
	font-weight: 500;
	line-height: initial;
}
#movie .programTitleWrap .txt-red {
	display: block;
	color: #e83f24;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.06em;
}
#movie .programTitleWrap + div {
	text-align: left;
	border-bottom: 1px solid #d2cdbe;
	border-top: 1px solid #d2cdbe;
}
#movie .programTitleWrap + div > div {
	position: relative;
	width: 400px;
	height: 131px;
	float: left;
	background-color: #f9f9f9;
}
#movie .programTitleWrap + div > div img {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: auto;
}
#movie .programTitleWrap + div > div + div {
	width: 680px;
	float: right;
	background-color: #fff;
	padding: 35px 0 0 45px;
	box-sizing: border-box;
}
#movie .programTitleWrap + div > div + div .programText {
	font-weight: 600;
	letter-spacing: 0.06em;
}*/
#movie .note {
	text-align: left;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px 0 30px 90px;
	color: #544437;
	letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
	#programContents > div > div,
	#programContents #movie {
		padding: 30px 5%;
	}
	#programContents > div > div.btnContSet {
		padding: 0 0 40px;
	}
	#movie .programTitleWrap{
		padding-bottom: 20px;
	}
	/*#movie .programTitleWrap + div > div,
	#movie .programTitleWrap + div > div + div {
		width: auto;
		height: auto;
		float: none;
		padding: 0;
	}
	#movie .programTitleWrap + div > div {
		text-align: center;
		padding: 10px;
	}
	#movie .programTitleWrap + div > div + div {
		padding: 16px 0;
		margin-bottom: 20px;
		border-bottom: 1px solid #d2cdbe;
	}
	#movie .programTitleWrap > div + div p {
		padding-top: 0;
		font-size: 14px;
	}
	#movie .programTitleWrap + div > div img {
		position: relative;
		top: 0;
		width: 65%;
		transform: none;
	}
	#movie .programTitleWrap + div {
		border-bottom: none;
	}*/
	#movie .note {
		text-align: center;
		font-size: 12px;
		font-size: 1.2rem;
		padding: 4px 0;
	}
}
@media screen and (max-width: 350px) {
	#movie .note {
		font-size: 11px;
		font-size: 1.1rem;
	}
}
/* -------------------------------------
#senior
----------------------------------------*/
#senior {
	position: relative;
}
.seniorBg {
	position: absolute;
	left: 0;
	top: -93px;
}
#senior > div {
	position: relative;
	padding: 118px 0 0;
	z-index: 1;
}
#senior .seniorText {
	position: absolute;
	right: -48px;
	bottom: -105px;
}
@media screen and (max-width: 1024px) {
	#senior .seniorText {
		right: 0;
	}
}

/* -------------------------------------
#session
----------------------------------------*/
#session {
	background: linear-gradient( 40deg, #e83f24 0%, #eb5a0d 30%, #e83820 100%);
	padding: 123px 0 100px;
}
#session .programTitle {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
.present {
	padding: 23px 0 36px 49px;
	border: 4px solid #e83f24;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 40px;
}
.present,
.supplement {
	text-align: left;
}
.present img{
	position: absolute;
	top: -19px;
	left: 30px;
}
.sessionText {
	font-size: 20px;
	font-weight: 700;
	line-height: 2;
	padding: 31px 0 30px;
	color: #fff;
}
.present p {
	font-size: 22px;
	line-height: 2.0;
	padding: 0px 0 14px;
}
.present span,
.supplement {
	font-size: 16px;
	color: #666;
	letter-spacing: 0.06em;
}
.sessionSet .contentsWrap {
	background-color: #fff;
	padding: 62px 60px 60px;
}
.sessionSet ul li {
	display: table;
	width: 100%;
	box-sizing: border-box;
}
.sessionSet .campusProgramList > li {
	margin-bottom: 56px;
}
.sessionSet .campusProgramList > li:last-of-type {
	margin-bottom: 55px;
}
.sessionSet .campusTable ul li {
	border-top: 1px solid #dadada;
}
.sessionSet .campusTable ul li:last-of-type {
	border-bottom: 1px solid #dadada;
}
.campusProgramList .programName p {
	font-size: 16px;
	padding-bottom: 0;
	letter-spacing: 0.06em;
}
.campusProgramList .programName .accessMap {
	position: relative;
	padding-right: 30px;
}
.campusProgramList .programName .accessMap:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 30px;
	background-image: url(../img/list_map_icon.svg);
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.campusProgramList .programName .accessMap,
.campusProgramList .programName .online {
	font-size: 33px;
	letter-spacing: 0.06em;
	font-weight: 400;
	display: inline-block;
	margin-bottom: 10px;
}
#session .programTitle .programDate {
	box-sizing: border-box;
	min-height: 104px;
	flex-basis: 68.5%;
	width: 68.5%;
	display: flex;
	align-items: center;
	padding: 20px 10px 20px 43px;
}
.campusProgramList .programName .online {
	display: block;
}
.campusProgramList .onlineWrap .programName span {
	display: block;
	font-size: 16px;
	color: #e60012;
}
.campusProgramList .onlineWrap .entryBtn {
	border: none;
	background-color: #fd5859;
}
.campusProgramList .onlineWrap .entryBtn:after {
	right: 24px;
}
.campusProgramList .onlineWrap .entryBtn a {
	padding: 16px 40px 16px 30px;
}
.campusProgramList .onlineWrap .entryBtn p.changeColor {
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.campusProgramList .onlineWrap .campusTable {
	padding: 30px 10px;
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}
.campusProgramList .onlineWrap .campusTable p.text {
	font-size: 18px;
	line-height: 2;
	margin-bottom: 20px;
}
.campusProgramList .onlineWrap .programTitle .programName {
	min-height: 188px;
	padding: 54px 0;
}
.sessionSet ul li dt,
.sessionSet ul li dd {
	display: table-cell;
	letter-spacing: 0.08em;
	line-height: 1.8;
	vertical-align: middle;
	box-sizing: border-box;
}
.sessionSet ul li dt {
	width: 170px;
	max-width: 170px;
	background-color: #fafafa;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	padding: 8px 0;
	letter-spacing: 0.06em;
}
.sessionSet ul li dd {
	width: 85%;
	max-width: 870px;
	background-color: #fff;
	color: #000;
	font-size: 18px;
	text-align: left;
	padding: 21px 14px 16px 20px;
	letter-spacing: 0.06em;
	border-right: 1px solid #dadada;
	position: relative;
	vertical-align: top;
}
.sessionSet ul li dd p {
	line-height: 2;
	display: flex;
	align-items: center;
	/*letter-spacing: 0.06em;*/
	font-size: 18px;
}
.sessionSet .smallText {
	text-align: left;
	/*padding: 10px;*/
	padding-bottom: 0.7em;
}
.sessionSet .smallText p {
	color: #ff0000;
	padding: 2px 0;
	font-size: 15px;
	letter-spacing: 0.06em;
	line-height: inherit;
	background: #fff79a;
	display: inline-block;
	font-weight: 500;
}
.sessionSet .smallText p span {
	font-weight: bold;
	position: relative;
}
.sessionSet ul li dd:last-of-type {
	border-right: none;
}
.sessionSet ul > li > dl.title_height dt,
.sessionSet ul > li > dl.title_height dd {
	height: 52px;
}
.sessionSet ul li.item dt,
.sessionSet ul li.item dd {
	color: #fff;
	background-color: #fa7373;
	text-align: center;
	font-size: 20px;
	padding: 0;
}
.sessionSet ul li dd.place {
	background-color: #F9F9F9;
}
.sessionSet ul li dd.date {
	width: 490px;
	line-height: 1.6;
}
.sessionSet ul li dd.date span {
	font-size: 12px;
	vertical-align: text-top;
}
.sessionSet ul li dd.time {
	width: 210px;
	text-align: center;
}
.sessionSet ul li .sessionDetail dd.time {
	font-size: 20px;
	font-weight: 500;
}
.sessionSet ul li dd span.accessMap {
	position: relative;
	font-size: 20px;
	font-weight: 500;
}
.sessionSet ul li dd span.accessMap:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 17px;
	height: 23px;
	background-image: url(../img/list_map_icon.svg);
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	position: absolute;
	right: -28px;
	top: 4px;
}
.sessionSet .campusTable .type01 dt,
.sessionSet .campusTable .type01 dd {
	height: 64px;
}
.sessionSet .campusTable .type01 dt{
	height: 146px;
}
.sessionSet .campusTable .type02 dt,
.sessionSet .campusTable .type02 dd {
	height: 113px;
}
.reserve {
	margin-bottom: 60px;
}
.reserve .titleArea {
	margin-top: 5em;
	margin-bottom: 30px;
	text-align: center;
}
.reserve .titleArea h3 {
	color: #e83f24;
	font-weight: bold;
	font-size: 40px;
	font-style: italic;
	position: relative;
}
.reserve > p {
	font-size: 18px;
	letter-spacing: 0.06em;
	line-height: 2;
	margin-bottom: 32px;
	text-align: center;
}
.reserveBtn {
	position: relative;
    width: 380px;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    margin: auto;
    border-radius: 50px;
    letter-spacing: 0.06em;
    background-color: #e83f24;
	text-align: center;
}
.reserveBtn:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 17px;
    background-image: url(../img/arrow_02.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    position: absolute;
    right: 17px;
    top: 0;
	bottom: 0;
	margin: auto 0;
}
.reserveBtn a {
    display: block;
    padding: 16px 30px;
}
.reserveBtn p {
    color: #fff;
    font-weight: bold;
}
.reserveBtn.large {
	width: min(85%, 520px);
	font-size: 24px;
}
.reserveBtn.large a {
	padding: 28px 30px;
}
.experiences{
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	background: #f9f9f9;
	padding: 60px 50px 50px;
}
.experiences h3{
	margin-bottom: 55px;
}
.experiences .flexBox{
	display: flex;
    justify-content: space-between;
}
.experiences .imgArea{
	width: 48%;
	max-width: 470px;
}
.experiences .textArea{
	width: 48%;
	max-width: 470px;
	text-align: left;
}
.experiences .textArea h4{
	font-weight: bold;
	font-size: 28px;
	font-style: italic;
	margin-bottom: 20px;
	padding-left: 20px;
	color: #e83f24;
}
.experiences .textArea dl{
	background: #f1f1f1;
	padding: 15px 20px;
	display: flex;
	margin-bottom: 10px;
}
.experiences .textArea dt{
	margin-right: 25px;
}
.experiences .textArea dt,
.experiences .textArea dd{
	font-weight: bold;
	font-size: 20px;
}
.experiences .textArea p{
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.06em;
	padding-left: 20px;
}
.experiences .textArea p span{
	color: #e34b48;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	#session {
		padding: 50px 0;
	}
	#session h3 {
		width: 90%;
		margin: auto;
	}
	#session .programTitle {
		display: block;
		margin-bottom: 10px;
	}
	#session .programTitle .programName,
	#session .programTitle .programDate {
		width: 100%;
		height: auto;
		min-height: auto;
		float: none;
		display: block;
		padding: 10px 20px;
	}
	#session .programTitle .programDate {
		padding: 10px 14%;
	}
	#session .programTitle .programDate img {
		text-align: center;
		margin: auto;
	}
	.sessionSet .contentsWrap {
		padding: 15px 5% 40px;
	}
	.sessionSet ul li dt,
	.sessionSet ul li dd,
	.sessionSet .campusTable .type01 dt,
	.sessionSet .campusTable .type01 dd,
	.sessionSet .campusTable .type02 dt,
	.sessionSet .campusTable .type02 dd {
		height: auto;
		width: 100%;
		max-width: 100%;
		display: block;
	}
	.sessionSet .smallText p {
		position: inherit;
		top: 0;
		display: block;
		transform: none;
		padding-left: 0;
		font-size: 13px;
		text-align: left;
		line-height: 1.8;
	}
	.sp_inner02.sessionSet {
		width: 90%;
	}
	.sessionSet ul {
		margin-bottom: 6px;
	}
	.present {
		width: 100%;
		margin: auto auto 40px;
		padding: 15px;
	}
	.present img {
		width: 30%;
		top: -4vw;
	}
	.present p {
		padding-top: 10px;
		font-size: 17px;
		line-height: 1.8;
		letter-spacing: 0.04em;
	}
	.sessionText {
		font-size: 15px;
		padding: 24px 0;
		line-height: 1.75;
	}
	.sessionSet ul li,
	.sessionSet ul li dt,
	.sessionSet ul li dd {
		display: block;
	}
	.sessionSet ul li dt,
	.sessionSet ul li dd,
	.sessionSet ul li dd.date,
	.sessionSet ul li dd.time {
		width: 100%;
		border: none;
	}
	.sessionSet ul li dt,
	.sessionSet ul li dd,
	.sessionSet ul li dd.date {
		border-bottom: 1px solid #dadada;
	}
	#session .sessionSet ul li dd {
		border-bottom: none;
	}
	.sessionSet ul li dt {
		font-size: 12px;
		padding: 12px;
		text-align: left;
	}
	.sessionSet ul li dd {
		font-size: 12px;
		padding: 12px 10px;
		text-align: center;
	}
	.sessionSet ul li dd span.accessMap {
		font-size: 18px;
		margin: 0 0 -14px -18px;
	}
	.sessionSet ul li dd span.accessMap:after {
		width: 15px;
		height: 20px;
		background-size: contain;
		position: absolute;
		right: -22px;
		top: 4px;
	}
	.sessionSet .smallText p span:after {
		bottom: -2px;
	}
	.sessionSet ul li dd.date {
		text-align: left;
		padding: 6px 10px;
		line-height: 1.8;
		letter-spacing: 0.12em;
	}
	.sessionSet ul li .sessionDetail dd.time {
		font-size: 17px;
		padding: 8px 10px 4px;
	}
	.sessionSet .campusProgramList > li,
	.sessionSet .campusProgramList > li:last-of-type {
		margin-bottom: 30px;
	}
	.present span {
		font-size: 12px;
		letter-spacing: 0.02em;
		line-height: 1.6;
	}
	.supplement {
		font-size: 12px;
		letter-spacing: 0.03em;
		line-height: 1.8;
	}
	.sessionSet ul li dd.date span {
		font-size: 10px;
		vertical-align: text-top;
	}
	.sessionSet ul li dd p {
		font-size: 13px;
		text-align: left;
		line-height: 1.8;
	}
	.campusProgramList .programName p {
		font-size: 12px;
	}
	#plan .entryBtn .changeColor {
		text-align: center;
	}
	.campusProgramList .programName .accessMap,
	.campusProgramList .programName .online {
		font-size: 20px;
	}
	.campusProgramList .programName .online {
		padding-top: 0;
		line-height: 1.75;
	}
	.campusProgramList .onlineWrap .programName span {
		font-size: 12px;
	}
	.campusProgramList .onlineWrap .campusTable p.text {
		font-size: 14px;
		text-align: left;
		margin-bottom: 10px;
	}
	#session .onlineWrap .programTitle {
		margin-bottom: 0;
	}
	.campusProgramList .onlineWrap .entryBtn a {
		padding: 16px 20px;
	}
	.campusProgramList .onlineWrap .entryBtn:after {
		right: 12px;
	}
	.campusProgramList .onlineWrap .campusTable {
		padding: 10px 10px 14px;
	}
	#session .onlineWrap .programTitle .programDate {
		padding: 10px 3%;
	}
	.campusProgramList .programName .accessMap:after {
		width: 14px;
		height: 20px;
	}
	.campusProgramList .programName .accessMap {
		padding-right: 22px;
	}
	.campusProgramList .onlineWrap .programTitle .programName {
		min-height: auto;
		padding: 6px 10px 14px;
	}
	#session .campusProgramList li:nth-child(2) .programTitle .programName {
		padding: 6px 10px 14px;
	}
	.reserve{
		margin-bottom: 40px;
	}
	.reserve .titleArea{
		margin-bottom: 20px;
	}
	.reserve .titleArea h3{
		font-size: 35px;
	}
	.reserve .titleArea h3 img {
		width: min(88%, 392px);
	}
	.reserve > p{
		font-size: 14px;
		text-align: left;
		margin-bottom: 30px;
	}
	.reserveBtn,
	.reserveBtn.large {
		width: 85%;
		font-size: 14px;
	}
	.reserveBtn:after {
		width: 8px;
		height: 12px;
		background-size: contain;
		right: 12px;
	}
	.reserveBtn a,
	.reserveBtn.large a {
		padding: 16px 20px;
	}
	.experiences{
		padding: 30px 20px 30px;
	}
	#session .experiences h3{
		margin-bottom: 30px;
	}
	.experiences .flexBox{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.experiences .imgArea{
		width: 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}
	.experiences .textArea{
		width: 100%;
		max-width: 100%;
	}
	.experiences .textArea h4{
		font-size: 22px;
		margin-bottom: 20px;
	}
	.experiences .textArea dl{
		background: #f1f1f1;
		padding: 15px 20px;
		display: flex;
		margin-bottom: 22px;
	}
	.experiences .textArea dt{
		margin-right: 25px;
	}
	.experiences .textArea dt,
	.experiences .textArea dd{
		font-size: 16px;
	}
	.experiences .textArea p{
		font-size: 14px;
	}
}
@media screen and (max-width: 500px) {
	.present img {
		width: 40%;
		top: -14px;
	}
}
@media screen and (max-width: 350px) {
	.sessionSet ul li dd.date {
		font-size: 10px;
	}
	.sessionText {
		font-size: 13px;
	}
}

/* -------------------------------------
#method
----------------------------------------*/
#method {
	background-color: #f2f2f2;
	padding: 120px 0 80px;
}
#plan .inner02,
.pc_inner02,
#method .inner02.scholarShip {
	width: 1000px;
}
#method .methodText {
	padding-top: 40px;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.06em;
}
#plan .changeColor {
	color: #e34b48;
	font-weight: bold;
}
#plan .entryBtn {
	border: none;
	background-color: #e83f24;
}
#plan .entryBtn .changeColor {
	color: #fff;
}
.planList {
	padding: 59px 0 0;
}
.planList li {
	margin-bottom: 20px;
}
.planList li .planContents {
	display: none;
	padding: 24px 26px 28px;
	border: 4px solid #e83f24;
	border-top: none;
	background-color: #fff;
}
.planList li.open .planContents {
	display: block;
}
#plan .planTitle {
	text-align: left;
	background-color: #e83f24;
	padding: 32px 20px 30px 90px;
	cursor: pointer;
	color: #fff;
	position: relative;
	font-size: 24px;
	font-weight: bold;
}
#plan .planTitle:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 50px;
	height: 50px;
	background-image: url(../img/01.svg);
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	align-items: center;
	position: absolute;
	top: 44px;
	left: 18px;
}
#plan .title01.planTitle:before {
	top: 48px;
}
#plan .title02.planTitle:before {
	background-image: url(../img/02.svg);
}
#plan .title03.planTitle:before {
	background-image: url(../img/03.svg);
	top: 0;
	bottom: 0;
	margin: auto;
}
#plan .title01 span {
	display: inline-block;
	background-color: #fff;
	color: #e83f24;
	width: 90%;
	padding: 8px 0;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}
#plan .title02 span {
	display: block;
	font-size: 18px;
	line-height: 1.6;
	margin-left: 0;
	letter-spacing: 0.06em;
}
#plan .title03 span {
	display: block;
	font-size: 18px;
	line-height: 1.6;
	margin-left: 0;
}
#plan .title04.planTitle {
	padding: 56px 20px 46px 90px
}
#plan .planTitle h3 {
	display: inline-block;
	vertical-align: middle;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 11px;
}
#plan .planTitle p {
	position: relative;
	float: right;
	display: inline-block;
	width: 46px;
	height: 46px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.06em;
	background-color: #fff;
	margin-top: -8px;
}
#plan .title01.planTitle p {
	margin-top: -23px;
}
#plan .title02.planTitle p,
#plan .title03.planTitle p {
	margin-top: -56px;
}
#plan .planTitle p:before {
	position: relative;
	content: "";
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.06em;
	display: inline-block;
}
#plan .planTitle p:after {
	position: absolute;
	right: 13px;
	top: 15px;
	margin: auto;
	content: "";
	display: inline-block;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 16px solid #e83f24;
}
#plan .planList li.open .planTitle p:before {
	content: "";
}
#plan .planList li.open .planTitle p:after {
	border-top: none;
	top: 5px;
	border-left: 10px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 16px solid #e83f24;
}
#plan .planContents.contents02 {
	padding-bottom: 0;
	font-size: 18px;
}
#plan .planContents.contents02 dt {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
}
#plan .planContents.contents02 dt:before {
	background: #e24a48;
	content: "";
	height: 16px;
	width: 16px;
	left: 0;
	position: absolute;
	top: 3px;
}
#plan .planContents.contents02 dd {
	line-height: 2;
	letter-spacing: 0.06em;
}
#plan .planContents.contents02 dd sup{
	font-size: 14px;
	color: #666666;
}
#plan .planContents.contents02 dd span,
#plan .planContents.contents02 span,
#plan .planContents.contents03 span {
	color: #666;
	font-size: 14px;
	letter-spacing: 0.06em;
	display: block;
	line-height: 1.75;
}
#plan .planContents.contents03 .notes {
	padding-top: 8px;
}
#plan .planContents.contents03 .planList li:last-of-type {
	margin-bottom: 30px;
}
#plan .planContents.contents02 p.date,
#plan .planContents.contents03 p.date {
	padding: 4px 4px 4px 10px;
	font-size: 20px;
	font-weight: 500;
	background-color: #fff79a;
	display: inline-block;
	line-height: 1;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}
#plan .planContents.contents03 p.date{
	margin-top: 10px;
	margin-bottom: 4px;
}
#plan .planContents.contents04,
#plan .planContents.contents04 > div {
	padding-bottom: 0;
}
.planDetail {
	padding-bottom: 25px;
	text-align: left;
}
.planDetail > p {
	font-size: 18px;
	padding: 0 0 51px;
	text-align: left;
	line-height: 2;
	letter-spacing: 0.06em;
}
.scholarShip {
	box-sizing: border-box;
	background-color: #f2f2f2;
	padding: 16px;
}
.scholarShiptext p {
	font-size: 18px;
	text-align: left;
	line-height: 2.0;
	letter-spacing: 0.06em;
}
.scholarShiptext span {
	color: #e60012;
	font-weight: bold;
}
.scholarShipimg {
	text-align: left;
}
.scholarShip dl{
	margin-top: 22px;
}
.scholarShip dt{
	background-color: #ff9900;
	color:#fff;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-size: 22px;
	padding: 8px 0;
}
.scholarShip dd{
	background-color:#fff79a;
	padding: 13px 0 10px;
}
.scholarShip dd p{
	font-size: 18px;
	letter-spacing: 0.06em;
	line-height: 2;
	text-align: center;
}
.scholarShip dd span{
	color: #e60012;
	font-size: 20px;
	line-height: 1.8;
	font-weight: 500;
}
.scholarShip dd span.bold{
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	#method {
		padding: 60px 0 40px;
	}
	#method .title_set h3 {
		width: 73%;
		margin: auto;
	}
	#plan .inner02,
	.pc_inner02,
	#method .inner02.scholarShip {
		width: 90%;
	}
	.planList {
		padding: 36px 0 0;
	}
	#plan .planTitle {
		padding: 5px 12px 12px 52px;
	}
	#plan .title04.planTitle {
		padding: 14px 12px 20px 52px;
	}
	#plan .planTitle img {
		width: 32px;
		padding-right: 10px;
	}
	#plan .planTitle h3 {
		font-size: 17px;
		line-height: 1.5;
		letter-spacing: 0.08em;
		margin-bottom: 0;
	}
	#plan .planTitle.title01 h3 {
		margin-bottom: 8px;
	}
	.planList li {
		margin-bottom: 16px;
	}
	.planList li .planContents {
		padding: 0 3%;
	}
	#plan .planTitle p:before,
	#plan .planList li.open .planTitle p:before {
		content: none;
	}
	.planDetail > p {
		font-size: 14px;
		line-height: 2;
		padding: 12px 0 10px;
		letter-spacing: 0.08em;
	}
	#plan .title01 span {
		display: block;
		max-width: 170px;
		font-size: 15px;
		padding: 8px 4px;
	}
	#method .methodText {
		padding-top: 24px;
		font-size: 15px;
	}
	#plan .planTitle:before {
		width: 28px;
		height: 28px;
		left: 12px;
		top: 20px;
	}
	#plan .title01.planTitle:before {
		top: 46px;
	}
	#plan .title04.planTitle:before {
		top: 16px;
	}
	#plan .title01.planTitle p {
		margin-top: -60px;
	}
	#plan .title02.planTitle p {
		margin-top: -33px;
	}
	#plan .title03.planTitle p {
		margin-top: -45px;
	}
	#plan .title02 span {
		font-size: 12px;
		margin-left: -4px;
		padding-top: 4px;
	}
	#plan .title03 span {
		font-size: 12px;
		margin-left: -4px;
		padding-top: 4px;
	}
	#plan .planContents.contents02 {
		padding-top: 16px;
		font-size: 14px;
	}
	#plan .planContents.contents02 dt {
		font-size: 18px;
	}
	#plan .planContents.contents02 dt:before {
		height: 14px;
		width: 14px;
		top: 4px;
	}
	#plan .planContents.contents02 dd span,
	#plan .planContents.contents02 span,
	#plan .planContents.contents03 span {
		font-size: 12px;
	}
	#plan .planContents.contents02 p.date,
	#plan .planContents.contents03 p.date {
		font-size: 17px;
		margin-bottom: 10px;
		line-height: 1.755;
		padding: 4px 10px;
	}
	#plan .planContents.contents02 span,
	#plan .planContents.contents03 span {
		line-height: 1.6;
	}
	#plan .planTitle p {
		width: 27px;
		height: 27px;
		margin-top: 4px;
	}
	#plan .planList li.open .planTitle p:after {
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 6px solid transparent;
		border-bottom: 10px solid #e60012;
	}
	#plan .planList li.open .planTitle p:after {
		top: 2px;
	}
	#plan .planTitle p:after {
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 10px solid #e60012;
	}
	#plan .planTitle p:after {
		top: 9px;
		right: 7px;
	}
	.planDetail {
		padding-bottom: 16px;
	}
	.scholarShip {
		padding: 10px;
		margin-bottom: 10px;
	}
	.scholarShipimg {
		width: 80%;
	}
	.scholarShiptext p {
		font-size: 15px;
		letter-spacing: 0.01em;
	}
	.scholarShip dd{
		padding: 20px 10px;
	}
	.scholarShip dt{
		font-size: 20px;
	}
	.scholarShiptext dd p{
		font-size: 15px;
		letter-spacing: 0.01em;
		text-align: left;
	}
	.scholarShip dd span{
		font-size: 16px;
	}
}
@media screen and (max-width: 350px) {
	#plan .title01.planTitle p {
		margin-top: -30px;
	}
	#method .methodText {
		font-size: 16px;
	}
	#plan .title02 span{
		letter-spacing: 0;
	}
	.entryBtn {
		width: 95%;
	}
}
/* -------------------------------------
#minicampus
----------------------------------------*/
.list {
	border: 1px solid #dadada;
}
.list li {
	display: table;
	width: 100%;
	border-top: 1px solid #dadada;
}
.list li:last-of-type {
	background-color: #fcfcfc;
	padding: 28px 20px;
	box-sizing: border-box;
}
.list li dt,
.list li dd {
	display: table-cell;
	letter-spacing: 0.08em;
	line-height: 1.8;
	vertical-align: middle;
	box-sizing: border-box;
}
.list li dt {
	display: table-cell;
	width: 19%;
	width: 200px;
	background-color: #f0efef;
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	padding: 18px 0;
	border-right: 1px solid #dadada;
}
.list li dd {
	display: table-cell;
	width: 37%;
	width: 407px;
	background-color: #fff;
	color: #000;
	font-size: 15px;
	font-weight: 500;
	text-align: left;
	padding: 10px 20px;
	letter-spacing: 0.06em;
}
.list li dd:first-of-type {
	background-color: #F9F9F9;
	border-right: 1px solid #dadada;
	width: 44%;
	width: 483px;
}
.list li dd span.accessMap {
	position: relative;
	font-size: 20px;
	font-weight: 500;
}
.list li dd span.accessMap:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 21px;
	background-image: url(../img/list_map_icon.svg);
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
	position: absolute;
	right: -26px;
	top: 4px;
}
.list li dd.date {
	align-self: center;
	font-size: 18px;
	padding: 0 16px;
}
.list li.item dt,
.list li.item dd {
	color: #fff;
	background-color: #999999;
	text-align: center;
	font-size: 20px;
	padding: 6px 0;
}
.entryBtn {
	position: relative;
	width: 380px;
	font-weight: bold;
	font-size: 20px;
	text-align: left;
	margin: auto;
	border: 2px solid #e34b48;
	border-radius: 50px;
	letter-spacing: 0.06em;
}
.entryBtn a {
	display: block;
	padding: 16px 30px;
}
.entryBtn:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 11px;
	height: 17px;
	background-image: url(../img/arrow_02.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	position: absolute;
	right: 17px;
	top: 18px;
}
#minicampus {
	background: linear-gradient( 40deg, #e83f24 0%, #eb5a0d 30%, #e83820 100%);
	padding: 123px 0 101px;
}
#minicampus .contentsWrap {
	background-color: #fff;
	padding: 59px 54px 54px;
	box-sizing: border-box;
}
#minicampus .list > li > dl {
	display: flex;
	width: 100%;
	/*height: 74px;*/
	background-color: #fff
}
/*#minicampus .list > li > dl.title_height {
	height: 48px;
}*/
#minicampus p.text {
	line-height: 2.0;
	padding: 32px 0 31px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}
#minicampus p.text span {
	border-bottom: 1px solid #fff;
	font-weight: 700;
	padding-bottom: 6px;
}
#minicampus .time {
	font-size: 20px;
	font-weight: 500;
	display: inline-block;
	position: relative;
	padding: 6px 0 28px;
}
#minicampus .time:before {
	content: "時間";
	color: #fff;
	background-color: #999999;
	display: inline-block;
	vertical-align: middle;
	width: 68px;
	height: 25px;
	position: absolute;
	left: -90px;
	top: 0;
	padding-top: 6px;
}
#minicampus p.textSet {
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0.06em;
	font-weight: 500;
}
#minicampus .caution {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 39px;
	letter-spacing: 0.06em;
	padding-top: 3px;
}
#minicampus li .entryBtn {
	background-color: #e83f24;
	border: none;
}
#minicampus li .entryBtn p.changeColor {
	color: #fff;
}
#minicampus .changeColor {
	color: #f23233;
	font-weight: bold;
}
#minicampus .contentWrap {
	padding: 63px 0 73px;
}
#minicampus .contentGroup {
	position: relative;
	margin-bottom: 47px;
}
#minicampus .contentGroup:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 15px;
	bottom: 0;
	left: 0;
	border-top: 1px solid #000;
}
#minicampus .contentGroup p {
	background-color: #fff;
	padding-right: 16px;
	font-size: 24px;
	font-weight: bold;
	text-align: left;
	position: absolute;
}
#minicampus .benefits {
	display: flex;
	justify-content: space-between;
	text-align: left;
	margin-bottom: 42px;
}
#minicampus .benefits > div:first-child {
	width: 210px;
	padding-top: 15px;
	border-right: 1px dashed #191919;
	height: 178px;
	box-sizing: border-box;
}
#minicampus .benefits > div:nth-child(2) {
	width: 300px;
	height: 178px;
	font-size: 20px;
	border-right: 1px dashed #191919;
	padding: 20px 0 0 3.6%;
	box-sizing: border-box;
}
#minicampus .benefits > div:nth-child(2) ul li {
	margin-bottom: 19px;
	font-weight: 500;
}
#minicampus .benefits > div:nth-child(2) ul li:last-of-type {
	margin-bottom: 0;
}
#minicampus .benefits > div:nth-child(3) {
	width: 830px;
	padding: 10px 0 0 3.7%;
	height: 130px;
	box-sizing: border-box;
	border: none;
}
#minicampus .benefits > div:nth-child(3) p {
	font-size: 20px;
	line-height: 2.0;
	letter-spacing: 0.04em;
	padding: 0;
}
#minicampus .benefits > div:nth-child(3) span {
	font-size: 14px;
	display: block;
	color: #666;
	letter-spacing: 0.06em;
	padding:5px 0 0;
	line-height: 1.7;
}
#minicampus .message {
	border-top: 2px solid #e83f24;
	border-bottom: 2px solid #e83f24;
}
#minicampus .message p {
	font-size: 20px;
	line-height: 1.6;
	padding: 6px 0;
	letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
	#minicampus {
		padding: 50px 0;
	}
	#minicampus .title_set h3 {
		width: 90%;
		margin: auto;
	}
	#minicampus .contentsWrap.sp_inner {
		width: 90%;
		margin: auto;
	}
	#minicampus .contentsWrap {
		padding: 14px 14px 32px;
	}
	#minicampus p.text {
		padding: 24px 20px;
		font-size: 15px;
		letter-spacing: -0.03em;
	}
	.list li,
	#minicampus .list > li > dl,
	.list li dt,
	.list li dd,
	.list li dd:first-of-type {
		display: inherit;
		height: inherit;
		width: 100%;
		border: none;
	}
	.list li dt {
		font-size: 18px;
		padding: 4px 0;
	}
	.list li dd {
		text-align: center;
	}
	.list,
	.list li dd:first-of-type {
		border: none;
	}
	#minicampus .list > li > dl {
		border-right: 1px solid #dadada;
		border-left: 1px solid #dadada;
	}
	.list li dt,
	.list li dd,
	.list li dd:first-of-type {
		border-bottom: 1px solid #dadada;
	}
	.list {
		border-top: 1px solid #dadada;
	}
	.list li:last-of-type {
		border: 1px solid #dadada;
		border-top: none;
		text-align: center;
		padding: 14px 0;
		box-sizing: inherit;
	}
	.list li.mode_pc {
		display: none;
	}
	.list li dd {
		font-size: 12px;
	}
	.list li dd span.accessMap {
		font-size: 18px;
	}
	.list li dd span.accessMap:after {
		width: 14px;
		height: 20px;
		right: -22px;
		top: 4px;
	}
	.list li dd.minkuru span.accessMap:after {
		right: -100px;
		top: 10px;
	}
	.list li dd.date {
		padding: 4px;
		font-size: 13px;
	}
	#minicampus .contentWrap {
		padding: 36px 0;
	}
	#minicampus .time {
		font-size: 18px;
		text-align: center;
		margin-left: 70px;
		padding: 6px 0 14px;
	}
	#minicampus .time:before {
		width: 60px;
		height: 26px;
		left: -78px;
	}
	#minicampus p.textSet,
	#minicampus .caution {
		font-size: 13px;
	}
	#minicampus .caution {
		line-height: 1.6;
		margin-bottom: 10px;
	}
	#minicampus .benefits {
		flex-wrap: wrap;
		margin-bottom: 14px;
		justify-content: center;
		align-items: center;
	}
	#minicampus .benefits > div:first-child {
		width: 40%;
		padding: 0 10px 0 0;
		margin-bottom: 10px;
		height: 130px;
	}
	#minicampus .benefits > div:nth-child(2) {
		width: 60%;
		border-right: none;
		padding: 14px 0 0 8px;
		margin-bottom: 10px;
		font-size: 18px;
		height: 160px;
	}
	#minicampus .benefits > div:nth-child(2) ul {
		padding: 8px 0 0 10px;
	}
	#minicampus .benefits > div:nth-child(2) ul li {
		font-size: 16px;
		margin-bottom: 16px;
	}
	#minicampus .benefits > div:nth-child(3) {
		width: 100%;
		margin: auto;
		border-top: 1px dashed #191919;
		padding: 22px 10px 0 10px;
		height: inherit;
	}
	#minicampus .benefits > div:nth-child(3) p {
		padding-top: 6px;
		font-size: 16px;
		line-height: 1.8;
	}
	#minicampus .contentGroup {
		width: 90%;
		margin: auto;
		margin-bottom: 26px;
	}
	#minicampus .message {
		width: 100%;
		margin: auto;
	}
	#minicampus .message p {
		font-size: 18px;
		line-height: 1.6;
		padding: 12px;
	}
	#minicampus p.text span{
		padding-bottom: 2px;
	}
	.entryBtn {
		width: 85%;
		font-size: 14px;
	}
	.entryBtn a {
		padding: 16px 20px;
	}
	.entryBtn:after {
		width: 8px;
		height: 12px;
		background-size: contain;
		right: 12px;
		top: 18px;
	}
	#minicampus .changeColor{
		text-align: center;
	}
}
@media screen and (max-width: 350px) {
	#minicampus .benefits > div:nth-child(3) span {
		display: block;
	}
	#minicampus .benefits > div:nth-child(2) ul li {
		font-size: 15px;
	}
	#minicampus p.text {
		font-size: 12px;
	}
	.entryBtn {
		width: 95%;
	}
	#plan .entryBtn {
		width: 100%;
	}
	.entryBtn:after {
		right: 8px;
	}
}
/* -------------------------------------
#percentage
----------------------------------------*/
#percentage {
	position: relative;
	background-image: url(../img/percentage_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-repeat: repeat-y;
	background-size: contain;
	text-align: center;
	margin-top: 64px;
}
.percentageTop {
	width: 1100px;
	margin: 0 auto 74px;
}
.percentageTop p {
	text-align: right;
	font-size: 14px;
	color: #666;
	padding-right: 8px;
	letter-spacing: 0.08em;
	padding: 14px 0 24px;
}
@media screen and (max-width: 767px) {
	#percentage {
		background-image: url(../img/percentage_bg_sp.png);
		background-repeat: no-repeat;
		margin-top: 32px;
	}
	.percentageTop {
		width: auto;
		margin: 0 auto 30px;
	}
	.percentageTop img {
		height: inherit;
	}
}
@media screen and (max-width: 399px) {
	.percentageTop p {
		font-size: 12px;
		padding-right: 0;
	}
}
@media screen and (max-width: 350px) {
	.percentageTop p {
		line-height: 1.8;
	}
	.percentageTop p .ib_320 {
		display: inline-block;
	}
	#percentage {
		margin-top: 20px;
	}
}
/* -------------------------------------
#results 先輩たちの声
----------------------------------------*/
#results {
	position: relative;
	background-image: url("../img/results_bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 117px 0 80px;
	overflow: hidden;
}
#results .title_set {
	margin-bottom: 70px;
}
.resultsList {
	padding: 50px 0 0;
}
.resultsList article {
	background-color: #fff;
	text-align: left;
	margin: 0 min(2vw, 20px);
	padding: 2em;
	position: relative;
}
.resultsList article .name {
	position: absolute;
	bottom: 2em;
	right: 2em;
}
.resultsList article .name img {
	max-height: 1em;
}
.university {
	padding-bottom: 1em;
	display: flex;
	align-items: center;
}
.university figure {
	margin-right: 1em;
	width:min(30%, 130px);
}
.university p {
	color: #fc686f;
	font-size: 40px;
	font-size: 4.0rem;
	letter-spacing: normal;
	font-weight: bold;
}
.university p > span {
	display: block;
	font-size: 70%;
	font-weight: inherit;
	margin-top: 0.5em;
}
.resultsList dl {
	padding-bottom: 1em;
}
.resultsList dt {
	color: #313740;
	font-size: 26px;
	font-size: 2.6rem;
	line-height: 1.4;
	padding-bottom: 16px;
	font-weight: 500;
	display: flex;
    align-items: flex-start;
}
.resultsList dd p:first-of-type {
	color: #313740;
	line-height: 1.86;
	font-size: 15px;
	margin-bottom: 18px;
}
.resultsList.type01 dd p{
	letter-spacing: 0.04em;
}
.resultsList dd p.name img {
	height: 11px;
}
.resultsList dd p:first-of-type > span.lps_pc {
	line-height: inherit;
	font-weight: inherit;
	letter-spacing: -1em;
}
@media screen and (max-width: 767px) {
	#results {
		padding: 40px 0;
	}
	#results .title_set {
		margin-bottom: 10px;
	}
	.resultsList {
		padding: 20px 0 0;
	}
	.university p {
		font-size: min(7vw, 28px);
	}
	.resultsList dt {
		font-size: min(5.5vw, 26px);
		padding-bottom: 10px;
	}
	.resultsList dd p:first-of-type > span.lps_pc {
		letter-spacing: normal;
	}
}

/*---------------------------------
　スライド
---------------------------------*/
#slide_resultsList .slick-track {
	display: flex;

}
#slide_resultsList article {
	display: flex;
	flex-direction: column;
}
#slide_resultsList .slick-slide {
	height: auto !important;
}
/*左右の矢印*/
#slide_resultsList .slick-prev{
	background-image: url(../img/slide_movie_prev.png);
	background-repeat: no-repeat;
	background-position: center center;
}
#slide_resultsList .slick-next{
	background-image: url(../img/slide_movie_next.png);
	background-repeat: no-repeat;
	background-position: center center;
}
#slide_resultsList .slick-prev:before, 
#slide_resultsList .slick-next:before {
	content:"";
}
/*矢印の位置*/
#slide_resultsList .slick-next {
	right:-100px;
	z-index: 100;
	width: 100px;
	height: 100%;
}
#slide_resultsList .slick-prev {
	left:-100px;
	z-index: 100;
	width: 100px;
	height: 100%;
}
/*ページャードットの位置*/
#slide_resultsList .slick-dots {
	bottom: -3em;
}
/*ページャードットのサイズ*/
#slide_resultsList .slick-dots li,
#slide_resultsList .slick-dots li button,
#slide_resultsList .slick-dots li button:before {
	width: auto;
	height: auto;
}
#slide_resultsList .slick-dots li {
	margin: 0 0.5em;
}
#slide_resultsList .slick-dots li button:before {
	font-size: min(4vw, 14px);
	line-height: 1;
}
/*ページャードットの色*/
#slide_resultsList .slick-dots li.slick-active button:before,
#slide_resultsList .slick-dots li button:before {
	color: #e60012;
}
@media screen and (max-width:767px){
	#slide_resultsList .slick-next {
		right:-9%;
		width: 9%;
		background-size: 10px auto;
	}
	#slide_resultsList .slick-prev {
		left:-9%;
		width: 9%;
		background-size: 10px auto;
	}
	#slide_resultsList .slick-prev,
	#slide_resultsList .slick-next {
		background-position: center 40%;
	}
}
/* -------------------------------------
#access
----------------------------------------*/
#access {
	background-color: #f9f9f9;
	text-align: center;
	position: relative;
}
#access:before{
	background-image: url(../img/access_border.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	content: "";
	position: absolute;
	width: 100%;
	height: 14px;
	right: 0;
}
#access .accessInner {
	background-color: #fff;
	text-align: center;
	box-sizing: border-box;
	border: 8px solid #e83f24;
	padding: 50px;
	width: 94%;
	max-width: 1200px;
}
#access h3 {
	padding: 114px 0 0px;
    width: 28%;
    margin: auto;
	max-width: 204px;
}
#access .accessText {
	text-align: center;
	padding: 44px 10px 40px;
}
#access .accessText img {
	margin: auto;
}
#access .mapField {
	clear: both;
	width: 100%;
	margin: 0 auto 52px;
	overflow: hidden;
	position: relative;
}
#access .gmap {
	height: 500px;
}
#access .accessDetail > ul {
	border-top: 1px solid #eceded;
}
#access .accessDetail > ul > li {
	display: table;
	width: 100%;
	border-bottom: 1px solid #eceded;
}
#access .accessDetail li:last-child {
	padding-bottom: 0;
}
#access .accessDetail li dl {
	display: table;
	width: 100%;
}
#access .accessDetail li dt,
#access .accessDetail li dd {
	display: table-cell;
	text-align: left;
	letter-spacing: 0.06em;
	vertical-align: middle;
	padding: 19px 0;
}
#access .accessDetail li dt {
	width: 240px;
	background-color: #f1f0f0;
	color: #1f1714;
	text-align: center;
	font-weight: 600;
	box-sizing: border-box;
}
#access .accessDetail li:last-child dt{
	height: 140px;
}
#access .accessDetail li dd {
	width: 720px;
	font-weight: 400;
	padding-left: 24px;
	box-sizing: border-box;
}
#access .accessDetail li dd li {
	font-weight: 300;
	padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
	#access {
		padding: 0;
	}
	#access:before{
		height: 8px;
	}
	#access .accessText {
		padding: 0 1.6% 26px;
		width: 50%;
		margin: auto;
	}
	#access .accessInner {
		padding: 3%;
		width: 94%;
		border: 5px solid #e83f24;
	}
	#access h3 {
		padding: 30px 0 20px;
	}
	#access .gmap {
		height: 100%;
	}
	#access .gmap iframe {
		display: block;
		width: 100%;
		height: 60vw;
		max-height: 430px;
	}
	#access .mapField {
		margin: 0 auto 10px;
	}
	#access .accessDetail li,
	#access .accessDetail li dt,
	#access .accessDetail li dd {
		display: block;
		width: 100%;
		text-align: left;
		padding: 0;
		box-sizing: border-box;
	}
	#access .accessDetail li dt,
	#access .accessDetail li dd {
		line-height: 1.4;
		padding: 12px;
	}
	#access .accessDetail li dd li {
		line-height: 1.4;
		padding-bottom: 10px;
	}
	#access .accessDetail li:last-child dt{
		height: inherit;
	}
}

/* -------------------------------------
 snsBottom
----------------------------------------*/
#snsBottom {
	text-align: center;
	padding: 40px 0 60px;
}
#snsBottom p {
	font-size: 26px;
	font-weight: 600;
	color: #074051;
	letter-spacing: 0.06em;
	padding-bottom: 26px;
}
#snsBottom .sns a {
	display: inline-block;
	padding: 0 10px;
}
#snsBottom .sns img {
	width: 64px
}
@media screen and (max-width: 767px) {
	#snsBottom {
		padding: 40px 1.6% 30px;
	}
	#snsBottom > img {
		width: 180px;
		vertical-align: middle;
	}
	#snsBottom p {
		font-size: 16px;
	}
	#snsBottom .lplogo {
		padding: 50px 0 0;
	}
	#snsBottom .lplogo img {
		width: 255px;
	}
	#snsBottom .sns img {
		width: 35px
	}
}
@media screen and (max-width: 350px) {
	#snsBottom p {
		font-size: 14px;
	}
}
