@charset "utf-8";

#header-msg.top {
	font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	height: 430px;
	overflow: hidden;
}
#header-msg.top .inner {
	height: 430px;
	overflow: hidden;
	width: 100%;
	position: relative;
}
#header-msg.top .inner > div > img {
	min-height: 430px;
	min-width: 1350px;
	width: 100%;
}
#header-msg.top .inner > div {
	height: 430px;
	position: absolute;
}
#header-msg.top .link_txt h2,
#header-msg.top .link_txt p {
	font-weight: 400;
	text-shadow: 2px 2px 4px #000;
}

/* 1枚目（0～8秒）
==================================*/
#header-msg.top .inner {
	background: url("../../img/img_visual_01.jpg") no-repeat bottom;
	background-size: cover;
	opacity: 0;
	
	-webkit-animation: slide01start .1s;
	animation: slide01start .1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: .6s;
}
#header-msg.top .inner > div:first-of-type {
	z-index: 1;
}
#header-msg.top .inner > div:first-of-type .link_txt {
	color: #fff;
	position: absolute;
	left: 50px;
	bottom: 40px;
	opacity: 0;
	z-index: 1;
	
	-webkit-animation: slide01txt 0.6s;
	animation: slide01txt 0.6s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 4.2s;
}
#header-msg.top .inner > div:first-of-type > img {
	transform: translateY(0);
	
	-webkit-animation: slide01img 4.8s;
	animation: slide01img 4.8s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
#header-msg.top .inner > div:first-of-type .link_txt h2 {
	font-size: 34px;
	margin-bottom: 5px;
}
#header-msg.top .inner > div:first-of-type .link_txt p {
	font-size: 18px;
	margin-bottom: 30px;
}
#header-msg.top .inner > div:first-of-type .link_txt .btn {
	display: inline-block;
	font-size: 18px;
	width: 180px;
	text-align: center;
}
#header-msg.top .inner > div:first-of-type .link_txt .btn a {
	background: #0051A4;
	border-radius: 5px;
	box-shadow: 0 2px 6px #333;
	color: #fff;
	display: block;
	padding: 4px 0;
	transition: .2s;
}
#header-msg.top .inner > div:first-of-type .link_txt .btn a:hover {
	opacity: .7;
}

/* アニメーション */
@keyframes slide01start {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes slide01txt {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes slide01img {
	0% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-200px);
	}
}


/* 2枚目（9～16秒）
==================================*/
#header-msg.top .inner > div:nth-of-type(2) {
	-webkit-animation: slide02 4s;
	animation: slide02 4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 7.8s;
	z-index: 0;
	opacity: 0;
}
#header-msg.top .inner > div:nth-of-type(2) > .product_img {
	position: absolute;
	top: 30px;
	left: 50px;
	opacity: 0;
	transform: translateX(-40px);
	
	-webkit-animation: slide02img 1s;
	animation: slide02img 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 13s;
}
#header-msg.top .inner > div:nth-of-type(2) > .product_img img {
	position: absolute;
}
#header-msg.top .inner > div:nth-of-type(2) .link_txt {
	color: #fff;
	position: absolute;
	right: 30px;
	bottom: 50px;
	opacity: 0;
	
	-webkit-animation: slide02txt 1s;
	animation: slide02txt 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 14s;
}
#header-msg.top .inner > div:nth-of-type(2) .link_txt h2 {
	font-size: 34px;
	margin-bottom: 5px;
}
#header-msg.top .inner > div:nth-of-type(2) .link_txt p {
	font-size: 18px;
	margin-bottom: 30px;
}
#header-msg.top .inner > div:nth-of-type(2) .link_txt .btn {
	display: inline-block;
	font-size: 18px;
	width: 180px;
	text-align: center;
}
#header-msg.top .inner > div:nth-of-type(2) .link_txt .btn a {
	background: #0051A4;
	border-radius: 5px;
	box-shadow: 0 2px 6px #333;
	color: #fff;
	display: block;
	padding: 4px 0;
	transition: .2s;
}
#header-msg.top .inner > div:nth-of-type(2) .link_txt .btn a:hover {
	opacity: .7;
}

