@charset "UTF-8";


/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
select,input,button,textarea{font-size:inherit;font-family:inherit;box-sizing: border-box;}
pre,code,kbd,samp{font-family:monospace;*font-size:108%;line-height:100%;}
figure{padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {outline-offset: -2px;}


/* base ---------------------------------------*/

*{box-sizing:border-box;}

html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
}

a{
	text-decoration: none;
	color:#000;
	transition: all .25s ease;
}

a:hover{}

img{
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height:auto;
}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.ov-h{overflow: hidden;}

.font-xx{font-family:;}

.bg-xx{background-color:;}


/* browser adjust ---------------------------------------*/

@media all and (-ms-high-contrast:none){
	.foo { color: green }
}


/* mask icon ---------------------------------------*/

.icon-arrow{
	-webkit-mask-image: url('../img/common/arrow.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/arrow.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	vertical-align: middle;
	height: 24px;
	width: 24px;
	background: #ff0000;
}


/* layout ---------------------------------------*/

.inner{
	max-width:1080px;
	margin:0 auto;
}

.section{
	margin-bottom: 50px;
}

.overlay{display: none;}


/* header ---------------------------------------*/

header{
	position:relative;
}

.header-inner{
	height:50px;
	margin:0 auto;
	position:relative;
}

.header-logo{
	position: absolute;
	left:30px;
	top:10px;
}

.header-submenu{
	width:200px;
	position: absolute;
	right:0px;
	top:17px;
}

.header-submenu-list{
	font-size: 0px;
	border-left:1px solid #ccc;
}

.header-submenu-list > li{
	font-size: 13px;
	display: inline-block;
	line-height: 1.0;
}

.header-submenu-list > li a{
	display: block;
	border-right:1px solid #ccc;
	padding:0 15px;
	color:#000;
}


/* gnav ---------------------------------------*/

.gnav{
	position:absolute;
	left: 150px;
	top: 12px;
	width: calc(100% - 300px);
}

.gnav-list{
	font-size:0px;
}

.gnav-list > li{
	display: inline-block;
	font-size:16px;
	margin: 0 10px;
	font-weight:bold;
}

.gnav-list > li a{
	display: block;
}

.gnav-list > li a.is-current{
}

.gnav-list > li a:hover{
}


#openmenu{display:none;}


/* footer ---------------------------------------*/

footer{
	padding:10px 0 10px 0;
	border-top:1px solid #333;
	text-align: center;
}

.footer-inner{
	max-width:1080px;
	margin:0 auto;
	position:relative;
}

.footer-nav{}

.footer-nav-list{}

.footer-nav-list > li{}

.footer-nav-list > li a{}

.copyright{
	display: block;
	text-align: center;
	font-size: 11px;
}

.gotop{
	width:22px;
	position:fixed;
	right:10px;
	bottom:15px;
	z-index:100;
	opacity:0;
}

.gotop a img{width:100%;}


/* title ---------------------------------------*/

.title-page{
	font-weight:600;
	font-size: 2.0rem;
	line-height: 1.5;
	color: #222;
}

.title-section{
	font-weight:600;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #222;
}

.title-block{
	font-weight:600;
	font-size: 1.0rem;
	line-height: 1.5;
	color: #222;
}

.title-paragraph{
}

.title-small{
}


/* text ---------------------------------------*/

.text-center{text-align: center !important;}
.text-right{text-align: right !important;}
.text-left{text-align: left !important;}

.text-bold{font-weight:600;}

.text-red{color: #aa0000 !important;}

.text-ellipsis-2{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.text-ellipsis-3{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.text-ellipsis-4{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

@media all and (-ms-high-contrast:none){
	.text-ellipsis-2 { height: 3.2em; } /* IE10〜Edge */
	.text-ellipsis-3 { height: 4.7em; } /* IE10〜Edge */
}

.text-ellipsis-count::after{content: '…';}

.text-link{text-decoration: underline;}
.text-link:hover{text-decoration: none;}


/* pankuzu ---------------------------------------*/

.pankuzu{
	border-bottom:1px solid #ddd;
}

.pankuzu-list{}
.pankuzu-list > li{
	display: inline-block;
	font-size:13px;
}

.pankuzu-list > li a,
.pankuzu-list > li span{
	display: block;
	padding: 0px 30px 0px 10px;
	line-height: 40px;
	position: relative;
}

.pankuzu-list > li a{text-decoration:none;}

.pankuzu-list > li a::after{
	display:block;
	content:'';
	width:25px;
	height:25px;
	border-top:1px solid #ddd;
	border-right:1px solid #ddd;
	transform: rotate(45deg) translate(0,-50%);
	position:absolute;
	right:10px;
	top:45%;
}

.pankuzu-list > li span{}


/* btn ---------------------------------------*/

.btn{
	display: inline-block;
	min-width: 160px;
	padding: 15px 36px;
	border-radius: 80px;
	border:3px solid #fff;
	background-color: #AD667B;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	line-height: 1.1;
	letter-spacing: normal;
	text-align: center;
	color: #ffffff;
	font-weight:600;
	cursor: pointer;
	transition: all .25s ease;
}

.btn:hover{
	background-color:#D4AAB7;
	opacity: 1;
}


/* modal ---------------------------------------*/

.modal-wrapper{display: none;}

.modal{background: #fff;}

.modal-inner{
	width: 100%;
	padding: 30px;
	background: #fff;
}

.modal-inner-manual{
	text-align: center;
}

.modal-inner-manual iframe{
	width: 600px;
	height: 500px
}

.modal-inner-close{
	position:absolute;
	right: 10px;
	top: 10px;
}


/* pager ---------------------------------------*/

.pager{}

.pager-list{
	overflow:hidden;
	text-align:center;
	padding:20px 0;
	font-size:0px;
}

.pager-list li{
	display:inline-block;
	margin:0 7px;
	font-size:18px;
}

.pager-list li a,
.pager-list li span{
	display:block;
	border:1px solid #3699E6;
	height:30px;
	width:30px;
	line-height:30px;
	text-align:center;
	color:#3699E6;
	transition: all .25s ease;
}

.pager-list li a:hover,
.pager-list li span{
	background-color:#3699E6;
	color:#fff;
	text-decoration:none;
}

.pager-list li.pagerPrev a,
.pager-list li.pagerNext a{
	width:50px;
	background-color:#3699E6;
	color:#fff;
	font-weight:bold;
}


/* form ---------------------------------------*/

.form-text,
.form-date{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0 10px;
	border: 1px solid #999;
	width: 100%;
	border-radius: 0;
	line-height: 1;
	height: 38px;
}

::placeholder {color:#ccc;}

.form-select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0 10px;
	border: 1px solid #999;
	width: 100%;
	background: url('../img/common/select.svg') no-repeat right 10px top 50%;
	background-size: 24px 24px;
	border-radius: 0;
	line-height: 1;
	height: 38px;
}

.form-select.is-notselected{
	color: #ccc;
}

select::-ms-expand {
	display: none;
}

.form-textarea{
	-webkit-appearance: none;
	outline: none;
	padding: 13px 10px;
	border: 1px solid #999;
	width: 100%;
	height: 200px;
	box-sizing: border-box;
	border-radius: 0;
}

.form-radio {
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
	font-size: 14px;
	position:relative;
}

.form-radio label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	line-height: 1.4;
	min-height: 23px;
	margin: 0px 0;
	padding: 3px 0 0 25px;
	position: relative;
	vertical-align: top;
}

.form-radio input[type="radio"]{position: absolute;left:0px;top:0px;width:1px;height:1px;overflow: hidden;opacity:0;}

.form-radio label::before{
	display:block;
	content:'';
	border:1px solid #aaa;
	border-radius:50%;
	width:20px;
	height:20px;
	position:absolute;
	left: 0;
	top:50%;
	transform: translate(0,-50%);
}

.form-radio input:checked + label::after{
	display:block;
	content:'';
	background: #2A619B;
	border-radius:50%;
	width:14px;
	height:14px;
	position:absolute;
	left: 4px;
	top:50%;
	transform: translate(0,-50%);
}

.form-radio input:disabled + label {opacity: 0.7;}

.form-checkbox {
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
	font-size: 14px;
	position:relative;
}

.form-checkbox label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	line-height: 1.4;
	min-height: 23px;
	margin: 0px 0;
	padding: 3px 0 0 30px;
	position: relative;
	vertical-align: top;
}

.form-checkbox input[type="checkbox"]{position: absolute;left:0px;top:0px;width:1px;height:1px;overflow: hidden;opacity:0;}

.form-checkbox label::before{
	display:block;
	content:'';
	border:1px solid #aaa;
	border-radius:2px;
	width:20px;
	height:20px;
	position:absolute;
	left: 0;
	top:50%;
	transform: translate(0,-50%);
}

.form-checkbox input:checked + label::after{
	display:block;
	content:'';
	background: #2A619B;
	border-radius:1px;
	width:14px;
	height:14px;
	position:absolute;
	left: 4px;
	top:50%;
	transform: translate(0,-50%);
}

.form-checkbox input:disabled + label {opacity: 0.7;}

.toggle-switch {
	position: relative;
	width: 60px;
	height: 30px;
	margin: auto;
	display: inline-block;
}

.toggle-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	cursor: pointer;
}

.toggle-switch label{
	width: 60px;
	height: 30px;
	background: #ccc;
	position: relative;
	display: inline-block;
	border-radius: 30px;
	transition: 0.1s;
	box-sizing: border-box;
}

.toggle-switch label::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	left: 0;
	top: 0;
	z-index: 2;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: 0.1s;
}

.toggle-input:checked + label{background-color: #4BD865;}
.toggle-input:checked + label::after{left: 30px;}

.submit{
	text-align: center;
}

.must{color:#aa0000;}


/* accordion ---------------------------------------*/

.accordion{}

.accordion-title{
	position:relative;
	display: inline-block;
	padding-right: 50px;
	cursor: pointer;
}

.accordion-title:hover{
	color:#2A619B;
	text-decoration: underline;
}

.accordion-title::after{
	display:block;
	content:'';
	border-bottom:3px solid #2A619B;
	border-right:3px solid #2A619B;
	width:10px;
	height:10px;
	margin-top:-17px;
	position:absolute;
	right:10px;
	top:50%;
	transform: rotate(45deg);
	transition: all .25s ease;
}

.accordion-title.is-open::after{
	transform: rotate(225deg);
}

.accordion-body{
	display: none;
}


/* 診断 ---------------------------------------*/

.wrapper {
	min-height:calc(100vh - 100px);
}

.start{
	width:100%;
	text-align: center;
	padding-bottom: 50px;
}

.start-kv{
	margin-bottom: 50px;
}

.start-inner{
	max-width: 600px;
	margin:0 auto;
	border: 1px solid #AD667B;
	border-radius: 20px;
	padding:50px;
	background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
}

.start h1{
	font-size: 60px;
	font-weight: bold;
}

.start-lead{
	margin-bottom: 50px;
	text-align: left;
}

.start-lead-text{}

.start-lead-time{
	text-align:right;
	font-size: 15px;
}

.start-name{
	margin-bottom: 30px;
}

.stage-wrapper{
	padding: 50px 50px;
	display: none;
}

.stage-wrapper.active{display: block;}

.stage{
	display: none;
	max-width:800px;
	padding:50px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	background: #fff;
	margin:0 auto;
}

.stage.active{
	display: block;
}

.question {
	margin-bottom: 60px;
}

.q{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.q-num{
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
}

.q-text{
	
}

.answer{
	position: relative;
	padding: 20px 140px 20px;
}

.answer-label{
	position: absolute;
	top:30px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	width:130px;
	text-align: center;
}

.label-left{
	left:0px;
}

.label-right{
	right:0;
}

.a {
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.a li{
	background: #fff;
	color:#fff;
	border-radius: 50%;
	transition: all .25s ease;
	cursor:pointer;
	border: 3px solid #000;
	width:40px;
	height:40px;
}

.a li:hover{
	background: #8e695b;
}

.a li.active{
	background: #ea5e2b;
}

.question-next{
	text-align: center;
}


/* loading ---------------------------------------*/

.loading{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
	z-index: 1000;
}

.loading-inner{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.loading-spin{
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto 30px;
	border: 4px solid rgba(255,255,255,0.3);
	border-top-color: #ef7b49;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin{
	0%{ transform: rotate(0deg); }
	100%{ transform: rotate(360deg); }
}

.loading-text{
	font-size: 20px;
	font-weight: bold;
	color: #ef7b49;
	letter-spacing: 0.2em;
}

.loading-text::after{
	content: '';
	animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots{
	0%, 20%{ content: ''; }
	40%{ content: '.'; }
	60%{ content: '..'; }
	80%, 100%{ content: '...'; }
}

.result{
	display: none;
	text-align: center;
	padding:50px 20px;
	background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
	min-height: 100vh;
}

.result-inner{
	max-width: 600px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.result-label{
	font-size: 14px;
	color: #888;
	margin-bottom: 10px;
}

.result-title{
	font-size: 32px;
	font-weight: bold;
	color: #ef7b49;
	margin-bottom: 10px;
}

.result-type-name{
	display: block;
}

.result-subtitle{
	font-size: 18px;
	color: #666;
	margin-bottom: 20px;
}

.result-score{
	font-size: 16px;
	color: #888;
	margin-bottom: 30px;
}

.result-score .result-point{
	font-size: 48px;
	font-weight: bold;
	color: #ef7b49;
}

.result-score small{
	font-size: 24px;
}

.result-illust{
	margin-bottom: 30px;
}

.result-illust img{
	max-width: 500px;
	height: auto;
}

.result-content{
	text-align: left;
	background: #faf8f7;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
}

.result-content-title{
	font-size: 16px;
	font-weight: bold;
	color: #ef7b49;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #ef7b49;
}

.result-description,
.result-advice{
	font-size: 15px;
	line-height: 1.8;
	color: #333;
}

.result-cta{
	background: #ef7b49;
	border-radius: 10px;
	padding: 30px 20px;
	margin: 30px 0;
}

.result-cta-text{
	color: #fff;
	font-size: 14px;
	margin-bottom: 15px;
}

.btn-cta{
	background: #fff;
	color: #ef7b49;
	border-color: #fff;
	font-size: 16px;
	padding: 15px 30px;
	display: inline-block;
}

.btn-cta:hover{
	background: #fff5f0;
}

.result-share{
	margin: 30px 0;
}

.result-share-title{
	font-size: 14px;
	color: #888;
	margin-bottom: 15px;
}

.result-share-list{
	display: flex;
	justify-content: center;
	gap: 15px;
}

.result-share-list li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
}

.share-x{
	background: #000;
}

.share-line{
	background: #06C755;
}

.share-facebook{
	background: #1877F2;
}

.result-retry{
	margin-top: 20px;
}

.btn-retry{
	background: transparent;
	border: 2px solid #ccc;
	color: #666;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-retry:hover{
	border-color: #ef7b49;
	color: #ef7b49;
}


/* pc only */
@media screen and (min-width: 768px){
	.sp{display: none !important;}
	.spbr{display: none;}
}



/* small pc */
@media screen and (min-width: 768px) and (max-width: 1200px){


}



/* s0 only */
@media screen and (max-width: 767px){

	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}


	/* layout ---------------------------------------*/

	.header-inner,
	.footer-inner,
	.inner,
	.wrapper{
		min-width: 0;
		width: 100%;
	}


	/* header ---------------------------------------*/

	header{
	}

	.header-inner{
	}

	.overlay{
		content:'';
		display: block;
		position:fixed;
		width:100%;
		height:300px;
		background: rgba(0,0,0,0.5);
		left:0;
		top:0;
		z-index:6;
	}

	.bodyfixed{
		position: fixed;
		width: 100%;
		height: 100%;
	}


	/* footer ---------------------------------------*/

	.gotop{
	}

	.gotop a{
	}


	footer{
		background:none;
	}

	/* title ---------------------------------------*/

	.title-page{}

	.title-section{
		font-size: 30px;
		padding: 32px 0;
	}

	.title-section::after{width: 100px;}
	.title-block{font-size: 24px;}
	.title-small{font-size: 16px;}


	/* text ---------------------------------------*/

	.text-sp-center{text-align:center;}
	.text-sp-right{text-align:right;}
	.text-sp-left{text-align:left;}


	/* pankuzu ---------------------------------------*/

	.pankuzu{display: none}


	/* list ---------------------------------------*/

	.list li{
		padding-left: 15px;
	}


	/* btn ---------------------------------------*/


	/* modal ---------------------------------------*/

	.modal-wrapper{display: none;}

	.modal{padding: 60px 10px 20px;}

	.modal-inner-close{
		width: 320px;
		max-width: 100%;
		margin:  30px auto;
	}


	/* form ---------------------------------------*/







}




/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}