/* shindan
-------------------------------------------------------*/
:root{
	--main-color: #00A99D;
}
body{
	background: url("../img/site-bg.png") no-repeat;
	background-position: top center;
	background-size: cover;
}
#shindan-header{
	padding: 15px 0 0 0;
	text-align: center;
	position: relative;
	z-index: 2;
}
#shindan-header img{
	width: 270px;
	height: auto;
}
#shindan-header a img{
	opacity: 1;
	transition: opacity 0.3s ease;
}
#shindan-header a:hover img{
	opacity: 0.6;
}
#shindan-wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}
.layout-box{
	position: relative;
	width: 100%;
	max-width: 1090px;
}
.slick-prev{
	position: absolute;
	top: 0;
	left: -150px;
}
.slick-next{
	position: absolute;
	top: 0;
	right: -100px;
}
#shindan .title{
	text-align: center;
}
.slide{
	padding-bottom: 40px;
}
.slidenum{
	display: none;
}
.steps{
	text-align: center;
	& span{
		font-size: 2.6rem;
		display: inline-block;
		background: var(--main-color);
		color: #fff;
		border-radius: 0 0 10px 10px;
		font-weight: 600;
		padding: 20px 40px;
	}
	& em{
		font-size: 3.6rem;
		font-weight: 600;
	}
}
.q-title{
	max-width: 635px;
	margin: 40px auto;
	padding-left: 70px;
	position: relative;
	.img{
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 1;
	}
	.img img{
		width: 130px;
		height: auto;
	}
}
.q-title .txt{
	background: #EEF1F2;
	border-radius: 14px;
	min-height: 12em;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.q-title .txt::before,
.q-title .txt::after{
	content: "";
	display: inline-block;
	width: 23px;
	height: 20px;
	background: url("../img/quote.svg") no-repeat;
	background-size: contain;
	position: absolute;
}
.q-title .txt::before{
	top: 10px;
	left: 18px;
}
.q-title .txt::after{
	right: 18px;
	bottom: 10px;
	transform: rotate(180deg);
}
.q-title.two-rows .txt{
	text-align: left;
	line-height: 1.5;
	padding-left: 70px;
	justify-content: flex-start;
}
.q-title .txt h3{
	font-size: 2.8rem;
	font-weight: 600;
}
.q-title .txt h3 em{
	color: var(--main-color);
	font-weight: 600;
}
.q-title .txt h3 em.small{
	font-size: 2.4rem;
}
.q-title .underline{
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
}
.content{
	background: #fff;
	border: 3px solid var(--main-color);
	border-radius: 13px;
}
.content .inner{
	max-width: 800px;
	margin: 0 auto;
}
.radio-btn input[type="radio"] {
	opacity: 0;
	position: absolute;
	left: 20px;
	top: 50%;
}
.radio-btn {
	text-align: center;
	position: relative;
	margin-top: 70px;
}
.radio-btn + .radio-btn{
	margin-top: 40px;
}
.radio-btn label span {
  display: inline-block;
	width: 100%;
	max-width: 635px;
  padding: 17px 0;
  border-radius: 28px;
  background: #FFFFFF;
	border: 1px solid #1DA39A;
	color: #1DA39A;
	font-size: 3.8rem;
	font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
	box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.14);
}
.radio-btn input[type="radio"]:checked + span {
	color: #fff;
  background: linear-gradient(180deg,rgba(9, 170, 158, 1) 0%, rgba(8, 122, 114, 1) 100%);
}
@media only screen and (min-width: 767px) {
	.radio-btn label:hover span {
		color: #fff;
		background: linear-gradient(180deg,rgba(9, 170, 158, 1) 0%, rgba(8, 122, 114, 1) 100%);
	}
}
.grid{
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px 15px;
	font-size: 2.4rem;
	align-items: center;
	& h4{
		border-left: 5px solid var(--main-color);
		color: var(--main-color);
		padding-left: 10px;
		padding: 5px 0 5px 12px;
		white-space: nowrap;
		font-size: 2.4rem;
		font-weight: 600;
		display: flex;
		align-items: center;
	}
	.p01{
		text-align: right;
		line-height: 1.25;
	}
	.input-text{
		& input{
			width: 12em;
			box-sizing: border-box;
		}
	}
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"] {
	border: 0;
	padding: 20px 20px;
	background: #fff;
	border-radius: 5px;
	border: 1px solid #6AC6D6;
}
.tooltip-button{
	margin-left: 15px;
	cursor: pointer;
	margin-top: 1px;
}
.custom-popup{
	border: 3px solid var(--main-color);
	border-radius: 15px;
	padding: 20px 0;
	.swal2-title {
		font-size: 2rem;
		font-weight: 600;
		color: var(--main-color);
	}
	.swal2-title::after {
		content: "";
		display: block;
		width: 70px;
		height: 3px;
		background: var(--main-color);
		margin: 20px auto 0 auto;
	}
	.swal2-html-container {
		font-size: 1.6rem;
		text-align: left;
	}
	.swal2-confirm, .swal2-cancel {
		font-size: 1.6rem;
	}
}
.btn{
	text-align: center;
	margin-top: 60px;
}
.btn a,
.btn button{
  display: inline-block;
	width: 100%;
	max-width: 635px;
  padding: 17px 0;
  border-radius: 28px;
  background: #FFFFFF;
	border: 1px solid #1DA39A;
  background: linear-gradient(180deg,rgba(9, 170, 158, 1) 0%, rgba(8, 122, 114, 1) 100%);
	color: #fff;
	font-size: 3.8rem;
	font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
	box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.14);
	cursor: pointer;
	position: relative;
	text-decoration: none;
}
.btn a::after,
.btn button::after{
	content: "";
	display: inline-block;
	width: 51px;
	height: 41px;
	background: url("../img/ico-btn.svg") no-repeat;
	background-size: contain;
	position: absolute;
	right: 30px;
	top: calc(50% - 20px);
}
@media only screen and (min-width: 767px) {
	.btn a:hover,
	.btn button:hover{
		background: #fff;
		color: #1DA39A;
	}
}
.btn .finish-btn{
	border-radius: 4px;
	background: linear-gradient(145deg, #09aa9e 0%, #087a72 100%);
	border: 1px solid #fff;
}
.btn .finish-btn::after{
	width: 50px;
	height: 57px;
	background-image: url("../img/ico-tap-w.svg");
	top: calc(50% - 25px);
}
.btn .finish-btn:hover::after{
	background-image: url("../img/ico-tap.svg");
}

.radio-btn input[type="radio"]:checked + span {
	color: #fff;
}
label.error {
  color: #d00;
  font-size: 1.6rem;
  margin-top: 4px;
}
input.error {
  border-color:#d00;
}
.input-checkbox{
	font-size: 2.4rem;
	font-weight: 500;
	position: relative;
	& input{
		opacity: 0;
		position: absolute;
		right: 0;
		top: 0;
	}
}
.input-checkbox + .input-checkbox{
	margin-top: 25px;
}
.input-checkbox label{
	display: flex;
	align-items: center;
}
.checkbox-ui {
	display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--main-color);
	border-radius: 5px;
	background: #fff;
  margin-right: 20px;
  position: relative;
}
.input-checkbox input:checked + .checkbox-ui::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 6px;
  width: 10px;
  height: 17px;
  border-right: 3px solid #F83401;
  border-bottom: 3px solid #F83401;
  transform: rotate(45deg);
}
.input-checkbox input:checked + .checkbox-ui + span {
	color: var(--main-color);
}
.prev-btn-wrap{
	text-align: center;
	margin-top: 30px;
}
.prev-btn{
	color: var(--main-color);
	font-size: 1.8rem;
}
/* result
-------------------------------------------------------*/

