/* Fonts */
html, body {
  font-family: 'Kosugi Maru', 'M PLUS Rounded 1c', sans-serif;
}

/* Simple Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

::placeholder {
  color: #ddd;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #ddd;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #ddd;
}

/* body */
body.login {
  background: #e9e9e9;
  color: #5e5e5e;
  /* font: 400 87.5%/1.5em 'Open Sans', sans-serif; */

  background-image: url(/images/common/bg.jpg);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}

input[type="button"],input[type="submit"] {
	-webkit-appearance: none;
}

/* Form Layout */
.form-wrapper {
  background: #fafafa;
  margin: 3em auto;
  padding: 0 1em;
  max-width: 370px;

  margin-top: 2%;
  background: #fff;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,.8);
  box-shadow: 0 0 15px rgba(0,0,0,.8);
  max-width: 350px;
  padding: 26px 26px 6px 26px;
  width: 100%;
}

h1 {
  text-align: center;
  padding: 1em 0;
}

form{
  padding: 0 1.5em 2em;
}

.form-item {
  margin-bottom: 0.75em;
  width: 100%;
}

/*
.form-item input {
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #e9e9e9;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
}
*/
input#user_login,
input#user_pass{
  box-shadow: 0 0 0px rgba( 0,0,0,0.8 );
  height: 48px;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 18px;
  font: normal 15px "Roboto", sans-serif;
  border-color: #bdbdbd;
  padding-left: 27px;
  font-weight: normal;
  width: 100%;
  padding: 5px;
  margin: 2px 6px 16px 0;
  border: 1px solid #ddd;
  color: #32373c;
  outline: 0;
  transition: 50ms border-color ease-in-out;
}

.form-item input:focus {
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}

.button-panel {
  margin: 2em 0 0;
  width: 100%;
}

.sns-button-panel {
  margin: 1em 0 0;
  width: 100%;
}

.fb{
    background: #3b5998!important;
}

.line{
    background: #09B701!important;
}

.button-panel .button,.sns-button-panel .button {
  background: #f16272;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
}

.button:hover {
  background: #ee3e52;
}

.form-footer {
  font-size: 1em;
  padding: 2em 0;
  text-align: center;
}

.form-footer a {
  color: #8c8c8c;
  text-decoration: none;
  transition: border-color 0.3s;
}

.form-footer a:hover {
  border-bottom: 1px dotted #8c8c8c;
}

footer{
	text-align:center;
}
/* URLコピーボタン */
.url_copy_area {
  margin-top: 2em;
}
.url_copy_area .url_copy_btn {
  width: 100%;
  line-height: 40px;
  position: relative;
  /* background-color: #a0a0a0; */
  display: block;
  /* color: #fff; */
  color: #333;
  text-decoration: underline;
  text-align: center;
}
.url_copy_area .url_copy_btn .copied {
  display: none;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translateX( -50% ) translateY( -50% );
  /* background-color: #a0a0a0; */
  background-color: #fff;
  color: #333;
  width: 100%;
  line-height: 40px;
}

