@charset "UTF-8";

/* CSS Document */
*{
	margin:0px;
	padding:0px;
}
html {
	margin:0px;
	padding:0px;
	overflow-y : scroll;
}
body {
	margin:0px auto;
	padding:0;
	font-size:13px !important;
	*font-size:small;
	*font:x-small;
	line-height:100%;
	font-family:'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, 'Yu Gothic', YuGothic, sans-serif;
	font-weight:normal;
	max-width: 2500px;
	overflow: hidden;
}
*,*::before,*::after {
	box-sizing: border-box;
}
/* clearfix */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
/* IE6 */
* html .clearfix { zoom: 1;}
/* IE7 */
*:first-child+html .clearfix {zoom: 1;}
h1, .h2, .h3, .h4, .h5, .h6 {
	margin:0px;
	padding: 0px;
	clear:both;
	font-size:100%;
	line-height:160%;
	font-weight:normal;
}
img {
	border:none;
	vertical-align:top;
	margin:0;
	padding:0;
}
@media screen and (max-width: 640px) {
	img {
		width: 100%;
	}
}
p {
	margin:0;
	padding:0;
	font-size:100%;
	line-height:160%;
}
a , a:link , a:visited {
	text-decoration:none;
	transition: 0.2s;
}
a:hover {
	color: #FFF;
	text-decoration: none;
}
header, section, footer, aside, nav, article , main {
	display:block;
	text-align: left;
}
input, select {
	vertical-align:middle;
}
table {
	width:100%;
	border-collapse: collapse;
	border-spacing: 0;
	word-wrap: break-word;
}
ul {
	list-style-type: none;
}
/* iPad背景切れ対策 */
@media screen and (min-width:641px){
	body{
		min-width:1080px;
	}
}
/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp {
	display:none;
}
@media screen and (max-width: 640px) {
	.sp {
		display:block;
	}
	.pc {
		display:none;
	}
}
a.txtLink {
	color: #000;
	text-decoration: underline;
	transition: color 0.2s;
}
a.txtLink:hover {
	color: #403B45;
	text-decoration: none;
}
/* テキスト画像 */
.txtPic, .txtPic * {
	text-indent: 200%;
	white-space: nowrap;
	line-height: 100%;
	overflow: hidden;
}

/*
	common
----------------------------------------------------------------------------------------*/
/* flexbox */
.flex{
	display: -ms-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex.reverse{
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex.center{
	-ms-align-items: center;
	align-items: center;
	-ms-justify-content: center;
	justify-content: center;
}
.flex.bottom{
	-ms-align-items: flex-end;
	align-items: flex-end;
}
.flex.between{
	-ms-justify-content: space-between;
	justify-content: space-between;
}
p{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.8;
}

.ctsArea{
	width: 940px;
	margin: 0 auto;
}

/* btn */
.btnPink{
	margin: 10px auto;
	color: #FFF;
	text-align: center;
}
.btnPink span{
	padding: 0 0 0 34px;
	position: relative;
}
.btnPink span::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.btnPink{
	height: 50px;
	font-size: 18px;
	background: #ff687f;
	border-radius: 6px;
	box-shadow: 0 5px #99475b;
}
.btnPink:hover{
	box-shadow: 0 0 #99475b;
	transform: translate3d(0, 3px, 0);
}
.btnPink span{
	padding: 0 0 0 24px;
}
.btnPink span::before{
	width: 16px;
	height: 16px;
	background: url(../images/btn_download.png) no-repeat;
	background-size: 16px;
}
@media screen and (max-width: 640px) {
	.ctsArea{
		width: calc(100% - 40px);
	}

	/* btn */
	.btnPink{
		margin: 10px auto;
		text-align: center;
	}
	.btnPink span{
		padding: 0 0 0 34px;
		position: relative;
	}
	.btnPink span::before{
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.btnPink{
		height: 50px;
		font-size: 16px;
	}
	.btnPink:hover{
		box-shadow: 0 0 #99475b;
		transform: translate3d(0, 3px, 0);
	}
	.btnPink span{
		padding: 0 0 0 24px;
	}
	.btnPink span::before{
		width: 16px;
		height: 16px;
		background: url(../images/btn_download.png) no-repeat;
		background-size: 16px;
	}
}
/* fadein */
.fadein {
	opacity : 0;
	transform : translate(0, 30px);
	transition : all 500ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
.fadein:nth-child(2) {
	-ms-transition-delay:100ms;
	transition-delay:100ms;
}
.fadein:nth-child(3) {
	-ms-transition-delay:200ms;
	transition-delay:200ms;
}
.thanksHead.fadein ,
.greeting.fadein{
	transform : translate(0, 0);
	transition : all 1.0s ease .5s;
}

/*
	header
----------------------------------------------------------------------------------------*/
header {
	margin:0px auto;
	padding:0px;
	width:100%;
	position:relative;
	background: #fff;
	z-index:999;
}
#headerOut {
	margin:0px auto;
	padding:0;
	width:100%;
	height:77px;
}
.headLogo {
	float:left;
	margin:0px auto;
	width:50%;
}
#headLogoNissei {
	margin:18px 0px auto 0px;
	text-align: left;
	width:186px;
	}
#headLogoNissei img {
	width:100%;
}	
.headSub {
	float:right;
	margin:0px auto;
	width:50%;
}
#headLogoSub {
	float:right;
	margin:12px 0px auto 0px;
	width:258px;
	text-align:right;
}
#headLogoSub img {
	width:100%;
	margin-top:4px;
}
@media screen and (max-width: 640px) {
	#headerOut {
		height:auto;
		border-bottom:#54C3F1 4px solid;
	}
	#headLogoNissei {
		margin:7% 0px 2% 0px;
		width:93px;
	}
	#headLogoSub {
		margin:4% 0px 4% 0px;
		width:150px;
	}
}

