@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

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

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

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  position: relative;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  html {
    font-size: 62.5%;
  }

  .container {
    min-width: 1280px;
    overflow: hidden;
    padding-top: 120px;
  }

  .wrapper {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 7.5);
  }

  body {
    font-size: 0.16rem;
  }

  .container {
    min-width: 320px;
    padding-top: 1.2rem;
  }

  .wrapper {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
@keyframes header {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
header.is-fixed {
  position: fixed;
  top: 0;
  -webkit-animation: header 0.3s ease 0s 1 normal forwards;
  animation: header 0.3s ease 0s 1 normal forwards;
  z-index: 99;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
}
@media print, (min-width: 768px) {
  header {
    min-width: 1280px;
    height: 120px;
  }
}
@media only screen and (max-width: 767px) {
  header.is-stick {
    top: 0;
    animation: none;
  }
}
header .header-logo img {
  width: 100%;
}
@media print, (min-width: 768px) {
  header .header-logo {
    width: 413px;
    margin-left: 2px;
  }
}
@media only screen and (max-width: 767px) {
  header .header-logo {
    width: 4.13rem;
    margin: 0 auto;
  }
}
header .wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media print, (min-width: 768px) {
  header .wrapper {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  header .wrapper {
    position: relative;
    padding: 0.2rem 0.2rem 0.22rem;
  }
}

.list-menu .item-menu span:after {
  content: "";
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.list-menu .about span:after {
  background-image: url(../img/common/about_txt.png);
}
.list-menu .business span:after {
  background-image: url(../img/common/business_txt.png);
}
.list-menu .works span:after {
  background-image: url(../img/common/works_txt.png);
}
.list-menu .recruit span:after {
  background-image: url(../img/common/recruit_txt.png);
}
.list-menu .contact span::after {
  background-image: url(../img/common/contact_txt.png);
}

@media print, (min-width: 768px) {
  .list-menu .item-menu span:after {
    height: 17px;
  }
  .list-menu .about span:after {
    width: 36px;
  }
  .list-menu .business span:after {
    width: 48px;
  }
  .list-menu .works span:after {
    width: 38px;
  }
  .list-menu .recruit {
    position: relative;
  }
  .list-menu .recruit span:after {
    width: 40px;
  }
  .list-menu .contact span:after {
    width: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .list-menu .item-menu span:after {
    height: 0.34rem;
  }
  .list-menu .about span:after {
    width: 0.72rem;
  }
  .list-menu .business span:after {
    width: 0.96rem;
  }
  .list-menu .works span:after {
    width: 0.76rem;
  }
  .list-menu .recruit span:after {
    width: 0.8rem;
  }
  .list-menu .contact span::after {
    width: 0.9rem;
  }
}
@media print, (min-width: 768px) {
  .list-sub-menu {
    z-index: 999;
    width: 190px;
    position: absolute;
    top: 104px;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    background: rgba(4, 165, 68, 0.9);
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .list-sub-menu li {
    width: 100%;
    opacity: 0;
    height: 0;
    cursor: pointer;
    transition: opacity, height 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .list-sub-menu li:not(:last-child) {
    border-bottom: 1px solid #3dc575;
  }
  .list-sub-menu li a {
    display: block;
    padding: 14px 0 12px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .list-sub-menu li a {
    padding: 17px 0 9px;
  }
}

@media only screen and (max-width: 767px) {
  .button-menu {
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    right: -0.15rem;
  }
  .button-menu span {
    left: 50%;
    background-color: #00a943;
    width: 0.5rem;
    height: 0.04rem;
    position: absolute;
    transition: transform 0.4s ease;
  }
  .button-menu span:nth-child(1) {
    transform: translateX(-50%);
    top: 0.2rem;
  }
  .button-menu span:nth-child(2) {
    top: 48%;
    transform: translate(-50%);
  }
  .button-menu span:nth-child(3) {
    transform: translateX(-50%);
    bottom: 0.2rem;
  }

  .is-active .button-menu span {
    width: 0.65rem;
  }
  .is-active .button-menu span:nth-child(1) {
    -webkit-transform: translate(-50%, 0.14rem) rotate(-45deg);
    transform: translate(-50%, 0.14rem) rotate(-45deg);
  }
  .is-active .button-menu span:nth-child(2) {
    opacity: 0;
  }
  .is-active .button-menu span:nth-child(3) {
    -webkit-transform: translate(-50%, -0.22rem) rotate(45deg);
    transform: translate(-50%, -0.22rem) rotate(45deg);
  }
  .is-active .header-navigation {
    display: block;
  }

  .header-navigation {
    display: none;
    position: fixed;
    z-index: 998;
    top: 1.19rem;
    left: 0;
    width: 100%;
    height: calc(100% - 1.18rem);
    background-color: rgba(20, 20, 20, 0.96);
    overflow: auto;
  }
}
.header-navigation .item-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.header-navigation .item-menu a span {
  display: block;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.header-navigation .item-menu a span:after {
  display: block;
}

@media print, (min-width: 768px) {
  .header-navigation {
    height: 100%;
  }
  .header-navigation .wrapper-navigation {
    height: 100%;
  }
  .header-navigation .wrapper-navigation .list-menu {
    display: flex;
    height: 100%;
    padding-top: 16px;
  }
  .header-navigation .item-menu {
    margin-left: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
  .header-navigation .item-menu:last-child {
    margin-right: 2px;
  }
  .header-navigation .item-menu.is-active:before {
    height: 22px;
  }
  .header-navigation .item-menu:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #00a943;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-navigation .item-menu:hover:before {
    animation: hoverAnimate 0.45s;
    -webkit-animation: hoverAnimate 0.45s;
    height: 22px;
  }
  .header-navigation .item-menu a span {
    margin-bottom: 5px;
  }
  .header-navigation .item-menu a span:after {
    margin-top: 2px;
  }

  .recruit {
    cursor: pointer;
  }
  .recruit:hover .list-sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .recruit:hover .list-sub-menu li {
    opacity: 1;
    height: 46px;
  }
}
@keyframes hoverAnimate {
  0% {
    height: 0;
    bottom: 22px;
  }
  100% {
    height: 22px;
    bottom: 0;
  }
}
@-webkit-keyframes hoverAnimate {
  0% {
    height: 0;
    bottom: 22px;
  }
  100% {
    height: 22px;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-navigation {
    padding: 0.51rem 1rem 0;
  }
  .header-navigation .item-menu:not(:last-child) {
    border-bottom: 2px solid #2d2d2d;
  }
  .header-navigation .item-menu > a {
    padding: 0.31rem 0 0.08rem;
  }
  .header-navigation .item-menu > a span {
    font-size: 0.24rem;
  }
  .header-navigation .item-menu > a span:after {
    margin-top: -0.05rem;
  }
  .header-navigation .recruit a.is-icon {
    background: url(../img/common/sp/icon_accordion.png) no-repeat right 0.49rem top 0.5rem/0.22rem 0.13rem;
  }
  .header-navigation .list-sub-menu {
    padding: 0.32rem 0 0.1rem;
  }
  .header-navigation .list-sub-menu li {
    margin-bottom: 0.19rem;
  }
  .header-navigation .list-sub-menu li a {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 0.2rem;
  }
  .header-navigation .wrap-sub-menu {
    border-top: 2px solid #2d2d2d;
    display: none;
  }
}

/* MODULES
 * ----------------------------------------------- */
.button-common {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #000;
}
@media print, (min-width: 768px) {
  .button-common {
    font-size: 20px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .button-common {
    font-size: 0.23rem;
    border-radius: 0.05rem;
  }
}

/* PAGE
 * ----------------------------------------------- */
.introduction-contact .text {
  font-weight: 500;
  text-align: center;
}

.request-telephone {
  background-color: #f6f6f6;
}
.request-telephone .is-noted {
  font-weight: bold;
  letter-spacing: -0.01em;
  position: relative;
}
.request-telephone .is-noted:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00a943;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .request-telephone .is-noted {
    margin-top: 10px;
  }
  .request-telephone .is-noted:before {
    top: 43%;
  }
}
.request-telephone .telephone img {
  width: 100%;
}

@media print, (min-width: 768px) {
.sp-on {
	display: none;
}
  .introduction-contact {
    padding-top: 90px;
    margin-bottom: 98px;
  }
  .introduction-contact .text {
    margin-bottom: 40px;
  }

  .request-telephone {
    width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 36px 40px;
  }
  .request-telephone .is-noted {
    display: block;
    font-size: 24px;
    padding-left: 32px;
    margin-right: 100px;
    margin-top: 2px;
  }
  .request-telephone .is-noted:before {
    width: 14px;
    height: 14px;
  }
  .request-telephone .telephone {
    pointer-events: none;
    display: inline-block;
    width: 300px;
    margin-top: -2px;
  }
}
@media only screen and (max-width: 767px) {
  .introduction-contact {
    padding-top: 0.9rem;
    margin-bottom: 0.9rem;
  }
  .introduction-contact .text {
    margin-bottom: 0.4rem;
  }

  .request-telephone {
    margin: 0 0.3rem;
    padding: 0.36rem 0.4rem;
    text-align: center;
  }
  .request-telephone .is-noted {
    font-size: 0.3rem;
    padding-left: 0.3rem;
    display: inline-block;
    margin-bottom: 0.04rem;
  }
  .request-telephone .is-noted:before {
    width: 0.16rem;
    height: 0.16rem;
  }
  .request-telephone .telephone {
    display: block;
    margin: 0 auto;
    width: 3rem;
  }
}
.section-contact .section-title img {
  width: 100%;
}
.section-contact .wrap-button {
  text-align: center;
}
.section-contact .button-common {
  cursor: pointer;
}

@media print, (min-width: 768px) {
  .section-contact {
    padding-bottom: 160px;
  }
  .section-contact .section-title {
    width: 429px;
    margin: 0 auto 47px;
  }
  .section-contact .button-common {
    padding: 24px 88px 20px;
  }
  .section-contact h2 > p {
  	font-size: 20px;
  	font-weight: 700;
  	text-align: center;
  	margin: 10px 0 0;
  }

  .section-contact h3 {
  	font-size: 20px;
  	font-weight: 700;
  	text-align: center;
  	margin: 10px 0 20px;
  	font-weight: bold;
	color: #00a943;
  }
  .section-contact .form-inner > p {
  	line-height : 1.8;
}
.check-button .button-common:first-of-type {
    margin: 0 40px 0 0;
}
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .section-contact .button-common {
    padding: 27px 88px 17px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact {
    padding-bottom: 1rem;
  }
  .section-contact .section-title {
    width: 4.29rem;
    margin: 0 auto 0.5rem;
  }
  .section-contact .button-common {
    padding: 0.3rem 0.88rem 0.26rem;
  }
}
.wrap-form {
  position: relative;
  z-index: 0;
  background: #f6f6f6;
}
@media print, (min-width: 768px) {
  .wrap-form {
    padding: 49px 0;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap-form {
    padding: 0.7rem 0;
    margin-bottom: 0.7rem;
  }
}
.wrap-form:before, .wrap-form:after {
  content: "";
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0.21;
  top: 0;
}
.wrap-form:before {
  left: 0;
}
.wrap-form:after {
  right: 0;
}
@media print, (min-width: 768px) {
  .wrap-form:before, .wrap-form:after {
    width: 397px;
  }
  .wrap-form:before {
    background: url(../img/recruit/recruitment/bg_pattern_left.png) repeat-y left -13px top 3px/397px auto;
  }
  .wrap-form:after {
    background: url(../img/recruit/recruitment/bg_pattern_right.png) repeat-y right -13px top -1px/397px auto;
  }
}
@media only screen and (max-width: 767px) {
  .wrap-form:before, .wrap-form:after {
    width: 3rem;
  }
  .wrap-form:before {
    background: url(../img/recruit/recruitment/bg_pattern_left.png) repeat-y left -0.1rem top/3rem auto;
  }
  .wrap-form:after {
    background: url(../img/recruit/recruitment/bg_pattern_right.png) repeat-y right -0.1rem top/3rem auto;
  }
}
.wrap-form .form-inner {
  margin: 0 auto;
  background-color: #fff;
}
@media print, (min-width: 768px) {
  .wrap-form .form-inner {
    width: 900px;
    padding: 26px 83px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap-form .form-inner {
    width: 7rem;
    padding: 0.3rem 0.4rem;
  }
    .section-contact h2 > p {
  	font-size: 14px;
  	font-weight: 700;
  	text-align: center;
  	margin: 10px 0 0;
  }

  .section-contact h3 {
  	font-size: 16px;
  	font-weight: 700;
  	text-align: center;
  	margin: 8px 0 10px;
  	font-weight: bold;
	color: #00a943;
  }
  .section-contact .form-inner > p {
  	line-height : 1.6;
  	font-size: 12px;
}

}

.form-contact .row-form {
  display: flex;
  align-items: center;
}
.form-contact .row-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  font-weight: bold;
  letter-spacing: -0.01em;
}
.form-contact .row-fill {
  width: 100%;
}
.form-contact .input-text {
  line-height: 2;
}
.form-contact .input-text::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.form-contact .textarea-form,
.form-contact .input-text {
  background: #f6f6f6;
  border: 1px solid #8b8b8b;
  outline: none;
  border-radius: 0;
}
.form-contact .textarea-form {
  resize: none;
  line-height: 1.5;
}
.form-contact .is-required {
  color: #e90505;
}
.form-contact .row-form:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
.form-contact input,
.form-contact textarea {
  appearance: none;
  -webkit-appearance: none;
}
.form-contact input[type="radio"] {
  text-indent: -999px;
  display: none;
}
.form-contact .radio-field-text {
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.form-contact .radio-field-text:before, .form-contact .radio-field-text:after {
  content: "";
  position: absolute;
}
.form-contact .radio-field-text:before {
  border: 1px solid #8b8b8b;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f6f6f6;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-contact .radio-field-text:before {
    top: 40%;
  }
}
.form-contact .radio-field-text:after {
  display: none;
  border: solid #fff;
  transform: rotate(45deg);
}
.form-contact input[type="radio"]:checked + .radio-field-text:after {
  display: block;
}
.form-contact input[type="radio"]:checked + .radio-field-text:before {
  background-color: #00a943;
}

@media print, (min-width: 768px) {
  .form-contact .row-title {
    width: 323px;
    padding: 12px 0 8px 40px;
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .form-contact .row-title {
    padding: 14px 0 6px 40px;
  }
}
@media print, (min-width: 768px) {
  .form-contact .row-fill {
    padding-right: 50px;
  }
  .form-contact .input-text {
    width: 369px;
    height: 42px;
    padding: 2px 20px 0;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .form-contact .input-text {
    padding: 7px 20px 0;
  }
  .form-contact .input-text::-ms-clear {
    display: none;
    width: 0;
    height: 0;
  }
}
@media print, (min-width: 768px) {
  .form-contact .input-text.is-short {
    width: 185px;
  }
  .form-contact .textarea-form {
    width: 369px;
    height: 120px;
    padding: 20px;
  }
  .form-contact .is-required {
    font-size: 16px;
    margin-left: 19px;
  }
  .form-contact .radio .row-title {
    padding: 10px 0 10px 40px;
  }
  .form-contact .is-radio {
    margin-bottom: 11px;
  }
  .form-contact .is-radio .vertical-item:not(:last-child) {
    margin-bottom: 16px;
  }
  .form-contact .row-form {
    padding: 17px 0;
  }
  .form-contact .radio-field-text {
    padding-left: 26px;
  }
  .form-contact .radio-field-text:before {
    height: 16px;
    width: 16px;
  }
  .form-contact .radio-field-text:after {
    left: 6px;
    top: 4px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }
}
@media only screen and (max-width: 767px) {
	.introduction-contact p {
		font-size: 12px;
	}
  .form-contact .row-title {
    width: 2.5rem;
    padding: 0 0 0 0.2rem;
    font-size: 0.24rem;
    margin-right: 0.1rem;
  }
  .form-contact .row-fill {
    padding-right: 0.2rem;
    font-size: 12px;
  }
  .form-contact .input-text {
    font-size: 0.24rem;
    width: 100%;
    height: 0.6rem;
    line-height: 2;
    padding: 0.02rem 0.2rem 0;
  }
  .form-contact .input-text.is-short {
    width: 1.85rem;
  }
  .form-contact .textarea-form {
    font-size: 0.24rem;
    width: 100%;
    height: 2rem;
    padding: 0.1rem 0.2rem;
  }
  .form-contact .is-required {
    width: 100%;
    margin-top: 0.02rem;
    font-size: 0.24rem;
  }
  .form-contact .is-radio {
    margin-bottom: 0.2rem;
  }
  .form-contact .is-radio .vertical-item:not(:last-child) {
    margin-bottom: 0.4rem;
  }
  .form-contact .is-radio .vertical-item span {
  font-size: 12.4px;
  }
  .form-contact .row-form {
    padding: 0.3rem 0;
  }
  .form-contact .radio-field-text {
    font-size: 0.22rem;
    padding-left: 0.4rem;
  }
  
  .form-contact .radio-field-text:before {
    height: 0.3rem;
    width: 0.3rem;
  }
  .form-contact .radio-field-text:after {
    left: 0.11rem;
    top: 0;
    width: 0.1rem;
    height: 0.2rem;
    border-width: 0 0.04rem 0.04rem 0;
  }
  .contact-check .form-contact .is-radio {
    margin-bottom: 0;
}
	.contact-check .wrap-button:first-of-type {
    margin: 0 20px 0 0;
}
.check-button .button-common:first-of-type {
    margin: 0 30px 0 0;
}
}

.is-error {
  color: #e90505;
}

/*# sourceMappingURL=contact.css.map */
