@charset "UTF-8";
/* common css */
body {
  color: #808080;
  font-family: "Montserrat", "YakuHanMP", "YakuHanJP", "Noto Sans JP", sans-serif;
  background: none;
}

a,
.link {
  color: #f3903f;
  transition: all 0.5s;
}
a.tdon,
.link.tdon {
  text-decoration: underline;
}
a:hover,
.link:hover {
  color: #da6c12;
  transition: all 0.5s;
}

button,
input,
select,
textarea {
  font-size: 100%; /* Corrects font size in all browsers */
  margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline; /* Appearance and consistency in all browsers */
  *vertical-align: middle; /* Appearance and consistency in IE6/IE7 */
}

input[type=text],
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=password],
input[type=file],
textarea {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 1rem;
  background-color: #fafafa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 36px;
}

input[type=search] {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

input[type=reset],
input[type=button],
input[type=submit] {
  background-color: #f77426;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: block;
  margin-bottom: 30px;
  padding: 6px 18px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

input[type=reset]:hover,
input[type=button]:hover,
input[type=submit]:hover {
  background-color: #747474;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

input[type=search]:focus {
  background-color: #f8f8f8;
}

input[type=checkbox],
input[type=radio] {
  padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type=search] {
  -webkit-appearance: none;
  appearance: none;
}

input[type=color] {
  position: relative;
  top: 0.25em;
}

label {
  display: block;
  margin: 0.25em 0;
}

.radio-g {
  margin: 0;
}
.radio-g label {
  position: relative;
  padding: 0.25em 1em 0.25em 2em;
  line-height: 1;
  margin: 0.5em 0;
}
.radio-g label input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: rgb(0, 0, 0) 0 0 4px -2px;
  background-color: rgb(255, 255, 255);
  background-image: radial-gradient(#f3903f 0%, #f3903f 15%, #f3903f 45%, rgba(0, 0, 0, 0) 45%);
  background-repeat: no-repeat;
  background-size: 0 0;
  background-position: center;
  transform-origin: center;
  outline: none;
}
.radio-g label input[type=radio]:checked {
  border: solid 2px #f3903f;
  background-size: 100% 100%;
  transition: background-size 0.1s cubic-bezier(0, 0, 0.2, 1);
  transform-origin: center;
}
.radio-g label input[type=radio]:active {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.radio-g.inline {
  margin: 0.5em 0;
}
.radio-g.inline label {
  display: inline-block;
  margin: 0;
}

.checkbox-g {
  margin: 0;
}
.checkbox-g label {
  position: relative;
  padding: 0.25em 1em 0.25em 2em;
  line-height: 1;
  margin: 0.5em 0;
}
.checkbox-g label input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.9) 0 0 4px -2px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transform-origin: center;
  outline: none;
}
.checkbox-g label input[type=checkbox]::after {
  content: "";
  display: block;
  width: 30%;
  height: 60%;
  position: absolute;
  top: 15%;
  left: 30%;
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  filter: invert(10%) grayscale(100%) contrast(100%);
}
.checkbox-g label input[type=checkbox]:checked {
  border: solid 2px #f3903f;
}
.checkbox-g label input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 30%;
  height: 60%;
  position: absolute;
  top: 15%;
  left: 30%;
  border: 2px solid #f3903f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  filter: none;
}
.checkbox-g label input[type=checkbox]:active {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.checkbox-g.inline {
  margin: 0.5em 0;
}
.checkbox-g.inline label {
  display: inline-block;
  margin: 0;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  min-width: 230px;
  height: 2.2em;
  padding: 0.1em calc(0.8em + 30px) 0.1em 0.8em;
  border: 1px solid #cccccc;
  border-radius: 25px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.selectbox select:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.05);
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.password-wrapper {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 1rem;
}
.password-wrapper .password__input {
  flex: 1;
  outline: none;
  appearance: none;
  padding: 10px 0 10px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  margin: 0;
}
.password-wrapper .password__toggle {
  width: 40px;
  border: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='M24 31.5q3.55 0 6.025-2.475Q32.5 26.55 32.5 23q0-3.55-2.475-6.025Q27.55 14.5 24 14.5q-3.55 0-6.025 2.475Q15.5 19.45 15.5 23q0 3.55 2.475 6.025Q20.45 31.5 24 31.5Zm0-2.9q-2.35 0-3.975-1.625T18.4 23q0-2.35 1.625-3.975T24 17.4q2.35 0 3.975 1.625T29.6 23q0 2.35-1.625 3.975T24 28.6Zm0 9.4q-7.3 0-13.2-4.15Q4.9 29.7 2 23q2.9-6.7 8.8-10.85Q16.7 8 24 8q7.3 0 13.2 4.15Q43.1 16.3 46 23q-2.9 6.7-8.8 10.85Q31.3 38 24 38Zm0-15Zm0 12q6.05 0 11.125-3.275T42.85 23q-2.65-5.45-7.725-8.725Q30.05 11 24 11t-11.125 3.275Q7.8 17.55 5.1 23q2.7 5.45 7.775 8.725Q17.95 35 24 35Z'/></svg>") no-repeat center center;
  background-size: 50% auto;
  cursor: pointer;
}
.password-wrapper .password__toggle.is-visible {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='m31.45 27.05-2.2-2.2q1.3-3.55-1.35-5.9-2.65-2.35-5.75-1.2l-2.2-2.2q.85-.55 1.9-.8 1.05-.25 2.15-.25 3.55 0 6.025 2.475Q32.5 19.45 32.5 23q0 1.1-.275 2.175-.275 1.075-.775 1.875Zm6.45 6.45-2-2q2.45-1.8 4.275-4.025Q42 25.25 42.85 23q-2.5-5.55-7.5-8.775Q30.35 11 24.5 11q-2.1 0-4.3.4-2.2.4-3.45.95L14.45 10q1.75-.8 4.475-1.4Q21.65 8 24.25 8q7.15 0 13.075 4.075Q43.25 16.15 46 23q-1.3 3.2-3.35 5.85-2.05 2.65-4.75 4.65Zm2.9 11.3-8.4-8.25q-1.75.7-3.95 1.075T24 38q-7.3 0-13.25-4.075T2 23q1-2.6 2.775-5.075T9.1 13.2L2.8 6.9l2.1-2.15L42.75 42.6ZM11.15 15.3q-1.85 1.35-3.575 3.55Q5.85 21.05 5.1 23q2.55 5.55 7.675 8.775Q17.9 35 24.4 35q1.65 0 3.25-.2t2.4-.6l-3.2-3.2q-.55.25-1.35.375T24 31.5q-3.5 0-6-2.45T15.5 23q0-.75.125-1.5T16 20.15Zm15.25 7.1Zm-5.8 2.9Z'/></svg>");
}

@media (any-hover: hover) {
  .password__toggle:hover {
    opacity: 0.7;
  }
}
.btn {
  display: inline-block;
  text-align: center;
  padding: 0.25em 2em;
  background-color: #f3903f;
  color: #fff;
  text-decoration: none;
  border-radius: 1em;
  font-weight: bold;
}
.btn.lg {
  padding: 1em 4em;
}
.btn:hover {
  background-color: #da6c12;
  color: #fff;
}

img {
  max-width: 100%;
}

.fbox {
  display: flex;
}
.fbox.jc-center {
  justify-content: center;
}
.fbox.jc-sa {
  justify-content: space-around;
}
.fbox.jc-sb {
  justify-content: space-between;
}
.fbox.wrap {
  flex-wrap: wrap;
}
.fbox.fd-row {
  flex-direction: row;
}
.fbox.fd-column {
  flex-direction: column;
}
.fbox .full {
  flex: 0 0 100%;
  width: 100%;
}
.fbox .half {
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .fbox .half {
    flex: 0 0 calc(50% - 1rem);
    width: calc(50% - 1rem);
  }
}

.t-l {
  text-align: left;
}

.t-r {
  text-align: right;
}

.t-c {
  text-align: center;
}

br.sp {
  display: block;
}
@media (min-width: 769px) {
  br.sp {
    display: none;
  }
}
br.pc {
  display: none;
}
@media (min-width: 769px) {
  br.pc {
    display: block;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: solid 1px #757575;
  margin-bottom: 1rem;
}
table tr {
  border-bottom: solid 1px #757575;
}
table tr th {
  padding: 0.5rem;
  text-align: center;
  border-right: solid 1px #757575;
  background-color: rgba(0, 0, 0, 0.2);
  width: 9rem;
  font-size: 0.7rem;
}
@media (min-width: 769px) {
  table tr th {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    width: 15rem;
  }
}
table tr td {
  padding: 0.5rem;
  text-align: left;
  width: calc(100% - 9rem);
}
@media (min-width: 769px) {
  table tr td {
    padding: 0.5rem 1rem;
    width: calc(100% - 15rem);
  }
}
table tfoot tr {
  background-color: #757575 !important;
  border-bottom: none;
}
table.alt tr {
  background-color: #fff;
}
table.alt tr:nth-child(odd) {
  background-color: rgba(199, 230, 206, 0.5);
}
table .btn {
  padding: 0.25em 1em;
  margin: 0;
}

.accordion {
  width: 100%;
  margin: 0 auto;
}
.accordion .a_item {
  border: 1px solid #ccc;
  margin-top: 1rem;
  cursor: pointer;
}
.accordion .a_item .a_title {
  position: relative;
  padding: 15px 60px 15px 20px;
  font-weight: bold;
  cursor: pointer;
}
.accordion .a_item .a_title::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #f3903f;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
}
.accordion .a_item .a_title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #f3903f;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.accordion .a_item .a_content {
  padding: 0 20px 15px 20px;
  display: none;
  cursor: pointer;
}
.accordion .a_item .a_content.is-open {
  display: block;
}
.accordion .a_item.is-active .a_title::before {
  transform: rotate(180deg);
}
.accordion .a_item.is-active .a_title::after {
  transform: rotate(180deg);
  opacity: 0;
}

.modal .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
}
.modal .modal__overlay .modal__container {
  background-color: #fff;
  padding: 2rem;
  max-width: 800px;
  width: 80vw;
  max-height: 80vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}
