@charset "utf-8";
/* SPの透明セレクト
--------------------------------------------------*/

.m-transparentSelect {
	position: relative;
	font-size: 16px;
}

.m-transparentSelect select {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	font-size: 16px;
}

/* ハンバーガー
--------------------------------------------------*/

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-hamburger {
		display: none;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-hamburger {
		width: 15.334vw;
        height: 10.667vw;
		background-color: #00397e;
		cursor: pointer;
		z-index: 100;
	}
	.m-hamburger_lines {
        position: relative;
        width: 43%;
		height: 66%;
		margin: 0 auto;
        margin-bottom: 2.5%;
	}
	.m-hamburger_lines>div {
		background-color: #fff;
		width: 100%;
		height: 0.5vw;
		transition: transform .3s ease, opacity .3s ease;
		position: absolute;
		left: 0;
		top: 50%;
	}
	.m-hamburger_lines>div:first-child {
		transform: translateY(-380%);
	}
	.m-hamburger_lines>div:last-child {
		transform: translateY(380%);
	}
	.menu-open .m-hamburger_lines>div:first-child {
		transform: rotate(225deg);
	}
	.menu-open .m-hamburger_lines>div:nth-child(2) {
		transform: translateX(-50%);
		opacity: 0;
	}
	.menu-open .m-hamburger_lines>div:last-child {
		transform: rotate(-225deg);
	}
	.m-hamburger_txt {
		width: 100%;
		margin: 0 auto;
		color: #fff;
		text-align: center;
		font-size: 1.6rem;
	}
	.m-hamburger_txt:before {
		content: "MENU";
	}
	.menu-open .m-hamburger_txt:before {
		content: "閉じる";
	}
}

/* スマホナビ
--------------------------------------------------*/

/* sp */

@media screen and (max-width: 767px) {
	.sp-nav-top {
        position: relative;
        padding: 5rem 2rem 3rem 2rem;
	}
	.sp-nav-top ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.sp-nav-top li {
		width: calc(50% - 1rem);
		border-bottom: 1px solid #7f9cbe;
	}
    .sp-nav-top li:nth-child(1),
    .sp-nav-top li:nth-child(2) {
        border-top: 1px solid #7f9cbe;
    }
	.sp-nav-top li:nth-child(odd) {
		border-left: none;
	}
	.sp-nav-top a {
        display: block;
		padding: 2.6rem 3rem;
		font-size: 3.2rem;
        font-weight: bold;
	}
    .sp-nav-sns ul {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 3rem;
    }
    .sp-nav-sns ul li {
		padding: 0 2rem;
		z-index: 999;
    }
    .sp-nav-sns ul li a {
        font-family: "snsfont";
	}
    .sp-nav-sns ul li.facebook a {
        font-size: 6.5rem;
    }
    .sp-nav-sns ul li.twitter a {
        font-size: 5.8rem;
    }
    .sp-nav-sns ul li.instagram a {
        font-size: 5.8rem;
    }
    .sp-nav-sns ul li.youtube a {
        font-size: 4.584rem;
    }
}

/* タイトル
--------------------------------------------------*/

