html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	background: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
br.sponly2 {display:none;}
br.pconly {display:inline;}
br.pconly2 {display:inline;}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

@-webkit-keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
  }
  @keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
}
@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop-slide-rev {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}
@keyframes fadeIn {
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}
.fadeIn {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInTeaser {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}

@keyframes fadeInUp {
	from {
	opacity: 0;
	transform: translateY(70px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeInUp2 {
	from {
	opacity: 0;
	transform: translateY(100px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeOut {
	from {
	opacity: 1;
	}

	to {
	opacity: 0;
	}
}
@keyframes blurIn {
	from {
	opacity: 0;
	filter: blur(10px);
	transform: scale(4);
	}
	to {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	}
}
@keyframes zoomIn {
	from {
	transform: scale(0);
	opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}



@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		width:100%; 
		height:100vh;
		background-color: #fff;
		overflow-x:hidden;
	}
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	br.sponly {display:inline;}
	br.sponly2 {display:none;}
	br.pconly {display:none;}
	br.pconly2 {display:inline;}

}
@media (max-width: 610px) {
	br.pconly2 {display:none;}
	br.sponly2 {display:inline;}
}




/* ========================================
ローディング
========================================== */

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 1s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.2s;
    transition-duration: 1.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	display: grid;
    place-items: center;
}
#loader {
	width:25%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:auto;
	animation: load1 2.0s infinite;
}
#loader #load2 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load2 2.0s infinite;
}
#loader #load3 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load3 2.0s infinite;
}
@keyframes load1 {
	0% {opacity: 0;}
	18% {opacity: 0;}
	20% {opacity: 1;}
	80% {opacity: 1;}
	82% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes load2 {
	0% {opacity: 0;}
	38% {opacity: 0;}
	40% {opacity: 1;}
	80% {opacity: 1;}
	82% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes load3 {
	0% {opacity: 0;}
	58% {opacity: 0;}
	60% {opacity: 1;}
	80% {opacity: 1;}
	82% {opacity: 0;}
	100% {opacity: 0;}
}




/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #fff;
	}
	#loader {
		width:60%;
		height:auto;
		margin:0;
		padding:0;
		position:relative;
	}
	

}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:10px 0 15px;
	position:fixed;
	top:0;
	background: rgba(255, 255, 255, 0.5);
	z-index:1001;
	opacity: 0;
}
#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}
#pcheader ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1%;
	padding:0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.3%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.1vw;
	line-height:1.1vw;
	letter-spacing: 0px;
	text-align: center;
	color: #000;
	font-weight: bold;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(0px);
	font-size: 1.6vw;
}
#pcheader ul#pcmenu li.menusns a span.eng img {
	width: 2.5vw;
}
#pcheader ul#pcmenu li#menuinsta {
	margin-left: 3vw;
}

#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	font-size:0.7vw;
	line-height:0.7vw;
	text-align: center;
	color: #fff;
	font-family: 'Edu TAS Beginner', cursive;
	letter-spacing: 1px;
	transform: translateY(-1.5vw);
}
#pcheader ul#pcmenu li a:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
.navigation {
	display: none;
	position: absolute;
	left: 5px;
	top: 5px ;
	width: 100%;
	height: 100%;
}  
.global-nav {
	position: fixed;
	right: 0;
	top: -2000px;
	width: 100%;
	height: 100%;
	min-height: 100%;
	padding-top: 0px;
	background: rgba(255, 255, 255, 0.85);
	background-size: cover;
	background-position: center center;
	z-index: 2000001;
	display: flex;
	align-items: center;
}
.global-nav .global-nav-inner {
	width: 100%;
	height: auto;
	position: relative;
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 3000000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:50%;
	height:auto;
	margin:0px 25% 5vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo #menu-logo1 {
	width: 100%;
	height: auto;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	padding: 0.1vw 0px;
}
.global-nav__item a {
	display: block;
	padding: 0;
	text-decoration: none;	
	color: #000;
	transition: all .6s;
	letter-spacing: 1px;
}  
.global-nav__item a .en {
	width: 100%;
	font-size:2vw;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:1vw;
	transform: translateY(-10px);
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #000 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#000;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 12%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#130801;
}
.global-nav ul.nav-sns li img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-nav ul.nav-sns li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

  .hamburger__line--1 {
	top: 12px;
  }
  .hamburger__line--2 {
	top: 27px;
  }
  .hamburger__line--3 {
	top: 42px;
  }
  .black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
	top: 0;
  }
  .nav-open .black-bg {
	opacity: .8;
	visibility: visible;
  }
  .nav-open .hamburger__line--1 {
	transform: rotate(45deg);
	top: 30px;
  
  }
  .nav-open .hamburger__line--2 {
	width: 0;
	left: 50%;
	opacity: 0;
  
  }
  .nav-open .hamburger__line--3 {
	transform: rotate(-45deg);
	top: 30px;
  
  }



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#pcheader {
		display: none;
	}

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:none;
	opacity: 1;
  }  
  .hamburger {
	width: 52px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 54px; /* クリックしやすいようにちゃんと高さを指定する */
	  display:block !important;
  }  
  .hamburger__line {
	  position: absolute;
	  left: -2px;
	  width: 40px;
	  height: 4px;
	  transition: all .6s;
	}	
	.hamburger #menu {
	  position: absolute;
	  top: 38px;
	  left: -3px;
	  font-weight:bold;
	  font-size:0.9em;
	}
  
  .hamburger__line--1 {
	top: 8px;
  }
  .hamburger__line--2 {
	top: 21px;
  }
  .hamburger__line--3 {
	top: 34px;
  }
  
  .global-nav {
	position: fixed;
	top: -1600px; /* これで隠れる */
	left: 0;
	width: 100%; /* スマホに収まるくらい */
	height: 100%;
	min-height: 100%;
	padding: 0 0 10px;
	transition: all .6s;
	z-index: 2000000;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 10px 0 10px;
  }
  .global-nav__item {
	margin: 15px 0;
  }
  .global-nav__item a {
	display: block;
	padding: 1px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:2.5rem;
	line-height: 3.0rem;
	letter-spacing: 1.5px;
	color: #000;

}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.global-nav #tw-menu {
	width:100%;
	height:auto;
	padding:20px 0;
	margin:0;
	text-align: center;
	opacity: 1;
	position: relative;
	color: #fff;
	font-size: 10vw;
}
.global-nav #tw-menu a {
	color: #fff;
}
  
	/* 表示された時用のCSS */
	.nav-open .global-nav {
	  top: 0;
	}
	.nav-open .black-bg {
	  opacity: .8;
	  visibility: visible;
	}
	.nav-open .hamburger__line--1 {
	  transform: rotate(45deg);
	  top: 20px;
	
	}
	.nav-open .hamburger__line--2 {
	  width: 0;
	  left: 50%;
	
	}
	.nav-open .hamburger__line--3 {
	  transform: rotate(-45deg);
	  top: 20px;
	
	}
	.global-nav ul.nav-sns li {
		width: 8%;
		margin: 0 1.5%;
	}
  
  ul#nav-button {
	  display:none !important;
  }
  
}  