/* #shindan{
	display: none;
}
#result{
	opacity: 1 !important;
	visibility: visible !important;
	display: block !important;
}
#result .results + .results{
	margin-top: 100px;
}
#result .results{
	display: block !important;
}	 */

.talk-row{
	display: flex;
	align-items: center;
	padding: 0 40px;
	gap: 20px;
}

#result{
	display: none;
	transition: all 0.1s linear;
	z-index: 10;
	width: 100%;
	max-width: 1090px;
	margin-top: 20px;
}
#result.active{
	display: block;
	animation: fade-in 0.3s linear forwards;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#result .title{
	text-align: center;
}
@media (min-width: 767px) {
	#result .title{
		position: relative;
	}
	#result .title::after{
		content: "";
		display: block;
		width: 100%;
		height: 92px;
		background: var(--main-color);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		border-radius: 13px;
	}
}
#result .content{
	padding: 50px 50px;
	border-color: #F7B756;
}
#result .results{
	display: none;
	max-width: 800px;
	margin: auto;
}
.pickup{
	margin-bottom: 40px;
}
.pickup li{
	border-bottom: 1px solid #F7B756;
	font-weight: 600;
	font-size: 2.2rem;
	line-height: 1.5;
	padding-bottom: 10px;
	position: relative;
	padding-left: 60px;
}
.pickup li strong{
	font-weight: 600;
	color: #FE4500;
}
.pickup li + li{
	margin-top: 28px;
}
.pickup li::before{
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	background: url("../img/ico-pickup.png") no-repeat;
	background-size: contain;
	position: absolute;
	top: -8px;
	left: 0;
}
#result .results .quote{
	background: #FFEFC7;
	position: relative;
	padding: 30px 60px;
	border-radius: 15px;
	font-size: 2rem;
	line-height: 2;
	font-weight: 600;
}
#result .results .quote::before,
#result .results .quote::after{
	content: "";
	display: inline-block;
	width: 23px;
	height: 20px;
	background: url("../img/quote-orange.svg") no-repeat;
	background-size: contain;
	position: absolute;
}
#result .results .quote::before{
	top: 10px;
	left: 18px;
}
#result .results .quote::after{
	right: 18px;
	bottom: 10px;
	transform: rotate(180deg);
}
#result .results .quote strong{
	font-weight: 600;
}
#result .results .quote .orange{
	color: #FE4500;
	border-bottom: 1px solid #FE4500;
}
#result .results .quote .yellow{
	color: #B07A00;
	border-bottom: 1px solid #B07A00;
}
.lead{
	background: url("../img/lead-bg.svg") no-repeat;
	background-size: cover;
	border-radius: 12px;
	padding: 8px;
	margin-top: 40px;
	position: relative;
}
.lead::before,
.lead::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 50px solid transparent;
	border-left: 50px solid transparent;
	border-top: 35px solid #E77119;
	border-bottom: 0;
	position: absolute;
	bottom: -45px;
	left: calc(50% - 50px);
}
.lead::after{
	bottom: -65px;
}
.lead .inner{
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}
.lead > p{
	text-align: center;
	color: #fff;
	font-size: 2rem;
	margin: 10px 0 17px;
	font-weight: 700;
}
.lead .p01{
	text-align: center;
	font-size: 3.6rem;
	line-height: 1.75;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 20px;
}
.lead small{
	font-size: 1.2rem;
}
.lead .underline{
	border-bottom: 1px solid #EAB994;
}
.lead strong{
	font-weight: 600;
	color: #FE4500;
}
.lead .note{
	background: #F5F5F5;
	padding: 10px;
	color: #4D4D4D;
	font-size: 1.4rem;
	line-height: 1.75;
	max-width: 680px;
	margin: 40px auto;
	border-radius: 10px;
}
.lead .p02{
	text-align: center;
	font-size: 2rem;
	line-height: 1.75;
	font-weight: 600;
	margin-bottom: 24px;
}
.lead .img{
	text-align: center;
}
.lead .img img{
	display: block;
	margin: auto;
}
.lead .img .img01{
	width: 240px;
	height: auto;
}
.lead .img .img02{
	width: auto;
	height: auto;
}
.lead .p03{
	text-align: center;
	font-size: 2.2rem;
	line-height: 1.75;
	font-weight: 600;
	padding: 20px;
	background: #FFEFC7;
	color: #552B00;
}

