body {
  background: #f1ede4;
  margin: 0;
  padding: 0;
  font-weight: light;
  font-weight: 100;
  font-family: "Meiryo", "Yu Gothic", sans-serif;
}

a {
  color: #4e2613;
}

form > fieldset > label {
  color: #f1ede4;
}

.loginWrapper {
  display: block;
  position: relative;
  width: 450px;
  text-align: center;
  margin: auto;
  right: 0;
  left: 0;
  margin-top: 60px;
  margin-bottom: 60px;
  z-index: 1000;
  transition: box-shadow 1s;
}

.logginFormFooter {
  text-align: center;
  color: #777;
  width: 100%;
  font-size: 12px;
  position: fixed;
  bottom: 10px;
}

.logginFormFooter a {
  color: #777;
  font-weight: 600;
}
.logginFormFooter a:hover {
  color: #aaa;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

nav {
  z-index: 9;
  color: #f1ede4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.tabs {
  display: table;
  table-layout: fixed;
  width: 100%;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.tabs > li {
  transition-duration: 0.25s;
  display: table-cell;
  list-style: none;
  text-align: center;
  padding: 20px 20px 25px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #969734;
  background-color: none;
}
.tabs > li:before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  color: #f1ede4;
  top: 0;
  left: 0;
  background-color: #ddd;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-duration: 0.25s;
  border-radius: 8px 8px 0 0;
}

.tabs > li:hover:before {
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
}
.tabs > li.active {
  color: #f1ede4;
}
.tabs > li.active:before {
  transition-duration: 0.5s;
  background-color: #4e2613;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tab__content {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  background-color: #4e2613;
  -webkit-box-shadow: 0px 12px 34px -8px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 12px 34px -8px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 12px 34px -8px rgba(0, 0, 0, 0.28);
}
.tab__content > li {
  width: 100%;
  position: absolute;
  border-radius: 5px;
  color: #f1ede4;
  top: 0;
  left: 0;
  background-color: #4e2613;
  display: none;
  list-style: none;
}
.tab__content > li .content__wrapper {
  text-align: center;
  border-radius: 5px;
  padding-top: 24px;
  background-color: #4e2613;
}

.tab__content > li.active {
  display: block;
  position: relative; /* 他のabsolute要素の基準点を設定 */
}

form input {
  border: none;
  padding: 12px;
  background: #eee;
  color: #4e2613;
  font-size: 16px;
  margin: 12px 0px;
  font-weight: 100;
  outline: none;
}

.form01 {
  margin: 5%;
}

form input:first-child {
  margin-top: 8px;
}
form input:last-child {
  margin-top: 16px;
  margin-bottom: 0px;
}

form input:focus {
  background-color: #f1ede4;
}
form input:hover {
  background-color: #f1ede4;
}
form input:placeholder {
  color: #4e2613;
}

form [type="submit"]:focus,
form [type="submit"]:hover {
  background: #d36922;
}

form [type="submit"] {
  background: #969734;
  color: #f1ede4;
  padding: 24px;
  width: 100%;
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: #ddd;
}
:-moz-placeholder {
  color: #ddd;
}
::-moz-placeholder {
  color: #ddd;
}
:-ms-input-placeholder {
  color: #ddd;
}

/* SignUp.php専用のスタイル */

.signup-page .tabs {
  display: none; /* タブを非表示にする */
}

.signup-page .tab__content {
  background-color: #4e2613; /* 背景色を統一 */
}

.signup-page .tab__content > li {
  position: relative; /* absoluteを上書きして正常に表示 */
  display: block !important; /* 絶対に表示させる */
}

@media (max-width: 768px) {
  .content__wrapper {
    width: 100%;
  }
}
