@charset "UTF-8";

/* ---------------------------------------
  グループセッション
-----------------------------------------*/


/* sec_session
--------------------------------*/
#sec_session .tab_btn_list {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	border-bottom: 24px solid #074a97;
}

#sec_session .tab_btn_list .tab_btn {
	position: relative;
	width: 430px;
	padding: 24px;
	background-color: #f7f7f7;
	margin: 0 2.5px;
	cursor: pointer;
	transition: .3s ease;
	overflow: hidden;
}

#sec_session .tab_btn_list .tab_btn.active,
#sec_session .tab_btn_list .tab_btn:hover {
	background-color: #074a97;
}

#sec_session .tab_btn_list .tab_btn .bg {
	position: relative;
	width: 382px;
	height: 252px;
	display: flex;
	align-items: center;
	padding: 27px 0;
	transition: .3s ease;
}

#sec_session .tab_btn_list .tab_btn .bg::before {
	content: "";
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
	opacity: .5;
}

#sec_session .tab_btn_list .tab_btn#session_tab01 .bg {
	margin-left: auto;
}

#sec_session .tab_btn_list .tab_btn#session_tab01 .bg::before {
	background-image: url(../img/session/session01_tab_btn_pc.jpg);
}

#sec_session .tab_btn_list .tab_btn#session_tab02 .bg::before {
	background-image: url(../img/session/session02_tab_btn_pc.jpg);
}

#sec_session .tab_btn_list .tab_btn#session_tab03 .bg::before {
	background-image: url(../img/session/session03_tab_btn_pc.jpg);
}

#sec_session .tab_btn_list .tab_btn .line_anime {
	width: 2px;
	height: 44px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -22px;
	margin: 0 auto;
	overflow: hidden;
}

#sec_session .tab_btn_list .tab_btn.active .line_anime::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
}

#sec_session .tab_btn_list .tab_btn.active .line_anime::after {
	animation: line-anime 1.5s ease-out infinite;
}

@keyframes line-anime {
	0% {
		transform: translate(0, -100%);
		opacity: 1;
	}

	50% {
		transform: translate(0, 100%);
		opacity: 1;
	}

	80% {
		transform: translate(0, 100%);
		opacity: 0;
	}

	100% {
		transform: translate(0, -100%);
		opacity: 0;
	}
}

#sec_session .tab_btn_list .tab_btn .txtbox {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .65);
	padding: 20px;
	transition: .3s ease;
}

#sec_session .tab_btn_list .tab_btn.active .txtbox,
#sec_session .tab_btn_list .tab_btn:hover .txtbox {
	background-color: rgba(11, 49, 143, .8);
}

#sec_session .tab_btn_list .tab_btn .txtbox * {
	color: #074a97;
	transition: .3s ease;
}

#sec_session .tab_btn_list .tab_btn.active .txtbox *,
#sec_session .tab_btn_list .tab_btn:hover .txtbox * {
	color: #fff;
}

#sec_session .tab_btn_list .tab_btn .txtbox .num {
	font-size: 2.2rem;
	line-height: 1;
	letter-spacing: 0;
	position: relative;
	margin-bottom: .4em;
}

#sec_session .tab_btn_list .tab_btn .txtbox .num span {
	display: inline-block;
	vertical-align: middle;
	font-size: 4.2rem;
	line-height: 1;
	margin-left: .2em;
	margin-top: -.2em;
}

#sec_session .tab_btn_list .tab_btn .txtbox .ttl {
	font-weight: 700;
	font-size: 2.4rem;

	letter-spacing: 0.14em;
	margin-bottom: 5px;
}

#sec_session .tab_btn_list .tab_btn .txtbox .txt {
	line-height: 1.75;
}

/*

#sec_session .content_wrap{
	position: relative;
}
#sec_session .tab_content {
	display: none;
}

#sec_session .tab_content.is-open {
	display: block;
}

#sec_session #session02.tab_content{
	display: block;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
}

#sec_session  #session02.tab_content.is-open{
	visibility: visible;
}
*/

#sec_session .header {
	background-color: #074a97;
	position: relative;
	padding-bottom: 45px;
	z-index: 1;
}

#sec_session .header .img img {
	width: 100%;
}

#sec_session .header .ttlwrap {
	background-color: #074a97;
	margin-top: -84px;
}

#sec_session .header .ttlwrap .inner {
	justify-content: center;
	padding: 36px 140px 36px 160px;
}

#sec_session .header .ttlwrap * {
	color: #fff;
}

