@charset "UTF-8";
.c-acBody {
  display: none;
}

.c-acList__item > a {
  display: block;
}

.c-acList .c-acTrigger {
  position: relative;
  cursor: pointer;
}

:placeholder-shown {
  color: #afb1B3;
}

::-webkit-input-placeholder {
  color: #afb1B3;
}

:-moz-placeholder {
  color: #afb1B3;
  opacity: 1;
}

::-moz-placeholder {
  color: #afb1B3;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #afb1B3;
}

.c-formBox input[type='radio'],
.c-formBox input[type='checkbox'] {
  width: 0;
  height: 0;
  float: left;
  margin: 0;
}

.c-formBox input[type='checkbox'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-input, .c-textarea {
  max-width: 180px;
  border: 1px solid #eeeeee;
  -webkit-transition: border-color 0.6s cubic-bezier(0.24, 1, 0.32, 1);
  transition: border-color 0.6s cubic-bezier(0.24, 1, 0.32, 1);
  padding: 1em 1em;
  color: #494949;
  background: #eeeeee;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
}

.c-input:focus, .c-textarea:focus {
  -webkit-box-shadow: 0 0 4px rgba(3, 168, 77, 0.8);
          box-shadow: 0 0 4px rgba(3, 168, 77, 0.8);
}

.c-input.is-error, .is-error.c-textarea {
  border: 1px solid #ef1e1e;
  background: #fddcdc;
}

.c-input.-size_full, .-size_full.c-textarea {
  max-width: none;
  width: 100%;
}

.c-input.-size_m, .-size_m.c-textarea {
  max-width: none;
  width: 240px;
}

.c-input.-size_s, .-size_s.c-textarea {
  max-width: none;
  width: 120px;
}

.c-textarea {
  resize: vertical;
  width: 100%;
  min-height: 10em;
  -webkit-transition: background 0.3s cubic-bezier(0.24, 1, 0.32, 1);
  transition: background 0.3s cubic-bezier(0.24, 1, 0.32, 1);
  display: block;
  max-width: none;
}

.c-textarea:disabled {
  background: #F4F5F5;
}

.c-select-wrap {
  position: relative;
  display: block;
}

.c-select-wrap:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 5px 5px 0 5px;
  border-top-color: #03a84d;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -2px;
  pointer-events: none;
}

.c-select-wrap.-size_full {
  max-width: none;
  width: 100%;
}

.c-select-wrap.-size_m {
  max-width: none;
  width: 240px;
}

.c-select-wrap.-size_s {
  max-width: none;
  width: 120px;
}

.c-select {
  color: #494949;
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #afb1B3;
  padding: 0.8em 1em;
  -webkit-transition: border-color 0.6s cubic-bezier(0.24, 1, 0.32, 1);
  transition: border-color 0.6s cubic-bezier(0.24, 1, 0.32, 1);
  cursor: pointer;
  background: #fff;
}

.c-select:focus {
  border-color: #626567;
}

.c-select::-ms-expand {
  display: none;
}

.c-select.is-error {
  border: 1px solid #ef1e1e;
  background: #fddcdc;
}

.c-formYmd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-formYmd > * {
  padding-right: 20px;
  min-width: 20%;
}

.c-formYmd > *:first-child {
  min-width: 30%;
}

.c-formYmd .c-select-wrap {
  display: block;
}

.c-radio {
  position: relative;
  display: inline-block;
  padding: 0 5px 0 25px;
  vertical-align: middle;
  cursor: pointer;
}

.c-radio.is-error {
  color: #ef1e1e;
}

.c-radio:before, .c-radio:after {
  position: absolute;
  display: block;
  content: '';
  border-radius: 50%;
}

.c-radio:before {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: 0;
  border: 1px solid transparent;
  background: #F4F5F5;
  border: 1px solid #afb1B3;
  -webkit-transition-property: background, border;
  transition-property: background, border;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
}

input[type='radio']:checked + .c-radio:before {
  background: #fff;
  border-color: #afb1B3;
}

.c-radio:after {
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  left: 4px;
  -webkit-transition-property: background;
  transition-property: background;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
}

input[type='radio']:checked + .c-radio:after {
  background: #03a84d;
}

.c-radio-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}

.c-radio-list.is-error {
  color: #ef1e1e;
}

.c-radio-list.-size_M > * {
  min-width: 29%;
}

.c-radio-list__item {
  margin-right: 25px;
  line-height: 1.5;
}

.c-radio-list__item:last-child {
  margin-right: 0;
}

.c-radio-list--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-radio-list--column .c-radio-list__item {
  margin-right: 0;
  margin-bottom: 10px;
}

.c-radio-list--column .c-radio-list__item:last-child {
  margin-bottom: 0;
}

.c-checkbox {
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
  position: relative;
  display: inline-block;
  padding: 10px 21px 10px 50px;
  vertical-align: middle;
  cursor: pointer;
}

.c-checkbox:after {
  -webkit-transition-property: border, background;
  transition-property: border, background;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  background: #eee;
  content: '';
  border: 2px solid #9a9a9a;
}

input[type='checkbox']:checked + .c-checkbox:after {
  background: #fff;
  border-color: #9a9a9a;
}

.c-checkbox:before {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  left: 14px;
  display: block;
  width: 6px;
  height: 16px;
  border-right: 3px solid #03a84d;
  border-bottom: 3px solid #03a84d;
  content: '';
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

input[type='checkbox']:checked + .c-checkbox:before {
  opacity: 1;
}

.c-check-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}

.c-check-list.is-error {
  color: #ef1e1e;
}

.c-check-list--half > * {
  min-width: 50%;
}

.c-check-list--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: -0.5em;
}

.c-check-list--column .c-check-list__item {
  margin-bottom: 0.5em;
  width: 100%;
}

.c-check-list__item {
  margin-right: 25px;
  line-height: 1.5;
}

.c-check-list__item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.c-file {
  position: relative;
}

.c-file .c-file_label {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  height: 40px;
}

.c-file_data {
  display: none;
}

