/*
 *
 * Import
 *
 */
@import url("normalize.css");
@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Asap:400,400italic,700,700italic");

/*
 *
 * Common
 *
 */
html {
	color: #000;
	font-family: "Asap", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto,
		"游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3",
		"Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo,
		"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6em;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover img {
	opacity: 0.8;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: 0.35s;
	-o-transition-duration: 0.35s;
	transition-duration: 0.35s;
}

.l-header {
	min-width: 1200px;
	padding-top: 20px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.l-header {
		min-width: 100%;
	}
}

.l-header__site_title {
	margin-left: 150px;
	margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
	.l-header__site_title {
		margin-left: 20px;
		margin-bottom: 15px;
	}
}

.l-header__site_title__en {
	font-size: 12px;
	margin: 0 0 6px;
}

.l-header__site_title__jp {
	font-size: 20px;
	margin: 0;
	margin: 0 0 12px;
}

.l-header__tool {
	overflow: hidden;
	zoom: 1;
}

.l-header__tool__lang {
	background: #5c0628 url(../images/common/pattern_diagonal.png) repeat;
	color: #fff;
	display: block;
	height: 75px;
	line-height: 75px;
	position: absolute;
	right: 200px;
	text-align: center;
	top: 0;
	width: 200px;
}

@media screen and (max-width: 768px) {
	.l-header__tool__lang {
		float: left;
		height: 45px;
		line-height: 45px;
		position: static;
		width: 50%;
	}
}

.l-header__tool__lang:hover {
	background-color: #8f083d;
}

.l-header__tool__search {
	background: #1f6616 url(../images/common/pattern_diagonal.png) repeat;
	display: block;
	height: 75px;
	line-height: 75px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 200px;
}

@media screen and (max-width: 768px) {
	.l-header__tool__search {
		float: left;
		height: 45px;
		line-height: 45px;
		position: static;
		width: 50%;
	}
}

.l-header__tool__search__input {
	border: none;
	background-color: #184512;
	color: #fff;
	height: 20px;
	padding: 5px;
	width: 165px;
}

@media screen and (max-width: 768px) {
	.l-header__tool__search__input {
		width: 80%;
	}
}

.l-header__tool__search__submit {
	border: none;
	background-color: transparent;
	color: #a7b3a1;
	height: 20px;
	line-height: 12px;
	margin-left: -35px;
	width: 30px;
}

@media screen and (max-width: 768px) {
	.l-header__tool__search__submit {
		margin-left: -40px;
	}
}

.l-header__nav {
	text-align: center;
}

.l-header__nav__item__wrapper {
	font-size: 0;
}

.l-header__nav__item {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	height: 60px;
}

.l-header__nav__item__link {
	border-right: 1px dotted #333;
	border-bottom: 0 solid #e5002c;
	color: #333;
	display: block;
	font-size: 17px;
	height: 50px;
	line-height: 50px;
	margin: 3px 0;
	width: 140px;
}

.l-header__nav__item:last-child .l-header__nav__item__link {
	border-right: none;
}

.l-header__nav__item:hover,
.l-header__nav__item.l-header__nav__item__is-current {
	border-bottom: 4px solid #e5002c;
}

.l-header__nav_sp {
}

.l-header__nav_sp__trigger,
.l-header__nav_sp__hamburger {
	display: inline-block;
	transition: all 0.4s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.l-header__nav_sp__trigger {
	background-color: #f3f5f3;
	border: 1px solid #ccc;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 20px;
	right: 20px;
}

.l-header__nav_sp__hamburger {
	position: absolute;
	left: 7px;
	width: 24px;
	height: 3px;
	background-color: #777;
}

.l-header__nav_sp__hamburger:nth-child(1) {
	top: 9px;
}

.l-header__nav_sp__hamburger:nth-child(2) {
	top: 17px;
}

.l-header__nav_sp__hamburger:nth-child(3) {
	top: 25px;
}

.l-header__nav_sp__hamburger:nth-child(2)::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 24px;
	height: 3px;
	background-color: #777;
	transition: all 0.4s;
}

.l-header__nav_sp__trigger.active .l-header__nav_sp__hamburger:nth-of-type(1) {
	transform: translateY(20px) scale(0);
}

