/** hero **/
.l-hero-wrapper {
  padding: calc(5.37rem + 70px) 0 70px;
  background-size: cover;
  position: relative;
  margin-top: -5.37rem;
  background-image: var(--main-gradation);
  background-blend-mode: multiply;
  background-color: var(--main-bg);
  background-position: center;
  margin-top: 0;
}
.l-hero-wrapper.top {
	padding: 0;
	height: 550px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@media only screen and (max-width: 1200px) {
	.l-hero-wrapper.top {
		height: 47vw;
	}
}
@media only screen and (max-width: 1023px) {
	.l-hero-wrapper.top {
    padding: 0;
    margin: 0;
 }
}
@media only screen and (max-width: 830px) {
	.l-hero-wrapper.top {
		padding: 30px 0;
		height: auto;
 }
}
@media only screen and (max-width: 600px) {
	.l-hero-wrapper.top {
    padding: 30px 0;
    box-sizing: initial;
 }
}
.l-hero-wrapper.middle {
}
.l-hero-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	opacity: .3;
}
.l-hero-wrapper .l-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #FFF;
	opacity: .4;
}

.l-hero-content {
  width: 100%;
	padding: 0;
	z-index: 10;
	position: relative;
}

@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 830px) {
  .l-hero-content {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 1400px) {
  .l-hero-content {
		padding-left: 3rem;
		padding-right: 3rem;
		box-sizing: border-box;
	}
}
@media only screen and (max-width: 1400px) {
  .l-hero-content {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.l-hero-main {
  display: flex;
  flex-direction: column;
	color: var(--main-text);
}

@media only screen and (min-width: 830px) {
  .l-hero-main {
    text-align: left;
  }
}

.l-hero-main__img {
  order: 3
}

@media only screen and (min-width: 830px) {
  .l-hero-main__img {
    order: 1
  }
}

.l-hero-main__intro {
  order: 1
}

@media only screen and (min-width: 830px) {
  .l-hero-main__intro {
    order: 2
  }
}

.l-hero-main__btn {
  order: 2
}

@media only screen and (min-width: 830px) {
  .l-hero-main__btn {
    order: 3
  }
}

.l-hero-sub {
  background-color: rgba(255, 255, 255, .7);
  padding: 20px;
  border: 1px solid #eee;
}
.l-hero-sub > h3 {
  border-left: solid 5px var(--header-border);
  font-weight: bold;
  line-height: 1.2;
  font-size: 1.1rem;
  padding: 0 0 0 10px;
  margin: 0 0 15px 0;
}
.l-hero-sub > div {
  text-align: center;
  margin-top: -15px;
}
.l-hero-sub > div > a {
  background-color: var(--btn-defColor);
  color: var(--btn-def-txt-bodyColor);
  background-blend-mode: multiply;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
}
.l-hero-sub > figure {
	width: 300px;
	height: 195px;
	margin: auto;
}
.l-hero-sub > figure img {
	object-fit: contain;
	height: 100%;
}
@media only screen and (max-width: 830px) {
	.l-hero-sub {
		margin-top: 2rem;
	}
}
@media only screen and (max-width: 600px) {
  .l-hero-sub > figure {
    max-width: 100%;
  }
}

.l-hero-detail {
  display: flex;
}
.l-hero-detail .l-hero-date {
  display: flex;
  position: relative;
  font-weight: bold;
  margin: 20px 0;
}
.l-hero-detail .l-hero-date p {
  font-size: 1rem;
  position: absolute;
  top: -5px;
}
.l-hero-detail .l-hero-date > div:nth-child(2) {
  font-size: 1.2rem;
}
.l-hero-detail .l-hero-date > div:nth-child(2) span {
  font-size: 3.5rem;
}
.l-hero-detail .l-hero-date > div:nth-child(2) span:last-child {
  font-size: 1rem;
  color: var(--main-bg);
  background-color: var(--main-text);
  padding: 10px;
  border-radius: 30px;
  vertical-align: super;
}
.l-hero-detail .l-hero-date > div:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.l-hero-detail .l-hero-date > div:nth-child(3) span {
  display: block;
}
.l-hero-detail .l-hero-date > div:nth-child(3) span:first-child {
  margin: 0 0 10px;
  position: relative;
}
.l-hero-detail .l-hero-date > div:nth-child(3) span:first-child::after {
  content: " ";
  display: inline-block;
  height: 5px;
  width: 3px;
  margin: 0 auto;
  background-color: var(--main-bg);
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
}
.l-hero-detail .l-hero-capacity {
  font-weight: bold;
  position: relative;
  margin: 20px;
}
.l-hero-detail .l-hero-capacity p {
  font-size: 1rem;
  position: absolute;
  top: -5px;
}
.l-hero-detail .l-hero-capacity > div:nth-child(2) span {
  font-size: 3.5rem;
}
.l-hero-detail .l-hero-cost {
  background-color: var(--main-bg);
  padding: 10px;
  transform: rotate(10deg);
  text-align: center;
  border-radius: 90px;
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
	align-items: center;
	color: var(--main-text);
}
.l-hero-detail .l-hero-cost span {
  font-weight: bold;
  display: block;
  font-size: 38px;
  line-height: 1;
}
@media only screen and (max-width: 1400px) {
	.l-hero-sub {
		margin-left: 2rem;
	}
}
@media only screen and (max-width: 830px) {
  .l-hero-detail {
    display: block;
  }
  .l-hero-detail .l-hero-capacity {
    margin: 20px 0;
  }
  .l-hero-detail .l-hero-cost {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 600px) {
	.l-hero-sub {
    margin-left: 0;
 }
}

.p-page-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
	opacity: 0;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 0.25s;;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 480px) {
  .p-page-title {
  }
}

@media only screen and (min-width: 600px) {
  .p-page-title {
    font-size: 1.9rem;
  }
}

@media only screen and (min-width: 830px) {
  .p-page-title {
  }
}

.p-page-title__sm {
  font-size: 1rem
}

@media only screen and (min-width: 480px) {
  .p-page-title__sm {
    font-size: 1.125rem
  }
}

@media only screen and (min-width: 600px) {
  .p-page-title__sm {
    font-size: 1.3125rem
  }
}

@media only screen and (min-width: 830px) {
  .p-page-title__sm {
    font-size: 1.5625rem
  }
}

.p-page-title__logotype {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: .75rem 0 0 0;
  font-size: 2.8rem;
  color: var(--main-text);
  letter-spacing: .1rem;
}
.l-hero-wrapper  .pu-br-after {
	background: none;
	color: var(--main-em-text);
}
.l-hero-wrapper  .p-page-title__logotype {
}

.l-hero-wrapper .u-br-after {
  background-color: var(--main-em-bg);
  /* color: var(--main-em-text); */
  padding: 2px 10px 5px 10px;
  margin: 1px 0;
  display: inline-block;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
  letter-spacing: .1rem;
}

.logo--header {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .logo--header {
    padding: 1.75rem 0 0 .5rem;
  }
}
@media only screen and (max-width: 600px) {
  .logo--header {
    padding: .875rem 0 0;
  }
  .p-page-title__logotype {
    font-size: 2.2rem;
  }
}

.p-tel--header {
  text-align: center;
  text-decoration: none;
}
.p-tel--header span {
  color: var(--main-text);
  display: block;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
}
.p-tel--header span.p-subtel--header {
  font-size: 1rem;
  font-weight: normal;
}
.p-label {
  text-align: left;
}
.p-label span {
  background-color: var(--main-em-bg);
  border-radius: 5px;
  color: var(--main-em-text);
  padding: 10px;
  display: inline-block;
}
@media only screen and (max-width: 830px) {
  .p-label {
    margin: 0 0 2rem;
  }
}

.l-hero-wrapper.case {
	padding-top: calc(5.37rem);
	padding-bottom: 0;
}
.l-hero-wrapper.case .l-hero-main {
	flex-direction: row;
	justify-content: space-between;
}
.l-hero-wrapper.case .l-hero-main .l-hero-main__title {
	max-width: 50%;
	margin-right: 20px;
	padding: 60px 0;
}
.l-hero-wrapper.case .l-hero-main figure {
	max-width: 50%;
}
@media only screen and (max-width: 830px) {
	.l-hero-wrapper.case .l-hero-main .l-hero-main__title {
		max-width: none;
		width: 100%;
	}
	.l-hero-wrapper.case .l-hero-main figure {
		width: 100%;
		max-width: none;
	}
}	
.l-hero-wrapper.case .u-br-label {
	display: inline-block;
	font-size: 30px;
	color: #FFF;
	background-color: var(--main-em-bg);
	padding: 2px 20px;
	margin-bottom: 25px;
}
.l-hero-wrapper.case .u-br-company {
	display: block;
	font-size: 30px;
	margin-bottom: 15px;
}
.l-hero-wrapper.case .u-br-service {
	padding: 0;
	margin: 0;
	display: flex;
	margin-bottom: 25px;
}
.l-hero-wrapper.case .u-br-service > li {
	font-size: 12px;
	padding: 8px 12px;
	background-color: var(--main-em-bg);
	color: #FFF;
	border-radius: 5px;
	margin-right: 12px;
}

.l-hero-wrapper.case .u-br-service > li .u-br-after {
	background: none;
	color: var(--main-em-text);
	font-size: 30px;
	margin-bottom: 10px;
	display: block;
}


.bgmovie-cover-filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: #000;
	opacity: .3;
}

video.blur {
	filter: blur(5px);
}

.bgmovie-cover-filter.fix {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: #000;
	opacity: .2;
}
video.cover.fix {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: auto;
	filter: blur(1px);
}

.bgmovie-cover-filter.loop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: #000;
	opacity: .5;
}
video.cover.loop.left {
	top: 0;
	right: 50%;
	width: auto;
	height: 100%;
	filter: blur(6px);
}
video.cover.loop.right {
	top: 0;
	left: 50%;
	width: auto;
	height: 100%;
	filter: blur(6px);
}
.bgmovie-main {
	position: absolute;
	display: block;
	width: auto;
	height: 674px;
	max-width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.bgmovie-main.zoom1_2 {
	height: 674px;
}
.bgmovie-main.zoom1_3 {
	height: 715px;
}
@media only screen and (max-width: 1280px) {
	.bgmovie-main.zoom1_3 {
		height: 715px;
    width: auto;
	}
}	
.bgmovie-main.zoom1_4 {
	height: 770px;
}
@media only screen and (max-width: 1370px) {
	.bgmovie-main.zoom1_4 {
		height: 770px;
    width: auto;
	}
}	
.bgmovie-main.zoom1_5 {
	height: 815px;
}
.l-hero-wrapper.top.bgmovie_top video.cover {
	top: 0;
	transform: translate(-50%, 0);
}
.l-hero-wrapper.top.bgmovie_top .bgmovie-main {
	top: 0;
	transform: translate(-50%, 0);
}
.l-hero-wrapper.top.bgmovie_bottom video.cover {
	top: auto;
	bottom: 0;
	transform: translate(-50%, 0);
}
.l-hero-wrapper.top.bgmovie_bottom .bgmovie-main {
	top: auto;
	bottom: 0;
	transform: translate(-50%, 0);
}
@media only screen and (max-width: 1400px) {
	.bgmovie-main {
		width: 100%;
		max-width: none;
	}
}
@media only screen and (max-width: 1200px) {
	.bgmovie-main.zoom1_5 {
		height: 69vw;
	}
}
@media only screen and (max-width: 1000px) {
	.bgmovie-main {
		height: 100%;
		width: auto;
		max-width: none;
	}
}
@media only screen and (max-width: 690px) {
	video { display: none; }
}
@media only screen and (max-width: 600px) {
	.bgmovie-main.zoom1_2 {
    height: 100%;
    max-width: initial;
  }
}