/*
	top
----------------------------------------------------------------------------------------*/
#top{
	background: url(../images/top_bg.png) no-repeat;
	background-size: cover;
	position: relative;
}
#top::before ,
#top::after{
	content: '';
	width: 108px;
	height: 540px;
	background: url(../images/top_curtain_pc.png) no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	z-index: 2;
}
#top::before{
	left: 0;
}
#top::after{
	right: 0;
	transform: scaleX(-1);
}
.topArea{
	position: relative;
}
.topArea::before ,
.topArea::after{
	content: '';
	width: 220px;
	height: 95%;
	background: url(../images/top_deco_pc.png);
	position: absolute;
	top: 0;
	z-index: 1;
}
.topArea::before{
	left: 0;
}
.topArea::after{
	right: 0;
	transform: scaleX(-1);
}
#top .ctsArea{
	padding: 0 0 70px 0;
}
.topHeadArea{
	padding: 30px 0 0 0;
	position: relative;
}
#top h1{
	margin: 0 0 50px 0;
	position: relative;
	z-index: 3;
	opacity: 0;
	animation: h1Anime.2s linear 0.5s forwards;
}
.spotArea{
	position: absolute;
	bottom: -50px;
	opacity: 0;
	animation: spotAnime .3s linear 1.3s forwards;
}
.spotArea::before ,
.spotArea::after{
	content: '';
	width: 562px;
	height: 588px;
	background: url(../images/top_spot_pc.png) no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: -18px;
	z-index: -9;
}
.spotArea::before{
	left: 0;
}
.spotArea::after{
	right: 0;
	transform: scaleX(-1);
}
.slide {
	width: 960px;
	height:300px;
}
.slide img {
	position:absolute;
	left:0;
	top:0;
}
.topInfo{
	position: relative;
	z-index: 3;
}
.topInfo h2{
	opacity: 0;
	animation: txt01 .5s ease 1.4s forwards;
}
.recruitTxt{
	opacity: 0;
	animation: txt02 .3s linear 1.0s forwards;
}
/*keyframe*/
@keyframes h1Anime {
	0%{
		transform: rotate(25deg);
	}
	100%{
		opacity: 1;
		transform: rotate(0);
	}
}
@keyframes spotAnime {
	0%{
		
	}
	100%{
		opacity: 1;
		
	}
}
@keyframes txt01 {
	0% {
		opacity: 0;
		transform: scale(1.3);
	}
	100% {
		opacity: 1;
		transform: scale(1.0);
	}
}
@keyframes txt02 {
	0% {
		opacity: 0;
		transform: translate(10% , 5%);
	}
	100% {
		opacity: 1;
		transform: translate(0 , 0);
	}
}
@media screen and (max-width: 640px) {
	#top{
		background: url(../images/top_bg_sp.png) no-repeat center;
		background-size: cover;
	}
	#top::before ,
	#top::after{
		content: none;
	}
	.topArea::before ,
	.topArea::after{
		width: 100px;
		height: 100%;
		background: url(../images/top_deco_pc.png);
		background-size: 150%;
	}
	#top .ctsArea{
		padding: 0 0 70px 0;
	}
	.topHeadArea{
		padding: 10px 0 0 0;
		position: relative;
	}
	#top h1{
		width: 92%;
		margin: 0 0 14px 0;
	}
	.spotArea{
		position: absolute;
		bottom: -26px;
	}
	.spotArea::before ,
	.spotArea::after{
		content: '';
		width: 100%;
		height: 588px;
		background: url(../images/top_spot_sp.png) no-repeat bottom;
		background-size: 100%;
		position: absolute;
		bottom: -30px;
		z-index: -9;
	}
	.spotArea::before{
		left: 0;
	}
	.spotArea::after{
		right: 0;
		transform: scaleX(-1);
	}
	.slideArea.sp{
		display: -ms-flex;
		display: flex;
		-ms-justify-content: center;
		justify-content: center;
	}
	.slide {
		width: 280px;
		height: 100px;
	}
	.slide img {
		position:absolute;
		left:0;
		top:0;
	}
	.topInfo{
		padding: 0 0 110px 0;
		position: relative;
		z-index: 3;
	}
	.topInfo h2{
		width: 200px;
		margin: 0 auto;
		z-index: 1;
	}
	.recruitTxt{
		position: absolute;
		top: 68px;
	}
}