.modal .modal__overlay .modal__container .modal__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 2em;
  height: 2em;
  line-height: 1;
  padding: 0.5em;
  border-radius: 100%;
  border: 0;
}
.modal .modal__overlay .modal__container .modal__close:before {
  content: "✕";
}

/**************************\
	Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* keyframes */
@keyframes animbg {
  from {
    background-position: 100% 100%;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/*
animation-name: animbg;
animation-fill-mode:backwards;
animation-duration:1s;
animation-iteration-count:1; //infinite
animation-timing-function:liner;
animation-delay: 0;
animation-direction:alternate;
*/
/* this site css start */
header,
main,
footer {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
}

button,
input[type=button] {
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  display: inline-block;
  text-align: center;
  padding: 0.5em 2em;
  background-color: #f3903f;
  color: #fff;
  text-decoration: none;
  border-radius: 1em;
  font-weight: bold;
}
button:hover,
input[type=button]:hover {
  background-color: #da6c12;
  color: #fff;
}
button:disabled,
input[type=button]:disabled {
  background-color: #aaa;
  cursor: default;
}

header {
  background-color: #fff;
  box-shadow: 0px 10px 25px #d9d9d9;
  display: flex;
  align-items: center;
  height: 3rem;
  padding: 0.5rem;
  position: sticky;
  top: 0;
  max-width: none;
  z-index: 90;
}
header p {
  margin: 0;
}
header #toggle {
  display: block;
  position: fixed;
  z-index: 101;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  border: solid 1px #808080;
  border-radius: 2px;
}
header #toggle span {
  display: block;
  width: 1em;
  height: 2px;
  border-radius: 5px;
  position: absolute;
  background-color: #808080;
}
header #toggle span.top {
  left: calc(50% - 0.5em);
  top: 0.5em;
}
header #toggle span.mid {
  left: calc(50% - 0.5em);
  top: calc(50% - 1px);
}
header #toggle span.bottom {
  left: calc(50% - 0.5em);
  bottom: 0.5em;
}
header #toggle.open span.top {
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
header #toggle.open span.mid {
  opacity: 0;
}
header #toggle.open span.bottom {
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}
header #gnav {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
header #gnav.open {
  display: block;
}
header #gnav #nav_bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
header #gnav .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 4rem;
  background-color: #fff;
}
@media (min-width: 769px) {
  header #gnav .inner {
    width: 400px;
  }
}
header #gnav .inner button {
  background: none;
  color: #808080;
  text-align: left;
  display: block;
  padding: 0.5em 1rem;
  border-bottom: solid 1px #ccc;
  width: 100%;
  border-radius: 0;
}
header #gnav .inner button:first-child {
  border-top: solid 1px #ccc;
}

