@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 50px 0;
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 90px;
    right: 23px;
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto 3px;
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

.cta_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  display: none;
}
@media (max-width: 599px) {
  .cta_btn {
    display: block;
  }
}
.cta_btn .cta_btn_item {
  background-color: #fff;
  width: 48%;
  text-align: center;
  font-size: 24px;
  padding: 10px 0;
  border-radius: 20px;
}
.cta_btn .cta_btn_item.line_bg {
  background-color: #06c755;
  font-size: 24px;
  padding-top: 7px;
}
.cta_btn .cta_btn_item.line_bg img {
  width: 24px;
}
.cta_btn .cta_btn_item img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.commmon_mv {
  position: relative;
}
.commmon_mv h2 {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
}
.commmon_mv.page_point h2 {
  background-color: #fff;
}
@media (max-width: 768px) {
  .commmon_mv.page_point h2 {
    width: 75%;
  }
}
@media (max-width: 599px) {
  .commmon_mv.page_point h2 {
    width: 90%;
  }
}

.btn-entry {
  margin-top: 60px;
}
@media (max-width: 599px) {
  .btn-entry {
    margin-top: 30px;
  }
}
.btn-entry span, .btn-entry a {
  width: 500px;
  display: block;
  margin: 0 auto;
  background-color: #3297d1;
  text-align: center;
  position: relative;
  font-size: 20px;
  padding: 15px 0;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .btn-entry span, .btn-entry a {
    width: 100%;
    border-radius: 5px;
  }
}
.btn-entry span .entry, .btn-entry a .entry {
  color: #fff;
  font-weight: bold;
  font-size: 26px;
}
@media (max-width: 599px) {
  .btn-entry span .entry, .btn-entry a .entry {
    font-size: 14px;
  }
}
.btn-entry span .easy, .btn-entry a .easy {
  font-size: 20px;
  color: #fee300;
  font-weight: bold;
}
@media (max-width: 599px) {
  .btn-entry span .easy, .btn-entry a .easy {
    font-size: 12px;
  }
}
.btn-entry span .easy.easy-white, .btn-entry a .easy.easy-white {
  color: #fff;
}

