@charset "utf-8";
/* ===========================================================

	Title:　common.css
	Created:　2017-8-16

=========================================================== */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@300;400;500&family=Noto+Serif+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
/*

	body
	header
	nav
	container
	inner
	contens
	topicpath
	main
	asidesor
	btPageTop
	footer


=========================================================== */
/*

	body

=========================================================== */
html {
}
body {
	font-family: "M PLUS 1", "游ゴシック", "YuGothic", "メイリオ", Meiryo, sans-serif;
	/*font-family: "游明朝","YuMincho", serif;*/
	font-weight: 400;
	color: #292929;
	text-align: center;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
html * {
	max-height: 999999px;
} /* Chrome font size adjust  */
.pc  {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 1200px) {
	.pc  {
		display: none;
	}
	.sp {
		display: block;
	}
}
/* ===========================================================

	header

=========================================================== */
header {
	width: calc(100% - 32px);
	height: 80px;
    margin: 16px;
    position: fixed;
    z-index: 99999;
}
/* header
----------------------------------------------------------- */
.header {
	background-color: #fff;
    display: flex;
    align-items: center;
    position: relative;
	height: 96px;
	margin: 0 auto;
    justify-content: space-between;
    padding: 0 48px;
    border-radius: 6px;
	box-shadow: 4px 4px 12px 0px rgba(61, 61, 61, 0.16);
}

@media screen and (max-width: 1200px) {
	.header {
		width: 100%;
		height: 64px;
	    padding: 0 16px;
		text-align: center;
	}
}
.header-inner {
	display: flex;
	align-items: center;
	height: 80px;
}
/* 
----------------------------------------------------------- */
.header h1 {
	float: left;
	margin: -8px 0 0;
	padding: 0;
	font-size: 11px;
}
.is-en .header h1 {
	margin: 0;
}
.is-en .header h1 img {
	width: 473px;
	height: auto;
}
@media screen and (max-width: 1200px) {
	header {
		width: calc(100% - 16px);
		height: 64px;
	    margin: 8px;
	}
	.header h1 {
		text-align: center;
	}
	.header h1 img {
		max-width: 225px;
		width: 100%;
		height: 18px;
	}
	.is-en .header h1 img {
		max-width: 320px;
		width: 100%;
	}
}

/* header__language
----------------------------------------------------------- */
.header .header__language {
	float: right;
	margin: 0;
	margin-left: 12px;
}
.header .header__language a {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	background-color: #ff1100;
	color: #fff;
	transition: .2s ease-in-out;
	font-weight: bold;
	border-radius: 50%;
	text-decoration: none;
}
.header .header__language a:hover {
	text-decoration: none;
	opacity: 0.7;
}
@media screen and (max-width: 1200px) {
	.header .header__language {
		z-index: 100;
		z-index: 999999;
		padding: 0;
		margin-right: 24px;
	}
	.header .header__language a {
		width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 14px;
		font-weight: 500;
	}
}

/* header__search
----------------------------------------------------------- */
.header .header__search {
	float: right;
	/*padding: 22px 15px 0 0;*/
	padding: 22px 0 0 0;
}
.header__search form {
	display: block;
	height: 25px;
	line-height: 25px;
	width: 200px;
	background-color: #eeeeee;
}
.header__search form input[type="text"] {
	font-size: 12px;
	font-size: 1.2rem;
	height: 25px;
	line-height: 25px;
	margin: 0;
	padding: 0 10px;
	width: 150px;
	display: block;
	float: left;
	
	background: none;
	border: none;
}
.header__search form input:focus {
	outline: none !important;
	background: none;
}
.header__search form input[type="submit"] {
	margin: 0;
	padding: 0;
	height: 25px;
	line-height: 25px;
	width: 30px;
	float: right;
	border: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url(/assets/img/common/ic/ic_search.png);
	background-size: 12px 11px;
	/*Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

@media screen and (max-width: 1200px) {
	.header .header__search {
		position: fixed;
		top: 5px;
		right: inherit;
		left: 5px;
		z-index: 999999;
		padding: 0;
	}
	.header__search form {
		width: 170px;
		height: 34px;
		line-height: 34px;
	}
	.header__search form input[type="text"] {
		width: 120px;
	}
	.header__search form input[type="submit"] {
		height: 34px;
		line-height: 34px;
	}
}

/* header__print
----------------------------------------------------------- */
.header .header__print {
	float: right;
	margin: 0;
	padding: 22px 15px 0 0;
	font-size: 12px;
	font-size: 1.2rem;
}
.header .header__print a {
	display: block;
	height: 25px;
	padding: 0 15px;
	line-height: 25px;
	text-align: center;
	background-color: #ff1100;
	color: #fff;
	transition: .2s ease-in-out;
	font-weight: bold;
}
.header .header__print a:hover {
	text-decoration: none;
	opacity: 0.7;
}

@media screen and (max-width: 1200px) {
	.header .header__print {
		display: none;
	}
}

/* fontSize
----------------------------------------------------------- */
.header dl.font-size {
	float: right;
	padding: 22px 10px 0 0;
}
@media screen and (max-width: 1200px) {
	.header dl.font-size {
		display: none;
	}
}
.header dl.font-size dt {
	height: 25px;
	line-height: 25px;
	font-size: 12px;
	float: left;
	padding: 0 10px 0 0;
}
.header dl.font-size dd {
	float: left;
	height: 25px;
	line-height: 25px;
}
.header dl.font-size dd a {
	display: block;
	text-align: center;
	width: 25px;
	height: 25px;
	line-height: 25px;
	font-size: 11px;
	background-color: #adadad;
	color: #fff;
	text-decoration: none;
}
.header dl.font-size dd a:hover {
	opacity: 0.7;
	text-decoration: none;
}
.header dl.font-size dd.font-size__small {
}
.header dl.font-size dd.font-size__large {
}

/* header__link
----------------------------------------------------------- */
.header ul.header__link {
	float: right;
	padding: 22px 30px 0 0;
	margin: 0;
	font-size: 11px;
	font-size: 1.1rem;
}

@media screen and (max-width: 1200px) {
	.header ul.header__link {
		display: none;
	}
}
ul.header__link li {
	float: left;
	margin: 0 0 0 20px;
	padding: 0;
}
ul.header__link li a {
	font-size: 12px;
	
	position: relative;
	padding: 0 0 0 8px;
	display: block;
	height: 25px;
	line-height: 25px;
	text-decoration: none;
}
ul.header__link li a:hover {
	color: #ff1100;
	text-decoration: none;
}
ul.header__link li a:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
	margin: -4px 0 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 4px;
	border-color: transparent transparent transparent #ff1100;
}

/* ===========================================================

	global-navigation

=========================================================== */
nav {
}
.global-navigation {
	background-color: #fff;
	text-align: center;
}
.global-navigation ul.gn {
	display: flex;
	position: relative;
	margin: 0 auto;
}
.global-navigation ul.gn > li {
	position: relative;
}
.global-navigation ul.gn > a {
	display: none;
}
.global-navigation ul.gn a:hover {
	text-decoration: none;
}
.global-navigation ul.gn li a.primary-bt {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 80px;
	font-size: 16px;
	font-weight: 400;
	color: #292929;
	transition: .3s ease-in-out;
	font-family: 'M PLUS 1p';
	padding: 0 12px;
	text-decoration: none;
}
#about .global-navigation ul.gn li#gn-about a.primary-bt,
#features .global-navigation ul.gn li#gn-features a.primary-bt,
#portfolio .global-navigation ul.gn li#gn-portfolio a.primary-bt,
#finance .global-navigation ul.gn li#gn-finance a.primary-bt,
#ir .global-navigation ul.gn li#gn-ir a.primary-bt,
#individual.movies .global-navigation ul.gn li#gn-movies a.primary-bt,
#individual.individual .global-navigation ul.gn li#gn-individual a.primary-bt {
	color: #E30C1F;
}
.global-navigation ul.gn li a.primary-bt:hover,
.global-navigation ul.gn li a.gn-over {
	color: #292929;
}