/*
	bg deco
----------------------------------------------------------------------------------------*/
#bgDeco{
	position: relative;
}
#bgDeco::before ,
#bgDeco::after{
	content: '';
	width: 140px;
	position: absolute;
	z-index: 2;
}
#bgDeco::before{
	height: 2738px;
	background: url(../images/bg_left_pc.png) no-repeat;
	top: 1040px;
	left: 0;
}
#bgDeco::after{
	height: 2720px;
	background: url(../images/bg_right_pc.png) no-repeat;
	top: 850px;
	right: 0;
}
@media screen and (max-width: 640px) {
	#bgDeco::before ,
	#bgDeco::after{
		position: static;
	}
	#bgDeco::before ,
	#bgDeco::after{
		content: none;
	}
}

/*
	thanks
----------------------------------------------------------------------------------------*/
#thanks{
	padding: 40px 0;
	background: #fff2f5;
	position: relative;
	z-index: 1;
}
#thanks::before{
	content: '';
	width: 100%;
	height: 42px;
	background: url(../images/summary_bg.png) repeat-x;
	background-size: 90px 42px;
	position: absolute;
	top: -26px;
}
#thanks::after{
	content: '';
	width: 100%;
	height: 500px;
	background: #fff2f5;
	transform: skewY(10deg);
	position: absolute;
	bottom: -210px;
	z-index: -2;
}
#thanks .ctsArea::before ,
#thanks .ctsArea::after{
	content: '';
	width: 220px;
	height: 95%;
	background: url("../images/top_deco_pc.png");
	position: absolute;
	z-index: -1;
}
#thanks .ctsArea::before{
	top: 40px;
	left: 0;
}
#thanks .ctsArea::after{
	top: 110px;
	right: 0;
	transform: scaleX(-1);
}
.thanksHeadArea{
	position: relative;
}
.thanksHead{
	margin: 0 0 20px 0;
	animation: thanksHeadAnime 2.5s ease;
}
.summaryBtn{
	width: 240px;
	padding: 0 0 170px 0;
	text-align: center;
	background: url("../images/thanks_modalPic.png") no-repeat center bottom;
	cursor: pointer;
	position: absolute;
	right: 0;
	z-index: 1;
}
.summaryBtn:hover{
	background: url("../images/thanks_modalPic_hover.png") no-repeat center bottom;
}
.summaryBtn img{
	animation: sumBtnAnime 2.5s ease infinite;
}
#thanks p{
	width: 690px;
	color: #0068D6;
}
.note{
	font-size: 14px;
	color: #FF3C3C;
}
/*keyframe*/
@keyframes sumBtnAnime {
	0%{
		transform: translate3d(0,0,0);
	}
	50%{
		transform: translate3d(0,-10px,0);
	}
	100%{
		transform: translate3d(0,0,0);
	}
}
@media screen and (max-width: 640px) {
	#thanks{
		padding: 10px 0;
	}
	#thanks::before{
		background-size: 60px;
	}
	#thanks .ctsArea{
		margin: -70px auto 0 auto;
	}
	#thanks .ctsArea::before ,
	#thanks .ctsArea::after{
		content: none;
	}
	.thanksHeadArea{
		margin: 0 0 10px 0;
		display: -ms-flex;
		display: flex;
		-ms-align-items: center;
		align-items: center;
		position: static;
		top: -60px;
	}
	.thanksHead{
		width: 65%;
		margin: 0;
	}
	.summaryBtn{
		width: 35%;
		margin: 10px 0 0 0 ;
		padding: 0 0 23% 0;
		background: url("../images/thanks_modalPic.png") no-repeat center bottom;
		background-size: 90%;
		position: static;
		right: auto;
	}
	.summaryBtn:hover{
		background: url("../images/thanks_modalPic_hover.png") no-repeat center bottom;
		background-size: 100%;
	}
	#thanks p{
		width: 100%;
	}
}