.m-rootTitle {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.m-rootTitle:before {
	content: "";
	background: linear-gradient(90deg, rgba(0, 57, 126, 0.55) 0%, rgba(0, 57, 126, 0.3) 30%, rgba(0, 57, 126, 0) 60%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
}

.m-rootTitle>.in {
	color: #fff;
	font-weight: bold;
	position: relative;
	z-index: 2;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-rootTitle {
		background-image: url("../images/dummies/title.jpg");
		padding: 52px 15px;
		margin-bottom: 40px;
	}
	.m-rootTitle>.in {
		width: 1100px;
		margin: 0 auto;
		font-size: 4.4rem;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-rootTitle {
		background-image: url("../images/dummies/title-sp.jpg");
		padding: 3.9rem 2rem;
		margin: 15vw 0 2rem 0;
	}
	.m-rootTitle>.in {
		font-size: 5rem;
	}
}

/* タイトル
--------------------------------------------------*/

.m-pageTitle {
	font-weight: bold;
	line-height: 1.1;
	position: relative;
}

.m-pageTitle:after {
	content: "";
	position: absolute;
	width: 101%;
	height: 1px;
	background: #d4e0ee;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-pageTitle {
		font-size: 4rem;
		padding: 0 0 0 20px;
		margin-bottom: 60px;
		border-left: 7px solid #ffd204;
	}
	.m-pageTitle:after {
		left: -10px;
		bottom: -20px;
	}

}

/* sp */

@media screen and (max-width: 767px) {
	.m-pageTitle {
		font-size: 4.6rem;
		padding: 0 0 0 2rem;
		margin-bottom: 8.5rem;
		border-left: 1rem solid #ffd204;
	}
	.m-pageTitle:after {
		left: -1rem;
		bottom: -2rem;
	}

}

/* ぱんくず
--------------------------------------------------*/

.m-bread {}

.m-bread li {
	display: inline-block;
}

.m-bread li a {
	display: block;
	background: url("../images/shared/arrow-bread.svg") right center no-repeat;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-bread {
		margin: -20px auto 15px auto;
	}
	.m-bread li {
		font-size: 1.3rem;
		display: inline-block;
	}
	.m-bread li a {
		margin-right: 8px;
		padding: 5px 18px 5px 0;
		background-size: 9px auto;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-bread {
		margin: 2rem 0 3rem 0;
	}
	.m-bread li {
		font-size: 1.8rem;
		display: inline-block;
	}
	.m-bread li a {
		margin-right: 1.4rem;
		padding: 0.5rem 2.3rem 0.5rem 0;
		background-size: 1.2rem auto;
	}
}

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

パーツ

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

/* sp */

@media screen and (max-width: 767px) {
	.m-transparentSelect {
		background-color: #f3f8fe;
		text-align: center;
        margin: 0 2rem 3rem 2rem;
/*		margin-bottom: 3rem;*/
		position: relative;
		color: #00479d;
		font-size: 2.6rem;
		padding: 2rem;
	}
	.m-transparentSelect:before {
		width: 2rem;
		height: 1.8rem;
		content: "";
		background: url("../images/shared/arrow-blue-down.png") left center no-repeat;
		background-size: 100% auto;
		margin-right: 1.2rem;
		display: inline-block;
	}
}

/* トップニュースリスト
--------------------------------------------------*/

.m-newsPost {
	line-height: 1.5;
}

.m-newsPost.-dummy {
	height: 0;
	opacity: 0;
	margin: 0;
}

.m-newsPost .new {
	color: #eb540b;
  font-style: italic;
	display: inline-block;
	z-index: 3;
	font-weight: bold;
}
.m-newsPost_data time {
	color: #434343;
	position: relative;
}
.m-newsPost_title {
	font-size: 1.4rem;
	font-weight: bold;
}
.qua-unit .m-newsPost a[target=_blank]:after {
	display: none;
}
.qua-unit .m-newsPost_title a[target=_blank]:after {
	display: inline-block;
}
.m-newsPost_image img {
	object-fit: cover;
	/* IE対策 */
	font-family: 'object-fit: cover;';
	width: 100%;
	height: 100%
}
.m-newsPost_image a {
	padding: 0!important;
}
.m-newsPost_image .term {
    position: absolute;
    right: 0;
    top: 0;
    bottom: auto;
    left: auto;
	color: #fff;
    font-weight: 600;
	text-align: center;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-newsPost {
		width: calc( ( 100% / 4) - 25.5px);
		margin: 0 0 45px 0;
		position: relative;
	}
	.m-newsPost .new {
		font-size: 1.4rem;
		padding-left: 7px;
	}
	.m-newsPost_image {
		height: 0;
		padding-top: 72%;
		position: relative;
	}
	.m-newsPost_image a {
		overflow: hidden;
		position: absolute!important;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	.m-newsPost_image img {
		transition: all 0.3s ease;
	}
	.m-newsPost_image:hover img {
		transform: scale(1.15);
	}
    .m-newsPost_image .term {
        width: 110px;
		padding: 3px!important;
        font-size: 1.3rem;
	}
	.m-newsPost_data {
		margin: 10px 0 12px 0;
	}
	.m-newsPost_data time {
        font-size: 1.4rem;
	}
	.m-newsPost_title {
		font-size: 1.5rem;
	}
	.m-newsPost a {
		text-decoration: none;
	}
	.m-newsPost_title a:hover, .m-newsPost_tag a:hover {
		text-decoration: underline;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-newsPost {
        display: flex;
        position: relative;
		border-bottom: 1px dashed #c9d8ea;
		padding: 3rem 0;
		overflow: hidden;
	}
    .m-newsPost:first-child {
        border-top: 1px dashed #c9d8ea;
    }
	.m-newsPost:nth-child(n+5) {
		display: none;
	}
	.m-newsPost_image {
        position: relative;
        width: 25rem;
        height: 17rem;
        margin-right: 3rem;
	}
    .m-newsPost_image .term {
        display: inline-block;
        width: 16rem;
        padding: 0.5rem!important;
		font-size: 2rem;
	}
    .m-newsPost .m-newsPost_wrap {
        width: 43rem;
    }
	.m-newsPost_data {
        display: flex;
        align-items: center;
		margin-bottom: 2rem;
	}
	.m-newsPost_data time {
		font-size: 2rem;
		margin-right: 2rem;
	}
    .m-newsPost .new {
		font-size: 2rem;
	}
	.m-newsPost_title {
		line-height: 1.6;
        font-size: 2.6rem;
	}
	.m-newsPost_tag {
		display: none;
	}
}

/* ボタン
--------------------------------------------------*/

.m-button {
	color: #fff;
	text-align: center;
}

.m-button a {
	font-weight: bold;
	display: inline-block;
	position: relative;
    border: 1px solid #00397e;
    background-color: #fff;
}

.m-button span {
	display: inline-block;
}

.m-button a::after {
	content: "";
	background: url("../images/shared/button-arrow.png") 0 0 no-repeat;
    background-size: 35px 7px;
	display: block;
	position: absolute;
	transform: translateY(-50%);
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-button a {
        min-width: 380px;
		font-size: 2rem;
		padding: 14px 75px;
        border-radius: 40px;
	}
	.m-button a::after {
		width: 35px;
		height: 7px;
		right: 25px;
        top: calc( 50% - 2px);
	}
	.m-button a:hover {
        color: #fff;
		background-color: #00397e;
	}
	.m-button a:hover::after {
		background: url("../images/shared/button-arrow-on.png") 0 0 no-repeat;
        background-size: 35px 7px;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-button a {
        min-width: 56rem;
        padding: 2.7rem;
        border-radius: 6rem;
        line-height: 1.5;
		font-size: 3.6rem;
	}
	.m-button a::after {
		width: 5.5rem;
        height: 1.1rem;
        right: 4rem;
        background-size: 5.5rem 1.1rem;
		top: calc( 50% - 0.4rem);
	}
}

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

セカンド

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

/* ニュース
--------------------------------------------------*/

/* pc */

@media print, only screen and (min-width: 768px) {}

/* sp */

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

/* Not Found
--------------------------------------------------*/

.m-notFound_heading {
	color: #000;
	text-align: center;
	font-weight: bold;
	position: relative;
    overflow: hidden;
}
.m-notFound_heading::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 100%;
    height: 22px;
    background-color: #ffd204;
    transform: skewX(-20deg);
    z-index: -1;
}
.m-notFound_body {
    text-align: center;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-notFound {
		width: 665px;
		margin: 0 auto;
	}
	.m-notFound_heading {
        line-height: 1.1;
		font-size: 6rem;
        letter-spacing: 8px;
        margin-bottom: 50px;
        padding-top: 40px;
	}
	.m-notFound_body {
		line-height: 2;
        font-size: 1.5re,:
	}
	.m-notFound_body {
		margin-bottom: 60px;
	}
    .m-notFound .m-button a {
        min-width: 228px;
    }
}

/* sp */

@media screen and (max-width: 767px) {
	.m-notFound_heading {
        line-height: 1.1;
		font-size: 6rem;
        margin: 0 4rem 5.5rem 4rem;
        padding-top: 5.5rem;
	}
    .m-notFound_heading::after {
        bottom: 0;
        left: -1rem;
        height: 2.2rem;
    }
	.m-notFound_body {
		font-size: 2.6rem;
		line-height: 1.93;
		margin: 0 1rem 5.5rem 1rem;
	}
}

/* ニュース
--------------------------------------------------*/

.m-newsArchive {
	border-top: 1px #e5e5e5 solid;
}

.m-newsArchive .m-newsArchive_item {
	border-bottom: 1px #e5e5e5 solid;
}

.m-newsArchive .m-newsArchive_time {
	color: #434343;
	position: relative;
}

.m-newsArchive .m-newsArchive_term {
	color: #fff;
	text-align: center;
}

.m-newsArchive .m-newsArchive_title {
	font-weight: bold;
}

.m-newsArchive .m-newsArchive_title a {
	display: block;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-newsArchive {
		margin-bottom: 35px;
	}
	.m-newsArchive .m-newsArchive_item {
		padding: 15px 0 15px 5px;
	}
	.m-newsArchive .m-newsArchive_time {
		top: 2px;
	}
	.m-newsArchive .m-newsArchive_term {
		min-width: 110px;
		padding: 3px;
		font-size: 13px;
		line-height: 1.5;
		margin-left: 15px;
		display: inline-block;
	}
	.m-newsArchive .m-newsArchive_title {
		font-size: 15px;
		margin-top: 3px;
	}
	.m-newsArchive a {
		text-decoration: none;
	}
	.m-newsArchive .m-newsArchive_title a:hover {
		text-decoration: underline;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-newsArchive {
		margin-bottom: 5.3rem;
	}
	.m-newsArchive .m-newsArchive_item {
		border-bottom: 1px #b8b8b8 dotted;
		padding: 2.4rem 0;
	}
	.m-newsArchive .m-newsArchive_time {
		font-size: 2rem;
		top: 0.3rem;
		margin-right: 1.3rem;
	}
	.m-newsArchive .m-newsArchive_term {
		font-size: 1.7rem;
		min-width: 21rem;
		padding: 0.4rem;
		display: inline-block;
	}
	.m-newsArchive .m-newsArchive_title {
		font-size: 2.6rem;
		line-height: 1.6;
		margin-top: 2rem;
	}
}

/* ニュース  ページナビ
--------------------------------------------------*/

.m-pagenavi {
	text-align: center;
	display: flex;
	justify-content: center;
}

.m-pagenavi a, .m-pagenavi span {
	display: flex;
	justify-content: center;
	align-items: center;
}

.m-pagenavi a, .m-pagenavi .page-numbers.dots {
	background-color: #f3f8fe;
	color: #00479d;
}

.m-pagenavi span {
	background-color: #00397e;
	color: #fff;
}

.m-pagenavi .prev, .m-pagenavi .next {
	background-repeat: no-repeat;
	background-position: center center;
}

.m-pagenavi .prev {
	background-image: url("../images/shared/arrow-prev.svg");
}

.m-pagenavi .next {
	background-image: url("../images/shared/arrow-files.svg");
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-pagenavi {
		font-size: 15px;
		margin-bottom: 90px;
	}
	.m-pagenavi a, .m-pagenavi span {
		width: 40px;
		height: 40px;
		margin: 0 5px;
	}
	.m-pagenavi a:hover {
		background-color: #d9e7f7;
		text-decoration: none;
	}
	.m-pagenavi .prev, .m-pagenavi .next {
		background-size: 10px auto;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-pagenavi {
		font-size: 2.4rem;
		margin-bottom: 11rem;
	}
	.m-pagenavi a, .m-pagenavi span {
		width: 6.3rem;
		height: 6.3rem;
		margin: 0 0.8rem;
	}
	.m-pagenavi .prev, .m-pagenavi .next {
		background-size: 1.6rem auto;
	}
}

/* ニュース  タイトル
--------------------------------------------------*/

.m-singleTitle_title {
	border-bottom: 1px #e5e5e5 solid;
	color: #00479d;
	font-weight: bold;
	line-height: 1.5;
}

.m-singleTitle_data {
	text-align: right;
}

.m-singleTitle_data div {
	display: inline;
}

.news-data .m-newsPost_tag {
	background: url("../images/shared/icon-tag.svg") left center no-repeat;
	color: #898989;
}

.m-newsPost_category {
	font-weight: bold;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-singleTitle_title {
		font-size: 20px;
		padding: 10px 5px 15px 5px;
	}
	.m-singleTitle_data {
		font-size: 13px;
		margin: 10px 0 35px 0;
	}
	.m-singleTitle_data .m-singleTitle_date {
		font-size: 15px;
		margin-right: 13px;
	}
	.m-singleTitle_data .m-newsPost_tag {
		background-size: 19px auto;
		margin-left: 19px;
		padding: 2px 0 2px 30px;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-singleTitle_title {
		font-size: 3.2rem;
		padding-bottom: 1rem;
	}
	.m-singleTitle_data {
		font-size: 2rem;
		margin: 1rem 0 4rem 0;
	}
	.m-singleTitle_data .m-singleTitle_date {
		margin-right: 2.5rem;
	}
	.m-singleTitle_data .m-newsPost_tag {
		background-size: 1.9rem auto;
		margin-left: 2.5rem;
		padding: 0 0 0 3rem;
	}
}

/* ニュース  ページ送り
--------------------------------------------------*/

.m-singlePagenavi {
	border-top: 1px #e5e5e5 solid;
	display: flex;
	justify-content: space-between;
}

.m-singlePagenavi li {
	width: calc( 100% / 3);
	display: flex;
	align-items: center;
}

.m-singlePagenavi li:nth-child(2) {
	justify-content: center;
}

.m-singlePagenavi li.m-singlePagenavi_next {
	justify-content: flex-end;
}

.m-singlePagenavi li.m-singlePagenavi_prev a {
	background: url("../images/shared/arrow-prev.svg") 10px center no-repeat;
}

.m-singlePagenavi li.m-singlePagenavi_next a {
	background: url(../images/shared/arrow-files.svg) right 10px center no-repeat;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-singlePagenavi {
		font-size: 18px;
		margin-top: 40px;
		margin-bottom: 90px;
	}
	.m-singlePagenavi li {
		padding: 12px 0;
	}
	.m-singlePagenavi li.m-singlePagenavi_prev a {
		background-size: 14px auto;
		padding-left: 35px;
	}
	.m-singlePagenavi li.m-singlePagenavi_next a {
		background-size: 14px auto;
		padding-right: 35px;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-singlePagenavi {
		font-size: 2.8rem;
		margin-top: 4rem;
		margin-bottom: 11rem;
	}
	.m-singlePagenavi li {
		padding: 2.5rem 0;
	}
	.m-singlePagenavi li.m-singlePagenavi_prev a {
		background-position: 0.7rem center;
		background-size: 1.4rem auto;
		padding-left: 3.7rem;
	}
	.m-singlePagenavi li.m-singlePagenavi_next a {
		background-position: right 0.7rem center;
		background-size: 1.4rem auto;
		padding-right: 3.7rem;
	}
}

/* .m-sesionIcons
--------------------------------------------------*/

.m-sesionIcons {
	display: flex;
	justify-content: space-between;
	border-top: 1px #d4d4d4 solid;
	border-bottom: 1px #d4d4d4 solid;
	font-weight: bold;
}

.m-sesionIcons .m-sesionIcons_item{
	text-align: center;
}
.m-sesionIcons .m-sesionIcons_item._kikoku{
	color: #13b5b1;
}

.m-sesionIcons .m-sesionIcons_item._shikou {
	color: #8f82bc;
}

.m-sesionIcons .m-sesionIcons_item._gakushoku{
	color: #f19149;
}
.m-sesionIcons .m-sesionIcons_item._koukou{
	color: #00a0e9;
}

.m-sesionIcons .m-sesionIcons_item img {
	vertical-align: middle;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-sesionIcons {
		padding: 26px 35px 26px 35px;
		margin-bottom: 58px;
	}
	.m-sesionIcons .m-sesionIcons_item {
		font-size: 20px;
	}
	.m-sesionIcons .m-sesionIcons_item img {
		width: 44px;
		height: auto;
		margin-bottom: 20px;
	}
	.m-sesionIcons .m-sesionIcons_item .m-sesionIcons_title {
		line-height: 1.5;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-sesionIcons {
		padding: 2.7rem 3.5rem 2.7rem 3.5rem;
		margin-bottom: 4.5rem;
	}
	.m-sesionIcons .m-sesionIcons_item {
		font-size: 2rem;
	}
	.m-sesionIcons .m-sesionIcons_item:last-child {
		margin-right: 0;
	}
	.m-sesionIcons .m-sesionIcons_item img {
		width: 4.9rem;
		height: auto;
		margin-bottom: 1.5rem;
	}
}

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

.m-session_header {
	line-height: 1.5;
}

.m-session_header .m-session_title {
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.m-session_header .m-session_date {
	white-space: nowrap;
}

.m-session_header .m-session_icons {
	display: flex;
	justify-content: flex-start;
}

.m-session_header .m-session_icon {
	display: inline;
}

.m-session_header .m-session_icon:first-child {
	margin-left: 0;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-session_header {
		background-color: #f6f6f6;
		border-top: 1px #00479d solid;
		font-weight: bold;
		overflow: hidden;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 4px;
	}
	.m-session_header .m-session_date {
		height: 50px;
		font-size: 15px;
		padding: 0 42px 0 40px;
		margin-left: -20px;
		display: flex;
		align-items: center;
		background-color: #00479d;
		transform: skewX(-27deg);
		color: #fff;
	}
	.m-session_header .m-session_title {
		min-height: 50px;
		font-size: 18px;
		padding: 10px 10px 10px 0;
		margin-left: 20px;
		flex: 1;
	}
	.m-session_header .m-session_date .inin {
		transform: skewX(27deg);
	}
	.m-session_header .m-session_icons {
		padding: 10px 18px 0 0;
	}
	.m-session_header .m-session_icon {
		margin-left: 8px;
	}
	.m-session_header .m-session_icon img {
		width: 25px;
		vertical-align: middle;
		line-height: 1;
		font-size: 1;
	}
}

/* sp */

@media screen and (max-width: 767px) {
	.m-session_header {
		position: relative;
	}
	.m-session_header .m-session_date {
		min-height: 6rem;
		background-color: #f6f6f6;
		border-top: 1px #00479d solid;
		font-weight: bold;
		overflow: hidden;
		display: flex;
		justify-content: flex-start;
	}
	.m-session_header .m-session_date .in {
		display: flex;
		align-items: center;
		background-color: #00479d;
		transform: skewX(-27deg);
		color: #fff;
		font-size: 2.6rem;
		padding: 0 4rem 0 5.5rem;
		margin-left: -2rem;
	}
	.m-session_header .inin {
		transform: skewX(27deg);
	}
	.m-session_header .m-session_title {
		font-size: 3.6rem;
		font-weight: bold;
		margin: 1.5rem 0;
	}
	.m-session_header .m-session_icons {
		position: absolute;
		right: 1.4rem;
		top: 1rem;
	}
	.m-session_header .m-session_icon {
		margin-left: 1.4rem;
	}
	.m-session_header .m-session_icon img {
		width: 4rem;
	}
}

/* m-session_contents
--------------------------------------------------*/

.m-session_row {
	border-bottom: 1px #e5e5e5 solid;
	display: flex;
	justify-content: space-between;
}

.m-session_heading {
	background: url("../images/shared/icon-check-blue.svg") 0.2rem 0.3em no-repeat;
	color: #00479d;
	font-weight: bold;
}

.m-session_data {
	flex: 1;
}

.m-session_data a[href$=pdf] {
	display: block;
	position: relative;
}

.m-session_data a[href$=pdf]::before {
	width: 1em;
  height: 1em;
  content: "";
  background-image: url(../images/shared/arrow-files.svg);
	background-repeat: no-repeat;
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  background-position: 0 0;
}

.m-session_data a[href$=pdf]::after {
	content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
	background: url(../../../../plugins/quarea/front/images/icon-pdf.png) right center no-repeat;
}

.m-session_data.data_apply a {
	position: relative;
	display: inline-block;
	border: 1px solid #00397e;
    border-radius: 3em;
    background-color: transparent;
    cursor: pointer;
	font-weight: bold;
}

.m-session_data.data_apply a::after {
	content: "";
    background: url(../images/shared/button-arrow.png) 0 0 no-repeat,url(../images/shared/button-arrow-on.png) -9999px 0 no-repeat;
    background-size: 100% auto;
    display: block;
	position: absolute;
	width: 28px;
	height: 7px;
    right: 20px;
    top: calc( 50% - 1px );
    transform: translateY(-50%);
}

.m-session_data.data_apply a .in {
	display: block;
}

/* pc */

@media print, only screen and (min-width: 768px) {
	.m-session_contents {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 80px;
	}
	.m-session_row {
		width: 100%;
		padding: 17px 0;
		font-size: 15px;
		line-height: 1.74;
	}
	.m-session_heading {
		background-size: 16px auto;
		width: 140px;
		padding-left: 26px;
	}
	.m-session_data.data_apply a {
		width: 39rem;
		font-size: 18px;
		line-height: 1.5;
	}
	.m-session_data.data_apply a + a {
		margin-top: 20px;
	}
	.m-session_data.data_apply a .in {
		padding: 9px 60px 9px 25px;
	}
	.m-session_data.data_apply a:hover {
		text-decoration: none;
	}
	.m-session_data.data_apply a:hover {
		color: #fff;
		background-color:#103a79;
	}
	.m-session_data.data_apply a:hover:after{
		background-position: -9999px 0,0 0;
	}
	.m-session_data a[href$=pdf] {
		padding-left: 1.5rem;
	}
	.m-session_data a[href$=pdf]::before {
		background-size: 10px auto;
	}

}

/* sp */

@media screen and (max-width: 767px) {
	.m-session_contents {
		border-top: 1px #e5e5e5 solid;
		margin-bottom: 8rem;
	}
	.m-session_row {
		padding: 2.1rem 0;
		font-size: 2.6rem;
		line-height: 1.54;
	}
	.m-session_heading {
		background-size: 2rem auto;
		width: 19.3rem;
		padding-left: 3.8rem;
	}
	.m-session_data.data_apply a {
		width: 51rem;
    	font-size: 2.4rem;
		line-height: 1.5;
	}
	.m-session_data.data_apply a + a {
		margin-top: 20px;
	}
	.m-session_data.data_apply a .in {
		padding: 1.3rem 5rem 1.3rem 2.5rem;
	}
	.m-session_data.data_apply a::after {
		width: 4rem;
		height: 1rem;
		right: 3rem;
		background-size: 4rem 1rem;
		top: calc( 50% - 0.4rem);
	}
	.m-session_data a[href$=pdf] {
		padding-left: 2.5rem;
	}
	.m-session_data a[href$=pdf]::before {
		background-size: 1.6rem auto;
	}
}