@charset "UTF-8";
/**
*
* 共通書式
*
*/
* {
  box-sizing: border-box;
  color: #000;
}

body {
  background-color: #f4f8fa;
  width: 100%;
  margin: 0;
}

select {
  color: #000;
}

p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

.hidden {
  height: 0 !important;
  overflow-y: hidden;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}

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

.radius-1em {
  border-radius: 1em;
}

.button-disabled {
  color: #333 !important;
  background-color: #999 !important;
  pointer-events: none !important;
  cursor: default !important;
}

.section-normal {
  background-color: white;
  margin: 20px;
  padding: 20px;
}
.section-normal p {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

@media screen and (min-width: 850px) {
  .section-normal {
    width: 720px;
    margin: 20px auto;
  }
  .sp_only {
    display: none;
  }
}
.button-color-red {
  color: white;
  background-color: #e60012;
  font-weight: bold;
  border: none;
  letter-spacing: 0.1em;
}

.button-color-green {
  color: white;
  background-color: rgb(72, 176, 52);
  font-weight: bold;
  border: none;
  letter-spacing: 0.1em;
}

.button-color-navy {
  color: white;
  background-color: #e60012;
  font-weight: bold;
  border: none;
  letter-spacing: 0.1em;
}

.button-color-gray {
  color: #333;
  background-color: #efefef;
  font-weight: bold;
  border: none;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 850px) {
  .pc-indent {
    margin-left: 3em;
  }
}
@media screen and (min-width: 850px) {
  .only-mobile {
    display: none;
  }
}
/**
*
* ヘッダー
*
*/
.header-default {
  width: 100%;
  height: 60px;
  padding: 15px 0;
  background-color: #e60012;
}
.header-default img.logo {
  width: 75%;
  max-width: 95px;
  margin: 5px;
  vertical-align: sub;
}
.header-default .title {
  margin: 5px 5px 5px 20px;
  color: #fff;
  font-size: 0.8em;
}

@media screen and (min-width: 850px) {
  .inner {
    width: 720px;
    margin: 0 auto;
  }
}
/**
*
* フッター
*
*/
.footer-default {
  margin-top: 50px;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #e60012;
  text-align: center;
}
.footer-default img.logo {
  width: 100px;
  margin: 20px auto;
}

.copy-right p {
  color: #fff;
  font-size: 6px;
  margin: 0 10px;
}

@media screen and (min-width: 850px) {
  .copy-right p {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 10px;
  }
}
/**
*
* 進行状況バー
*
*/
.progressbar {
  position: relative;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 25%;
  color: #575757;
  font-weight: bold;
  counter-increment: steps;
  font-size: 10px;
}
.progressbar li:before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 7px auto 10px auto;
  content: "";
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #efefef;
  content: counter(steps);
}
.progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #efefef;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active, .progressbar li.complete {
  color: #e60012;
}
.progressbar li.active:before, .progressbar li.complete:before {
  background-color: #e60012;
  color: #FFF;
}
.progressbar li.active:after, .progressbar li.complete:after {
  background-color: #e60012;
}

@media screen and (min-width: 850px) {
  .progressbar {
    width: 720px;
    margin: 20px auto;
  }
}
/**
*
* 入力フォーム
*
*/
h1 {
  margin: 3em 0 0.5em 0;
  text-align: center;
  color: #e60012;
  font-size: 1.25em;
}

.flash_message {
  background: #ffe;
  padding: 10px;
  margin-bottom: 10px;
}
.flash_message p {
  font-size: 12px;
  text-align: center;
  margin: 3px auto;
  color: #f00;
  cursor: pointer;
}
.flash_message p::before {
  content: "※";
  color: #f00;
}

small {
  color: #575757;
}

@media screen and (min-width: 850px) {
  .flash_message {
    width: 650px;
    margin: 0 auto;
  }
}
.warning_target {
  background-color: #fdd !important;
}

.ui-multiselect-menu.work_categories_menu {
  max-height: 150px;
  max-width: 500px;
  overflow-y: scroll;
}