/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.global-nav #menu-logo {
		width:60%;
		height:auto;
		margin:0px 20% 8vw;
		padding:0;
		text-align:center;
		position: relative;
	}  

	.global-nav__item {
		margin: 15px 0 !important;
	}
	.global-nav__item a {
		display: block;
		padding: 1px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:1.8rem;
		line-height: 1.8rem;
		letter-spacing: 1.0px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav .nav-sns {
		margin: 8vw 0 0 !important;
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 0 1.5%;
	}

	
}





/* ========================================
トップ
========================================== */
#toTop {
	width: 7%;
	height: auto;
	position: fixed;
	bottom: 1%;
	right: 1%;
	z-index: 30;
	opacity: 0;
}
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	background-color: #fff;
}
#top #top__alltxt {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 10;
	opacity: 0;
}
#top #top__alltxt img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__bubble {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
}
#top #top__bubble img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1053;
}
#top #top__earth {
	width: 84.0625%;
	height: auto;
	position: absolute;
	bottom: 1.5vw;
	left: 9%;
	z-index: 0;
	opacity: 0;
}
#top #top__earth img {
	width: 100%;
	height: auto;
	aspect-ratio: 1614 / 714;
}
#top #top__monster {
	width: 43.1%;
	height: auto;
	position: absolute;
	top: 0;
	left: 2.0%;
	z-index: 0;
	transform: translate3d(0, 100%, 0);
}
#top #top__monster img {
	width: 100%;
	height: auto;
	aspect-ratio: 853 / 1080;
}
#top #top__boys {
	width: 79.2701%;
	height: auto;
	position: absolute;
	bottom: 1.5vw;
	right: 0;
	z-index: 0;
	transform: translate3d(0, 100%, 0);
}
#top #top__boys img {
	width: 100%;
	height: auto;
	aspect-ratio: 1522 / 748;
}
#top #top__logo {
	width: 51.5%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 4.3vw;
	right: 8.5%;
	z-index: 0;
	opacity: 0;
}
#top #top__logo img {
	width: 100%;
	height: auto;
}
#top #top__pink {
	width: 100%;
	height: 4vw;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #e85d90;
	transform: translate3d(-100%, 0, 0);
}
@keyframes slideInUp {
	0% {transform: translate3d(0, 100%, 0);}
	100% {transform: translate3d(0, 0, 0);}
}
@keyframes slideInRight {
	0% {transform: translate3d(-100%, 0, 0);}
	100% {transform: translate3d(0, 0, 0);}
}
.top__boys {
	animation: slideInUp 0.3s ease-in 1.2s forwards;
}
.top__monster {
	animation: slideInUp 0.3s ease-in 1.5s forwards;
}
.top__bubble {
	animation: zoomIn 0.7s ease-in 1.5s forwards;
}
.top__earth {
	animation: zoomIn 0.7s ease-in 1.5s forwards;
}
.top__logo {
	animation: zoomIn 0.7s ease-in 1.5s forwards;
}
.pcheader {
	animation: fadeIn 0.7s ease-in 1.5s forwards;
}
.top__alltxt {
	animation: fadeIn 0.7s ease 1.5s forwards;
}
.top__pink {
	animation: slideInRight 0.7s ease 1.5s forwards;
}
#top #top__sp-sns {
	display: none;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#toTop {
		width: 10%;
		height: auto;
		position: fixed;
		bottom: 1%;
		right: 3%;
		z-index: 30;
		opacity: 0;
	}
	#top #top__alltxt img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__bubble {
		width: 100%;
		height: auto;
		position: absolute;
		top: 3.1%;
		left: 0;
		z-index: 0;
		opacity: 0;
	}
	#top #top__bubble img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 1071;
	}
	#top #top__earth {
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		opacity: 0;
	}
	#top #top__earth img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 1765;
	}
	#top #top__monster {
		width: 80%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 18%;
		left: 7%;
		z-index: 0;
		transform: translate3d(0, 150%, 0);
	}
	.top__monster {
		animation: slideInUp2 0.3s ease-in 1.5s forwards;
	}
	@keyframes slideInUp2 {
		0% {transform: translate3d(0, 150%, 0);}
		100% {transform: translate3d(0, 0, 0);}
	}
	#top #top__monster img {
		width: 100%;
		height: auto;
		aspect-ratio: 941 / 1238;
	}
	#top #top__boys {
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 0;
		transform: translate3d(0, 100%, 0);
	}
	#top #top__boys img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 874;
	}
	#top #top__logo {
		width: 89%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 9%;
		right: 5.5%;
		z-index: 0;
		opacity: 0;
	}
	#top #top__logo img {
		width: 100%;
		height: auto;
	}
	#top #top__pink {
		width: 100%;
		height: 18vw;
		position: absolute;
		bottom: 0;
		left: 0;
		background-color: #e85d90;
		transform: translate3d(-100%, 0, 0);
	}
	#top #top__sp-sns {
		width: 50%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		position: absolute;
		top: 0.5%;
		right: 2%;
		display: flex;
		justify-content: flex-end;
		opacity: 0;
		z-index: 30;
	}
	#top #top__sp-sns li {
		width: 15%;
		height: auto;
		margin: 0 2%;
	}

}


