body {
	margin: 0;
	padding: 0;
}
main {
	max-width: 1200px;
	margin: 0 auto;
}
main img{
	width: 100%;
}

.promotion {
	margin-bottom: 1rem;
	padding: 2rem;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../img/bg.jpg);
}

.promotion > div {
	background: #fff;
	padding: 2rem 0;
}

.promotion > div > h2 {
	text-align :center;
	padding: 1rem 0;
}

.promotion > div > h2 > img {
	width: auto;
}

.promotion > div > p {
	font-size: 1.5rem;
	text-align :center;
}

.question > h3 {
	margin-bottom: 1rem;
}

.question > h3 > span {
	font-size: 150%;
	color: #dc4e40;
}

.question > dl {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.question > dl > dt {
	display: flex;
	align-items: center;
	width: calc( (100% - 2rem) / 4 );
	position: relative;
	padding-top: 2rem;
}

.question > dl > dt > span {
	width: 20%;
	position: absolute;
	top: 0;
	left: 1rem;
}

.question > dl > dt > p {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f1676f;
	border-radius: 10px;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	box-shadow: inset 10px 10px 15px #ca5f67, inset -10px -10px 15px #ca5f67;
}

.question > dl > dd {
	width: auto;
	padding-top: 1.5rem;
}

.question > div {
	text-align: right;
	margin-bottom: 2rem;
}

.point > h3 {
	padding: 0.5rem 1rem;
	border-left: 10px solid #666;
}

.point > ul {
	padding: 0;
	list-style-type: none;
}

.point > ul > li {
	display: flex;
	font-size: 1.5rem;
	padding: 1rem 0;
	border-bottom: 1px dashed #666;
	counter-increment: item;
}

.point > ul > li::before {
	margin-right: 1rem;
	content: counter(item, decimal-leading-zero) ". ";
}

.point > ul > li div:first-child {
	order: 10;
}

.point > ul > li div > ul {
	list-style: none;
	margin-top: 0.5rem;
	padding: 0;
	display: flex;
}

.point > ul > li div > ul li:first-child {
	order: 10;
	border: 2px solid #dc4e40;
	background: #fff3a0;
	padding: 0 0.5rem;
}


.point > ul > li div > ul li + li,
.point > ul > li div + div {
	background: #dc4e40;
	border-radius: 5px;
	padding: 0.2rem 0.5rem;
	color: #fff;
	font-weight: bold;
	position: relative;
	margin-right: 1rem;
}

.point > ul > li div > ul li + li::after,
.point > ul > li div + div::after{
	content: "";
	position: absolute;
	right: -10px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	background-color: #dc4e40;
	width: 20px;
	height: 24px;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.point > ul > li span {
	color: #dc4e40;
}

.point > div {
	margin-bottom: 2rem;
}

.plan > p {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	padding: 0.5rem 1rem;
	border-left: 10px solid #666;
}

.plan .example {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.plan .example > div {
	width: calc( (100% - 2rem) / 3 );
}

.plan .example > div > p {
	text-align: center;
	font-size: 1.5rem;
	margin: 0;
}

.plan .example > div > p > strong {
	color: #00a52f;
}

.plan .example > div > dl {
	display: grid;
	grid-template-columns: 30% 1fr 1fr;
	grid-template-rows: auto 1fr 1fr 1fr;
	justify-items: center;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 0;
}

.plan .example > div > dl > * {
	width: 100%;
	height: 100%;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: 0;
	padding: 0.5rem;
}

.plan .example > div > dl > dt {
	background: #eeeeee;
}

.plan .example > div > dl > dd:nth-of-type(1) {
	background: #ffcbfd;
}

.plan .example > div > dl > dd:nth-of-type(2) {
	background: #64cfff;
}

.plan .example > div > dl > dd:nth-of-type(n+3) {
	text-align: right;
}

.plan .simulation {
	margin-bottom: 2rem;
	padding: 20px;
	border: 4px solid #FF6027;
	border-radius: 10px;
	background: #FFF3F5;
}

.plan .simulation > p:first-child {
	font-size: 1.5rem;
	font-weight: bold;
}

.plan .simulation > div {
	display: flex;
	background: #FFC27C;
	border-radius: 5px;
	justify-content: center;
	margin-bottom: 1rem;
}

.plan .simulation > div > div > dl {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0;
	padding: 1rem;
	font-size: 1.2rem;
}

.plan .simulation > div > div > dl > dt {
	background: #ff6600;
	padding: 0 1rem;
	border-radius: 3px;
	font-weight: bold;
	color: #fff;
}

.plan .simulation > div > div > dl > dd {
	margin-bottom: 0;
}

.plan .simulation > div > div > dl > dd > label > input[type="radio"] {
	width: 20px;
	height: 20px;
}

.plan .simulation > ul {
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
}

.plan .simulation > ul > li > div {
	font-weight: bold;
	color: #FF4500;
	width: 10rem;
	text-align: center;
	background: #fff;
	border-radius: 5px;
	padding: 0.5rem 0;
}

.plan .simulation > dl {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	background: #fff;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	font-size: 1.2rem;
	text-align :center;
}

.plan .simulation > dl > * {
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: 0;
	padding: 0.5rem;
}

.plan .simulation > dl > dt {
	background: #FFC7A6;
}

.plan .simulation > dl > dd:nth-of-type(-n+3) {
	background: #EFECF1;
}

.plan .care {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 2rem;
}

.plan .care > dt {
	grid-column: 1 / 3;
	font-size: 1.5rem;
}

.plan .care > dd {
	padding: 1rem 2rem;
	border: 1px solid #E65601;
	border-radius: 3px;
	background: #FFF1EE;
}

.plan .care > dd > div {
	margin-bottom: 1rem;
	text-align: center;
	font-weight: bold;
	color: #E65601;
	display: block;
	font-size: 1.2rem;
}

.form {
	padding: 2rem;
	background: #fff3a0;
}

.form ::placeholder {
	color:#aaa;
}

.form > form {
	padding: 2rem;
	background: #fff;
}

.form > form > h2 {
	color: #ff7700;
}

.form > form ul {
	padding: 0;
	list-style: none;
}

.form > form > ul > li {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px dashed #999999;
}

.form > form > ul > li > span {
	display: inline-block;
	margin-left: 0.5rem;
	padding: 2px 10px;
	background: #ff0000;
	border-radius: 5px;
	color: #fff;
	font-weight: bold;
}

.form > form > ul > li > div {
	display: flex;
	gap: 1rem;
	align-items: center;
	font-size: 1.5rem;
	margin-top: 0.5rem;
}

.form > form > ul > li input {
	border: 1px solid #e2e2e2;
	background: #f4f4f4;
	border-radius: 5px;
	padding-right: 15px;
	padding-left: 15px;
}

.form > form > ul > li.sex label {
	display: flex;
}

.form > form > ul > li.sex input[type=radio] {
	transform:scale(2.0);
	margin-right: 10px;
}

.form > form > ul > li.birth > div + div {
	margin-top: 0.5rem;
}

.form > form > ul > li.birth input[type=radio] {
	display: none;
}

.form > form > ul > li.birth input[type="radio"] + label {
	border: 2px solid #e2e2e2;
	color: #999999;
	border-radius: 5px;
	padding-right: 15px;
	padding-left: 15px;
}

.form > form > ul > li.birth input[type="radio"]:checked + label {
	border: 2px solid #31A9EE;
	color: #000000;
	font-weight: bold;
	background: #f4f4f4;
}

.form > form > ul > li.birth input[type="text"] {
	margin-right: 10px;
}

.form > form > ul > li.birth select {
	border-radius: 5px;
	padding-right: 15px;
	padding-left: 15px;
	border: 1px solid #e2e2e2;
	background: #f4f4f4;
	margin-right: 10px;
}

.form > form > ul > li.address dl {
	display: grid;
	grid-template-columns: 40% 1fr;
}

.form > form > ul > li.address dl > dt {
	font-weight: normal;
}

.form > form > ul > li.submit {
	text-align: center;
}

.form > form > ul > li.submit input[type="submit"] {
	padding: 0.5rem 3rem;
	background: #f439a5;
	font-size: 1.5rem;
	color: #ffffff;
	border-radius: 5px;
	box-shadow: 2px 2px 3px #999;
}

.signature > ul {
	display: flex;
	justify-content: space-between;
	padding: 1rem 2rem;
	list-style: none;
}

.signature > ul > li {
	display: grid;
	align-items: center;
}

.signature > ul > li:first-child {
	grid-template-columns: auto 1fr;
	order: 10;
}

.signature > ul > li:first-child > img {
	grid-row: 1 / 4;
	width: 100%;
}

.signature > ul > li > span {
	font-size: 0.7rem;
}

.signature > ul > li > div {
	font-size: 1.2rem;
	font-weight: bold;
}



footer {
	display: none;
	width: 100%;
	min-width: 1024px;
	height: 120px;
	background: linear-gradient(to bottom, #ffc86b, #feee75);
	overflow: hidden;
	position: relative;
	z-index: 10000;
}

footer > section {
	width: 100%;
	min-width: 960px;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.column {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

footer > section > .column > div:nth-of-type(1) {
	width: 70%;
}

.column.col-2 > * {
	width: 50.00%;
	float: left;
}

footer nav > ul {
	display: flex;
	padding: 0;
	list-style: none;
	gap: 1rem;
}

footer > section > .column > div:nth-of-type(2) {
	width: 30%;
	overflow: hidden;
}

.column.col-2 > * {
	width: 50.00%;
	float: left;
}

footer small {
	width: 100%;
	font-size: 0.9rem;
	color: rgba(255,255,255,1.0);
}

footer > section > .column > div:nth-of-type(2) > a {
	width: 200px;
	height: auto;
	margin-top: 32px;
	float: right;
}


@media only screen and (max-width: 980px) {
	.question > dl > dt {
		width: 100%;
	}
	
	.question > dl > dt > span {
		width: 10%;
	}
	
	.plan .example {
		display: block;
	}
	
	.plan .example > div {
		width: 100%;
	}
}

@media only screen and (max-width: 759px) {
}