.l-header__nav_sp__trigger.active .l-header__nav_sp__hamburger:nth-of-type(2) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.l-header__nav_sp__trigger.active
	.l-header__nav_sp__hamburger:nth-of-type(2)::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.l-header__nav_sp__trigger.active .l-header__nav_sp__hamburger:nth-of-type(3) {
	transform: translateY(-20px) scale(0);
}

.l-header__nav_sp__item__wrapper {
	z-index: 200;
	display: none;
}

.l-header__nav_sp__item__wrapper {
	background-color: #f3f5f3;
	border: 1px solid #ccc;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 20px;
	right: 59px;
}

.l-header__nav_sp__item {
	border-top: 1px dotted #ccc;
	list-style: none;
}

.l-header__nav_sp__item:first-child {
	border-top: none;
}

.l-header__nav_sp__item__link {
	display: block;
	padding: 10px;
	width: 180px;
}

.l-header__nav_sp__item__link .fa {
	float: right;
}

.l-body__hero {
	min-width: 1200px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.l-body__hero {
		min-width: 100%;
	}
}

.l-body__hero__slider_target {
	margin: 0;
	padding: 0;
}

.l-body__hero__slider__item {
	height: 543px;
	width: 100%;
	background-size: cover;
	background-position: center center;
}

@media screen and (max-width: 768px) {
	.l-body__hero__slider__item {
		height: 250px;
	}
}

.l-body__hero__caption {
}

.l-body__hero__box_shadow {
	height: 1em;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
}

.l-body__hero__caption__right,
.l-body__hero__caption__left {
	z-index: 100;
	height: 250px;
	position: absolute;
	width: 885px;
}

@media screen and (max-width: 768px) {
	.l-body__hero__caption__right,
	.l-body__hero__caption__left {
		height: 160px;
		width: 80%;
	}
}

.l-body__hero__caption__right {
	background-image: url(../images/index/cover_bg_top_right.png);
	right: 0;
	top: 0;
}

@media screen and (max-width: 768px) {
	.l-body__hero__caption__right {
		background-position: left top;
	}
}

.l-body__hero__caption__right__caption {
	position: absolute;
	right: 100px;
	top: 25px;
}

@media screen and (max-width: 768px) {
	.l-body__hero__caption__right__caption {
		right: 10px;
		top: 10px;
		width: 60%;
	}
}

.l-body__hero__caption__left {
	bottom: 0;
	left: 0;
	background-image: url(../images/index/cover_bg_bottom_left.png);
}

@media screen and (max-width: 768px) {
	.l-body__hero__caption__left {
		background-position: right bottom;
	}
}

.l-body__hero__caption__left__item__wrapper {
	bottom: 85px;
	font-size: 0;
	left: 100px;
	margin: 0;
	padding: 0;
	position: absolute;
}

.l-body__hero__caption__left__item {
	display: inline-block;
	margin-right: 10px;
}

.l-body__hero__caption__left__caption {
	bottom: 20px;
	left: 95px;
	position: absolute;
}

@media screen and (max-width: 768px) {
	.l-body__hero__caption__left__caption {
		bottom: 10px;
		left: 10px;
		width: 70%;
	}
}

.l-body__news {
	display: table;
	margin: 0 auto;
	min-width: 1200px;
	width: 1200px;
}

@media screen and (max-width: 768px) {
	.l-body__news {
		min-width: 100%;
		width: 100%;
	}
}

.l-body__news_col {
	display: table-cell;
	vertical-align: middle;
}

.l-body__news__header {
	color: #888;
	font-size: 21px;
	font-weight: normal;
}

.l-body__news_col:nth-child(1) {
	width: 180px;
}

.l-body__news_col:nth-child(2) {
	width: 900px;
}

.l-body__news_col:nth-child(3) {
	width: 120px;
}

@media screen and (max-width: 768px) {
	.l-body__news_col:nth-child(1) {
		width: 20%;
	}

	.l-body__news_col:nth-child(2) {
		width: 80%;
	}

	.l-body__news_col:nth-child(3) {
		display: none;
	}
}

.l-body__news__header {
	margin-right: 20px;
	text-align: right;
}

