html {
	font-size: 18px;
}

body {
	width: 90%;
	margin: auto;
	font-family: "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", sans-serif;
	transition: background-color 0.3s ease, transform 0.2s ease;
	scroll-behavior: smooth;
}

img {
	display: block;
	height: auto;
	margin: auto;
	object-fit: contain;
}

#inner {
	width: 70%;
	max-width: 1180px;
	min-width: 300px;
	margin: 0.5rem auto 0;
}

#page_title {
	text-align: center;
	font-size: 2.22rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

/* 汎用処理 */

.red {
	color: red;
}

.bold {
	font-weight: bold;
}

/* 入力フォーム関連 */
input {
	border: 1px solid black;
	border-radius: 0.5rem;
	padding: 0.4rem 0.75rem;
}

.form_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.form_item {
	width: 100%;
	margin: auto;
	margin-bottom: 1rem;
	font-size: 1.33rem;
}

.form_item.half {
	width: 50%;
}

.form_item.right {
	padding-left: 2.5%;
}

.form_item input {
	width: 100%;
}

.submit_button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40%;
	margin: 1rem auto 0.5rem;
	padding: 0.5rem;
	text-align: center;
	font-weight: bold;
	color: white;
	background-color: rgba(42, 137, 219, 1);
	border-radius: 0.5rem;
	font-size: 1.77rem;
	white-space: nowrap;
	cursor: pointer;
}

.submit_button a,
.submit_button input[type="submit"] {
	all: unset;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.submit_button:hover {
	background-color: rgba(42, 137, 219, 0.3);
}

.form_value {
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 0.5rem;
	padding: 0.25rem 1rem;
	min-height: 2rem;
	height: 2.5rem;
	font-size: 1.33rem;
	display: flex;
	align-items: center;
}

.form_item.half input {
	width: 95%;
}

.form_item.right input {
	width: 100%;
}

.form_title {
	margin-bottom: 0.277rem;
	font-size: 1.33rem;
}

input::placeholder {
	font-size: 1.33rem;
}

.form_error {
	color: red;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.form_error.none {
	display: none;
}

select {
	border: 1px solid black;
	border-radius: 0.5rem;
	padding: 0.1rem 0.75rem;
	font-size: 1.33rem;
}

input[type='radio'] {
	width: auto;
	transform: scale(1.5);
	margin-right: 0.5rem;
}

input[type="checkbox"] {
	transform: scale(1.5);
	margin-right: 0.5rem;
}

select[name="place_id"] {
	width: 60%;
}



/* cloudflare認証 */
.cloudflare {
	width: 100%;
	text-align: center;
	margin: 0.5rem auto;
}

.cloudflare .content {
	min-width: fit-content;
}

.cloudflare .detail {
	font-size: 0.625rem;
}

@media screen and (max-width: 1450px) {
	#inner {
		width: 80%;
	}
}


@media screen and (max-width: 768px) {
	html {
		font-size: 10px;
	}

	body {
		width: 100%;
	}

	#inner {
		width: 90%;
	}

	select[name="place_id"] {
		width: 80%;
	}

}