/*
	application
----------------------------------------------------------------------------------------*/
#application{
	background: url(../images/application_bg.png) #d5f8c2;
	border-radius: 14px;
}
#application .ctsArea{
	padding: 90px 0 10px 0;
	position: relative;
	z-index: 7;
}
.tableArea{
	position: relative;
	z-index: 6;
}
.tableArea::before{
	content: '';
	width: 150px;
	height: 130px;
	background: url(../images/application_deco.png) no-repeat;
	position: absolute;
	top: -70px;
	right: 64px;
}
#application table{
	margin: 0 0 42px 0;
	position: relative;
	z-index: 1;
}
#application table p{
	font-size: 14px;
	font-feature-settings: 'palt';
	letter-spacing: 0.1px;
	position: relative;
	z-index: 1;
}
#application table p + p{
	margin: 6px 0 0 0;
}
#application table .note{
	margin: 10px 0 0 0;
	font-size: 12px;
	font-weight: bold;
	color: #ff3150;
}
#application .note li{
	margin: 0 0 2px 0;
	line-height: 1.6;
}
#application .note li::before{
	content: '※';
}
.appliHead{
	padding: 24px;
	font-size: 30px;
	color: #FFF;
	text-align: center;
	line-height: 1;
	background: rgba(255,104,127,0.9);
	border-radius: 8px 8px 0 0;
}
.appliHead span{
	position: relative;
}
.appliHead span::before ,
.appliHead span::after{
	content: '';
	width: 95px;
	height: 48px;
	background: url(../images/application_head_deco.png) no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.appliHead span::before{
	left: -114px;
}
.appliHead span::after{
	right: -114px;
	transform: translateY(-50%) scaleX(-1);
}
#application tbody{
	padding: 0 50px;
	background: rgba(255,255,255,0.9);
	border-radius: 0 0 8px 8px;
	display: block;
}