/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#toTop {
		width: 20%;
		height: auto;
		position: fixed;
		bottom: 1%;
		right: 3%;
		z-index: 30;
		opacity: 0;
	}
	#top #top__sp-sns li {
		width: 25%;
		height: auto;
		margin: 0 2%;
	}

}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 0;
	overflow: hidden;
	background-color: #eeeae5;
	position: relative;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
	padding: 2vw 0;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 0;
		overflow: hidden;
		background-color: #eeeae5;
		position: relative;
	}
	#bridge #mubi #mvtk-widgets-container {
		display: inline-block;
		padding: 5vw 0;
	}


}


/* ========================================
水玉黄色BG
========================================== */
#story-bg-area {
	width: 100%;
	height: auto;
	background-image: url(../img/HF-story-bg-pc.jpg);
	background-size: 100% auto;
	background-repeat: repeat-y;
	background-position: center center;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story-bg-area {
		width: 100%;
		height: auto;
		background-image: url(../img/HF-story-bg-sp-1.jpg);
		background-size: 100% auto;
		background-repeat: repeat-y;
		background-position: center center;
	}

}


/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:5vw 0 5vw;
	overflow: hidden;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}
.video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.trailer ul#movie-changer {
	width: 60%;
	height: auto;
	margin: 10px 20%;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
}
.movie-btn {
	width: 49%;
	height: auto;
	margin: 0;
	padding: 3px 0;
	text-align: center;
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	.video {
		width:90%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 5% 10px;
		display:block;
	}
	.trailer ul#movie-changer {
		width: 90%;
		height: auto;
		margin: 10px 5%;
		padding: 0%;
		list-style-type: none;
		display: flex;
		justify-content: space-between;
	}
	.movie-btn {
		width: 48%;
		font-size: 3vw;
	}
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:13vw 0 10vw;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 0 10px;
		display:block;
	}
	.movie-btn {
		width: 49%;
		font-size: 3vw;
	}
}


/* ========================================
ストーリー
========================================== */
#story {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0 0 10vw;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
}
#story h2 img {
	width: 25%;
	height: auto;
}
#story #story__lead1 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	color: #e85d90;
	font-size: 2.2vw;
	font-weight: bold;
	letter-spacing: 2px;
}
#story p {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	color: #000;
	font-size: 1.2vw;
	line-height: 2.4vw;
	letter-spacing: 1.5px;
}
#story #story__lead2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	color: #00a0d0;
	font-size: 1.7vw;
	font-weight: bold;
	letter-spacing: 2px;
}
#story #story__lead3 {
	width: 100%;
	height: auto;
	margin: 0;
	color: #7bc182;
	font-size: 1.7vw;
	font-weight: bold;
	letter-spacing: 2px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story p {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.5px;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#story {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 15vw 0 15vw;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		padding: 0;
	}
	#story h2 img {
		width: 40%;
		height: auto;
	}
	#story #story__lead1 {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		color: #e85d90;
		font-size: 1.5rem;
		font-weight: bold;
		letter-spacing: 2px;
	}
	#story p {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.5px;
	}
	#story #story__lead2 {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		color: #00a0d0;
		font-size: 1.3rem;
		font-weight: bold;
		letter-spacing: 2px;
	}
	#story #story__lead3 {
		width: 100%;
		height: auto;
		margin: 0;
		color: #7bc182;
		font-size: 1.3rem;
		font-weight: bold;
		letter-spacing: 2px;
	}


}

/* ========================================
スライダー
========================================== */
.slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
.slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	position: relative;
	z-index: 2;
}
#slider1 .top-slide ,
#slider3 .top-slide {
	animation: loop-slide 100s infinite linear 0s both;
}
#slider2 .top-slide {
	animation: loop-slide-rev 100s infinite linear 0s both;
}
.slide-wrap .top-slide .content {
	width: 33vw;
	height: auto;
	margin: 0;
}
.slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.slide-wrap .top-slide .content {
		width: 50vw;
		height: auto;
		margin: 0;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.slide-wrap .top-slide .content {
		width: 70vw;
		height: auto;
		margin: 0;
	}
}