#sec_session .header .ttlwrap .num {
	width: 90px;
	margin-right: 40px;
	font-size: 2.27rem;
	line-height: 1;
	letter-spacing: 0;
	position: relative;
}

#sec_session .header .ttlwrap .num span {
	display: block;
	font-size: 8.26rem;
	line-height: .9;
	text-indent: -.3em;
}

#sec_session .header .ttlwrap .ttl {
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.625;
	letter-spacing: 0.18em;
}

#sec_session .contents {
	background-color: #f7f7f7;
	position: relative;
}

#sec_session .contents::before {
	content: "";
	width: 100%;
	height: 250px;
	background-color: #074a97;
	transform: skewY(-5deg);
	position: absolute;
	top: -84px;
	left: 0;
}

#sec_session .contents .list {
	background-color: #fff;
	padding: 0 25px 40px;
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}

#sec_session .contents .list .item {
	position: relative;
	width: 225px;
	margin: -64px 25px 0;
}

#sec_session .contents .list .item + .item::before {
	content: "×";
	color: #074a97;
	font-size: 5rem;
	font-family: initial;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	left: -44px;
	top: 110px;
}

#sec_session .contents .list .item .img {
	margin-bottom: 14px;
}

#sec_session .contents .list .item .txtwrap .occupation {
	line-height: 1.5;
	padding-bottom: .8em;
	margin-bottom: .5em;
	border-bottom: 1px solid #000;
}

#sec_session .contents .list .item .txtwrap .occupation span {
	display: block;
}

#sec_session .contents .list .item .txtwrap .profile .ttl {
	letter-spacing: 0.15em;
	margin-bottom: 5px;
}

#sec_session .contents .list .item .txtwrap .profile .txt {
	font-size: 1.4rem;
	line-height: 1.7;
	letter-spacing: 0.16em;
	text-align: justify;
}

#sec_session .contents .list .item .txtwrap .license {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	border: 2px solid #074a97;
}

#sec_session .contents .list .item .txtwrap .license dt {
	color: #fff;
	font-size: 1.4rem;
	width: 5.4em;
	background-color: #074a97;
	text-align: center;
	padding: 0 .5em;
	display: flex;
	align-items: center;
}

#sec_session .contents .list .item .txtwrap .license dd {
	font-size: 1.4rem;
	width: calc(100% - 5.4em);
	text-align: center;
	padding: 0 .5em;
}

#sec_session .contents .session {
	margin-bottom: 90px;
}

#sec_session .contents .session .wrap + .wrap {
	margin-top: 90px;
}


#sec_session .contents .session .lead {
	position: relative;
	font-size: 2.6rem;
	line-height: 1.6;
	letter-spacing: 0.14em;
	margin-bottom: 1em;
	padding-bottom: .5em;
}

#sec_session .contents .session .lead::before {
	content: "";
	width: 2.1em;
	height: 1px;
	background-color: #0b318f;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}

#sec_session .contents .session .item {
	display: flex;
	align-items: flex-start;
	width: 892px;
}

#sec_session .contents .session .item + .item:nth-of-type(even) {
	margin-left: auto;
	flex-direction: row-reverse;
}

#sec_session .contents .session .item .ico {
	flex: 0 0 auto;
	margin-right: 40px;
}

#sec_session .contents .session .item + .item:nth-of-type(even) .ico {
	margin-right: 0;
	margin-left: 40px;
}

#sec_session .contents .session .item .txt {
	background-color: #fff;
	padding: 25px 39px;
	text-align: justify;
	position: relative;
	border-radius: 20px;
	box-shadow: 0 5px 0 0 #e5e5e5;
	margin: auto 0;
}

#sec_session .contents .session .item .txt {
	margin: 22.5px 0;
}

#sec_session .contents .session .item .ico {
	margin-top: 22.5px;
}

#sec_session .contents .session .item .txt::before {
	content: "";
	width: 20px;
	height: 28px;
	background: url(../img/session/session_fukidashi.png) no-repeat center right/ 100% auto;
	position: absolute;
	left: -20px;
	top: 30px;
}

#sec_session .contents .session .item:nth-of-type(even) .txt::before {
	transform: scale(-1, 1);
	left: auto;
	right: -20px;
}

#sec_session .contents .session .img {
	position: relative;
	width: calc(50% + 575px);
	margin-bottom: 80px;
	margin-left: auto;
}

#sec_session .contents .session + .session:nth-of-type(even) .img {
	margin-left: 0;
	margin-right: auto;
}