/* timerex
-------------------------------------------------------*/
#tr-wrap{
	margin-top: 100px;
}
.tr-title{
	background: linear-gradient(96deg,rgba(38, 166, 154, 1) 0%, rgba(1, 141, 127, 1) 100%);
	color: #fff;
	border: 2px solid #11153A;
	padding: 20px 100px 20px 30px;
	border-radius: 10px;
	font-size: 2.9rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	position: relative;
	box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.14);
}
.tr-title::before{
	content: "";
	display: inline-block;
	width: 51px;
	height: 51px;
	background: url("../img/ico-calendar.png");
	background-size: contain;
	margin-right: 20px;
}
.tr-title .img{
	position: absolute;
	bottom: 0;
	right: -6px;
}
.tr-title + p{
	font-size: 2rem;
	line-height: 1.75;
	margin: 20px 30px;
}

/* SP
-------------------------------------------------------*/
br.sp{
	display: none;
}
.floating{
	display: none;
}
@media only screen and (max-width: 767px) {
	br.pc{
		display: none;
	}
	br.sp{
		display: inline;
	}
	#shindan-header{
		padding: 5px 0 0 0;
		text-align: center;
	}
	#shindan-header img{
		width: 140px;
		height: auto;
	}
	#shindan-wrap{
		padding: 0 15px;
	}
	#result, #thanks{
		margin-top: 10px;
	}
	.title{
		margin-left: -15px;
		margin-right: -15px;
	}
	.content .slide{
		padding: 0 15px 30px 15px;
	}
	.steps {
		& span {
			font-size: 1.4rem;
			padding: 6px 30px 14px 30px;
		}
		& em{
			font-size: 2.2rem;
		}
	}
	.q-title{
		font-size: 1.6rem;
		padding: 0;
		padding-left: 40px;
		.img img{
			width: 90px;
		}
	}
	.q-title .txt{
		min-height: 6.8em;
		padding-left: 33px;
		padding-right: 14px;
	}
	.q-title.two-rows .txt{
		padding-left: 63px;
	}
	.q-title br{
		display: none;
	}
	.q-title-lead{
		font-size: 1.4rem;
		margin: 40px 0;
	}
	.q-title .txt::before, .q-title .txt::after{
		width: 17px;
		height: 14px;
	}
	.q-title .txt::before{
		top: 6px;
		left: 38px;
	}
	.q-title .txt h3{
		font-size: 1.6rem;
	}
	.q-title .txt h3 em.small{
		font-size: 1.4rem;
	}
	.q-title .underline{
		font-size: 1.6rem;
		line-height: 1.75;
		padding-bottom: 0;
	}
	.radio-btn{
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.radio-btn label span{
		font-size: 1.8rem;
		padding: 14px 0 15px 0;
	}
	.grid{
		grid-template-columns: repeat(3, 1fr);
		font-size: 1.6rem;
		gap: 15px 6px;
		& h4{
			font-size: 1.6rem;
			grid-column: span 3;
			margin-bottom: -5px;
		}
	}
	.grid .input-text input{
		width: 11em;
		padding: 14px 0 14px 10px;
		font-size: 1.4rem;
	}
	.grid .p01,
	.grid .p02{
		white-space: nowrap;
	}
	label.error{
		display: inline-block;
		font-size: 1.4rem;
	}
	@media only screen and (max-width: 390px) {
		.grid .p01,
		.grid .p02{
			font-size: 1.4rem;
		}
	}
	.btn{
		margin-top: 30px;
	}
	.btn a, .btn button{
		font-size: 1.8rem;
		padding: 14px 0 15px 0;
		box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.14);
	}
	.btn a::after, .btn button::after{
		width: 22px;
		height: 19px;
		background-size: contain;
		top: calc(50% - 10px);
		right: 20px;
	}
	.btn .finish-btn{
		padding: 25px 0 26px 0;
		font-size: 2.2rem;
	}
	.btn .finish-btn::after{
		width: 40px;
		height: 43px;
		top: calc(50% - 19px);
	}
	.prev-btn-wrap{
		margin-top: 20px;
	}
	.prev-btn{
		font-size: 1.4rem;
	}
	.input-checkbox{
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.checkbox-ui{
		width: 30px;
		height: 30px;
		flex-shrink: 0;
		margin-right: 10px;
	}
	.input-checkbox input:checked + .checkbox-ui::after{
		left: 9px;
		top: 4px;
		width: 7px;
		height: 13px;
	}
	.input-checkbox input:checked + .checkbox-ui::after{
		border-right-width: 2px;
		border-bottom-width: 2px;
	}
	.input-checkbox + .input-checkbox{
		margin-top: 20px;
	}
	#result .content{
		padding: 30px 15px;
	}
	#result .lead{
		font-size: 1.4rem;
	}
	.checks{
		margin: 40px 0;
		gap: 20px;
		flex-direction: column;
		gap: 14px;
	}
	.checks li{
		font-size: 1.4rem;
		gap: 10px;
		line-height: 1.5;
		padding: 15px;
		border-radius: 100px;
		width: 100%;
	}
	.checks li::before{
		width: 28px;
		height: 27px;
		flex-shrink: 0;
	}
	.underline{
		line-height: 1.5;
		font-size: 2rem;
	}
	.underline span{
		padding-bottom: 0;
	}
	.pickup li{
		font-size: 1.6rem;
	}
	.pickup li::before{
		top: 2px;
	}
	#result .results .quote{
		padding: 30px 24px;
		font-size: 1.6rem;
		line-height: 1.75;
	}
	.lead .inner{
	}
	.lead > p{
		font-size: 1.6rem;
	}
	.lead .p01{
		margin-top: 17px;
		font-size: 2rem;
		line-height: 1.5;
		padding: 0 14px;
		margin-bottom: 0;
	}
	.lead .note{
		margin: 20px 14px 10px 14px;
		font-size: 1.2rem;
	}
	.lead .p02{
		margin-top: 9px;
		margin-bottom: 15px;
		font-size: 1.5rem;
		padding: 0 14px;
	}
	.lead .p03{
		font-size: 1.5rem;
		line-height: 1.75;
	}
	.lead::before, .lead::after{
		border-right: 40px solid transparent;
		border-left: 40px solid transparent;
		border-top: 27px solid #E77119;
		left: calc(50% - 40px);
		bottom: -35px;
	}
	.lead::after{
		bottom: -50px;
	}
	.lead .img01{
		width: 204px;
	}
	.lead .img02{
		width: 100%;
		height: auto;
	}

	#tr-wrap{
		padding: 0;
		margin-top: 60px;
	}
	.tr-title{
		padding: 15px 15px;
		font-size: 1.8rem;
		line-height: 1.5;
	}
	.tr-title::before{
		flex-shrink: 0;
		width: 39px;
		height: 39px;
		margin-right: 15px;
	}
	.tr-title .img{
		display: none;
	}
	.tr-title + p{
		font-size: 1.4rem;
		margin: 20px 0;
	}
	.floating{
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		background: rgba(62, 62, 62, 0.8);
		width: 100%;
		padding: 15px 20px;
		z-index: 20;
		opacity: 1;
		visibility: visible;
		transition: all 0.1s linear;
		& > p {
			color: #fff;
			position: relative;
			margin-bottom: 7px;
			padding-left: 30px;
			font-size: 1rem;
		}
		& > p::before {
			content: "";
			display: inline-block;
			width: 34px;
			height: 30px;
			background: url("../img/ico-tap.png");
			background-size: contain;
			margin-right: 10px;
			position: absolute;
			top: 0;
			left: 0;
			z-index: 1;
		}
		& a{
			display: flex;
			align-items: center;
			background: #FE4500;
			font-size: 1.5rem;
			font-weight: 600;
			line-height: 1.2;
			color: #fff;
			text-decoration: none;
			border-radius: 10px;
			padding: 12px 63px 12px 20px;
			position: relative;
			box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.14);
		}
		& a .img{
			position: absolute;
			right: 0;
			bottom: 0;
			width: 58px;
		}
		& a::before{
			content: "";
			display: inline-block;
			width: 21px;
			height: 21px;
			background: url("../img/ico-calendar.png");
			background-size: contain;
			margin-right: 10px;
		}
	}
	.custom-popup {
		.swal2-title {
			font-size: 1.6rem;
		}
		.swal2-html-container{
			font-size: 1.4rem;
		}
	}
}

.legal-footer {
	padding: 24px 16px 32px;
	text-align: center;
}

.legal-footer .legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	font-size: 12px;
	line-height: 1.6;
}

.legal-footer .legal-links a {
	color: #333;
	text-decoration: underline;
}