/* secondary
----------------------------------------------------------- */
.global-navigation ul.gn .secondary {
	display: none;
	position: absolute;
	top: 80px;
	left: 50%;
	z-index: 999900;
	width: max-content;
	text-align: left;
	border-top: none;
    border-radius: 16px;
	transform: translateY(0) translateX(-50%);
	margin-bottom: 0;
}
.global-navigation ul.gn .secondary ul {
	margin-bottom: 0;
	box-shadow: 4px 4px 12px 0px rgba(61, 61, 61, 0.16);
}
.global-navigation ul.gn>li:hover:before {
	position: absolute;
	top: 60px;
	left: 50%;
	content: " ";
	display: block;
	width: 0;
	height: 0;
	margin: 0 0 0 -3px;
	border-style: solid;
	border-width: 8px 6px 0 6px;
	border-color: #ff1100 transparent transparent transparent;
}
.global-navigation ul.gn .secondary ul {
	margin-top: 16px;
	background-color: #fff;
	border-radius: 16px;
	padding: 16px;
}
.global-navigation ul.gn .secondary li {
	margin: 0;
}
.global-navigation ul.gn .secondary li a {
	display: block;
	padding: 16px 40px 16px 16px;
	font-family: 'M PLUS 1p';
	transition: .2s ease-in-out;
	position: relative;
	font-size: 16px;
}
.global-navigation ul.gn .secondary li a:before,
.global-navigation ul.gn .secondary li a:after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 16px;
	width: 10px;
	height: 1px;
	border-radius: 9999px;
	background-color: #7C7C7C;
	transform-origin: calc(100% - 0px) 50%;
}
.global-navigation ul.gn .secondary li a:before {
  transform: rotate(45deg);
}

.global-navigation ul.gn .secondary li a:after {
  transform: rotate(-45deg);
}
.global-navigation ul.gn .secondary li a:hover:before,
.global-navigation ul.gn .secondary li a:hover:after {
	background-color: #ff1100;
}
.global-navigation ul.gn .secondary li a:link, .global-navigation ul.gn .secondary li a:visited {
	color: #292929;
	text-decoration: none;
}
.global-navigation ul.gn .secondary li a:hover, .global-navigation ul.gn .secondary li a.current {
	color: #ff1100;
	text-decoration: none;
}
.global-navigation ul.gn .secondary li a.blank {
	padding: 10px 10px 10px 25px !important;
	background-image: none !important;
}
.global-navigation ul.gn .secondary li a.blank:after {
	content: " ";
	width: 9px;
	height: 9px;
	display: inline-block;
	background: url(/assets/img/common/ic/ic_blank_a.png) 50% 50% no-repeat;
	background-size: 9px auto;
	margin-left: 5px;
}
.global-navigation ul.gn .secondary li a:hover.blank:after {
	background: url(/assets/img/common/ic/ic_blank_b.png) 50% 50% no-repeat;
	background-size: 9px auto;
}
/* global-sub-navigation__search
----------------------------------------------------------- */
/* global-sub-navigation__search--open
----------------------------------------------------------- */
.global-sub-navigation__search--open {
	margin: 0;
}
.global-sub-navigation__search--open span {
    position: relative;
    display: block;
	width: 24px;
	height: 24px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(/assets/img/common/ic/icon_search_b.png);
    background-size: 24px auto;
    cursor: pointer;
    /*　Scott Kellum Method */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 1;
    margin: 0 0 0 24px;
}
.global-sub-navigation__search__open:hover {
    cursor: pointer;
    opacity: 0.6;
}
@media screen and (max-width: 1200px) {
    .global-sub-navigation__search--open {
        display: none;
    }
}

