@font-face {
	font-family: 'Noto Sans CJK JP Subset';
	font-style: normal;
	font-weight: 400;
	src: local('Noto Sans CJK JP'),
		 local('NotoSansCJKjp-Regular'),
		 local('NotoSansJP-Regular'),
		 url('../fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
		 url('../fonts/NotoSansCJKjp-Regular.woff')  format('woff'),
		 url('../fonts/NotoSansCJKjp-Regular.ttf')   format('truetype');
}
.Oswald {
	font-family: 'Oswald', sans-serif;
}
.Roboto {
	font-family: 'Roboto', sans-serif;
}
.Noto {
	font-family: 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', sans-serif;
}
body {
	font-size: 0.8em;
	color: #FFF;
	background: #1E1E1E;
	background: -webkit-linear-gradient(top,#080808 120px,#1E1E1E 700px);
	background: linear-gradient(to bottom,#080808 120px,#1E1E1E 700px);
	font-family: 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', sans-serif;
}
img {
	max-width: 100%;
	border: 0;
	vertical-align: middle;
}
a {
	transition: opacity 0.3s;
	text-decoration: none;
}
a:hover {
	opacity: 0.8;
}
ol,
ul {
	list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}
* {
	margin: 0;
	padding: 0;
}
*::before,
*::after,
* {
	box-sizing: border-box;
}
.data_center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pc {
	display: none;
}
.clear:after {
	content: '';
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
.fade,
.fade2 {
	opacity: 0;
	transition: 0.4s;
	transform: translateY(50px);
}
.fade_on {
	opacity: 1;
	transform: translateY(0);
}







.top header {
	width: 81%;
	margin: 0 auto;
}
header h1#logo {
	width: 34%;
	margin: 7.7% auto 13%;
	text-align: center;
}
.top header h1#logo {
	width: 78%;
	margin-top: 12.6vw;
	margin-bottom: 14vw;
}
header .text {
	text-align: center;
	margin: -3vw auto;
}
header .text .heading {
	color: #E4F809;
	font-size: 4.6vw;
	margin-bottom: 6.7vw;
}
header .text .heading.result {
	letter-spacing: 0.2em;
}
header .text .description {
	font-weight: bold;
	font-size: 4vw;
	line-height: 8.6vw;
}
.top header .text {
	text-align: left;
	font-size: 3vw;
}
.top header .text .heading {
	color: #FFF;
	display: block;
	width: auto;
	text-align: center;
	font-size: 3.6vw;
	line-height: 4.5vw;
	margin-bottom: 4.5vw;
}






main .wrapper {
	width: 92%;
	margin: 4.5vw auto 8vw;
}
main .wrapper.question {
	margin-bottom: 8.4vw;
}
main .wrapper .box {
	border-radius: 20px;
	overflow: hidden;
}
.top .wrapper {
	width: 81%;
	margin: 7% auto 0;
	padding-top: 8%;
	border-top: 1px solid #5C595A;
}
.top .wrapper h2 {
	font-size: 3.5vw;
	text-align: center;
}
.top .wrapper .box {
	position: relative;
	margin: 5% auto 22%;
	border-radius: 0;
	overflow: visible;
}
.top .wrapper .box h3 {
	font-size: 6vw;
	font-weight: bold;
	text-align: center;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
}
.top .wrapper .box h3 span {
	display: block;
	font-size: 2vw;
	font-family: 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', sans-serif;
	letter-spacing: 0;
}
.top .wrapper .box .list {
	position: absolute;
	width: 100%;
	margin-top: 3%;
	color: #000;
	font-size: 3vw;
	border: 1px solid #7F7F7F;
	border-radius: 15px;
	overflow: hidden;
}
.top .wrapper .box .list .selected {
	position: relative;
	padding: 3% 5%;
	cursor: pointer;
	background: #FFF;
}
.top .wrapper .box .list .selected:before {
	content: '';
	position: absolute;
	top: 45%;
	right: 4%;
	width: 12px;
	height: 12px;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	transform: translateY(-50%) rotate(135deg);
	transition: 0.5s;
}
.top .wrapper .box .list.active .selected:before {
	top: 55%;
	transform: translateY(-50%) rotate(-45deg);
}
.top .wrapper .box .list ul {
	position: relative;
	display: none;
	width: 100%;
	height: 35vw;
	padding: 0 3%;
	background: #FFF;
	border-top: 1px solid #7F7F7F;
	border-radius: 0 0 15px 15px;
	overflow: auto;
	z-index: 1;
}
.top .wrapper .box .list ul.maker-series-select {
	height: auto;
	min-height: 20px;
	max-height: 206px;
}
.top .wrapper .box .list ul li label {
	display: block;
	padding: 3% 2%;
	cursor: pointer;
}
.top .wrapper .box .list ul li label.active,
.top .wrapper .box .list ul li label:hover {
	background: #F6F6F6;
}
.top .wrapper .box .list ul li:nth-child(n+2) label {
	border-top: #E3E3E3 1px solid;
}
.top .wrapper .box .list ul li:first-child label {
	margin-top: 2%;
}
.top .wrapper .box .list ul li input[type='radio'] {
	display: none;
}

.top .wrapper .next {
	position: relative;
	margin: 23% auto 21%;
}
.top .wrapper .next input[type='submit'] {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 64%;
	margin: 0 auto;
	padding: 5% 0;
	background: #555;
	color: #777;
	border: 0;
	border-radius: 100px;
	text-align: center;
	font-size: 4vw;
	transition: opacity 0.3s;
	opacity: 0.8;
}
.top .wrapper .next input[type='submit']:not(:disabled) {
	background: #C01920;
	color: #FFF;
	opacity: 1;
	cursor: pointer;
}
.top .wrapper .next input[type='submit']:not(:disabled):hover {
	opacity: 0.6;
}




main .wrapper.question #step {
	position: relative;
	width: 65%;
	margin: 16% auto 8%;
}
main .wrapper.question #step:before {
	content: '';
	border-top: 1px solid #6F6F6F;
	width: 100%;
	position: absolute;
	top: -50%;
	transform: translateY(-50%);
}
main .wrapper.question #step ul {
	display: flex;
	justify-content: space-between;
}
main .wrapper.question #step ul li {
	position: relative;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	color: #6F6F6F;
}
main .wrapper.question #step ul li.active {
	color: #FFF;
}
main .wrapper.question #step ul li:before {
	content: '';
	border-top: 1px solid #0E0E0E;
	width: 150%;
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
main .wrapper.question #step ul li:after {
	content: '';
	border: 7px solid #6F6F6F;
	width: 0;
	position: absolute;
	top: -50%;
	left: 50%;
	border-radius: 100px;
	transform: translate(-50%,-50%);
	box-sizing: content-box;
}
main .wrapper.question #step ul li.active:after {
	-webkit-animation: step 3s ease-in-out infinite alternate;
	animation:step 3s ease-in-out infinite alternate;
	border: 1vw solid;
	width: 2.6vw;
	padding-top: 2.6vw;
}
@keyframes step {
	  0% { border-color: rgba(238,254,83,1); }
	100% { border-color: rgba(238,254,83,0.7); }
}
@-webkit-keyframes step {
	  0% { border-color: rgba(238,254,83,1); }
	100% { border-color: rgba(238,254,83,0.7); }
}
main .wrapper.question #step ul li {
	font-size: 1.7vw;
}
main .wrapper.question #step ul li span {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 4.6vw;
	line-height: 1em;
}
main .wrapper.question .box {
	position: relative;
	z-index: 0;
	background: #FFF;
	color: #000;
}
main .wrapper.question .box section {
	position: relative;
	margin-top: 16%;
}
main .wrapper.question .box section.noborder {
	margin-top: 6vw;
}
main .wrapper.question .box section:not(.noborder):before {
	content: 'SOCCER SPIKE SHINDAN';
	display: block;
	position: absolute;
	top: -5vw;
	left: 16%;
	transform: translate(-50%,-50%);
	font-family: 'Oswald', sans-serif;
	font-size: 2.2vw;
}
main .wrapper.question .box section:not(.noborder):after {
	content: '';
	display: block;
	position: absolute;
	top: -5vw;
	left: 32%;
	width: 62%;
	border: 1px solid #000;
	transform: translateY(-50%);
}
main .wrapper.question .box section .q {
	position: relative;
	display: flex;
	align-items: center;
}
main .wrapper.question .box section .q .number {
	width: 18%;
	background: #313131;
	color: #EAFF02;
	line-height: 14.8vw;
	text-align: center;
	font-size: 5.8vw;
	font-family: 'Oswald', sans-serif;
}
main .wrapper.question .box section .q h1 {
	width: 88%;
	margin: 0 auto;
	font-size: 4vw;
}
main .wrapper.question .box section .q .number + h1 {
	width: 82%;
	margin: 0;
	padding-left: 4%;
	font-weight: bold;
}
main .wrapper.question .box section .q h1 span {
	color: #9A9A9A;
	font-size: 0.8em;
	font-weight: normal;
}
main .wrapper.question .box section .a {
	margin: 4vw auto;
	width: 88%;
}
main .wrapper.question .box section .a:last-child {
	margin-bottom: 15.7vw;
}
main .wrapper.question .box section .a h2 {
	margin: -1.5% 0 3%;
	font-size: 2.9vw;
}
main .wrapper.question .box section .a ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
main .wrapper.question .box section .a:not(.position) ul + ul.flex_center {
	width: 66%;
	margin-left: auto;
	margin-right: auto;
}
main .wrapper.question .box section .a ul:nth-child(n+2) {
	margin-top: 2%;
}
main .wrapper.question .box section .a ul.flex_center {
	justify-content: center;
}
main .wrapper.question .box section .a ul li {
	position: relative;
	width: 100%;
}
main .wrapper.question .box section .a ul li label {
	cursor: pointer;
}
main .wrapper.question .box section .a:not(.position) ul li label {
	display: block;
}
main .wrapper.question .box section .a ul li label .content {
	overflow: hidden;
	background: rgba(0,0,0,0);
}
main .wrapper.question .box section .a:not(.position) ul li label .content {
	border: 0.5vw solid #DFDFDF;
	border-radius: 4vw;
}
main .wrapper.question .box section .a:not(.position) ul li label .content img {
	/* PC版でメーカー画像の縦横比がおかしくなっていたので100%→auto */
	width: auto;
}
main .wrapper.question .box section .a:not(.position) ul li input[type='checkbox']:checked + label .content,
main .wrapper.question .box section .a:not(.position) ul li input[type='radio']:checked + label .content {
	background: rgba(0,0,0,0.2);
}
main .wrapper.question .box section .a ul li label .content img {
	pointer-events: none;
}
main .wrapper.question .box section .a:not(.position) ul li input[type='checkbox']:not(:checked) + label:hover .content,
main .wrapper.question .box section .a:not(.position) ul li input[type='radio']:not(:checked) + label:hover .content {
	opacity: 0.8;
}
main .wrapper.question .box section .a:not(.position) ul li:nth-child(n+2) {
	padding-left: 2%;
}
main .wrapper.question .box section .a ul li input[type='checkbox'],
main .wrapper.question .box section .a ul li input[type='radio'] {
	display: none;
}
main .wrapper.question .box section .a ul li input[type='checkbox']:checked + label .content:after,
main .wrapper.question .box section .a ul li input[type='radio']:checked + label .content:after {
	content: '';
	background: url(../img/icon_check.png) no-repeat;
	background-size: 100%;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 9.6vw;
	height: 9.6vw;
	z-index: 1;
}
main .wrapper.question .box section .a input[type='number'] {
	border: 1px solid #7F7F7F;
	border-radius: 5px;
	padding: 0 3vw;
	line-height: 10vw;
	min-height: 10vw;
	width: 31.4vw;
	max-width: 80%;
	font-size: 2.6vw;
	vertical-align: bottom;
	margin-right: 1%;
	-moz-appearance:textfield;
	appearance: textfield;
}
main .wrapper.question .box section .a input[type='number']::-webkit-outer-spin-button,
main .wrapper.question .box section .a input[type='number']::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}




