

/* body
----------------------------------------------- */

body {
	margin: 0;
	padding: 0;
	width: 100%;
	color: #1e1e1e;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	background: #fff;
	overflow: hidden;
}
a {
	color: #1e1e1e;
	text-decoration: underline;
}


/* loading
----------------------------------------------- */

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #fff;
	z-index: 3;
}
.loading__progress {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 65px 0 0 -500px;
	width: 1000px;
	height: 4px;
	border-radius: 4px;
	overflow: hidden;
}
.loading__progress-bar {
	top: 0;
	left: 0;
	margin: 0;
	width: 0;
	height: 4px;
	background: #ed7700;
	z-index: 1;
	transition: width 0.25s;
}
.loading__progress-base {
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 4px;
	background: #f0f0f0;
}

/* loading-complete */

.loading-complete .loading__progress-bar,
.loading-complete .loading__progress-base {
	width: 0;
	transform: translateX(100%);
	transition-property: width, transform;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}


/* mask
----------------------------------------------- */

.mask {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100px;
	background-repeat: no-repeat;
	background-position: center center;
}
.mask-top {
	top: 0;
	background-image: url(images/mask_top.png);
}
.mask-bottom {
	bottom: 0;
	background-image: url(images/mask_bottom.png);
}


/* stripe
----------------------------------------------- */

.stripe {
	background-image: url(images/stripe.png);
	background-size: 60px 60px;
}


/* title
----------------------------------------------- */

.title__label-schedule {
	color: #14b4f0;
}
.title__label-movie {
	color: #a0e614;
}
.title__label-present {
	color: #ff280a;
}


/* intro
----------------------------------------------- */
	
/* ready */

.intro-ready .intro__title {
	transform: translateX(100vw);
}
.intro-ready .intro__title img {
	transform: translateX(100vw);
}
.intro-ready .intro__copy {
	transform: translateX(-100vw);
}
.intro-ready .intro__copy img {
	transform: translateX(-100vw);
}

/* start */