/* global-sub-navigation__search__form
----------------------------------------------------------- */
.global-sub-navigation__search__form form {
    display: block;
    width : 100%;
    padding-left: 15px;
    background-color: #fff;
}
.global-sub-navigation__search__form form input[type="text"] {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    width : calc(100% - 60px);
    display: block;
    float: left;
    color: #333;
    background: none;
    border: none;
}
.global-sub-navigation__search__form form input:focus {
    outline: none !important;
    background: none;
}
.global-sub-navigation__search__form form input[type="submit"] {
    margin: 0;
    padding: 0;
    width: 60px;
    float: right;
    border: none;
    background-color: #EEE;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(/assets/img/common/ic/icon_search_b.png);
    background-size: 16px auto;
    /*Scott Kellum Method */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
@media screen and (min-width: 1201px) {
    .global-sub-navigation__search__form {
        display: none;
        position: fixed;
        top: 16px;
        right: 16px;
        width: 600px;
        background-color: #FFF1F2;
        z-index: 999998;
        text-align: center;
        padding: 30px;
    }
    .global-sub-navigation__search__form form {
        height: 36px;
        line-height: 36px;
    }
    .global-sub-navigation__search__form form input[type="text"] {
        height: 36px;
        line-height: 36px;
    }
    .global-sub-navigation__search__form form input[type="submit"] {
        height: 36px;
        line-height: 36px;
    }
}
@media screen and (max-width: 1200px) {
    .global-sub-navigation__search__form {
        padding: 10px 10px 0 20px;
    }
    .global-sub-navigation__search__form form {
        height: 30px;
        line-height: 30px;
        display: none;
    }
    .global-sub-navigation__search__form form input[type="text"] {
        height: 30px;
        line-height: 30px;
    }
    .global-sub-navigation__search__form form input[type="submit"] {
        height: 30px;
        line-height: 30px;
    }
}
@media screen and (min-width:1201px) and ( max-width:1600px) {
	.global-navigation ul.gn li a.primary-bt {
	    font-size: 15px;
	    word-break: auto-phrase;
	}
	.header h1 img {
		width: 225px;
		height: auto;
	}
}
/* tertiary
----------------------------------------------------------- */

/* ===========================================================

	slicknav_nav

=========================================================== */
.slicknav_menu {
	display: none;
}

@media screen and (max-width: 1200px) {
	.global-navigation {
		position: inherit;
		top: inherit;
		left: inherit;
		background: none;
		width: 100%;
		height: inherit;
		border: none;
	}
	.gn {
		display: none !important;
	}
	.slicknav_menu {
        font-size: 16px;
        display: block;
        padding: 0;
        position: fixed;
        top: 29px;
        z-index: 99999;
        right: 24px;
        width: 32px;
        height: 21px;
    }
	.slicknav_menu * {
		box-sizing: border-box;
		text-decoration: none !important;
	}
	.slicknav_menu * {
		box-sizing: border-box;
	}
	.slicknav_menu_inner {
		height: 100%;
		position: relative;
		overflow: scroll;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.slicknav_menu:before {
		content: " ";
		display: table;
	}
	.slicknav_menu:after {
		content: " ";
		display: table;
		clear: both;
	}
	.slicknav_menu .slicknav_icon-bar {
		background-color: #000;
	}
	/* ハンバーガーメニュー */
	.slicknav_btn {
		position: relative;
		text-decoration: none;
		display: block;
		vertical-align: middle;
		width: 32px;
		height: 21px;
		cursor: pointer;
	}
	.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
		margin-top: 6px;
	}
	.slicknav_menu .slicknav_menutxt {
		display: block;
		font-size: 10px;
		white-space: nowrap;
		color: #000;
		position: absolute;
		left: 0;
		bottom: 2px;
		width: 32px;
		text-align: center;
	}
	.slicknav_menu .slicknav_icon {
		position: absolute;
		display: block;
		width: 32px;
		height: 21px;
		top: 0;
	}
	.slicknav_menu .slicknav_no-text {
		margin: 0;
	}
	.slicknav_menu .slicknav_icon-bar {
		display: block;
		width: 32px;
		height: 3px;
		transition: .3s ease-in-out;
	}
	/* close-btn */
	.slicknav_open {
	}
	.slicknav_menu .slicknav_open .slicknav_icon-bar {
	}
	.slicknav_menu .slicknav_open .slicknav_icon-bar:first-child {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: 10px;
	}
	.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-of-type(2) {
		opacity: 0
	}
	.slicknav_menu .slicknav_open .slicknav_icon-bar:last-child {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin-top: -12px;
	}
	/* menu */
	.slicknav_nav {
		clear: both;
		text-align: left;
		border-radius: 16px;
		background: #FFF;
		box-shadow: 0px 4px 12px 0px rgba(61, 61, 61, 0.16);
		color: #000;
		font-size: 16px;
		border-top: none;
		/*navi scroll*/
		overflow-y: scroll;
		width: calc(100% - 16px);
		height: 85%;
		position: fixed;
		top: 80px;
		left: 8px;
		display: block;
		margin: 0;
		padding: 32px 16px;
	}
	.slicknav_nav>li {
		display: block;
		margin: 0;
		padding-top: 32px;
		clear: both;
	}
	.slicknav_nav a.primary-bt {
		position: relative;
		display: block !important;
		font-weight: 400;
		color: #292929;
	}
	.slicknav_nav a.primary-bt:after {
		content: '';
	    width: 12px;
	    height: 12px;
	    border: 0;
	    border-bottom: solid 2px #dcdcdc;
	    border-right: solid 2px #dcdcdc;
	    transform: rotate(-45deg);
	    position: absolute;
	    right: 0;
	    top: 0;
	    bottom: 0;
	    margin: auto;
	    pointer-events: none;
	}
	.slicknav_nav a.primary-bt br {
		display: none;
	}
	.slicknav_nav a.primary-bt:hover {
		color: #E00312;
		text-decoration: none !important;
	}
	.slicknav_nav a.primary-bt:hover:after {
		border-color: #E00312;
	}
	.slicknav_nav a.primary-bt span {
		color: #fff;
	}
	.slicknav_nav ul.secondary {
		display: block;
		overflow: hidden;
		width: 100% !important;
		margin: 32px 0 0 !important;
		padding: 0;
		background-color: #fff;
	}
	.slicknav_nav ul li + li {
	}
	.slicknav_nav ul li a {
		display: block;
		padding: 10px;
		text-decoration: none;
		color: #292929;
		line-height: 18px;
		font-size: 12px !important;
	}
	.slicknav_nav ul li a.blank {
		padding: 10px !important;
		background-position: 97% 50% !important;
	}
	/* tertiary */
	.slicknav_nav ul li ul {
		padding-left: 20px;
		margin: 0;
	}
	.slicknav_nav ul li ul a {
		padding-left: 0;
	}
	/* slicknav option */
	
	.slicknav_nav .slicknav_arrow {
	}
	.slicknav_nav .slicknav_item {
		position: relative;
		cursor: pointer;
	}
	.slicknav_nav .slicknav_item .slicknav_arrow i {
		position: absolute;
		right: 10px;
		top: 50%;
		width: 20px;
		height: 20px;
		line-height: 17px;
		margin: -10px 0 0;
		text-align: center;
		color: #fff;
		border: solid 1px #fff;
		font-size: 15px;
	}
	.slicknav_nav .slicknav_item .slicknav_arrow i.icon-plus:before {
		content: "+" !important;
	}
	.slicknav_nav .slicknav_item .slicknav_arrow i.icon-minus:before {
		content: "-" !important;
	}
	.slicknav_nav .slicknav_item a {
		display: inline;
		padding: 0;
		margin: 0;
		text-decoration: none !important;
	}
	.slicknav_nav .slicknav_row {
		display: block;
	}
	.slicknav_nav .slicknav_row:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		background: none;
		color: inherit;
		text-decoration: none;
	}
	.slicknav_nav .global-sub-navigation__search__form {
		padding: 0;
		background-color: #fff;
        padding-bottom: 16px;
		border-bottom: 1px solid #DCDCDC;
	}
	.slicknav_nav .global-sub-navigation__search__form form {
		display: block;
	}
    .slicknav_nav .global-sub-navigation__search__form form input[type="submit"] {
        height: auto;
        line-height: auto;
        background-color: #fff;
        background-size: contain;
        width: auto;
    }
}
/* ===========================================================

	container

=========================================================== */
.container {
	width: 100%;
	margin: 0 auto;
	text-align: left;
	/*background-color: #FFFAFA;*/
	padding-bottom: 96px;
}
@media screen and (max-width: 1200px) {
	.container {
		width: 100%;
		padding: 0;
	}
}
/* ===========================================================

	inner

=========================================================== */
.inner {
	width: 1312px;
	margin: 0 auto;
	text-align: left;
}
@media screen and (max-width: 1200px) {
	.inner {
		width: 100%;
	}
}
/* ===========================================================

	title

=========================================================== */
.title {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	height: 320px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
    background-size: cover;
	letter-spacing:0.04em;
	/*background-image: url(/assets/img/common/title/title_about.png);*/
}
/*#about .title {background-image: url(/assets/img/common/title/title_about.png);}*/
/*#features .title {background-image: url(/assets/img/common/title/title_features.jpg);}*/
/*#portfolio .title {background-image: url(/assets/img/common/title/title_portfolio.jpg);}*/
/*#finance .title {background-image: url(/assets/img/common/title/title_finance.jpg);}*/
/*#ir .title {background-image: url(/assets/img/common/title/title_ir.jpg);}*/
/*#other .title {background-image: url(/assets/img/common/title/title_other.jpg);}*/
/*#esg .title {background-image: url(/assets/img/common/title/title_esg.jpg);}*/