main .wrapper.question .box section .a.position {
	position: relative;
	width: 88%;
	height: 0;
	padding-top: 126%;
	background-image: url(../img/court_sp.png);
	background-repeat: no-repeat;
	background-size: contain;
}
main .wrapper.question .box section .a.position .position_inner {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
}
main .wrapper.question .box section .a.position ul {
	flex-direction: column;
	justify-content: space-between;
	width: 15%;
	margin: 3%;
}
main .wrapper.question .box section .a.position ul:nth-child(2) {
	width: 58%;
	margin: 3%;
}
main .wrapper.question .box section .a.position ul li {
	position: relative;
	border: 0;
	border-radius: 0;
	height: 32%;
}
main .wrapper.question .box section .a.position ul:nth-child(2) li {
	height: 12%;
}
main .wrapper.question .box section .a.position ul li:first-child {
	margin-top: 0;
}
main .wrapper.question .box section .a.position ul li label {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
}
main .wrapper.question .box section .a.position ul li input[type='checkbox']:checked + label,
main .wrapper.question .box section .a.position ul li input[type='radio']:checked + label,
main .wrapper.question .box section .a.position ul li label:hover {
	background: rgba(0,0,0,0.2);
}
main .wrapper.question .box section .a.position ul li label img {
	border: 0.5vw solid #DFDFDF;
	border-radius: 100px;
	width: 10.5vw;
	height: 10.5vw;
}
main .wrapper.question .box section .a.position ul li input[type='checkbox']:checked + label img,
main .wrapper.question .box section .a.position ul li input[type='radio']:checked + label img,
main .wrapper.question .box section .a.position ul li label:hover img {
	border: 0.5vw solid #8B8B8B;
}




