@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_NVY : #00294d;
	--color_YLW : #ffea00;
	--color_GRN : #00d733;
	--color_BGRN : #006e9d;
	/* --color_RED : #e60033; */
	/* --color_BLU : #0068b7; */
	--fontS : clamp(14px,2.2vw,22px);
	--fontM : clamp(16px,2.8vw,28px);
	--fontL : clamp(20px,4vw,38px);
	--gap_160px : clamp(54px, 24vw, 160px);
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: inherit;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	/* font-size: clamp(16px, 2.2vw, 20px); */
	font-size: clamp(16px, 2.2vw, 18px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	/* font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	color: #92a4ff;
	word-break: break-all;
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
}
.arial {
	font-family: Arial;
}
.font_yusei-magic {
	font-family: "Yusei Magic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.mochiy-pop-p-one-regular {
	font-family: "Mochiy Pop P One", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.dela {
    font-family: 'Dela Gothic One', cursive;
    font-weight: 100;
}
.dotgothic {
	font-family: "DotGothic16", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}
.dela em,
.dotgothic em {
	font-weight: normal !important;
}

.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.red {
	color: var(--color_RED) !important;
}
.blue {
	color: var(--color_BLU) !important;
}
.ylw {
	color: var(--color_YLW) !important;
}
.lgry {
	color: #999;
}
.line_ylw {
	background: linear-gradient(180deg,transparent 70%, #ffea00 70%, #ffea00 100%);
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1600px;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_80px);
}
.pd_b {
	padding-bottom: var(--gap_80px);
}
.cont_close {
    position: relative;
}
.cont_close::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 999;
}
.stanby, .stanby a {
    position: relative;
}
.stanby a img {
	filter: blur(1px);
}
.stanbyText {
	display: none;
}
.stanby .stanbyText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,50%);
    display: -webkit-flex;
    display: flex;
    align-items: center;
	text-align: center;
	z-index: 100;
}
.stanby .stanbyText P {
	color: #fff;
	text-shadow: 0 0 0.2em #000,0 0 0.2em #000,0 0 0.3em #000,0 0 0.3em #000,0 0 0.3em #000;
	margin-inline: auto;
	padding-inline: var(--gap_16px);
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.col2 {
	column-gap: 4%;
}
.flex.col2 .flex_item {
	width: calc(96% / 2);
}
.flex.col3 {
	column-gap: 3%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(94% / 3);
}
.flex.col4 {
	column-gap: 2%;
	justify-content: unset;
}
.flex.col4 .flex_item {
	width: calc(90% / 6);
}
.flex.col4 .flex_item:nth-child(n + 7) {
	margin-top: var(--gap_48px);
}
@media screen and (max-width:767px) {
	.flex.col2,
	.flex.col3 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(90%, 480px);
	}
	.flex.col3 .flex_item {
		width: calc(97% / 2);
	}
	.flex.col2 .flex_item:not(:first-of-type),
	.flex.col3 .flex_item:not(:first-of-type) {
		margin-top: var(--gap_48px);
	}
	.flex.col4 .flex_item {
		width: calc(94% / 4);
	}
	.flex.col4 .flex_item:nth-child(n + 5) {
        margin-top: var(--gap_48px);
    }
}
@media screen and (max-width:479px) {
	.flex.col3 .flex_item {
		width: min(80%, 480px);
	}
	.flex.col4 .flex_item {
		width: calc(96% / 3);
	}
	.flex.col4 .flex_item:nth-child(n + 4) {
        margin-top: var(--gap_48px);
    }
}

.flex.col_3_1 {
	align-items: center;
}
.flex.col_3_1 .flex_item.w3 {
	width: calc(100% / 4 * 3 );
	padding-right: var(--gap_64px);
}
.flex.col_3_1 .flex_item.w1 {
	width: calc(100% / 4 * 1 );
}
@media screen and (max-width: 1279px) {
	.flex.col_3_1 .flex_item.w3 {
		width: calc(100% / 3 * 2 );
		padding-right: var(--gap_48px);
	}
	.flex.col_3_1 .flex_item.w1 {
		width: calc(100% / 3 * 1 );
	}
}
@media screen and (max-width: 999px) {
	.flex.col_3_1 {
		align-items: flex-start;
	}
	.flex.col_3_1 .flex_item.w3 {
		padding-right: var(--gap_24px);
	}
}
@media screen and (max-width: 767px) {
	.flex.col_3_1 {
		flex-direction: column-reverse;
	}
	.flex.col_3_1 .flex_item.w3,
	.flex.col_3_1 .flex_item.w1 {
		width: 100%;
	}
	.flex.col_3_1 .flex_item.w3 {
		padding-right: 0;
		margin-top: var(--gap_32px);
	}
	.flex.col_3_1 .flex_item.w1 {
		text-align: center;
	}
	.flex.col_3_1 .flex_item.w1 img {
		max-width: 380px;
	}
}

.grid {
	display: grid;
}
.grid.col2 {
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gap_64px);
}
.grid.col3 {
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap_64px);
}
@media screen and (max-width: 767px) {
	.grid.col2 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

.img_thumb {
	width: min(100%,300px);
}
.img_thumb a {
	color: #fff !important;
	display: block;
	position: relative;
}
.img_thumb a::after {
	font-size: clamp(18px, 3vw, 22px);
	color: var(--myColor01);
	position: absolute;
	content: '\f00e';
	bottom: -0.5em;
	right: -0.5em;
	text-shadow: 0 0 0.2em var(--color_BLK),0 0 0.2em var(--color_BLK),0 0 0.2em var(--color_BLK),0 0 0.3em var(--color_BLK),0 0 0.3em var(--color_BLK);
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-weight: bold;
	padding: var(--gap_8px) var(--gap_16px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}

.side_nav {
	text-align: center;
	margin-bottom: var(--gap_32px);
}
.side_nav a {
	font-size: clamp(24px,4vw,38px);
	color: #fff !important;
	text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
	margin-block: var(--gap_8px);
	display: inline-block;
}
@media screen and (max-width: 479px) {
	.side_nav {
		margin-bottom: var(--gap_16px);
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.side_nav > div {
		display: inline-block;
		margin-inline: var(--gap_16px);
	}
}

#btn_pagetop,
#btn_pagetop2 {
	bottom: var(--gap_16px);
    position: fixed;
    z-index: 1100;
}
#btn_pagetop {
	right: clamp(8px, 2vw, 16px);
}
#btn_pagetop2 {
	left: var(--gap_24px);
}
#btn_pagetop a,
#btn_pagetop2 a {
	display: block;
}
#btn_pagetop2 a {
	font-size: clamp(14px,1.8vw,20px);
	text-align: center;
	text-decoration: none;
	text-shadow: 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000;
	line-height: 1.2;
	letter-spacing: 0;
	color: #fff !important;
	padding: var(--gap_8px);
	border: solid 1px var(--color_YLW);
	box-shadow: 0 0 var(--gap_8px) #000;
    /* background: var(--color_RED); */
	background: #214361;
    background: radial-gradient(circle, rgba(33, 67, 97, 1) 0%, rgba(17, 44, 68, 1) 100%);
    filter: sepia(0.8);
}
/* #btn_pagetop i {
	padding: var(--gap_16px) var(--gap_24px);
} */
#btn_pagetop2 > i {
	font-size: 1.4em;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000;
	color: #fff;
	margin-bottom: var(--gap_8px);
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999;
}
#btn_pagetop a img {
	width: clamp(40px, 6vw, 80px);
	filter: drop-shadow(0px 0px 4px var(--color_NVY));
}
#btn_pagetop2 a img {
	width: clamp(120px, 12vw, 160px);
}
@media screen and (max-width: 479px) {
	.btm_btn_area {
		position: relative;
	}
	.btm_btn_area::after {
		position: fixed;
		/* content: ""; */
		width: 100%;
		background-color: #000;
		background: linear-gradient(90deg, transparent 0%, #000 50%, transparent 100%);
		bottom: 0;
		height: 60px;
		z-index: 1010;
	}
}

.hidden {
	display: none !important;
}
.mob {
	display: none;
}
@media screen and (max-width: 899px) {
	.mob {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 1000px;
    margin: var(--gap_80px) auto 0;
    /* border: #000 3px solid; */
    /* padding: 15px; */
	box-shadow: 0 0 var(--gap_16px) var(--color_NVY);
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.tver_area {
    text-align: center;
    margin-top: var(--gap_32px);
}
.tver_info {
    margin-bottom: var(--gap_8px);
}
.tver_area a {
    width: clamp(150px, 30vw, 280px);
    margin: 0 auto;
    display: block;
}
.tver_info_btm {
    margin-top: var(--gap_8px);
}
.tver_info,
.tver_info_btm {
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
}

/* =============================================================
    【content】ブロック　
============================================*/
.bnr_cam {
	width: min(90%,800px);
	margin-inline: auto;
	box-shadow: 0 0 var(--gap_16px) var(--color_NVY);
}
.sec_wrap {
	padding-top: var(--gap_160px);
}
.sec_title {
	font-size: var(--fontL);
	font-family: "Shippori Mincho", serif;
    font-weight: 800;
	color: var(--color_NVY);
	text-align: center;
	text-shadow: 0 0 0.4em var(--color_VIO);
	line-height: 1.2;
	margin-bottom: var(--gap_48px);
}

.read p {
	margin-block: var(--gap_8px);
}
.read p:first-of-type {
	margin-top: 0;
}

/* =============================================================
    【KV】ブロック　
============================================*/
#page {
	position: relative;
}
.page_bg {
	background: url(../images/kv.png) center top/100% no-repeat,
		url(../images/bg_leaf.jpg) center top/100% repeat-y;
	position: sticky;
    top: 0;
    height: 100vh;
}
.cont_wrap {
	position: relative;
    z-index: 999;
    margin-top: -100vh;
}

.logo_wrap {
	font-size: 0em;
	width: min(70%,991px);
	margin-inline: auto;
	position: relative;
	z-index: 999;
}
.logo {
	background: url(../images/logo.png) center center/contain no-repeat;
	padding-top: calc(621 / 991 * 100%);
}
.kv_cast {
	width: min(100%,1423px);
	margin-inline: auto;
	padding-top: var(--gap_24px);
	margin-bottom: max(-18vw,-280px);
}

/* =============================================================
    【intro】ブロック　
============================================*/
#intro {
	padding-bottom: var(--gap_80px);
}
.oadate {
	font-size: clamp(20px,8vw,88px);
	line-height: 1.1;
	text-align: center;
	text-shadow: 0 0 0.3em var(--color_NVY);
	color: #fff;
	margin-top: var(--gap_24px);
}
.oadate em {
	color: var(--color_YLW);
	display: inline-block;
}
.oadate em.big {
	font-size: 1.3em;
}

/* =============================================================
    【overview】ブロック　
============================================*/
#overview {
	text-align: center;
	color: #fff;
	padding-block: var(--gap_64px);
	/* box-shadow: 0 0 var(--gap_16px) var(--color_NVY); */
	position: relative;
	z-index: 100;
	background: #006E9D;
	background: linear-gradient(180deg,transparent 0%, transparent 30%, rgba(0, 110, 157, 1) 50%, rgba(0, 41, 77, 1) 100%);
	/* background: linear-gradient(180deg,rgba(0, 110, 157, 1) 0%, rgba(0, 110, 157, 1) 25%, rgba(0, 41, 77, 1) 100%); */
	background-size: 200% 200%;
	animation: Grad 4s ease infinite;
	overflow: hidden;
}
@keyframes Grad {
    0%{background-position:50% 50%;}
    50%{background-position:50% 100%;}
    100%{background-position:50% 50%;}
}