@media screen and (max-width: 768px) {
	.l-body__news__header {
		margin-left: 10px;
		margin-right: 10px;
		text-align: center;
	}
}

.l-body__news__item__wrapper {
	padding: 2px 0;
	margin: 0;
}

.l-body__news__item {
	border-left: 1px dotted #aaa;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 899px;
	line-height: 1.6em;
}

.l-body__news__item.l-body__news__item__index {
	border-left: none;
	border-bottom: 1px dotted #888888;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	width: auto;
}

@media screen and (max-width: 768px) {
	.l-body__news__item {
		width: 100px;
	}
}

.l-body__news__item__date {
	margin-left: 20px;
}
.l-body__news__item__cat {
	display: inline-block;
	margin-right: 10px;
	margin-left: 10px;
	padding: 1px 10px;
	color: #fff;
	font-size: 12px;
	background-color: #8f083d;
}

@media screen and (max-width: 768px) {
	.l-body__news__item__date {
		margin-left: 10px;
	}
	.l-body__news__item__cat {
		font-size: 11px;
	}
}

.l-body__news__item__label {
	background-color: #999;
	color: #fff;
	font-size: 14px;
	margin: 0 20px;
	padding: 3px 10px;
}

@media screen and (max-width: 768px) {
	.l-body__news__item__label {
		margin-left: 10px;
		margin-right: 10px;
	}
}

.l-body__news__item__label-01 {
	background-color: #333;
}

.l-body__news__item__label-02 {
	background-color: #ce312d;
}

.l-body__news__item__label-03 {
	background-color: #62951e;
}

.l-body__news__item__label-04 {
	background-color: #509cad;
}

.l-body__news__item__label-05 {
	background-color: #cccc33;
}

.l-body__news__item__label-06 {
	background-color: #9fb1c6;
}

.l-body__news__item__label-07 {
	background-color: #b14273;
}

.l-body__news__permalink {
}

@media screen and (max-width: 768px) {
	.l-body__news__permalink {
		margin-left: 10px;
	}
}

.l-body__news__permalink:hover {
	text-decoration: underline;
}

.l-body__news__link_all {
	font-size: 14px;
	margin-left: 20px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.l-body__news__link_all {
		border-top: 1px solid #ccc;
		display: block;
		margin-left: 0;
		padding: 10px;
		text-align: right;
	}
}

.l-body__news__link_all .fa {
	color: #888888;
}

.l-body__breadcrumb {
	background: #f3f3f3;
}

.l-body__breadcrumb__item_wrapper {
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.l-body__breadcrumb__item_wrapper {
		padding: 10px;
	}
}

.l-body__breadcrumb__item {
	font-size: 13px;
	display: inline-block;
}

.l-body__breadcrumb__item:after {
	font-family: "FontAwesome";
	content: "\f105";
	margin-left: 10px;
	margin-right: 10px;
}

.l-body__breadcrumb__item:last-child {
	font-weight: bold;
}

.l-body__breadcrumb__item:last-child:after {
	content: none;
}

.l-body__breadcrumb__link:hover {
	text-decoration: underline;
}

.l-body__panel {
	min-width: 1200px;
	overflow: hidden;
	zoom: 1;
}

@media screen and (max-width: 768px) {
	.l-body__panel {
		min-width: 100%;
	}
}

.l-body__panel__item__wrapper {
	margin: 0;
	padding: 0;
}

.l-body__panel__item {
	background-size: cover;
	background-position: center top;
	display: block;
	float: left;
	height: 300px;
	margin: 0;
	padding: 0;
	width: 50%;
}

@media screen and (max-width: 768px) {
	.l-body__panel__item {
		float: none;
		height: 260px;
		width: 100%;
	}
}

.l-body__panel__link {
	display: block;
	color: #fff;
	height: 235px;
	padding-top: 125px;
	text-align: center;
	width: 100%;
}

#english .l-body__panel__link {
	padding-top: 120px;
}

@media screen and (max-width: 768px) {
	.l-body__panel__link {
		height: 195px;
	}
}

.l-body__panel__item:nth-child(1) .l-body__panel__link {
	background-color: rgba(38, 92, 255, 0.5);
}

.l-body__panel__item:nth-child(2) .l-body__panel__link {
	background-color: rgba(231, 70, 111, 0.5);
}

