/* ---------- common ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #E8E8E8;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

h1,
h2,
h3 {
  letter-spacing: 0.05em;
}

.bold {
  font-weight: bold;
}

/* ---------- header ---------- */
.header {
  background: #fff;
  width: 100%;
  position: fixed;
  z-index: 50;
  box-shadow: 0px 0px 10px 3px rgba(137, 137, 137, 0.2);
}

.header_inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 160px;
}

.gnav ul {
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 15px 0;
}
.gnav a {
  display: inline-block;
  padding: 15px 20px;
  position: relative;
}
.gnav a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #83171f;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.gnav a:hover::after {
  transform: scale(1, 1);
}
.gnav .nav_contact {
  background: #83171f;
  text-align: center;
  display: inline-block;
  transition: 0.3s;
  color: #fff;
  margin-left: 40px;
  padding-left: 50px;
  padding-right: 50px;
}

/* ---------- contact ---------- */
@media screen and (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.contact {
  position: relative;
  margin-bottom: 0;
  margin-top: 100px;
  padding-top: 90px;
  background-image: url(../img/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.contact_content {
  font-size: 30px;
  padding-bottom: 50px;
}
.contact_content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 800px;
  max-width: 100%;
  margin: 80px auto 0;
}
.contact_content li {
  width: 50%;
  padding: 0 30px;
}
.contact_content .tel {
  position: relative;
  padding-left: 50px;
  text-align: center;
}
.contact_content .contactform {
  transition: 0.5s;
  border-left: 2px solid #000;
}
.contact_content .contactform a {
  background: #83171f;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px 50px;
  font-size: 22px;
}
.contact_content p {
  margin: 0 40px 0 10px;
  font-weight: bold;
}
.contact_content .contactform:hover {
  opacity: 0.8;
}

/* ---------- footer ---------- */
footer {
  background: #1D1D1D;
  color: #fff;
}

.footer_menu {
  border-bottom: 1px solid #fff;
}
.footer_menu ul {
  display: flex;
  justify-content: center;
}
.footer_menu a {
  font-size: 20px;
  color: #fff;
  transition: 0.5s;
  display: inline-block;
  padding: 20px 30px;
}
.footer_menu a:hover {
  opacity: 0.4;
}

.footer_logo ul {
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_logo li {
  margin-right: 60px;
}
.footer_logo li:last-child {
  margin-right: 0;
}
.footer_logo a {
  transition: 0.5s;
}
.footer_logo li a:hover {
  opacity: 0.5;
}

.copy {
  text-align: center;
  margin: 0;
  font-size: 14px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .gnav ul {
    font-size: 17px;
  }
  .gnav a {
    padding: 15px;
  }
  .gnav .nav_contact {
    margin-left: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .logo img {
    width: 120px;
  }
  .gnav ul {
    font-size: 15px;
  }
  .gnav a {
    padding: 12px;
  }
  .gnav .nav_contact {
    margin-left: 24px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .contact_content {
    font-size: 20px;
    padding-bottom: 30px;
    width: 90%;
    margin: 0 auto;
  }
  .contact_content ul {
    display: block;
    width: 100%;
    margin: 50px auto 0;
  }
  .contact_content li {
    width: 100%;
  }
  .contact_content .tel {
    background-size: 30px;
    padding-left: 30px;
  }
  .contact_content .contactform {
    padding: 30px 0;
    border-left: none;
  }
  .contact_content .contactform a {
    padding: 20px 30px;
    font-size: 25px;
  }
  .footer_menu ul {
    display: block;
  }
  .footer_menu a {
    font-size: 16px;
    color: #fff;
    transition: 0.5s;
    display: block;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #666;
  }
  .footer_logo ul {
    display: block;
  }
  .footer_logo li {
    margin-right: 0;
    text-align: center;
  }
  .footer_logo li:last-child {
    margin-right: 0;
  }
  .footer_logo a {
    transition: 0.5s;
  }
  .footer_logo li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 640px) {
  .gnav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
    display: block;
  }
  .circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #83171f;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: 0.6s;
  }
  .circleactive {
    transform: scale(50);
  }
  .gnav {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
  }
  .gnav ul {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80%;
  }
  .gnav li {
    padding: 0;
    margin: 0;
  }
  .gnav a,
  .gnav .nav_contact {
    padding: 0;
    color: #fff;
    display: block;
    padding: 20px 0;
    margin: 0;
    text-align: center;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #a24f54;
  }
  .gnav.panelactive ul {
    opacity: 1;
  }
  .gnav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .btn_hamburger {
    position: fixed;
    top: 3px;
    right: 10px;
    z-index: 9999;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .btn_hamburger span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  .btn_hamburger span:nth-of-type(1) {
    top: 15px;
  }
  .btn_hamburger span:nth-of-type(2) {
    top: 23px;
  }
  .btn_hamburger span:nth-of-type(3) {
    top: 31px;
  }
  .btn_hamburger.active span {
    background-color: #fff;
  }
  .btn_hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .btn_hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn_hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .logo a {
    padding: 10px;
    display: inline-block;
  }
  .top_copy {
    font-size: 35px;
    margin-left: 0;
  }
  .sp_hid {
    display: none;
  }
  .contact_content ul {
    width: 100%;
    display: block;
  }
}
.totop {
  position: fixed;
  bottom: 5px;
  right: 3%;
}
.totop img {
  width: 60px;
  opacity: 0.9;
}

.mv {
  background-image: url(../img/mv.jpg);
  background-size: cover;
  display: flex;
  align-items: center;
  height: 70vh;
}

.top_copy {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: bold;
  margin-left: 200px;
}

.scrolldown1 {
  position: relative;
  margin: 50px auto 0;
  text-align: center;
}
.scrolldown1 span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #898989;
  width: 11px;
  height: 11px;
  border-radius: 10px;
}
.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 80px;
  background: #898989;
  animation: pathmove 1.2s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  50% {
    height: 70px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
.section_title {
  position: relative;
  padding: 100px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 50px;
  background: #fff;
}
.section_title h2 {
  color: #fff;
  font-size: 38px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
.section_title h2 span {
  display: block;
  font-size: 18px;
  text-align: center;
}

.section_title--black {
  position: relative;
  padding: 100px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
}
.section_title--black::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 50px;
  background: #333;
}
.section_title--black h2 {
  color: #333;
  font-size: 32px;
  font-weight: bold;
}
.section_title--black .sub_title {
  color: #909090;
  font-size: 18px;
  display: block;
  text-align: center;
}

/* ---------- service ---------- */
.service {
  position: relative;
  margin-bottom: 0;
  margin-top: 150px;
  background-image: url(../img/service_bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top;
}
.service ul {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1200px;
  max-width: 100%;
  margin: 60px auto 0;
}
.service li {
  margin: 50px 20px 20px 0;
  z-index: 5;
  width: 30%;
  min-width: 350px;
  background: #fff;
  box-shadow: 0px 3px 15px 10px rgba(137, 137, 137, 0.1);
}

.service_img {
  position: relative;
}
.service_img img {
  width: 100%;
}
.service_img .service_icon {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80px;
}

.service_txt {
  padding: 0 30px 30px;
}
.service_txt h3 {
  font-size: 25px;
  text-align: center;
  padding-top: 40px;
  font-weight: bold;
}
.service_txt h3 span {
  font-size: 16px;
  color: #909090;
  display: block;
  font-family: "Noto Serif JP", serif;
}
.service_txt p {
  margin: 20px 0;
}

.service_info {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .mv {
    height: 50vh;
  }
  .top_copy {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 30px;
    margin-left: 10px;
  }
  .service ul {
    display: block;
  }
  .service li {
    width: 100%;
  }
  .service li + li {
    margin-top: 100px;
  }
  .service_txt {
    padding: 0 30px 30px;
  }
  .service_txt h3 {
    font-size: 26px;
    padding-top: 40px;
  }
  .service_txt h3 span {
    font-size: 16px;
  }
  .service_info {
    font-size: 18px;
  }
}
.w_box {
  background: #fff;
  padding: 100px 50px 100px;
  margin: 150px auto;
  width: 1200px;
  max-width: 90%;
  box-shadow: 0px 3px 15px 10px rgba(137, 137, 137, 0.1);
  position: relative;
}

.w_box_min {
  background: #fff;
  padding: 50px;
  margin: 50px auto;
  width: 1200px;
  max-width: 90%;
  box-shadow: 0px 3px 15px 10px rgba(137, 137, 137, 0.1);
  position: relative;
}

@media screen and (max-width: 768px) {
  .w_box_min {
    padding: 50px 20px;
  }
}
.o_box {
  background: transparent;
  padding: 100px 50px;
  margin: 0 auto;
  width: 1200px;
  max-width: 90%;
}

@media screen and (max-width: 768px) {
  .w_box {
    padding: 50px 15px;
    margin: 30px auto;
  }
  .o_box {
    padding: 50px 15px;
    margin: 0 auto;
  }
}
.subpage_title {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subpage_title h1 {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.jigyo .subpage_title {
  background-image: url(../img/title_1.jpg);
}

.company .subpage_title {
  background-image: url(../img/title_2.jpg);
}

.recruit .subpage_title {
  background-image: url(../img/title_3.jpg);
}

.contactp .subpage_title {
  background-image: url(../img/title_3.jpg);
}

.subpage_title {
  background-image: url(../img/title_3.jpg);
}

.subpage_sec_title h2 {
  font-size: 38px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
.subpage_sec_title h2 span {
  display: block;
  font-size: 18px;
  color: #909090;
}

@media screen and (max-width: 768px) {
  .subpage_sec_title h2 {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .subpage_sec_title h2 span {
    font-size: 16px;
  }
}
.sub h3 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 24px;
  color: #83171f;
  font-weight: bold;
}
.sub h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #83171f;
}
.sub p + p {
  margin-top: 15px;
}
.sub p:first-child {
  margin-top: -0.4em;
}

.service_icon {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  text-align: center;
}
.service_icon img {
  width: 90px;
}

.jigyo_contents_mb {
  margin-bottom: 70px;
}

.jigyo_subtitle {
  display: inline-block;
  padding: 2px 25px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #5A5A5A;
}

.jigyo_nav {
  display: flex;
  justify-content: center;
}
.jigyo_nav a {
  display: inline-block;
  padding: 15px 20px 0;
  position: relative;
}
.jigyo_nav a::before {
  position: relative;
  top: 12px;
  left: -5px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7.5px 0 7.5px;
  border-color: #000 transparent transparent transparent;
}

.step_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}

.step_box {
  width: 160px;
  margin-right: 10px;
  margin-bottom: 70px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
}
.step_box img {
  margin-top: auto;
}

.step_number {
  margin: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #a7a7a7;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.step_title {
  margin: 0.5rem 0 1rem;
  font-size: 12px;
}

.step_box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #cccccc;
}

@media screen and (max-width: 950px) {
  .step_container {
    flex-wrap: wrap;
  }
  .step_container .step_box {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .jigyo_nav {
    display: block;
    max-width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .step_container {
    flex-wrap: wrap;
  }
  .step_container .step_box {
    width: 40%;
  }
}
.jigyo_flex {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
}
.jigyo_flex figure {
  margin-bottom: 30px;
}
.jigyo_flex figure figcaption {
  font-size: 14px;
  font-weight: bold;
  margin-top: 1rem;
}

.philosophy_box {
  text-align: center;
}
.philosophy_box + .philosophy_box {
  margin-top: 80px;
}
.philosophy_box .subpage_sec_title {
  margin-bottom: 30px;
}

.system_info {
  display: flex;
  margin: 0 auto 3rem;
}

.jigyo_img {
  width: 30%;
}

.jigyo_txt {
  width: 70%;
  padding-left: 30px;
}
.jigyo_txt .bpo_list {
  margin-bottom: 1rem;
  font-size: 18px;
}

.jigyo1_table table {
  width: 100%;
}
.jigyo1_table th,
.jigyo1_table td {
  border: 1px solid #909090;
  padding: 15px;
}
.jigyo1_table th {
  background: #1d1d1d;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .jigyo1_table th {
    display: none;
  }
  .jigyo1_table td {
    display: block;
    border: 0;
  }
  .jigyo1_table td:last-child {
    border-top: 1px dashed #909090;
    padding-bottom: 50px;
  }
  .jigyo1_table td:first-child {
    background: #1d1d1d;
    color: #fff;
    text-align: center;
  }
}

table {
  width: 100%;
}

th,
td {
  border: 1px solid #909090;
  padding: 15px;
}

th {
  background: #1d1d1d;
  color: #fff;
  text-align: center;
}

.career_table_info h3 {
  text-align: center;
}
.career_table_info span {
  font-weight: bold;
}
.career_table_info table {
  max-width: 700px;
  margin: 0 auto 20px;
}
.career_table_info th {
  width: 25%;
}
.career_table_info td {
  background: #f5f5f5;
}
@media screen and (max-width: 600px) {
  .career_table_info th, .career_table_info td {
    width: 100%;
    display: block;
    border: none;
  }
  .career_table_info td {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .system_info {
    display: block;
  }
  .jigyo_img {
    width: 100%;
    margin-bottom: 30px;
  }
  .jigyo_txt {
    width: 100%;
    padding-left: 0;
  }
}
.chat_bubble-container {
  display: flex;
  align-items: flex-start;
  padding: 10px;
}

.user_icon {
  width: 40px;
  margin-right: 20px;
}
.user_icon p {
  font-size: 12px;
  text-align: center;
}

.chat_bubble {
  position: relative;
  display: inline-block;
  background-color: #eee;
  border-radius: 5px;
  padding: 25px 20px 20px;
  max-width: 70%;
  word-wrap: break-word;
  border-radius: 15px;
}

.chat_bubble::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #eee;
}

.ceo_img {
  float: left;
  margin-right: 10px;
}
.ceo_img img {
  width: 200px;
}

.signature {
  padding-top: 50px;
  text-align: right;
}
.signature img {
  width: 50%;
  max-width: 400px;
  min-width: 250px;
  margin-right: 10px;
}

.company_table {
  width: 100%;
  margin: 0 auto;
}
.company_table th,
.company_table td {
  border: 1px solid #909090;
  padding: 15px;
}
.company_table th a,
.company_table td a {
  text-decoration: underline;
}
.company_table th a:hover,
.company_table td a:hover {
  text-decoration: none;
  color: #777;
}
.company_table th {
  background: #1d1d1d;
  color: #fff;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .company_table th {
    display: block;
    width: 100%;
  }
  .company_table td {
    display: block;
    border: 0;
  }
  .company_table td:last-child {
    padding-bottom: 50px;
  }
}

.company_table + .company_table {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .ceo_img {
    float: none;
    margin: 0 0 30px 0;
    text-align: center;
  }
}
.saiyo {
  margin: 0px auto 100px;
}

.saiyotitle h2 {
  font-size: 38px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.saiyotitle h2.part {
  margin-bottom: 0px;
}

.recruit table + table {
  margin-top: 50px;
}

.recruit_note {
  margin-top: 20px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .saiyotitle h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
.btn_recruit ul {
  display: flex;
  justify-content: center;
}
.btn_recruit a {
  background: #1d1d1d;
  width: 240px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  display: block;
  padding: 13px 0;
  margin: 20px 18px;
}

.recruit_contact,
.main_contact {
  margin: 50px 0;
  border: solid 1px #333;
  text-align: center;
  padding: 50px;
  font-size: 24px;
  font-weight: bold;
}

.contact_list {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_list figure {
  width: 45%;
  max-width: 400px;
  margin: auto;
}
.contact_list figure img {
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .btn_recruit ul {
    display: flex;
    justify-content: space-between;
  }
  .btn_recruit li {
    width: 45%;
  }
  .btn_recruit a {
    background: #1d1d1d;
    width: 100%;
    font-size: 15px;
    padding: 13px 10px;
    margin: 0;
  }
  .recruit_contact,
  .main_contact {
    margin: 20px 0 50px;
    border: solid 1px #333;
    text-align: center;
    padding: 20px;
    font-size: 18px;
  }
  .contact_list {
    margin-top: 10px;
    display: block;
  }
  .contact_list figure {
    width: 100%;
  }
  .contact_list img {
    width: 70%;
    margin: 10px 0;
  }
}
.contact_info {
  background: #eee;
  padding: 20px;
  margin-bottom: 40px;
}
.contact_info a {
  text-decoration: underline;
}

.to_contact {
  padding: 40px 0 0;
  text-align: center;
}
.to_contact a {
  text-decoration: none;
  display: inline-block;
  border: 1px solid #1d1d1d;
  width: 40%;
  font-size: 15px;
  padding: 13px 10px;
  margin: 0;
}

@media screen and (max-width: 1000px) {
  .to_contact {
    padding: 40px 0 0;
  }
  .to_contact a {
    display: block;
    border: 1px solid #1d1d1d;
    width: 90%;
    max-width: 500px;
    font-size: 15px;
    padding: 13px 10px;
    margin: 10px auto;
  }
}
.atmail::after {
  content: "@";
}

form {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
form dl span {
  font-size: 0.8em;
  font-weight: normal;
  padding: 0 10px;
  color: #b3111c;
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  border: none;
  padding: 5px 10px;
  border-radius: 8px;
  background-color: #eee;
  margin-bottom: 15px;
}
input[type=submit],
textarea[type=submit],
select[type=submit] {
  background: #83171f;
  color: #fff;
  width: 50%;
  text-align: center;
  margin: 30px auto 0;
  display: block;
  padding: 10px;
}
input[type=submit]:disabled{
	opacity : 0.5;
}
input[type=checkbox] {
	width:15px;
	height:15px;
	border:1px solid;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #777;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #777;
}
input.error,
textarea.error,
select.error {
  background: #b3111c;
  color: #fff;
}
input.error::-moz-placeholder, textarea.error::-moz-placeholder, select.error::-moz-placeholder {
  color: #83171f;
}
input.error::placeholder,
textarea.error::placeholder,
select.error::placeholder {
  color: #83171f;
}

textarea {
  height: 10rem;
}/*# sourceMappingURL=style.css.map */