/* ========================================
イントロダクション
========================================== */
#intro-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: 100% auto;
	background-repeat: repeat-y;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
}
#intro {
	width: 100%;
	height: auto;
	padding: 5vw 0;
}
#intro #intro__contents {
	width: 54%;
	height: auto;
	padding: 3vw 23%;
}
#intro #intro__contents h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
}
#intro #intro__contents h2 img {
	width: 50%;
	height: auto;
}
#intro p {
	width: 100%;
	height: auto;
	margin: 0;
	color: #000;
	font-size: 1.3vw;
	line-height: 2.5vw;
	letter-spacing: 1.5px;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg {
		height: 110%;
		min-height: 110%;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 10vw 0;
	}
	#intro #intro__contents {
		width: 70%;
		height: auto;
		padding: 10vw 15%;
	}
	#intro #intro__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
	}
	#intro #intro__contents h2 img {
		width: 50%;
		height: auto;
	}
	#intro p {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#intro {
		width: 100%;
		height: auto;
		padding: 30vw 0;
	}
	#intro #intro__contents {
		width: 90%;
		height: auto;
		padding: 5vw 5%;
	}
	#intro #intro__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		padding: 0;
	}
	#intro #intro__contents h2 img {
		width: 80%;
		height: auto;
	}
	#intro p {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
	}


}

/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #fff;
}
#cast h2 {
	width: 70%;
	height: auto;
	margin: 0 15% 5vw;
	padding: 0;
}
#cast h2 img {
	width: 20%;
}
#cast #cast-upper {
	width: 100%;
	height: auto;
	background-color: #e6f6e8;
	padding: 5vw 0 2vw;
	position: relative;
}
#cast h3 {
	width: 70%;
	height: auto;
	margin: 0 15%;
	padding: 0;
	position: absolute;
	top: 0;
	transform: translateY(-50%);
}
#cast h3 img {
	width: 20%;
}
#cast .cast-wrap1 {
	width: 70%;
	height: auto;
	margin: 0 15%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#cast .cast-wrap1 a {
	display: block;
	width: 32%;
	height: auto;
	margin: 0 2% 3vw;
	text-decoration: none;
}
#cast .cast-wrap1 a img {
	display: block;
	width: 100%;
	height: auto;
}
#cast a .name {
	width: 100%;
	height: auto;
	text-align: center;
	color: #000;
	font-size: 1.5vw;
	font-weight: bold;
}
#cast a .role {
	width: 100%;
	height: auto;
	text-align: center;
	color: #00b6a7;
	font-size: 1.2vw;
	font-weight: bold;
}
#cast h4 {
	width: 70%;
	height: auto;
	margin: 0 15%;
	padding: 3vw 0 0;
}
#cast h4 img {
	width: 30%;
}
#cast .cast-wrap2 {
	width: 70%;
	height: auto;
	margin: 0 15%;
	padding: 3vw 0 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#cast .cast-wrap2 a {
	display: block;
	width: 25%;
	height: auto;
	margin: 0 2% 3vw;
	text-decoration: none;
}
#cast .cast-wrap2 a:nth-child(1) ,
#cast .cast-wrap2 a:nth-child(6) ,
#cast .cast-wrap2 a:nth-child(8) {
	margin: 0 2% 3vw 20%;
}
#cast .cast-wrap2 a:nth-child(2) ,
#cast .cast-wrap2 a:nth-child(7) ,
#cast .cast-wrap2 a:nth-child(9) {
	margin: 0 20% 3vw 2%;
}
#cast .cast-wrap3 {
	width: 70%;
	height: auto;
	margin: 0 15%;
	padding: 3vw 0 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#cast .cast-wrap3 a {
	display: block;
	width: 32%;
	height: auto;
	margin: 0 2% 3vw;
	text-decoration: none;
}
#cast .cast-wrap1 a:hover , 
#cast .cast-wrap2 a:hover , 
#cast .cast-wrap3 a:hover {
	animation: flash 1.5s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast .cast-wrap1 {
		width: 90%;
		height: auto;
		margin: 0 5%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast .cast-wrap2 {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 8vw 0 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast .cast-wrap3 {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 8vw 0 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		background-color: #fff;
	}
	#cast h2 {
		width: 90%;
		height: auto;
		margin: 0 5% 10vw;
		padding: 0;
	}
	#cast h2 img {
		width: 30%;
	}
	#cast #cast-upper {
		width: 100%;
		height: auto;
		background-color: #e6f6e8;
		padding: 10vw 0 5vw;
		position: relative;
	}
	#cast h3 {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		position: absolute;
		top: 0;
		transform: translateY(-50%);
	}
	#cast h3 img {
		width: 30%;
	}
	#cast .cast-wrap1 {
		width: 100%;
		height: auto;
		margin: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast .cast-wrap1 a {
		display: block;
		width: 42%;
		height: auto;
		margin: 0 2% 5vw;
		text-decoration: none;
	}
	#cast .cast-wrap1 a img {
		display: block;
		width: 100%;
		height: auto;
	}
	#cast a .name {
		width: 100%;
		height: auto;
		text-align: center;
		color: #000;
		font-size: 3.5vw;
		font-weight: bold;
	}
	#cast a .role {
		width: 100%;
		height: auto;
		text-align: center;
		color: #00b6a7;
		font-size: 3vw;
		font-weight: bold;
	}
	#cast h4 {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 6vw 0 0;
	}
	#cast h4 img {
		width: 45%;
	}
	#cast .cast-wrap2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 6vw 0 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast .cast-wrap2 a {
		display: block;
		width: 29%;
		height: auto;
		margin: 0 2% 5vw;
		text-decoration: none;
	}
	#cast .cast-wrap2 a:nth-child(1) ,
	#cast .cast-wrap2 a:nth-child(6) ,
	#cast .cast-wrap2 a:nth-child(8) {
		margin: 0 2% 3vw 15%;
	}
	#cast .cast-wrap2 a:nth-child(2) ,
	#cast .cast-wrap2 a:nth-child(7) ,
	#cast .cast-wrap2 a:nth-child(9) {
		margin: 0 15% 3vw 2%;
	}
	#cast .cast-wrap3 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 8vw 0 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast .cast-wrap3 a {
		display: block;
		width: 42%;
		height: auto;
		margin: 0 2% 5vw;
		text-decoration: none;
	}

}