#overview > .inner_wrap {
	position: relative;
	background: url(../images/bubble01.png) left 5% top 30%/min(16vw,132px) no-repeat,
		url(../images/bubble02.png) right 5% top/min(16vw,145px) no-repeat;
}

#overview .bubble01 {
	background: url(../images/bubble02.png) left top/contain no-repeat;
	padding-top: calc(380 / 145 * 100%);
	animation: overview_bubble01 6s ease infinite;
	position: absolute;
    width: min(30vw,145px);
	top: 0;
    left: 0;
	opacity: 0;
}
@keyframes overview_bubble01 {
    0%{
		top: 100%;
		left: 0;
		opacity: 0;
	}
    2.5%{
		top: 100%;
		left: 0;
		opacity: 1;
	}
    50%,100%{
		top: 0;
		left: -5%;
		opacity: 0;
	}
}
#overview .bubble02 {
	background: url(../images/bubble01.png) right top/contain no-repeat;
	padding-top: calc(384 / 132 * 100%);
	animation: overview_bubble02 6s ease infinite 2s;
	position: absolute;
    width: min(30vw,132px);
    top: 0;
    right: 0;
    opacity: 0;
}
@keyframes overview_bubble02 {
    0%{
		top: 100%;
		right: 0;
		opacity: 0;
	}
    2.5%{
		top: 100%;
		right: 0;
		opacity: 1;
	}
    50%,100%{
		top: 0;
		right: -5%;
		opacity: 0;
	}
}

