/* hero */
.hero{
position:relative;
height:60vh;
}

.center-logo{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
max-width:60vw;
height:auto;
}

/* セクション */
.text-section{
background-color:rgba(255,255,255,0.95);
padding:40px;
margin:40px auto;
max-width:900px;
border-radius:16px;
box-shadow:0 0 20px rgba(0,0,0,0.08);
}

/* 本文 */
.contact-inner{
text-align:left;
}

/* フォームスペース */
.form-space{
margin-top:30px;
min-height:900px;
}

/* 背景 */
body.fade-background{
background-image:url("../img/background/JP_counter2.JPG");
background-size:cover;
background-position:center top;
background-repeat:no-repeat;
background-attachment:fixed;
}

body.fade-background::before{
content:"";
position:fixed;
inset:0;
background:rgba(0,0,0,0.35);
z-index:-1;
}

/* スマホ */
@media (max-width:600px){
.center-logo{
max-width:80vw;
}
}