body {
	background-color: bisque;
}

form,.form {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.block {
	background-color: white;
	border-radius: 10px;
	border-width: 1px;
	border-color: silver;
	border-style: solid;
	overflow: hidden;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.block:not(:last-child) {
	margin-bottom: 10px;
}

.block_display
{
	margin-bottom: 10px;
}

.block-element {
	padding: 10px;
}

.block-element:not(:last-child) {
	border-bottom-width: 1px;
	border-bottom-color: silver;
	border-bottom-style: solid;
}

.block-cap {
	height: 10px;
	background-color: orangered;
}

h1 {
	font-size: 150%;
	margin: 0px;
	font-weight: 500;
}

h2 {
	font-size: 110%;
	margin: 0px;
	font-weight: 500;
}

h3 {
	font-size: 100%;
	margin: 0px;
	font-weight: 500;
}

ol {
	margin: 0px;
	counter-reset: cnt;
	list-style: none;
	padding-left: 20px;
}

ol li::before {
	counter-increment: cnt;
	content: counters(cnt, "-") ". ";
}

ol:not(li ol):has(ol) {
	padding: 0px;
}

ol:not(li ol) > li:nth-child(n + 2):has(ol) {
	margin-top: 10px;
}

ul {
	margin: 0px;
	padding-left: 10px;
}

ul li {
	list-style: none;
}

ul li::before {
	padding-left: 10px;
	content: "・";
}

li {
	text-indent: -1em;
	padding-left: 1em;
}

.block-element > *:nth-child(n+2) {
	margin-top: 5px;
}

.block-caption {
	margin: 0px;
	font-size: 90%;
	padding-left: 10px;
}

img.block-element {
	padding: 0px;
	width: 100%;
	vertical-align: bottom;
}

.block-error {
	color: red;
}

.block-critical {
	color: red;
}

.block-caution {
	background-color: orange;
	color: white;
	padding: 20px 30px 20px 10px;
	text-align: center;
	font-weight: 500;
}

.block-confirm {
	font-size: 100%;
	font-weight: 400;
}

.block-status {
	color: green;
	padding: 5px 0px;
	font-size: 110%;
	font-weight: 400;
}

select, input[type="text"], input[type="email"], input[type="tel"], input[type="password"] {
	width: 100%;
	height: 35px;
	border-width: 1px;
	border-color: gray;
	border-style: solid;
	border-radius: 5px;
	font-weight: 400;
	font-style: normal;
	background-color: white;
	color: black;
	font-size: 100%;
	padding: 5px;
	box-sizing: border-box;
}

input[type="tel"] {
	padding-top: 0px;
	padding-left: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	box-sizing: border-box;
}

select {
	-webkit-appearance: none;
	appearance: none;
}

select:invalid {
	color: gray;
}

select option {
	color: black;
}

select option:first-child {
	color: gray;
}

select::-ms-expand{
	display: none;
}

.select_container {
	position: relative;
}

.select_container::after {
	border-bottom: 2px solid gray;
	border-right: 2px solid gray;
	content: "";
	position: absolute;
	right: 9px;
	width: 8px;
	height: 8px;
    top: 50%;
    transform: translate(0px, -75%) rotate(45deg);
    -webkit-transform: translate(0px, -75%) rotate(45deg);
	-ms-transform: translate(0px, -75%) rotate(45deg);
}

.checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid #06b6d4;
  border-radius: 4px;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: #06b6d4;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-45deg);
}

.button-container {
	display: flex;
	align-items: center;
}

.button-container>.button {
	background-color: orangered;
	color: white;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	min-width: 100px;
	cursor: pointer;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	font-size: 100%;
}


.button-container>.button:last-child {
	margin-left: auto;
}

.button-container>.button.disabled {
	background-color: gray;
}

.button-container>.button-other {
	background-color: orange;
	margin-right: 10px;
}

button {
	border-width: 0px;
}

a.button {
	text-decoration: none;
}

a.button:hover {
	text-decoration: none;
}


.caution {
	background-color: orange;
	color: white;
	padding: 20px;
}

.line_confirm {
	padding: 10px;
	border-top-width: 1px;
	border-top-color: silver;
	border-top-style: solid;
	
}