h2{
	font-size: 1.6rem;
	font-weight: normal;
}
.common_imggroup{
	margin-bottom: 5rem;
}
section{
	margin: 0 auto;
	width: 80rem;
}
section.pwd{
	margin-top: 8rem;
}
.pwd__title{
	margin: 0 auto;
}
.post_password{
	display: flex;
	flex-direction: column;
}
.pwd__detail{
	margin: 0 auto;
}
div.pass_field{
	display: flex;
	align-items: center;
	margin: 1rem auto;
	border-radius: 1.5rem;
	padding-left: 3rem;
	height: 3rem;
	width: 35rem;
}
.post_password{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5rem auto;
}
input[name="post_password"]{
	border-radius: 1.5rem;
	border: .1rem solid var(--gray);
	padding: 0 1rem;
	height: 3rem;
	width: 30rem;
	background-color: rgba(255, 255, 255, 0);
	font-size: 2rem;
	outline: none;
}
input[name="submit"]{
	display: flex;
	justify-content: center;
	margin-top: 4rem;
	border: none;
	width: 14rem;
	height: 5rem;
	line-height: 5rem;
	color: var(--white);
	background-color: var(--accent-color1);
	font-weight: bold;
	font-family: var(--title-font);
	font-size: 2rem;	
	transition: all .3s ease 0s;
	cursor: pointer;
}
input[name="submit"]:hover{
	border: .1rem solid var(--main-color1);
	color: var(--main-color1);
	background-color: var(--white);
}
.field-icon{
	display: block;
	width: 3rem;
	height: 2rem;
	/*クリックできるようにするのだからそもそもカーソルをつけなさい*/
	cursor: pointer;
}
svg.fa-eye,
svg.fa-eye-slash{
	display: block;
	line-height: 2rem;
	color: var(--gray);
	font-size: 2rem;
}
.field-icon:hover svg,
svg.fa-eye{
	color: var(--black);
}
.btn{
	position: relative;
	margin-bottom: 2rem;
	height: 10rem;
	width: 100vw;
	background-size: 100%;
	background-color: rgba(0,0,0,.5);
	object-fit: fill;
}
.btn::before{
	content: "";
	position: absolute;
	z-index: -1;
	display: block;
	height: 10rem ;
	width: 100vw;
	background-image: url(../img/home_slide_001.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	object-fit: fill;
}
.btn a{
	width: 30rem;
	height: 5rem;
	line-height: 3rem;
	text-align: center;
	background-color: var(--accent-color1);
}
.btn a:hover{
	border: .1rem solid var(--accent-color1);
	color: var(--accent-color1);
}
.btn.gallery a{
	background-color: var(--main-color1);
}
.btn.gallery a:hover{
	border: .1rem solid var(--main-color1);
	color: var(--main-color1);	
}

@media screen and ( max-width : 750px ) {
	section.pwd{
		margin: 0 auto;
		width: 37.5rem;
	}
}
@media screen and ( max-width : 375px ) {
	.wp-block-file{
		font-size: 1.3rem !important;
	}
	section{
		margin: 0;
		width: 100vw;
	}
}