/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 11000;
}
.modal__bg {
	background:#fff;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 1;
}
.prof__content {
    width: 100%;
	height: 95%;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
	scrollbar-width: none;
}
.prof__content::-webkit-scrollbar {
    width: 0px;
}
.prof__content .prof-bg {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
.prof__content .prof-bg img {
	display: inline-block;
	width: 20%;
}
.prof__content .prof-bg .name {
	width: 100%;
	height: auto;
	text-align: center;
	color: #000;
	font-size: 1.5vw;
	font-weight: bold;
}
.prof__content .prof-bg .role {
	width: 100%;
	height: auto;
	text-align: center;
	color: #00b6a7;
	font-size: 1.2vw;
	font-weight: bold;
}
.prof__content p {
	width: 30%;
	height: auto;
	margin: 0 35%;
	padding: 2vw 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.8vw;
}
.batsu {
	display: block;
	width: 3%;
	height: auto;
	margin: 1vw 48.5%;
}
.batsu img {
	width: 100%;
}
.batsu img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.prof__content {
		width: 100%;
		height: auto;
		padding: 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
		scrollbar-width: none;
	}
	.prof__content::-webkit-scrollbar {
		width: 0px;
	}
	.prof__content .prof-bg {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		text-align: center;
	}
	.prof__content .prof-bg img {
		display: inline-block;
		width: 50%;
	}
	.prof__content .prof-bg .name {
		width: 100%;
		height: auto;
		text-align: center;
		color: #000;
		font-size: 1.4rem;
		font-weight: bold;
	}
	.prof__content .prof-bg .role {
		width: 100%;
		height: auto;
		text-align: center;
		color: #00b6a7;
		font-size: 1.2rem;
		font-weight: bold;
	}
	.prof__content p {
		width: 80%;
		height: auto;
		margin: 0 10%;
		padding: 3vw 0;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.8rem;
	}
	.batsu {
		display: block;
		width: 10%;
		height: auto;
		margin: 1vw 45%;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.prof__content {
		width: 100%;
		height: 90%;
		padding: 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
		scrollbar-width: none;
	}
	.prof__content::-webkit-scrollbar {
		width: 0px;
	}
	.prof__content .prof-bg {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		text-align: center;
	}
	.prof__content .prof-bg img {
		display: inline-block;
		width: 50%;
	}
	.prof__content .prof-bg .name {
		width: 100%;
		height: auto;
		text-align: center;
		color: #000;
		font-size: 1.3rem;
		font-weight: bold;
	}
	.prof__content .prof-bg .role {
		width: 100%;
		height: auto;
		text-align: center;
		color: #00b6a7;
		font-size: 1.2rem;
		font-weight: bold;
	}
	.prof__content p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 3vw 0;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		color: #000;
		font-size: 1.0rem;
		line-height: 1.6rem;
	}
	.batsu {
		display: block;
		width: 10%;
		height: auto;
		margin: 1vw 45%;
	}


}

/* ========================================
スタッフ
========================================== */
#staff {
	width: 100%;
	height: auto;
	padding: 5vw 0;
	background-color: #eeeae5;
}
#staff #staff__contents {
	width: 60%;
	height: auto;
	margin: 0 20%;
}
#staff #staff__contents h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
}
#staff #staff__contents h2 img {
	width: 20%;
}
#staff #staff__contents .staff__unit {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
}
#staff #staff__contents .staff__unit .header {
	width: 100%;
	height: auto;
	padding: 1vw 0;
	margin: 0 0 2vw;
	border-top: #bababa 1px solid;
	border-bottom: #bababa 1px solid;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
#staff #staff__contents .staff__unit .header .title {
	width: auto;
	height: auto;
	color: #e85d90;
	font-size: 1.1vw;
	margin-right: 1vw;
	font-weight: bold;
	letter-spacing: 1px;
}
#staff #staff__contents .staff__unit .header .name {
	width: auto;
	height: auto;
	color: #000;
	font-size: 1.8vw;
	font-weight: bold;
	letter-spacing: 1.5px;
}
#staff #staff__contents .staff__unit .photo-txt {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	display: flex;
	justify-content: space-between;
}
#staff #staff__contents .staff__unit .photo-txt .photo {
	width: 28%;
	height: auto;
}
#staff #staff__contents .staff__unit .photo-txt .txt {
	width: 70%;
	height: auto;
	color: #000;
	font-size: 1.2vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}
#staff #staff__contents .staff__unit .com-head {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 1vw 0 0;
	border-top: #bababa 1px solid;
	color: #e85d90;
	font-size: 1.1vw;
	font-weight: bold;
	letter-spacing: 1px;
}
#staff #staff__contents .staff__unit p {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	color: #000;
	font-size: 1.2vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		background-color: #eeeae5;
	}
	#staff #staff__contents {
		width: 90%;
		height: auto;
		margin: 0 5%;
	}
	#staff #staff__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
	}
	#staff #staff__contents h2 img {
		width: 20%;
	}
	#staff #staff__contents .staff__unit {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
	}
	#staff #staff__contents .staff__unit .header {
		width: 100%;
		height: auto;
		padding: 1vw 0;
		margin: 0 0 2vw;
		border-top: #bababa 1px solid;
		border-bottom: #bababa 1px solid;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	#staff #staff__contents .staff__unit .header .title {
		width: auto;
		height: auto;
		color: #e85d90;
		font-size: 1.1rem;
		margin-right: 1.5rem;
		font-weight: bold;
		letter-spacing: 1px;
	}
	#staff #staff__contents .staff__unit .header .name {
		width: auto;
		height: auto;
		color: #000;
		font-size: 1.3rem;
		font-weight: bold;
		letter-spacing: 1.5px;
	}
	#staff #staff__contents .staff__unit .photo-txt {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		display: flex;
		justify-content: space-between;
	}
	#staff #staff__contents .staff__unit .photo-txt .photo {
		width: 28%;
		height: auto;
	}
	#staff #staff__contents .staff__unit .photo-txt .txt {
		width: 70%;
		height: auto;
		color: #000;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
	#staff #staff__contents .staff__unit .com-head {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 1vw 0 0;
		border-top: #bababa 1px solid;
		color: #e85d90;
		font-size: 1.1rem;
		font-weight: bold;
		letter-spacing: 1px;
	}
	#staff #staff__contents .staff__unit p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
}