/* アニメーション */
@keyframes slide02 {
	0% {
		opacity: 0;
		z-index: 0;
	}
	100% {
		opacity: 1;
		z-index: 2;
	}
}
@keyframes slide02txt {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes slide02img {
	0% {
		opacity: 0;
		transform: translateX(-40px);
		z-index: 0;
	}
	100% {
		opacity: 1;
		transform: translateX(0);
		z-index: 2;
	}
}


/* 3枚目（17～24秒）
==================================*/
#header-msg.top .inner > div:nth-of-type(3) {
	-webkit-animation: slide03 4s;
	animation: slide03 4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 18s;
	z-index: 0;
	opacity: 0;
}
#header-msg.top .inner > div:nth-of-type(3) > img:first-of-type {
	position: absolute;
	opacity: 1;
	
	-webkit-animation: slide03img 1s;
	animation: slide03img 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 24s;
}
#header-msg.top .inner > div:nth-of-type(3) .link_txt {
	color: #fff;
	position: absolute;
	left: 30px;
	bottom: 50px;
	opacity: 0;
	z-index: 1;
	
	-webkit-animation: slide03txt 1s;
	animation: slide03txt 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 25s;
}
#header-msg.top .inner > div:nth-of-type(3) .link_txt h2 {
	font-size: 34px;
	margin-bottom: 5px;
}
#header-msg.top .inner > div:nth-of-type(3) .link_txt p {
	font-size: 18px;
	margin-bottom: 20px;
}
#header-msg.top .inner > div:nth-of-type(3) .link_txt .btn {
	display: inline-block;
	font-size: 18px;
	width: 180px;
	text-align: center;
}
#header-msg.top .inner > div:nth-of-type(3) .link_txt .btn a {
	background: #0051A4;
	border-radius: 5px;
	box-shadow: 0 2px 6px #333;
	color: #fff;
	display: block;
	padding: 4px 0;
	transition: .2s;
}
#header-msg.top .inner > div:nth-of-type(3) .link_txt .btn a:hover {
	opacity: .7;
}

/* アニメーション */
@keyframes slide03 {
	0% {
		opacity: 0;
		z-index: 0;
	}
	100% {
		opacity: 1;
		z-index: 3;
	}
}
@keyframes slide03txt {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes slide03img {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/* 4枚目（25～28秒）
==================================*/
#header-msg.top .inner > div:nth-of-type(4) {
	-webkit-animation: slide04 4s;
	animation: slide04 4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 28s;
	z-index: 0;
	opacity: 0;
}
#header-msg.top .inner > div:nth-of-type(4) > img:first-of-type {
	position: absolute;
	opacity: 1;
	
	-webkit-animation: slide04img 1s;
	animation: slide04img 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 35s;
}

/* アニメーション */
@keyframes slide04 {
	0% {
		opacity: 0;
		z-index: 0;
	}
	100% {
		opacity: 1;
		z-index: 4;
	}
}
@keyframes slide04img {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}



/* スライダー（28～32秒）
==================================*/
#header-msg.top .inner > div:nth-of-type(5) {
	-webkit-animation: slide05 6s;
	animation: slide05 6s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37s;
	height: auto;
	z-index: 0;
	opacity: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-30%);
	text-align: center;
	margin-top: -20px;
}
#header-msg.top .inner > div:nth-of-type(5) span {
	opacity: 0;
}
#header-msg.top .inner > div:nth-of-type(5) span:first-of-type {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.5s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(2) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.55s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(3) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.6s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(4) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.65s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(5) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.7s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(6) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.75s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(7) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.8s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(8) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.85s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(9) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.9s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(10) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 37.95s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(11) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(12) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.05s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(13) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.1s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(14) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.15s;
}
#header-msg.top .inner > div:nth-of-type(5) span:nth-of-type(15) {
	-webkit-animation: slide05_03 0.1s;
	animation: slide05_03 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.2s;
}
#header-msg.top .inner > div:nth-of-type(5) p {
	font-size: 20px;
	font-weight: 600;
}
#header-msg.top .inner > div:nth-of-type(5) h2 {
	color: #1B4FA0;
	font-size: 42px;
	margin-bottom: 50px;
}
#header-msg.top .inner > div:nth-of-type(5) ul {
	display: flex;
}
#header-msg.top .inner > div:nth-of-type(5) li {
	background: #1B4FA0;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	width: 100px;
}
#header-msg.top .inner > div:nth-of-type(5) li + li {
	margin-left: 20px;
}

