@charset "UTF-8";
/* line 5, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
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;
}

/* line 22, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* line 7, ../sass/_common.scss */
html,
body {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  /* line 7, ../sass/_common.scss */
  html,
  body {
    width: 375px;
  }
}

/* line 16, ../sass/_common.scss */
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  /* line 16, ../sass/_common.scss */
  .pc {
    display: none;
  }
}

/* line 24, ../sass/_common.scss */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  /* line 24, ../sass/_common.scss */
  .sp {
    display: block;
  }
}

/* line 33, ../sass/_common.scss */
header .pc {
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  /* line 33, ../sass/_common.scss */
  header .pc {
    display: none;
  }
}
/* line 48, ../sass/_common.scss */
header .pc .logoBox {
  width: 350px;
}
/* line 52, ../sass/_common.scss */
header .pc .logoBox .logo p {
  font-size: 13px;
  text-align: center;
}
/* line 59, ../sass/_common.scss */
header .pc nav {
  width: 600px;
  font-family: "DM Serif Display", serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  /* line 59, ../sass/_common.scss */
  header .pc nav {
    width: 100%;
    display: none;
  }
}
/* line 69, ../sass/_common.scss */
header .pc nav ul {
  width: 100%;
  display: flex;
  align-items: center;
}
/* line 74, ../sass/_common.scss */
header .pc nav ul li {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: bold;
  transition: color .4s ease 0s;
}
/* line 81, ../sass/_common.scss */
header .pc nav ul li:hover {
  color: #451DA0;
  transition: color .4s ease 0s;
}
/* line 89, ../sass/_common.scss */
header .pc .spacer {
  width: 200px;
}
/* line 94, ../sass/_common.scss */
header .sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  /* line 94, ../sass/_common.scss */
  header .sp {
    display: none;
  }
}
/* line 101, ../sass/_common.scss */
header .sp .logoBox {
  width: 75%;
}
/* line 104, ../sass/_common.scss */
header .sp .logoBox .sub {
  margin-top: -1rem;
  text-align: center;
}
/* line 110, ../sass/_common.scss */
header .sp .menu {
  width: 25%;
  text-align: center;
  font-size: 40px;
}
/* line 116, ../sass/_common.scss */
header .sp nav {
  display: none;
  z-index: 10;
  width: 100%;
  height: 70vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}
