@charset "utf-8";


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

body {
	margin: 0;
	padding: 0;
	width: 100%;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	position: relative;
	overflow: hidden;
}
a {
	color: #f01046;
	text-decoration: none;
}

.text__pink {
	color: #f01046;
}


/* footer
----------------------------------------------- */

.footer {
	background: #fff;
}


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

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #141414;
	z-index: 20;
}
.loading__progress {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -500px;
	width: 1000px;
	height: 8px;
	overflow: hidden;
}
.loading__progress-bar {
	top: 0;
	left: 0;
	margin: 0;
	width: 0px;
	height: 8px;
	background: #ffd21e;
	background-size: 14px 19px;
	z-index: 1;
	transition: width 0.25s;
}
.loading__progress-base {
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 8px;
	background: #3c3c3c;
}

/* 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);
}



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

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


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

	body {
		background: #141414 url(images/bg.jpg) no-repeat center top;
		background-size: cover;
		background-attachment: fixed;
	}

	.sp {
		display: none;
	}


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

	.header {
		position: relative;
		height: 710px;
		background: rgba(20,20,20,0.8);
	}
	.header__logo {
		position: absolute;
		top: 0;
		left: 50%;
		margin: 0 0 0 -450px;
		width: 111px;
		height: 88px;
		z-index: 10;
	}
	.header__logo a {
		display: block;
		width: 111px;
		height: 88px;
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		background: url(images/neco.png) no-repeat;
		background-size: 111px 88px;
		box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
	}
	.header__inner {
		position: relative;
		margin: auto;
		padding: 260px 0 0;
		width: 1000px;
	}
	.header__title {
		position: absolute;
		top: 20px;
		left: 50%;
		margin: 0 0 0 -325px;
	}
	.header__images {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		z-index: 2;
	}
	.header__copyright {
		position: relative;
		margin: 15px 0 0;
		width: 1000px;
		height: 16px;
		background: url(images/copyright.png) no-repeat;
		background-size: 1000px 16px;
		z-index: 2;
	}
	.header__ink li {
		position: absolute;
	}
	.header__ink li:nth-child(1) {
		top: 0;
		right: 30px;
	}
	.header__ink li:nth-child(2) {
		top: 134px;
		left: -55px;
		transform: rotate(-90deg);
	}
	.header__ink li:nth-child(3) {
		top: 512px;
		right: -50px;
	}

	/* js-header__ready */
	.header-ready .header__title {
		opacity: 0;
		transform: scale(0.8) translateY(180px);
		transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1),opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		transition-delay: 0.2s;
		visibility: hidden;
	}
	.header-ready .header__image {
		opacity: 0;
		transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
		transition-delay: 1.1s;
		visibility: hidden;
	}
	.header-ready .header__ink li {
		opacity: 0;
		transform: rotate(-5deg) scale(0.9);
		transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
		visibility: hidden;
	}
	.header-ready .header__ink li:nth-child(2) {
		transform: rotate(-95deg) scale(0.9);
	}
	.header-ready .header__copyright {
		opacity: 0;
		transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
		visibility: hidden;
	}

	/* js-header__start */
	.header-start .header__title {
		opacity: 1;
		transform: scale(1) translateY(180px);
		transition-delay: 0.2s;
		visibility: visible;
	}
	.header-start .header__image {
		opacity: 1;
		visibility: visible;
	}
	.header-start .header__ink li {
		opacity: 1;
		transform: rotate(0deg) scale(1);
		visibility: visible;
		transition-delay: 1.2s;
	}
	.header-start .header__ink li:nth-child(2) {
		transform: rotate(-90deg) scale(1);
		transition-delay: 1.3s;
	}
	.header-start .header__ink li:nth-child(3) {
		transition-delay: 1.4s;
	}

	/* js-header__finish */
	.header-finish .header__title {
		transform: translateY(0px);
		transition-delay: 0.3s;
	}
	.header-finish .header__copyright {
		opacity: 1;
		visibility: visible;
		transition-delay: 0.3s;
	}


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

	.intro {
		position: relative;
		background-image: url(images/line_yellow.png), url(images/line_yellow.png), url(images/bg_sand.jpg);
		background-repeat: repeat-x, repeat-x, repeat;
		background-position: center bottom 5px, center 5px, center top;
		background-size: 28px 20px, 28px 20px, 200px 200px;
	}
	.intro:before,
	.intro:after {
		position: absolute;
		left: 50%;
		margin: 0 0 0 -1500px;
		display: block;
		content: "";
		width: 3000px;
		height: 38px;
		background: url(images/line_deco.png) repeat-x center top;
		background-size: 28px 38px;
	}
	.intro:before {
		top: -4px;
		transform: rotate(5deg);
	}
	.intro:after {
		bottom: 0;
		transform: rotate(-5deg);
	}
	.intro__inner {
		position: relative;
		margin: 0 auto;
		padding: 90px 0 117px;
		width: 1000px;
		text-align: center;
	}
	.intro__inner:before,
	.intro__inner:after {
		position: absolute;
		display: block;
		content: "";
		width: 80px;
		height: 90px;
		background: url(images/ink04.png) no-repeat;
	}
	.intro__inner:before {
		top: 85px;
		right: -10px;
		transform: rotate(120deg);
	}
	.intro__inner:after {
		bottom: 95px;
		left: 0;
	}
	.intro__title {
		display: inline-block;
		padding: 0 0 10px;
		font-size: 36px;
		font-weight: 900;
		letter-spacing: 0.01em;
		border-bottom: 4px solid #f01046;
	}
	.intro__summary {
		margin: 20px 0 0;
	}
	.intro__summary .text__pink {
		font-size: 28px;
	}
	.intro__summary .intro__small {
		font-size: 16px;
	}
	.intro__summarytext {
		font-size: 20px;
		font-weight: 700;
		line-height: 1.45;
	}
	.intro__message {
		margin: 30px 0 0;
		font-size: 28px;
		font-weight: 900;
		line-height: 1.3;
		color: #f01046;
	}


	/* porogram
	----------------------------------------------- */

	.program {
		background: url(images/bg_sand2.png);
	}
	.program__header {
		position: relative;
		margin: -84px auto 0;
		padding: 4px;
		width: 808px;
		color: #141414;
		text-align: center;
		background: #ffd200;
		border: 4px solid #141414;
		border-radius: 16px;
		box-sizing: border-box;
	}
	.program__headerinnner {
		padding: 30px 0;
		border: 4px solid #141414;
		border-radius: 12px;
		background-image: url(images/line_black.png), url(images/line_black.png);
		background-repeat: repeat-x;
		background-position: center bottom -4px, center -4px;
		background-size: 28px 20px;
	}
	.program__title {
		font-size: 40px;
		font-weight: 900;
	}
	.program__date {
		margin: 10px 0 0;
		font-size: 30px;
		font-weight: 700;
	}
	.program__date .program__small {
		font-size: 20px;
	}
	.program__articles {
		padding: 30px 0 110px;
	}


	/* article
	----------------------------------------------- */

	.article {
		position: relative;
		margin: 52px auto 0;
		padding: 0 0 30px;
		width: 1000px;
		min-height: 350px;
		box-sizing: border-box;
	}
	.article:before,
	.article:after {
		position: absolute;
		display: inline-block;
		content: "";
	}
	.article:before {
		top: -60px;
		left: -70px;
		width: 150px;
		height: 300px;
		background: url(images/ink03.png) no-repeat;
	}
	.article:after {
		right: 20px;
		bottom: 0px;
		width: 80px;
		height: 90px;
		background: url(images/ink04.png) no-repeat;
	}
	.article__time {
		position: relative;
		z-index: 2;
	}
	.article__image {
		position: absolute;
		top: 50px;
		left: 50px;
		z-index: 2;
	}
	.article__imageimg {
		position: relative;
		z-index: 3;
	}
	.article__imagecap {
		position: absolute;
		bottom: -75px;
		left: -50px;
		opacity: 0.8;
	}
	.article__text {
		margin: 0 50px 0 400px;
	}
	.article__title {
		margin: -10px 0 0;
		font-size: 30px;
		line-height: 1.3;
		color: #f01046;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}
	.article__title .article__small {
		font-size: 24px;
	}
	.article__marker {
		padding: 0 0 0 0.2em;
		background: -ms-linear-gradient(to right, #f01046 50%, transparent 50%) 100% bottom / 200% 6% no-repeat;
		background: linear-gradient(to right, #f01046 50%, transparent 50%) 100% bottom / 200% 6% no-repeat;
		transition: background-position 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	}
	.article__lead {
		margin: 20px 0 0;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.5;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}
	.article__description {
		margin: 10px 0 0;
		font-size: 16px;
		line-height: 1.75;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}

	/* date */
	.article__date {
		margin: 15px 0 0;
		display: flex;
		flex-wrap: wrap;
	}
	.article__dt,
	.article__dd {
		font-size: 16px;
		font-weight: 700;
		color: #ffd200;
	}
	.article__dt {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 10px;
		height: 26px;
		color: #141414;
		background: #ffd200;
	}
	.article__dt:after {
		position: absolute;
		top: 0;
		right: -10px;
		display: block;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 13px 0 13px 10px;
		border-color: transparent transparent transparent #ffd200;
	}
	.article__dd {
		padding: 5px 0 5px 20px;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}

	/* caution */
	.article__caution {
		margin: 5px 0 0;
	}
	.article__cautionitem {
		padding: 0 0 0 1em;
		font-size: 14px;
		line-height: 2;
		text-indent: -1em;
	}

	/* hover */
	.article__title a:hover .article__marker {
		background-position: 0% bottom;
	}


	/* presnet
	----------------------------------------------- */

	.present {
		position: relative;
		color: #141414;
		background-color: rgba(255,210,30,0.9);
		background-image: url(images/line_black.png), url(images/line_black.png);
		background-repeat: repeat-x;
		background-position: center bottom 5px, center 5px;
		background-size: 28px 20px;
		border-bottom: 10px solid #141414;
	}
	.present:before {
		position: absolute;
		top: -4px;
		left: 50%;
		margin: 0 0 0 -1500px;
		display: block;
		content: "";
		width: 3000px;
		height: 38px;
		background: url(images/line_deco.png) repeat-x center top;
		background-size: 28px 38px;
		transform: rotate(5deg);
	}
	.present__inner {
		margin: auto;
		padding: 112px 0 105px;
		width: 1000px;
		text-align: center;
	}
	.present__title {
		font-size: 50px;
		font-weight: 900;
		line-height: 0.6;
	}
	.present__label {
		font-size: 16px;
		color: #f01046;
	}
	.present__lead {
		display: inline-block;
		margin: 30px 0 0;
		padding: 0 0 10px;
		font-size: 40px;
		font-weight: 900;
		letter-spacing: -0.05em;
		border-bottom: 4px solid #141414;
	}
	.present__lead .text__pink {
		font-size: 60px;
	}
	.present__subtitle {
		margin: 23px 0 0;
		font-size: 20px;
		line-height: 1.8;
		font-weight: 700;
	}
	.present__subtitle--line1,
	.present__subtitle--line2 {
		display: block;
	}
	.present__subtitle--line2 {
		font-weight: 900;
	}
	.pressent__big {
		font-size: 28px;
	}
	.pressent__big--num {
		font-size: 34px;
	}
	.present__btn {
		margin: 40px auto 0;
		width: 640px;
	}
	.present__btn a {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 640px;
		height: 90px;
		color: #fff;
		font-size: 30px;
		font-weight: 900;
		letter-spacing: 0.1em;
		background: #f01046;
		border-radius: 90px;
		box-shadow: 0px 6px 0px rgba(20,20,20,0.2);
		transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.present__btn a:after {
		position: absolute;
		top: 50%;
		right: 50px;
		display: block;
		margin: -9px 0 0;
		content: "";
		width: 16px;
		height: 16px;
		border-right: 4px solid #fff;
		border-bottom: 4px solid #fff;
		transform: rotate(-45deg);
	}

	/* hover */
	.present__btn a:hover {
		transform: scale(1.1);
	}


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

	.outline {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 28px auto 0;
		width: 900px;
	}
	.outline__main {
		width: 550px;
	}
	.outline__table {
		border-bottom: 1px solid #141414;
	}
	.outline__th,
	.outline__td {
		padding: 12px 0 16px;
		font-size: 16px;
		line-height: 1.75;
		font-weight: 700;
		text-align: justify;
		text-justify: inter-ideograph;
		vertical-align: top;
		border-top: 1px solid #141414;
	}
	.outline__th {
		width: 100px;
	}
	.outline__caution {
		margin: 14px 0 0;
	}
	.outline__cautionitem {
		padding: 0 0 0 1em;
		font-size: 14px;
		line-height: 1.7;
		text-align: justify;
		text-justify: inter-ideograph;
		text-indent: -1em;
	}


}



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

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


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

	body {
		background: url(images/sp_bg.jpg);
	}

	.pc {
		display: none;
	}

	.wrap img {
		width: 100%;
		height: auto;
	}


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

	.loading__progress {
		position: absolute;
		top: 50%;
		left: 0;
		margin: -4px 0 0;
		width: 100%;
	}
	.loading__progress-bar {
		top: 0;
		left: 0;
		width: 0;
	}
	.loading__progress-base {
		top: 0;
		left: 0;
		width: 100%;
	}


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

	.header {
		position: relative;
		padding: 40px 0 0;
		background: url(images/bg.jpg) no-repeat center bottom;
		background-size: auto 100%;
	}
	.header:before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: inline-block;
		content: "";
		background: rgba(20,20,20,0.8);
	}
	.header__logo {
		position: absolute;
		top: 0;
		width: 100%;
		height: 40px;
		z-index: 10;
	}
	.header__logo a {
		display: block;
		width: 100%;
		height: 40px;
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		background: #ee7701 url(images/sp_neco.png) no-repeat center center;
		background-size: 155px 24px;
	}
	.header__inner {
		position: relative;
		margin: auto;
		max-width: 640px;
	}
	.header__title,
	.header__images,
	.header__copyright,
	.header__ink li {
		position: absolute;
	}
	.header__title {
		top: 2.5%;
		right: -1%;
		left: -1%;
	}
	.header__images {
		top: 26.1%;
		right: 6.2%;
		left: 6.2%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		z-index: 2;
	}
	.header__image {
		margin: 3.7% 0 0 0;
		width: 35.7%;
	}
	.header__image:nth-child(2) {
		margin: 3.7% 25% 0 0;
	}
	.header__image:nth-child(3) {
		margin: 3.7% 0 0 25%;
	}
	.header__copyright {
		right: 6.2%;
		left: 6.2%;
		bottom: 4.8%;
		z-index: 2;
	}
	.header__ink li:nth-child(1) {
		top: 26.3%;
		right: 2%;
		left: 74.3%;
	}
	.header__ink li:nth-child(2) {
		top: 57.3%;
		right: 73.8%;
		left: 4%;
		transform: rotate(-90deg);
	}
	.header__ink li:nth-child(3) {
		top: 73.8%;
		right: -4%;
		left: 82.8%;
	}

	/* js-header__ready */
	.header-ready .header__title {
		opacity: 0;
		transform: scale(0.8) translateY(50px);
		transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1),opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		transition-delay: 0.1s;
		visibility: hidden;
	}
	.header-ready .header__image {
		opacity: 0;
		transform: translateY(-30px);
		transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
		transition-delay: 0.6s;
		visibility: hidden;
	}
	.header-ready .header__ink li {
		opacity: 0;
		transform: rotate(-5deg) scale(0.9);
		transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
		transition-delay: 1s;
		visibility: hidden;
	}
	.header-ready .header__ink li:nth-child(2) {
		transform: rotate(-95deg) scale(0.9);
	}
	.header-ready .header__copyright {
		opacity: 0;
		transform: translateY(-30px);
		transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
		transition-delay: 0.6s;
		visibility: hidden;
	}

	/* js-header__start */
	.header-start .header__title {
		opacity: 1;
		transform: scale(1) translateY(0px);
		visibility: visible;
	}
	.header-start .header__image {
		opacity: 1;
		transform: translateY(0px);
		visibility: visible;
	}
	.header-start .header__ink li {
		opacity: 1;
		transform: rotate(0deg) scale(1);
		visibility: visible;
		transition-delay: 0.9s;
	}
	.header-start .header__ink li:nth-child(2) {
		transform: rotate(-90deg) scale(1);
		transition-delay: 1s;
	}
	.header-start .header__ink li:nth-child(3) {
		transition-delay: 1.1s;
	}
	.header-start .header__copyright {
		opacity: 1;
		transform: translateY(0px);
		visibility: visible;
	}

	/* js-header__finish */
	.header-finish .header__title {
		transform: scale(1) translateY(0px);
		transition-delay: 0.1s;
	}


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

	.intro {
		position: relative;
		background-image: url(images/line_yellow.png), url(images/line_yellow.png), url(images/bg_sand.jpg);
		background-repeat: repeat-x, repeat-x, repeat;
		background-position: center bottom 5px, center 5px, center top;
		background-size: 14px 10px, 14px 10px, 200px 200px;
	}
	.intro:before,
	.intro:after {
		position: absolute;
		left: 50%;
		margin: 0 0 0 -750px;
		display: block;
		content: "";
		width: 1500px;
		height: 19px;
		background: url(images/line_deco.png) repeat-x center top;
		background-size: 14px 19px;
	}
	.intro:before {
		top: 0;
		transform: rotate(5deg);
	}
	.intro:after {
		bottom: 0;
		transform: rotate(-5deg);
	}
	.intro__inner {
		position: relative;
		margin: auto;
		padding: 40px 20px 65px;
		max-width: 640px;
		text-align: center;
		box-sizing: border-box;
	}
	.intro__inner:before,
	.intro__inner:after {
		position: absolute;
		display: block;
		content: "";
		width: 40px;
		height: 45px;
		background: url(images/ink04.png) no-repeat;
		background-size: 40px 45px;
	}
	.intro__inner:before {
		top: 42px;
		right: -13px;
		transform: rotate(120deg);
	}
	.intro__inner:after {
		bottom: 70px;
		left: -13px;
	}
	.intro__title {
		display: inline-block;
		padding: 0 0 5px;
		font-size: 20px;
		line-height: 1.4;
		font-weight: 900;
		letter-spacing: 0.01em;
		border-bottom: 2px solid #f01046;
	}
	.intro__summary {
	}
	.intro__summary .text__pink {
		display: inline-block;
		font-size: 20px;
	}
	.intro__summary .intro__small {
		font-size: 10px;
	}
	.intro__summarytext {
		margin: 14px 0 0;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.35;
	}
	.intro__message {
		margin: 25px 0 0;
		font-size: 16px;
		font-weight: 900;
		line-height: 1.5;
		color: #f01046;
	}


	/* porogram
	----------------------------------------------- */

	.program {
		background: url(images/bg_sand2.png);
	}
	.program__inner {
		margin: auto;
		padding: 0 25px;
		max-width: 640px;
		box-sizing: border-box;
	}
	.program__articles {
		padding: 30px 0 50px;
	}
	.program__header {
		position: relative;
		margin: -48px 0 0;
		padding: 2px;
		color: #141414;
		text-align: center;
		background: #ffd200;
		border: 2px solid #141414;
		border-radius: 6px;
		box-sizing: border-box;
	}
	.program__headerinnner {
		padding: 20px 0;
		border: 2px solid #141414;
		border-radius: 4px;
		background-image: url(images/line_black.png), url(images/line_black.png);
		background-repeat: repeat-x;
		background-position: center bottom -2px, center -2px;
		background-size: 14px 10px;
	}
	.program__title {
		font-size: 20px;
		font-weight: 900;
	}
	.program__date {
		margin: 8px 0 0;
		font-size: 15px;
		font-weight: 700;
	}
	.program__date .program__small {
		font-size: 10px;
	}
	.program__articles {
		margin: -70px 0 0;
	}


	/* article
	----------------------------------------------- */

	.article {
		margin: 115px 0 0;
		position: relative;
	}
	.article:before,
	.article:after {
		position: absolute;
		display: inline-block;
		content: "";
	}
	.article:before {
		top: -60px;
		left: -45px;
		width: 75px;
		height: 150px;
		background: url(images/ink03.png) no-repeat;
		background-size: 75px 150px;
	}
	.article:after {
		right: -30px;
		bottom: -30px;
		width: 80px;
		height: 90px;
		background: url(images/ink04.png) no-repeat;
		opacity: 0.6;
	}
	.article__time {
		position: absolute;
		top: -35px;
		left: -15px;
		z-index: 2;
	}
	.article__time img {
		width: auto;
		height: 40px;
	}
	.article__image {
		margin: 55px 0 0;
	}
	.article__imageimg {
		position: relative;
		z-index: 3;
	}
	.article__imagecap {
		position: absolute;
		top: -55px;
		right: -20px;
		opacity: 0.6;
	}
	.article__imagecap img {
		width: auto;
		height: 60px;
	}
	.article__title {
		margin: 15px 0 0;
		font-size: 20px;
		line-height: 1.3;
		color: #f01046;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}
	.article__title .article__small {
		font-size: 16px;
	}
	.article__lead {
		margin: 16px 0 0;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.6;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}
	.article__description {
		margin: 5px 0 0;
		font-size: 14px;
		line-height: 1.8;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}

	/* date */
	.article__date {
		margin: 16px 0 0;
		display: flex;
	}
	.article__dt,
	.article__dd {
		font-weight: 700;
		color: #ffd200;
		box-sizing: border-box;
	}
	.article__dt {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 5px 0 10px;
		height: 24px;
		font-size: 14px;
		white-space: nowrap;
		color: #141414;
		background: #ffd200;
	}
	.article__dt:after {
		position: absolute;
		top: 0;
		right: -9px;
		display: block;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 12px 0 12px 9px;
		border-color: transparent transparent transparent #ffd200;
	}
	.article__dd {
		padding: 2px 0 0 19px;
		font-size: 16px;
		line-height: 1.37;
		text-shadow: 2px 2px 0px rgba(20,20,20,0.8);
	}

	/* caution */
	.article__caution {
		margin: 10px 0 0;
	}
	.article__cautionitem {
		padding: 0 0 0 1em;
		font-size: 10px;
		line-height: 1.4;
		text-indent: -1em;
	}


	/* presnet
	----------------------------------------------- */

	.present {
		position: relative;
		color: #141414;
		background-color: rgba(255,210,30,0.9);
		background-image: url(images/line_black.png), url(images/line_black.png);
		background-repeat: repeat-x;
		background-position: center bottom 5px, center 5px;
		background-size: 14px 10px;
		border-bottom: 5px solid #141414;
	}
	.present:before {
		position: absolute;
		top: 0px;
		left: 50%;
		margin: 0 0 0 -750px;
		display: block;
		content: "";
		width: 1500px;
		height: 19px;
		background: url(images/line_deco.png) repeat-x center top;
		background-size: 14px 19px;
		transform: rotate(5deg);
	}
	.present__inner {
		margin: auto;
		padding: 67px 25px 50px;
		max-width: 640px;
		text-align: center;
		box-sizing: border-box;
	}
	.present__title {
		font-size: 30px;
		font-weight: 900;
		line-height: 0.6;
	}
	.present__label {
		font-size: 14px;
		color: #f01046;
	}
	.present__lead {
		display: inline-block;
		margin: 23px 0 0;
		padding: 0 0 8px;
		font-size: 20px;
		font-weight: 900;
		letter-spacing: -0.05em;
		border-bottom: 2px solid #141414;
	}
	.present__lead .text__pink {
		font-size: 30px;
	}
	.present__subtitle {
		margin: 20px 0 0;
		font-size: 14px;
		line-height: 1.4;
		font-weight: 700;
	}
	.present__subtitle--line1,
	.present__subtitle--line2 {
		display: block;
	}
	.present__subtitle--line2 {
		margin: 10px 0 0;
		font-weight: 900;
	}
	.pressent__big {
		font-size: 16px;
	}
	.pressent__big--num {
		font-size: 20px;
	}
	.present__btn {
		margin: 18px auto 0;
		padding: 0 10px;
		max-width: 480px;
	}
	.present__btn a {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 500px;
		height: 56px;
		color: #fff;
		font-size: 16px;
		font-weight: 900;
		letter-spacing: 0.1em;
		background: #f01046;
		border-radius: 150px;
		box-shadow: 0px 3px 0px rgba(20,20,20,0.2);
	}
	.present__btn a:after {
		position: absolute;
		top: 50%;
		right: 30px;
		display: block;
		margin: -5px 0 0;
		content: "";
		width: 8px;
		height: 8px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(-45deg);
	}


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

	.outline {
		margin: 20px 0 0;
	}
	.outline__main {
		margin: 20px 0 0;
	}
	.outline__table {
		border-bottom: 1px solid #141414;
	}
	.outline__th,
	.outline__td {
		display: block;
		padding: 5px 0 15px;
		font-size: 14px;
		line-height: 1.4;
		text-align: justify;
		vertical-align: top;
	}
	.outline__th {
		padding: 15px 0 0;
		font-weight: 700;
		border-top: 1px solid #141414;
	}
	.outline__td .text__pink {
		font-weight: 700;
	}
	.outline__caution {
		margin: 12px 0 0;
	}
	.outline__cautionitem {
		padding: 0 0 0 1em;
		font-size: 10px;
		line-height: 1.5;
		text-align: justify;
		text-justify: inter-ideograph;
		text-indent: -1em;
	}


}