/* アニメーション */
@keyframes slide05 {
	0% {
		opacity: 0;
		z-index: 0;
		transform: translate(-50%,-30%);
	}
	1% {
		opacity: 0;
		z-index: 5;
		transform: translate(-50%,-30%);
	}
	20% {
		opacity: 1;
		z-index: 5;
		transform: translate(-50%,-30%);
	}
	90% {
		opacity: 1;
		z-index: 5;
		transform: translate(-50%,-30%);
	}
	100% {
		opacity: 1;
		z-index: 5;
		transform: translate(-50%,-30%);
	}
}

/* スライダー（33～秒）
==================================*/
#header-msg.top .inner > div:nth-of-type(6) .bx-pager {
/*	-webkit-animation: slide05_02 0.5s;
	animation: slide05_02 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.5s;*/
	transform: translateY(-60px);
	width: 405px;
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
}
#header-msg.top .inner > div:nth-of-type(6).open .bx-pager {
	width: 330px;
	transition: .5s;
	transform: translateY(0);
	transition-timing-function: ease-in-out;
}
#header-msg.top .inner > div:nth-of-type(6) .bx-pager .bx-pager-item {
	opacity: 0;
	font-size: 0;
	transform: scale(1.2);
}
#header-msg.top .inner > div:nth-of-type(6).open .bx-pager .bx-pager-item {
	transform: scale(1);
	transition: .5s;
	transition-timing-function: ease-in-out;
}
#header-msg.top .inner > div:nth-of-type(6) .bx-pager .bx-pager-item:nth-of-type(1) {
	-webkit-animation: slide05_03 0.3s;
	animation: slide05_03 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38s;
}
#header-msg.top .inner > div:nth-of-type(6) .bx-pager .bx-pager-item:nth-of-type(2) {
	-webkit-animation: slide05_03 0.3s;
	animation: slide05_03 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.3s;
}
#header-msg.top .inner > div:nth-of-type(6) .bx-pager .bx-pager-item:nth-of-type(3) {
	-webkit-animation: slide05_03 0.3s;
	animation: slide05_03 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.6s;
}
#header-msg.top .inner > div:nth-of-type(6) .bx-pager .bx-pager-item:nth-of-type(4) {
	-webkit-animation: slide05_03 0.3s;
	animation: slide05_03 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 38.9s;
}

@keyframes slide05_02 {
	0% {
		opacity: 1;
		z-index: 0;
	}
	100% {
		opacity: 0;
		z-index: 5;
	}
}
@keyframes slide05_03 {
	0% {
		opacity: 0;
		z-index: 0;
	}
	1% {
		opacity: 0;
		z-index: 5;
	}
	100% {
		opacity: 1;
		z-index: 5;
	}
}

#header-msg.top .inner > div:nth-of-type(6) {
	-webkit-animation: slide06 1s;
	animation: slide06 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	animation-delay: 41s;
	border-radius: 5px;
	height: auto;
	z-index: 0;
	opacity: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

/* アニメーション */
@keyframes slide06 {
	0% {
		opacity: 0;
		z-index: 0;
	}
	1% {
		opacity: 0;
		z-index: 6;
	}
	100% {
		opacity: 1;
		z-index: 6;
	}
}

@media only screen and ( max-width:1360px ) {
	#header-msg.top .inner > div:nth-of-type(2) .link_txt {
		right: calc((1400px - 100vw) / 2);
	}
	#header-msg.top .inner > div > img {
		margin-left: calc((100vw - 1400px) / 2);
	}
}