/* line 128, ../sass/_common.scss */
header .sp nav .bars {
  cursor: pointer;
}
/* line 133, ../sass/_common.scss */
header .sp nav .close {
  cursor: pointer;
  font-size: 40px;
  padding-right: 10px;
  padding-top: 10px;
  text-align: right;
}
/* line 141, ../sass/_common.scss */
header .sp nav .bars,
header .sp nav .close {
  color: black;
}
/* line 145, ../sass/_common.scss */
header .sp nav .bars:hover,
header .sp nav .close:hover {
  color: #333333;
}
/* line 151, ../sass/_common.scss */
header .sp nav ul li {
  text-align: center;
  font-size: 18px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 170, ../sass/_common.scss */
.page h3 {
  text-align: center;
  font-size: 45px;
  color: black;
  font-weight: bold;
  font-family: "DM Serif Display", serif;
}
/* line 178, ../sass/_common.scss */
.page p.subTitle {
  text-align: center;
}

/**
    *フッター
    */
/* line 192, ../sass/_common.scss */
footer #PhotoStudio {
  background-color: #451da0;
}
@media screen and (max-width: 768px) {
  /* line 192, ../sass/_common.scss */
  footer #PhotoStudio {
    width: 100%;
  }
}
/* line 202, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row {
  padding-top: 80px;
  padding-bottom: 50px;
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
@media screen and (max-width: 768px) {
  /* line 202, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row {
    width: 100%;
  }
}
/* line 217, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left {
  margin-left: 100px;
  display: flex;
}
/* line 221, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .imgBox1 {
  width: 210px;
}
/* line 226, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 {
  padding-left: 15px;
}
/* line 229, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 h4 {
  font-family: "DM Serif Display", serif;
  font-weight: normal;
  font-size: 80px;
  line-height: 1.0em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  /* line 229, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .left .textBox1 h4 {
    text-align: center;
  }
}
/* line 245, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 .text1 {
  font-size: 18px;
  margin-bottom: 2.0em;
}
@media screen and (max-width: 768px) {
  /* line 245, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .left .textBox1 .text1 {
    letter-spacing: -1px;
  }
}
/* line 254, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 .text2 {
  width: 400px;
  font-size: 13px;
  line-height: 2.0em;
}
@media screen and (max-width: 768px) {
  /* line 254, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .left .textBox1 .text2 {
    width: 100%;
  }
}
/* line 267, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  /* line 267, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .reservation {
    margin-right: 0;
  }
}
/* line 275, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation .box1 .reservationButton {
  box-sizing: border-box;
  width: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid white;
  margin-bottom: 50px;
  font-size: 27px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 275, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .reservation .box1 .reservationButton {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
/* line 292, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation .box1 .reservationButton:hover {
  background-color: #fff;
  color: #451da0;
  border-color: #451da0;
}
/* line 299, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation .box1 .roomRental {
  text-align: center;
  font-size: 13px;
}
/* line 310, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row {
  padding-top: 80px;
  padding-bottom: 50px;
  margin: 0 auto;
  color: white;
  display: block;
  width: 100%;
  padding-top: 50px;
}
/* line 319, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left {
  width: 100%;
  margin-left: 0;
  margin: 0 auto;
  display: flex;
}
/* line 325, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .imgBox1 {
  width: 35%;
  padding-left: 15px;
}
/* line 329, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .imgBox1 img {
  width: 90%;
}
/* line 334, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .textBox1 {
  padding-left: 15px;
}
/* line 337, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .textBox1 h4 {
  font-family: "DM Serif Display", serif;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.0em;
  margin-top: 20px;
  text-align: center;
}
/* line 349, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .textBox1 .text1 {
  margin-top: 30px;
  font-size: 13px;
  line-height: 2.0em;
}
/* line 364, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row2 .text2 {
  width: 400px;
  font-size: 14px;
  line-height: 2.0em;
  color: white;
  width: 100%;
  padding: 0 30px;
  text-align: center;
}
/* line 378, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .reservationButton {
  box-sizing: border-box;
  width: 120px;
  height: 42px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}
/* line 388, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .reservationButton p {
  font-size: 20px;
  text-align: center;
  color: white;
}
/* line 399, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .reservationButton:hover {
  background-color: #fff;
  color: #451da0;
  border-color: #451da0;
}
/* line 406, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .roomRental {
  color: white;
  text-align: center;
  font-size: 14px;
  padding-bottom: 30px;
  text-decoration: underline;
}
/* line 414, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .roomRental:link {
  color: white;
  text-decoration: underline;
}
/* line 419, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .roomRental:visited {
  color: white;
  text-decoration: underline;
}
/* line 431, ../sass/_common.scss */
footer #footBox {
  background-color: #2c2c2c;
  color: white;
}
@media screen and (max-width: 768px) {
  /* line 431, ../sass/_common.scss */
  footer #footBox {
    width: 100%;
  }
}
/* line 439, ../sass/_common.scss */
footer #footBox .inner {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  /* line 439, ../sass/_common.scss */
  footer #footBox .inner {
    display: block;
    width: 100%;
  }
}
/* line 456, ../sass/_common.scss */
footer #footBox .inner .left .row {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  /* line 456, ../sass/_common.scss */
  footer #footBox .inner .left .row {
    margin-bottom: 50px;
  }
}
/* line 464, ../sass/_common.scss */
footer #footBox .inner .left .row .companyBox p.title {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  /* line 464, ../sass/_common.scss */
  footer #footBox .inner .left .row .companyBox p.title {
    text-align: center;
  }
}
/* line 472, ../sass/_common.scss */
footer #footBox .inner .left .row .companyBox p.subTitle {
  padding-left: 60px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  /* line 472, ../sass/_common.scss */
  footer #footBox .inner .left .row .companyBox p.subTitle {
    padding-left: 0;
    text-align: center;
  }
}
/* line 484, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox {
  font-family: "DM Serif Display", serif;
  font-size: 16px;
}
/* line 488, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  /* line 488, ../sass/_common.scss */
  footer #footBox .inner .left .bottomBox ul {
    display: block;
  }
}
/* line 495, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox ul li {
  padding-right: 1em;
}
/* line 498, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox ul li a {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  /* line 495, ../sass/_common.scss */
  footer #footBox .inner .left .bottomBox ul li {
    text-align: center;
    padding-right: 0;
    font-size: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