.title h1 {
	width: 1312px;
	display: flex;
    align-items: start;
	flex-direction: column;
	font-size: 56px;
	margin: 112px auto 0;
	padding: 0;
	font-weight: 700;
	text-align: left;
}
.title h1 span {
    display: inline-block;
    padding: 4px 24px;
    border: 1px solid #E30C1F;
    border-radius: 100px;
    color: #E30C1F;
    font-weight: 500;
    font-size: 14px;
    margin-top: 16px;
}
@media screen and (max-width: 1200px) {
	.title {
		top: inherit;
		left: inherit;
		width: 100%;
		height: auto;
	}
	.title h1 {
	    margin: 104px 16px 40px;
		font-size: 24px;
	}
	.title h1 span {
		font-size: 12px;
	}
}
/* ===========================================================

	topic path

=========================================================== */
.topic-path {
	display: flex;
    justify-content: center;
	background-color: #fff;
	margin: 0 auto;
	border-bottom: 1px solid var(--Gallery-200, #DCDCDC);
}
.topic-path-inner {
	width: 1312px;
	display: flex;
	overflow: hidden;
	margin: 0;
	font-size: 14px;
}
.topic-path-inner li {
	margin: 0;
	padding: 18px 0;
}
.topic-path-inner li:before {
	content: ">";
	padding: 0 12px;
	color: #999 !important;
}
.topic-path-inner li:first-child {
}
.topic-path-inner li:first-child:before {
	content: "";
	padding: 0;
}
.topic-path a:link, .topic-path a:visited {
	text-decoration: none;
	color: #E30C1F;
}
.topic-path a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 1200px) {
	.topic-path {
		padding: 8px 16px;
	}
	.topic-path-inner {
		font-size: 11px;
        flex-wrap: wrap;
	}
	.topic-path li {
		padding: 0;
	}
	.topic-path li:before {
	}
	.topic-path-inner {
		width: 100%;
	}
}

