@charset "UTF-8";



/*********** 共通 *************/

.title {
	font-family: 'Halant',serif;
	font-size: 5.0rem;
	line-height: 1.3;
	text-align: center;
}


/*********** ↑共通 *************/




/*********** header *************/

header {
	background: rgba(0, 0, 0, 0);
	transition: all 0.2s ease;
}

header h1 .ov {
	position: absolute;
	top: 0;
	left: 0;
}

header nav.gnav li::before {
	border-left: 1px solid #666;
}

header nav.gnav li:last-child::after {
	border-left: 1px solid #666;
}

header nav.gnav li a {
	color: #000;
}

header nav.gnav li a:hover {
	background: rgba(255,255,255,0.5);
}

#top header nav.gnav li:nth-child(1) a {
	background: rgba(255,255,255,0.5);
}

header.animated h1 .ov {
	opacity: 0;
}

header.animated {
	background: rgba(0, 0, 0, 0.3);
}

header.animated nav.gnav li::before {
	border-left: 1px solid #fff;
}

header.animated nav.gnav li:last-child::after {
	border-left: 1px solid #fff;
}

header.animated nav.gnav li a {
	color: #fff;
}

header.animated nav.gnav li a:hover {
	background: rgba(255,255,255,0.2);
}

#top header.animated nav.gnav li:nth-child(1) a {
	background: rgba(255,255,255,0.2);
}

/*********** ↑header *************/
	




/*********** main *************/

.main {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100vh;
	padding: 0;
	position: relative;
	z-index: -1;
}

.main.active {
	pointer-events: all;
	z-index: 5;
}

.main-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 1.0rem;
	opacity: 0;
	transition: all 1s ease;
	z-index: -1;
}

.active .main-bg {
	opacity: 1;
}

.main-bg.main0 {
	background-image: url("/content/dam/31sumai/mfr/G2302/assets/images/top/main_bg.jpg");
	background-position: left bottom;
}

.main_p {
	position: absolute;
	bottom: 1%;
	right: 12.5%;
	width: 35%;
}

.main_c {
	position: absolute;
	top: 50%;
	left: 8%;
	max-width: 600px;
	transform: translateY(-45%);
}

.main-bg.main1 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
}

.main-bg.main2 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
}

.main-bg.main3 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
}

.main-bg.main4 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
}

.main-cap {
	position: absolute;
	right: 5px;
	bottom: 5px;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: right;
	z-index: 3;
}

.main-next {
	position: fixed;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 6;
	transition: all 0.5s ease;
	width: 110px;
}

.main-next:hover {
	opacity: 0.7;
}

.main-txt {
	max-width: 600px;
	margin-left: 0;
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 1.0));
	opacity: 0;
	transition: all 2s ease;
}

.active .main-txt {
	opacity: 1;
	pointer-events: all;
}

.viewmore {
	position: relative;
	width: 160px;
	margin: 0 auto;
	margin-top: 60px;
	transition: all 0.2s ease;
}

.viewmore:hover {
	opacity: 0.5;
}

.viewmore::before {
	content: "";
	display: block;
	position: absolute;
	right: -25px;
	bottom: -20px;
	margin: auto;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 50%;
	box-sizing: border-box;
	pointer-events: none;
	animation: pulsate 2s linear infinite;
	filter: none;
	z-index: -1;
}

@keyframes pulsate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/*********** ↑main *************/




.cont-bg {
	position: relative;
	background: #fff;
	z-index: 20;
}

.plan-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 600px;
	transform: translate(-50% , -50%);
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 1.0));
	z-index: 30;
}

.movie-bg {
	background: #E1DEDD;
	padding: 120px 0;
}

