@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #4b4b4b;
  text-align: center;
}

.wrap {
  position: relative;
  width: 1000px;
  min-height: 100vh;
  margin: 0 auto;
}

/* 中央エリア */
.enter-area {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
}

.logo {
  margin: 0 0 22px;
}

.lead {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: bold;
  color: #FF5DA3;
  letter-spacing: .08em;
}
.txt {
  font-size: 12px;
  line-height: 1.8;
  color: #252525;
}

/* ENTERボタン */
.c-button {
	display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 10px;
  width: 200px;
  height: 40px;
  font-weight: bold;
  border: 4px double #ffffff;
  transition: 0.3s;
  background-color: #ff5da3;
}
.c-button:hover {
  opacity: .5;
}

/* 下部注意書き */
.footer {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);

  width: 860px;
  padding: 18px 22px;

  background: rgba(255,255,255,.72);
  border-radius: 14px;

  font-size: 12px;
  line-height: 1.5;
  color:#252525;
}

.footer p {
  margin: 0 0 5px;
}

.footer .copy {
  margin-top: 10px;
  margin-bottom: 0;
  color:#252525;
}