@charset "UTF-8";
/* 
----------------------------------------*/
.contents {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("../img/login/bg.jpg") center no-repeat;
	background-size: cover;
	min-height: 100vh;
	position: relative;
}
.contents::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(4px);
}
.contents > section {
	width: 100%;
	z-index: 10;
}

/*.inner{
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.inner h2 {
	font-size: 3.1rem;
	letter-spacing: 0.2em;
	color: #8E7C53;
	margin-bottom: 20px;
}
.inner h2 + p {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	color: #ffffff;
	margin-bottom: 30px;
	border: 1px solid;
	display: inline-block;
	padding: 1em 3em;
	background-color: rgba(255,255,255,0.1);
}*/
.inner{
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.inner h2 {
	font-size: 3.1rem;
	letter-spacing: 0.2em;
	color: #1C0C00;
	margin-bottom: 20px;
}
.inner h2 + div {
	display: flex;
	justify-content: center;
}
.inner h2 + div > div {
	border: 4px solid rgba(255,255,255,1);
	/*background: url("../img/limited/ttl_bg.jpg") center no-repeat;*/
	background: url("../img/visitor/ttl_bg.jpg") center no-repeat;
	background-size: cover;
	padding: 40px 30px 50px;
	position: relative;
}
.inner h2 + div > div + div {
	margin-left: 40px;
	background: url("../img/visitor/ttl_bg.jpg") center no-repeat;
	background-size: cover;
}
.inner h2 + div > div::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	/*background-color: rgba(0,0,0,.5);*/
	z-index: 0;
}
.inner div p {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #000000;
	margin-bottom: 30px;
	padding-bottom: 1em;
	/*display: inline-block;*/
	/*border: 1px solid;*/
	/*background-color: rgba(255,255,255,0.1);*/
	border-bottom: 1px solid rgba(0,0,0,1);
	position: relative;
	z-index: 1;
}


@media only screen and (max-width: 768px) {
	.inner{
		width: 84%;
	}
	.inner h2 + div {
		display: block;
	}
	.inner h2 + div > div {
		padding: 20px 15px;
	}
	.inner h2 + div > div + div {
		margin: 15px 0 0;
	}
	.inner div p {
		font-size: 1.6rem;
		padding-bottom: 1em;
	}
}


/* form リセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
	box-sizing: border-box;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

form {
	display: flex;
	justify-content: center;
	line-height: 60px;
}
input[type="password"] {
	background-color: rgba(255,255,255,1);
	padding: 0 24px;
	width: 320px;
	height: 60px;
	display: block;
	color: #000;
	line-height: 60px;
}
input[type="password"]::placeholder {
	color: #999999;
	font-size: 1.3rem;
	font-family: 'Shippori Mincho B1', serif;
	letter-spacing: 0.1em;
	line-height: 60px;
}
input[type="button"] {
	font-size: 1.4rem;
	letter-spacing: .2em;
	background-color: #8CB8A9;
	color: #fff;
	width: 134px;
	height: 60px;
	text-align: center;
	display: block;
	transition: .4s;
	line-height: 60px;
}
input[type="button"]:hover {
	background-color: #fff;
	color: #8CB8A9;
}
.err_txt {
	position: absolute;
	margin-top: 20px;
	font-size: 1.4rem;
	letter-spacing: .1em;
	color: #c00;
	left: 0;
	right: 0;
	z-index: 1;
}
@media only screen and (max-width: 768px) {
	input[type="password"] {
		max-width: 320px;
		width: 68%;
		height: 50px;
		line-height: 50px;
	}
	input[type="password"]::placeholder {
		line-height: 50px;
	}
	input[type="button"] {
		max-width: 134px;
		width: 32%;
		height: 50px;
		line-height: 50px;
	}
}