#sec_session .contents .session .img::before {
	content: "";
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #cd0016;
	z-index: 1;
}

#sec_session .contents .session:nth-child(even) .img.is-show::before {
	animation: passing-bar-l 1s ease 0s 1 normal forwards;
}

#sec_session .contents .session:nth-child(odd) .img.is-show::before {
	animation: passing-bar-r 1s ease 0s 1 normal forwards;
}

#sec_session .contents .session .img img {
	width: 100%;
	display: block;
	opacity: 0;
	transition: .5s ease;
}

#sec_session .contents .session .img.is-show img {
	opacity: 1;
	transition-delay: .3s;
}

/*img_last*/
#sec_session .contents .img_last {
	position: relative;
	padding-bottom: 360px;
	margin-bottom: -360px;
	z-index: 1;
}

#sec_session .contents .img_last .wrap {
	width: 1300px;
}

#sec_session .contents .img_last::before {
	content: "";
	width: 100%;
	height: 585px;
	background-color: #0b318f;
	transform: skewY(-5deg);
	position: absolute;
	left: 0;
	bottom: 80px;
	z-index: -1;
}

#sec_session .contents .img_last img {
	width: 100%;
}

#sec_session .contents .img_last .lead {
	width: 1050px;
	font-style: normal;
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	position: absolute;
	bottom: -32.5px;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: skewX(-8deg);
}

#sec_session .contents .img_last .lead span {
	padding: .2125em .65em .3em;
	display: inline-block;
	width: auto;
	white-space: nowrap;
	background-color: #fff;
	text-align: center;
	clip-path: polygon(calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0% 100%, 0% 0%);
}

#sec_session .contents .img_last .lead span + span {
	margin-left: auto;
	margin-top: 10px;
}



/*block*/
#sec_session .block_wrap {
	margin-top: 150px;
	padding-bottom: 150px;
	background: #fff url(../img/session/session_block_bg_pc.png) no-repeat center bottom / 1800px auto;
	position: relative;
}

#sec_session .block {
	align-items: center;
	position: relative;
	z-index: 1;
}

#sec_session .block + .block {
	margin-top: 100px;
}

#sec_session .block .txtbox {
	width: 345px;
	background-color: #fff;
	padding: 39px 30px 58px;
	position: absolute;
	left: 0;
	margin-bottom: 31px;
	z-index: 2;
}

#sec_session .block .txtbox .num {
	font-size: 2.7rem;
	line-height: 1;
	letter-spacing: 0;
	position: relative;
}

#sec_session .block .txtbox .num::after {
	content: "×";
	display: block;
	font-size: 3.6rem;
	font-family: initial;
	font-weight: normal;
	line-height: 1;
}

#sec_session .block .txtbox .num span {
	display: block;
	font-size: 9.8rem;
	line-height: .9;
	text-indent: -.3em;
}

#sec_session .block .txtbox .ttl {
	font-weight: 700;
	font-size: 2.4rem;
	letter-spacing: 0.14em;
	margin-bottom: 5px;
}

#sec_session .block .img {
	position: relative;
	background: #fff;
	margin-left: auto;
	margin-right: -75px;
}

#sec_session .block .img img {
	display: block;
	opacity: 0;
	transition: .5s ease;

}

#sec_session .block .img::before {
	content: "";
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #cd0016;
	z-index: 1;
}

#sec_session .block.is-show .img::before {
	animation: passing-bar-r 1s ease 0s 1 normal forwards;
}

#sec_session .block.is-show .img img {
	opacity: 1;
	transition-delay: .3s;
}

#sec_session .block .txtbox .btn {
	position: absolute;
	bottom: -31px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#sec_session .block .txtbox .btn a {
	width: 267px;
}

@keyframes passing-bar-r {
	0% {
		right: 0;
		width: 0;
	}

	50% {
		right: 0;
		width: 100%;
	}

	51% {
		right: 0;
		width: 100%;
	}

	100% {
		right: 100%;
		width: 0;
	}
}

@keyframes passing-bar-l {
	0% {
		left: 0;
		width: 0;
	}

	50% {
		left: 0;
		width: 100%;
	}

	51% {
		left: 0;
		width: 100%;
	}

	100% {
		left: 100%;
		width: 0;
	}
}

@media screen and (min-width: 769px) {
	#sec_session .header .ttlwrap {
		-webkit-clip-path: polygon(85px 0%, calc(100% - 85px) 0%, 100% 85px, 100% 100%, 0% 100%, 0% 85px);
		clip-path: polygon(85px 0%, calc(100% - 85px) 0%, 100% 85px, 100% 100%, 0% 100%, 0% 85px);
	}

	#sec_session .block .img a {
		display: block;
		transition: .4s ease;
	}

	#sec_session .block .img a:hover {
		opacity: .8;
	}
}