/* ===========================================================

	contens

=========================================================== */
.contents {
	width: 100%;
	max-width: 1312px;
	margin: 0 auto;
    padding-top: 96px;
	text-align: left;
}
.contents .contents-inner {
	/*padding: 96px 64px;*/
	background-color: #fff;
}
.contents-inner:first-child {
	/*margin-top: 96px;*/
}
@media screen and (max-width: 1200px) {
	.contents {
		width: 100%;
		padding: 32px 8px 8px;
	}
	.contents .contents-inner {
		padding: 32px 8px;
	}
	.contents-inner:first-child {
		margin-top: 48px;
	}
}
/* ===========================================================

	main

=========================================================== */
main {
	padding: 0;
}
@media screen and (max-width: 1200px) {
	main {
	}
}
main section, .cont-margin {
}
/* tit
----------------------------------------------------------- */
/*main h2 {*/
/*	position: relative;*/
/*	padding: 96px 0 102px;*/
/*	font-size: 40px;*/
/*	font-weight: 700;*/
/*	text-align: center;*/
/*}*/
/*main h2:after {*/
/*    content: "";*/
/*    display: inline-block;*/
/*    width: 29px;*/
/*    height: 29px;*/
/*    background-image: url('/assets/img/common/ic/h2-arrow.png');*/
/*    background-position: center;*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    bottom: 77px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*}*/
main h2 {
	position: relative;
	padding: 0 0 32px;
	font-size: 48px;
	font-weight: 700;
	text-align: left;
	border-bottom: 2px solid #DCDCDC;
	margin: 96px 0 48px;
}
main h2:after {
    content: "";
    display: inline-block;
    width: 64px;
    height: 2px;
    position: absolute;
    background: var(--Alizarin-Crimson-600, #E30C1F);
    bottom: -2px;
    left: 0%;
}
.contents section:first-child h2{
	/*margin-top: 0;*/
}
.contents h2:first-child {
	margin-top: 0;
}
main h3 { 
	margin: 0 0 48px;
	padding: 16px;
	font-size: 28px;
	font-weight: 500;
	background-color: #FFF1F2;
	border-radius: 8px;
}
main h4 {
	margin: 0 0 48px;
	padding: 0 0 12px 0;
	font-size: 24px;
	font-weight: 500;
	border-bottom: 1px solid #E30C1F;
}
h5 {
	color: var(--Gallery-950, #292929);
	font-family: "M PLUS 1p";
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 1; /* 28px */
	border-left: 2px solid #E30C1F;
	padding-left: 16px;
	margin-bottom: 32px;
}
h6 {
}
@media screen and (max-width: 1200px) {
	main h2 {
		font-size: 22px;
		padding: 0 0 16px;
	}
	main h2:after {
	}
	main h3 { 
		margin: 0 0 24px;
		padding: 8px;
		font-size: 20px;
	}

}
em {
	color: #FF1100;
	font-weight: bold;
}
strong {
	font-weight: bold!important;
}
.txt-ss {
	font-size: 10px;
}
.txt-s {
	font-size: 12px;
}
.txt-l {
	font-size: 20px;
}
.txt-ll {
	font-size: 24px;
}
.txt-lll {
	font-size: 32px;
}
.read {
	color: var(--Thunderbird-700, #E00312);
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 51.2px */
	letter-spacing: 3.2px;
}
.is-en .read {
	line-height: 140%;
}
.emphasis {
	border: solid 1px #E30C1F;
	margin: 0 50px 40px;
	padding: 10px;
	font-size: 24px;
	font-weight: 500;
}
.font-reset {
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace !important;
}
@media screen and (max-width: 1200px) {
	.read {
		font-size: 16px;
	}
}
/* text
----------------------------------------------------------- */
p, ul, ol, dl, .indent-table {
	margin: 0 0 20px;
}
ul li, ol li {
	margin: 0;
}
ol ol {
	padding: 5px 0 0;
}
/* link
----------------------------------------------------------- */
a:link, a:visited {
	text-decoration: underline;
	color: #E30C1F;
	transition: all .3s;
}
a:hover {
	text-decoration: underline;
	color: #292929;
}
.link-reverse a:link, .link-reverse a:visited, a.link-reverse:link, a.link-reverse:visited {
	color: #E30C1F;
	text-decoration: underline;
}
.link-reverse a:hover, a.link-reverse:hover {
	color: #292929;
	text-decoration: underline;
}
/* link-arrow */
.link-a, .link-a a {
	position: relative;
	padding-left: 10px;
}
.link-a:before, .link-a a:before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid;
	border-width: 3.5px 0 3.5px 4px;
	border-color: transparent transparent transparent #FF1100;
}
.link-b, .link-b a {
	position: relative;
	padding-left: 15px;
}
.link-b:before, .link-b a:before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid #FF1100;
	border-right: 1px solid #FF1100;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* blank */
.blank {
	background-image: url(/assets/img/common/ic/ic_blank_a.png) !important;
	background-size: 9px 9px !important;
	background-repeat: no-repeat !important;
	background-position: right 50% !important;
	padding: 0 18px 0 0 !important;
}
/* link-button */
.link-button-a {
	min-width: 256px;
	height: 56px;
	line-height: 56px;
	display: inline-block;
	box-sizing: border-box;
	color: #E30C1F !important;
	background-color: #fff;
	font-size: 16px;
	text-align: center;
	border: solid 1px #E30C1F;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	transition: .3s ease-in-out;
}
.link-button-a span {
	font-weight: 500;
}
.link-button-a:hover {
	background-color: #E30C1F;
	text-decoration: none;
	color: #fff !important;
}
.link-button-a:before {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 18px;
	box-sizing: border-box;
	width: 6px;
	height: 5px;
	border: 2px solid transparent;
	border-left: 6px solid #E30C1F;
}
.link-button-a:after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 18px;
	width: 8px;
	height: 1px;
	border-left: 20px solid #E30C1F;
}
.link-button-a:hover:before {
	border-left: 6px solid #fff;
}
.link-button-a:hover:after {
	border-color: #fff;
}
.link-button-b {
	min-width: 256px;
	height: 56px;
	line-height: 56px;
	display: inline-block;
	box-sizing: border-box;
	color: #fff !important;
	font-size: 16px;
	text-align: center;
	background-image: linear-gradient(45deg, rgba(227, 12, 31, 1), rgba(239, 110, 17, 1));
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}
.link-button-b span {
	font-weight: 500;
}
.link-button-b:hover {
	background: #E30C1F;
	background-image: none;
	text-decoration: none;
	color: #fff !important;
}
.link-button-b:before {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 18px;
	box-sizing: border-box;
	width: 6px;
	height: 5px;
	border: 2px solid transparent;
	border-left: 6px solid #fff;
}
.link-button-b:after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 18px;
	width: 8px;
	height: 1px;
	border-left: 20px solid #fff;
}
.link-button-b:hover:before {
	border-left: 6px solid #fff;
}
.link-button-b:hover:after {
	border-color: #fff;
}
/* table
----------------------------------------------------------- */
table {
	width: 100%;
	margin: 0 0 32px;
	border-top: solid 1px #dcdcdc;
	border-bottom: solid 1px #dcdcdc;
}