main .wrapper.question .box section .a .list {
	border: 1px solid #7F7F7F;
	border-radius: 10px;
	margin-top: 1%;
	overflow: hidden;
}
main .wrapper.question .box section .a .list h2 {
	position: relative;
	margin: 0;
	padding: 3% 1em;
	cursor: pointer;
}
main .wrapper.question .box section .a .list h2:before,
main .wrapper.question .box section .a .list h2:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 2%;
	width: 3%;
	height: 3px;
	background: rgb(26,26,26);
	border-radius: 100px;
	transition: 1s;
}
main .wrapper.question .box section .a .list h2:before {
	transform: translate(-50%,-50%) rotateZ(90deg);
}
main .wrapper.question .box section .a .list h2:after {
	transform: translate(-50%,-50%) rotateZ(180deg);
}
main .wrapper.question .box section .a .list.active h2:before {
	transform: translate(-50%,-50%) rotateZ(360deg);
}
main .wrapper.question .box section .a .list.active h2:after {
	transform: translate(-50%,-50%) rotateZ(0);
}
main .wrapper.question .box section .a .list ul {
	display: none;
	border-top: 1px solid #7F7F7F;
	margin: 0;
	padding: 0 1em;
}
main .wrapper.question .box section .a .list ul li:nth-child(n+2) {
	border-top: 1px solid #DCDCDC;
	padding: 0;
}
main .wrapper.question .box section .a .list ul li label {
	position: relative;
	padding: 3% 0;
}
main .wrapper.question .box section .a .list ul li label .content {
	margin-left: 6%;
	border: 0;
	border-radius: 0;
}
main .wrapper.question .box section .a .list ul li input[type='checkbox']:checked + label .content {
	background: none;
}
main .wrapper.question .box section .a .list ul li label .content:before,
main .wrapper.question .box section .a .list ul li input[type='checkbox'] + label .content:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 4%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: translate(0,0);
}
main .wrapper.question .box section .a .list ul li input[type='checkbox'] + label .content:after {
	opacity: 0;
	transition: opacity 0.2s;
	background-image: url(../img/icon_check2.png);
}
main .wrapper.question .box section .a .list ul li label .content:before {
	background-image: url(../img/icon_check2_bg.png);
}
main .wrapper.question .box section .a .list ul li input[type='checkbox']:checked + label .content:after {
	opacity: 1;
}