.l-body__panel__item:nth-child(3) .l-body__panel__link {
	background-color: rgba(255, 128, 0, 0.5);
}

.l-body__panel__item:nth-child(4) .l-body__panel__link {
	background-color: rgba(35, 140, 0, 0.5);
}

.l-body__panel__item:nth-child(1) .l-body__panel__link:hover {
	background-color: rgba(38, 92, 255, 0.7);
}

.l-body__panel__item:nth-child(2) .l-body__panel__link:hover {
	background-color: rgba(231, 70, 111, 0.7);
}

.l-body__panel__item:nth-child(3) .l-body__panel__link:hover {
	background-color: rgba(255, 128, 0, 0.7);
}

.l-body__panel__item:nth-child(4) .l-body__panel__link:hover {
	background-color: rgba(35, 140, 0, 0.7);
}

.l-body__panel__header {
	font-size: 30px;
	font-weight: normal;
	margin: 0;
}

.l-body__panel__subtitle {
	font-size: 18px;
	margin: 0;
}

.l-body__content__inner {
	background-color: #fff;
	/*width: 1180px;*/
	width: 1000px;
	margin: 0 auto;
	min-height: 270px;
	padding: 1em 20px;
}

@media screen and (max-width: 768px) {
	.l-body__content__inner {
		width: auto;
	}
}

.l-body__pager {
	overflow: hidden;
}

.l-body__pager__inner {
	width: 1180px;
	margin: 0px auto;
	padding: 1em 10px;
}

@media screen and (max-width: 768px) {
	.l-body__pager__inner {
		width: auto;
	}
}

.l-body__pager__item__wrapper {
	padding: 0;
	text-align: center;
}

.l-body__pager__item {
	display: inline-block;
	margin: 0 1px;
}

.l-body__pager__item__is-current,
.l-body__pager__item__link {
	display: block;
	font-size: 16px;
	padding: 0.6em 1em;
}

.l-body__pager__item__link {
	background: #eee;
	color: #000;
	text-decoration: none;
}

.l-body__pager__item__link:hover {
	background: #333;
	color: #fff;
}

.l-body__menu__wrapper {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	height: 500px;
	margin-bottom: -65px;
}

@media screen and (max-width: 768px) {
	.l-body__menu__wrapper {
		height: auto;
		margin-bottom: 0;
	}
}

.l-body__menu__wrapper.l-body__menu__wrapper__events,
.l-body__menu__wrapper.l-body__menu__wrapper__events,
.l-body__menu__wrapper.l-body__menu__wrapper__sitepolicy {
	margin-bottom: -300px;
}

@media screen and (max-width: 768px) {
	.l-body__menu__wrapper.l-body__menu__wrapper__events,
	.l-body__menu__wrapper.l-body__menu__wrapper__common {
		height: auto;
		margin-bottom: 0;
	}
}

.l-body__menu {
	background-color: #fff;
	height: 295px;
	margin: 0 auto;
	padding: 0 10px 1em;
	width: 1020px;
}

@media screen and (max-width: 768px) {
	.l-body__menu {
		height: auto;
		padding-top: 10px;
		width: auto;
	}
}

.l-body__menu__item__wrapper {
	margin: 0;
	overflow: hidden;
	padding: 0;
	padding-top: 55px;
	zoom: 1;
}

@media screen and (max-width: 768px) {
	.l-body__menu__item__wrapper {
		margin: -10px -10px 0;
		padding-top: 0;
		zoom: 1;
	}
}

.l-body__menu__item {
	width: 170px;
	float: left;
	border: 1px solid #eb0016;
	list-style-type: none;
	margin-left: 30px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.l-body__menu__item {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 20%;
		border-left: 0;
		margin-left: 0;
	}

	.l-body__menu__item:last-child {
		border-right: 0;
	}
}

.l-body__menu__item__link:hover,
.l-body__menu__item__is-active .l-body__menu__item__link {
	background: #fce3e7 none repeat scroll 0% 0%;
	color: #373737;
}

.l-body__menu__item__link {
	display: block;
	padding: 55px 0 35px;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width: 768px) {
	.l-body__menu__item__link {
		padding: 15px 5px 10px;
	}
}

