@charset "UTF-8";

:root {
	--bg1: #FE9900;
	--bg1half: #FECC7F;
	--bg1quarter:#FDE6CA;
	--bg2: #FE5003;
	--bg2half: #FEA781;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

html {
	overflow-y: scroll;
}

body {
	-webkit-text-size-adjust: none;
	word-break: break-all;
	font-family: 'Sawarabi Gothic', '游ゴシック Medium', 'YuGothic', 'YuGothicM', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'sans-serif';
	font-weight: 100;
	background: gainsboro;
}

body,
td,
th {
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
	color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

fieldset,
img {
	border: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th {
	text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

.clear {
	clear: both;
}

a:hover {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

/* 専用 */
@media screen and (min-width: 640px) {

	/*PC*/
	header {
		position: fixed;
		background: var(--bg1);
		width: calc(100% - 20px);
		padding: 10px 10px 0 10px;
		z-index: 1000;
	}

	header ul {
		display: flex;
		justify-content: center;
	}

	header li {
		padding: 0 10px 10px 0;
	}

	header nav ul li a {
		color: #000;
		font-size: 18px;
		text-decoration: none;
		background: #FFF;
		display: inline-block;
		padding: 6px 12px;
		border-radius: 4px;
	}

	header nav ul li a:hover {
		background: #CCC;
	}

	header nav ul li .now {
		background: #FF0;
	}

	header nav ul li .now:hover {
		background: #FF0;
	}

	main {
		background: #ffffff;
		max-width: 1500px;
		margin: auto;
		padding: 60px;
	}

}

@media screen and (max-width: 640px) {

	/*スマホ*/
	header {
		position: fixed;
		background: var(--bg1);
		width: calc(100% - 12px);
		display: inline-block;
		padding: 6px 6px 0 6px;
		z-index: 1000;
	}

	header li {
		padding: 0 6px 6px 0;
		display: inline-block;
	}

	header nav ul li a {
		color: #000;
		font-size: 14px;
		text-decoration: none;
		background: #FFF;
		display: inline-block;
		padding: 4px 8px;
		border-radius: 2px;
	}

	header nav ul li a:hover {
		background: #CCC;
	}

	header nav ul li .now {
		background: #FF0;
	}

	header nav ul li .now:hover {
		background: #FF0;
	}

	main {
		max-width: 1000px;
		width: calc(100% - 20px);
		padding: 40px 10px;
		margin: auto;
		background: white;
	}
}


footer {
	display: block;
	text-align: center;
	font-size: 12px;
}

.required,
.red {
	font-size: 14px;
	color: red;
}

.bg_red {
	background: red;
}

.table_scroll {
	width: 100%;
	overflow: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*専用*/
body {
	background: gainsboro;
}



h1 {
	text-align: left;
	font-size: 40px;
	margin: 20px 0;
}

h2 {
	text-align: center;
	font-size: 24px;
	margin: 20px 0;
	font-weight: bold;
}

button {
	cursor: pointer;
	user-select: none;
}

.modalBg {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	display: none;
	z-index: 1000;
}

.loader-wrap {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.loader,
.loader:after {
	border-radius: 50%;
	width: 5em;
	height: 5em;

}

.loader {
	margin: 60px auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #ffffff;
	transform: translateZ(0);
	animation: load8 1.1s infinite linear;
}

@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.nowBtn {
	background: red;
}

.modalBg>#msg {
	font-size: clamp(16px, 2vw, 18px);
	line-height: clamp(20px, 2.5vw, 28px);
	text-align: center;
	background: white;
	padding: clamp(10px, 2vw, 20px);
	border-radius: clamp(4px, 2vw, 10px);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.notice {
	font-size: 16px;
	line-height: 24px;
	color: white;
	background: var(--bg2);
	text-align: center;
	position: fixed;
	width: 100vw;
	bottom: -30px;
	left: 0;
	z-index: 9000;
	opacity: 0;
	transition: 0.3s;
}

#closeBtnmodalBg {
	color: white;
	font-size: 30px;
	position: fixed;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

#modalWin {
	text-align: center;
	background: white;
	z-index: 1001;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: clamp(10px, 2vw, 30px);
	width: calc(100% - 60px);
	max-width: 600px;
	display: inline-block;
	overflow-y: auto;
	height: auto;
	max-height: 80vh;
}

#modalWin #modalWinConf li {
	display: inline-block;
}

#modalWin #modalWinConf button {
	color: black;
	font-size: 24px;
	font-weight: bold;
	background: var(--bg1);
	margin: 20px;
	padding: 4px 10px;
	border-radius: 4px;
}

#btnClose {
	color: white;
	font-size: 26px;
	font-weight: bold;
	z-index: 12;
	position: absolute;
	top: 10px;
	right: clamp(10px, 2vw, 20px);
	cursor: pointer;
}

main nav ul {
	display: flex;
	padding: 10px 0;
	justify-content: flex-end;
}

main nav ul li input[type=submit],
main nav ul li button,
main nav ul li .btn {
	color: var(--bg1);
	font-size: 14px;
	line-height: 14px;
	background: white;
	padding: 4px 10px;
	border-radius: 4px;
	cursor: pointer;
	border: solid thin var(--bg1);
	margin: 0 10px 0 0;
	user-select: none;
	text-decoration: none;
}

main nav ul li input[type=submit]:hover,
main nav ul li button:hover,
main nav ul li .btn:hover {
	background: royalblue;
	color: white;
}

.area_btn {
	text-align: center;
	display: block;
	width: 100%;
}

.area_btn a{
	text-decoration: none;
}

.area_btn .btn {
	line-height: 18px;
	text-decoration: none;
	display: inline-block;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	text-align: center;
	cursor: pointer;
	padding: 8px 20px;
	background: var(--bg1);
	color: white;
	margin: 20px 4px;
}
.area_form dt {
	font-weight: bold;
	font-size: 20px;
	margin: 20px 0px 6px 0px;
}

.area_form dd {
	width: 100%;
	font-size: 20px;
	margin: 0;
	padding: 0;
}

.area_form p{
	font-size: 18px;
	line-height: 24px;
	padding: 8px;
}
input:focus {
	outline: solid 6px var(--bg1);
}
.area_btn .btn:hover {
	opacity: 0.5;
}
.input_s {
	font-size: 20px;
	width: calc(100% - 16px);
	max-width: 500px;
	padding: 8px;
	border: solid 1px silver;
	border-radius: 10px;
}
.required {
	color: red;
}
