@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
@import url('https://use.typekit.net/rct1jiy.css');

:root {
  --base-color: #007fbf;
  --link-color: #00a9bf;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: din-condensed, "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
img {
  max-width: 100%;
  height: auto;
  border: 0px;
}
img.dx-load {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type="text"], input[type="password"], input[type="number"], input[type="email"] {
  padding: 5px 5px;
  width: 100%;
  height: 40px;
  line-height: 28px;
  font-size: 22px;
  border: 1px solid var(--base-color);
  border-radius: 4px;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="email"] {
  font-size: 16px;
}
input::placeholder {
 font-size: 13px;
}
button {
  display: block;
  margin: 0 auto;
  width: 150px;
  min-height: 40px;
  border: none;
  border-radius: 20px;
  background: var(--link-color);
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: 0.5s;
}
button:hover {
  background: var(--base-color);
}
button:disabled {
  background: #adadad;
}
a {
  color: var(--link-color);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: var(--base-color);
}
a.button {
  display: block;
  margin: 0 auto;
  width: 150px;
  min-height: 40px;
  line-height: 40px;
  text-align: center;
  border: none;
  border-radius: 20px;
  background: #b8b8b8;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
}
a.button:hover {
  background: #818181;
  color: #fff;
}
a.link {
  font-size: 13px;
}
a.link:hover {
  text-decoration: underline;
}
ul {
  list-style-type: none;
}
@media screen and (max-width: 1020px) {
  a.link {
    text-decoration: underline;
  }
}
@media screen and (max-width: 620px) {
  input[type="email"] {
    text-align: center;
  }
}
/*------------------------------------------------------------------------------
header
--------------------------------------------------------------------------------*/
div.wrap {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
header {
  height: 80px;
  background: var(--base-color);
}
section {
  min-height: calc(100vh - 80px);
  position: relative;
}
section div.wrap {
  padding: 50px 10px 20px;
}
section h1 {
  display: block;
  margin: 0 auto;
  width: 360px;
  max-width: calc(100% - 40px);
  height: 100px;
  background: url(../image/admin/rakuchin.svg) no-repeat center / 100%;
}
/*------------------------------------------------------------------------------
nav
--------------------------------------------------------------------------------*/
section nav * {
  display: flex;
  align-items: center;
  justify-content: center;
}
section nav ul li {
  margin: 50px 0;
  padding: 5px 0 5px 27px;
  width: 200px;
  height: 48px;
  border: 1px solid #aaa;
  border-radius: 30px;
  line-height: 18px;
  font-size: 14px;
  color: #aaa;
  position: relative;
}
section nav ul li.current {
  border: 1px solid var(--base-color);
  color: var(--base-color);
}
section nav ul li:nth-child(n+2) {
  margin-left: 40px;
}
section nav ul li i {
  margin-right: 7px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #aaa;
  border-radius: 20px;
  font-style: normal;
  color: #fff;
  position: absolute;
  top: 8px;
  left: 10px;
}
section nav ul li.current i {
  background: var(--base-color);
}
section nav ul li:nth-child(-n+4)::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../image/common/arrow.png) no-repeat center top / 20px;
  position: absolute;
  top: 12px;
  right: -30px;
}
section nav ul li.current:nth-child(-n+4)::after {
  background-position: center bottom;
}
@media screen and (max-width: 1020px) {
  section nav ul {
    flex-direction: column;
    margin: 20px 0;
  }
  section nav ul li {
    margin: 0;
  }
  section nav ul li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 30px;
  }
  section nav ul li:nth-child(-n+4)::after {
    top: initial;
    right: initial;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
/*------------------------------------------------------------------------------
form
--------------------------------------------------------------------------------*/
section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--base-color);
  border-radius: 6px;
  padding: 50px 20px;
  min-height: 400px;
  position: relative;
}
section form > div {
  display: flex;
  justify-content: space-between;
  margin: 70px auto 0;
  width: 500px;
  max-width: 100%;
}
section form p {
  margin: 30px 0 60px;
  font-size: min(4.2vw, 18px);
  line-height: 1.5em;
  text-align: center;
}
section form p span {
  display: block;
  margin-top: 20px;
  font-size: min(5.2vw, 22px);
  font-weight: 600;
  line-height: 1.5em;
}
section dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
}
section dl:nth-of-type(n+2) {
  margin-top: 5px;
}
section dl dt {
  min-width: 100px;
}
section dl dd {
  max-width: 100%;
  width: 100%
}
section dl dd span {
  display: inline-block;
  line-height: 30px;
  vertical-align: middle;
}
section dl dd span:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
}
div.passwd {
  position: relative;
}
div.passwd input + a {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../image/common/eye.png) no-repeat center top / 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
div.passwd input[type="text"] + a {
  background-position: center bottom;
}
@media screen and (max-width: 620px) {
  section form {
    min-height: 300px;
  }
  section form p {
    margin-top: 0;
  }
  section form div {
    flex-direction: column;
  }
  section form div a.button {
    margin-bottom: 20px;
  }
  section form div button:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  section dl {
    flex-direction: column;
    max-width: 100% !important;
  }
  section dl dt {
    margin-bottom: 10px;
  }
  section dl dd span {
    display: block;
  }
}
/*------------------------------------------------------------------------------
dialog
--------------------------------------------------------------------------------*/
div.dialog {
  display: flex;
  flex-direction: column;
  padding: 30px 2px 2px;
  width: 600px;
  max-width: calc(100% - 20px);
  max-height: calc(100vh - 20px);
  background: var(--base-color);
  border-radius: 6px;
  box-shadow: 1px 1px 7px 0px #c2c2c2;
  overflow: hidden;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.dialog > a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 30px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
div.dialog > a:hover {
  text-shadow: 0 0 3px #fff;
}
div.dialog form {
  justify-content: flex-start;
  margin: 0;
  padding: 30px;
  height: 100%;
  min-height: initial;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  overflow-y: auto;
}
div.dialog form p {
  margin: 0 0 20px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 300;
}
div.dialog button {
  margin-top: 30px;
  font-size: 14px;
}
div.dialog dl {
  margin: 10px 0;
}
div.dialog dl dt {
  min-width: 200px;
}
@media screen and (max-width: 620px) {
  div.dialog form p {
    font-weight: 400;
  }
  div.dialog dl {
    display: flex;
    flex-direction: column;
  }
  div.dialog dt {
    width: 100%;
  }
}