.summary {
	font-size: var(--fontS);
	font-weight: bold;
	line-height: 1.6;
}
.summary_title {
	font-size: var(--fontL);
	line-height: 1.1;
	margin-bottom: var(--gap_32px);
}
.summary .read em {
	font-size: 1.3em;
	color: var(--color_YLW);
}

.trailer {
	margin-top: var(--gap_48px);
}
.trailer_title {
	font-size: var(--fontL);
	color: var(--color_NVY);
	margin-bottom: var(--gap_24px);
	padding-inline: var(--gap_8px);
	background-color: var(--color_YLW);
	display: inline-block;
}
.trailer .read {
	font-size: var(--fontM);
	letter-spacing: 1px;
}

.loca_photo {
	margin-top: var(--gap_48px);
}
.swiper_photo .swiper-slide {
	padding-inline: var(--gap_24px);
	padding-block: var(--gap_8px);
	animation: fuwafuwa 2s infinite 0s;
}
.swiper_photo .swiper-slide:nth-of-type(2n) {
	/* margin-top: var(--gap_32px); */
	animation: fuwafuwa2 2s infinite 0s;
}
.swiper_photo .swiper-slide img {
	border: solid var(--gap_8px) #fff !important;
}
@media screen and (max-width: 767px) {
	.trailer .read {
		text-align: left;
	}
	.trailer .read .ib {
		display: inline;
	}
}

