body,html{
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
}

.width-flag-news{
	display: none;
}

@media (max-width: 768px) {
	
	.width-flag-news{
		display: flex;
	}

}
	
/********************* 
firstView
*********************/

.c-firstview{
	position: relative;
	width: 100%;
	/* height: 824px; */
	background: transparent;
}

@media (max-width: 768px) {
	.c-firstview{
		position: static;
	}
}

	
/********************* 
Main Visual
*********************/

.main-visual{
	position: relative;
	margin-left: auto;
	width: calc(100% - 460px);
	height: 100%;
}

.main-visual-pic{
	display: block;
}

.catch-copy{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	-ms-align-items: flex-end;
	align-items: flex-end;
	position: absolute;
	top: 1.56%;
	right: 50%;
	max-width: 118px;
	width: 7.86%;
}

.catch-copy-first,.catch-copy-second{
	position: relative;
	max-width: 45px;
	width: 38.13%;
}

.catch-copy-second{
	margin-bottom: -20%;
}

.catch-copy-first img:nth-of-type(2),.catch-copy-second img:nth-of-type(2){
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 1200px) {
	
	.main-visual{
		position: relative;
		margin-left: auto;
		width: calc(100% - 300px);
		height: 100%;
	}
}

@media (max-width: 1000px) {
	.main-visual{
		width: 100%;
		margin-top: 50px;
	}
}

@media (max-width: 768px) {

	.main-visual{
		margin-top: 50px;
		width: 100%;
		height: auto;
	}
	
	.main-visual-pic{
		display: none;
	}
	
	.catch-copy{
		display: none;
	}
}

/********************* 
news
*********************/

.c-top-news{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	background: #312015 url('../images/top/top_news_bg.png') center no-repeat;
	overflow: hidden;
}

.top-news-inner{
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
	height: 100%;
}

.top-news-article{
	padding-top: 17px;
	width: calc(100% - 148px);
	color: #e5d9d1;
	font-size: 15px;
}

.c-top-news .top-news-article{
	animation: news-slide 10s infinite ease;
	animation-play-state: paused;
/*	animation: news-slide2 6s infinite ease;*/
}

.c-top-news:hover .top-news-article{
    animation-play-state: paused;
}

@keyframes news-slide{
	0%{
		transform:translateY(0px);
	}
	32%{
		transform:translateY(0px);
	}
	33%{
		transform:translateY(-50px);
	}
	65%{
		transform:translateY(-50px);
	}
	66%{
		transform:translateY(-100px);
	}
	99%{
		transform:translateY(-100px);
	}
	100%{
		transform:translateY(0px);
	}
}

@keyframes news-slide2{
	0%{
		transform:translateY(0px);
	}
	49%{
		transform:translateY(0px);
	}
	50%{
		transform:translateY(-50px);
	}
	99%{
		transform:translateY(-50px);
	}
	100%{
		transform:translateY(0px);
	}
}

.top-news-article a{
	color: #e5d9d1;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.news-title:hover a{
	color: #4f581c;
}

.top-news-article li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	height:50px;
}

.news-date{
	padding-left: 23px;
	max-width: 139px;
	width: 100%;
}

.news-title{
	overflow:hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: inline-block;
	height: 1.5em;
	vertical-align: top;
}

.news-title:hover{
	color: #4f581c;
}

.top-news-nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 131px;
	padding: 11px 0;
	width: 2px;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.top-news-nav li{
	width: 2px;
	height: 6px;
/*	height: 10px;*/
	background: #4f581c;
    animation:newsNavColor 10s infinite ease;
	animation-play-state: paused;
/*	animation:newsNavColor2 6s infinite ease;*/
}

.top-news-nav li:nth-of-type(2){
    animation:newsNavColor 10s 3.33s infinite ease;
	animation-play-state: paused;
/*	animation:newsNavColor2 6s 3s infinite ease;*/
}

.top-news-nav li:nth-of-type(3){
    animation:newsNavColor 10s 6.66s infinite ease;
	animation-play-state: paused;
}

.c-top-news:hover .top-news-nav li{
    animation-play-state: paused;
}

@keyframes newsNavColor{
	0%{
		background: #e5d9d1;
	}
	32%{
		background: #e5d9d1;
	}
	33%{
		background: #4f581c;
	}
	100%{
		background: #4f581c;
	}
}

@keyframes newsNavColor2{
	0%{
		background: #e5d9d1;
	}
	49%{
		background: #e5d9d1;
	}
	50%{
		background: #4f581c;
	}
	100%{
		background: #4f581c;
	}
}

.more-button{
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 128px;
	height: 30px;
	background: #4f581c;
}