@media screen and (max-width: 1200px) {
	table {
		width: 100%;
	}
}
table th {
	width: 25%;
	padding: 24px 16px;
	border-top: solid 1px #dcdcdc;
	background: #FFF1F2;
	font-weight: 500;
	vertical-align: middle;
}
table td {
	border-top: solid 1px #dcdcdc;
	border-right: solid 1px #dcdcdc;
	padding: 24px 16px;
	vertical-align: middle;
}
table.border-less th,
table.border-less td {
	border-right: none !important;
}
table td:last-child {
	border-right: none;
}

table tr:first-child td {
	/*border-top: none !important;*/
}

table tr:first-child th{
	/*border-top: none !important;*/
	/*border-bottom: solid 1px #dcdcdc;*/
}

table img {
	vertical-align: text-bottom;
}
table th.th-2nd, table tr.th-2nd th {
	background: #f5f5f5 !important;
}
table td.td-2nd {
	vertical-align: middle;
	text-align: center;
	background: #f2f6fa;
}
table th.cell-primary {
	border-bottom: none !important;
}
table th.cell-secondary {
	border-top: solid 1px #fff;
	border-left: solid 1px #fff;
	background-color: #A42848;
}
table.td-padding-mini td {
	padding: 5px 10px;
}
table.padding-mini th, table.padding-mini td {
	padding: 5px 10px;
}
table .subtotal th, table .subtotal td, table .subtotal {
	background: #f2f6fa;
  font-weight: bold;
}
table .total th, table .total td, table .total {
	background-color: #F8F8F8;
  vertical-align: middle;
  font-weight: 500;
}
table .total th.cell-none {
}
/* th-top */
table.th-top th {
	width: auto;
	text-align: center;
	border-right: solid 1px #dcdcdc;
  border-bottom: solid 1px #dcdcdc;
}
table.th-top th:last-child {
	border-right: none;
  /*border-left: solid 1px #dcdcdc;*/
}
table.th-top td:last-child {
	border-right: none;
}
/* min-table */
table.min-table {
	width: 600px !important;
	margin-left: 300px !important;
}
/* responsive-table*/
.responsive-table {
}

@media screen and (max-width: 1200px) {
	.responsive-table {
		width: 100%;
	}
	.responsive-table th {
		display: block;
		width: auto !important;
		border: none;
		border-bottom: solid 1px #dcdcdc;
	}
	.responsive-table td {
		display: block;
		width: auto !important;
		border: none;
		border-bottom: solid 1px #dcdcdc;
	}
	.responsive-table tr:last-child td {
		border-bottom: none;
	}
	.responsive-table .nbsp {
		display: none;
	}
	.responsive-table th.cell-width-1, .responsive-table td.cell-width-1 {
		width: auto !important;
	}
	.responsive-table.indent-table {
    width: 100% !important;
  }
	.responsive-table.indent-table th {
    float: left;
    width: auto !important;
  }
}

/* scroll-table, scroll-graph, scroll-area */
.scroll-table {
}
.scroll-graph {
	/*width: 1010px;*/
}
.scroll-area {
}
.scroll-caution {
	display: none;
}

@media screen and (max-width: 1200px) {
	.scroll-wrap {
		overflow: auto;
		position: relative;
	}
	table.scroll-table {
		width: 1000px !important;
	}
	.scroll-table th, .scroll-table td {
		white-space: nowrap;
	}
	.scroll-caution {
		display: block;
		margin: 0 0 5px;
		font-size: 12px;
		color: #999;
		padding: 0 0 0 45px;
		background-image: url(/assets/img/common/ic/ic_scroll_side.png);
		background-size: 37px 14px;
		background-position: 0 50%;
		background-repeat: no-repeat;
	}
}

/* img
----------------------------------------------------------- */
.img img, .img {
	width: 100%;
	height: auto;
}
.responsive-img img, img.responsive-img {
}

