@charset "utf-8";
/* ====================================================
	アニメーション設定
==================================================== */
.analysisWrapper > div {
	opacity: 0;
	transform: translateY(35px);
	transition: opacity 1s ease-out 0s, transform 1s ease-out 0s;
}
.analysisWrapper > div.active {
	opacity: 1;
	transform: translateY(0);
}
/*---------- fadeInアイテム（cssプラグインの上書き） ----------*/
.fiItem {
	opacity: 0;
}
.fiItem.on {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
/*---------- ここまでfadeInアイテム ----------*/
/*---------- fadeInUpShortアイテム（cssプラグインの上書き） ----------*/
.fiusItem {
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
}
.fiusItem.on {
	-webkit-animation-name: fadeInUpShort;
	animation-name: fadeInUpShort;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
/*---------- ここまでfadeInUpShortアイテム ----------*/
/*---------- ぴょんっと表示（オリジナルアニメーション） ----------*/
.humanItem {
	opacity: 0;
	transform: translateY(20px) scale(0.3);
	-webkit-transform: translateY(20px) scale(0.3);
}
.humanItem.on {
	-webkit-animation-name: humanAnimation;
	animation-name: humanAnimation;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
 @keyframes humanAnimation {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.3);
	}
	20% {
		opacity: 1;
	}
	50% {
		opacity: 1;
		transform: translateY(-30px) scale(1.1);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@-webkit-keyframes humanAnimation {
	 0% {
	 opacity: 0;
	 -webkit-transform: translateY(20px) scale(0.3);
	}
	20% {
		opacity: 1;
	}
	 50% {
	 opacity: 1;
	 -webkit-transform: translateY(-30px) scale(1.1);
	}
	 100% {
	 opacity: 1;
	 -webkit-transform: translateY(0) scale(1);
	}
}
/*---------- ここまでぴょんっと表示 ----------*/
/*---------- ポンと表示（オリジナルアニメーション） ----------*/
.decoItem {
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(0.1);
	transform: scale(0.1);
	opacity:0;
}
.decoItem.on {
	-webkit-animation-name: popAnimation;
	animation-name: popAnimation;
}
@-webkit-keyframes popAnimation {
	0% {
	    -webkit-transform: scale(0.1);
	    opacity:0;
	}
	50% {
	    -webkit-transform: scale(1.5);
	}
	100% {
	    -webkit-transform: scale(1);
	    opacity:1;
	}
}
@keyframes popAnimation {
	0% {
	    transform: scale(0.1);
	    opacity:0;
	}
	50% {
	    transform: scale(1.5);
	}
	100% {
	    transform: scale(1);
	    opacity:1;
	}
}
/*---------- ここまでポンと表示（オリジナルアニメーション） ----------*/
/*---------- 拡大して表示（cssプラグインの上書き） ----------*/
.giItem {
	opacity: 0;
	transform: scale(0.2);
	-webkit-transform: scale(0.2);
}
.giItem.on {
	-webkit-animation-name: growIn;
	animation-name: growIn;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-delay: 0.2s;
}
/*---------- ここまで拡大して表示 ----------*/
/*---------- 黄色のラインをひく（オリジナルアニメーション） ----------*/
.yellow {
	height: 14px;
	width: 0%;
}
.yellow.on {
	-webkit-animation-name: yellowLine;
	animation-name: yellowLine;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
 @keyframes yellowLine {
	 0% {
	 width: 0%;
	}
	 100% {
	 width: 100%;
	}
}
/*---------- ここまで黄色のラインをひく ----------*/
/* ====================================================
	各コンテンツ
==================================================== */
.contentsWrapper {
	background-color: #f7f6f6;
}
.analysisBlock {
	position: relative;
	background-color: #fff;
	box-shadow: 2.65px 4.24px 13.86px 0.14px rgba(56, 83, 91, 0.04);
	width: 820px;
	height: 450px;
	margin: 40px auto 0;
	padding: 42px 0 0;
	box-sizing: border-box;
}
.analysisBlock:first-of-type {
	margin-top: 5px;
}
.analysisTitle {
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #0fc8c9;
	width: 681px;
	height: 25px;
	background-image: url(../img/analysis/title.png);
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.analysisTitle span {
	font-size: 29px;
	letter-spacing: 0.2em;
	font-feature-settings: "palt";
}
/* ----------------------------------------------------
	平均年齢
---------------------------------------------------- */
.ageBlock {
	margin: 36px 0 0 143px;
	display: flex;
}
.ageAverage {
	opacity: 0;
}
.ageNotes {
	width: 60px;
	display: flex;
	flex-direction: column;
	border-right: solid 2px #0fc8c9;
}
.ageNotes p {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	color: #0fc8c9;
	font-style: normal;
	font-size: 20px;
	margin: 31px 0;
}
.ageNotes p:first-child {
	margin-top: 27px;
}
.ageNotes p:last-child {
	margin-bottom: 27px;
}
.ageHumans {
	margin: 13px 0 0 23px;
}
.ageHumans li {
	display: flex;
	margin-top: 27px;
}
.ageHumans li:first-child {
	margin-top: 0;
}
.ageHumanItems {
	font-size: 0;
}
.ageHumanItems img:not(:first-of-type) {
	margin-left: 5px;
}
.ageHumanPercentage {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #0fc8c9;
	font-size: 32px;
	margin: 7px 0 0 25px;
}
.ageAverage_text {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 500;
	color: #0fc8c9;
	font-style: normal;
	font-size: 18px;
	position: absolute;
	bottom: 51px;
	right: 288px;
}
.ageAverage_val {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	color: #0fc8c9;
	font-style: normal;
	font-size: 60px;
	position: absolute;
	bottom: 36px;
	right: 151px;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
	font-family: kozuka-gothic-pr6n, sans-serif;
}
.ageYellow {
	position: absolute;
	bottom: 44px;
	right: 110px;
	width: 172px;
	overflow: hidden;
}
.ageAverage_val span {
	z-index: 2;
	position: relative;
}
.ageAverage_unit {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	color: #0fc8c9;
	font-style: normal;
	font-size: 36px;
	position: absolute;
	bottom: 51px;
	right: 111px;
}
/* ----------------------------------------------------
	男女比
---------------------------------------------------- */
.analysisBlock.genderContents {
    height: 370px;
}

#canvas-holder {
	position: relative;
	width: 345px;
	height: auto;
	margin: auto;
	margin-top: 32px;
}
.genderMan .genderHuman {
	position: absolute;
	bottom: 80px;
	left: 261px;
}
.genderWoman .genderHuman {
	position: absolute;
	bottom: 82px;
	right: 262px;
}
.genderAverage {
	position: absolute;
	bottom: 100px;
	right: 100px;
}
.genderNotes {
	display: flex;
	justify-content: space-around;
	width: 165px;
	position: absolute;
	top: 72px;
	left: 0;
	right: 0;
	margin: auto;
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	font-size: 20px;
}
.genderMan .genderYellow {
	position: absolute;
	bottom: 111px;
	left: 145px;
	width: 104px;
	overflow: hidden;
}
.genderWoman .genderYellow {
	position: absolute;
	bottom: 111px;
	right: 140px;
	width: 104px;
	overflow: hidden;
}
.genderAverage_val {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	color: #0fc8c9;
	font-style: normal;
	font-size: 50px;
}
 .genderAverage_unit {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	color: #0fc8c9;
	font-style: normal;
	font-size: 31px;
}
.genderMan .genderAverage_val {
	position: absolute;
	bottom: 105px;
	left: 152px;
}
.genderMan .genderAverage_unit {
	position: absolute;
	bottom: 116px;
	left: 214px;
}
.genderWoman .genderAverage_val {
	position: absolute;
	bottom: 105px;
	right: 181px;
}
.genderWoman .genderAverage_unit {
	position: absolute;
	bottom: 115px;
	right: 147px;
}
/* ----------------------------------------------------
	出身地
---------------------------------------------------- */
.analysisBlock.placeContents {
	height: 490px;
}
.placeMap {
	position: absolute;
	top: 117px;
	left: 153px;
}
.placeHumanItems img {
	position: absolute;
}
.placeHumanItems .humanItem.order-1 {
	top: 108px;
	right: 255px;
}
.placeHumanItems .humanItem.order-2 {
	top: 197px;
	right: 229px;
}
.placeHumanItems .humanItem.order-3 {
	bottom: 143px;
	right: 318px;
}
.placeHumanItems .humanItem.order-4 {
	bottom: 86px;
	left: 382px
}
.placeHumanItems .humanItem.order-5 {
	bottom: 30px;
	left: 315px;
}
.placeHumanItems .humanItem.order-6 {
	bottom: 143px;
	left: 284px;
}
.placeHumanItems .humanItem.order-7 {
	bottom: 116px;
	left: 139px;
}
.placeHumanItems .humanItem.order-7 {
	bottom: 116px;
	left: 139px;
}
.placeHumanItems .placeBest {
	bottom: 59px;
	right: 237px;
}
.placePercentage .fiusItem {
	position: absolute;
}
.placePercentage .fiusItem.order-1 {
	top: 132px;
	right: 125px;
}
.placePercentage .fiusItem.order-2 {
	top: 223px;
	right: 118px;
}
.placePercentage .fiusItem.order-3 {
	top: 232px;
	right: 316px;
}
.placePercentage .fiusItem.order-4 {
	bottom: 60px;
	left: 364px;
}
.placePercentage .fiusItem.order-5 {
	top: 428px;
	left: 242px;
}
.placePercentage .fiusItem.order-6 {
	bottom: 225px;
	left: 260px;
}
.placePercentage .fiusItem.order-7 {
	bottom: 198px;
	left: 114px;
}
.placePercentage .fiusItem.order-8.bestName {
	bottom: 120px;
	right: 109px;
}
.placePercentage .fiusItem.order-8.bestPercentage {
	bottom: 59px;
	right: 93px
}
.placeGrassItems .fiItem {
	position: absolute;
	bottom: 61px;
	right: 63px;
}
.placeYellow {
	position: absolute;
	bottom: 65px;
	right: 93px;
	width: 100px;
	overflow: hidden;
}
/*---------- フォント指定調節 ----------*/
.placePercentage {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 500;
	color: #0fc8c9;
	font-style: normal;
	font-size: 18px;
}
.placePercentage .placeAverage_val {
	font-size: 24px;
	font-weight: 600;
	margin: 0 3px 0;
}
.placePercentage .fiusItem.order-8.bestName {
	bottom: 120px;
	right: 109px;
	font-size: 33px;
	font-weight: 600;
}
.placePercentage .fiusItem.order-8.bestPercentage.placeAverage_val {
	bottom: 59px;
	right: 120px;
	font-size: 50px;
	font-weight: 600;
}
.placePercentage .fiusItem.order-8.bestPercentage.placeAverage_unit {
	bottom: 70px;
	right: 94px;
	font-size: 30px;
}
/* ----------------------------------------------------
	血液型
---------------------------------------------------- */
.analysisBlock.bloodContents {
	height: 206px;
}
.bloodHumanItems img {
	position: absolute;
	bottom: 39px;
}
.bloodHumanItems .bloodA {
	left: 74px;
}
.bloodHumanItems .humanItem.bloodB {
	left: 264px;
}
.bloodHumanItems .humanItem.bloodO {
	right: 377px;
}
.bloodHumanItems .humanItem.bloodAB {
	right: 140px;
}
.bloodYellow {
	position: absolute;
	bottom: 38px;
	left: 141px;
	width: 100px;
	overflow: hidden;
}
/*---------- 数字とパーセントの位置 ----------*/
.bloodPercentage .fiusItem.bloodAverage_val {
	position: absolute;
	bottom: 39px;
}
.bloodPercentage .fiusItem.bloodAverage_unit {
	position: absolute;
	bottom: 38px;
}
.bloodPercentage .fiusItem.bloodA.bloodAverage_val {
	bottom: 35px;
	left: 150px;
}
.bloodPercentage .fiusItem.bloodA.bloodAverage_unit {
	bottom: 43px;
	left: 204px;
}
.bloodPercentage .fiusItem.bloodB.bloodAverage_val {
	left: 316px;
}
.bloodPercentage .fiusItem.bloodB.bloodAverage_unit {
	left: 353px;
}
.bloodPercentage .fiusItem.bloodO.bloodAverage_val {
	right: 335px;
}
.bloodPercentage .fiusItem.bloodO.bloodAverage_unit {
	right: 307px;
}
.bloodPercentage .fiusItem.bloodAB.bloodAverage_val {
	right: 96px;
}
.bloodPercentage .fiusItem.bloodAB.bloodAverage_unit {
	right: 69px;
}
/*---------- フォント指定調節 ----------*/
.bloodPercentage {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 500;
	color: #0fc8c9;
	font-style: normal;
	font-size: 30px;
}
.bloodPercentage .fiusItem.bloodAverage_val {
	font-weight: 600;
}
.bloodPercentage .fiusItem.bloodA.bloodAverage_val {
	font-size: 47px;
}
/* ----------------------------------------------------
	日付データ
---------------------------------------------------- */
p.date {
	width: 820px;
	margin: auto;
	margin-top: 14px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 14px;
	text-align: right;
}
/* ====================================================
	IE対策
==================================================== */
/*---------- IEのみテキストが大きくずれる ----------*/
@media all and (-ms-high-contrast: none) {
	.ageHumanPercentage,
	.genderNotes,
  .odometer.odometer-auto-theme, .odometer.odometer-theme-default {
		font-family: "メイリオ", sans-serif;
  }
	.ageAverage_val {
		font-size: 50px;
	}
	.genderAverage_val {
		font-size: 40px;
	}
	.placePercentage .fiusItem.order-4 {
		bottom: 48px;
	}
	.placePercentage {
		font-size: 15px;
	}
	.bloodPercentage {
		font-size: 25px;
	}
	.bloodPercentage .fiusItem.bloodA.bloodAverage_val {
		font-size: 40px;
	}
	.bloodPercentage .fiusItem.bloodAB.bloodAverage_val,
	.bloodPercentage .fiusItem.bloodAB.bloodAverage_unit {
		bottom: 32px;
	}
}