.more-button a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 0 23px 3px 23px;
	width: 100%;
	height: 100%;
	color: #d4d8bd;
	text-decoration: none;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.more-button img{
    width: 27px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.more-button:hover .more-button-arrow img{
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
}

@media (max-width: 768px) {

	.c-top-news{
		height: auto;
		padding-bottom: 27px;
	}
	
	.top-news-inner{
		margin: 0 auto;
		width: 90%;
	}

	.c-top-news .top-news-article{
		padding:0;
		width: 100%;
		animation: none;
	}

	.top-news-article li{
		display: block;
		margin: 0;
		padding: 25px 0 25px 0;
		height:auto;
		border-bottom:solid 2px #594131; 
	}
	
	.top-news-article li:nth-of-type(3){
		border: none;
	}
	
	.news-date{
		margin-bottom: 10px;
		padding: 0;
		max-width: 100%;
		width: 100%;
		font-size: 12px;
		color: #e48f83;
	}
	
	.news-title{
		text-overflow:clip;
		white-space:normal;
		font-size: 15px;
		line-height:1.67em;
		height: auto;
	}
	
	.more-button{
		position: relative;
		top: auto;
		right: auto;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
		margin: 0 auto;
		width: 172px;
		height: 40px;
	}

	.more-button a{
		font-size: 20px;
		padding: 0 35px 3px 35px;
	}
	
	.top-news-nav{
		display: none;
	}
}

@media all and (-ms-high-contrast: none) {
	
	img[src$=".svg"] {
		width: 100%;
	}

	.more-button-arrow{
		width: 27px;
	}
}


/********************* 
promotion video
*********************/

.c-pv{
	position: relative;
	margin-top: 50px;
}

.bg-movie{
	display: block;
	position: relative;
	width: 100%;
	padding-top: 27%;
	overflow: hidden;
}

.bg-movie-inner{
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	padding-top: 56.25%;
}

.bg-movie-inner video{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.pv-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/top/pv_overlay.png?19030401') center no-repeat;
}

.pv-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 132px;
	height: 132px;
	background: #4f581c;
	border-radius: 70px;
}

.pv-play-button a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	padding-left: 10px;
	width: 100%;
	height: 100%;
	color: #d4d8bd;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 0.42em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: letter-spacing 0.3s ease;
	-o-transition: letter-spacing 0.3s ease;
	transition: letter-spacing 0.3s ease;
}

.pv-play-button p{
	margin-left: 2px;
}

.pv-play-button img{
	margin-bottom: 12px;
	margin-left: -15px;
	max-width: 60px;
	height: 60px;
	-webkit-transition: margin-left 0.3s ease,-webkit-transform 0.3s ease;
	-o-transition: margin-left 0.3s ease,-o-transform 0.3s ease;
	transition: margin-left 0.3s ease,transform 0.3s ease;
}

.pv-play-button:hover img{
    margin-left: -8px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.pv-play-button:hover a{
    letter-spacing: 1em;
}

@media (max-width: 1000px) {
	.c-pv{
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	
	.bg-movie{
		display: none;
	}
	
	.pv-play-button{
		width: 66px;
		height: 66px;
	}

	.pv-play-button a{
		padding-left: 5px;
		font-size: 10px;
		letter-spacing: 0.2em;
	}

	.pv-play-button img{
		margin-bottom: 3px;
		margin-left: -8px;
		max-width: 30px;
	}

}
	
	
/********************* 
pv modal
*********************/


.pv-modal{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.72);
}

.pv-modal-outer{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	max-width: 1000px;
	width: 100%;
}

.pv-modal-inner{
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.pv-modal-inner iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pv-modal-close{
	position: absolute;
	top: -100px;
	right: 0;
	padding: 28px;
	width: 100px;
	height: 100px;
	background: #4f581c;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: padding 0.3s ease;
	-o-transition: padding 0.3s ease;
	transition: padding 0.3s ease;
	cursor: pointer;
}

.pv-modal-close:hover{
	padding: 20px;
}


@media (max-width: 768px) {
	
	.pv-modal-close{
		top: -50px;
		padding: 10px;
		width: 50px;
		height: 50px;
	}

}


/********************* 
twitter widget
*********************/

.c-twitter-widget{
	position: relative;
	padding: 63px 0;
	width: 100%;
	background: #d7d4a8 url('../images/top/twitter_area_background.png') center top repeat;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.twitter-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.twitter-background img {
	position: absolute;
}

.twitter-background img:nth-of-type(1) {
	bottom: 100px;
	right: 0px;
	max-width: 91px;
}

.twitter-background img:nth-of-type(2) {
	bottom: 0px;
	right: 264px;
	max-width: 84px;
}

.twitter-background img:nth-of-type(3) {
	bottom: 247px;
	left: 0px;
	max-width: 102px;
}

.twitter-background img:nth-of-type(4) {
	top: 0;
	left: 238px;
	max-width: 120px;
}

.twitter-background img:nth-of-type(5) {
	top: 0;
	right: 109px;
	max-width: 144px;
}

.twitter-background img:nth-of-type(6) {
	bottom: 0;
	left: 0;
	max-width: 856px;
	width: 100%;
}

.twitter-widget-outer {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: top;
	align-items: top;
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
	width: 89.28%;
}

.twitter-widget-outer > img {
	position: absolute;
	top: 150px;
	left: 106px;
	max-width: 136px;
}

h2 {
	width: 30%;
}

h2 > img {
	max-width: 165px;
}

.twitter-header-line {
	margin-top: -24px;
	width: 100%;
	height: 1px;
	background: #4e4c32;
}

.twitter-widget-inner {
	position: relative;
	max-width: 700px;
	width: calc( 100% - 2px );
	height: 387px;
	border: solid 1px #4e4c32;
}

.twitter-widget-inner iframe {
	height: 387px !important;
}

.timeline-Widget{
	border-radius:0 !important;
	background: none;
}

.TweetAuthor-name{
	font-size: 16px !important;
}

.timeline-Tweet-text{
	font-size: 14px !important;
	line-height: 20px !important;
}

@media (max-width: 768px) {

	.twitter-widget-outer {
		display: block;
	}

	h2{
		width: 100%;
		margin: 0 auto 5% auto;
	}
	
	h2 > img {
		max-width: 330px;
		width: 48.88%;
	}

	.twitter-widget-inner {
		max-width: 100% !important;
		height: 400px;
	}

	.twitter-widget-inner iframe {
		height: 400px !important;
	}

}