@charset "UTF-8";

*{
	white-space: nowrap;
}

body {
	margin: 0;
    font-family: sans-serif;
}

.form-container {
	font-size: 2.0rem;
	width: 80vw;
	margin: 0 auto;
	padding-top: 5%;
}

.btn-small {
	height: auto;
	width: 150px;
	font-size: x-large;
	background-color: rgba(135, 206, 250, 1);
	border-radius: 5px;
	border-color: transparent;
	box-shadow: 0 0 5px 0.5px rgba(0,0,0,0.5);
	text-align: center;
}

.btn-medium {
	height: auto;
	width: 200px;
	font-size: x-large;
	padding: 8px;
	background-color: rgba(135, 206, 250, 1);
	border-radius: 5px;
	border-color: transparent;
	box-shadow: 0 0 5px 0.5px rgba(0,0,0,0.5);
	text-align: center;
}

.btn-size250 {
	height: auto;
	width: 250px;
	font-size: x-large;
	padding: 8px;
	background-color: rgba(135, 206, 250, 1);
	border-radius: 5px;
	border-color: transparent;
	box-shadow: 0 0 5px 0.5px rgba(0,0,0,0.5);
	text-align: center;
}

.btn-size300 {
	height: auto;
	width: 300px;
	font-size: x-large;
	padding: 8px;
	background-color: rgba(135, 206, 250, 1);
	border-radius: 5px;
	border-color: transparent;
	box-shadow: 0 0 5px 0.5px rgba(0,0,0,0.5);
	text-align: center;
}

.btn-size350 {
	height: auto;
	width: 350px;
	font-size: x-large;
	padding: 8px;
	background-color: rgba(135, 206, 250, 1);
	border-radius: 5px;
	border-color: transparent;
	box-shadow: 0 0 5px 0.5px rgba(0,0,0,0.5);
	text-align: center;
}

.btn-size400 {
	height: auto;
	width: 400px;
	font-size: x-large;
	padding: 8px;
	background-color: rgba(135, 206, 250, 1);
	border-radius: 5px;
	border-color: transparent;
	box-shadow: 0 0 5px 0.5px rgba(0,0,0,0.5);
	text-align: center;
}

.btn-large {
	height: auto;
	width: 70%;
	font-size: x-large;
	padding: 8px;
	background-color: rgba(135, 206, 250, 1);
	border-radius: 5px;
	border-color: transparent;
	box-shadow: 0 0 5px 0.5px rgba(0,0,0,0.5);
	text-align: center;
}

input[type="text"] {
	font-size: x-large;
	padding: 5px;
	height: 40px;
	border-radius: 5px;
}

.textbox-short {
	width: 25%;
}

.textbox-medium {
	width: 45%;
}

.textbox-long {
	width: 100%;
}

.main-color {
	background-color: rgba(135, 206, 250, 1);
}

.sub-color {
	background-color: whitesmoke;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.border-radius-5px {
	border-radius: 5px;
}

.text-center {
	text-align: center;
}

input[type='text']:disabled {
	background-color: rgba(0,0,0,0.3);
}

input[type='checkbox'] {
	appearance: none; /* デフォルトスタイルを削除 */
	-webkit-appearance: none; /* Safari and Chrome */
	-moz-appearance: none; /* Firefox */
	margin: 0;
	margin-right: 3px;
  	width: 25px; /* デフォルトはこのpxとする。変更したいときはそれぞれのcssで上書きする */
  	height: 25px; /* デフォルトはこのpxとする。変更したいときはそれぞれのcssで上書きする */
  	vertical-align: middle;
  	border-radius: 3px;
  	border-width: 1px;
  	border-style: solid;
  	border-color: rgba(0,0,0,0.5);
  	background-color: #fff;
  	position: relative;
  	top: -2px;
}

input[type='checkbox']:checked {
	background-color: #fff;
	/* チェックマークのsvg(色を変えたいときは「stroke」の「%23」より後を16進数カラーコードで入れる) */
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230000ff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>');
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
}