@charset "UTF-8";

/*--------------------
シェアボタン
--------------------*/
#foot_sharebutton{
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 999;
}

#foot_sharebutton ul{
	margin: 0;
	padding-left: 0;
	display: flex;
}

#foot_sharebutton ul li{
	list-style: none;
}

@media only screen and (max-width: 767.98px){
	#foot_sharebutton{
		position: static;
		padding: 40px 3% 10px 8%;
	}
}


/*--------------------
枠組み・基本設定
--------------------*/
body{
	max-width: none;
}

.Main__content{
	max-width: 100%;
	width: 100%;
	padding: 0;
	position: relative;
	font-family: 'Zen Old Mincho', 'YakuHanJP', "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400;
}

.Main__content img{
	width: 100%;
}

.Main__content h1,
.Main__content h2{
	margin: 0;
}

/* .l_main a{
	transition: 0.5s;
}

.l_main a:hover{
	filter:Alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.50;
} */

.l_main .br_pc { display: block !important;}
.l_main .br_sp { display: none !important;}

.l_main p{
	margin-top: 0;
	margin-bottom: 0;
}

.l_main ul{
	padding-left: 0;
}

.l_main ul li{
	list-style: none;
}

@media only screen and (max-width: 767.98px){
	.l_main .br_pc { display: none !important;}
	.l_main .br_sp { display: block !important;}
}

.l_main {
	color: #000;
}
/*--------------------
共通
--------------------*/
.l_main .headline-l {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.333333;
	margin: 0;
}
.l_main .headline-l.center {
	text-align: center;
}
.l_main .sa {
  opacity: 0;
  transition: all 3.0s ease;
}

.l_main .sa.show {
  opacity: 1;
  transform: none;
}

.l_main .sa--lr {
  transform: translate(-100px, 0);
}

.l_main .sa--rl {
  transform: translate(100px, 0);
}

.l_main .sa--up {
  transform: translate(0, 100px);
}

.l_main .sa--down {
  transform: translate(0, -100px);
}

.l_main .sa--scaleUp {
  transform: scale(.5);
}

.l_main .sa--scaleDown {
  transform: scale(1.5);
}

.l_main .sa--rotateL {
  transform: rotate(180deg);
}

.l_main .sa--rotateR {
  transform: rotate(-180deg);
}

/*--------------------
TOP--メインビジュアル
--------------------*/
.l_main .mvContainer {
	position: relative;
}
.l_main .mvContainer > img {
	opacity: 0;
	filter: blur(12px);
	transform: scale(1.03);
	animation: mvBlurFadeIn 1.8s ease forwards;
}
.l_main .mvContainer .mvTxt {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) !important;
	opacity: 0;
	filter: blur(10px);
	transform: translateY(10px);
	animation: mvBlurFadeInText 1.6s ease forwards;
	animation-delay: 0.5s;
	/*display: flex;
    align-items: center;
    justify-content: center;*/
	max-width: 780px;
		width: 40%;
}
@media only screen and (max-width: 1498.98px){
	.l_main .mvContainer .mvTxt {
			width: 35%;
	}
}
.l_main .mvContainer .mvTxt img {
	/*width: 100vw;
	min-width: 1280px;*/
}
@media only screen and (max-width: 767.98px){
	/*.l_main .mvContainer .mvTxt img {
		min-width: auto;
	}*/
	.l_main .mvContainer .mvTxt {
		max-width: 325px;
			width: 100%;
	}
}
/* 画像用 */
@keyframes mvBlurFadeIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* テキスト用 */
@keyframes mvBlurFadeInText {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
/*--------------------
TOP--動画背景イントロ
--------------------*/
.l_main .video-hero {
	position: relative;
	overflow: hidden;
	min-height: 840px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	color: #fff;
	background: #000;
}

.l_main .video-hero__media {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.l_main .video-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.l_main .video-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10;
}
.l_main .video-hero__content {
	position: absolute;
	inset: 0;
	z-index:30;
	padding: 133px 0 137px;
}
.l_main .video-hero__content h3 {
	max-width: 360px;
	margin: 0 auto 55px;
}
.l_main .video-hero__content .video-hero__bodytxt {
	text-align: center;

}
.l_main .video-hero__content .video-hero__bodytxt p {
	font-size: 18px;
	font-weight: 500;
	line-height: 3.111111;
}
@media only screen and (max-width: 767.98px){
	.l_main .video-hero {
		min-height: 550px;
	}
	.l_main .video-hero__content {
		margin: 0 auto;
		padding: 75px 0 0;
	}
	.l_main .video-hero__content h3 {
		max-width: 250px;
		margin: 0 auto 25px;
	}
	.l_main .video-hero__content .video-hero__bodytxt p {
		font-size: 14px;
	}
}


/*--------------------
coming soon
--------------------*/
.l_main .is_comingsoon{
	font-size: 200%;
	text-align: center;
	padding: 20vh 8%;
}