/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#staff #staff__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
	}
	#staff #staff__contents h2 img {
		width: 35%;
	}
	#staff #staff__contents .staff__unit {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
	}
	#staff #staff__contents .staff__unit .header {
		width: 100%;
		height: auto;
		padding: 2vw 0;
		margin: 0 0 5vw;
		border-top: #bababa 1px solid;
		border-bottom: #bababa 1px solid;
		display: flex;
		justify-content: flex-start;
		align-items: center !important;
		flex-wrap: wrap;
	}
	#staff #staff__contents .staff__unit .header .title {
		width: auto;
		height: auto;
		margin: 0;
		color: #e85d90;
		font-size: 1.1rem;
		margin-right: 1.5rem;
		font-weight: bold;
		letter-spacing: 1px;
	}
	#staff #staff__contents .staff__unit .header .name {
		width: auto;
		height: auto;
		color: #000;
		font-size: 1.6rem;
		font-weight: bold;
		letter-spacing: 1.5px;
	}
	#staff #staff__contents .staff__unit .photo-txt {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#staff #staff__contents .staff__unit .photo-txt .photo {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#staff #staff__contents .staff__unit .photo-txt .photo img {
		width: 60%;
	}
	#staff #staff__contents .staff__unit .photo-txt .txt {
		width: 100%;
		height: auto;
		color: #000;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}

}


/* ========================================
レシピ
========================================== */
#recipe {
	width: 100%;
	height: auto;
	padding: 5vw 0 0;
	background-color: #fff;
}
#recipe #recipe__contents {
	width: 100%;
	height: auto;
	padding: 3vw 0 5vw;
	background-image: url(../img/HF-recipe-bg-pc.jpg);
	background-repeat: repeat-y;
	background-size: 100% auto;
	background-position: center center;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#recipe #recipe__contents h2 {
	width: 91%;
	height: auto;
	margin: 0 4.5% 3vw;
	padding: 0;
}
#recipe #recipe__contents h2 img {
	width: 15%;
	height: auto;
}
#recipe #recipe__contents .recipe-unit {
	width: 45%;
	height: auto;
	margin: 8vw 2% 0;
	padding: 0;
	position: relative;
}
#recipe #recipe__contents .recipe-unit .recipe-image {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
#recipe #recipe__contents .recipe-unit .recipe-image img {
	width: 100%;
	height: auto;
}
#recipe #recipe__contents .recipe-unit #recipe-item1 {
	width: 24%;
	height: auto;
	position: absolute;
	top: 3%;
	right: 0%;
	animation: recipe-item1 3s infinite;
}
@keyframes recipe-item1 {
	0% {transform: rotate(-3deg) translateY(-100%);}
	50% {transform: rotate(3deg) translateY(-100%);}
	100% {transform: rotate(-3deg) translateY(-100%);}
}
#recipe #recipe__contents .recipe-unit #recipe-item2 {
	width: 32%;
	height: auto;
	position: absolute;
	top: 52%;
	right: 2%;
	z-index: 3;
}
#recipe #recipe__contents .recipe-unit #recipe-item3 {
	width: 70%;
	height: auto;
	position: absolute;
	bottom: 16%;
	right: 2%;
	transform: translateY(35%);
	z-index: 3;
	animation: recipe-item3 3s step-start infinite;
	transform-origin: right center;
}
@keyframes recipe-item3 {
	0% {transform: rotate(-1deg) translateY(35%);}
	50% {transform: rotate(2deg) translateY(35%);}
	100% {transform: rotate(-1deg) translateY(35%);}
}

#recipe #recipe__contents .recipe-unit #recipe-item4 {
	width: 20%;
	height: auto;
	position: absolute;
	top: 50%;
	right: 15%;
	z-index: 3;
	animation: recipe-item4 2.0s ease infinite;
	transform-origin: left bottom;
}
@keyframes recipe-item4 {
	0% {transform: rotate(-3deg);}
	50% {transform: rotate(0deg);}
	100% {transform: rotate(-3deg);}
}