.intro-start .intro__title,
.intro-start .intro__copy {
	transform: translateX(0);
	transition-property: transform;
	transition-duration: 1s;
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.intro-start .intro__copy {
	transform: translateX(0);
	transition-delay: 0.5s;
}
.intro-start .intro__title img,
.intro-start .intro__copy img {
	transform: translateX(0);
	transition-property: transform;
	transition-duration: 2s;
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.intro-start .intro__copy img {
	transition-delay: 0.5s;
}


/* bganim
----------------------------------------------- */

@keyframes bganim {
	100% { background-position: 0 0, 100vw 0; }
}


/* pc
----------------------------------------------- */

@media print, screen and (min-width:1000px) {


	/* body
	----------------------------------------------- */
	
	body {
		padding: 130px 0 0;
	}
	.spbr {
		display: none;
	}
	
	/* conversion
	----------------------------------------------- */
	
	.conversion {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 130px;
		background: #fff;
		box-shadow: 0 0 8px rgba(0,0,0,0.2);
		z-index: 5;
	}
	.conversion__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: auto;
		width: 1000px;
	}
	.conversion a {
		transition: opacity 0.25s;
	}
	.conversion a:hover {
		opacity: 0.7;
	}
	.conversion__logo a {
		display: block;
		width: 140px;
		height: 130px;
		text-indent: 100%;
		white-space: nowrap;
		background: url(images/pc_neco.svg) no-repeat left top;
		background-size: 140px 130px;
		overflow: hidden;
	}
	
	
	/* header
	----------------------------------------------- */

	.header {
		position: relative;
		background-image: url(images/stripe.png), url(images/header_bg.jpg);
		background-position: left top;
		background-repeat: repeat, repeat-x;
		background-size: 60px 60px, auto 470px;
		overflow: hidden;
		animation-name: bganim;
		animation-duration: 50s;
		animation-iteration-count: infinite;
		animation-timing-function: linear;
	}
	.header__inner {
		position: relative;
		margin: auto;
		width: 1000px;
		height: 470px;
	}
	.header__title {
		position: absolute;
		top: 50%;
		left: -5px;
		margin: -180px 0 0;
	}
	.header__image {
		position: absolute;
		top: -35px;
		right: -30px;
	}

	/* ready */

	.header-ready .header__title {
		opacity: 0;
		transform: translateX(300px);
	}
	.header-ready .header__image {
		opacity: 1;
		transform: scale(1.2) translateX(-190px);
	}

	/* start */

	.header-start .header__image {
		opacity: 1;
		transform: scale(1) translateX(-230px);
		transition-property: opacity, transform;
		transition-duration: 0.85s;
		transition-delay: 0.25s;
		transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	/* end */
	
	.header-end .header__title {
		opacity: 1;
		transform: translateX(0);
		transition-property: opacity, transform;
		transition-duration: 0.65s;
		transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	}
	.header-end .header__image {
		transform: scale(1) translateX(0);
		transition-duration: 0.65s;
		transition-delay: 0s;
		transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	}


	/* intro
	----------------------------------------------- */

	.intro {
		position: relative;
		height: 610px;
		background: #fff;
	}
	.intro__inner {
		transform: translateY(25px) rotate(-2.29deg);
	}
	.intro__title {
		position: absolute;
		top: 0;
		left: 50%;
		margin: 0 0 0 -500px;
		width: 1500px;
		height: 300px;
		border-radius: 10px;
		background-color: #a0e614;
	}
	.intro__title img {
		position: absolute;
		top: 40px;
		left: 123px;
	}
	.intro__copy {
		position: absolute;
		top: 340px;
		right: 50%;
		margin: 0 -500px 0 0;
		width: 1500px;
		height: 210px;
		border-radius: 10px;
		background-color: #14b4f0;
	}
	.intro__copy img {
		position: absolute;
		top: 40px;
		right: 200px;
	}
	
	
	/* title
	----------------------------------------------- */

	.title {
		text-align: center;
	}
	.title__label {
		font-size: 60px;
		font-weight: 300;
		font-style: italic;
	}
	.title__text {
		margin: 10px 0 0;
		font-size: 30px;
		font-weight: 700;
		letter-spacing: 5px;
	}
	.title__text-single {
		margin: 60px 0 0;
	}
	
	
	/* schedule
	----------------------------------------------- */

	.schedule {
		position: relative;
		background-color: #ffe600;
	}
	.schedule__inner {
		margin: auto;
		padding: 130px 0;
		width: 1000px;
	}
	

	/* program
	----------------------------------------------- */

	.program {
		position: relative;
		margin: 40px 0 0;
		padding: 50px 0 60px;
		background: #fff;
		border-radius: 10px;
		overflow: hidden;
	}
	.program__header {
		position: absolute;
		top: 0;
		left: 0;
		width: 150px;
		height: 100%;
		color: #fff;
		text-align: center;
		background-color: #a0e614;
	}
	.program__no {
		padding: 35px 0 0;
		font-size: 60px;
		font-weight: 300;
	}
	.program__title {
		margin: 10px 0 0;
		font-size: 30px;
		font-weight: 700;
	}
	.program__summary {
		margin: 0 60px 0 210px;
		font-size: 18px;
		text-align: justify;
		line-height: 30px;
	}
	.program__column {
		display: flex;
		justify-content: space-between;
		margin: 25px 60px 0 210px;
	}
	.program__image {
		order: 2;
		padding: 25px 0 0;
	}

	.program:nth-child(odd) .program__header {
		left: auto;
		right: 0;
	}
	.program:nth-child(odd) .program__summary {
		margin: 0 210px 0 60px;
	}
	.program:nth-child(odd) .program__column {
		margin: 25px 210px 0 60px;
	}
	.program:nth-child(odd) .program__image {
		order: 1;
	}
	.program:nth-child(odd) .spec {
		order: 2;
	}
	
	
	/* spec
	----------------------------------------------- */

	.spec {
		width: 330px;
	}
	.spec__title {
		padding: 25px 0 0;
		color: #ff280a;
		font-size: 16px;
		font-weight: 700;
	}
	.spec__summary {
		padding: 15px 0 0;
		font-size: 16px;
		line-height: 26px;
	}
	
	
	/* movie
	----------------------------------------------- */

	.movie {
		position: relative;
		background-color: #fff;
	}
	.movie__inner {
		padding: 40px 0;
	}
	.movie__area {
		position: relative;
		margin: 60px auto;
		text-align: center;
	}
	.movie__area:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		margin: -100px 0 0;
		width: 100%;
		height: 200px;
		background-color: #14b4f0;
		background-image: url(images/stripe.png);
		background-size: 60px 60px;
	}
	.movie__area iframe {
		position: relative;
		margin: auto;
		width: 700px;
		height: 394px;
		z-index: 1;
	}


	/* twitter
	----------------------------------------------- */

	.twitter {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: auto;
		width: 650px;
	}
	.twitter__button a {
		display: block;
		width: 200px;
		height: 40px;
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		text-align: center;
		text-indent: 20px;
		text-decoration: none;
		line-height: 40px;
		border-radius: 40px;
		background-color: #55acee;
		background-image: url(images/ic_twitter.png);
		background-position: 20px center;
		background-repeat: no-repeat;
		background-size: 15px 12px;
		transition: background-color 0.25s;
	}
	.twitter__button a:hover {
		background-color: #378ed0;
	}
	.twitter__text {
		font-size: 18px;
		font-weight: 700;
		line-height: 30px;
	}
	

	/* present
	----------------------------------------------- */

	.present {
		position: relative;
		background-color: #a0e614;
	}
	.present__inner {
		padding: 130px 0 80px;
	}


	/* box
	----------------------------------------------- */

	.box {
		margin: 60px auto 0;
		width: 1000px;
		border-radius: 10px;
		background-color: #fff;
	}
	.box__inner {
		margin: 0 60px;
		padding: 25px 0 60px;
	}


	/* goods
	----------------------------------------------- */

	.goods__text {
		padding: 25px 0 0;
		font-size: 26px;
		text-align: center;
		line-height: 36px;
	}
	.goods__text-strong {
		font-weight: 700;
	}
	.goods__text-highlight {
		color: #ff280a;
	}
	.goods__text em {
		color: #14b4f0;
	}
	.goods__images {
		display: flex;
		justify-content: space-between;
		margin: 60px 0 0;
		font-size: 0;
	}
	.goods__image {
		display: block;
	}


	/* requirement
	----------------------------------------------- */

	.requirement {
		padding: 35px 0 0;
	}
	.requirement__table {
		width: 100%;
		border-bottom: 1px solid #d2d2d2;
	}
	.requirement__table th,
	.requirement__table td {
		font-size: 16px;
		text-align: left;
		line-height: 26px;
		word-break: break-word;
		vertical-align: top;
		border-top: 1px solid #d2d2d2;
	}
	.requirement__table th {
		padding: 20px;
		width: 150px;
		color: #14b4f0;
		font-weight: 700;
		white-space: nowrap;
	}
	.requirement__table td {
		padding: 20px 20px 20px 0;
	}
	.requirement__caution {
		padding: 0 0 0 14px;
		text-indent: -14px;
		font-size: 14px;
		line-height: 24px;
	}
	.requirement__caution-head {
		margin: 10px 0 0;
	}


	/* flow
	----------------------------------------------- */

	.flow {
		position: relative;
	}
	.flow-gridline {
		margin: 80px 0 0;
	}
	.flow-gridline:after {
		display: block;
		content: "";
		position: absolute;
		top: -20px;
		left: -60px;
		width: calc(100% + 120px);
		height: 2px;
		background: #a0e614;
	}
	.flow__no {
		position: absolute;
		top: 0;
		left: -80px;
		width: 120px;
		height: 120px;
		color: #fff;
		font-size: 60px;
		font-weight: 300;
		text-align: center;
		line-height: 110px;
		border-radius: 120px;
		background-color: #14b4f0;
	}
	.flow__title {
		height: 120px;
		color: #14b4f0;
		font-size: 24px;
		font-weight: 700;
		text-align: center;
		line-height: 120px;
	}
	.flow__price {
		margin: 20px 0 0;
		border: 1px solid #d2d2d2;
		border-radius: 8px;
		overflow: hidden;
	}
	.flow__entry {
		margin: 40px 0 0;
		text-align: center;
	}
	.flow__entry a {
		display: inline-block;
		width: 300px;
		height: 60px;
		color: #ff280a;
		font-size: 20px;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		line-height: 54px;
		border: 3px solid #ff280a;
		border-radius: 60px;
		box-sizing: border-box;
		transition-property: color, background-color;
		transition-duration: 0.25s;
	}
	.flow__entry a:hover {
		color: #fff;
		background-color: #ff280a;
	}
	.flow__caution {
		margin: 60px 0 0;
		padding: 0 0 0 14px;
		font-size: 14px;
		text-indent: -14px;
		line-height: 24px;
	}


}


/* mobile
----------------------------------------------- */

@media only screen and (max-width:999px) {


	/* body
	----------------------------------------------- */
	
	.pcbr {
		display: none;
	}


	/* loading
	----------------------------------------------- */

	.loading__progress {
		position: absolute;
		top: calc(50% + 40px);
		left: 25px;
		margin: 0;
		width: calc(100% - 50px);
	}
	.loading__progress-bar {
		top: 0;
		left: 0;
		width: 0;
	}
	.loading__progress-base {
		top: 0;
		left: 0;
		width: 100%;
	}


	/* mask
	----------------------------------------------- */
	
	.mask {
		height: 50px;
		background-size: auto 50px;
	}


	/* stripe
	----------------------------------------------- */
	
	.stripe {
		background-size: 30px 30px;
	}


	/* conversion
	----------------------------------------------- */
	
	.conversion__logo {
		position: relative;
		height: 40px;
		background-color: #ee7701;
		z-index: 5;
	}
	.conversion__logo a {
		display: block;
		position: relative;
		top: 8px;
		margin: auto;
		width: 155px;
		height: 23px;
		text-indent: 100%;
		white-space: nowrap;
		background-image: url(images/sp_neco.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 155px 23px;
		overflow: hidden;
	}
	.conversion__banner {
		position: relative;
		width: 100%;
		background: #fff;
		box-shadow: 0 0 8px rgba(0,0,0,0.2);
		z-index: 4;
		transform: translate3d(0,0,0);
	}
	.conversion__banner a {
		display: block;
		padding: 8px;
		text-align: center;
	}
	.conversion__banner img {
		max-width: 100%;
		height: auto;
	}
	.conversion-fixed .conversion__banner {
		position: fixed;
		top: 0;
		left: 0;
	}


	/* header
	----------------------------------------------- */

	.header {
		position: relative;
		height: calc(110vw);
		background-image: url(images/stripe.png), url(images/header_bg.jpg);
		background-position: left top,  center center;
		background-repeat: repeat, repeat-x;
		background-size: 30px 30px, auto 100%;
		overflow: hidden;
		animation-name: bganim;
		animation-duration: 50s;
		animation-iteration-count: infinite;
		animation-timing-function: linear;
	}
	.header__inner {
		position: relative;
		text-align: center;
	}
	.header__title {
		padding: 15px 0 0;
	}
	.header__title img {
		width: 59.3vw;
		height: auto;
	}
	.header__image {
		margin: -15vw 0 0 0;
	}
	.header__image img {
		margin: 0 0 0 -6.5vw;
		width: 112vw;
		height: auto;
	}


	/* ready */

	.header-ready .header__title {
		transform: translateY(-50vw);
	}
	.header-ready .header__image {
		transform: translateY(60vw);
	}

	/* start */

	.header-start .header__title,
	.header-start .header__image {
		transform: translateY(0);
		transition-property: transform;
		transition-duration: 0.85s;
		transition-delay: 0.25s;
		transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	}


	/* intro
	----------------------------------------------- */

	.intro {
		position: relative;
		background: #fff;
		z-index: 1;
	}
	.intro__inner {
		transform: rotate(-2.29deg);
	}
	.intro__title {
		position: relative;
		left: 50%;
		margin: 0 0 0 calc(-50% + 25px);
		padding: 20px;
		text-align: center;
		border-radius: 5px;
		background-color: #a0e614;
	}
	.intro__title img {
		margin: 0 40% 0 0;
		width: calc(50% + 50px);
		height: auto;
	}
	.intro__copy {
		position: relative;
		right: 50%;
		margin: 20px calc(-50% + 25px) 0 0;
		padding: 20px;
		text-align: center;
		border-radius: 5px;
		background-color: #14b4f0;
	}
	.intro__copy img {
		margin: 0 0 0 40%;
		width: calc(50% + 50px);
		height: auto;
	}


	/* schedule
	----------------------------------------------- */

	.schedule {
		position: relative;
		background-color: #ffe600;
	}
	.schedule__inner {
		margin: 0 25px;
		padding: 50px 0;
	}


	/* title
	----------------------------------------------- */

	.title {
		text-align: center;
	}
	.title__label {
		font-size: 40px;
		font-weight: 300;
		font-style: italic;
	}
	.title__text {
		margin: 10px 0 0;
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 4px;
	}
	.title__text-single {
		margin: 25px 0 0;
	}

	/* program
	----------------------------------------------- */

	.program {
		position: relative;
		margin: 20px auto 0;
		padding: 0 0 20px;
		max-width: 640px;
		background: #fff;
		border-radius: 5px;
		overflow: hidden;
	}
	.program__header {
		display: flex;
		align-items: center;
		padding: 10px 0;
		color: #fff;
		background-color: #a0e614;
	}
	.program__no {
		padding: 0 20px;
		font-size: 40px;
		font-weight: 300;
	}
	.program__title {
		font-size: 20px;
		font-weight: 700;
	}
	.program__summary {
		margin: 0 20px;
		padding: 15px 0 0;
		font-size: 16px;
		text-align: justify;
		line-height: 24px;
	}
	.program__column {
		margin: 20px 20px 0;
	}
	.program__image img {
		width: 100%;
		height: auto;
	}

	/* spec
	----------------------------------------------- */

	.spec__title {
		padding: 20px 0 0;
		color: #ff280a;
		font-size: 14px;
		font-weight: 700;
	}
	.spec__summary {
		padding: 15px 0 0;
		font-size: 14px;
		line-height: 19px;
	}


	/* movie
	----------------------------------------------- */

	.movie {
		position: relative;
		background-color: #fff;
	}
	.movie__inner {
		padding: 20px 0;
	}
	.movie__area {
		position: relative;
		margin: 25px auto;
		padding: 75% 0 0;
		padding: 56.25% 0 0;
	}
	.movie__area:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		margin: -50px 0 0;
		width: 100%;
		height: 100px;
		background-color: #14b4f0;
		background-image: url(images/stripe.png);
		background-size: 30px 30px;
	}
	.movie__area iframe {
		position: absolute;
		top: 0;
		left: 25px;
		width: calc(100% - 50px);
		height: 100%;
		z-index: 1;
	}


	/* twitter
	----------------------------------------------- */

	.twitter__button a {
		display: block;
		margin: auto;
		width: 200px;
		height: 40px;
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		text-align: center;
		text-indent: 20px;
		text-decoration: none;
		line-height: 40px;
		border-radius: 40px;
		background-color: #55acee;
		background-image: url(images/ic_twitter.png);
		background-position: 20px center;
		background-repeat: no-repeat;
		background-size: 15px 12px;
	}
	.twitter__text {
		margin: 10px 0 0;
		font-size: 14px;
		font-weight: 700;
		text-align: center;
		line-height: 19px;
	}


	/* present
	----------------------------------------------- */

	.present {
		position: relative;
		background-color: #a0e614;
	}
	.present__inner {
		margin: 0 25px;
		padding: 50px 0 25px;
	}


	/* box
	----------------------------------------------- */

	.box {
		margin: 25px auto 0;
		max-width: 640px;
		border-radius: 5px;
		background-color: #fff;
	}
	.box__inner {
		padding: 10px 0 20px;
	}


	/* goods
	----------------------------------------------- */

	.goods__text {
		margin: 0 20px;
		padding: 10px 0 0;
		font-size: 16px;
		text-align: justify;
		line-height: 24px;
	}
	.goods__text br {
		display: none;
	}
	.goods__text-strong {
		font-weight: 700;
	}
	.goods__text-highlight {
		color: #ff280a;
		text-align: center;
	}
	.goods__text em {
		color: #14b4f0;
	}
	.goods__images {
		margin: 0 20px;
		padding: 5px 0 0;
		font-size: 0;
	}
	.goods__image {
		display: block;
		margin: 15px 0 0;
	}
	.goods__image img {
		width: 100%;
		height: auto;
	}


	/* requirement
	----------------------------------------------- */

	.requirement {
		margin: 0 20px;
		padding: 10px 0 0;
		word-break: break-word;
	}
	.requirement__table {
		width: 100%;
		border-bottom: 1px solid #d2d2d2;
	}
	.requirement__table th,
	.requirement__table td {
		display: block;
		font-size: 14px;
		text-align: left;
		line-height: 19px;
		word-break: break-word;
		vertical-align: top;
	}
	.requirement__table th {
		padding: 12px 0 0;
		color: #14b4f0;
		font-weight: 700;
		border-top: 1px solid #d2d2d2;
	}
	.requirement__table td {
		padding: 10px 0 14px;
	}
	.requirement__caution {
		padding: 0 0 0 12px;
		text-indent: -12px;
		font-size: 12px;
		line-height: 18px;
	}
	.requirement__caution-head {
		margin: 10px 0 0;
	}


	/* flow
	----------------------------------------------- */

	.flow {
		position: relative;
	}
	.flow-gridline {
		margin: 30px 0 0;
	}
	.flow-gridline:after {
		display: block;
		content: "";
		position: absolute;
		top: -10px;
		left: 0;
		width: 100%;
		height: 2px;
		background: #a0e614;
	}
	.flow__no {
		position: absolute;
		top: 0;
		left: -15px;
		width: 60px;
		height: 60px;
		color: #fff;
		font-size: 30px;
		font-weight: 300;
		text-align: center;
		line-height: 60px;
		border-radius: 60px;
		background-color: #14b4f0;
	}
	.flow__title {
		margin: 0 20px 0 60px;
		padding: 8px 0 0;
		color: #14b4f0;
		font-size: 16px;
		font-weight: 700;
		text-align: left;
		line-height: 24px;
	}
	.flow__price {
		margin: 20px 20px 0;
		border: 1px solid #d2d2d2;
		border-radius: 4px;
		overflow: hidden;
	}
	.flow__price img {
		width: 100%;
		height: auto;
	}
	.flow__entry {
		margin: 20px 0 0;
		text-align: center;
	}
	.flow__entry a {
		display: inline-block;
		width: 230px;
		height: 50px;
		color: #ff280a;
		font-size: 16px;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		line-height: 46px;
		border: 2px solid #ff280a;
		border-radius: 50px;
		box-sizing: border-box;
	}
	.flow__caution {
		margin: 20px 20px 0;
		padding: 0 0 0 12px;
		font-size: 12px;
		text-indent: -12px;
		line-height: 17px;
	}


}