@media screen and (max-width: 1200px) {
	.responsive-img img, img.responsive-img {
		width: 100% !important;
		max-width: 720px;
		height: auto;
	}
}
/* column
----------------------------------------------------------- */
.column, .column--3, .column--4, .column--equal-width {
    display: flex;
    margin-left: -1em;
    margin-right: -1em
}
.column__cell {
    padding-left: 1em;
    padding-right: 1em
}
.column--equal-width .column__cell {
    padding-left: 1em;
    padding-right: 1em;
    flex-grow: 1;
    flex-basis: 100%
}
.column--3 .column__cell--3of1 {
    padding-left: 1em;
    padding-right: 1em;
    flex-basis: 33.3333%
}
.column--3 .column__cell--3of2 {
    padding-left: 1em;
    padding-right: 1em;
    flex-basis: 66.6666%
}
.column--3 .column__cell--3of3 {
    padding-left: 1em;
    padding-right: 1em;
    flex-basis: 100%
}
.column--4 .column__cell--4of1 {
    padding-left: 1em;
    padding-right: 1em;
    flex-basis: 25%
}
.column--4 .column__cell--4of2 {
    padding-left: 1em;
    padding-right: 1em;
    flex-basis: 50%
}
.column--4 .column__cell--4of3 {
    padding-left: 1em;
    padding-right: 1em;
    flex-basis: 75%
}
.column--4 .column__cell--4of4 {
    padding-left: 1em;
    padding-right: 1em;
    flex-basis: 100%
}


.column {
	/* Default (Basic form : basicstyle.css)
	margin: 0 -1em;
	*/
	justify-content: space-between;
}
.column__cell {
	/* Default (Basic form : basicstyle.css)
	padding: 0 1.0em; margin: 0;
	*/
}

/* 等幅コラム */
.column--equal-width {
	/* Default (Basic form : basicstyle.css)
	margin: 0 -1em;
	*/
	margin: 0 -32px;
}
.column--equal-width .column__cell {
	/* Default (Basic form : basicstyle.css)
	padding: 0 1.0em; margin: 0;
	*/
	margin: 0 32px 32px;
	padding: 0;
}

/* 3等分コラム */
.column--3 {
	/* Default (Basic form : basicstyle.css)
	margin: 0 -1em;
	*/
	margin: 0 -16px;
}
.column--3 .column__cell--3of1,
.column--3 .column__cell--3of2,
.column--3 .column__cell--3of3 {
	/* Default (Basic form : basicstyle.css)
	padding: 0 1.0em; margin: 0;
	*/
	margin: 0 16px 32px;
	padding: 0;
}