.c-file_btn {
  margin-right: 15px;
  width: 120px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-file_btn > span {
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-file_btn > span:before {
  display: none;
}

.c-file_txt {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  pointer-events: none;
  height: 100%;
}

.c-file_delete {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  background: #48fc99;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -5px;
  cursor: pointer;
  -webkit-transition: background 0.6s cubic-bezier(0.24, 1, 0.32, 1);
  transition: background 0.6s cubic-bezier(0.24, 1, 0.32, 1);
  border: 1px solid transparent;
}

.c-file_delete:before {
  content: '\e870';
  font-family: 'Kosugi', sans-serif;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: color 0.6s cubic-bezier(0.24, 1, 0.32, 1);
  transition: color 0.6s cubic-bezier(0.24, 1, 0.32, 1);
}

.c-file_delete:hover {
  background: #25fb85;
}

.c-form-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-form-name__block ~ .c-form-name__block {
  margin-left: 37px;
}

.c-form-name input {
  width: 12em;
}

.c-form-tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-form-tel__block {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-form-tel__block ~ .c-form-tel__block {
  margin-left: 37px;
  position: relative;
}

.c-form-tel__block ~ .c-form-tel__block:before {
  content: '-';
  font-weight: bold;
  position: absolute;
  left: calc(-18.5px - 0.2em);
  top: calc(50% - 0.5em);
}

.c-form-zip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-form-zip__block ~ .c-form-zip__block {
  margin-left: 37px;
  position: relative;
}

.c-form-zip__block ~ .c-form-zip__block:before {
  content: '-';
  font-weight: bold;
  position: absolute;
  left: calc(-18.5px - 0.2em);
  top: calc(50% - 0.5em);
}

.c-form-zip__block:nth-child(1) input {
  width: 5em;
}

.c-form-zip__block:nth-child(2) input {
  width: 6em;
}

.c-form-zip__btn {
  height: 50px;
  border-radius: 5px;
  letter-spacing: 0;
  padding: 0 2em;
  margin-left: 20px;
}

.c-formBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-formBox.-top {
  padding-top: 30px;
}

.c-formBox__ttl {
  width: 280px;
  font-weight: 700;
  padding: 13px 15px 0;
  margin-right: 15px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
              -ms-grid-row-align: stretch;
          align-self: stretch;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-formBox__ttl > * {
  font-weight: 700;
  /*20200327追加*/
  display: inline;
}

.c-formBox__ttl--req:before {
  display: none;
}

.c-formBox__ttl--req:after {
  content: '必須';
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  background: #f75555;
  padding: .4em .4em;
  border-radius: 3px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  line-height: 1;
  margin-bottom: 0.5em;
  border-radius: 15px;
}
.c-formBox__ttl--free:before {
  content: '任意';
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  border: 1px solid #03a84d;
  background: #03a84d;
  padding: .4em .8em;
  border-radius: 3px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  line-height: 1;
  margin-bottom: 0.5em;
  border-radius: 10px;
}

.c-formBox__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 5px 13px 13px 0;
  line-height: 1.5;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
              -ms-grid-row-align: stretch;
          align-self: stretch;
}

.c-formBox__txt {
  margin-bottom: 15px;
}

.c-formBox.-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.c-formBox.-wrap > * {
  width: 100%;
}

.c-formBox.-wrap .c-formBox__ttl {
  margin-bottom: 15px;
  padding: 0;
  border-bottom: none;
}

.c-formBox.-wrap .c-formBox__body {
  padding: 0;
}

.c-formName {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-formName > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
}

.c-formName_first {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-formName_last {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 19px;
}

.c-formErrorMessage {
  color: #ef1e1e;
  margin-top: 0.5em;
}

.c-formErrorMessage > * {
  position: relative;
  padding-left: 15px;
  line-height: 2;
  display: table;
  font-weight: 500;
}

.c-formErrorMessage > *:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ef1e1e;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

.c-formflex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

header .contL {
  width: auto;
}

header .contL .sns {
  margin-left: 10px;
}

#regist .text2 {
  width: 96px;
}

#regist .line4 {
  padding: 37px 180px 0;
}

header .contL .headerNav {
  margin-bottom: 0;
}

header .contL .headerNav li a {
  background: #FF9F31;
}

header .wrapper {
  height: auto;
  padding-bottom: 15px;
}

.headerWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
}

.headerLogoWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.headerLogoWrap .logo {
  width: 70px;
  float: none;
  padding: 0;
  margin-right: 20px;
}

.headerLogoWrap .logo img {
  max-width: 100%;
  height: auto;
}

.headerLogoWrap .description,
.headerLogoWrap .member {
  margin-top: 0;
  width: auto;
  float: none;
  position: static;
}

.headerNavWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.headerBtnMypage a {
  background: #fe8e4d;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  padding: 0.7em 1.8em;
  display: block;
  text-decoration: none;
}

.headerBtnMypage a:hover {
  background: #ffa069;
}

.headerNavTxt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 20px;
}

.headerNavTxt a {
  color: #6a6a6a;
  text-decoration: none;
  font-size: 13px;
}

.headerNavTxt a:hover {
  text-decoration: underline;
}

.headerNavTxt a:before {
  content: '>';
}

.headerNavTxt li ~ li {
  margin-left: 10px;
}

.u-spacer-40 {
  margin-top: 40px;
}

.p-panel {
  background: #f5f5f5;
  padding: 30px;
}

.p-panel__heading {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.p-panel__body {
  margin-top: 20px;
}

.p-panel__body p {
  line-height: 1.5;
}

.p-panel__body > * ~ * {
  margin-top: 1rem;
}

.c-list--disc > li {
  line-height: 1.5;
  list-style: disc;
  margin-left: 1.5em;
}

.c-list > li ~ li {
  margin-top: 5px;
}

.wrapper.mypage-profile-edit-wrapper {
  max-width: 700px;
}

.serviceLi {
  margin-bottom: 15px;
}

.searchBox-small .text {
  width: 180px;
}

.sidemenu-img-box {
  overflow: hidden;
  margin-bottom: 15px;
}

.sidemenu-img-box img {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.sidemenu-img-box p {
  line-height: 1.5;
}

.font-color-white {
  color: #fff !important;
}

#taiou .col .noData p {
  padding-top: 20px;
}

/* Navigation */
#globalNav {
  background: #fff;
}

#globalNav .menu {
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

#globalNav .menu li {
  float: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  text-align: center;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#globalNav .menu li:before {
  content: '';
  width: calc(100% - 2px);
  height: 2px;
  background: #ccc;
  position: absolute;
  bottom: 5px;
  left: 1px;
}

#globalNav .menu li a {
  color: #000;
  line-height: 1;
  padding: 20px 24px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#globalNav .menu li a:before {
  content: '';
  display: block;
  width: 5px;
  height: 8px;
  background: url("/img/v3/icon_arrow_right.png") no-repeat center center/contain;
  margin-right: 10px;
}

#globalNav .menu li a:hover {
  background: #f5f5f5;
}

#globalNav li.current-menu-item:before {
  background: #00A84D;
}

#globalNav li.current-menu-item a {
  background: transparent;
}

/* main-visual */
.p-main-visual {
  position: relative;
  overflow: hidden;
  background: url("/img/v3/mv_bg.jpg") no-repeat center center/cover;
}

.p-main-visual img {
  max-width: 100%;
}