.l-body__menu__item__figure {
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 768px) {
	.l-body__menu__item__figure img {
		width: 100%;
	}
}

.l-body__menu__item__number {
	display: block;
	position: absolute;
	top: -30px;
	left: -20px;
}

@media screen and (max-width: 768px) {
	.l-body__menu__item__number {
		display: none;
	}
}

.l-body__menu__select {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	border: 1px solid #ccc;
}

.l-body__menu2__wrapper {
}

.l-body__menu2 {
	width: 1180px;
	margin: 0 auto;
	padding: 1em 10px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.l-body__menu2 {
		width: auto;
	}
}

.l-body__menu2__item__wrapper {
	overflow: hidden;
	zoom: 1;
}

.l-body__menu2__item {
	width: 205px;
	float: left;
	margin: 0px 20px 0px 0px;
	border: 1px solid #e1e1e1;
	list-style-type: none;
}

.l-body__menu2__item__link:hover,
.l-body__menu2__item__is-active .l-body__menu2__item__link {
	background: #fce3e7 none repeat scroll 0% 0%;
	color: #373737;
}

.l-body__menu2__item__link {
	display: block;
	padding: 22px 15px 30px;
	text-align: center;
	line-height: 1.4;
}

.l-body__menu2__item__name__en {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: -1px;
}

.l-body__menu2__item__name__ja {
	line-height: 1.8;
	margin: 0;
}

.l-body__menu2__select {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	border: 1px solid #ccc;
}

.l-body__year__wrapper {
}

.l-body__year__inner {
	width: 1000px;
	margin: 0px auto;
	padding: 1em;
}

@media screen and (max-width: 768px) {
	.l-body__year__inner {
		width: auto;
		padding: 1em;
	}
}

.l-body__year__item__wrapper {
	display: table;
	padding: 0;
	width: 100%;
}

.l-body__year__item {
	display: table-cell;
	border-right: 1px solid #ffffff;
	list-style-type: none;
}

.l-body__year__item__link {
	display: block;
	padding: 0.5em 0;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	background-color: #666;
}

.l-body__year__item__link:hover {
	background-color: #fce3e7;
	color: #373737;
}

.l-body__error__title {
	font-size: 20px;
	font-weight: bold;
}

.l_body__error__img {
	max-width: 100%;
}

.l-body__events__description {
	margin-bottom: 50px;
}

.l-body__events__item__wrapper {
	padding: 0;
	margin: 0;
	margin-top: 20px;
}

.l-body__events__item {
	border-bottom: 1px dotted #888888;
	line-height: 1.6em;
	margin-bottom: 0.5em;
	overflow: hidden;
	padding-bottom: 0.5em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.l-body__events__item {
	}
}

.l-body__events__item__date {
	display: inline-block;
	margin-left: 20px;
	width: 120px;
}

@media screen and (max-width: 768px) {
	.l-body__events__item__date {
		display: inline;
		margin-right: 1em;
	}
}

@media screen and (max-width: 768px) {
	.l-body__events__permalink {
	}
}

.l-body__events__permalink:hover {
	text-decoration: underline;
}

.l-footer {
	min-width: 1200px;
}

@media screen and (max-width: 768px) {
	.l-footer {
		min-width: 100%;
	}
}

.l-footer__nav__item_wrapper {
	font-size: 0;
	margin: 0;
	padding: 30px 0;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.l-footer__nav__item_wrapper {
		text-align: left;
	}
}

.l-footer__nav__item {
	display: inline-block;
	font-size: 13px;
	padding-right: 20px;
}

@media screen and (max-width: 768px) {
	.l-footer__nav__item {
		font-size: 16px;
		margin-bottom: 1em;
		width: 50%;
		padding-right: 0px;
	}
}

.l-footer__nav__item__fa {
	background-color: #e5002c;
	font-size: 9px;
	padding: 1px 2px 0;
	margin-right: 2px;
}

@media screen and (max-width: 768px) {
	.l-footer__nav__item__fa {
		font-size: 13px;
		padding: 1px 3px 0;
		margin-left: 20%;
	}
}

.l-footer__nav__item_link {
}

.l-footer__nav__item_link:hover {
	text-decoration: underline;
}

.l-footer__banner {
	background: #f3f3f3;
}