.container-movie {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.movie-txt1 {
	display: flex;
	align-items: center;
	font-size: 2.4rem;
	margin-top: 40px;
}

.movie-txt1:before,
.movie-txt1:after {
  content: "";
  flex-grow: 1;
  height: 1.2px;
  background: #000;
}

.movie-txt1:before {
  background: linear-gradient(-90deg, #666, transparent);
  margin-right: 1.0em;
}

.movie-txt1:after {
  background: linear-gradient(90deg, #666, transparent);
  margin-left: 1.0em;
}

.movie-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.movie-wrap li {
	width: 32.5%;
	margin-top: 40px;
}

.movie-wrap li:nth-child(4) {
	margin-left: 16.92%;
}

.movie-wrap li:nth-child(5) {
	margin-right: 16.92%;
}

.movie-wrap .txt {
	font-size: 1.5rem;
	text-align: center;
	background: #fff;
	padding: 5px;
}

.movie-txt2 p:nth-child(1) {
	font-size: 3.0rem;
	text-align: center;
	margin-top: 100px;
}

.movie-txt2 p:nth-child(2) {
	font-size: 1.6rem;
	text-align: center;
	margin-top: 20px;
}


.top-entry {
	margin-top: 140px;
}

.top-entry-copy {
	margin-top: 20px;
}

.top-entry-copy .ttl {
	font-size: 3.0rem;
	text-align: center;
}

.top-entry-copy .txt {
	font-size: 1.6rem;
	text-align: center;
	margin-top: 20px;
}

.top-entry-copy .txt .ker {
	margin-right: 0.01em;
}

.top-entry-copy2 {
	margin-top: 80px;
}

.top-entry-copy2 .ttl {
	font-size: 2.0rem;
	text-align: center;
}

.top-entry-copy2 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}

.top-entry-copy2 ul li.cont {
	width: 28%;
}

.top-entry-copy2 dl {
	text-align: center;
	line-height: 1.5;
}

.top-entry-copy2 dt {
	font-family: 'Halant',serif;
	font-size: 2.2rem;
}

.top-entry-copy2 dd:nth-of-type(1) {
	font-size: 2.0rem;
	border-bottom: 1px solid #666;
	padding-bottom: 15px;
}

.top-entry-copy2 dd:nth-of-type(2) {
	font-size: 1.4rem;
	margin-top: 20px;
}

.top-entry-copy2 ul li.line {
	width: 4%;
	margin-left: 1%;
	margin-right: 3%;
}

.top-entry-copy2 .line p:nth-child(1) {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to right top, transparent 49.5%, #000 49.5%, #000 50.5%, transparent 50.5%);
}

.top-entry-copy2 .line p:nth-child(2) {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to left top, transparent 49.5%, #000 49.5%, #000 50.5%, transparent 50.5%);
}

nav.top-entry-bt {
	margin-top: 40px;
}

nav.top-entry-bt ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

nav.top-entry-bt ul li {
	width: 42%;
}

nav.top-entry-bt ul li a {
	width: 100%;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	background-color: #6e6865;
	background-image: url("/content/dam/31sumai/mfr/G2302/assets/images/common/mk_arrow1.png");
	background-position: right 5% center;
	background-repeat: no-repeat;
	background-size: 10px auto;
	padding: 15px 0;
	display: block;
	transition: all 0.3s ease;
	text-decoration: none;
}

nav.top-entry-bt ul li a .en {
	font-family: 'Halant',serif;
	font-size: 3.2rem;
	font-weight: 300;
	letter-spacing: 0.1em;
}

nav.top-entry-bt ul li a .ja {
	font-size: 1.4rem;
}

nav.top-entry-bt ul li  a:hover {
	filter: brightness(130%);
}

nav.top-entry-bt.second ul li a {
	background-color: #4f4844;
}

.bnr-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 120px;
}

.bnr-wrap li:nth-child(1) {
	width: 48.64%;
}

.bnr-wrap li:nth-child(2) {
	width: 48.71%;
}

.info-wrap {
	font-size: 1.6rem;
	margin-top: 140px;
}

.info-wrap .title {
	padding-bottom: 20px;
}



/*********** fbt *************/

.fbt-wrap {
	display: flex;
	flex-wrap: wrap;
	margin-top: 140px;
}

.fbt-wrap li {
	width: 33.33%;
}

.fbt-wrap dl {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #fff;
	line-height: 1.5;
	text-align: center;
	text-shadow: 0 0 8px #000;
	width: 100%;
}

.fbt-wrap dt {
	font-family: 'Halant',serif;
	font-size: 4.0rem;
	font-weight: 300;
}

.fbt-wrap dd {
	font-size: 1.4rem;

}

/*********** ↑fbt *************/



.energylabel-wrap {
	max-width: 480px;
	margin: 0 auto;
	margin-top: 120px;
	padding-bottom: 20px;
}

.bnr_recommend-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 960px;
	margin: 0 auto;
	margin-top: 60px;
	padding-bottom: 20px;
}

.bnr_recommend-wrap li {
	max-width: 470px;
	margin-top: 25px;
}





/*********** fancybox *************/

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    overflow: visible!important;
    padding: 0!important;
    max-width: 1200px!important;
    max-height: 675px!important;
    background: none!important;
}

/*********** ↑fancybox *************/