.p-main-visual__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-main-visual__inner {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 57px 20px 20px;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.p-main-visual__inner.-type2 {
  padding: 20px 0 20px;
  position: relative;
}

.p-main-visual__takeisou {
  position: absolute;
  bottom: 0;
  left: calc(50% - 460px);
  pointer-events: none;
  z-index: 2;
}

.p-main-visual__takeisou img {
  max-width: 100%;
  vertical-align: bottom;
}

.p-main-visual__text {
  position: absolute;
  top: 66px;
  left: calc(50% - 224px);
}

.p-main-visual__text.-type2 {
  position: absolute;
  top: 300px;
  left: calc(50% - 500px);
}

.p-main-visual__baloon {
  position: absolute;
  top: 350px;
  left: calc(50% - 500px);
}

.p-main-visual__title {
  position: absolute;
  top: 50px;
  left: calc(50% - 500px);
}

.p-main-visual__video {
  margin-bottom: -12px;
  width: 45%;
  margin-left: auto;
}

.p-main-visual__video iframe {
  width: 450px;
  height: 253px;
}

.p-main-visual__video img {
  -webkit-box-shadow: 0 0 20px rgba(89, 63, 32, 0.1);
          box-shadow: 0 0 20px rgba(89, 63, 32, 0.1);
}

.p-main-visual__vip {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -150px;
}

.p-main-visual__bg-sp {
  display: none;
}

.p-main-visual__company {
  position: absolute;
  width: 480px;
  max-width: 47vw;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

.p-main-visual__company-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 15px 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-main-visual__company-list > * {
  width: 30%;
  margin-left: 1.5%;
  margin-right: 1.5%;
}

.p-main-visual__company-label {
  background: #02A148;
  color: #fff;
  text-align: left;
  border-radius: 10px 10px 0 0;
  font-size: 14px;
  padding: 13px 10px 10px;
}

.p-main-visual__right {
  width: 49%;
  margin-left: auto;
  position: relative;
}

.p-main-visual__form-label {
  position: absolute;
  left: -60px;
  top: 8px;
  pointer-events: none;
}

.p-main-visual__form {
  width: 480px;
  max-width: 100%;
  height: 560px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
  padding: 80px 30px 20px;
}

.p-main-visual-vip {
  margin-right: -10px;
  -webkit-transition: margin-right .3s ease-out;
  transition: margin-right .3s ease-out;
  -webkit-box-shadow: 0 0 20px rgba(214, 52, 28, 0.17);
          box-shadow: 0 0 20px rgba(214, 52, 28, 0.17);
}

.p-main-visual-vip__new {
  position: absolute;
  top: -29px;
  left: 50%;
  margin-left: -32px;
}

.p-main-visual-vip:hover {
  margin-right: 0;
}

.p-main-visual-vip:hover .p-main-visual-vip__new {
  -webkit-animation: wobble 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: wobble 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@-webkit-keyframes wobble {
  10%,
  90% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  20%,
  80% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  40%,
  60% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
}

@keyframes wobble {
  10%,
  90% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  20%,
  80% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  40%,
  60% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
}

.p-main-visual-apply {
  background: #fff;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 10px 10px 85px;
  margin-top: 30px;
}

.p-main-visual-apply__badge {
  position: absolute;
  left: -20px;
  top: -33px;
}

.p-main-visual-apply__heading {
  font-size: 18px;
  color: #656565;
  font-weight: bold;
  margin-right: 27px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.p-main-visual-apply__heading span {
  font-weight: inherit;
  color: #ef614b;
  font-size: 20px;
}

.p-main-visual-apply__input {
  background: #e6e9e9;
  height: 70px;
  font-size: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  margin-right: 10px;
  padding: 0 1em;
}

.p-main-visual-apply__input::-webkit-input-placeholder {
  color: #737474;
}

.p-main-visual-apply__button {
  background: none;
  border: none;
  padding: 0;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
  max-width: 420px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.p-main-visual-bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-main-visual-bg__bad, .p-main-visual-bg__good {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-animation: bg-loop 40s linear infinite;
          animation: bg-loop 40s linear infinite;
}

.p-main-visual-bg__bad {
  background-color: #222959;
  background-image: url("/img/v3/mv_bg_bad.png");
}

.p-main-visual-bg__good {
  background-color: #f1725f;
  background-image: url("/img/v3/mv_bg_good.png");
}

.p-main-visual-bg__wave {
  width: 13px;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 7px);
  background: url("/img/v3/mv_bg_wave.png") repeat-y 0 0;
}

@-webkit-keyframes bg-loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1600px 1600px;
  }
}

@keyframes bg-loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1600px 1600px;
  }
}

/* 引越会社一覧 */
.p-moving-company-list {
  margin-top: 45px;
}