#recipe #recipe__contents .recipe-unit #recipe-item5 {
	width: 80%;
	height: auto;
	position: absolute;
	bottom: 0%;
	left: 8%;
	z-index: 3;
	animation: recipe-item5 2s ease-in-out infinite;
}
@keyframes recipe-item5 {
	0% {transform: translateY(15%);}
	50% {transform: translateY(18%);}
	100% {transform: translateY(15%);}
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#recipe {
		width: 100%;
		height: auto;
		padding: 10vw 0 0;
		background-color: #fff;
	}
	#recipe #recipe__contents {
		width: 100%;
		height: auto;
		padding: 6vw 0 15vw;
		background-image: url(../img/HF-recipe-bg-sp.jpg);
		background-repeat: repeat-y;
		background-size: 100% auto;
		background-position: center center;
		position: relative;
	}
	#recipe #recipe__contents h2 {
		width: 90%;
		height: auto;
		margin: 0 5% 3vw;
		padding: 0;
	}
	#recipe #recipe__contents h2 img {
		width: 22%;
		height: auto;
	}
	#recipe #recipe__contents .recipe-unit {
		width: 90%;
		height: auto;
		margin: 16vw 5% 0;
		padding: 0;
		position: relative;
	}
	#recipe #recipe__contents .recipe-unit #recipe-item1 {
		width: 20%;
		height: auto;
		position: absolute;
		top: 3%;
		right: 40%;
		animation: recipe-item1 3s infinite;
	}
	#recipe #recipe__contents .recipe-unit #recipe-item3 {
		width: 70%;
		height: auto;
		position: absolute;
		bottom: 0%;
		right: 2%;
		transform: translateY(35%);
		z-index: 3;
		animation: recipe-item3 3s step-start infinite;
		transform-origin: right center;
	}
	@keyframes recipe-item3 {
		0% {transform: rotate(-1deg) translateY(35%);}
		50% {transform: rotate(2deg) translateY(35%);}
		100% {transform: rotate(-1deg) translateY(35%);}
	}

	#recipe #recipe__contents .recipe-unit #recipe-item4 {
		width: 20%;
		height: auto;
		position: absolute;
		top: 50%;
		right: 15%;
		z-index: 3;
		animation: recipe-item4 2.0s ease infinite;
		transform-origin: left bottom;
	}
	@keyframes recipe-item4 {
		0% {transform: rotate(-3deg);}
		50% {transform: rotate(0deg);}
		100% {transform: rotate(-3deg);}
	}

	#recipe #recipe__contents .recipe-unit #recipe-item5 {
		width: 80%;
		height: auto;
		position: absolute;
		bottom: 0%;
		left: 8%;
		z-index: 3;
		animation: recipe-item5 2s ease-in-out infinite;
	}


}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#recipe #recipe__contents h2 {
		width: 90%;
		height: auto;
		margin: 0 5% 3vw;
		padding: 0;
	}
	#recipe #recipe__contents h2 img {
		width: 40%;
		height: auto;
	}
	#recipe #recipe__contents .recipe-unit {
		width: 98%;
		height: auto;
		margin: 16vw 1% 0;
		padding: 0;
		position: relative;
	}

}


/* ========================================
マップ
========================================== */
#map {
	width: 100%;
	height: auto;
	padding: 5vw 0;
	background-color: #fff;
}
#map #map-area {
	width: 50%;
	height: auto;
	margin: 0 25%;
	position: relative;
}
#map #map-area #map-image {
	width: 100%;
	height: auto;
}
#map #map-area h2 {
	width: 20%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}
#map #map-area #map-txt {
	width: 60%;
	height: auto;
	position: absolute;
	top: 5%;
	left: 0;
	color: #000;
	font-size: 1.2vw;
	font-weight: bold;
	line-height: 2vw;
	letter-spacing: 1.5px;
}
#map #map-area #spots-wrap {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#map #map-area #spots-wrap .spot {
	width: 48%;
	height: auto;
	margin: 1vw 0;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#map #map-area {
		width: 90%;
		height: auto;
		margin: 0 5%;
		position: relative;
	}
	#map #map-area #map-txt {
		width: 60%;
		height: auto;
		position: absolute;
		top: 4%;
		left: 0;
		color: #000;
		font-size: 1.2rem;
		font-weight: bold;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
	#map #map-area #spots-wrap {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#map #map-area #spots-wrap .spot {
		width: 48%;
		height: auto;
		margin: 1vw 0;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#map {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		background-color: #fff;
	}
	#map #map-area h2 {
		width: 25%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 5%;
	}
	#map #map-area {
		width: 90%;
		height: auto;
		margin: 0 5%;
		position: relative;
	}
	#map #map-area #map-txt {
		width: 60%;
		height: auto;
		position: absolute;
		top: 13vw;
		left: 5%;
		color: #000;
		font-size: 0.6rem;
		font-weight: bold;
		line-height: 1.0rem;
		letter-spacing: 1.5px;
	}
	#map #map-area #spots-wrap {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#map #map-area #spots-wrap .spot {
		width: 95%;
		height: auto;
		margin: 3vw 0;
	}
}


/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: relative;
	overflow: hidden;
}
footer #footer-upper {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	background-color: #fff;
}
footer #footer-upper #footer-upper-inner {
	width: 60%;
	height: auto;
	margin: 0 20%;
}
footer #footer-upper #footer-upper-inner #theater-banner {
	width: 20%;
	height: auto;
	margin: 0 0 5vw;
}
footer #footer-upper #footer-upper-inner #link-banners {
	width: 60%;
	height: auto;
	margin: 0 0 3vw;
	display: flex;
	justify-content: flex-start;
}
footer #footer-upper #footer-upper-inner #link-banners a {
	display: block;
	width: 45%;
	height: auto;
	margin-right: 2%;
}
footer #footer-upper #footer-upper-inner a:hover {
	animation: flash 1.5s;
} 
footer #footer-lower {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 3vw 0;
	background-color: #e85d90;
}
footer #footer-lower #footer-lower-inner {
	width: 60%;
	height: auto;
	margin: 0 20%;
}
footer #footer-lower #footer-lower-inner #foot-billing {
	width: 100%;
	height: auto;
}
footer #footer-lower #footer-lower-inner #foot-logo {
	width: 100%;
	height: auto;
	padding: 10vw 0 5vw;
	text-align: center;
}
footer #footer-lower #footer-lower-inner #foot-logo img {
	width: 40%;
	height: auto;
}