main .wrapper.question .box .button {
	display: flex;
	align-items: center;
	border-top: 1px solid #E3E3E3;
	padding: 7% 0;
	margin-top: -5vw;
}
main .wrapper.question .box .button .next {
	width: 54%;
}
main .wrapper.question .box .button .next input[type='submit'] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	line-height: 13.3vw;
	background: #000;
	border-radius: 300px;
	color: #FFF;
	font-size: 3.6vw;
	border: 0;
	transition: 0.3s;
	cursor: pointer;
}
main .wrapper.question .box .button .next input[type='submit']:not(:disabled):hover {
	opacity: 0.6;
}
main .wrapper.question .box .button .next input[type='submit']:disabled {
	background: #555;
	color: #777;
	cursor: default;
}
main .wrapper.question .box .button .back {
	width: 23%;
	text-align: center;
}
main .wrapper.question .box .button .back input[type='submit'] {
	border: 0;
	background: none;
	font-size: 3.6vw;
}
main .wrapper.result .more {
	position: relative;
	margin: 5% auto 15%;
}
main .wrapper.result .more a {
	display: block;
	width: 64%;
	margin: 0 auto;
	padding: 0;
	line-height: 13.3vw;
	font-size: 3.4vw;
	background: #C01920;
	border-radius: 100px;
	text-align: center;
	color: #FFF;
}
main .wrapper.result p {
	margin: 6vw 0;
	text-align: center;
	font-size: 3.2vw;
	line-height: 4.6vw;
}