/* line 515, ../sass/_common.scss */
footer #footBox .inner .right {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  /* line 515, ../sass/_common.scss */
  footer #footBox .inner .right {
    margin-top: 2rem;
    margin-right: 0;
  }
}
/* line 523, ../sass/_common.scss */
footer #footBox .inner .right .address {
  font-size: 13px;
  line-height: 2.0em;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  /* line 523, ../sass/_common.scss */
  footer #footBox .inner .right .address {
    text-align: center;
  }
}
/* line 534, ../sass/_common.scss */
footer #footBox .inner .right .corporateButton {
  width: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid white;
  font-size: 13px;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  /* line 534, ../sass/_common.scss */
  footer #footBox .inner .right .corporateButton {
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 550, ../sass/_common.scss */
footer #footBox .inner .right .privacyPolicy {
  font-size: 13px;
  text-align: center;
}
/* line 558, ../sass/_common.scss */
footer #footBox .bottom {
  background-color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 563, ../sass/_common.scss */
footer #footBox .bottom p {
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* line 7, ../sass/recruit.scss */
  #recruitMain {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  /* line 13, ../sass/recruit.scss */
  #recruitMain h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.0;
  }
}
/* line 21, ../sass/recruit.scss */
#recruitMain .youkou {
  margin-top: 50px;
}
/* line 24, ../sass/recruit.scss */
#recruitMain .youkou .row {
  width: 80%;
  margin: 0 auto;
  display: flex;
  background-image: url(/img/recruit/back01.webp);
}
@media screen and (max-width: 768px) {
  /* line 24, ../sass/recruit.scss */
  #recruitMain .youkou .row {
    width: 100%;
    display: block;
  }
}
/* line 36, ../sass/recruit.scss */
#recruitMain .youkou .row .left {
  width: 50%;
  padding-top: 100px;
  padding-left: 30px;
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  /* line 36, ../sass/recruit.scss */
  #recruitMain .youkou .row .left {
    width: 100%;
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* line 49, ../sass/recruit.scss */
#recruitMain .youkou .row .left h4.title {
  font-size: 2rem;
  color: #451da0;
}
@media screen and (max-width: 768px) {
  /* line 49, ../sass/recruit.scss */
  #recruitMain .youkou .row .left h4.title {
    text-align: center;
  }
}
/* line 58, ../sass/recruit.scss */
#recruitMain .youkou .row .left .text1 {
  padding-top: 1.0rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  /* line 58, ../sass/recruit.scss */
  #recruitMain .youkou .row .left .text1 {
    text-align: center;
    font-size: 1.0rem;
  }
}
/* line 68, ../sass/recruit.scss */
#recruitMain .youkou .row .left .text2 {
  padding-top: 1.0rem;
  font-size: 0.8rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 768px) {
  /* line 68, ../sass/recruit.scss */
  #recruitMain .youkou .row .left .text2 {
    font-size: 0.8rem;
    line-height: 2.0;
  }
}
/* line 79, ../sass/recruit.scss */
#recruitMain .youkou .row .right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  /* line 79, ../sass/recruit.scss */
  #recruitMain .youkou .row .right {
    margin-top: 15px;
    width: 100%;
  }
}
/* line 90, ../sass/recruit.scss */
#recruitMain .table {
  width: 80%;
  margin: 0 auto;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  /* line 90, ../sass/recruit.scss */
  #recruitMain .table {
    width: 100%;
  }
}
/* line 99, ../sass/recruit.scss */
#recruitMain .table table {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  /* line 99, ../sass/recruit.scss */
  #recruitMain .table table {
    width: 95%;
  }
}
/* line 108, ../sass/recruit.scss */
#recruitMain .table table tr th {
  width: 150px;
  font-size: 1.1rem;
  padding: 1rem 0;
  padding-left: 1rem;
  border-top: 5px solid #451da0;
}
@media screen and (max-width: 768px) {
  /* line 108, ../sass/recruit.scss */
  #recruitMain .table table tr th {
    width: 35%;
    font-size: 1.3rem;
  }
}
/* line 123, ../sass/recruit.scss */
#recruitMain .table table tr td {
  width: 650px;
  border-top: 2px solid #451da0;
  font-size: 0.8rem;
  padding-left: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  /* line 123, ../sass/recruit.scss */
  #recruitMain .table table tr td {
    width: 65%;
    font-size: 0.9rem;
    line-height: 2.0;
  }
}
/* line 139, ../sass/recruit.scss */
#recruitMain .table table tr:last-child th {
  border-bottom: 5px solid #451da0;
}
/* line 143, ../sass/recruit.scss */
#recruitMain .table table tr:last-child td {
  border-bottom: 2px solid #451da0;
}
/* line 151, ../sass/recruit.scss */
#recruitMain .form {
  width: 800px;
  margin: 0 auto;
  margin-top: 100px;
  font-size: 0.8rem;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  /* line 151, ../sass/recruit.scss */
  #recruitMain .form {
    width: 100%;
    font-size: 1.0rem;
  }
}
/* line 164, ../sass/recruit.scss */
#recruitMain .form label.normal {
  display: block;
}
/* line 167, ../sass/recruit.scss */
#recruitMain .form label.normal.normal {
  padding-bottom: 0.5rem;
}
/* line 171, ../sass/recruit.scss */
#recruitMain .form label.normal .required {
  font-size: 0.6rem;
}
/* line 176, ../sass/recruit.scss */
#recruitMain .form .row {
  display: flex;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  /* line 176, ../sass/recruit.scss */
  #recruitMain .form .row {
    display: block;
  }
}
/* line 186, ../sass/recruit.scss */
#recruitMain .form .row .left,
#recruitMain .form .row .right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  /* line 186, ../sass/recruit.scss */
  #recruitMain .form .row .left,
  #recruitMain .form .row .right {
    width: 95%;
    margin: 0 auto;
  }
}
/* line 196, ../sass/recruit.scss */
#recruitMain .form .row .left input[type=text],
#recruitMain .form .row .left input[type=email],
#recruitMain .form .row .left input[type=date],
#recruitMain .form .row .right input[type=text],
#recruitMain .form .row .right input[type=email],
#recruitMain .form .row .right input[type=date] {
  border: 1px solid #c0c0c0;
  width: 95%;
  height: 2.5rem;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  /* line 196, ../sass/recruit.scss */
  #recruitMain .form .row .left input[type=text],
  #recruitMain .form .row .left input[type=email],
  #recruitMain .form .row .left input[type=date],
  #recruitMain .form .row .right input[type=text],
  #recruitMain .form .row .right input[type=email],
  #recruitMain .form .row .right input[type=date] {
    width: 100%;
  }
}
/* line 211, ../sass/recruit.scss */
#recruitMain .form .row .left .genderArea,
#recruitMain .form .row .right .genderArea {
  padding-top: 0.75rem;
}
/* line 215, ../sass/recruit.scss */
#recruitMain .form .row .left label.gender,
#recruitMain .form .row .right label.gender {
  padding-right: 1rem;
}
/* line 221, ../sass/recruit.scss */
#recruitMain .form .row label.agree {
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  /* line 228, ../sass/recruit.scss */
  #recruitMain .form .row2 {
    width: 95%;
    margin: 0 auto;
  }
}
/* line 235, ../sass/recruit.scss */
#recruitMain .form .row2 textarea {
  border: 1px solid #c0c0c0;
  width: 100%;
  height: 5rem;
  padding: 10px;
}
/* line 245, ../sass/recruit.scss */
#recruitMain .form .row3 {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}
@media screen and (max-width: 768px) {
  /* line 245, ../sass/recruit.scss */
  #recruitMain .form .row3 {
    width: 95%;
    margin: 0 auto;
    justify-content: center;
  }
}
/* line 257, ../sass/recruit.scss */
#recruitMain .form .row3 label {
  display: block;
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  /* line 263, ../sass/recruit.scss */
  #recruitMain .form .row4 {
    text-align: center;
  }
}
/* line 269, ../sass/recruit.scss */
#recruitMain .form .row4 button {
  font-size: 1rem;
  padding: 0.5rem 3.5rem;
  color: black;
  border: 1px solid #808080;
  background-color: #fff;
  transition: all 0.5s 0s ease;
}
/* line 281, ../sass/recruit.scss */
#recruitMain .form .row4 button:hover {
  background-color: #451da0;
  border: 1px solid #451da0;
  color: white;
}

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