#application tbody tr{
	border-bottom: 1px solid rgba(43,110,190,0.1);
}
#application tbody th ,
#application tbody td{
	padding: 36px 0;
	line-height: 1.7;
}
#application tbody th , .addTit{
	width: 186px;
	font-weight: bold;
	color: #ff687f;
	vertical-align: top;
}
.pdfArea{
	text-align: center;
}
.pdfTit{
	margin: 20px 0 8px 0;
	font-size: 22px;
	font-weight: bold;
	color: #ff687f;
	position: relative;
}
.pdfTit::before ,
.pdfTit::after{
	content: '';
	width: 160px;
	height: 1px;
	background: #ff687f;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.pdfTit::before{
	left: 0;
}
.pdfTit::after{
	right: 0;
}
.pdfArea p{
	font-size: 16px;
	font-weight: bold;
	color: #ff687f;
}
.pdfArea li{
	width: calc((100% - 26px) / 3);
}
.pdfImg{
	margin: 8px 0 ;
	border: 2px solid #ff687f;
	border-radius: 6px;
	overflow: hidden;
	display: block;
}
.tdArea:first-child{
	margin: 0 0 36px 0;
}
.tableTit{
	margin: 0 0 12px 0;
	padding: 2px 20px 0 20px;
	font-weight: bold;
	color: #ff687f;
	border: 1px solid #ff687f;
	display: inline-block;
	border-radius: 20px;
}
.mailTxtArea p{
	width: 324px;
}
.mailTxtArea > .picArea{
	width: 312px;
	border: 1px solid #ff687f;
	overflow: hidden;
}
.mailTxtArea > .picArea img{
	width: 100%;
}
.txtArea{
	width: 324px;
	position: relative;
}
.addressArea{
	margin: 10px 0 0 0 ;
	padding: 20px;
	font-weight: bold;
	background: #fff1f3;
}
.txtArea > .picArea{
	width: 312px;
	border: 1px solid #ff687f;
	position: absolute;
	top: 0;
	right: -330px;
}
.txtArea > .picArea img{
	width: 94%;
}
@media screen and (max-width: 640px) {
	#application .ctsArea{
		padding: 110px 0 30px 0;
	}
	.tableArea::before{
		width: 110px;
		height: 100px;
		background: url(../images/application_deco_sp.png) no-repeat;
		background-size: 100%;
		top: -50px;
		right: 0;
	}
	#application table{
		width: 100%;
		margin: 0 0 42px 0;
	}
	#application table p{
		font-size: 14px;
		line-height: 1.6;
	}
	#application table p + p{
		margin: 2px 0 0 0;
	}
	#application table .note{
		margin: 10px 0 0 0;
		font-size: 12px;
		font-weight: bold;
		color: #ff3150;
	}
	#application .note li{
		margin: 0 0 2px 0;
		line-height: 1.6;
	}
	.appliHead{
		padding: 20px;
		font-size: 18px;
	}
	.appliHead span::before ,
	.appliHead span::after{
		width: 54px;
		height: 28px;
		background: url(../images/application_head_deco.png) no-repeat;
		background-size: 100%;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	.appliHead span::before{
		left: -66px;
	}
	.appliHead span::after{
		right: -66px;
		transform: translateY(-50%) scaleX(-1);
	}
	#application tbody{
		padding: 0 20px;
		background: rgba(255,255,255,0.9);
		border-radius: 0 0 8px 8px;
		display: block;
	}
	#application tbody tr{
		padding: 30px 0;
		display: block;
	}
	#application tbody th ,
	#application tbody td{
		padding: 0;
		line-height: 1.7;
		display: block;
	}
	#application tbody th{
		margin: 0 0 10px 0;
	}
	.pdfTit{
		margin: 14px 0 8px 0;
		font-size: 14px;
	}
	.pdfTit::before ,
	.pdfTit::after{
		width: 70px;
		height: 1px;
	}
	.pdfArea p{
		font-size: 14px;
	}
	.pdfArea li{
		width: calc((100% - 10px) / 2);
	}
	.pdfImg{
		margin: 8px 0 ;
	}
	.pdfImg img{
		width: 100%;
	}
	.tdArea:first-child{
		margin: 0 0 36px 0;
	}
	.tableTit{
		margin: 0 0 12px 0;
		padding: 2px 20px 0 20px;
		font-weight: bold;
	}
	.mailTxtArea{
		display: block;
	}
	.mailTxtArea p{
		width: 100%;
		margin: 0 0 8px 0;
	}
	.mailTxtArea > .picArea{
		width: 100%;
		overflow: hidden;
	}
	.mailTxtArea > .picArea img{
		width: 100%;
	}
	.txtArea{
		width: 100%;
	}
	.addressArea{
		margin: 10px 0 0 0 ;
		padding: 20px;
	}
	.txtArea > .picArea{
		width: 100%;
		margin: 10px 0 20px 0;
		padding: 0;
		position: static;
		top: auto;
		right: auto;
		display: block;
	}
	.picArea img{
		width: 100%;
	}
	.txtArea > .picArea img{
		width: 100%;
	}
}

/*
	result
----------------------------------------------------------------------------------------*/
#result{
	padding: 0 0 260px 0;
	background: #FFFFE0;
	position: relative;
}
#result::before{
	content: '';
	width: 100%;
	height: 28px;
	background: url("../images/result_bg.png") repeat-x;
	position: absolute;
	bottom: -26px;
	left: 0;
	z-index: 1;
}
.resultHead{
	width: 490px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}