main {
  padding: 3em 1em;
}
main h2 {
  font-size: 1.5rem;
  margin-bottom: 2em;
  text-align: center;
}

#welcome {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#welcome button {
  text-align: center;
  flex: 0 0 45%;
  color: #808080;
  display: block;
  font-weight: bold;
  padding: 2em 1em 1em;
  font-size: 1rem;
  border-radius: 1em;
  background: #ffffff;
  box-shadow: 10px 10px 25px #d9d9d9, -10px -10px 25px #ffffff;
}
#welcome button figure {
  display: block;
  width: 100%;
}
#welcome button figure img {
  width: auto;
  height: 3rem;
}

#input-set-container {
  border: solid 1px #808080;
  margin-bottom: 1rem;
}
#input-set-container .input-set-index,
#input-set-container .input-set {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  border-bottom: solid 1px #808080;
}
#input-set-container .input-set-index:last-child,
#input-set-container .input-set:last-child {
  border: none;
}
#input-set-container .input-set-index span,
#input-set-container .input-set span {
  display: inline-block;
  text-align: center;
}
#input-set-container .input-set-index span:first-child,
#input-set-container .input-set span:first-child {
  flex: 0 0 100%;
  padding: 0.5em 1em;
  background-color: rgba(0, 0, 0, 0.2);
}
#input-set-container .input-set-index span:nth-child(2),
#input-set-container .input-set span:nth-child(2) {
  flex: 0 0 calc(25% + 1em);
  padding: 0.5em 1em;
}
#input-set-container .input-set-index span:nth-child(3),
#input-set-container .input-set span:nth-child(3) {
  flex: 0 0 4em;
  padding: 0.5em;
  padding: 0.5em 1em;
}
#input-set-container .input-set-index span.delete-button,
#input-set-container .input-set span.delete-button {
  flex: 0 0 2em;
  margin: 0.5em;
  margin-left: auto;
  font-size: 0.7em;
  color: red;
  font-weight: 400;
  cursor: pointer;
}
#input-set-container .input-set-index input,
#input-set-container .input-set input {
  padding: 0.1em 0.25em;
}
#input-set-container .input-set-index input:first-child,
#input-set-container .input-set input:first-child {
  flex: 0 0 calc(100% - 1em);
  margin: 0.5em;
}
#input-set-container .input-set-index input:nth-child(2),
#input-set-container .input-set input:nth-child(2) {
  flex: 0 0 25%;
  margin: 0 0.5em 0.5em;
  text-align: center;
}
#input-set-container .input-set-index input:nth-child(3),
#input-set-container .input-set input:nth-child(3) {
  flex: 0 0 3em;
  margin: 0 0.5em 0.5em;
  text-align: center;
}
#input-set-container .input-set-index .subtotal,
#input-set-container .input-set .subtotal {
  flex: 0 0 30%;
  margin: 0.5em;
  text-align: center;
}
#input-set-container .input-set-index .subtotal span,
#input-set-container .input-set .subtotal span {
  background: none !important;
  padding: 0.25rem 0;
}