main .wrapper.result .box .matchrate .text_top {
	position: relative;
	background: #23241A;
	border: 0.26vw solid #EAFF02;
	border-radius: 300px;
	margin: 0 auto 150px;
	padding: 6% 0;
	font-size: 4vw;
}
main .wrapper.result .box .matchrate .text_top:after {
	display: block;
	position: absolute;
	width: 40px;
	height: 124px;
	bottom: -124px;
	left: 50%;
	content: url(../img/arrow.png);
	transform: translateX(-50%);
}
main .wrapper.result .box .matchrate .matching {
	position: relative;
	padding-top: 55%;
	height: 0;
}
main .wrapper.result .box .matchrate .matching .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_shoe.png) no-repeat center bottom / 82% auto;
}
main .wrapper.result .box .matchrate .matching #percentage {
	position: absolute;
	top: 0;
	left: 27.5%;
	width: 45%;
	transform: translateY(0);
}
main .wrapper.result .box .matchrate .matching #percentage .text {
	transform: translateY(0);
	position: absolute;
	top: 2.6vw;
	left: 0;
	width: 100%;
	height: 100%;
	font-family: 'Oswald', sans-serif;
}
main .wrapper.result .box .matchrate .matching #percentage .text .text_inner {
	width: 50%;
	text-align: center;
}
main .wrapper.result .box .matchrate .matching #percentage .text .text_inner span.match {
	letter-spacing: 0.1em;
	font-size: 3vw;
	color: #B7B7B7;
}
main .wrapper.result .box .matchrate .matching #percentage .text .text_inner .percentage {
	position: relative;
	font-size: 5vw;
	color: #EAFF02;
	line-height: 18.6vw;
}
main .wrapper.result .box .matchrate .matching #percentage .text .text_inner .percentage:after {
	content: '%';
	position: absolute;
	left: 100%;
	bottom: 0;
	transform: translateX(-50%);
}
main .wrapper.result .box .matchrate .matching #percentage.len3 .text .text_inner .percentage:after {
	transform: translateX(-30%);
}
main .wrapper.result .box .matchrate .matching #percentage .text .text_inner .percentage span {
	font-size: 15.7vw;
}
main .wrapper.result .box .matchrate .matching #percentage.len3 .text .text_inner .percentage span {
	letter-spacing: -1vw;
	margin-left: -2vw;
}
main .wrapper.result .box .matchrate .text_bottom {
	margin: 6vw 0 3%;
	line-height: 4.8vw;
	font-size: 2.9vw;
}
main .wrapper.result .box .matchrate .more.toRegist {
	margin-top: 7.3vw;
}
main .wrapper.result h2 {
	font-size: 3vw;
	text-align: center;
}
main .wrapper.result h2 span {
	font-size: 4.6vw;
}




.balloon {
	position: absolute;
	top: 0;
	right: 18%;
	width: 15.4vw;
	height: 15.4vw;
	border-radius: 100px;
	color: #000;
	background-color: #EAFF02;
	text-align: center;
	transform: translate(50%,-40%);
	font-size: 3vw;
	font-weight: bold;
	letter-spacing: -0.1em;
	line-height: 1.3em;
	/* @FIX 文字が隠れたのでz-indexの指定をした */
	z-index: 1;
}
.balloon span{
	/* @FIX 文字が隠れたのでz-indexの指定をした */
	z-index: 1;
}
.balloon:before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: 2px;
	bottom: 2px;
	border-right: 20px solid #EAFF02;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	transform: rotate(-45deg);
	/* @FIX 文字が隠れたのでz-indexの指定をした */
	z-index: 0;
}