/* 4等分コラム */
.column--4 {
	/* Default (Basic form : basicstyle.css)
	margin: 0 -1em;
	*/
}
.column--4 .column__cell--4of1,
.column--4 .column__cell--4of2,
.column--4 .column__cell--4of3,
.column--4 .column__cell--4of4 {
	/* Default (Basic form : basicstyle.css)
	padding: 0 1.0em; margin: 0;
	*/
}
@media screen and (max-width: 1200px) {
	.column,
	.column--equal-width,
	.column--3 {
		display: flex;
		flex-direction: column;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.column__cell,
	.column--equal-width .column__cell,
	.column--3 .column__cell--3of1 {
		padding-left: 0;
		padding-right: 0;
		text-align: capitalize;
		margin-left: 0;
		margin-right: 0;
	}
	.column--equal-width .order1 {
		order: 1;
	}
	.column--equal-width .order2 {
		order: 2;
	}
	.column--equal-width .order3 {
		order: 3;
	}
}

/* ===========================================================

	aside

=========================================================== */
aside {
	display: none;
}

@media screen and (max-width: 1200px) {
	aside {
		display: none;
	}
}
aside h1 {
	background-color: #ff1100;
	padding: 35px 10px;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 25px;
	text-align: center;
	color: #fff;
	letter-spacing: 0;
	font-weight: bold;
}
aside ul {
}
aside ul li {
	margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
aside ul li a {
	position: relative;
	display: block;
	padding: 13px 10px 13px 23px;
	color: #111 !important;
	background-color: #ffffff;
	border-bottom: solid 1px #cccccc;
}
aside ul li a:hover, aside ul li a.current {
	text-decoration: none;
	color: #FF1100 !important;
}
aside ul li a.current {
	font-weight: bold;
}
aside ul li a:before {
	position: absolute;
	content: "";
	vertical-align: middle;
	margin: -4px 0 0;
	top: 22px;
	left: 5px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #FF1100;
	border-right: 2px solid #FF1100;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* tertiary
----------------------------------------------------------- */

/* ===========================================================

	bt-pagetop

=========================================================== */
body .bt-pagetop {
	position: relative;
	clear: both;
	background: url(/assets/img/common/fot_img.png) 50% 50% no-repeat;
	background-size: contain;
	width: 100%;
	height: 226px;
	z-index: 10;
	margin: 0 0 -92px;
}
.bt-pagetop a {
	display: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background-color: #FF1100;
	opacity: 1;
	transition: .2s ease-in-out;
	/*　Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.bt-pagetop a:before {
	content: " ";
	position: absolute;
	top: 15px;
	left: 50%;
	margin: 0 0 0 -12px;
	width: 24px;
	border-top: solid 1px #fff;
}
.bt-pagetop a:after {
	content: " ";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 0 0 -8px;
	width: 15px;
	height: 15px;
	border-top: solid 1px #fff;
	border-left: solid 1px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.bt-pagetop a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 1200px) {
	body .bt-pagetop {
		background-position: 50% bottom;
		background-size: 1024px auto;
		width: 100%;
		height: 150px;
		margin-bottom: -48px;
		z-index: 10;
	}
	.bt-pagetop a {
		right: 10px;
		bottom: 10px;
	}
}
/* ===========================================================

	footer

=========================================================== */
footer {
	position: relative;
	clear: both;
	overflow: hidden;
	background-color: #fff;
	padding-bottom: 64px;
}
/* footer-banner
----------------------------------------------------------- */
.footer-banner {
	display: flex;
	justify-content: center;
	padding: 150px 64px 96px;
	text-align: left;
	background-image: linear-gradient(45deg, #FFFDEB, #FFF1F2);
}
.footer-banner dl {
	margin: 0 16px;
}
.footer-banner dl dt {
	padding-left: 20px;
	border-left: 3px solid #E30C1F;
	margin-bottom: 32px;
	line-height: 1;
}
@media screen and (max-width: 1200px) {
	.footer-banner {
		flex-direction: column;
        padding: 48px 32px;
        align-items: center;
	}
	.footer-banner dl {
		margin: 32px 0 0;
	}
	.footer-banner dl dt {
		padding-left: 20px;
		border-left: 3px solid #E30C1F;
		margin-bottom: 16px;
		line-height: 1;
	}
	.footer-banner img {
		width: 100%;
	}
}
/* footer-navi
----------------------------------------------------------- */
.footer-navi {
	width: 100%;
	margin: 0 auto;
	padding: 70px 0 40px;
	text-align: left;
	background-color: #eeeeee;
	border-bottom: solid 1px #ff1100;
}
@media screen and (max-width: 1200px) {
	.footer-navi {
		display: none;
	}
}
.footer-navi section {
	float: left;
	display: inline;
	width: 199px;
}
.footer-navi #fot-navi-about {
}
.footer-navi #fot-navi-feature {
}
.footer-navi #fot-navi-esg {
}
.footer-navi #fot-navi-portfolio {
}
.footer-navi #fot-navi-finance {
}
.footer-navi #fot-navi-ir {
    width: 205px;
}
.footer-navi h1 {
	padding: 0;
	margin: 0 20px 5px 0;
	border: none;
	background: none;
	overflow: inherit;
	font-size: 15px;
	font-size: 1.5rem;
}
.footer-navi h1 a {
	color: #ff1100;
}
.footer-navi h1 a:link, .footer-navi h1 a:visited {
	text-decoration: none;
	color: #ff1100 !important;
}
.footer-navi h1 a:hover {
	text-decoration: none;
}
.footer-navi ul {
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.3;
	margin: 0 20px 5px 0;
	padding: 0;
}
.footer-navi ul li {
	margin: 0 0 2px;
	overflow: hidden;
}
.footer-navi ul a {
	padding: 2px 0 2px 8px;
	display: block;
	position: relative;
}
.footer-navi ul a:before {
	position: absolute;
	top: 5px;
	left: 0;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 3px;
	border-color: transparent transparent transparent #aaa;
}
.footer-navi ul a:hover:before {
	border-color: transparent transparent transparent #ff1100;
}
.footer-navi a:link, .footer-navi a:visited {
	text-decoration: none;
	
}
.footer-navi a:hover {
	text-decoration: none;
	color: #FF1100;
}
.footer-navi a.current {
	font-weight: bold;
	color: #FF1100;
}
.footer-navi a.blank {
	padding: 2px 0 2px 8px !important;
	background-image: none !important;
}
.footer-navi a.blank:after {
	content: " ";
	width: 9px;
	height: 9px;
	display: inline-block;
	background: url(/assets/img/common/ic/ic_blank_a.png) 50% 50% no-repeat;
	background-size: 9px auto;
	margin-left: 5px;
}
.footer-navi a:hover.blank:after {
	background: url(/assets/img/common/ic/ic_blank_c.png) 50% 50% no-repeat;
	background-size: 9px auto;
}
/* footer-navi
----------------------------------------------------------- */
.footer-navi-support {
	padding: 64px 0;
}
.footer-navi-support ul {
	margin: 0;
}
.footer-navi-support ul li {
	display: inline-block;
	margin: 0 0 5px;
	padding: 0;
}
.footer-navi-support li a {
	border-left: solid 1px #E30C1F;
	font-size: 15px;
	padding: 0 12px;
	line-height: 1;
}
.footer-navi-support li:first-child a {
	padding: 0 10px 0 0;
	border-left: none;
}
.footer-navi-support li a:link, .footer-navi-support li a:visited {
	color: #292929;
	text-decoration: none;
}
.footer-navi-support li a:hover {
	color: #E30C1F;
}
.footer-navi-support li a.current {
	font-weight: bold;
	color: #FF1100;
}
@media screen and (max-width: 1200px) {
	.footer-navi-support {
		width: auto;
		text-align: left;
		overflow: hidden;
		padding: 40px 16px;
	}
	/* footer-navi logo */
	.footer-navi-support p.logo,
	.footer-navi-support p.logo__mec {
		position: inherit;
		top: inherit;
		right: inherit;
		text-align: center;
		margin: 0 10px 20px;
	}
	.footer-navi-support ul {
		float: none;
		background-color: #fff;
		margin: 0 0 5px;
	}
	.footer-navi-support ul li {
		display: block;
		padding: 0;
	}
	.footer-navi-support ul li a, .footer-navi-support li:first-child a {
		position: relative;
		display: block;
		margin: 0 0 16px;
		padding: 0 24px 0 16px;
		border: none;
		font-size: 14px;
		text-decoration: none;
		border-left: 1px solid #E30C1F;
	}
}
/* footer-navi
----------------------------------------------------------- */
.logo {
	margin-bottom: 12px;
}
.copyright {
	text-align: center;
	margin: 0;
	font-family: 'Poppins';
	font-size: 12px;
	color: #7C7C7C;
}
@media screen and (max-width: 1200px) {
	.copyright {
		float: none !important;
		text-align: center;
		overflow: hidden;
		line-height: 1.6;
		height: auto;
		margin: 0 20px;
		padding: 10px 0 20px;
		font-size: 14px;
	}
	.logo img {
		width: 358px;
	}
}
.fadeUp {
	opacity: 0;
}
.on.fadeUp,
.on .fadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