.formitem {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formitem .fth {
  flex: 0 0 100%;
  border-left: solid 5px #757575;
  padding: 0.25em 0.5em;
  margin-bottom: 1em;
}
@media (min-width: 769px) {
  .formitem .fth {
    flex: 0 0 28%;
    border: none;
    padding: 1em 0 0 0;
    margin: 0;
  }
}
.formitem .fth h3 {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.formitem .ftd {
  flex: 0 0 100%;
  padding-bottom: 1em;
}
@media (min-width: 769px) {
  .formitem .ftd {
    flex: 0 0 70%;
  }
}

#additembtn .btn {
  display: block;
  //background-color: #808080;
  text-align: center;
  width: 100%;
  padding: 0.5em 0;
  line-height: 1;
  margin: 0 0 1em;
  border-radius: 0;
}

#req-list {
  margin-bottom: 1rem;
  border: solid 1px #757575;
  padding: 0;
}
#req-list .req-th {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}
#req-list .req-th span {
  padding: 0.5em;
  text-align: center;
}
#req-list .req-th span:first-child {
  flex: 0 0 7em;
}
#req-list .req-th span:nth-child(2) {
  flex: 0 0 6em;
}
#req-list .req-th span:nth-child(3) {
  flex: 0 0 5em;
}
#req-list .req-th span:nth-child(4) {
  flex: 0 0 3em;
}
#req-list #req-content {
  margin: 0;
  padding: 0;
}
#req-list #req-content .req-item {
  border-top: solid 1px #757575;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}
#req-list #req-content .req-item span {
  padding: 0.5em;
  text-align: center;
}
#req-list #req-content .req-item span:first-child {
  flex: 0 0 7em;
}
#req-list #req-content .req-item span:nth-child(2) {
  flex: 0 0 6em;
}
#req-list #req-content .req-item span:nth-child(3) {
  flex: 0 0 5em;
}
#req-list #req-content .req-item span:nth-child(4) {
  flex: 0 0 3em;
}
#req-list #req-content .req-item span button {
  background: none;
  color: #f3903f;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 0;
}

#paginationButtons {
  display: flex;
  justify-content: space-between;
}
#paginationButtons button {
  font-size: 0.8em;
  border-radius: 0;
  padding: 0.25em 1em;
}

#topms {
  text-align: center;
  margin: 2rem auto;
}
#topms h2 {
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1;
}
#topms h2 img {
  max-width: 300px;
  width: 50%;
}
#topms p {
  font-size: 1.5em;
}

#topinfo {
  margin: 2rem auto;
  max-width: 800px;
  width: 90%;
  padding: 1rem;
  border: solid 1px #808080;
}
#topinfo p:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=line.css.map */