/*
Theme Name: BlankSlate
*/
/* ベーススタイル */
@import url("/css/base.css");
@import url("/css/style.css");
html{
	margin-top:0!important
}
/* body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
}

header {
  background:#333;
  color: white;
  padding: 1em;
  max-width: 1000px;
  margin: auto;
  
}
header h1 a {
display:block;
width:100%;
height: 30vw;
max-height: 130px;
background:url(/img/logo_WHT.svg) no-repeat 50% 50%/contain;
color: white;
}
header span {
width:1px;color:#000;font-size:.1%;line-height:.1;position:absolute;left:-3000px;z-index:9999
color: white;
} */


nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1em;
}

nav a {
  color: white;
  text-decoration: none;
}
#content *{
box-sizing:border-box
}
main {
  padding: 1em;
  max-width: 1000px;
    margin: auto;
}

.cards {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.card {
  background: #f4f4f4;
  padding: 1em;
  flex: 1 1 calc(33.333% - 1em);
  box-sizing: border-box;
}
/* footer{
  max-width: 1000px;
    margin: auto;
} */
#content #wpmem_login, #wpmem_msg,#content #wpmem_reg,#content .wpmem_msg{
width:100%;
max-width:40em;
margin-left:auto;
margin-right:auto;
border:1px solid #999;
padding:0 min(4vw,24px)
}
#content #wpmem_login{
margin-bottom:3em
}

#content input[type=text],#content input[type=password],#content input[type=email]{
  width: 100%;
/*   padding: 0.3em; */
padding:8px 10px 8px;
  transition: 0.3s;
  border: 1px solid #333!important;
  border-radius: 4px!important;
  outline: none!important;
}
#content select{
width:100%;
padding:8px 10px 8px;
font-size:1em
}
#content input[type=text]:focus,#content input[type=password]:focus,#content input[type=email]:focus{
border:1px solid rgba(218,60,65,1)!important
}
#content #wpmem_login .button_div,#content #wpmem_reg .button_div{
	text-align:center
}
#content input[type=submit]{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
width:70%;
  max-width:15em;
  min-height:3.5em;
  padding:.1em 1em;
  margin:0 auto;
  border-radius:3.5em;
  background:#2C75D5;
  box-shadow:0 5px #10588E;
  text-align:center;
  text-decoration:none;
  color:#FFF;
  font-size:112.5%;
  line-height:1.3;
  transition:none;
  font-weight:700;
border:none
}
#content input[type=submit]:hover,#content input[type=submit]:focus{
  top:5px;
  background:#10588E;
  box-shadow:0 0 #10588E;
}
#content .link-text{margin-top:16px}
#content #wpmem_login legend,#content #wpmem_reg legend{
    color: #2C75D5;
}
#content h1{
    color: #2c75d5;
    font-size:min(5.6vw,1.5em) ;
    margin:16px 0;
    line-height: 1.5;
}
.formCont{
	width:100%
}
.formCont th{
background-color:#E1ECF9
}
.formCont p{
	margin-bottom:0
}
.formCont dl{
	margin-bottom:0
}
.formCont dl dt{
	margin-bottom:.5em
}
.formCont dl dd:first-of-type{
	margin-bottom:1em
}
.requiredItem{
display: inline-block;
    padding: 4px 6px 2px;
    margin-left: .5em;
    border-radius: 4px;
    background: #D8000C;
    color: #FFF;
    line-height: 1;
    font-size: .8em;
    font-weight: bold;
    text-decoration: none;
}
/*_________________________ SPのみ */
@media screen and (max-width:767px){
	.formCont{
		border:none
	}
	.formCont th,.formCont td{
		display:block;
		width:100%;
		border:none
	}
	.formCont td{
		margin-bottom:1em
	}
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 1em);
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
  }

  .card {
    flex: 1 1 100%;
  }
}

