@charset "utf-8";


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

body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	position: relative;
/* 	overflow: hidden; */
}
a {
	color: #1e1e1e;
}
.footer {
	background: #fff;
}


/* wrap
----------------------------------------------- */

.wrap {
	color: #1e1e1e;
	font-weight: 500;
}


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

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #fff;
	overflow: hidden;
	z-index: 30;
}
.loading__progress {
	position: absolute;
	top: 50%;
	left: 0;
	margin: -2px 0 0 0;
	width: 100%;
	height: 4px;
	overflow: hidden;
}
.loading__progress-bar {
	top: 0;
	left: 0;
	margin: 0;
	width: 0;
	height: 4px;
	background: linear-gradient(to right, #fa3c82 0%,#be64f0 35%,#8cc83c 65%,#0ab4f0 100%);
	z-index: 1;
	transition: width 0.25s;
}
.loading__progress-base {
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 4px;
	background: #eee;
}

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

	
/* conversion
----------------------------------------------- */

.conversion {
	background: #fff;
}
.conversion__banner a {
	display: block;
}


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

.intro__inner {
	position: relative;
}

/* js-intro-ready */
.js-intro-ready .intro__title {
	transform: translateY(-60px);
	opacity: 0;
	visibility: hidden;
}

/* js-intro-start */
.js-intro-start .intro__title {
	transition-property: opacity, transform;
	transition-duration: 0.7s;
	transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

/* js-intro-finish */
.js-intro-finish .intro__title {
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
}


/* button
----------------------------------------------- */

.button {
	position: relative;
	display: block;
	height: 90px;
	text-decoration: none;
	background-color: #ff0000;
	border: 3px solid #fff;
	box-shadow: 3px 3px 4px rgba(0,0,0,0.2);
	border-radius: 8px;
	box-sizing: border-box;
}
.button:before,
.button:after {
	position: absolute;
	display: block;
	content: "";
}
.button:before {
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-image: url(images/button_bg_pc.jpg);
	background-repeat: repeat-x;
	background-size: 8px 84px;
	border-radius: 6px;
}
.button:after {
	top: 50%;
	right: 27px;
	margin: -7px 0 0;
	width: 10px;
	height: 14px;
	background-image: url(images/button_arrow.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 10px 14px;
}
.button span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 84px;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
	z-index: 1;
}


/* nav
----------------------------------------------- */

.nav {
	position: relative;
	margin: auto;
	max-width: 960px;
}
.nav__items {
	display: flex;
	justify-content: space-between;
}
.nav__item {
	position: relative;
	display: flex;
	padding: 60px 0 0;
	width: 234px;
}
.nav__item:before,
.nav__item:after {
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0 0 0 -40px;
	display: block;
	content: "";
	width: 80px;
	height: 80px;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.nav__item:after {
	background-image: url(images/tokusyu00_number.png);
	background-size: auto 100%;
	animation: rotate 20s linear infinite;
}
.nav__item a {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 6px 0 0;
	color: #fff;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	z-index: 1;
}
.nav__item a:before,
.nav__item a:after {
	position: absolute;
	display: block;
	content: "";
}
.nav__item a:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 6px;
}
.nav__item a:after {
	right: 0;
	bottom: 0;
	width: 100px;
	height: 100px;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 100px 100px;
}
.nav__image {
	position: relative;
	display: flex;
	align-items: center;
	height: 156px;
	flex-shrink: 0;
}
.nav__image img {
	width: 234px;
	height: auto;
}
.nav__title {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 10px 0;
	font-size: 18px;
	font-feature-settings: "palt";
	line-height: 1.3;
	letter-spacing: 0.05em;
	height: 34%;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.nav__lead {
	display: block;
	padding: 0 0 5px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}
.nav__note {
	position: relative;
	margin: auto 20px 15px;
	color: #c80a3c;
	font-size: 14px;
	line-height: 28px;
	background-color: #fff;
	border-radius: 14px;
	z-index: 1;
}
.nav__note:before,
.nav__note:after {
	position: absolute;
	top: 50%;
	display: block;
	content: "";
}
.nav__note:before {
	right: 2px;
	margin: -12px 0 0 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
}
.nav__note:after {
	right: 10px;
	margin: -5px 0 0 0;
	width: 7px;
	height: 10px;
	background-image: url(images/button_arrow.svg);
	background-repeat: no-repeat;
	background-size: 7px 10px;
	transform: rotate(90deg);
}

/* tokusyu01 */
.nav__item--tokusyu01:before {
	background-image: url(images/tokusyu01_number.png);
}
.nav__item--tokusyu01:after {
	background-position: 0 0;
}
.nav__item--tokusyu01 a:after {
	background-image: url(images/nav_bg01.png);
}
.nav__item--tokusyu01 .nav__note {
	color: #c80a3c;
}
.nav__item--tokusyu01 .nav__note:before {
	background-color: #c80a3c;
}
.nav__item--tokusyu01 a {
	background-color: #fa3c82;
}

/* tokusyu02 */
.nav__item--tokusyu02:before {
	background-image: url(images/tokusyu02_number.png);
}
.nav__item--tokusyu02:after {
	background-position: -80px 0;
}
.nav__item--tokusyu02 a:after {
	background-image: url(images/nav_bg02.png);
}
.nav__item--tokusyu02 .nav__title i {
	font-feature-settings: normal;
	font-style: normal;
	letter-spacing: 0em;
}
.nav__item--tokusyu02 .nav__note {
	color: #804f98;
}
.nav__item--tokusyu02 .nav__note:before {
	background-color: #804f98;
}
.nav__item--tokusyu02 a {
	background-color: #be64f0;
}

/* tokusyu03 */
.nav__item--tokusyu03:before {
	background-image: url(images/tokusyu03_number.png);
}
.nav__item--tokusyu03:after {
	background-position: -160px 0;
}
.nav__item--tokusyu03 a:after {
	background-image: url(images/nav_bg03.png);
}
.nav__item--tokusyu03 .nav__note {
	color: #3ca03c;
}
.nav__item--tokusyu03 .nav__note:before {
	background-color: #3ca03c;
}
.nav__item--tokusyu03 a {
	background-color: #8cc83c;
}

/* tokusyu04 */
.nav__item--tokusyu04:before {
	background-image: url(images/tokusyu04_number.png);
}
.nav__item--tokusyu04:after {
	background-position: -240px 0;
}
.nav__item--tokusyu04 a:after {
	background-image: url(images/nav_bg04.png);
}
.nav__item--tokusyu04 .nav__note {
	color: #0a82c8;
}
.nav__item--tokusyu04 .nav__note:before {
	background-color: #0a82c8;
}
.nav__item--tokusyu04 a {
	background-color: #0ab4f0;
}

/* js-intro-ready */
.js-intro-ready .nav__item {
	transform: translateY(60px);
	opacity: 0;
	visibility: hidden;
}

/* js-intro-start */
.js-intro-start .nav__item {
	transition-property: opacity, transform;
	transition-duration: 1s;
	transition-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.js-intro-start .nav__item--tokusyu02 {
	transition-delay: 0.1s;
}
.js-intro-start .nav__item--tokusyu03 {
	transition-delay: 0.2s;
}
.js-intro-start .nav__item--tokusyu04 {
	transition-delay: 0.3s;
}

/* js-intro-finish */
.js-intro-finish .nav__item {
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
}


/* outline
----------------------------------------------- */

.outline {
	margin: 40px 0 0;
	padding: 0 0 90px;
}
.outline__lead {
	margin: 0 0 10px;
	text-align: center;
}
.outline__text {
	font-size: 22px;
	font-weight: 900;
	font-feature-settings: "palt";
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
}
.outline__square {
	padding: 1px 5px 3px;
	color: #fff;
	background-color: #f01e00;
}
.outline__line {
	padding: 0 5px;
	color: #f01e00;
	border-bottom: 2px solid #f01e00;
}



/* tokusyu
----------------------------------------------- */

.tokusyu {
	padding: 0 0 100px;
}
.tokusyu__header {
	position: relative;
}
.tokusyu__headerwrap {
	position: relative;
}
.tokusyu__headerwrap:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	background-repeat: no-repeat;
	pointer-events: none;
}
.tokusyu__headerinner {
	margin: auto;
	display: flex;
	max-width: 960px;
}
.tokusyu__title {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 30px 420px 30px 140px;
	min-height: 180px;
	color: #fff;
	font-size: 36px;
	font-weight: 900;
	font-feature-settings: "palt";
	line-height: 1.3;
	text-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	box-sizing: border-box;
}
.tokusyu__title:before,
.tokusyu__title:after {
	position: absolute;
	top: 50%;
	left: 0;
	margin: -61px 0 0;
	display: block;
	content: "";
	width: 122px;
	height: 122px;
	background-repeat: no-repeat;
	background-position: 0 -122px;
	background-size: 100% auto;
}
.tokusyu__title:after {
	background-image: url(images/tokusyu00_number.png);
	background-position: -488px 0;
	background-size: auto 100%;
	animation: rotate 20s linear infinite;
}
.tokusyu__titlelead {
	font-size: 22px;
}
.tokusyu__image {
	position: absolute;
	top: 30px;
	left: 50%;
	margin: 0 0 0 80px;
	width: 400px;
}
.tokusyu__image img {
	width: 100%;
	height: auto;
	box-shadow: 15px 15px 15px rgba(0,0,0,0.1);
}
.tokusyu__main {
	background-image: url(images/tokusyu_bg_pc.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 2000px 548px;
}
.tokusyu__summary {
	margin: 0 auto 50px;
	padding: 25px 0 0;
	max-width: 960px;
	min-height: 4.7em;
}
.tokusyu__text {
	width: 540px;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.5;
}
.tokusyu__button {
	margin: 25px 0 0;
	width: 270px;
}
.tokusyu__button a {
	position: relative;
	display: block;
	height: 60px;
	text-decoration: none;
	background-color: #ed7700;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	border-radius: 6px;
	box-sizing: border-box;
}
.tokusyu__button a:before,
.tokusyu__button a:after {
	position: absolute;
	display: block;
	content: "";
}
.tokusyu__button a:before {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to right, #ff3c00 0%,#ed7700 100%);
	border-radius: 6px;
}
.tokusyu__button a:after {
	top: 50%;
	right: 0;
	margin: -25px 0 0;
	width: 25px;
	height: 50px;
	background-image: url(images/button_arrow02.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 25px 50px;
}
.tokusyu__button a span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	z-index: 1;
}

/* tokusyu01 */
.tokusyu--01 .tokusyu__title:before {
	background-image: url(images/tokusyu01_number.png);
}
.tokusyu--01 .tokusyu__text {
	color: #c80a3c;
}

/* tokusyu02 */
.tokusyu--02 .tokusyu__title:before {
	background-image: url(images/tokusyu02_number.png);
}
.tokusyu--02 .tokusyu__title {
	padding: 30px 400px 30px 140px;
}
.tokusyu--02 .tokusyu__title i {
	font-style: normal;
	font-feature-settings: normal;
}
.tokusyu--02 .tokusyu__text {
	color: #804f98;
}

/* tokusyu03 */
.tokusyu--03 .tokusyu__title:before {
	background-image: url(images/tokusyu03_number.png);
}
.tokusyu--03 .tokusyu__text {
	color: #3ca03c;
}

/* tokusyu04 */
.tokusyu--04 .tokusyu__title:before {
	background-image: url(images/tokusyu04_number.png);
}
.tokusyu--04 .tokusyu__text {
	color: #0a82c8;
}



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

.program {
	margin: auto;
	max-width: 960px;
}
.program__label {
	font-size: 32px;
	font-weight: 900;
	display: flex;
	justify-content: center;
}
.program__label span {
	position: relative;
	display: block;
	width: 22px;
	height: 33px;
	margin: 0 10px;
}
.program__label span:before,
.program__label span:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: "";
	border-radius: 50%;
}
.program__label span:before {
	margin: -9px 0 0 -11px;
	width: 22px;
	height: 22px;
}
.program__label span:after {
	margin: -5px 0 0 -7px;
	width: 14px;
	height: 14px;
	background: #fff;
}
.program__articles {
	margin: 0 -15px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.program__article {
	margin: 30px 15px 0;
	width: 300px;
}
.program__images img {
	width: 100%;
	height: auto;
}
.program__title {
	margin: 10px 0;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.4;
}
.program__date {
	display: flex;
	justify-content: space-between;
}
.program__date dt {
	width: 80px;
	height: 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 20px;
	text-align: center;
	border-radius: 4px;
}
.program__date dd {
	width: calc(100% - 90px);
	font-size: 15px;
	font-weight: 500;
	font-feature-settings: "palt";
	line-height: 1.5;
}
.program__note {
	padding: 0 0 0 1em;
	color: #616161;
	font-size: 10px;
	line-height: 1.5;
	text-indent: -1em;
}

/* program__article--pickup */
.program__article--pickup {
	background-color: #f0f0f0;
}
.program__article--pickup .program__title {
	margin: 10px 15px;
}
.program__article--pickup .program__date {
	margin: 0 15px;
}
.program__article--pickup .program__note {
	margin: 5px 13px 15px;
}


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

.present {
	position: relative;
	margin: 80px 0 0;
}
.present:before,
.present:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	margin: -75px 0 0;
	height: 150px;
}
.present:after {
	background-position: center center;
}
.present__wrap {
	position: relative;
	margin: auto;
	padding: 4px;
	max-width: 960px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 6px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	box-sizing: border-box;
	z-index: 1;
}
.present__wrap:before {
	content: "";
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	left: 4px;
	background-color: #fff;
	border-radius: 4px;
}
.present__label {
	position: relative;
	top: -30px;
	text-align: center;
}
.present__inner {
	position: relative;
	margin: -13px 0 0;
	padding: 0 40px 40px;
	display: flex;
	justify-content: space-between;
}
.presnet__image {
	position: relative;
	width: 280px;
	height: 280px;
}
.presnet__image:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px solid #d2d2d2;
	box-sizing: border-box;
}
.presnet__image img {
	width: 100%;
	height: auto;
}
.present__contents {
	width: 562px;
}
.present__header {
	display: flex;
	align-items: center;
}
.present__icon {
	margin: 0 15px 0 0;
}
.present__title {
	font-size: 36px;
	line-height: 1.3;
	font-feature-settings: "palt";
}
.present__title span {
	display: inline-block;
	font-size: 22px;
	letter-spacing: normal;
}
.present__caution {
	margin: 5px 0 0 139px;
	padding: 0 0 0 1em;
	font-size: 10px;
	line-height: 1.5;
	text-indent: -1em;
}
.present__button {
	margin: 20px 0 0;
}
.present__date {
	margin: 20px 0 0;
	font-size: 15px;
	font-weight: 900;
	text-align: center;
}

/* tokusyu01 */
.tokusyu--01 .present:after {
	background-image: url(images/tokusyu01_pattern.png);
}

/* tokusyu02 */
.tokusyu--02 .present:after {
	background-image: url(images/tokusyu02_pattern.png);
}

/* tokusyu03 */
.tokusyu--03 .present:after {
	background-image: url(images/tokusyu03_pattern.png);
}

/* tokusyu04 */
.tokusyu--04 .present:after {
	background-image: url(images/tokusyu04_pattern.png);
}


/* pr
----------------------------------------------- */

.pr {
	position: relative;
	margin: 90px auto 0;
	max-width: 960px;
	background-color: #1e1e1e;
	background-image: url(images/pr_bg.png);
	background-size: 8px 13px;
	border-radius: 6px;
}
.pr__label {
	position: relative;
	top: -30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	max-width: 760px;
	height: 60px;
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	border-radius: 30px;
}
.pr__inner {
	padding: 0 50px 30px;
	display: flex;
	justify-content: space-between;
}
.pr__image {
	width: 160px;
}
.pr__image img {
	width: 100%;
	height: auto;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.pr__contents {
	width: calc(100% - 190px);
}
.pr__title {
	padding: 0 0 15px;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	font-feature-settings: "palt";
	border-bottom: 1px solid #8e8e8e;
}
.pr__text {
	margin: 14px 0 0;
	color: #fff;
	font-size: 13px;
	line-height: 1.6;
}
.pr__copyright {
	margin: 10px 0 0;
	color: #8e8e8e;
	font-size: 10px;
}
.pr__button {
	margin: 20px 0 0;
}
.pr__button a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 230px;
	height: 40px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid #fff;
	border-radius: 4px;
	box-sizing: border-box;
}
.pr__button a:after {
	position: absolute;
	top: 50%;
	right: 9px;
	margin: -5px 0 0;
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	background-image: url(images/button_blank.svg);
	background-repeat: no-repeat;
	background-size: 10px 10px;
}
.pr__banners {
	margin: 20px 0 0;
	display: flex;
}
.pr__banner {
	margin: 0 20px 0 0;
}
.pr__banner a {
	display: block;
}
.pr__banner img {
	width: auto;
	height: 60px;
}

/* tokusyu04 */
.tokusyu--04 .pr__image {
	width: 320px;
}
.tokusyu--04 .pr__contents {
	width: calc(100% - 350px);
}


/* colorthema
----------------------------------------------- */

/* tokusyu01 */
.nav__item--tokusyu01 a:before,
.tokusyu--01 .tokusyu__headerwrap,
.tokusyu--01 .program__label span:before,
.tokusyu--01 .program__date dt,
.tokusyu--01 .present:before,
.tokusyu--01 .pr__label {
	background: linear-gradient(to right, #c80a3c 0%,#fa3c82 100%);
}

/* tokusyu02 */
.nav__item--tokusyu02 a:before,
.tokusyu--02 .tokusyu__headerwrap,
.tokusyu--02 .program__label span:before,
.tokusyu--02 .program__date dt,
.tokusyu--02 .present:before,
.tokusyu--02 .pr__label {
	background: linear-gradient(to right, #804f98 0%,#be64f0 100%);
}

/* tokusyu03 */
.nav__item--tokusyu03 a:before,
.tokusyu--03 .tokusyu__headerwrap,
.tokusyu--03 .program__label span:before,
.tokusyu--03 .program__date dt,
.tokusyu--03 .present:before,
.tokusyu--03 .pr__label {
	background: linear-gradient(to right, #3ca03c 0%,#8cc83c 100%);
}

/* tokusyu04 */
.nav__item--tokusyu04 a:before,
.tokusyu--04 .tokusyu__headerwrap,
.tokusyu--04 .program__label span:before,
.tokusyu--04 .program__date dt,
.tokusyu--04 .present:before,
.tokusyu--04 .pr__label {
	background: linear-gradient(to right, #0a82c8 0%,#0ab4f0 100%);
}




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

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


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

	body {
	}
	.sp {
		display: none;
	}

	
	/* conversion
	----------------------------------------------- */

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

	.conversion a:hover {
		opacity: 0.7;
	}


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

	.intro {
		padding: 90px 0 0;
	}
	.intro__inner {
		background-image: url(images/intro_bg_pc.png);
		background-repeat: no-repeat;
		background-position: center top;
	}
	.intro__inner:before {
		display: block;
		content: "";
		height: 375px;
		pointer-events: none;
	}
	.intro__title {
		position: absolute;
		top: 49px;
		left: 50%;
		margin: 0 0 0 -338px;
	}


	/* button
	----------------------------------------------- */

	.button {
		transition-property: transform;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}
	.button:before {
		transition-property: opacity;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}

	/* hover */
	.button:hover {
		transform: translateY(-5px);
	}
	.button:hover:before {
		opacity: 0.5;
	}


	/* nav
	----------------------------------------------- */

	.nav__item a {
		transition-property: transform;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}
	.nav__item a:before {
		transition-property: opacity;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}
	.nav__item:before {
		transform: scale(1);
		transition-property: transform;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}

	/* hover */
	.nav__item a:hover {
		transform: translateY(8px);
	}
	.nav__item a:hover:before {
		opacity: 0;
	}
	.nav__item:hover:before {
		transform: scale(1.2);
	}


	/* main
	----------------------------------------------- */

	.main {
	}


	/* tokusyu
	----------------------------------------------- */

	.tokusyu__button a {
		transition-property: transform;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}
	.tokusyu__button a:before {
		transition-property: opacity;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}

	/* hover */
	.tokusyu__button a:hover {
		transform: translateY(-5px);
	}
	.tokusyu__button a:hover:before {
		opacity: 0;
	}

	/* tokusyu01 */
	.tokusyu--01 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu01_bg.png), url(images/tokusyu01_bg.png);
		background-position: calc(50% - 40px) -10px, calc(50% + 470px) -10px;
	}

	/* tokusyu02 */
	.tokusyu--02 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu02_bg.png), url(images/tokusyu02_bg.png);
		background-position: calc(50% + 0px) -20px, calc(50% + 510px) -20px;
	}

	/* tokusyu03 */
	.tokusyu--03 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu03_bg.png), url(images/tokusyu03_bg.png);
		background-position: calc(50% - 32px) -20px, calc(50% + 480px) -20px;
	}

	/* tokusyu04 */
	.tokusyu--04 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu04_bg.png), url(images/tokusyu04_bg.png);
		background-position: calc(50% - 45px) -20px, calc(50% + 465px) -20px;
	}


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

	.present__wrap {
		background-image: url(images/present_bg_pc.jpg);
	}

	/* pr
	----------------------------------------------- */
	
	.pr__button a {
		transition-property: background-color;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}
	.pr__banner a {
		transition-property: opacity;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}

	/* hover */
	.pr__button a:hover {
		background-color: #4b4b4b;
	}
	.pr__banner a:hover {
		opacity: 0.8;
	}


	/* retina
	----------------------------------------------- */
	
	@media only screen and (-webkit-min-device-pixel-ratio: 2) { 

		.nav__item:after,
		.tokusyu__title:after {
			background-image: url(images/tokusyu00_number@2x.png);
		}

		/* tokusyu01 */
		.nav__item--tokusyu01:before,
		.tokusyu--01 .tokusyu__title:before {
		background-image: url(images/tokusyu01_number@2x.png);
		}
	
		/* tokusyu02 */
		.nav__item--tokusyu02:before,
		.tokusyu--02 .tokusyu__title:before {
		background-image: url(images/tokusyu02_number@2x.png);
		}
	
		/* tokusyu03 */
		.nav__item--tokusyu03:before,
		.tokusyu--03 .tokusyu__title:before {
		background-image: url(images/tokusyu03_number@2x.png);
		}
	
		/* tokusyu04 */
		.nav__item--tokusyu04:before,
		.tokusyu--04 .tokusyu__title:before {
		background-image: url(images/tokusyu04_number@2x.png);
		}


	}


}



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

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


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

	body {
	}
	.pc {
		display: none;
	}


	/* 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;
		overflow: hidden;
		background-image: url(images/neco_sp.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 155px 23px;
	}
	.conversion__banner {
		position: relative;
		padding: 8px;
		width: 100%;
		text-align: center;
		background: #fff;
		box-shadow: 0 2px 10px rgba(0,0,0,0.2);
		z-index: 4;
		transform: translate3d(0,0,0);
		box-sizing: border-box;
	}
	.conversion__banner img {
		max-width: 100%;
		height: auto;
	}
	.conversion-fixed .conversion__banner {
		position: fixed;
		top: 0;
		left: 0;
	}


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

	.intro__inner {
		background-image: url(images/intro_bg_sp.png);
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 100% auto;
	}
	.intro__inner:before {
		display: block;
		content: "";
		height: 48.4vw;
		pointer-events: none;
	}
	.intro__title {
		position: absolute;
		top: 4.6vw;
		right: 6.2vw;
		left: 4.6vw;
	}
	.intro__title img {
		width: 100%;
		height: auto;
	}


	/* button
	----------------------------------------------- */

	.button {
		height: 50px;
		background-image: url(images/button_bg_sp.jpg);
		background-size: 8px 46px;
		border-width: 2px;
		border-radius: 6px;
	}
	.button:after {
		right: 8px;
	}
	.button span {
		height: 46px;
		font-size: 18px;
	}


	/* nav
	----------------------------------------------- */
	
	.nav {
		max-width: 640px;
	}
	.nav__items {
		flex-wrap: wrap;
		margin: 0 10px;
	}
	.nav__item {
		margin: 10px 0 0;
		padding: 35px 0 0;
		width: calc(50% - 5px);
	}
	.nav__item:before,
	.nav__item:after {
		margin: 0 0 0 -23px;
		width: 45px;
		height: 45px;
	}
	.nav__item a {
		width: 100%;
		padding: 5px 0 0;
		border-radius: 5px;
	}
	.nav__item a:after {
		width: 75px;
		height: 75px;
		background-size: 75px 75px;
	}
	.nav__image {
		display: block;
		height: auto;
	}
	.nav__image img {
		width: 100%;
	}
	.nav__title {
		margin: 10px 0;
		font-size: 11px;
		height: auto;
	}
	.nav__lead {
		display: block;
		padding: 0 0 2px;
		font-size: 10px;
		line-height: 1.3;
	}
	.nav__note {
		position: relative;
		margin: auto 10px 10px;
		font-size: 10px;
		line-height: 20px;
		border-radius: 20px;
	}
	.nav__note:before {
		right: 2px;
		margin: -8px 0 0 0;
		width: 16px;
		height: 16px;
		border-radius: 50%;
	}
	.nav__note:after {
		right: 8px;
		margin: -2px 0 0 0;
		width: 4px;
		height: 5px;
		background-size: 4px 5px;
	}

	/* tokusyu01 */
	.nav__item--tokusyu01 .nav__title {
		height: 56px;
	}

	/* tokusyu02 */
	.nav__item--tokusyu02:after {
		background-position: -45px 0;
	}

	/* tokusyu03 */
	.nav__item--tokusyu03:after {
		background-position: -90px 0;
	}

	/* tokusyu04 */
	.nav__item--tokusyu04:after {
		background-position: -135px 0;
	}


	/* outline
	----------------------------------------------- */
	
	.outline {
		margin: 30px auto 0;
		padding: 0 0 50px;
		max-width: 640px;
	}
	.outline__lead {
		margin: auto;
		width: 305px;
	}
	.outline__lead img {
		width: 100%;
		height: auto;
	}
	.outline__text {
		margin: 5px 0 0;
		font-size: 14px;
		line-height: 1.6;
	}
	.outline__line {
		border-bottom-width: 1px;
	}


	/* tokusyu
	----------------------------------------------- */

	.tokusyu {
		padding: 0 0 50px;
	}
	.tokusyu__headerinner {
		padding: 0 25px 28vw;
		max-width: 640px;
	}
	.tokusyu__title {
		padding: 20px 0 20px 70px;
		min-height: 100px;
		font-size: 18px;
	}
	.tokusyu__title:before,
	.tokusyu__title:after {
		margin: -30px 0 0;
		width: 61px;
		height: 61px;
		background-position: 0 -61px;
	}
	.tokusyu__title:after {
		background-position: -244px 0;
	}
	.tokusyu__titlelead {
		font-size: 11px;
	}
	.tokusyu__image {
		position: relative;
		top: auto;
		left: auto;
		margin: -28vw auto 0;
		padding: 0 8vw;
		max-width: 500px;
		width: auto;
	}
	.tokusyu__main {
		margin: -28vw 0 0;
		padding: 28vw 0 0;
		background-image: url(images/tokusyu_bg_sp.jpg);
		background-size: auto 92vw;
	}
	.tokusyu__summary {
		padding: 0;
		margin: auto;
		max-width: 640px;
	}
	.tokusyu__text {
		margin: 20px 0 0;
		width: 100%;
		font-size: 15px;
		text-align: center;
	}
	.tokusyu__button {
		margin: 10px 25px 30px;
		width: auto;
	}
	.tokusyu__button a {
		height: 50px;
	}
	.tokusyu__button a:after {
		margin: -20px 0 0;
		width: 20px;
		height: 40px;
		background-size: 20px 40px;
	}
	.tokusyu__button a span {
		height: 50px;
		font-size: 15px;
	}

	/* tokusyu01 */
	.tokusyu--01 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu01_bg.png);
		background-position: calc(50% + 25vw) -3.5vw;
		background-size: auto 66vw;
	}

	/* tokusyu02 */
	.tokusyu--02 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu02_bg.png);
		background-position: calc(50% + 34vw) -3vw;
		background-size: auto 79vw;
	}
	.tokusyu--02 .tokusyu__title {
		margin: 0 -10px 0 0;
		padding: 20px 0 20px 70px;
	}

	/* tokusyu03 */
	.tokusyu--03 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu03_bg.png);
		background-position: calc(50% + 27vw) -3vw;
		background-size: auto 76vw;
	}

	/* tokusyu04 */
	.tokusyu--04 {
		padding: 0;
	}
	.tokusyu--04 .tokusyu__headerwrap:before {
		background-image: url(images/tokusyu04_bg.png);
		background-position: calc(50% + 23vw) -3vw;
		background-size: auto 74vw;
	}


	/* program
	----------------------------------------------- */
	
	.program {
		margin: 20px auto 0;
		max-width: 640px;
	}
	.program__label {
		font-size: 18px;
	}
	.program__label span {
		width: 14px;
		height: 20px;
	}
	.program__label span:before {
		margin: -7px 0 0 -7px;
		width: 14px;
		height: 14px;
	}
	.program__label span:after {
		margin: -4px 0 0 -4px;
		width: 8px;
		height: 8px;
	}
	.program__articles {
		margin: 0 10px;
		display: block;
	}
	.program__article {
		margin: 20px 0 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.program__images {
		margin: 0 10px 0 0;
		min-width: 145px;
		width: 28vw;
	}
	.program__contents {
		flex: 1;
	}
	.program__title {
		margin: -3px 0 5px;
		font-size: 15px;
		word-break: break-word;
	}
	.present__title span {
		font-size: 11px;
	}
	.program__date {
		display: block;
	}
	.program__date dt {
		width: 60px;
		height: 15px;
		font-size: 10px;
		line-height: 15px;
		border-radius: 2px;
	}
	.program__date dd {
		margin: 2px 0 0;
		width: 100%;
		font-size: 13px;
	}

	/* program__article--pickup */
	.program__article--pickup {
		margin: 20px -10px 0;
		padding: 10px;
		width: calc(100% + 20px);
		box-sizing: border-box;
	}
	.program__article--pickup .program__title {
		margin: -3px 0 5px;
	}
	.program__article--pickup .program__date {
		margin: 0;
	}
	.program__article--pickup .program__note {
		margin: 5px 0 0;
	}

	/* present
	----------------------------------------------- */
	
	.present {
		margin: 50px 0 0;
		padding: 0 25px;
	}
	.present:after,
	.present:before {
		top: 50px;
		bottom: 50px;
		margin: 0;
		height: auto;
	}
	.present__wrap {
		margin: auto;
		padding: 2px;
		max-width: 640px;
		background-image: url(images/present_bg_sp.jpg);
		border-radius: 5px;
	}
	.present__wrap:before {
		top: 2px;
		right: 2px;
		bottom: 2px;
		left: 2px;
		border-radius: 3px;
	}
	.present__label {
		margin: auto;
		height: 35px;
		top: -20px;
	}
	.present__label img {
		width: auto;
		height: 100%;
	}
	.present__inner {
		margin: 0;
		padding: 0 10px 20px;
		display: block;
	}
	.presnet__image {
		margin: -10px auto 0;
		min-width: 220px;
		width: 40vw;
		height: auto;
	}
	.present__contents {
		width: 100%;
	}
	.present__header {
		margin: 10px 0 0;
		justify-content: center;
	}
	.present__icon {
		margin: 0 10px 0 0;
		width: 70px;
		flex-shrink: 0;
	}
	.present__icon img {
		width: 100%;
		height: auto;
	}
	.present__title {
		font-size: 15px;
		line-height: 1.4;
	}
	.present__caution {
		margin: 8px 0 0;
	}
	.present__button {
		margin: 10px 0 0;
	}
	.present__date {
		margin: 10px 0 0;
		font-size: 13px;
	}

	/* tokusyu01 */
	.tokusyu--01 .present:after {
		background-size: 27px 47px;
	}
	
	/* tokusyu02 */
	.tokusyu--02 .present:after {
		background-size: 49px 58px;
	}
	
	/* tokusyu03 */
	.tokusyu--03 .present:after {
		background-size: 99px 65px;
	}
	
	/* tokusyu04 */
	.tokusyu--04 .present:after {
		background-size: 85px 49px;
	}

	/* pr
	----------------------------------------------- */
	
	.pr {
		margin: 35px auto 0;
		max-width: none;
		border-radius: 0px;
	}
	.pr__label {
		top: 0;
		display: block;
		padding: 8px 0 30px;
		max-width: none;
		height: auto;
		font-size: 14px;
		line-height: 1.5;
		text-align: center;
		border-radius: 0px;
	}
	.pr__inner {
		padding: 0;
		margin: auto;
		max-width: 690px;
		display: block;
	}
	.pr__image {
		position: relative;
		margin: -20px auto 0;
		min-width: 95px;
		width: 20vw;
	}
	.pr__contents {
		padding: 0 25px 25px;
		width: 100%;
		box-sizing: border-box;
	}
	.pr__title {
		margin: 15px 0 0;
		padding: 0 0 10px;
		font-size: 13px;
	}
	.pr__text {
		margin: 8px 0 0;
		line-height: 1.5;
		text-align: justify;
	}
	.pr__copyright {
		margin: 5px 0 0;
		font-size: 10px;
		line-height: 1.5;
	}
	.pr__button {
		margin: 20px 15px 0;
	}
	.pr__button a {
		width: 100%;
		font-size: 13px;
		border-radius: 2px;
	}
	.pr__banners {
		margin: 20px 0 0;
		justify-content: center;
	}
	.pr__banner {
		margin: 0 7px;
	}
	.pr__banner img {
		width: auto;
		height: 40px;
	}

	/* tokusyu04 */
	.tokusyu--04 .pr__image {
		min-width: 190px;
		width: 35vw;
	}
	.tokusyu--04 .pr__contents {
		width: 100%;
	}



	/* main
	----------------------------------------------- */

	.main {
		padding: 0;
	}

}



/* tablet
----------------------------------------------- */

@media screen and (min-width:641px) and (max-width: 1000px) {


	/* tokusyu
	----------------------------------------------- */

	.tokusyu__title br {
		display: none;
	}


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

	.program__title br {
		display: none;
	}


}


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

@supports (-webkit-touch-callout: none) {
	.loading {
		height: -webkit-fill-available;
	}
}


/* keyframes
----------------------------------------------- */

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