.resultHead::before ,
.resultHead::after{
	content: '';
	width: 154px;
	height: 188px;
	background: url("../images/result_headDeco_pc.png") no-repeat;
	position: absolute;
	bottom: 42px;
}
.resultHead::before{
	left: -160px;
}
.resultHead::after{
	right: -160px;
	transform: scaleX(-1);
}
.resultBtn{
	height: 126px;
	margin: 60px 0;
}
.resultBtn li{
	width: calc((100% - 60px) / 4);
}
.resultBtn li:nth-child(even){
	margin: 16px 0 0 0;
}
.reBtnArea{
	position: relative;
}
.reBtnArea::after{
	content: '';
	width: 220px;
	height: 20px;
	border-radius: 6px;
	position: absolute;
	bottom: -10px;
	left: 0;
}
.reBtnArea:hover::after{
	bottom: 0;
	transition: .2s;
}
.reBtnArea.orange::after{
	background: #A55734;
}
.reBtnArea.green::after{
	background: #287F16;
}
.reBtnArea.blue::after{
	background: #0F7384;
}
.reBtnArea.purple::after{
	background: #8E47A0;
}
.resultBtn a{
	height: 100px;
	padding: 0 0 8px 0;
	border-radius: 6px;
	position: relative;
	z-index: 1;
}
.resultBtn a::before{
	content: '';
	border-top: 8px solid rgba(255,255,255,0.4);
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	position: absolute;
	left: 50%;
	bottom: 8px;
	transform: translateX(-50%);
}
.resultBtn a:hover{
	margin: 10px 0 0 0;
}
.yoji{
	border: 6px solid #F87428;
	background: url("../images/result_bg01.png");
}
.tei{
	border: 6px solid #2CAB19;
	background: url("../images/result_bg02.png");
}
.kou{
	border: 6px solid #0E96D6;
	background: url("../images/result_bg03.png");
}
.ippan{
	border: 6px solid #BD4ECA;
	background: url("../images/result_bg04.png");
}
.resultArea{
	margin: 0 0 54px 0;
}
.resultTitArea{
	position: relative;
}
.resultTitArea::before{
	content: '';
	width: 118px;
	height: 130px;
	background: url("../images/result_Deco01_pc.png") no-repeat;
	position: absolute;
	top: -30px;
	left: 0;
	z-index: 1;
}
.resultTitArea::after{
	content: '';
	width: 182px;
	height: 40px;
	background: url("../images/result_Deco02_pc.png") no-repeat;
	position: absolute;
	top: 0;
	right: 20px;
}
.resultTit{
	width: 872px;
	height: 80px;
	margin: 0 0 18px auto;
	border-radius: 6px;
}
.resultModal li{
	width: calc((100% - 32px) / 3);
}
.resultModal a{
	margin: 20px 0 16px 0;
	border: 1px solid #000;
	display: block;
	position: relative;
	cursor: pointer;
}
.resultModal a::before{
	content: '';
	width: 27px;
	height: 27px;
	background: url("../images/result_ico01_pc.png") no-repeat;
	position: absolute;
	right: 10px;
	bottom: 8px;
}
.resultModal a:hover{
	opacity: 0.7;
	transition: .2s;
}
.resultModal img{
	width: 100%;
}
.nameArea{
	text-align: center;
	border-radius: 4px;
}
.resultModal .nameArea{
	height: 80px;
}
.nameArea p{
	font-size: 28px;
}
.nameArea span{
	font-size: 18px;
}
.nameArea.orange{
	color: #F87428;
	background: rgba(255,153,71,0.15);
}
.nameArea.green{
	color: #2CAB19;
	background: rgba(46,208,0,0.13);
}
.nameArea.blue{
	color: #0E96D6;
	background: rgba(0,179,255,0.13);
}
.nameArea.purple{
	color: #BD4ECA;
	background: rgba(205,120,215,0.15);
}
@media screen and (max-width: 640px) {
	#result{
		padding: 0 0 60px 0;
	}
	#result::before{
		background: url("../images/result_bg.png") repeat-x;
		background-size: 60px;
		bottom: -28px;
	}
	.resultHead{
		width: 100%;
		margin: 20px auto;
	}
	.resultHead::before ,
	.resultHead::after{
		content: none;
	}
	.resultBtn{
		height: auto;
		margin: 30px 0;
	}
	.resultBtn li{
		width: calc((100% - 10px) / 2);
		margin: 0 0 20px 0;
	}
	.resultBtn li:nth-child(even){
		margin: 0;
	}
	.reBtnArea::after{
		width: 100%;
		bottom: -8px;
	}
	.resultBtn a{
		height: 100px;
		padding: 0 0 8px 0;
	}
	.resultBtn a::before{
		bottom: 6px;
	}
	.resultBtn .yoji img{
		width: 56%;
	}
	.resultBtn .tei img{
		width: 84%;
	}
	.resultBtn .kou img{
		width: 84%;
	}
	.resultBtn .ippan img{
		width: 50%;
	}
	.resultArea{
		margin: 0 0 54px 0;
	}
	.resultTitArea{
		width: 100%;
		position: relative;
	}
	.resultTitArea::before{
		width: 54px;
		height: 62px;
		background: url("../images/result_Deco01_sp.png") no-repeat;
		background-size: 100%;
		top: -16px;
	}
	.resultTitArea::after{
		width: 110px;
		height: 26px;
		background: url("../images/result_Deco02_sp.png") no-repeat;
		background-size: 100%;
		right: 14px;
	}
	.resultTit{
		width: 96%;
		height: 74px;
		margin: 0 0 8px auto;
	}
	.resultTit img{
		width: auto;
		height: 42%;
	}
	.resultModal li{
		width: 100%;
		margin: 0 0 4px 0;
	}
	.resultModal a{
		margin: 20px 0 10px 0;
	}
	.resultModal a::before{
		width: 30px;
		height: 30px;
		background: url("../images/result_ico01_pc.png") no-repeat;
		background-size: 100%;
	}
	.resultModal .nameArea{
		height: 60px;
	}
	.nameArea p{
		font-size: 22px;
	}
	.nameArea span{
		font-size: 14px;
	}
}

