*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

ul,
ol {
  list-style: none;
}

/*base*/

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  background: #fff;
  color: #101010;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
}

a {
  outline: none;
  color: inherit;
}

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

form input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

.footer-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.footer-logo {
  margin-bottom: 32px;
}

.footer-nav {
  margin-bottom: 50px;
}

.footer-copy {
  padding: 18px 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.header {
  position: absolute;
  bottom: 0;
}

.header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px;
  background-color: #fff;
}

.header::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 5px;
  border-top: 1px #d80a0a solid;
  background-image: url(../images/bg_line.png);
  background-repeat: repeat;
  content: "";
}

.header_comfirm {
  position: relative;
}

.header_comfirm::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  border-top: 1px #d80a0a solid;
  background-image: url(../images/bg_line.png);
  background-repeat: repeat;
  content: "";
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.btn-menu {
  display: none;
}

.l-header {
  z-index: 20;
  width: 100%;
  height: 80px;
}

.l-mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
}

.l-main {
  position: relative;
  margin-bottom: 53px;
}

.l-section {
  width: 100%;
  margin-bottom: 140px;
}

.l-form {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.l-footer {
  width: 100%;
}

.logo {
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 60px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic",
    sans-serif;
  letter-spacing: 0.05em;
}

.logo a {
  text-decoration: none;
  display: flex;
}

.logo-icon {
  width: 160px;
  height: auto;
}

.nav-lists {
  display: -ms-flexbox;
  display: flex;
}

.nav-list {
  position: relative;
  padding: 0 3.2rem;
}

.nav-list:last-of-type {
  padding-right: 0;
}

.nav-list:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 26px;
  transform: translateY(-50%);
  background-color: #666;
  content: "";
}
.nav-list:last-of-type:after {
  display: none;
 }

.nav-list-link {
  position: relative;
  font-weight: 500;
  line-height: 0.025em;
  text-decoration: none;
}

.nav-list-link:after {
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #d80a0a;
  content: "";
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-list-link:hover {
  color: #d80a0a;
}

.nav-list-link:hover:after {
  width: 100%;
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#nav-btn {
  display: none;
  outline: none;
}

.hamburger {
  display: block;
  z-index: 20;
  position: relative;
  width: 50px;
  height: 50px;
}

.hamburger:before,
.hamburger:after {
  position: absolute;
  left: 50%;
  width: 80%;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #000;
  content: "";
  transition: all 0.5s;
}

.hamburger:before {
  top: 0;
}

.hamburger:after {
  top: 12px;
}

.hamburger.is-active:before {
  transform: translate(-20px, 10px) rotate(45deg);
  background: #000;
}

.hamburger.is-active:after {
  transform: translateX(-20px) rotate(-45deg);
}

.hamburger span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 1.6rem;
}

.section-title {
  position: relative;
  margin-bottom: 86px;
  font-weight: 700;
  font-size: 4.2rem;
  text-align: center;
}

.section-title::after {
  display: block;
  position: absolute;
  left: 50%;
  width: 60px;
  height: 2px;
  margin-top: 30px;
  transform: translateX(-50%);
  background-color: #d80a0a;
  content: "";
}

#content .error {
  margin-top: 6px;
}

em,
.caution {
  color: #f00;
  font-style: normal;
}

.container_comfirm {
  padding: 50px 0 100px 0;
}

.confirm-massage {
  margin-bottom: 50px;
  text-align: center;
}

.form-title {
  margin-bottom: 30px;
  text-align: center;
}

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

.button-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
}

.button_back {
  margin-right: 50px;
  padding: 25px 80px;
  border: 0;
  background-color: #ccc;
  color: #333;
}

.hero-contents {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 106px;
}

.mainvisual {
  position: relative;
  object-fit: cover;
  background-image: url(../images/img_mainvisual.jpg);
  background-position: 66% 12%;
  background-repeat: no-repeat;
}

.mainvisual-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.main-contents::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  border-top: 1px #d80a0a solid;
  background-image: url(../images/bg_line.png);
  background-repeat: repeat;
  content: "";
}

.feature {
  position: relative;
}

.feature:before {
  display: inline-block;
  position: absolute;
  left: 2.5%;
  width: 58px;
  height: 368px;
  background-image: url(../images/text_feature.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
  opacity: 0.3;
}

.feature-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 53px;
}