.l-footer__banner__fa {
	background: #888888;
	display: block;
	float: right;
	height: 45px;
	margin: 1em;
	text-align: center;
	width: 45px;
}

.l-footer__banner__fa .fa {
	margin-top: -5px;
}

.l-footer__banner__item__wrapper {
	font-size: 0;
	padding: 35px 0;
	text-align: center;
}

.l-footer__banner__item {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.l-footer__banner__item {
		margin-bottom: 10px;
	}
}

.l-footer__copyright {
	font-size: 11px;
	text-align: center;
}

/*
 *
 * Helper
 *
 */

.box-shadow {
	-webkit-box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1);
}

.box-inner_shadow {
	-webkit-box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1) inset;
	-moz-box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1) inset;
	box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1) inset;
}

.transition {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: 0.15s;
	-o-transition-duration: 0.15s;
	transition-duration: 0.15s;
}

.only-pc {
}

.only-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.only-pc {
		display: none !important;
	}

	.only-sp {
		display: inherit !important;
	}
}

.l-body__title {
	background-image: url(../images/corner/corner_img_about.png);
	background-position: top;
	background-repeat: repeat-x;
	color: #eb0016;
	height: 150px;
	padding-top: 42px;
}

.l-body__title__inner {
	background-image: url(../images/corner/bg_body__title__inner.png),
		url(../images/corner/bg_body__title__inner.png);
	background-position: left bottom, right top;
	background-repeat: no-repeat, no-repeat;
	width: 300px;
	margin: 0 auto;
	text-align: center;
}

.l-body__title__inner__curriculum {
	background-image: url(../images/corner/bg_body__title__inner.png),
		url(../images/corner/bg_body__title__inner.png);
	background-position: left bottom, right top;
	background-repeat: no-repeat, no-repeat;
	width: 420px;
	margin: 0 auto;
	text-align: center;
}

.l-body__title__inner__career_pass {
	background-image: url(../images/corner/bg_body__title__inner.png),
		url(../images/corner/bg_body__title__inner.png);
	background-position: left bottom, right top;
	background-repeat: no-repeat, no-repeat;
	width: 400px;
	margin: 0 auto;
	text-align: center;
}

.l-body__title__inner__enrollment {
	background-image: url(../images/corner/bg_body__title__inner.png),
		url(../images/corner/bg_body__title__inner.png);
	background-position: left bottom, right top;
	background-repeat: no-repeat, no-repeat;
	width: 410px;
	margin: 0 auto;
	text-align: center;
}

.l-body__about__header {
	font-size: 42px;
	font-weight: normal;
	line-height: 42px;
	margin: 0;
}

#l-body__sitepolicy__header {
	letter-spacing: -3px;
}

.l-body__about__subtitle {
	font-size: 18px;
	margin-top: 0;
}

/*
 *
 * Contents Designer WYSIWYG
 *
 */
.contents_designer-wrapper table {
	border-collapse: collapse;
	width: 100%;
	border: #bbb 1px solid;
}

.contents_designer-wrapper td {
	text-align: left;
	padding: 10px;
	border: #bbb 1px solid;
}

.contents_designer-contents .float-box tr:hover {
	background: #fce3e7;
	color: #666;
}

.contents_designer-wrapper .text-area a {
	border-width: 0px;
	border-bottom-width: 2px;
	border-style: dotted;
	border-color: #ce0000;
}

.contents_designer-contents .float-box a:hover {
	background: #fce3e7;
}

.contents_designer-contents .float-box .download-area a:hover {
	background: url(../images/common/downloadi_img_hover.png);
}

.contents_designer-contents .float-box ul,
ol {
	list-style-image: url(../images/corner/marker_list_circle_img.png);
	list-style-position: outside;
	margin: 10px 0px 5px 10px;
}

.contents_designer-contents .float-box ul li {
	padding-left: 5px;
}

.contents_designer-contents .float-box p {
	padding: 0 10px;
}

@media screen and (max-width: 768px) {
	.contents_designer-contents .float-box table {
		border-top: none;
		border-left: none;
	}

	.contents_designer-contents .float-box table td,
	th {
		display: block;
		border-right: none;
		border-bottom: none;
	}
}
