body {
	margin: 0;
	padding: 0;
}
main {
	max-width: 1200px;
	margin: 0 auto;
}
.promotion {
	width: 100%;
	min-width: 960px;
	background: linear-gradient(to bottom, #ffc86b, #feee75);
	padding: 1rem 2rem;
}

.promotion > ul {
	display: flex;
	justify-content: center;
	gap: 1rem;
	list-style: none;
	padding: 0;
}

.promotion > ul > li {
	padding: 0.2rem 1rem;
	background: #fffce2;
	border-radius: 5px;
	font-size: 1.5rem;
}

.promotion > ul > li > span {
	color: #f439a5;
}

.promotion > h3 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: #fff;
	padding: 1rem 0;
	border-radius: 5px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 2px 2px 3px #333;
}

.promotion > div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.promotion > div > p {
	color: #f439a5;
	text-align: center;
	font-size: 1.8rem;
}

.promotion > div > p > strong {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 900;
	font-style: normal;
	font-size: 4.5rem;
}

.promotion > div > p > strong > span {
	display: inline-block;
	background: #f439a5;
	color: #ffffff;
	border-radius: 5px;
	margin-left: 0.5rem;
	padding: 0 1rem;
	border: 2px solid #fff;
}

.promotion > div > div {
	width: 15%;
	font-size: 0.8rem;
}

.promotion > div > div > img {
	width: 100%;
}

.promotion > h5 {
	font-weight: normal;
	text-align: center;
	font-size: 0.9rem;
}

.point {
	width: 100%;
	padding: 1rem 2rem;
	background-image:
	repeating-linear-gradient(
		90deg,
		#c5e7ff ,
		#c5e7ff 1px,
		transparent 1px,
		transparent 16px
	),
	repeating-linear-gradient(
	0deg,
	#c5e7ff ,
	#c5e7ff 1px,
	#e2f3ff 1px,
	#e2f3ff 16px
	);
}

.point > h3 {
	text-align: center;
	width: 40%;
	margin: 0 auto 1rem;
	padding: 0.5rem;
	border-radius: 50px;
	background: #ffffff;
	border: 2px solid #f439a5;
	color: #f439a5;
}

.point > dl {
	display: flex;
	flex-wrap: wrap;
	counter-reset: count;
	gap: 1rem 0.5rem;
}

.point > dl > dt {
	width: 20%;
	counter-increment: count;
	position: relative;
	background: #007eb7;
	color: #fff;
	padding: 0.5rem;
	display: flex;
}

.point > dl > dt > div {
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(255,255,255,0.6);
	border-bottom: 1px solid rgba(255,255,255,0.6);
	padding: 0 0.5rem;
}

.point > dl > dt > div::before {
	content: counter(count);
	font-size: 4rem;
	color: rgba(255,255,255,0.6);
	margin-right: 5px;
}

.point > dl > dt > div::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 20px;
	border-color: transparent transparent transparent #007eb7;
	position: absolute;
	top: 0;
	right: -20px;
	bottom: 0;
	margin: auto;
}

.point > dl > dd {
	width: 75%;
	background: #fff;
	border-right: 3px solid #cccccc;
	border-bottom: 3px solid #cccccc;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1rem;
}

.point > dl > dd > h4 {
	color: #f439a5;
}

.point > dl > dd > span {
	font-size: 0.8rem;
}

.point > div {
	width: 80%;
	margin: 0 auto;
	padding: 0.5rem;
	border-radius: 100px;
	color: #f439a5;
	background: #fff3a0;
	font-size: 1.8rem;
	font-weight :bold;
	text-align: center;
}

.point > div > ul {
	display: flex;
	width: 80%;
	margin: 0 auto;
	padding: 0;
	border-bottom: 1px solid #f439a5;
}

.point > div > ul > li {
	display: inline-block;
	text-align: left;
}

.plan {
	padding: 3rem 2rem 2rem;
	background: repeating-linear-gradient(-45deg,#eee,#eee 3px,#fff 0,#fff 12px);
}

.plan > div {
	background: #fff;
	border: 2px solid #f439a5;
	position: relative;
	padding: 2rem;
}

.plan > div > h2 {
	width: 80%;
	margin: 0 auto;
	background: #f439a5;
	color: #ffffff;
	border-radius: 5px;
	padding: 0.5rem 1rem;
	text-align: center;
	position: relative;
	top: -1rem;
}

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

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

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

.plan > div > dl > dd:nth-of-type(n+4) {
	font-size: 2.5rem;
	font-weight: bold;
}

.plan > div > dl > dt:nth-of-type(1) {
	background: #eeeeee;
}
.plan > div > dl > dd:nth-of-type(1) {
	background: #ffd1a9;
}
.plan > div > dl > dd:nth-of-type(2) {
	background: #cbefff;
}
.plan > div > dl > dd:nth-of-type(3) {
	background: #fff8b9;
}

.plan > div > ul {
	display: flex;
	gap: 1rem;
}

.plan > div > ul > li {
	width: 50%;
}

.plan > div > ul > li > ul {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	height: 100%;
	background: #e0ffc4;
	padding: 1rem;
	font-weight: bold;
	font-size: 1.2rem;
}

.plan > div > ul > li > ul > li:first-child {
	display: flex;
	justify-content: center;
	gap: 0.2rem;
	margin-bottom: 1rem;
	font-size: 2rem;
}

.plan > div > ul > li > ul > li:nth-child(n+2) {
	border-bottom: 1px dashed #999;
	font-size: 1.5rem;
}

.plan > div > ul > li > ul > li > span {
	display: flex;
	color: #fff;
	width: 3rem;
	height: 3rem;
	justify-content: center;
	border-radius: 5px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}

.plan > div > ul > li > ul > li > span:nth-child(odd) {
	background: #005438;
}
.plan > div > ul > li > ul > li > span:nth-child(even) {
	background: #f28800;
}

.plan > div > ul > li > p {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.plan > div > ul > li > 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.5rem;
}

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

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

.plan > div > ul > li > dl > dt {
	background: #eeeeee;
}
.plan > div > ul > li > dl > dd:nth-of-type(1) {
	background: #64cfff;
}
.plan > div > ul > li > dl > dd:nth-of-type(2) {
	background: #ffcbfd;
}


.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:nth-child(2) {
	grid-template-columns: auto 1fr;
}

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

// .signature > ul > li:first-child {
// 	grid-template-columns: auto 1fr;
// }
// 
// .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;
}