main .wrapper.result .box .data1 {
	background: #FFF;
	color: #000;
}
main .wrapper.result .box .data1 li {
	display: grid;
	display: -ms-grid;
	grid-template-columns: 13% 52% 35%;
	-ms-grid-columns: 13% 52% 35%;
}
main .wrapper.result .box .data1 li .ranking {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	-ms-grid-column: 1;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	border-right: 1px solid #E3E3E3;
	font-weight: bold;
	overflow: hidden;
}
main .wrapper.result .box .data1 li .ranking span {
	font-size: 2.9vw;
}
main .wrapper.result .box .data1 li .ranking span:first-letter {
	font-family: 'Oswald', sans-serif;
	font-size: 5.6vw;
}
main .wrapper.result .box .data1 li .img {
	grid-column: 2 /4;
	grid-row: 1 / 2;
	-ms-grid-column: 2;
	-ms-grid-column-span: 2;
	-ms-grid-row: 1;
	border-bottom: 1px solid #E3E3E3;
}
main .wrapper.result .box .data1 li .img img {
	max-width: 80%;
	padding: 10%;
}
main .wrapper.result .box .data1 li .title {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	-ms-grid-column: 2;
	-ms-grid-row: 2;
	padding: 8% 8% 5.3vw;
}
main .wrapper.result .box .data1 li .title .manufacturer {
	color: #B7B7B7;
	font-family: 'Oswald', sans-serif;
	font-size: 2.9vw;
}
main .wrapper.result .box .data1 li .title .product {
	font-weight: bold;
	font-size: 3.4vw;
}
main .wrapper.result .box .data1 li .title .price {
	font-size: 2.9vw;
}
main .wrapper.result .box .data1 li .title .more {
	margin-bottom: 0;
}
main .wrapper.result .box .data1 li .title .more a {
	line-height: 7.3vw;
	font-size: 2.4vw;
}
main .wrapper.result .box .data1 li .matching {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	-ms-grid-column: 3;
	-ms-grid-row: 2;
	position: relative;
	background: #313131;
	color: #B7B7B7;
	text-align: center;
}
main .wrapper.result .box .data1 li .matching .matching_inner {
	width: 90%;
	height: 0;
	padding-top: 100%;
	margin: 0 auto;
	font-size: 3vw;
}
main .wrapper.result .box .data1 li .matching .matching_inner .matching_inner2 {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
main .wrapper.result .box .data1 li .matching .matching_inner .match {
	display: block;
	letter-spacing: 0.1em;
	font-family: 'Oswald', sans-serif;
}
main .wrapper.result .box .data1 li .matching .text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
}
main .wrapper.result .box .data1 li .matching .text span.match {
	color: #B7B7B7;
}
main .wrapper.result .box .data1 li .matching .percentage {
	color: #EAFF02;
	position: relative;
}
main .wrapper.result .box .data1 li .matching .percentage .text_inner {
	line-height: 200%;
}
main .wrapper.result .box .data1 li .matching .percentage .text_inner:first-line {
	font-size: 0.9em;
}
main .wrapper.result .box .data1 li .matching .percentage .text_inner .percentage {
	position: relative;
/* 	text-indent: 1em; */
	font-size: 1.3em;
}
main .wrapper.result .box .data1 li .matching .percentage .text_inner .percentage:after {
	content: '%';
	position: absolute;
	left: 100%;
	bottom: 0;
	transform: translateX(-50%);
}
main .wrapper.result .box .data1 li .matching .percentage #myChart {
	display: block;
}
main .wrapper.result .box .data1 li .matching .percentage span {
	font-family: 'Oswald', sans-serif;
	font-size: 10vw;
}
main .wrapper.result .box .data1 li .matching .len3 .percentage span {
/* 	font-size: 8.3vw; */
	margin-left: -2.5vw;
	letter-spacing: -0.5vw;
}




