@charset "utf-8";
/* ========================
base
======================== */
/* common
------------------------ */
body,
html {
  height: 100%;
}

input,
button,
select,
textarea {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid;
}

[role="button"] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

p {
  margin: .5em 0 .5em;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  clear: both;
  width: 100%;
}

input[type="text"],
input[type="password"] {
  border: 1px solid;
  height: 2.25em;
  padding: .25em .5em;
}

input[type="checkbox"],
input[type="radio"] {
  border: 1px solid;
  cursor: pointer;
  margin: 10px;
}

input[type="checkbox"] {
  border-radius: 3px;
}

input[type="radio"] {
  border-radius: 13px;
}

input[type="button"],
input[type="submit"],
button {
  display: inline-block;
  line-height: 1.1;
  padding: .5em 1em .425em;
  cursor: pointer;
  width: auto;
}

input[type="text"] + input[type="button"] {
  margin-left: .5em;
}

select {
  background-position: right .15em center;
  background-repeat: no-repeat;
  background-size: 16px auto;
  border: 1px solid;
  border-radius: 5px;
  padding: .25em 1.35em .25em .5em;
  line-height: 1.5;
}

textarea {
  border: 1px solid;
  padding: .25em .5em;
  vertical-align: top;
}

iframe {
  border: none;
  width: 100%;
  overflow: auto;
}

label {
  cursor: pointer;
  display: inline-block;
  padding: 10px 10px 10px 20px;
  vertical-align: top;
}

label input[type="checkbox"],
label input[type="radio"] {
  margin: 0 7px 0 -20px;
}

label [disabled],
label.disabled {
  cursor: default;
}

body {
	background-color: #f2f2f2;
	background-image: url(./file/box/logo_bg.png);
	background-size: 50px;
	font-family: "Noto Sans JP", sans-serif;
	word-break : break-all;
}

#wrapper {
	width: 80vw;
	max-width: 600px;
	text-align: center;
	margin: 60px auto;
}

#header .logo img {
	width: 60%;
	margin: 0 0 40px;
}

#contents {
	background: #fff;
	border-radius: 60px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	padding: 40px 10px;
}
#contents ul {
	margin: 0;
	padding: 10px;
}
#contents ul li {
	margin: 0 auto 10px;
	padding: 0;
	position: relative;
	width: 80%;
}
#contents ul li.login_mail::before {
	content: "";
	background-image: url(./file/box/icon_id.png);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 30px;
	top: calc(50% - 10px);
	z-index: 1;
}
#contents ul li.login_pass::before {
	content: "";
	background-image: url(./file/box/icon_pass.png);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 30px;
	top: calc(50% - 10px);
	z-index: 1;
}
#contents ul li input {
	border: 1px solid #696868;
	border-radius: 30px;
	width: calc(100% - 60px);
	padding-left: 60px;
}
#contents ul li input::placeholder {
  color: #e6e6e6;
	font-weight: bold;
}

.button-login input {
	background: #d6a3dd;
	background-image: url(./file/box/icon_login.png);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: calc(50% + 3em) center;
	color: #fff;
	border: none;
	border-radius: 40px;
	width: 80%;
	padding: 15px 0;
	font-size: 18px;
}
.button-pass input {
	background: #d6a3dd;
	color: #fff;
	border: none;
	border-radius: 40px;
	width: 80%;
	padding: 15px 0;
	font-size: 18px;
}
.button-back a {
	display: inline-block;
	background: #e6e6e6;
	color: #696868;
	border: none;
	border-radius: 40px;
	width: 80%;
	padding: 15px 0;
	font-size: 18px;
}
.c_user_reminder {
	padding: 15px 0 0;
 text-align: center;
}
.c_user_reminder a {
	color: #656868;
}

.error-text {
	color: #dd0000;
}