.p-moving-company-list__heading {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.p-moving-company-list__body {
  margin-top: 25px;
  padding: 0 25px;
  position: relative;
}

.p-moving-company-list__item {
  height: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e6e9e9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  padding: 10px;
}

.p-moving-company-list__item img {
  max-width: 100%;
}

.p-moving-company-list__prev,
.p-moving-company-list__next {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 39px;
  cursor: pointer;
  top: 50%;
  margin-top: -20px;
}

.p-moving-company-list__prev {
  left: 0;
  background: url("/img/v3/icon_swiper_prev.png") no-repeat center center/contain;
}

.p-moving-company-list__next {
  right: 0;
  background: url("/img/v3/icon_swiper_next.png") no-repeat center center/contain;
}

/* マイページサービス */
.p-mypage-services__heading {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-left: 6px solid #00a146;
  padding-left: 20px;
}

.p-mypage-services__body {
  border-top: 1px dotted #ccc;
  padding-top: 20px;
  margin-top: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px auto 10px auto;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template: "estate internet" auto "garbages rental" auto/1fr 1fr;
  grid-gap: 10px;
}

.p-mypage-services__movings {
  margin-bottom: 40px;
}

.p-mypage-services__estate {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: estate;
}

.p-mypage-services__internet {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: internet;
}

.p-mypage-services__garbages {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: garbages;
}

.p-mypage-services__rental {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  grid-area: rental;
}

.p-service-card {
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service-card__heading {
  color: #fff;
  background: #00a146;
  font-weight: bold;
  padding: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.p-service-card__status {
  background-color: #fff;
  border-radius: 4px;
  font-size: 12px;
  padding: 0.4em 0.8em;
  font-weight: bold;
  margin-left: 10px;
}

.p-service-card__status--progress {
  color: #ff220d;
}

.p-service-card__status--done {
  color: #46BBEF;
}

.p-service-card__heading--large {
  font-size: 20px;
  height: 53px;
}

.p-service-card__icon {
  margin-right: 20px;
}

.p-service-card__body {
  background: #fff;
  padding: 15px 20px 20px;
  line-height: 1.75;
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-service-card__lead {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.p-service-card__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  aling-items: center;
  margin-top: 15px;
}

.p-service-card__footer > * ~ * {
  margin-left: 10px;
}

.p-service-card__button {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4em 1em;
  font-size: 16px;
  border-radius: 5px;
  text-align: center;
}

.p-service-card__button--large {
  letter-spacing: 0.05em;
  padding: 0.8em 1em;
  width: 100%;
  max-width: 230px;
}

.p-service-card__button--detail {
  background: #fe8e4d;
}

.p-service-card__button--apply {
  background: #ff220d;
}

/* Button */
.button-orange a {
  color: #fff !important;
  background: #FF9F31 !important;
  border-color: #e38c29 !important;
}

.button-orange a:hover {
  color: #fff !important;
  background: #ffc078 !important;
  border-color: #e99d46 !important;
}

.mypageBtn.inSection {
  margin-left: -25px;
}

.btnPrimary {
  color: #fff;
  max-width: 198px;
}

.btnCancel {
  border-radius: 5px;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffaba5), color-stop(100%, #ff2116));
  background-image: -webkit-linear-gradient(#ffaba5, #ff2116);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffaba5), to(#ff2116));
  background-image: linear-gradient(#ffaba5, #ff2116);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  width: 198px;
  text-align: center;
  padding: 10px 0;
  display: block;
}

.btnCancel:hover {
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffc1bc), color-stop(100%, #ff665e));
  background-image: -webkit-linear-gradient(#ffc1bc, #ff665e);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffc1bc), to(#ff665e));
  background-image: linear-gradient(#ffc1bc, #ff665e);
}

.p-banner-about-service {
  text-align: center;
  margin-top: 45px;
}

.p-banner-about-service img {
  max-width: 100%;
}

.p-campaignBanner {
  text-align: center;
  margin-top: 30px;
  margin-bottom: -10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-campaignBanner__item {
  margin-right: 13px;
}

.p-campaignBanner__item:last-child {
  margin-right: 0;
}

.p-campaignBanner__lead {
  font-family: 'Hiragino Mincho ProN', 游明朝, 'Yu Mincho', YuMincho, HGS明朝E,
 メイリオ, Meiryo, serif;
  font-size: 18px;
  padding-top: 0.5em;
  line-height: 1.4;
}

.p-campaignBanner img {
  max-width: 100%;
}

.p-text-red-border {
  margin-top: -25px;
  text-align: center;
  margin-bottom: 10px;
}

.p-text-red-border a {
  font-weight: bold;
  color: #EF1E1E;
}

.p-box-red-border {
  border: 2px solid #EF1E1E;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #EF1E1E;
  width: 100%;
  line-height: 1.56;
  text-align: left;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-box-red-border__ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0.4em;
}

#regist.p-section-full {
  padding: 0;
  border-radius: 0;
  background: inherit;
  padding: 0 0 20px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-font-style-gothic {
  font-family: 'Kosugi', sans-serif;
}

.-bg-white {
  background: #fff !important;
}

.-bg-beige {
  background: #f2ede5;
}

.-bg-beige-light {
  background: #F5F1EC;
  margin-top: 62px;
}

.-bg-beige-dark {
  background: #e0d3c1;
}

.p-heading-form-green {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.p-heading-common {
  font-weight: bold;
  font-size: 26px;
  margin-top: 1em;
}

.p-heading-common.-brown {
  color: #352424;
}

.p-heading-subTxt {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 1.5em;
}

.p-heading-highlight {
  display: inline-block;
  border-radius: 7px;
  background: #fff;
  padding: 20px 0px;
  font-weight: bold;
  font-size: 30px;
  margin-top: 1em;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #03a84d;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #ffff66));
  background: -webkit-linear-gradient(transparent 40%, #ffff66 40%);
  background: linear-gradient(transparent 40%, #ffff66 40%);
}

.p-formContainer {
  font-family: 'Kosugi', sans-serif;
  color: #333333;
}

.p-formContainer * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-formContainer .c-formBox__ttl {
  width: 200px;
}

.p-formContainer .c-formBox__body {
  width: 600px;
  padding-left: 40px;
}

.p-formContainer .c-formBox__body .c-formName {
  margin-left: -40px;
}

.information {
	color: #333333;
	font-size: 12px;
	line-height: 1.5em;
	margin-bottom: 1em;
}

.step-info{
	font-size: 12px;
}


.p-main-visual-formContainer {
  font-family: 'Kosugi', sans-serif;
  text-align: left;
}

.p-main-visual-formContainer * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-main-visual-formContainer .c-formBox__ttl {
  width: 140px;
  padding: 0;
  margin-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-main-visual-formContainer .c-formBox__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0 0;
}

.p-main-visual-formContainer .c-formBox .c-input, .p-main-visual-formContainer .c-formBox .c-textarea {
  padding:.75em;
}

.p-main-visual-formContainer .c-formName_last {
  margin-left: 2.4vw;
}

.p-main-visual-formContainer .c-formName .c-input, .p-main-visual-formContainer .c-formName .c-textarea {
  -webkit-flex-basis: 100px;
      -ms-flex-preferred-size: 100px;
          flex-basis: 100px;
  max-width: 100px;
}

.p-main-visual-formContainer .p-agreeBox {
  padding-top: 3px;
  padding-bottom: 3px;
}

.p-main-visual-formContainer .p-agreeBox .c-checkbox {
  padding: 10px 15px 10px 32px;
}

.p-main-visual-formContainer .p-agreeBox .c-checkbox::before {
  width: 6px;
  height: 14px;
  left: 8px;
}

.p-main-visual-formContainer .p-agreeBox .c-checkbox::after {
  width: 20px;
  height: 20px;
}

.p-mv-footnotice {
  text-align: left;
  margin-top: 15px;
  font-size: 12px;
}

.p-visual-form-infobox {
  background: #fffae1;
  text-align: left;
  padding: 15px;
}

.p-visual-form-infobox p {
  font-weight: 400;
  font-size: 13px;
}

.p-visual-form-infobox a {
  color: #e53224;
}

.p-appoint-time-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 10px;
}

.p-appoint-time-list > * {
  margin-right: 20px;
  margin-bottom: 5px;
}

.p-appoint-time {
  cursor: pointer;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #F4F5F5;
  color: #000;
  border-style: none;
  border: 1px solid #9a9a9a;
  border-radius: 2px;
  min-width: 197px;
}

.p-hyphen-appo {
  display: inline-block;
  width: 10px;
}

.p-acTrigger-plain {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-radius: 3px;
  font-size: 18px;
  border: 1px solid #333;
}

.p-acTrigger-plain .p-trigger-off {
  display: none;
}

.p-acTrigger-plain .p-trigger-on {
  display: inline-block;
}

.p-acTrigger-plain::before, .p-acTrigger-plain::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 3px;
  background: #000;
}

.p-acTrigger-plain::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-acTrigger-plain.is-active::after {
  content: none;
}

.p-acTrigger-plain.is-active .p-trigger-off {
  display: inline-block;
}

.p-acTrigger-plain.is-active .p-trigger-on {
  display: none;
}

.p-form-appointWeekList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.p-form-appointWeekList > * {
  margin-top: 15px;
}

.p-agreeBox {
  padding-top: 15px;
}

.p-agreeBox input[type='checkbox'] {
  margin: 10px 0;
}

.p-agreeBox .c-checkbox:after {
  border: 2px solid #bf1818;
}

.beforeTxt {
  color: #03a84d;
  font-weight: 700;
  padding-right: 2px;
}

.p-page-ikkatsuForm * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-page-ikkatsuForm__heading {
  max-height: 243px;
}

.p-page-ikkatsuForm__heading img {
  max-width: 100%;
  vertical-align: bottom;
}

.p-page-ikkatsuForm__body {
  padding: 30px 100px;
}

.calender img {
  max-width: 100%;
  vertical-align: middle;
}

.p-acBody--appo {
  padding-top: 80px;
  padding-bottom: 80px;
}

.btn img {
  max-width: 100%;
}

#regist .stepLi--v3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Kosugi', sans-serif;
}

#regist .stepLi--v3 li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
  padding-right: 0px;
  background-image: url(/img/v3/icon_green_arow_right.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 41px auto;
  position: relative;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#regist .stepLi--v3 li:first-child {
  padding-left: 0;
}

#regist .stepLi--v3 li img {
  position: relative;
  z-index: 1;
}

#regist .stepLi--v3 li .p-stepLi__stamp {
  position: absolute;
  z-index: 2;
  top: -5px;
  right: -10px;
}

#regist .stepLi--v3 li .p-stepLi__header {
  font-weight: bold;
  color: #03a84d;
  font-size: 18px;
  padding: 20px 3px 20px 64px;
  position: relative;
  z-index: 1;
  top: 7px;
  border: 2px solid #03a84d;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  background: #DBF6E7;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#regist .stepLi--v3 li .p-stepLi__number {
  position: absolute;
  z-index: 2;
  top: -9px;
  left: 3px;
}

#regist .stepLi--v3 li .p-stepLi__body {
  font-size: 16px;
  font-weight: 500;
  padding: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  border: 2px solid #03a84d;
  border-top: none;
  border-radius: 0 0 3px 3px;
  background: #FFF;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

.p-table-border {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-table-border__head {
  border-bottom: 1px solid #000;
  font-weight: bold;
  width: 220px;
  padding: 1em 0 1em 0;
}

.p-table-border__body {
  border-bottom: 1px dotted #000;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1em 0 1em 1em;
}

.p-page-ikkatsuForm.-iframe #regist {
  padding: 30px 20px !important;
  margin-bottom: 0;
  border-radius: 0;
}

.p-container-sent {
  padding: 50px 95px;
  font-size: 16px;
}

.p-container-sent p {
  line-height: 1.6;
}

.p-container-sent__heading {
  font-size: 24px;
  color: #352424;
  font-weight: 500;
}

.p-container-sent__concierge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}

.p-container-sent__concierge .p-concierge-fig {
  padding-left: 20px;
  padding-right: 20px;
}

.p-container-sent__concierge .p-concierge-txt {
  text-align: center;
}

.p-container-sent__concierge .p-concierge-txt .p-heading {
  font-size: 20px;
  color: #352424;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-btn-orange-bebel {
  width: 98%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 800px;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 1em;
  color: #fff;
  background-color: #fe8e4d;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE8D4C), to(#FE7B3D));
  background: -webkit-linear-gradient(#FE8D4C 0%, #FE7B3D 100%);
  background: linear-gradient(#FE8D4C 0%, #FE7B3D 100%);
  border-radius: 3px;
  -webkit-box-shadow: 2px 2px #b96816;
          box-shadow: 2px 2px #b96816;
  border-bottom: solid 2px #FE7B3D;
}

.p-btn-orange-bebel:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#FE8D4C), color-stop(50%, #FE7B3D));
  background: -webkit-linear-gradient(#FE8D4C 0%, #FE7B3D 50%);
  background: linear-gradient(#FE8D4C 0%, #FE7B3D 50%);
}

.p-btn-orange-bebel:active {
  border-bottom: solid 2px #fd9535;
  -webkit-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 0 2px rgba(0, 0, 0, 0.3);
}

.-bg-white {
  background: #fff;
}

.-iframe-sent {
  padding: 20px 0;
  margin-top: 10px;
}

.-iframe-sent #regist {
  margin-bottom: 0px;
}

.-iframe-sent .p-heading-highlight {
  margin-top: 0;
}

.-iframe-sent .p-heading-subTxt {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 1em;
}

.-iframe-sent .p-container-sent {
  padding: 30px 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.-iframe-sent .p-container-sent * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.-iframe-sent .p-container-sent__heading {
  font-size: 22px;
}

.-iframe-sent .p-container-sent__concierge {
  padding: 20px 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.-iframe-sent .p-container-sent__concierge .p-concierge-txt .p-heading {
  font-size: 18px;
  margin-bottom: 0.75em;
}

.-iframe-sent .p-container-sent p {
  font-size: 13px;
}

.-iframe-sent .p-btn-orange-bebel {
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
}

/* main-visual */
.p-main-visual__title {
  top: 62px;
  left: calc(50% - 530px);
}

.p-main-visual__baloon {
  position: absolute;
  top: 350px;
  left: calc(50% - 510px);
}

.p-main-visual__company {
  left: 10px;
  width: 500px;
}

.p-main-visual__text.-type2 {
  top: 285px;
  left: calc(50% - 510px);
}

.p-mv-footnotice {
  line-height: 1;
}

.p-main-visual-formContainer .c-formBox__ttl--req:before {
  margin-top: 0;
  margin-bottom:.5em;
}

.p-main-visual-formContainer .c-formBox__ttl {
  font-size: 13px;
}

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

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

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

.u-brLg {
  display: none;
}

.u-brSp {
  display: none;
}

.u-brTab {
  display: none;
}

.u-bold,
.u-strong {
  font-weight: bold;
}

.u-large {
  font-size: 1.142em;
}

.u-small {
  font-size: 0.875em;
}

.u-red {
  color: #ef1e1e;
}

.u-bold-red {
  color: #bf1818;
  font-weight: bold;
}

.u-black {
  color: #000;
}

.u-width5 {
  width: 5% !important;
}

.u-width10 {
  width: 10% !important;
}

.u-width15 {
  width: 15% !important;
}

.u-width20 {
  width: 20% !important;
}

.u-width25 {
  width: 25% !important;
}

.u-width30 {
  width: 30% !important;
}

.u-width35 {
  width: 35% !important;
}

.u-width33 {
  width: 33% !important;
}

.u-width40 {
  width: 40% !important;
}

.u-width45 {
  width: 45% !important;
}

.u-width50 {
  width: 50% !important;
}

.u-width55 {
  width: 55% !important;
}

.u-width60 {
  width: 60% !important;
}

.u-width65 {
  width: 65% !important;
}

.u-width70 {
  width: 70% !important;
}

.u-width75 {
  width: 75% !important;
}

.u-width80 {
  width: 80% !important;
}

.u-width85 {
  width: 85% !important;
}

.u-width90 {
  width: 90% !important;
}

.u-width95 {
  width: 95% !important;
}

.u-width100 {
  width: 100% !important;
}

.u-nm {
  margin: 0 !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mtb10 {
  margin: 10px 0 !important;
}

.u-mtb20 {
  margin: 20px 0 !important;
}

.u-mtb30 {
  margin: 30px 0 !important;
}

.u-mbem {
  margin-bottom: 1em !important;
}

.u-mtem {
  margin-top: 1em !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-show-sm {
  display: none !important;
}

.u-show-md {
  display: none !important;
}

.u-brLg {
  display: none;
}

.u-brSp {
  display: none;
}

.u-brTab {
  display: none;
}

.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #fcffb8));
  background: -webkit-linear-gradient(transparent 70%, #fcffb8 0%);
  background: linear-gradient(transparent 70%, #fcffb8 0%);
}

.u-marker__yellow {
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 2px 4px;
}

#breadcrumb li {
  display: inline;
}

#breadcrumb ul li + li:before {
  content: ">";
  margin-right: .3em;
  margin-left: .3em;
}

@media screen and (min-width: 769px) {
  .p-main-visual {
    min-width: 1040px;
  }
  .p-main-visual {
    min-width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .p-main-visual__baloon {
    left: calc(50% - 503px);
  }
  .p-main-visual__title {
    left: calc(50% - 512px);
  }
  .p-main-visual__title img {
    width: 95%;
  }
}

@media only screen and (max-width: 1280px) {
  .u-brLg {
    display: inline-block;
  }
  .u-brLg {
    display: inline-block;
  }
}

@media only screen and (max-width: 1024px) {
  .p-main-visual__text.-type2 {
    left: 1.5vw;
    top: 27vw;
    width: 20vw;
  }
  .p-main-visual__baloon {
    left: 1.25vw;
    top: 360px;
    width: 19vw;
    z-index: 3;
  }
  .p-main-visual__title {
    left: 1vw;
    width: 29vw;
    top: 70px;
  }
  .p-main-visual--lptop .p-main-visual__takeisou {
    left: 2vw;
    width: 73vw;
  }
}

@media only screen and (max-width: 890px) and (min-width: 769px) {
  .p-main-visual__text.-type2 {
    width: 22vw;
    top: 30vw;
  }
  .p-main-visual__title {
    width: 32vw;
    top: 8vw;
  }
  .p-main-visual__baloon {
    top: 380px;
  }
  .p-main-visual-formContainer .c-formBox__ttl {
    font-size: 11px;
  }
  .p-visual-form-infobox {
    background: #fffae1;
    text-align: left;
    padding: 15px 15px 15px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .c-select-wrap:after {
    border-width: 3px 3px 0 3px;
  }
  .c-form-name__block {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .c-form-name input {
    width: 100%;
  }
  .c-formBox__ttl {
    width: 180px;
  }
  .c-formBox__body {
    width: 100%;
  }
  .p-main-visual__inner.-type2 {
    padding: 20px 20px 20px 0;
  }
  .p-main-visual__takeisou {
    left: -24vw;
    bottom: -13vw;
    width: 88vw;
  }
  .p-main-visual__text.-type2 {
    top: 170px;
    left: 5vw;
  }
  .p-main-visual__title {
    top: 34px;
    left: 5vw;
    width: 24vw;
    margin: 0 auto 14vw;
  }
  .p-main-visual__video {
    width: 50%;
  }
  .p-main-visual__copy {
    width: 50%;
  }
  .p-main-visual__company {
    display: none;
  }
  .p-main-visual__right {
    width: 460px;
  }
  .p-main-visual__form-label {
    left: -35px;
    width: calc(100% + 35px);
  }
  .p-main-visual__form {
    width: 100%;
    padding: 80px 30px 20px;
  }
  .p-page-ikkatsuForm__body {
    padding: 40px 30px !important;
    padding: 15px 30px 40px !important;
  }
  .p-acBody--appo {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .btn a {
    display: inline-block;
  }
  .p-container-sent {
    padding: 30px 35px;
  }
  .-iframe-sent {
    padding: 20px 25px;
  }
  .p-main-visual__company {
    display: block;
  }
  /*
  .p-main-visual__company-list{
  padding: 2vw 3vw;
}
  .p-main-visual__company-list > * {
  width: 45%;
  margin-left: 2.5%;
  text-align: center;
  margin-right: 2.5%;
}
  .p-main-visual__company-list img{
  max-height: 6vw;
}
  .p-main-visual__company-label{
  background: #fff;
  color: #352424;padding: 5px 6px 0;
  font-size: 2.5vw;
  font-weight: bold;
  text-align: center;
  border-radius: 5px 5px 0 0;
}
  */
  .p-mv-index {
    padding-top: 3rem;
    background: url(/img/lp-e-new/p-mv__bg.jpg);
    background-size: 100%;
  }
  .p-main-visual--index {
    overflow: hidden;
    border-bottom: solid #bf8f01 4px;
    background: none;
  }
  .p-main-visual--lptop .p-main-visual__takeisou {
    bottom: 0;
    left: -14vw;
    top: -13.5vw;
    width: 100%;
  }
  .p-main-visual__title.-type2 {
    top: 0vw;
    left: 0;
    right: 7vw;
    width: 50vw;
    margin-left: auto;
    margin-right: 0;
  }
  .p-main-visual__inner.-type2 {
    padding: 67vw 0 20px;
  }
  /*
  .p-main-visual__baloon {
  position: absolute;
  top: 38vw;
  left: auto;
  right: 5vw;
  width: 37vw;
}
  */
  .p-main-visual__baloon {
    position: absolute;
    top: 35vw;
    left: auto;
    right: 20vw;
    width: 21vw;
  }
  .p-main-visual__text.-type2 {
    display: none;
  }
  .p-main-visual__right {
    margin-right: auto;
  }
  .u-brTab {
    display: inline-block;
  }
  .u-brPc {
    display: none;
  }
  .u-hide-md {
    display: none !important;
  }
  .u-show-md {
    display: block !important;
  }
  .u-brTab {
    display: inline-block;
  }
  .u-brPc {
    display: none;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .p-main-visual__company {
    display: block;
    bottom: auto;
    top: 43vw;
    width: 460px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #globalNav .sns {
    width: 152px;
  }
  #regist .text2 {
    width: 40%;
  }
  #regist .line4 {
    padding: 20px 0 0;
  }
  #globalNav .menu {
    display: block;
  }
  #globalNav .menu li {
    border-bottom: 2px solid #ccc;
  }
  #globalNav .menu li:before {
    display: none;
  }
  .p-main-visual-apply {
    padding: 10px;
  }
  .p-main-visual-apply__badge, .p-main-visual-apply__heading {
    display: none;
  }
  .p-main-visual__vip {
    display: none;
  }
  .p-moving-company-list__item {
    height: auto;
  }
  .p-campaignBanner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .p-campaignBanner__item {
    margin-right: 0;
  }
  .p-campaignBanner__lead {
    padding-bottom: 0.75em;
  }
}

@media only screen and (max-width: 700px) {
  .p-main-visual__company {
    width: 90%;
  }
}

@media screen and (max-width: 700px) {
  .p-main-visual__inner.-type2 {
    padding: 40vw 0 20px;
  }
  .p-main-visual__takeisou {
    bottom: 0;
    left: -15.33333vw;
    top: -5.33333vw;
    width: 100%;
  }
  .p-main-visual__text.-type2 {
    display: none;
  }
  .p-main-visual__title {
    width: 90%;
    margin: 0 auto 14vw;
  }
  .p-main-visual__title.-type2 {
    top: 6vw;
    left: 0;
    right: 10vw;
    width: 38vw;
    margin-left: auto;
    margin-right: 0;
  }
  .p-main-visual__right {
    width: 90%;
    z-index: 4;
    margin-left: auto;
    margin-right: auto;
  }
  .p-main-visual__form-label {
    left: -5%;
    width: 108%;
  }
  .p-main-visual__form {
    width: 100%;
    height: auto;
    padding: 21.33333vw 4vw 5.33333vw;
  }
}

@media only screen and (max-width: 640px) {
  /***MV***/
  .p-main-visual__company {
    display: block;
    bottom: auto;
    top: 49vw;
    width: 57vw;
    left: auto;
    right: 5vw;
    max-width: 100%;
  }
  .p-main-visual__company-list {
    padding: 2vw 3vw;
  }
  .p-main-visual__company-list > * {
    width: 45%;
    margin-left: 2.5%;
    text-align: center;
    margin-right: 2.5%;
  }
  .p-main-visual__company-list img {
    max-height: 6vw;
  }
  .p-main-visual__company-label {
    background: #fff;
    color: #352424;
    padding: 5px 6px 0;
    font-size: 2.5vw;
    font-weight: bold;
    text-align: center;
    border-radius: 5px 5px 0 0;
  }
  .p-main-visual__inner.-type2 {
    padding: 80vw 0 20px;
  }
  .p-main-visual--lptop .p-main-visual__takeisou {
    bottom: 0;
    left: -31.33333vw;
    top: -5.33333vw;
    width: 110%;
  }
  .p-main-visual__baloon {
    position: absolute;
    top: 38vw;
    left: auto;
    right: 5vw;
    width: 37vw;
  }
  .p-main-visual__title.-type2 {
    top: 1vw;
    left: 0;
    right: 5vw;
    width: 62vw;
    margin-left: auto;
    margin-right: 0;
  }
  .beforeTxt {
      display:none
  }
  .c-input, .c-textarea {
    padding: .7em .7em;
  }
  .c-formBox__body {
    padding: 0 13px 0 0;
  }
  .p-acTrigger-plain {
    padding: 5px;
    font-size: 14px;
  }
  .p-acTrigger-plain::before, .p-acTrigger-plain::after {
    width: 10px;
  }
  .p-agreeBox {
    font-size: 12px;
  }
  .p-page-ikkatsuForm__body {
    padding: 15px 100px 30px;
  }
}

@media only screen and (max-width: 575px) {
.information {
	color: #333333;
	font-size: 10px;
	line-height: 1.5em;
	margin-bottom: 1em;
}
  .p-mv-index {
    padding-top: 1.5rem;
  }
}

@media only screen and (max-width: 480px) {
.information {
	color: #333333;
	font-size: 10px;
	line-height: 1.5em;
	margin-bottom: 1em;
}
  .c-input, .c-textarea {
    max-width: none;
  }
  .c-select {
    padding: 0.5em 1em;
  }
  .c-formYmd > * {
    width: 100%;
    padding-right: 4vw;
  }
  .c-formYmd > *:last-child {
    padding-right: 0;
  }
  .c-formYmd .c-select-wrap {
    display: block;
  }
  .c-radio-list__item {
    margin-right: 12px;
    width: 100%;
  }
  .c-radio-list__item ~ .c-radio-list__item {
    margin-top: 1em;
  }
  .c-checkbox {
    padding-left: 10.66667vw;
  }
  .c-checkbox:after {
    width: 6.4vw;
    height: 6.4vw;
  }
  .c-checkbox:before {
    width: 2.13333vw;
    height: 3.33333vw;
    left: 10px;
    top: 45%;
  }
  .c-check-list > * {
    min-width: 50%;
    margin-top: 0.5em;
  }
  .c-check-list--half.-spfull > * {
    width: 100%;
  }
  .c-check-list--column input {
    display: block;
    width: 100%;
  }
  .c-check-list__item {
    margin-right: 12px;
  }
  .c-form-name__block ~ .c-form-name__block {
    margin-left: 5vw;
  }
  .c-form-tel__block ~ .c-form-tel__block {
    margin-left: 5vw;
  }
  .c-form-tel__block ~ .c-form-tel__block:before {
    left: calc(-2.5vw - 0.2em);
  }
  .c-form-zip__block ~ .c-form-zip__block {
    margin-left: 5vw;
  }
  .c-form-zip__block ~ .c-form-zip__block:before {
    left: calc(-2.5vw - 0.2em);
  }
  .c-form-zip__btn {
    height: 4em;
  }
  .c-formBox {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 4vw;
  }
  .c-formBox__ttl {
    width: 100%;
    margin-right: 0;
    padding-left: 0;
    border-bottom: none;
  }
  .c-formBox__ttl--req:before {
    font-size: 10px;
    font-size: 2.66667vw;
  }
  .c-formBox__ttl--free:before {
    font-size: 10px;
    font-size: 2.66667vw;
  }
  .c-formBox__body {
    width: 100%;
    padding-right: 0;
  }
  .c-formName_first, .c-formName_last {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .c-formName_first > input, .c-formName_last > input {
    width: 100%;
  }
  .c-formErrorMessage > * {
    font-size: 12px;
    font-size: 3.2vw;
  }
  .p-main-visual__inner {
    padding-top: 7vw;
  }
  .p-main-visual__video {
    margin-bottom: 17vw;
  }
  .p-main-visual__video iframe {
    width: 168px;
    height: 94px;
  }
  .p-heading-common {
    font-size: 18px;
    font-size: 4.8vw;
  }
  .p-heading-subTxt {
    font-size: 15px;
    font-size: 4vw;
  }
  .p-heading-highlight {
    font-size: 20px;
    font-size: 5.33333vw;
  }
  .p-formContainer .c-formBox {
    margin-bottom: 0;
  }
  .p-formContainer .c-formBox__body {
    padding-left: 0;
  }
  .p-formContainer .c-formBox__body .c-formName {
    margin-left: 0;
  }
  .p-main-visual-formContainer {
    font-size: 12px;
    font-size: 3.2vw;
  }
  .p-main-visual-formContainer .c-formBox__ttl {
    width: 28.8vw;
  }
  .p-visual-form-infobox p {
    margin-top: 5px;
  }
  .p-visual-form-infobox {
    margin-top: -5.33333vw;
  }
  .p-appoint-time-output {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-appoint-time-output .c-input, .p-appoint-time-output .c-textarea {
    width: 40%;
  }
  .p-appoint-time-list > * {
    width: 100%;
    margin-right: 1%;
    margin-bottom: 5px;
  }
  .p-appoint-time {
    padding: 5px 10px;
    max-width: 100%;
  }
  .p-form-appointWeekList > * {
    margin-top: 4px;
  }
  .p-agreeBox {
    text-align: left;
  }
  .p-page-ikkatsuForm__body {
    padding: 5.33333vw 4vw 5.33333vw !important;
    padding: 2.66667vw 4vw !important;
  }
  .p-acBody--appo {
    padding-top: 5.33333vw;
    padding-bottom: 5.33333vw;
  }
  #regist .stepLi--v3 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #regist .stepLi--v3 li {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    margin: 0 10px 0 !important;
    padding-left: 0px;
    padding-top: 50px;
    background-image: url(/img/v3/icon_green_arow_bottom.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 20px auto;
  }
  #regist .stepLi--v3 li:first-child {
    padding-top: 0px;
  }
  .p-table-border {
    display: block;
  }
  .p-table-border__head {
    border-bottom: none;
    width: 100%;
  }
  .p-table-border__body {
    padding-top: 0;
    padding-left: .5em;
  }
  .p-page-ikkatsuForm.-iframe {
    height: 792px;
    overflow-y: scroll;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer .c-formBox__ttl {
    width: 28.8vw;
    padding: 0;
    margin-right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 12px;
    font-size: 3.2vw;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer .c-formBox__body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer .c-formBox .c-input, .p-page-ikkatsuForm.-iframe .p-formContainer .c-formBox .c-textarea {
    padding:.75em;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer .c-formName {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer .c-formName_first, .p-page-ikkatsuForm.-iframe .p-formContainer .c-formName_last {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    margin-bottom: 1.06667vw;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer .c-formName_last {
    margin-left: 0;
  }
  .p-page-ikkatsuForm.-iframe .p-formContainer .c-formName .c-input, .p-page-ikkatsuForm.-iframe .p-formContainer .c-formName .c-textarea {
    -webkit-flex-basis: 55vw;
        -ms-flex-preferred-size: 55vw;
            flex-basis: 55vw;
    max-width: 55vw;
  }
  .p-container-sent {
    padding: 6.66667vw 5.33333vw;
    font-size: 14px;
    font-size: 3.73333vw;
  }
  .p-container-sent__heading {
    font-size: 17px;
    font-size: 4.53333vw;
  }
  .p-container-sent__concierge {
    padding: 5.33333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-container-sent__concierge .p-concierge-fig {
    padding-left: 5.33333vw;
    padding-right: 5.33333vw;
  }
  .p-container-sent__concierge .p-concierge-fig img {
    width: 26.66667vw;
  }
  .p-container-sent__concierge .p-concierge-txt {
    text-align: left;
  }
  .p-container-sent__concierge .p-concierge-txt .p-heading {
    font-size: 16px;
    font-size: 4.26667vw;
    text-align: center;
  }
  .-iframe-sent {
    padding: 20px 0 0;
  }
  .-iframe-sent .p-heading-subTxt {
    padding-left: 1em;
    padding-right: 1em;
  }
  .-iframe-sent .p-table-border__head {
    padding: 0.5em 0 0.5em 0;
  }
  .-iframe-sent .p-table-border__body {
    padding: 0.5em 0 0.5em 0.5em;
  }
  .-iframe-sent .p-container-sent {
    padding: 4vw 4vw;
  }
  .-iframe-sent .p-container-sent__heading {
    font-size: 16px;
    font-size: 4.26667vw;
  }
  .-iframe-sent .p-container-sent__concierge {
    padding: 2.66667vw;
  }
  .-iframe-sent .p-container-sent__concierge .p-concierge-fig img {
    width: 18.66667vw;
  }
  .-iframe-sent .p-btn-orange-bebel {
    font-size: 22px;
    font-size: 5.86667vw;
    max-width: 90%;
  }
  .u-brSp {
    display: block;
  }
  .u-mb25 {
    margin-bottom: 6.66667vw !important;
  }
  .u-mt25 {
    margin-top: 6.66667vw !important;
  }
  .u-mb30 {
    margin-bottom: 8vw !important;
  }
  .u-mt30 {
    margin-top: 8vw !important;
  }
  .u-mb35 {
    margin-bottom: 9.33333vw !important;
  }
  .u-mb40 {
    margin-bottom: 10.66667vw !important;
  }
  .u-mb50 {
    margin-bottom: 13.33333vw !important;
  }
  .u-mt50 {
    margin-top: 13.33333vw !important;
  }
  .u-mb60 {
    margin-bottom: 16vw !important;
  }
  .u-mt80 {
    margin-top: 21.33333vw !important;
  }
  .u-mt100 {
    margin-top: 26.66667vw !important;
  }
  .u-mb15-sm {
    margin-bottom: 15px !important;
  }
  .u-mb30-sm {
    margin-bottom: 30px !important;
  }
  .u-hide-sm {
    display: none !important;
  }
  .u-show-sm {
    display: block !important;
  }
  .u-brSp {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  #regist .text2 {
    width: 35%;
  }
  header .wrapper {
    height: 60px;
    padding-bottom: 0;
  }
  .headerWrap {
    padding-top: 0;
  }
  .headerLogoWrap .logo {
    width: auto;
  }
  .headerLogoWrap .description {
    width: 180px;
  }
  .p-main-visual-apply {
    display: block;
  }
  .p-main-visual-apply__input {
    height: 50px;
    margin-right: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 10px;
  }
  .p-main-visual-apply__button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.86667vw;
    margin-bottom: 2.66667vw;
  }
  .p-moving-company-list__heading {
    font-size: 16px;
  }
  .p-moving-company-list__body {
    margin-top: 15px;
  }
  .p-mypage-services__body {
    grid-template: "estate" auto "internet" auto "garbages" auto "rental" auto/1fr;
  }
  .p-mypage-services__body > * ~ * {
    margin-top: 10px;
  }
  .p-service-card__button--large {
    letter-spacing: 0;
    padding: 0.4em;
  }
  .p-campaignBanner {
    margin-top: 30px;
    margin-bottom: -10px;
  }
  .p-campaignBanner__lead {
    font-size: 4vw;
  }
  .p-text-red-border {
    margin-bottom: 40px;
  }
  .p-box-red-border {
    font-size: 3.2vw;
  }
  .p-box-red-border__ttl {
    font-size: 4vw;
  }
}

@media all and (-ms-high-contrast: none) {
  .p-campaignBanner__lead {
    font-family: 'Kosugi', sans-serif;
  }
  .p-font-style-gothic {
    font-family: 'Kosugi', sans-serif;
  }
  .p-formContainer {
    font-family: 'Kosugi', sans-serif;
  }
  .p-main-visual-formContainer {
    font-family: 'Kosugi', sans-serif;
  }
  #regist .stepLi--v3 {
    font-family: 'Kosugi', sans-serif;
  }
}