main .wrapper.result .box .data2 {
	background: #4B4B4B;
	color: #FFF;
}
main .wrapper.result .box .data2 .chart {
	padding: 3% 0;
	text-align: center;
}
main .wrapper.result .box .data2 .chart .raderChart {
	position: relative;
	max-width: 40%;
	margin: 5vw auto;
}
main .wrapper.result .box .data2 .chart .raderChart .abs {
	position: absolute;
	font-size: 2vw;
	line-height: 1.3em;
}
main .wrapper.result .box .data2 .chart .raderChart .abs span {
	display: block;
	color: #FF0;
	font-size: 2.5vw;
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label1 {
	top: -4vw;
	left: 50%;
	transform: translateX(-50%);
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label2,
main .wrapper.result .box .data2 .chart .raderChart .abs.label6 {
	top: 6vw;
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label3,
main .wrapper.result .box .data2 .chart .raderChart .abs.label5 {
	top: 26vw;
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label2 {
	right: -5vw;
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label3 {
	right: -6vw;
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label4 {
	bottom: -4vw;
	left: 50%;
	transform: translateX(-50%);
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label5 {
	left: -6vw;
}
main .wrapper.result .box .data2 .chart .raderChart .abs.label6 {
	left: -9vw;
}
main .wrapper.result .box .data2 .comment {
	position: relative;
	margin: 0;
	padding: 7% 0;
}
main .wrapper.result .box .data2 .comment:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 85%;
	margin: 0 auto;
	border-top: 1px solid #6F6F6F;
	transform: translateX(-50%);
}
main .wrapper.result .box .data2 .comment .icon {
	width: 30%;
	padding-right: 2%;
	float: left;
	font-size: 2.1vw;
	text-align: center;
	line-height: 3;
	font-family: 'Oswald', sans-serif;
}
main .wrapper.result .box .data2 .comment .icon img {
	max-width: 50%;
}
main .wrapper.result .box .data2 .comment .text {
	width: 70%;
	float: right;
	padding-right: 7%;
	font-size: 2.6vw;
	line-height: 4.1vw;
}





main .wrapper.result .box.lank_lower {
	margin: 5% auto;
}
main .wrapper.result .box.lank_lower .data {
/* 	background: #FFF; */
	color: #161616;
}
main .wrapper.result .box.lank_lower .data li {
	display: grid;
	display: -ms-grid;
	grid-template-columns: 13% 30% 41% 16%;
	-ms-grid-columns: 13% 30% 41% 16%;
}
main .wrapper.result .box.lank_lower .data li:nth-child(n+2) > div {
	border-top: 1px solid #E3E3E3;
}
/* FIX aリンクを全体にした */
main .wrapper.result .box.lank_lower .data a {
	color: #161616;
}
main .wrapper.result .box.lank_lower .data a:nth-child(n+2) li > div {
	border-top: 1px solid #E3E3E3;
}
main .wrapper.result .box.lank_lower .data li .ranking {
	grid-column: 1 / 2;
	-ms-grid-column: 1;
	border-right: 1px solid #E3E3E3;
	line-height: 28vw;
	background: #FFF;
/* 	padding: 30% 0; */
}
main .wrapper.result .box.lank_lower .data li .ranking span:first-letter {
	font-family: 'Oswald', sans-serif;
	font-size: 2em;
}
main .wrapper.result .box.lank_lower .data li .img {
	position: relative;
	grid-column: 2 / 3;
	-ms-grid-column: 2;
	background: #FFF;
}
main .wrapper.result .box.lank_lower .data li .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 80%;
	max-height: 80%;
	width: auto;
	height: auto;
}
main .wrapper.result .box.lank_lower .data li .title {
	grid-column: 3 / 4;
	-ms-grid-column: 3;
	background: #FFF;
	padding-right: 4vw;
}
main .wrapper.result .box.lank_lower .data li .title.data_center {
	justify-content: flex-start;
}
main .wrapper.result .box.lank_lower .data li .title .manufacturer {
	color: #B7B7B7;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
}
main .wrapper.result .box.lank_lower .data li .title .product {
	font-weight: bold;
	font-size: 3.2vw;
}
main .wrapper.result .box.lank_lower .data li .matching {
	grid-column: 4 / 5;
	-ms-grid-column: 4;
	background: #313131;
	font-size: 0.6em;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
}
main .wrapper.result .box.lank_lower .data li .matching span.match {
	font-size: 1.8vw;
	color: #B7B7B7;
}
main .wrapper.result .box.lank_lower .data li .matching .percentage {
	color: #EAFF02;
	text-align: center;
	text-indent: 1vw;
	font-size: 2.4vw;
}
main .wrapper.result .box.lank_lower .data li .matching .percentage span {
	font-size: 4.6vw;
}




main .wrapper.result .banner ul li {
	width: 91%;
	margin: 3% auto;
	text-align: center;
}




footer {
	display: block;
}
footer p {
	padding: 6% 0;
	text-align: center;
	background: #030303;
	color: #777;
	font-size: 2.5vw;
	font-family: 'Helvetica', 'Arial', 'Verdana', 'Roboto', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Meiryo' ,sans-serif;
}


/** add css **/
.cookie-error-message {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
	position: relative;
	padding: 8px 12px;
	margin-bottom: 30px;
	border: 1px solid transparent;
	border-radius: 6px;
	display: none;
}