/* CSS Document */
/*
$red:rgb(229,0,68);


$orange:rgb(255,69,0);
$l_green:rgb(215,233,148);
$catch_color:rgb(122,106,86);
$text_color:rgb(87,77,79);
$table_color:rgb(176,224,230);
$closing_color:rgb(246,197,189);
*/
@import url(form_simple.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

html {
  font-size: 10px;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  color: #333333;
  font-family: "Roboto","Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  box-sizing: border-box;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  -moz-appearance: textfield !important;
}

header {
  background: #468EFF;
  margin: 0;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1 {
  margin: 0;
  padding: 5px 10px;
  font-size: 1.4rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
}
header h1 a {
  color: #fff;
  font-size: 2rem;
  margin: 5px;
}
header h1 span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  margin: 5px;
}
header .logout {
  font-size: 1rem;
}

.box {
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 0 0 10px;
}

#login {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  padding: 10px;
  font-size: 1.6rem;
  width: 480px;
  max-width: 100%;
  margin: auto;
  display: inline-block;
}
#login h1 {
  font-size: 2rem;
  padding: .5em;
}
#login p {
  clear: both;
  padding: 0 10px;
  margin: 0 auto;
  display: block;
  text-align: left;
}
#login form {
  padding: 40px 10px;
}

.formbox {
  width: 100%;
  padding-bottom: 60px;
}
.formbox .block {
  display: flex;
  flex-basis: 100%;
}
.formbox .block dl {
  width: 100%;
  padding: 10px 5px;
}
.formbox .block dl dt {
  font-size: 1.4rem;
}
.formbox .block dl dd {
  position: relative;
}
.formbox .menu {
  margin: 5px;
  display: flex;
  justify-content: space-around;
}

.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.group {
  position: relative;
  margin-bottom: 45px;
}

/* Underline */
.bar {
  position: relative;
  display: block;
  width: 100%;
}
.bar::before, .bar::after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #4a89dc;
  transition: all 0.2s ease;
}
.bar::before {
  left: 50%;
}
.bar::after {
  right: 50%;
}

/* active */
.formbox input:focus ~ .bar:before, .formbox input:focus ~ .bar:after {
  width: 50%;
}

/* Highlight */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active */
.formbox label > input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

/* Animations */
@keyframes inputHighlighter {
  from {
    background: #4a89dc;
  }
  to {
    width: 0;
    background: transparent;
  }
}
span {
  margin-top: auto;
}
span.plus {
  color: #3B39D9;
}
span.minus {
  color: #FF2E2E;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
footer .menu ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
footer .menu ul li {
  background: #eee;
  width: 25%;
  text-align: center;
}
footer .menu ul li a {
  display: block;
  padding: 0;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 1rem;
}
footer .menu ul li a i {
  display: block;
  font-size: 2rem;
  text-align: center;
  margin: 5px;
}
footer .menu ul li.slct {
  background: #468EFF;
}
footer .menu ul li.slct a {
  color: #fff;
}
footer .menu ul li + li {
  border-left: 1px solid #fff;
}

#modal .menu {
  margin: 5px;
  display: flex;
  justify-content: flex-end;
}

.map {
  width: 100%;
  height: 250px;
}
.map iframe {
  width: 100%;
  height: 250px;
}