/* =============================================================
    【cast】ブロック　
============================================*/
#cast {
	background: url(/sp/numarase/images/bg_leaf.jpg) center center/100% repeat-y;
	overflow: hidden;
}

#cast .bg_wrap {
	padding-block: var(--gap_80px);
	background: #006E9D;
	background: linear-gradient(180deg,transparent 0%, transparent 30%, rgba(0, 110, 157, 1) 50%, rgba(0, 41, 77, 1) 100%);
	/* background: linear-gradient(180deg,rgba(0, 110, 157, 1) 0%, rgba(0, 110, 157, 1) 25%, rgba(0, 41, 77, 1) 100%); */
	background-size: 200% 200%;
	animation: Grad_cast 4s ease infinite;
}
@keyframes Grad_cast {
    0%{background-position:50% 50%;}
    50%{background-position:50% 100%;}
    100%{background-position:50% 50%;}
}

#cast .bg_wrap > .inner_wrap {
	position: relative;
	background: url(../images/bubble01.png) left 5% top 10%/min(18vw,132px) no-repeat,
	url(../images/bubble02.png) right 5% top 40%/min(18vw,145px) no-repeat;
}

#cast .bubble01 {
	background: url(../images/bubble02.png) left top/contain no-repeat;
	padding-top: calc(380 / 145 * 100%);
	animation: bubble01 10s ease infinite;
	position: absolute;
    width: min(30vw,145px);
    top: 0;
    left: 0;
    opacity: 0;
}
@keyframes bubble01 {
    0%{
		top: 100%;
		left: 0;
		opacity: 0;
	}
    5%{
		left: -2%;
		opacity: 1;
	}
    10%{
		left: 2%;
	}
    50%{
		top: 0;
		left: -5%;
		opacity: 0;
	}
}
#cast .bubble02 {
	background: url(../images/bubble01.png) right top/contain no-repeat;
	padding-top: calc(384 / 132 * 100%);
	animation: bubble02 10s ease infinite 2s;
	position: absolute;
    width: min(30vw,132px);
    top: 0;
    right: 0;
    opacity: 0;
}
@keyframes bubble02 {
    0%{
		top: 100%;
		right: 0;
		opacity: 0;
	}
    5%{
		right: -2%;
		opacity: 1;
	}
    10%{
		right: 2%;
	}
    50%{
		top: 0;
		right: -5%;
		opacity: 0;
	}
}

.title_cast,
.title_cast_sub {
	display: -webkit-flex;
	display: flex;
}
.title_cast {
	justify-content: right;
	align-items: flex-start;
}
.title_cast_sub {
	justify-content: center;
	align-items: flex-end;
}

.cast_01 {
	text-align: left;
	margin-bottom: clamp(-200px, -14vw, -54px);
}
.cast_02 {
	text-align: right;
	margin-bottom: var(--gap_48px);
}