.table-normal {
  border-collapse: collapse;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  width: 100%;
}
.table-normal p {
  margin: 0;
  font-weight: normal;
}
.table-normal p label {
  cursor: pointer;
}
.table-normal input[type=submit], .table-normal input[type=text], .table-normal input[type=number], .table-normal input[type=email] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
  border: none;
}
.table-normal select, .table-normal textarea, .table-normal button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
  border: none;
}
.table-normal input[type=text], .table-normal input[type=number], .table-normal input[type=email] {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 95%;
  transition: 0.8s;
  border-radius: 0;
  margin-left: 2%;
  margin-right: auto;
}
.table-normal select, .table-normal textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 95%;
  transition: 0.8s;
  border-radius: 0;
  margin-left: 2%;
  margin-right: auto;
}
.table-normal input[type=number] {
  display: inline-block;
  width: 4em;
  margin-left: 1em;
  margin-right: 1em;
}
.table-normal textarea {
  height: 5em;
}
.table-normal input[type=text]:focus, .table-normal input[type=number]:focus, .table-normal input[type=email]:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.table-normal select:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.table-normal textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.table-normal textarea[name=content] {
  display: inline-block;
  width: 100%;
  height: 200px;
}
.table-normal .occupation input[type=submit], .table-normal button {
  background-image: url(images/ui-icons_444444_triangle_under_16x16.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
.table-normal input[type=submit], .table-normal button {
  height: auto;
  min-height: 3em;
  max-width: 500px;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
}
.table-normal input[type=date] {
  position: relative;
  padding: 10px;
  width: 200px;
  height: 36px;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 500;
}
.table-normal input::-moz-placeholder {
  color: #ccc;
}
.table-normal input::placeholder {
  color: #ccc;
}
.table-normal textarea::-moz-placeholder {
  color: #ccc;
}
.table-normal textarea::placeholder {
  color: #ccc;
}
.table-normal ::-webkit-input-placeholder, .table-normal ::-moz-placeholder, .table-normal :-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.table-normal select {
  display: inline-block;
  width: 80%;
  background-image: url(images/ui-icons_444444_triangle_under_16x16.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  transition: none;
  text-align: center;
  padding-right: 2em;
  cursor: pointer;
}
.table-normal select.work_days {
  width: 20%;
}
.table-normal select:focus {
  background-image: url(images/ui-icons_444444_triangle_under_16x16.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  transition: none;
}
.table-normal .checkbox {
  text-align: center;
  line-height: 2.5em;
}
.table-normal .checkbox label {
  margin-right: 5px;
  display: inline-block;
  cursor: pointer;
}
.table-normal .checkbox label input {
  display: none;
}
.table-normal .checkbox label span {
  color: #333;
  background: #f6f6f6;
  font-size: 13px;
  border: none;
  border-radius: 5px;
  padding: 5px 20px;
}
.table-normal .checkbox label input:checked + span {
  color: #000;
  background: #ccc;
  border: none;
}
.table-normal .checkbox label input:checked + span::before {
  content: "✓";
  position: absolute;
  margin: 4px auto auto -1.2em;
}
.table-normal .triangle {
  position: absolute;
  margin-top: 0.8em;
  margin-left: -2em;
}
.table-normal th, .table-normal td {
  display: block;
  width: 100%;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}
.table-normal th {
  background: #efefef;
  color: #575757;
  position: relative;
  text-align: left;
  padding: 5px 15px 5px 20px;
}
.table-normal td {
  background-color: white;
  padding: 20px 5px;
  text-align: center;
}
.table-normal ul {
  list-style-type: none;
  padding: 5px;
  margin: 5px auto;
}
.table-normal li {
  text-align: left;
  margin: 5px auto;
}
.table-normal #birth_year {
  min-width: auto;
  width: 6em;
  margin-bottom: 0.5em;
}
.table-normal #birth_month, .table-normal #birth_day {
  min-width: auto;
  width: 4em;
  margin-bottom: 0.5em;
}
.table-normal #prefecture {
  min-width: auto;
  width: 16em;
  text-align: left;
}
.table-normal #media {
  min-width: auto;
  width: 60%;
}
.table-normal .back-button {
  height: 3em;
  border: none;
  width: 10em;
  color: #000;
  cursor: pointer;
}
.table-normal .require::before {
  content: "Required（必須）";
  color: #fff;
  background: #e60012;
  padding: 1px 5px;
  margin-right: 5px;
  font-size: 0.7em;
  border-radius: 3px;
  display: block;
  width: 100px;
}
.table-normal .detail {
  margin-left: 1em;
}
.table-normal.confirm tr td ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px dotted #ccc;
  padding: 0.5em;
}
.table-normal.confirm tr td ul li span:nth-child(1) {
  font-weight: bold;
  width: 100%;
  background: #f5f5f5;
  padding: 0.2em;
  color: #333;
}
.table-normal.confirm tr td ul li span:nth-child(1) .pc_only {
  display: none;
}
.table-normal.confirm tr td ul li span:nth-child(2) {
  width: 100%;
  padding: 0.2em;
  margin: 0;
  color: #333;
}

@media screen and (min-width: 850px) {
  .table-normal {
    width: 650px;
    margin: 0 auto;
  }
  .table-normal.confirm tr td ul li {
    flex-wrap: nowrap;
  }
  .table-normal.confirm tr td ul li span:nth-child(1) {
    width: 20%;
    background: transparent;
  }
  .table-normal.confirm tr td ul li span:nth-child(1) .pc_only {
    display: block;
  }
  .table-normal.confirm tr td ul li span:nth-child(2) {
    width: calc(80% - 1em);
    padding-left: 1em;
  }
}
.th-bg-gray th {
  background: #dfdfdf;
}

/**
*
* 完了画面
*
*/
.return-top {
  margin: 15px auto;
  padding: 0 1em;
}

/**
*
* 規約
*
*/
.link-terms {
  color: #22f;
  text-decoration-line: underline;
  cursor: pointer;
}

.modal-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 5;
}

.terms-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(153, 153, 153, 0.6);
  border-radius: 0.5em;
  padding: 5vh 0;
  z-index: 10;
}
.terms-modal .close_button {
  width: 10em;
  color: #555;
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 5px 3px 5px 11px;
  border-radius: 0.5em;
  cursor: pointer;
}

@media screen and (min-width: 850px) {
  .terms-modal {
    width: 900px;
    height: 86vh;
    top: calc(50% - 43vh);
    left: calc(50% - 450px);
  }
}
.terms-box {
  width: auto;
  height: 60vh;
  overflow: scroll;
  border: 1px solid #efefef;
  margin-top: 20px;
  padding: 1em;
}
.terms-box span.terms {
  color: #888;
  font-size: 0.7em;
}/*# sourceMappingURL=default.css.map */