.feature-item:nth-child(even) {
  -ms-flex-direction: row;
  flex-direction: row;
}

.feature-item:nth-child(even) .feature-box {
  margin-left: -5%;
}

.feature-item:nth-child(odd) .feature-box {
  margin-right: -5%;
}

.feature-item-image {
  width: 48.6%;
  height: 100%;
}

.feature-box {
  position: relative;
  max-width: 51.4%;
  padding: 84px 70px;
  background-color: rgba(244, 244, 244, 0.8);
}

.feature-box-inner {
  padding: 3.2rem 0;
  border-top: 1px #d80a0a solid;
  border-bottom: 1px #d80a0a solid;
}

.feature-box-title {
  position: relative;
  margin-bottom: 4rem;
  color: #333;
  font-style: italic;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

.feature-box-title:before {
  display: block;
  position: absolute;
  top: -12.6rem;
  content: attr(data-text);
  color: #d80a0a;
  font-style: italic;
  font-size: 8rem;
  font-family: "Roboto Condensed", sans-serif;
}

.service {
  position: relative;
}

.service:after {
  display: inline-block;
  z-index: -1;
  position: absolute;
  right: 2.5%;
  bottom: 0;
  width: 58px;
  height: 368px;
  background-image: url(../images/text_service.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
  opacity: 0.3;
}

.service-lists {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.service-item {
  -ms-flex: 0 1 calc((100% / 3) - 1px);
  flex: 0 1 calc((100% / 3) - 1px);
  width: calc(33.3% - 1px);
  margin-right: 1px;
}

.service-item:nth-child(odd) {
  background-color: #fff;
}

.service-item:nth-child(even) {
  background-color: #f4f4f4;
}

.service-item:nth-of-type(3n) {
  margin-right: 0;
}

.service-item-image {
  position: relative;
  width: 100%;
  height: auto;
}

.service-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px 0;
  outline: 1px #d80a0a solid;
  outline-offset: -5px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.service-item-text {
  padding: 32px 43px 23px 44px;
  letter-spacing: 0.05em;
}

.flow {
  position: relative;
}

.flow:before {
  display: inline-block;
  z-index: -1;
  position: absolute;
  top: 30%;
  left: 2.5%;
  width: 58px;
  height: 368px;
  background-image: url(../images/text_flow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
  opacity: 0.3;
}

.flow-lists {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flow-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 23.9%;
}

.flow-step {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flow-step-image {
  margin-top: -100px;
}

.flow-step-text {
  color: #d80a0a;
  text-align: center;
}

.flow-step-text .step-small {
  display: block;
  font-size: 2rem;
}

.flow-step-text .step-number {
  font-style: italic;
  font-size: 6rem;
  line-height: 0.8;
  font-family: "Roboto Condensed", sans-serif;
}

.flow-detail {
  position: relative;
  width: 100%;
  margin-top: -40px;
}

.flow-detail-title {
  margin-bottom: 3.4rem;
  color: #d80a0a;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.flow-detail-text {
  margin-top: auto;
}

.arrow {
  margin-top: 100px;
}

.contacts {
  padding: 80px 20px 89px 20px;
  background-color: #f4f4f4;
}

.form-tab {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.form-tab-item {
  width: 50%;
  padding: 26px 0;
  background-color: #b7b7b7;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  cursor: pointer;
}

.form-tab-item.is-active {
  padding: 32px 0 26px 0;
  border-top: 1px #d80a0a solid;
  border-radius: 10px 10px 0 0;
  background-image: url(../images/bg_line.png);
  background-position: top;
  background-repeat: repeat-x;
  background-color: #fff;
  color: inherit;
  transition: all 0.2s ease-out;
}

.panel {
  display: none;
}

.panel.is-show {
  display: block;
}

.form-area {
  width: 100%;
  padding: 81px 100px 77px 100px;
  background-color: #fff;
}

.form-contents {
  width: 100%;
  margin-bottom: 85px;
  border-collapse: collapse;
}

.form-contents th,
.form-contents td {
  border-bottom: 1px #b7b7b7 solid;
}

.form-contents th {
  width: 30%;
  min-width: 260px;
  padding: 20px;
  text-align: left;
}

.form-contents td {
  width: 100%;
  padding: 20px;
}

.form-contents input {
  width: 100%;
  padding: 20px;
  border: 1px #ccc solid;
  border-radius: 4px;
  background-color: #fff;
}

.form-contents input.short {
  width: 80%;
}

.form-contents input.middle {
  width: 40%;
}

.form-contents textarea {
  width: 100%;
  padding: 20px;
  border: 1px #ccc solid;
  border-radius: 4px;
}

.form-agree {
  margin-bottom: 26px;
}

.form-agree-title {
  margin-bottom: 30px;
  color: #d80a0a;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
}

.form-agree-text {
  max-height: 150px;
  padding: 23px 42px;
  overflow-y: auto;
  border: 1px #ccc solid;
}

.form-agreement {
  position: relative;
  margin-bottom: 36px;
}

.form-agreement label {
  font-weight: 700;
}

.form-agreement-text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 85px;
}

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

.form-button .submit {
  padding: 25px 100px;
  border: 0;
  background-color: #d80a0a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}

.form-button .submit:hover {
  background-color: #000;
  transition: background-color 0.3s ease-out;
}

.form-attention {
  font-weight: 300;
  font-size: 1.2rem;
  list-style-type: decimal;
}

.form-attention li > span {
  color: #d80a0a;
  font-weight: 400;
}

.input-2col {
  display: -ms-flexbox;
  display: flex;
}

.input-2col > p:first-child {
  margin-right: 50px;
}

.submit {
  width: 100%;
  max-width: 330px;
  padding: 25px 20px;
  border: 0;
  background-color: #d80a0a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}

.submit:hover {
  background-color: #000;
  transition: background-color 0.3s ease-out;
}

.label-name {
  margin-right: 21px;
  font-size: 1.8rem;
}

.optional {
  margin-left: 60px;
}

.unit {
  margin-left: 19px;
  font-size: 1.8rem;
}

.must {
  margin-right: 1.9rem;
  padding: 0.6rem;
  background-color: #d80a0a;
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
}

.name-lists {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}

.name-lists li:first-child {
  margin-right: 32px;
}

.company {
  position: relative;
}

.company:after {
  display: inline-block;
  z-index: 1;
  position: absolute;
  top: -50px;
  right: 2.5%;
  width: 58px;
  height: 368px;
  background-image: url(../images/text_company.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
  opacity: 0.3;
}

.company-contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: start;
  width: 100%;
  background-image: url(../images/img_company.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.company-profile {
  width: 59.8%;
  padding: 90px 87px 82px 87px;
  background-color: rgba(255, 255, 255, 0.85);
}

.company-detail-title {
  margin-bottom: 28px;
  float: left;
  font-weight: 700;
}

.company-detail-text {
  margin-bottom: 28px;
  margin-left: 160px;
  line-height: 2;
}

.company .sales-list {
  margin-left: 1.6rem;
  list-style-type: decimal;
}

.access {
  position: relative;
}

.access:after {
  display: inline-block;
  z-index: -1;
  position: absolute;
  right: 2.5%;
  bottom: 0%;
  width: 58px;
  height: 368px;
  background-image: url(../images/text_access.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
  opacity: 0.3;
}

.access-contents {
  display: -ms-flexbox;
  display: flex;
}

.access-map {
  width: 59.8%;
  height: 580px;
}

.access-detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40%;
  padding: 5.5rem;
}

  /* recruit */
.recruit {
  display: block;
  padding: 80px 20px 89px 20px;
  background-color: #f4f4f4;
}

.l-recruit-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.recruit-area {
  width: 100%;
  padding: 81px 100px 77px 100px;
  background-color: #fff;
}

.recruit-contents {
  width: 100%;
  margin-bottom: 25px;
  border-collapse: collapse;
}

.recruit-contents th,
.recruit-contents td {
  border-bottom: 1px #b7b7b7 solid;
}

.recruit-contents th {
  width: 30%;
  min-width: 260px;
  padding: 20px;
  text-align: left;
}

.recruit-contents td {
  width: 100%;
  padding: 20px;
}

.recruit-personal-information {
  margin-bottom: 26px;
}

.recruit-personal-information-title {
  margin: 30px;
  color: #d80a0a;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
}

.recruit-personal-information-text {
  max-height: 150px;
  padding: 23px 42px;
  overflow-y: auto;
  border: 1px #ccc solid;
}

.recruit-word{
  font-weight: bold;
  padding-left: 20px;
}

@media screen and (min-width: 600px) and (max-width: 1023) {
  .flow-detail-title {
    text-align: left;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    bottom: auto;
  }

  .l-header {
    height: 90px;
  }

  .nav {
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #333;
    opacity: 0;
  }

  .nav.is-opend {
    visibility: visible;
    opacity: 1;
  }

  .nav-lists {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .nav-list {
    margin-bottom: 5rem;
    padding: 0;
  }

  .nav-list:nth-of-type(even):before,
  .nav-list:nth-of-type(even):after {
    content: none;
  }

  .nav-list-link {
    color: #fff;
    font-size: 2.4rem;
  }

  #nav-btn {
    display: block;
    border: none;
    background: transparent;
  }

  .br-pc {
    display: none;
  }

  .mainvisual {
    background-size: auto 100%;
  }

  .feature-item {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .feature-item:nth-child(even) {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .feature-item:nth-child(even) .feature-box {
    margin-top: -5%;
    margin-left: 0;
  }

  .feature-item:nth-child(odd) .feature-box {
    margin-top: -5%;
    margin-right: 0;
  }

  .feature-item-image {
    width: 100%;
    height: 100%;
  }

  .feature-box {
    max-width: 90%;
  }

  .service-item {
    -ms-flex: 0 1 calc((100% / 2) - 1px);
    flex: 0 1 calc((100% / 2) - 1px);
  }

  .flow-lists {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
  }

  .flow-list {
    -ms-flex-direction: row;
    flex-direction: row;
    width: 80%;
  }

  .flow-step {
    margin-right: 20px;
  }

  .flow-step-text {
    margin-bottom: 50px;
  }

  .flow-step-text .step-number {
    font-size: 4rem;
  }

  .arrow {
    margin: 50px 0;
    transform: rotate(90deg);
  }

  .form-tab-item {
    font-size: 1.8rem;
  }

  .form-area {
    padding: 40px 20px;
  }

  .form-contents th,
  .form-contents td {
    display: block;
  }

  .form-contents th {
    border: none;
  }

  .form-contents input.short {
    width: 70%;
  }

  .input-2col > p:first-child {
    margin: 0 0 20px 0;
  }

  .optional {
    margin-left: 0;
  }

  .company-profile {
    width: 100%;
  }

  .access-contents {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .access-map {
    width: 100%;
  }

  .access-detail {
    width: 100%;
  }

  /* recruit */
  .recruit-area {
    padding: 40px 20px;
  }

  .recruit-contents th,
  .recruit-contents td {
    display: block;
  }

  .recruit-contents th {
    border: none;
  }

  .recruit-contents th,
  .recruit-contents td {
    display: block;
  }

  .recruit-contents th {
    border: none;
  }

}

@media screen and (max-width: 599px) {
  .header-inner {
    padding: 20px 16px;
  }

  .logo {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 3.2rem;
  }

  .section-title::after {
    margin-top: 16px;
  }

  .mainvisual-catch {
    padding: 0 20px;
    font-size: 3rem;
  }

  .feature-box {
    padding: 84px 42px;
  }

  .feature-box-title {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }

  .feature-box-title:before {
    top: -10.6rem;
    font-size: 6rem;
  }

  .service-item {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-right: 0;
  }

  .service-item-text {
    padding-bottom: 70px;
  }

  .flow-list {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 70%;
  }

  .flow-step-text .step-number {
    font-size: 6rem;
  }

  .flow-detail-title {
    font-size: 2rem;
  }

  .form-agreement {
    margin-bottom: 56px;
  }

  .name-lists {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .name-lists li:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .company-profile {
    padding: 90px 40px 82px 40px;
  }

  .company-detail-title {
    margin-bottom: 16px;
    float: none;
  }

  .company-detail-text {
    margin-left: 0;
  }

  .recruit-personal-information {
    margin-bottom: 56px;
  }

}

@media screen and (min-width: 768px){
  .desktop-hidden {
    display: none;
  }
}

/*# sourceMappingURL=maps/style.css.map */