/*
ending
------------------------------------------------------------------------------------------------------*/
#ending{
	background: url("../images/top_bg.png") no-repeat;
	background-size: 100%;
	position: relative;
}
#ending .ctsArea{
	padding: 10px 0;
}
.greetingArea{
	position: absolute;
	top: -220px;
}
.greeting{
	width: 940px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.greeting::before ,
.greeting::after{
	content: '';
	position: absolute;
	bottom: 56px;
}
.greeting::before{
	width: 155px;
	height: 240px;
	background: url("../images/greeting_deco01_pc.png") no-repeat;
	left: 0;
}
.greeting::after{
	width: 136px;
	height: 251px;
	background: url("../images/greeting_deco02_pc.png") no-repeat;
	right: 0;
}
.btnArea{
	width: 780px;
	margin: 180px auto 80px auto;
}
.btnArea a{
	width: 380px;
	padding: 30px 20px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: #FFF;
	background: #ff687f;
	border: 3px solid #FFF;
	border-radius: 12px;
	display: block;
	position: relative;
}
.btnArea a::before{
	content: '';
	width: 18px;
	height: 17px;
	background: url(../images/btn_deco02.png) no-repeat;
	position: absolute;
	right: 30px;
}
.btnArea a:hover{
	background: #f83d59;
}
.btnArea a:hover::before{
	right: 24px;
	transition: .2s;
}
.snsArea{
	width: 140px;
	margin: 0 0 0 auto;
}
.twitter-share-button .btn{
	background: #000;
}
.twIcon,
.fbIcon{
	width: 62px;
	height: 62px;
	color: transparent;
	border-radius: 30px;
	position: relative;
	display: block;
}
.twIcon::before ,
.fbIcon::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}
.twIcon{
	background: #54c3f1;
}
.twIcon::before{
	width: 31px;
	height: 25px;
	background:  url(../images/sns_ico01.png) no-repeat;
}
.fbIcon{
	background: #4267b2;
	cursor: pointer;
}
.fbIcon::before{
	width: 20px;
	height: 36px;
	background:  url(../images/sns_ico02.png) no-repeat;
}
@media screen and (max-width: 640px) {
	#ending{
		background-size: cover;
	}
	#ending .ctsArea{
		padding: 20px 0;
	}
	.greetingArea{
		top: -70px;
	}
	.greeting{
		width: 90%;
	}
	.greeting::before ,
	.greeting::after{
		content: none;
	}
	.btnArea{
		width: 100%;
		margin: 76px auto 60px auto;
		display: block;
	}
	.btnArea a{
		width: 100%;
		margin: 0 0 16px 0;
		padding: 26px 20px;
	}
	.btnArea a::before{
		width: 18px;
		height: 17px;
		background: url(../images/btn_deco02.png) no-repeat;
		right: 30px;
	}
	.snsArea{
		width: 140px;
		margin: 0 auto 0 auto;
	}
	.twIcon ,
	.fbIcon{
		width: 62px;
		height: 62px;
		color: transparent;
		border-radius: 30px;
		position: relative;
		display: block;
	}
	.twIcon{
		background: #54c3f1;
	}
	.twIcon::before{
		width: 31px;
		height: 25px;
		background:  url(../images/sns_ico01.png) no-repeat;
	}
	.fbIcon{
		background: #4267b2;
	}
	.fbIcon::before{
		width: 20px;
		height: 36px;
		background:  url(../images/sns_ico02.png) no-repeat;
	}
}