@media screen and (max-width: 768px) {
	#sec_session .tab_btn_list {
		padding-bottom: 0;
		justify-content: space-between;
		background: none;
		border-bottom: 4vw solid #074a97;
		position: relative;
		z-index: auto;
	}

	#sec_session .tab_btn_list .tab_btn {
		width: 32.8% !important;
		padding: 0;
		margin: 0 0 -1px;
		border-bottom: 1px solid #074a97;
	}

	#sec_session .tab_btn_list .tab_btn .bg {
		width: 100%;
		height: 100%;
		padding: 0;
	}

	#sec_session .tab_btn_list .tab_btn .bg::before {
		content: none;
	}


	#sec_session .tab_btn_list .tab_btn .line_anime {
		width: .4vw;
		height: 8.8vw;
		bottom: -4.4vw;
	}

	#sec_session .tab_btn_list .tab_btn .txtbox {
		background: none !important;
		display: block;
		padding: 6.9vw 4vw;
		margin-top: -1px;
	}

	#sec_session .tab_btn_list .tab_btn .txtbox .num {
		font-size: 2.66vw;
		margin-bottom: .5em;
	}

	#sec_session .tab_btn_list .tab_btn .txtbox .num span {
		font-size: 4vw;
	}

	#sec_session .tab_btn_list .tab_btn .txtbox .ttl {
		font-size: 3.4vw;
		line-height: 1.3;
		margin-bottom: 0;
	}

	#sec_session .header {
		padding-bottom: 11vw;
	}

	#sec_session .header .ttlwrap {
		margin-top: 0;
	}

	#sec_session .header .ttlwrap::before {
		content: "";
		width: 100%;
		height: 12vw;
		background-color: #074a97;
		-webkit-clip-path: polygon(11vw 0%, calc(100% - 11vw) 0%, 100% 100%, 0% 100%);
		clip-path: polygon(11vw 0%, calc(100% - 11vw) 0%, 100% 100%, 0% 100%);
		position: absolute;
		top: -11vw;
	}

	#sec_session .header .ttlwrap .inner {
		display: block;
		height: auto;
		padding: 0;
	}

	#sec_session .header .ttlwrap .num {
		width: auto;
		margin: 0 auto;
		font-size: 4.55vw;
		position: relative;
		top: -18vw;
		margin-bottom: -14vw;
	}

	#sec_session .header .ttlwrap .num span {
		display: block;
		font-size: 16.53vw;
	}

	#sec_session .header .ttlwrap .ttl {
		text-align: center;
		font-size: 6.4vw;
		letter-spacing: 0.1em;
	}

	#sec_session .contents::before {
		height: 177vw;
		top: -4.3vw;
	}

	#sec_session .contents .list {
		display: block;
		padding: 0 1.07vw 6vw;
		margin-bottom: 17vw;
	}

	#sec_session .contents .list .item {
		position: relative;
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		margin: 0 auto;
		padding: 1.2vw 0;
	}

	#sec_session .contents .list .item + .item {
		margin-top: 8vw;
	}

	#sec_session .contents .list .item + .item::before {
		font-size: 12vw;
		text-align: center;
		left: 0;
		right: 0;
		margin: 0 auto;
		top: -8vw;
	}

	#sec_session .contents .list .item .img {
		width: 30.67vw;
		margin-bottom: 0;
	}

	#sec_session .contents .list .item .txtwrap {
		width: calc(100% - 31vw);
		padding-top: 3vw;
		padding-right: 2.93vw;
	}

	#sec_session .contents .list .item .txtwrap .profile .ttl {
		margin-bottom: .8vw;
	}

	#sec_session .contents .list .item .txtwrap .profile .txt {
		font-size: 2.8vw;
	}

	#sec_session .contents .list .item .txtwrap .license {
		margin-top: 2vw;
		border: none;
	}

	#sec_session .contents .list .item .txtwrap .license dt {
		font-size: 2.8vw;
		border: .4vw solid #074a97;
		width: 6em;
	}

	#sec_session .contents .list .item .txtwrap .license dd {
		font-size: 2.8vw;
		border: .4vw solid #074a97;
		width: calc(100% - 6em);
	}

	#sec_session .contents .session {
		margin-bottom: 16vw;
	}

	#sec_session .contents .session .wrap + .wrap {
		margin-top: 16vw;
	}

	#sec_session .contents .session .wrap {
		width: 100%;
	}

	#sec_session .contents .session .lead {
		font-size: 5.2vw;
	}

	#sec_session .contents .session .item {
		width: 92%;
		margin-left: auto;
	}

	#sec_session .contents .session .item + .item:nth-of-type(even) {
		margin-left: 0;
		flex-direction: row-reverse;
	}

	#sec_session .contents .session .item .txt {
		margin: 3vw 0;
	}

	#sec_session .contents .session .item .ico {
		margin-top: 3vw;
	}

	#sec_session .contents .session .item .ico {
		width: 16vw;
		margin-right: 5vw;
	}

	#sec_session .contents .session .item + .item:nth-of-type(even) .ico {
		margin-right: 0;
		margin-left: 5vw;
	}

	#sec_session .contents .session .item .txt {
		padding: 5vw 8vw;
		border-radius: 4vw 0 0 4vw;
		box-shadow: 0 1.07vw 0 0 #e5e5e5;
		width: 71vw;
	}

	#sec_session .contents .session .item .txt::before {
		width: 4vw;
		height: 5.6vw;
		left: -3.6vw;
		top: 5.2vw;
	}

	#sec_session .contents .session .item + .item:nth-of-type(even) .txt {
		border-radius: 0 4vw 4vw 0;
	}

	#sec_session .contents .session .item:nth-of-type(even) .txt::before {
		right: -3.6vw;
	}

	#sec_session .contents .session .img {
		width: 92%;
		margin-bottom: 14vw;
	}

	/*img_last*/
	#sec_session .contents .img_last {
		padding-bottom: 19vw;
		margin-bottom: 0;
	}

	#sec_session .contents .img_last .wrap {
		/* width: 84%; */
		width: 100%;
	}

	#sec_session .contents .img_last::before {
		height: 73vw;
		bottom: -4.5vw;
	}

	#sec_session .contents .img_last img {
		width: 100%;
	}

	#sec_session .contents .img_last .lead {
		width: 84%;
		font-size: 4.8vw;
		display: block;
		text-align: center;
		position: static;
		margin-top: -4vw;
	}

	#sec_session .contents .img_last .lead span {
		clip-path: polygon(calc(100% - 1.6vw) 0, 100% 50%, calc(100% - 1.6vw) 100%, 0% 100%, 0% 0%);
	}

	#sec_session .contents .img_last .lead span + span {
		margin-top: 1.33vw;
	}



	/*block*/
	#sec_session .block_wrap {
		margin-top: 0;
		background: none;
		padding-bottom: 0;
	}

	#sec_session .block {
		padding-bottom: 26vw;
	}

	#sec_session .block::before {
		content: "";
		width: 100vw;
		height: calc(100% - 60vw);
		background-color: #e8f5fb;
		position: absolute;
		left: -8vw;
		bottom: 4.5vw;
		transform: skewY(-5deg);
		transition: 1s ease;
	}

	#sec_session .block + .block {
		margin-top: -8vw;
	}

	#sec_session .block .txtbox {
		width: 100%;
		padding: 0 8vw 14.6vw;
		position: static;
		margin-top: -6vw;
	}

	#sec_session .block .txtbox .num {
		font-size: 5.4vw;
		position: relative;
		top: -12vw;
		margin-bottom: -12vw;
	}

	#sec_session .block .txtbox .num::after {
		font-size: 8vw;
		text-indent: -.4em;
	}

	#sec_session .block .txtbox .num span {
		font-size: 19.7vw;
	}

	#sec_session .block .txtbox .ttl {
		font-size: 4.8vw;
		margin-bottom: 1.4vw;
	}

	#sec_session .block .img {
		margin: 0 -8vw;
	}

	#sec_session .block .img a {
		pointer-events: none;
		display: inline-block;
	}

	#sec_session .block .txtbox .btn {
		bottom: -6.2vw;
	}

	#sec_session .block .txtbox .btn a {
		width: 53vw;
	}
}




/* sec_session
--------------------------------*/

#sec_interview_list .ttlwrap {
	margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
	#sec_interview_list .ttlwrap {
		margin-bottom: 12vw;
	}

	#sec_interview_list .lead {
		text-align: center;
		letter-spacing: 0.1em;
	}

	#sec_interview_list .secttl {
		text-align: center;
		margin-bottom: 1.5em;
	}

	#sec_interview_list .btn {
		margin-top: 12vw;
	}
}