@charset "utf-8";

/* topWrap */
.topWrap{
	position: relative;
}
.topWrap:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-image: url(../images250808/top/bg01.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.4;
}
.topWrap_inner{
	position: relative;
}
@media (max-width:1024px){
	.topWrap:before{
		background-image: url(../images250808/top/bg01_u1024.svg);
	}
}

/* pageTitle */
.pageTitle{
	padding: 80px 0 50px 0;
	text-align: center;
}
.pageTitle h2{
	font-family: "Jost", sans-serif;
	font-size: 2em;
	font-weight: 300;
	letter-spacing: 0.1em;
	color: #0d102c;
	margin-bottom: 50px;
}
.pageTitle p{
	font-size: 1em;
	line-height: 2;
}

/* loginBtn */
.loginBtn{
	max-width: 1100px;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 80px;
}
.loginBtn>form{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;  
}
.loginBtn>form>p{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(51, 51, 51, 0.25);
}
.loginBtn>form>input[type="password"]{
	width: 80%;
	padding: 1em;
	box-sizing: border-box;
	border: none;
	font-size: 1em;
	border: 1px solid #cfc18e;                             
}
.loginBtn>form>input[type="submit"]{
	width: 20%;
	padding: 1em;
	box-sizing: border-box;
	font-family: "Jost", sans-serif;
	font-size: 1em;
	font-weight: 300;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #cfc18e;
	border: 1px solid #cfc18e;
}
@media (max-width:768px){
	.loginBtn{
		width: 90%;
	}
	.loginBtn>form{
		flex-wrap: wrap; 
	}
	.loginBtn>form>input[type="password"],
	.loginBtn>form>input[type="submit"]{
		width: 100%;
	}
}

/* entryContents */
.entryContents{
	margin-bottom: 80px;
}
.entryContents_inner{
	max-width: 1100px;
	width: 80%;
	margin: 0 auto;
	background-color: #cfc18e;
	padding: 50px 0;
	text-align: center;
}
.entryContents_inner>.ttlBox{
	margin-bottom: 30px;
}
.entryContents_inner>.ttlBox>h3{
	display: flex;
	align-items: center;
	font-family: "Jost", sans-serif;
	font-size: 2em;
	letter-spacing: 0.1em;
	line-height: 1;
	font-weight: 300;
	color: #171c35;
	margin-bottom: 30px;
}
.entryContents_inner>.ttlBox>h3>span{
	flex: 1;
}
.entryContents_inner>.ttlBox>h3>span:first-child{
	margin-right: 1em;
	box-sizing: border-box;
}
.entryContents_inner>.ttlBox>h3>span:last-child{
	margin-left: 1em;
	box-sizing: border-box;
}
.entryContents_inner>.ttlBox>h3>span:first-child,
.entryContents_inner>.ttlBox>h3>span:last-child{
	border-bottom: 6px double #171c35;
}
.entryContents_inner>.ttlBox>p{
	font-size: 1em;
	line-height: 2;
	color: #171c35;
}
.entryBtn{
	max-width: 350px;
	width: 65%;
	margin: 0 auto;
}
.entryBtn>a{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #141d33;
	transition:0.5s all;
}
.entryBtn>a:hover,
.entryBtn>a:active{
	opacity:0.5;
	transition:0.5s all;
}
@media (max-width:768px){
	.entryContents_inner{
		width: 90%;
	}
}