@media (max-width: 1024px) {
	footer #footer-upper {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		background-color: #fff;
	}
	footer #footer-upper #footer-upper-inner {
		width: 70%;
		height: auto;
		margin: 0 15%;
	}
	footer #footer-upper #footer-upper-inner #theater-banner {
		width: 40%;
		height: auto;
		margin: 0 0 5vw;
	}
	footer #footer-upper #footer-upper-inner #link-banners {
		width: 90%;
		height: auto;
		margin: 0 0 3vw;
		display: flex;
		justify-content: flex-start;
	}
	footer #footer-upper #footer-upper-inner #link-banners a {
		display: block;
		width: 45%;
		height: auto;
		margin-right: 2%;
	}
	footer #footer-upper #footer-upper-inner a:hover {
		animation: flash 1.5s;
	} 
	footer #footer-lower {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 6vw 0;
		background-color: #e85d90;
	}
	footer #footer-lower #footer-lower-inner {
		width: 70%;
		height: auto;
		margin: 0 15%;
	}
	footer #footer-lower #footer-lower-inner #foot-billing {
		width: 100%;
		height: auto;
	}
	footer #footer-lower #footer-lower-inner #foot-logo {
		width: 100%;
		height: auto;
		padding: 10vw 0 5vw;
		text-align: center;
	}
	footer #footer-lower #footer-lower-inner #foot-logo img {
		width: 50%;
		height: auto;
	}
}
@media (max-width: 600px) {
	footer #footer-upper {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		background-color: #fff;
	}
	footer #footer-upper #footer-upper-inner {
		width: 90%;
		height: auto;
		margin: 0 5%;
	}
	footer #footer-upper #footer-upper-inner #theater-banner {
		width: 60%;
		height: auto;
		margin: 0 20% 10vw;
	}
	footer #footer-upper #footer-upper-inner #link-banners {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		display: flex;
		justify-content: center;
	}
	footer #footer-upper #footer-upper-inner #link-banners a {
		display: block;
		width: 45%;
		height: auto;
		margin: 0 2%;
	}
	footer #footer-upper #footer-upper-inner a:hover {
		animation: flash 1.5s;
	} 
	footer #footer-lower {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 30vw;
		background-color: #e85d90;
	}
	footer #footer-lower #footer-lower-inner {
		width: 90%;
		height: auto;
		margin: 0 5%;
	}
	footer #footer-lower #footer-lower-inner #foot-billing {
		width: 100%;
		height: auto;
	}
	footer #footer-lower #footer-lower-inner #foot-logo {
		width: 100%;
		height: auto;
		padding: 10vw 0 5vw;
		text-align: center;
	}
	footer #footer-lower #footer-lower-inner #foot-logo img {
		width: 70%;
		height: auto;
	}

}



/* ========================================
ダウンロード
========================================== */
#dl-body:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-5;
	width:100%;
	height:100vh;
	background:url(../download/images/LAW-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 1;
}
#dl-bg-item {
	width: 30%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 35%;
}

  .dlButton {
	  background-color:transparent;
	  border:1px solid #000;
	  display:inline-block;
	  cursor:pointer;
	  color:#000;
	  font-family:Arial;
	  width: 16vw;
	  font-size:1.1vw;
	  padding:10px 0;
	  text-align: center;
	  text-decoration:none;
	  font-weight: bold;
	  font-feature-settings:"palt";
  }
  .dlButton:hover {
	  background-color:#000;
	  border:1px solid #000;
	  color:#fff;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#000 !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#000;
	  color:#fff !important;
  }
  .dl-contents {
	  width:80%;
	  height:auto;
	  padding:20px 10% 80px;
	  font-size:1.3em;
  }  
  .dl-contents h2 {
	  width:100%;
	  text-align:center;
	  padding:0;
	  color:#fff;
	  font-size:2em;
	  margin-bottom:30px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:25%;
  }  
  #dl-wrapper {
	  width:100%;
	  height:auto;
	  text-align:center;
	  margin-bottom:20px;
  }
  #dl-wrapper .dl-txt2 {
	width:100%;
	height:auto;
	text-align:center;
  }
  #dl-wrapper .dl-txt2 img {
	width: 30%;
  }
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#000;
	  margin:30px 0 5px;
	  font-size: 1.1em;
	  font-weight: bold;
	letter-spacing: 1.5px;
  }
  #dl-wrapper .dl-txt1 span {
	display: inline-block;
	position: relative;
	z-index: 2;
  }
  
  #dl-wrapper .dl-txt1 a {
	  color:#000;
  }
  
  #dl-wrapper .dl-txt1 img {
	  width:30%;
  }
  
  #dl-wrapper .sikiri {
	  width:100%;
	  height:auto;
	  padding:40px 0 20px;
	  text-align:center;
  }
  
  #dl-wrapper .sikiri img {
	  width:10%;
  }
  
  
  #dl-wrapper .dl-uline {
	  display:inline-block;
	  width:70%;
	  margin:20px 0 30px;
  }
  
  #dl-wrapper .dl-uline img {
	  width:100%;
	  height:60px;
  }
  .dl-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 10vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }  
  .dl-wrap .img-box {
	  width:22%;
	  height:auto;
	  padding:0 1%;
	  margin:50px 1%;
	  color:#000;
	  text-align: center;
	  font-size: 1.0em;
	  font-weight: bold;
	  letter-spacing: 1.4px;
  }  
  .img-box img {
	  width:90%;
  }
  .dl-wrap .img-box span {
	display: inline-block;
	font-size: 0.7em;
	line-height: 1.3em;
  }


  .longname {
	  font-size:0.75em;
  }
  
  footer.dl-footer {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:50px 0 0;
	  background:#000;
  }
  
  footer.dl-footer .footimg {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:0;
  }
  
  footer.dl-footer .footimg img {
	  width:100%;
	  height:auto;
	  vertical-align:bottom;
  }