/*
footer
------------------------------------------------------------------------------------------------------*/
#footerBottom_out {
	clear:both;
	margin:0px auto 0px auto;
	padding:20px 0px 30px 0px;
	background-color: #FFFFFF;
	font-size:inherit;	
	font-family:sans-serif;
	border-top:#54C3F1 7px solid;
	letter-spacing: 0em;
}
@media screen and (max-width: 640px) {
	#footerBottom_out {
	padding:4% 0%;
	box-sizing:border-box;
	}
}
#ft_nisseiLogo {
	margin:0px 0px 11px 0px;
	font-size:93%;
	color:#333333;
	vertical-align:middle;
	float:left;
}
@media screen and (max-width: 640px) {
	#ft_nisseiLogo {
	width:100%;
	height:auto;
	margin-left:0%;
	float:none;
	}
	#ft_nisseiLogo a {
		display:block;
	}
}
#ft_nisseiLogo img {
	margin-right:16px;
	vertical-align:middle;
	width:119px;
	}
@media screen and (max-width: 640px) {
	#ft_nisseiLogo img {
		margin:0 0 2% 0;
		width:149px;
	}
}
#ft_Home a {
	font-size:13px;
	font-weight: 400;
	color:#333;
	text-decoration:none;
	float:right;
}
#ft_Home img {
	margin-right:5px;
	vertical-align:middle;
}
#copyright {
	margin-top:5px;
	font-size:85%;
	color:#333333;
	vertical-align:middle;
	float:left;
}
@media screen and (max-width: 640px) {
	#copyright {
		margin:2% 0px 0px 0%;
		font-size:96%;
		float:left;
	}
}

ul.ft_Btm_list {
	float:right;
	margin:5px 0px 0px 0px ;
	padding:0px 0px 0px 0px;
	text-align: left;
	font-size:93%;
	line-height:120%;
	color:#666666;
	float:right;
}
.ft_Btm_list li {
	margin:0px 0px 0px 10px;
	padding:0px 10px 0px 0px;
	border-right:1px solid #333333;
	list-style:none;
	display:inline;
	*display: inline;
	*zoom: 1;
	vertical-align:middle;
}
@media screen and (max-width: 640px) {
	ul.ft_Btm_list {
		width:100%;
		float:none;
		margin:4% 0 0 0;
		padding:0;
	}
	.ft_Btm_list li {
		box-sizing:border-box;
		margin:0px 0px 3% 0%;
		padding:0;
		font-size:116%;
		display:block;
		width:98%;
		border-right:none;
		text-decoration:underline;
		text-align:left;
	}
}

.ft_Btm_list li:last-child {
	border-right:none;
}
.ft_Btm_list li a, .ft_Btm_list li a:link, .ft_Btm_list li a:visited {
	color:#4D2813;
}

/*ページトップボタン
------------------------------------------------------------------------------------------------------*/
#page-top{
	position:fixed;
	bottom:40px;
	right:20px;
	z-index:10;
	}
@media screen and (max-width:640px){
	#page-top{
		bottom:5%;
		}
	#page-top img{
		width:80px !important;
	}
}
#page-top img{
	display:block;
	transition: 0.4s;
}