@charset "utf-8";
/* CSS Document */


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
	text-decoration: none;
}
body {
	color: #333;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	background-color: #f0f0f0;
}
#wrap {
	position: relative;
	max-width: 500px;
	width: 100%;
	margin: auto;
	padding: 2em;
	background-color: #fff;
	z-index: 0;
}
#wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/back.png");
	opacity: .5;
	z-index: -1;
}
section {
	margin-bottom: 3em;
}
.img {
	display: block;
	width: 150px;
	margin: 0 auto 1em auto;
}
.img2 {
	width: 200px;
	height: 200px;
	margin-bottom: 1em;
	object-fit: cover;
	border-radius: 50%;
}


/*　ヘッダー　*/
header {
	position: relative;
	max-width: 500px;
	width: 100%;
	margin: auto;
	padding: 5em 2em;
	background: url("../img/back_fview.png") center center / cover;
	z-index: 0;
}
header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: .2;
	z-index: 1;
}
h1 {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .2em;
	line-height: 1.2;
	z-index: 2;
}
.line {
	display: inline-block;
	width: fit-content;
	color: #fff;
	background-color: #C6B4E4;
}
.line.small {
	font-size: 1.2rem;
}


/*　フォーム　*/
h2 {
	margin-bottom: 1em;
	font-size: 1.2em;
	text-align: center;
}
h2 span {
	display: inline-block;
	margin: .1em;
	padding: .1em .2em;
	color: #fff;
	background-color: #C6B4E4;
}
form {
	margin-top: 2em;
}
.question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 1em;
	margin: 1.5em 0;
}
.question.last {
	margin-bottom: 3em;
}
.question_text {
	font-weight: bold;
}
.question_text::before {
	content: "Q.";
	margin-right: .5em;
}
.question p {
	font-size: .9em;
}
.toggle {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	width: 100px;
	border-radius: 999px;
	background-color: #efefef;
	overflow: hidden;
}
.toggle input[type="radio"] {
	display: none;
}
.toggle label {
	position: relative;
	flex: 1;
	padding: .2em 0;
	color: #333;
	font-size: .8rem;
	text-align: center;
	transition: color .1s;
	cursor: pointer;
	z-index: 1;
}
.toggle span {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	border-radius: 999px;
	background-color: #C6B4E4;
	transition: left .1s;
	z-index: 0;
}
input[id$="no"]:checked ~ span {
	left: 50%;
}
.input-block button {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 2em 0 5em 0;
	padding: 1em;
	border: none;
	border-radius: 9999px;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	letter-spacing: .05em;
	background-color: #C6B4E4;
	box-shadow: 0 4px 0 #A288C7;
	cursor: pointer;
}
.input-block button::after {
	content: "→";
	position: absolute;
	top: 50%;
	right: 1em;
	font-size: 1.2em;
	font-weight: normal;
	transform: translateY(-50%);
}
.input-block {
	margin-top: 1.5em;
}
.input-block p {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 .5em;
	margin-bottom: .5em;
	font-size: .9em;
}
.input-block span {
	flex-shrink: 1;
	padding: 0 .5em;
	border-radius: 3px;
	font-size: .8em;
}
.nini {
	background-color: #ccc;
}
.hissu {
	background-color: #D55C5A;
}
.input-block input {
	width: 100%;
	margin-bottom: 1.5em;
	padding: .5em;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1em;
}


/*　会社概要　*/
.logo {
	display: block;
	width: 150px;
	margin: 0 auto 1em auto;
}
.motto {
	margin-bottom: 1em;
	color: #A288C7;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
address {
	margin-top: 2em;
	font-size: .9em;
}
.service_text {
	margin-bottom: .5em;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
section li {
	margin-bottom: 1.5em;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 1em;
	text-align: center;
	background-color: #fff;
}
section li p {
	text-align: left;
}


/*　フッター　*/
footer {
	padding: 2em 0;
}
footer img {
	display: block;
	width: 200px;
	margin: auto;
}