.salary,
.working-access {
  border-bottom: 1px dotted #333;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.salary .svg-icon,
.working-access .svg-icon,
.working-time .svg-icon {
  width: 20px;
  color: #777;
}
@media (max-width: 599px) {
  .salary .svg-icon,
  .working-access .svg-icon,
  .working-time .svg-icon {
    width: 14px;
  }
}
.salary .svg-icon svg,
.working-access .svg-icon svg,
.working-time .svg-icon svg {
  color: #777;
}
.salary p,
.working-access p,
.working-time p {
  margin-left: 15px;
}
@media (max-width: 599px) {
  .salary p,
  .working-access p,
  .working-time p {
    font-size: 13px;
    margin-left: 10px;
  }
}

.mb_0 {
  margin-bottom: 0 !important;
}

/* 下層ページ共通 */
/* header */
.recruit_header {
  background-color: #fff;
}

/* footer */
footer {
  padding: 20px 0;
  text-align: center;
  background-color: #fff;
}
footer p {
  font-size: 12px;
  color: #e11111;
}
footer p a {
  color: #e11111;
}

/* top */
.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}
.bg img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit {
  padding: 60px 0;
  background: rgba(225, 17, 17, 0.7);
  color: #fff;
}
.recruit a {
  color: #fff;
}
.recruit .recruit_ttl {
  text-align: center;
  margin-bottom: 30px;
}
.recruit .recruit_ttl h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 100;
}
.recruit .recruit_ttl h2 span {
  font-size: 12px;
  display: block;
}
.recruit .desc {
  margin-bottom: 40px;
}
.recruit .recruit_list .recruit_item {
  margin-bottom: 30px;
}
.recruit .recruit_list .recruit_item h3 {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-bottom: solid 1px #fff;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .recruit .recruit_list .recruit_item h3 {
    font-size: 14px;
    text-align: center;
    padding-left: 0;
  }
}
.recruit .recruit_list .recruit_item .recruit_box {
  background-color: #fff;
}
.recruit .recruit_list .recruit_item .recruit_box .link {
  background-color: #e5e1da;
  padding: 20px 0;
}
.recruit .recruit_list .recruit_item .recruit_box .link a {
  width: 340px;
  display: block;
  margin: 0 auto;
  background-color: #3297d1;
  text-align: center;
  position: relative;
  font-size: 20px;
  padding: 15px 0;
}
.recruit .recruit_list .recruit_item .recruit_box .link a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  transform: rotate(-45deg);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: 4px;
}
.recruit .recruit_list .recruit_item .recruit_box .link a::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  transform: rotate(45deg);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
}
@media (max-width: 599px) {
  .recruit .recruit_list .recruit_item .recruit_box .link a {
    width: 220px;
    font-size: 14px;
  }
}
.recruit .recruit_list .recruit_item .recruit_img,
.recruit .recruit_list .recruit_item .recruit_info {
  width: 50%;
}
@media (max-width: 599px) {
  .recruit .recruit_list .recruit_item .recruit_img,
  .recruit .recruit_list .recruit_item .recruit_info {
    width: 100%;
  }
}
.recruit .recruit_list .recruit_item .recruit_img {
  background-color: #f1f1f1;
}
.recruit .recruit_list .recruit_item .recruit_img a {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  display: block;
  text-decoration: underline;
  padding-left: 30px;
  padding-top: 20px;
}
@media (max-width: 599px) {
  .recruit .recruit_list .recruit_item .recruit_img a {
    font-size: 15px;
    padding: 20px;
  }
}
.recruit .recruit_list .recruit_item .recruit_img img {
  width: calc(100% - 50px);
  margin: 0 auto;
  display: none;
}
@media (max-width: 599px) {
  .recruit .recruit_list .recruit_item .recruit_img img {
    width: calc(100% - 20px);
  }
}
.recruit .recruit_list .recruit_item .recruit_img img:first-child {
  display: block;
}
.recruit .recruit_list .recruit_item .recruit_info {
  padding: 20px 30px;
  color: #333;
}
@media (max-width: 599px) {
  .recruit .recruit_list .recruit_item .recruit_info {
    padding: 20px;
  }
}
.recruit .recruit_list .recruit_item .recruit_info a {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
  text-decoration: underline;
}
@media (max-width: 599px) {
  .recruit .recruit_list .recruit_item .recruit_info a {
    font-size: 15px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.8s forwards 0.1s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.recruit_header {
  text-align: center;
  position: relative;
}
.recruit_header h1 {
  font-size: 20px;
  padding: 10px 0;
}
.recruit_header .back_arrow {
  position: absolute;
  left: 20px;
  top: 56%;
  width: 15px;
  transform: translateY(-50%);
}

.recruit_detail {
  background-color: #e11111;
  padding: 40px 0;
}
.recruit_detail .job-ttl {
  font-size: 28px;
  color: #e11111;
  margin-bottom: 30px;
  font-weight: normal;
}
@media (max-width: 599px) {
  .recruit_detail .job-ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.recruit_detail .recruit_detail_box {
  background-color: #fff;
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .recruit_detail .recruit_detail_box {
    width: 90%;
  }
}
.recruit_detail .job-box {
  padding: 55px 60px;
  border-bottom: 2px solid #e11111;
}
@media (max-width: 599px) {
  .recruit_detail .job-box {
    padding: 15px;
  }
}
.recruit_detail .svg-icon {
  width: 20px;
  margin-right: 20px;
}
.recruit_detail .job-table .job-table-row {
  border-top: 1px solid #ccc;
}
.recruit_detail .job-table .job-table-row:last-child {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 599px) {
  .recruit_detail .job-table .job-table-row:last-child {
    border: none;
  }
  .recruit_detail .job-table .job-table-row:last-child .right {
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 599px) {
  .recruit_detail .job-table .job-table-row {
    border: none;
  }
}
.recruit_detail .job-table .left {
  width: 20%;
  padding: 25px 20px;
  background-color: #eee;
}
@media (max-width: 599px) {
  .recruit_detail .job-table .left {
    width: 100%;
    border: 1px solid #ccc;
    border-bottom: none;
    padding: 15px;
  }
}
.recruit_detail .job-table .left p {
  font-weight: bold;
}
.recruit_detail .job-table .right {
  width: 80%;
  padding: 25px 20px;
  position: relative;
}
@media (max-width: 599px) {
  .recruit_detail .job-table .right {
    width: 100%;
    border: 1px solid #ccc;
    border-bottom: none;
    padding: 15px;
  }
}
.recruit_detail .job-table .right .map {
  position: absolute;
  right: 10px;
  top: 50%;
}
@media (max-width: 599px) {
  .recruit_detail .job-table .right .map {
    position: unset;
    top: none;
    right: none;
    margin-top: 30px;
  }
}
.recruit_detail .job-table .right .map span {
  color: #3297d1;
}
.recruit_detail .job-table .right .map span svg {
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 11px;
  fill: #3297d1;
}
.recruit_detail .store-name {
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  .recruit_detail .store-name {
    margin-bottom: 10px;
  }
  .recruit_detail .store-name p {
    font-size: 13px;
  }
}
.recruit_detail .job-title {
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  .recruit_detail .job-title h2 {
    font-size: 14px;
  }
}
.recruit_detail .job-img {
  width: 500px;
  margin: 0 auto 15px;
}
@media (max-width: 599px) {
  .recruit_detail .job-img {
    width: 90%;
    margin: 0 auto 15px;
  }
}
.recruit_detail .job-img .job-img_slide {
  margin-bottom: 10px;
}
.recruit_detail .job-salary,
.recruit_detail .job-time {
  margin-bottom: 10px;
  flex-wrap: nowrap;
}
.recruit_detail .job-about .job-about-item {
  margin-bottom: 45px;
}
.recruit_detail .job-about .job-about-item:last-child {
  margin-bottom: 0;
}
.recruit_detail .job-about .job-about-item h3 {
  margin-bottom: 20px;
  font-size: 20px;
}
@media (max-width: 599px) {
  .recruit_detail .job-about .job-about-item h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .recruit_detail .job-about .job-about-item p {
    font-size: 14px;
  }
}
.recruit_detail .job-about .job-about-item .job-tag li {
  display: inline-block;
  background-color: #f0ebe3;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 4px 10px;
  border-radius: 4px;
}
@media (max-width: 599px) {
  .recruit_detail .job-about .job-about-item .job-tag li {
    font-size: 14px;
  }
}
.recruit_detail .company .updated-at {
  margin-top: 60px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.recruit_detail .company .updated-at p {
  font-size: 14px;
}
.bread-crumb {
  margin-top: 20px;
}
.bread-crumb ol {
  background-color: #fff;
  font-size: 11px;
}
.bread-crumb ol li {
  display: inline;
}
.bread-crumb ol li:last-child::before {
  content: "＞";
  margin: 0 3px;
}
.bread-crumb ol li a {
  color: #3297d1;
  text-decoration: underline;
}

.shoperea {
  background-color: #ececec;
  padding: 30px 0px 60px;
}
.shoperea .shoperea-box {
  background-color: #fff;
  padding: 30px 60px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .shoperea .shoperea-box {
    padding: 10px 20px;
  }
  .shoperea .shoperea-box .shoperea-acc p {
    font-size: 11px;
  }
  .shoperea .shoperea-box .shoperea-acc h3 {
    font-size: 11px;
  }
  .shoperea .shoperea-box .shoperea-acc .shopArea_toggleBtn {
    position: absolute;
    top: 50%;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 4px;
    cursor: pointer;
  }
}
.shoperea .shoperea-box .shoperea-acc {
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}
.shoperea .shoperea-box .shoperea-acc.active .shopArea_toggleBtn::after {
  transform: rotate(0);
  top: 49%;
  right: 19%;
}
@media (max-width: 599px) {
  .shoperea .shoperea-box .shoperea-acc {
    margin-bottom: 10px;
  }
}
.shoperea .shoperea-box .shoperea-acc .shopArea_toggleBtn {
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid #888;
  border-radius: 4px;
  transform: translateY(-50%);
}
.shoperea .shoperea-box .shoperea-acc .shopArea_toggleBtn::before, .shoperea .shoperea-box .shoperea-acc .shopArea_toggleBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  background-color: #888;
  width: 20px;
  height: 3px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.shoperea .shoperea-box .shoperea-acc .shopArea_toggleBtn::after {
  transform: rotate(90deg);
  right: 19%;
  top: 48%;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .shoperea .shoperea-box-form {
    padding: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.shoperea .form-table .form-age .right .select {
  margin-right: 10px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-age .right .select {
    margin-right: 5px;
  }
}
.shoperea .form-table .form-age .right .year_slant {
  margin-right: 10px;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-age .right .year_slant {
    margin-right: 5px;
  }
}
.shoperea .form-table .form-age .right #user_year {
  width: 100px;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-age .right #user_year {
    width: 65px;
  }
}
.shoperea .form-table .form-age .right #user_month,
.shoperea .form-table .form-age .right #user_day {
  width: 80px;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-age .right #user_month,
  .shoperea .form-table .form-age .right #user_day {
    width: 48px;
  }
}
.shoperea .form-table .form-row {
  border-top: 1px solid #ccc;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row {
    border: none;
  }
}
.shoperea .form-table .form-row:last-child {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row:last-child {
    border: none;
  }
}
.shoperea .form-table .form-row.form-gender .right .form_checkbox {
  margin-right: 30px;
}
.shoperea .form-table .form-row.form-gender .right .form_checkbox:last-child {
  margin-right: 0;
}
.shoperea .form-table .form-row.form-gender .right label {
  cursor: pointer;
}
.shoperea .form-table .form-row.form-gender .right input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row.form-gender .right input {
    height: 16px;
    width: 16px;
  }
}
.shoperea .form-table .form-row.form-gender .right .form_checkbox_body {
  display: inline-block;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row.form-gender .right .form_checkbox_body {
    font-size: 12px;
  }
}
.shoperea .form-table .form-row .left,
.shoperea .form-table .form-row .right {
  padding: 15px 20px;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row .left,
  .shoperea .form-table .form-row .right {
    padding: 8px 15px;
  }
}
.shoperea .form-table .form-row .left {
  width: 25%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row .left {
    background-color: #fff;
    display: block;
    padding-right: 0;
  }
}
.shoperea .form-table .form-row .left p {
  font-weight: bold;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row .left p {
    font-size: 12px;
  }
}
.shoperea .form-table .form-row .left p .required_text {
  background-color: #fc6356;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  padding: 3px;
  padding-top: 1px;
  font-weight: normal;
  margin-left: 6px;
}
.shoperea .form-table .form-row .left p .required_text.required_text_gray {
  background-color: #888888;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row .left p .required_text {
    display: block;
    font-size: 8px;
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
    text-align: center;
  }
}
.shoperea .form-table .form-row .right {
  width: 75%;
  position: relative;
}
.shoperea .form-table .form-row .right input {
  width: 100%;
  padding: 13px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #555;
}
.shoperea .form-table .form-row .right select {
  width: 100%;
  cursor: pointer;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #555;
}
@media (max-width: 599px) {
  .shoperea .form-table .form-row .right select {
    padding: 8px 5px;
  }
}
@media (max-width: 599px) {
  .shoperea .btn-entry {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
.shoperea button {
  border: none;
  display: block;
  margin: 60px auto 0;
}

.thanks-page {
  background-color: #ececec;
  padding: 30px 0px 60px;
}
.thanks-page .thanks-box {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 599px) {
  .thanks-page .thanks-box {
    padding: 30px 0;
  }
}
.thanks-page .thanks-box h2 {
  background: url(../images/job/icon_check.png) 20px 0 no-repeat;
  background-size: 30px;
  color: #8cb400;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 42px;
  padding-left: 60px;
}
@media (max-width: 599px) {
  .thanks-page .thanks-box h2 {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.thanks-page .thanks-box p {
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .thanks-page .thanks-box p {
    font-size: 12px;
    margin-bottom: 40px;
  }
}
.thanks-page .thanks-box a {
  color: #0892c7;
}
@media (max-width: 599px) {
  .thanks-page .thanks-box a {
    font-size: 14px;
  }
}

.required_bg_pink {
  font-size: 12px;
  min-width: 0;
  font-weight: bold;
  padding: 2px 5px;
  top: -2px;
  width: 170px;
  background-color: #ffeeec;
  border: 1px solid #fc6365;
  border-radius: 4px;
  color: #fc6356;
  max-width: 500px;
  position: absolute;
  right: 30px;
  text-align: left;
  transform: translate(0, -50%);
}
.required_bg_pink::before {
  background-color: #ffeeec;
  border-bottom: 1px solid #fc6365;
  border-left: 1px solid #fc6365;
  bottom: -4.8px;
  content: "";
  height: 8px;
  position: absolute;
  right: 12px;
  transform: rotate(-45deg);
  width: 8px;
}

.select .required_bg_pink {
  right: -10px;
}/*# sourceMappingURL=style.css.map */