.cast_img {
	text-align: center;
	display: inline-block;
	position: relative;
	z-index: 1;
}
.cast_name {
	font-size: clamp(18px,3vw,38px);
	font-weight: bold;
	font-family: "Mochiy Pop P One", sans-serif;
	font-weight: 400;
	line-height: 1.1;
	color: var(--color_BGRN);
	padding: var(--gap_8px) var(--gap_16px);
	width: min(70%, 300px);
	display: block;
	background-color: rgb(255,255,255,90%);
	border: solid calc(var(--gap_8px) / 2) var(--color_BGRN);
	border-radius: var(--gap_8px);
	position: absolute;
	bottom: clamp(16px, 4vw, 48px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}
.cast_name em {
	font-weight: 400 !important;
	color: var(--color_GRN);
}
.cast_name small {
	font-size: clamp(12px, 1.6vw,16px);
	line-height: 1;
	margin-top: calc(var(--gap_8px) / 2);
	display: block;
}

.cast_sub_wrap .cast_name {
	font-size: clamp(16px,2.4vw,28px);
	width: min(75%, 250px);
	bottom: clamp(16px, 3vw, 48px);
}

.title_cast img {
	width: clamp(120px,24vw,320px) !important;
	margin-top: var(--gap_32px);
	margin-right: var(--gap_32px);
}
.cast_img {
	width: min(100%,594px);
}
.title_cast_sub img {
	width: clamp(100px,22vw,280px) !important;
	margin-right: var(--gap_160px);
}

@media screen and (max-width: 767px) {
	.title_cast {
		justify-content: center;
	}
	.title_cast img {
		margin: 0;
	}
	.cast_01 {
		margin-bottom: var(--gap_32px);
	}
	.title_cast_sub img {
		margin-right: 0;
	}
}

/* =============================================================
    【swiper】ブロック ※スライド
============================================*/
.slide-paused:hover .slideshow {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper-wrapper li {
	list-style: none;
}
.swiper-slide {
	padding: 0 0;
}
/* @media screen and (max-width: 479px) {
	.swiper-slide {
		padding: 0 5px;
	}
} */



/* =======================================
    アニメーション
=======================*/
.pikapika {
	animation: pikapika 2s steps(1) infinite;
}
@keyframes pikapika {
	0%,100% {
	opacity: 0.2;
   }
	50% {
	opacity: 1;
   }
}

.fuwafuwa {
	animation: fuwafuwa 2s infinite 0s;
}
.fuwafuwa2 {
	animation: fuwafuwa2 2s infinite 0s;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(4px);
   }
	50% {
	transform: translateY(-4px);
   }
	100% {
	transform: translateY(4px);
   }
}
@keyframes fuwafuwa2 {
	0% {
	transform: translateY(-4px);
   }
	50% {
	transform: translateY(4px);
   }
	100% {
	transform: translateY(-4px);
   }
}

.poyopoyo {
    animation: poyopoyo 2s ease-out infinite 1s;
}
.poyopoyo2 {
    animation: poyopoyo 2s ease-out infinite 2s;
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
}

.pikopiko {
	animation: pikopiko 1s steps(2, start) infinite;
}
@keyframes pikopiko {
	0% {
		transform: rotate(2deg);
	}

	to {
		transform: rotate(-2deg);
	}
}

.poyoyon2 {
	animation: poyoyon2 5s ease-in-out infinite;
  }
@keyframes poyoyon2 {
	0%  {
	  transform: scale(1.0, 1.0) translate(0, 0);
	}
	3% {
	  transform: scale(0.98, 0.9) translate(0, 5px);
	}
	6% {
	  transform: scale(1.02, 1.0) translate(0, 8px);
	}
	10% {transform: scale(0.98, 1.05) translate(0, -8px);
	}
	14% {
	  transform: scale(1.0, 0.9) translate(0, 5px);
	}
	20% {
	  transform: scale(1.0, 1.0) translate(0, 0);
	}
	0%, 20% {
	  opacity: 1;
	}
  }

/* 画像の表示アニメーション*/
/* 発火タイミング指示のjs記述も必要 */
  .slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
  &.slidein-left{
      transform: translate(-100%,0);
  }
  &.slidein-right{
      transform: translate(100%,0);
  }
  &.slidein-up{
      transform: translate(0,-100%);
  }
  &.slidein-bottom{
      transform: translate(0,100%);
  }
  &.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}

/* JS 時間指定で表示非表示を制御用 */
.js-time_limited {
    display: none !important;
}
.js-time_limited_fire {
    display: block !important;
}
/* END // JS 時間指定で表示非表示を制御用 */


#tvoHeader,
#tvoFooter {
	position: relative;
	z-index: 1000;
}
.tvo-footer_sp_ad {
	display: none !important;
}
@media only screen and (max-width: 767px) {
    footer.tvo-footer.sp_ad_pad {
        padding-bottom: 0 !important;
    }
}