@charset "UTF-8";
/***************
画像コンポーネント
***************/
.c-img {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 0;
}
.c-img.--contain img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-img img {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/***************
プレビューボタンコンポーネント
***************/
.preview_btn_hover {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #3665D3;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  height: 3.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 1.5rem 0 0;
  z-index: 800;
  font-weight: bold;
  padding-left: 1rem;
  padding-right: 1.375rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
@media (hover: hover) {
  .preview_btn_hover:hover {
    opacity: 0.7;
    color: #fff;
  }
}
@media (hover: none) {
  .preview_btn_hover:active {
    opacity: 0.7;
    color: #fff;
  }
}
.preview_btn_hover.--edit span {
  padding-left: 1.1875rem;
}
.preview_btn_hover.--edit span::before {
  background: url(/images/edit-icon.svg) no-repeat center center;
  background-size: contain;
  width: 0.9375rem;
}
.preview_btn_hover.--back span {
  padding-left: 1.4375rem;
}
.preview_btn_hover.--back span::before {
  background: url(/images/preview-back.svg) no-repeat center center;
  background-size: contain;
  width: 0.9375rem;
}
.preview_btn_hover span {
  position: relative;
  color: #fff;
  font-size: 0.9375rem;
  display: inline-block;
  padding-left: 1.0625rem;
}
.preview_btn_hover span::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(/images/preview-icon.svg) no-repeat center center;
  background-size: contain;
  width: 0.75rem;
  aspect-ratio: 1/1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.preview_btn_hover_wrap {
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  max-width: 56.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.preview_btn_fixed {
  background: #E6E6E6;
  padding: 1rem 0.625rem;
}
.preview_btn_fixed_link {
  margin: 0 auto;
  max-width: 21.875rem;
  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;
  background: #3665D3;
  color: #fff;
  min-height: 58px;
  width: 100%;
  border-radius: 2.5rem;
  padding: 0.5rem;
  gap: 0.5rem;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, color, -webkit-transform;
  transition-property: opacity, color, -webkit-transform;
  transition-property: opacity, transform, color;
  transition-property: opacity, transform, color, -webkit-transform;
}
@media (hover: hover) {
  .preview_btn_fixed_link:hover {
    opacity: 0.7;
    color: #fff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .preview_btn_fixed_link:active {
    opacity: 0.7;
    color: #fff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.preview_btn_fixed_link.--back .arrow {
  right: auto;
  left: 1.25rem;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.preview_btn_fixed_link.--back .text {
  padding-left: 1.4375rem;
}
.preview_btn_fixed_link.--back .text::before {
  background: url(/images/preview-back.svg) no-repeat center center;
  background-size: contain;
  width: 0.9375rem;
}
.preview_btn_fixed_link .arrow {
  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;
  position: absolute;
  right: 1.25rem;
  width: 0.5rem;
  aspect-ratio: 8/14;
  background: url(/images/preview-btn-arrow.svg) no-repeat center/100% auto;
}
.preview_btn_fixed_link .text {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  padding-left: 1.5625rem;
  position: relative;
}
.preview_btn_fixed_link .text::before {
  content: "";
  width: 1.0625rem;
  aspect-ratio: 1/1;
  background: url(/images/preview-icon.svg) no-repeat center/100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.input_others {
  margin-top: 8px;
}

/***************
ヘッダー
***************/
.header {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 20px;
}
.header_inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_logo_img-wrap {
  width: 100%;
}
.header_logo_img {
  width: 100%;
  height: 15px;
  /* padding-left: 20px; */
  vertical-align: middle;
}

.google_header {
  width: 100px;
  text-align: center;
  display: block;
  border: 1px solid #111;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.google_header:hover {
  opacity: 0.6;
}

@media (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
.footer_manual_link {
  margin: 0 auto 1.5rem;
  aspect-ratio: 670/160;
  max-width: 20.9375rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .footer_manual_link:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .footer_manual_link:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

/***************
main
***************/
.main_body {
  padding: 40px 20px;
  background: #fff;
}
.main_body_title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  margin-bottom: 24px;
}
.main_body_title::before {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  left: 15px;
}
.main_body_title::after {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  right: 15px;
}
.main_body_title::before, .main_body_title::after {
  display: inline-block;
  content: "";
  width: 2px;
  background: #A4AFB3;
  vertical-align: bottom;
  position: absolute;
  bottom: 0;
  height: 50px;
}

.main_desc {
  line-height: 1.6923;
  color: #7A878C;
  text-align: center;
  font-size: 13px;
  margin-bottom: 32px;
}

.top_form_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 20px;
}
.top_form_title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4666;
  text-align: center;
  margin-bottom: 8px;
}
.top_form_img_wrap {
  margin-bottom: 8px;
}
.top_form_btn {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background: #D85041;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 6px rgba(216, 80, 65, 0.2);
          box-shadow: 0px 4px 6px rgba(216, 80, 65, 0.2);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.top_form_btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.9;
  color: #fff;
}
.top_form_btn::after {
  content: "";
  display: inline-block;
  background: url(/images/right_arrow.svg) no-repeat center center;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 10px;
}

.desc_wrap {
  margin-bottom: 108px;
  text-align: left;
}
.desc_wrap.second {
  margin-bottom: 40px;
  padding-left: 20px;
}

/***************
fv
***************/
body {
  background-color: #F9F9F9;
  /* width: 100%; */
  margin: 0 auto !important;
  max-width: 900px;
  color: #233D4C;
}

.top_wrap {
  margin: 0 auto;
  width: 900px;
  background-color: #fff;
  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;
  min-height: 100vh;
}

.preview_wrap {
  width: 100%;
}

.wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #F5F5F7;
  position: relative;
}

.preview_head {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.fv {
  background: #CFE2E6;
}
.fv_inner {
  height: 300px;
}
.fv_img_wrap {
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
}
.fv_btn_wrap {
  text-align: center;
  position: relative;
  bottom: 80px;
  margin: 0 20px;
}
.fv_btn {
  background: #D85041;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.fv_btn:hover {
  opacity: 0.9;
  color: #fff;
}

.red {
  color: #D85041;
}

@media (min-width: 400px) {
  .fv_inner {
    height: 330px;
  }
}
/***************
ガイド
***************/
.guide_item:nth-of-type(3) {
  margin-bottom: 106px;
}
.guide_item:not(:first-child) {
  margin-bottom: 60px;
}
.guide_item_head {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.guide_item_content {
  font-size: 14px;
  line-height: 1.75;
}
.guide_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 26px;
}
.guide_img_wrap {
  margin-bottom: 16px;
  position: relative;
}
.guide_img_wrap::after {
  position: absolute;
  content: "";
  display: block;
  width: 92px;
  height: 60px;
  right: 5px;
  bottom: -64px;
  z-index: -1;
}
.guide_img_wrap01::after {
  background: url(/images/01@2x.png) no-repeat center center;
  background-size: contain;
}
.guide_img_wrap02::after {
  background: url(/images/02@2x.png) no-repeat center center;
  background-size: contain;
}
.guide_img_wrap03::after {
  background: url(/images/03@2x.png) no-repeat center center;
  background-size: contain;
}
.guide_note {
  font-size: 10px;
  color: #A4AFB3;
  line-height: 1.75;
  margin-top: 8px;
}

.step_text_img {
  width: 48px;
  height: 12px;
}

.second_form_wrap {
  padding: 40px 20px 20px 20px;
  margin-bottom: 0;
  background: #F9F9F9;
}

.footer {
  background: #596266;
  color: #FFFFFF;
  font-size: 12px;
}
.footer_inner {
  padding: 24px 20px 74px;
}
.footer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
.footer_copyright {
  text-align: center;
}
.footer_item a {
  position: relative;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.footer_item a:hover {
  color: #fff;
  opacity: 0.7;
}
.footer_item a::after {
  content: "";
  display: inline-block;
  background: url(/images/icon_blank.svg) no-repeat center center;
  background-size: contain;
  width: 11px;
  height: 11px;
  position: absolute;
  right: -15px;
  top: 2px;
}

/***************
マニュアル
***************/
.manual_wrap {
  padding: 32px 0 158px;
  background: #fff;
  max-width: 550px;
  margin: 0 auto;
}
.manual_intro_inner {
  padding: 0 20px;
}
.manual_header {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 23px;
}
.manual_toc_wrap {
  padding: 32px 20px;
  background: #F5F5F5;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: bold;
}
.manual_gray_wrap {
  background: #E6E6E6;
  border-radius: 2px;
  padding: 16px;
  letter-spacing: 0.52px;
  font-size: 13px;
}
.manual_small_note {
  font-size: 10px;
  color: #A4AFB3;
  line-height: 1.75;
}

.toc_head {
  margin-bottom: 10px;
}
.toc_list {
  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;
  row-gap: 8px;
}
.toc_item {
  background: #fff;
  border-radius: 3px;
}
.toc_item_link {
  display: block;
  position: relative;
  padding: 20px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.toc_item_link::after {
  position: absolute;
  content: "▼";
  width: 22px;
  height: 22px;
  right: 18px;
}
.toc_item_link:hover {
  opacity: 0.6;
}

.section_inner {
  padding: 0 20px;
}
.section_step_wrap {
  padding-bottom: 77px;
}
.section_step_red {
  display: inline-block;
  font-family: "Gotham", sans-serif;
  background: #D85041;
  border-radius: 2px;
  font-size: 12px;
  color: #fff;
  padding: 3px 9px 1px;
  margin-bottom: 8px;
}
.section_step_head {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.section_img {
  margin-bottom: 16px;
}
.section_text {
  font-size: 13px;
  letter-spacing: 0.52px;
  line-height: 1.69;
}
.section_sub_head {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.72px;
  margin-bottom: 8px;
}

.gray_note {
  color: #A4AFB3;
  font-size: 10px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.red_note {
  font-size: 13px;
  color: #D85041;
  line-height: 1.69;
  letter-spacing: 0.52px;
}

.mb_64 {
  margin-bottom: 64px;
}

.fw_bold {
  font-weight: bold;
}

.preview_btn .back_text::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(/images/back.svg) no-repeat center center;
  background-size: contain;
  width: 10px;
  height: 8px;
  left: -20px;
  top: 4px;
}

.fixed_preview_btn .back_text::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(/images/back.svg) no-repeat center center;
  background-size: contain;
  width: 10px;
  left: -15px;
  top: 4px;
}

.to_manual_btn {
  display: block;
  border: 1px solid #233D4C;
  border-radius: 4px;
  padding: 16px 0;
  width: 100%;
  max-width: 350px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: bold;
  margin: 24px auto;
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.to_manual_btn::after {
  position: absolute;
  content: "";
  background: url(/images/chevron-right-solid.svg) no-repeat center center;
  background-size: contain;
  right: 15px;
  width: 10px;
  height: 10px;
}

.footer_manual_btn {
  display: block;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 16px 0;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer_manual_btn::after {
  content: "";
  display: inline-block;
  background: url(/images/icon_blank.svg) no-repeat center center;
  background-size: contain;
  width: 11px;
  height: 11px;
  position: absolute;
  right: 20px;
}

@media (min-width: 769px) {
  .to_manual_btn:hover,
.footer_manual_btn:hover {
    opacity: 0.6;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
/***************
履歴書フォーム
***************/
.resume_wrap {
  padding: 2.3125rem 1.25rem 6.5rem;
  background: #F5F5F7;
  max-width: 34.375rem;
  margin: 0 auto;
}

.preview_head_wrap {
  padding: 2.3125rem 1.25rem 0;
  background: #F5F5F7;
}

.step_nav_wrap {
  width: 95%;
  margin: 0 auto 32px;
}
.step_nav_wrap_2 {
  width: 184px;
  margin: 0 auto 32px;
}
.step_nav_list {
  position: relative;
  padding-left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.step_nav_list li {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #E6E6E6;
  background: #E6E6E6;
  border-radius: 100%;
  z-index: 1;
  color: #fff;
  cursor: pointer;
}
.step_nav_list li a {
  display: block;
  width: 100%;
  height: 24px;
}
.step_nav_list li a:hover {
  color: #fff;
}
.step_nav_list li span {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.step_nav_list li.active {
  color: #fff;
  background: #D85041;
  border: 1px solid #D85041;
}
.step_nav_list:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E6E6E6;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.step-nav {
  padding-top: 10px;
  padding-bottom: 4px;
  margin-bottom: 24px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.step-nav::-webkit-scrollbar {
  display: none;
}
.step-nav__txt {
  background: #A4AFB3;
  color: #fff;
  margin-left: auto;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.016em;
  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;
  width: 156px;
  height: 23px;
  border-radius: 16px;
  position: relative;
}
.step-nav__txt::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #A4AFB3;
  position: absolute;
  right: 45px;
  bottom: 3px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.step-nav__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;
}
.step-nav__list::after {
  content: "";
  width: 40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.step-nav__item {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.step-nav__item:last-child {
  width: 108px;
}
.step-nav__item:not(:last-child) .number::after {
  content: "";
  z-index: -1;
  width: 80px;
  height: 4px;
  background: #D1D3D4;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.step-nav__item a {
  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: 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;
  gap: 8px;
  width: 80px;
}
.step-nav__item a.router-link-exact-active .number {
  background: #D85041;
}
.step-nav__item a.router-link-exact-active .txt {
  color: #D85041;
}
.step-nav__item .number {
  font-family: "Avenir", sans-serif;
  color: #fff;
  background: #D1D3D4;
  font-weight: 800;
  font-size: 15px;
  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;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
}
.step-nav__item .txt {
  font-weight: 700;
  font-size: 12px;
  line-height: 9px;
  letter-spacing: 0.016em;
  white-space: nowrap;
  color: #D1D3D4;
}

.resume_step_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
}
.resume_step_note {
  padding: 8px 16px;
}
.resume_step_note.--center {
  text-align: center;
}
.resume_step_note_strong {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.resume_step_note_box {
  margin-bottom: 24px;
  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;
  gap: 16px;
}
.resume_step_note_wrap {
  background: #F9F9F9;
  font-size: 13px;
  line-height: 1.6923;
  text-align: center;
}

.resume_form_wrap {
  margin-bottom: 40px;
}

.item_name {
  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;
  gap: 8px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 8px;
}
.item_name .status-label,
.item_name .required-label,
.item_name .optional-label {
  font-size: 10px;
  color: #fff;
  background: #D85041;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  min-height: 16px;
  min-width: 32px;
  padding: 0 2px;
  border-radius: 4px;
}
.item_name .required-label,
.item_name .optional-label {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.item_name .required-label {
  background: #D85041;
}
.item_name .optional-label {
  background: #7A878C;
}
.item_name .status-label {
  background: #E6E6E6;
  gap: 4px;
  min-width: 42px;
  border-radius: 8px;
}
.item_name .status-label::before {
  content: "";
  width: 8px;
  height: 7px;
  background: url(/images/check.svg) no-repeat center/contain;
}
.item_name span.required {
  position: relative;
}
.item_name span.required::before {
  content: "必須";
  position: absolute;
  width: 28px;
  background: #d85041;
  border-radius: 3px;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #fff;
  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;
  left: 36px;
  top: calc(50% - 10px);
}
.item_name_sub {
  font-size: 10px;
  color: #A4AFB3;
  margin-bottom: 8px;
}

.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;
}
.flex_column_2 {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 8px;
}

.col_12 {
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.col_12 .input_wrap {
  width: calc(50% - 6px);
}

.mb_8 {
  margin-bottom: 8px;
}

.mr_12 {
  margin-right: 12px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.item_wrap + .item_wrap {
  margin-top: 16px;
}
.item_wrap .error-msg {
  color: #d85041;
  font-size: 12px;
}
.item_wrap.is-valid .status-label {
  background: #A7D129;
}

.item_body > span {
  font-size: 13px;
  margin: 0 4px 0 4px;
}

.input_year,
.input_age {
  width: 104px;
}

.input_month,
.input_day {
  width: 80px;
}

.form_label {
  display: block;
  width: calc(50% - 6px);
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  opacity: 0;
  width: 1px;
  position: absolute;
  height: 1px;
}

input[type=checkbox] {
  width: auto;
  margin-right: 8px;
}

.radio_text {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 20px 32px;
  border-radius: 2px;
  font-size: 13px;
  background: #fff;
}
.radio_text::before, .radio_text::after {
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto 10px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.radio_text::before {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #E6E6E6;
  left: 8px;
}
.radio_text::after {
  width: 8px;
  height: 8px;
  background: #999999;
  left: 12px;
  opacity: 0;
}

.input_radio:checked + .radio_text::before {
  border: 2px solid #0070bd;
}
.input_radio:checked + .radio_text::after {
  background: #0070bd;
  opacity: 1;
}

.pager_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.next_step_btn {
  width: 200px;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background: #D85041;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 6px rgba(216, 80, 65, 0.2);
          box-shadow: 0px 4px 6px rgba(216, 80, 65, 0.2);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.next_step_btn:hover {
  color: #fff;
  opacity: 0.9;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.next_step_btn::after {
  content: "";
  display: inline-block;
  background: url(/images/right_arrow.svg) no-repeat center center;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 10px;
}
.next_step_btn.disabled {
  opacity: 0.5;
  /* pointer-events: none; */
}

.back_step_btn {
  font-size: 13px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.back_step_btn:hover {
  color: inherit;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
.back_step_btn::before {
  content: "";
  display: inline-block;
  background: url(/images/back_arrow.svg) no-repeat center center;
  background-size: contain;
  width: 10px;
  height: 10px;
  margin-right: 8px;
}

.preview_btn {
  display: block;
  width: 100%;
  color: #fff;
  background: #D85041;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  padding: 16px 0;
  line-height: 1.4231;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
  -webkit-transition: 0.1s ease-out all;
  transition: 0.1s ease-out all;
}
.preview_btn:hover {
  opacity: 0.9;
}
.preview_btn:hover.preview_btn span {
  color: #fff;
}
.preview_btn span {
  position: relative;
  color: #fff;
}
.preview_btn span::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(/images/preview@2x.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  left: -20px;
}

.back .preview_btn span::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(/images/back.svg) no-repeat center center;
  background-size: contain;
  width: 10px;
  height: 8px;
  left: -20px;
  top: 4px;
}

.navy_btn {
  position: relative;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
  line-height: 1.15384;
}
.navy_btn_wrap {
  margin-top: 24px;
  background: #233D4C;
  border-radius: 3px;
  text-align: center;
  padding: 17px 0;
  cursor: pointer;
}
.navy_btn::after {
  content: "";
  display: inline-block;
  background: url(/images/plus@2x.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
}

.address_note {
  font-size: 13px;
  line-height: 1.6923;
  padding: 21px 0;
  border-top: 1px solid #E6E6E6;
  margin-top: 24px;
}

.auto_btn {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}
.auto_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #D85041;
  border-radius: 3px;
  height: 51px;
  width: calc(50% - 16px);
  margin-left: 16px;
  cursor: pointer;
}

.photo_upload_image {
  width: 150px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 16px;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.normal_text_wrap {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.75;
}
.normal_text_wrap .red {
  font-weight: bold;
}

.small_note_text {
  font-size: 12px;
  line-height: 1.75;
  color: #A4AFB3;
  margin-bottom: 16px;
}

.small_text {
  font-size: 10px;
}

.mb_16 {
  margin-bottom: 16px;
}

.align_item_base {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.input_family {
  width: 104px;
}

label,
input[type=checkbox] {
  cursor: pointer;
}

.thanks_wrap {
  background: #FFF;
  padding: 24px 20px 37px;
  margin-bottom: 24px;
}
.thanks_header {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}
.thanks_text {
  font-size: 13px;
  line-height: 1.6923;
}

.top_back_btn {
  background: #D85041;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.top_back_btn:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.9;
}

.el-collapse {
  margin-top: 32px;
  border-top: 1px solid #EBEEF5;
  border-bottom: 1px solid #EBEEF5;
}
.el-collapse-item__wrap {
  will-change: height;
  background-color: #F5F5F7 !important;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #F5F5F7 !important;
}
.el-collapse-item__header {
  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;
  height: 48px;
  line-height: 48px;
  padding-left: 20px;
  background-color: #FFF;
  color: #233D4C !important;
  cursor: pointer;
  border-bottom: 1px solid #233D4C !important;
  font-weight: bold !important;
  -webkit-transition: border-bottom-color 0.3s;
  transition: border-bottom-color 0.3s;
  outline: 0;
  border: 1px solid #233D4C;
  border-radius: 3px;
}
.el-collapse-item__content {
  padding-bottom: 25px;
  font-size: 13px;
  color: #233D4C;
  font-weight: normal;
  line-height: 1.6923 !important;
  padding: 16px !important;
}

.el-icon-arrow-right:before {
  content: "\e6e0" !important;
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.el-icon-arrow-right.is-active::before {
  content: "\e6e0" !important;
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion_title {
  border-radius: 3px;
  font-size: 13px;
  font-weight: bold !important;
  line-height: 1.5;
}
.accordion_title:nth-of-type(1) {
  margin-bottom: 8px;
}

.accordion_content_list {
  margin-bottom: 16px;
}

.content_normal_text {
  font-size: 13px;
  line-height: 1.6923;
}

.photo_img_wrap {
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.photo_img img {
  width: 120px;
}

.app_img_wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 25px;
}

.photo_app a {
  display: inline-block;
}

.apple_link {
  width: 118px;
  height: 45px;
}
.apple_link img {
  width: 100%;
  height: auto;
}

.google_link {
  width: 148px;
  height: auto;
}
.google_link img {
  width: 100%;
  height: auto;
  margin-top: -5px;
}

.upload_label {
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  font-weight: bold;
  font-size: 13px;
}
.upload_label::after {
  content: "";
  display: inline-block;
  background: url(/images/plus@2x.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
}

.none {
  display: none;
}

.delete::after {
  content: "";
  display: inline-block;
  background: url(/images/minus@2x.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
}

.history_item_wrap {
  background: #fff;
  margin-top: 16px;
  padding: 16px 16px 16px 16px;
  cursor: pointer;
  border: 2px solid #e6e6e6;
}
.history_item_wrap:first-of-type .card_up_btn {
  opacity: 0.3;
}
.history_item_wrap:last-of-type .card_down_btn {
  opacity: 0.3;
}

.history_small {
  font-weight: normal;
  color: #596266;
  margin-left: 5px;
}

.hover_up:hover {
  opacity: 0.9;
}

.card_btn_wrap {
  height: 51px;
  text-align: right;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.card_delete_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 11px 24px;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
}

.card_register_btn {
  background: #D85041;
  color: #fff;
  border-radius: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 11px 24px;
  cursor: pointer;
  font-size: 13px;
}

.card_content_wrap {
  width: 92%;
}

.card_change_btn_wrap {
  width: 10px;
  text-align: center;
}
.card_change_btn_wrap img {
  width: 16px;
  height: 16px;
}

.card_up_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  cursor: pointer;
}

.card_down_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  cursor: pointer;
}

.isActive {
  outline: 2px solid #D85041;
  outline-offset: -2px;
}
.isActive .card_content_wrap {
  width: 100% !important;
}

.isNone {
  display: none !important;
}

.v--modal-box.v--modal {
  background: #F5F5F7;
  padding: 21px 20px 160px;
  max-width: 600px;
  margin: 0 auto;
}

.close_btn {
  width: 16px;
  cursor: pointer;
}
.close_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.close_btn img {
  width: 16px;
  height: 16px;
}

.modal_header {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.modal_note_wrap {
  background: #F9F9F9;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  line-height: 1.692;
}

.modal_desc {
  font-size: 13px;
}

.modal_head_note {
  font-size: 11px;
}

.modal_sample_content {
  background: #FFF;
  padding: 16px 20px;
  font-size: 12px;
  line-height: 1.75;
  border: 2px solid #E6E6E6;
  border-radius: 2px;
  cursor: pointer;
  white-space: pre-wrap;
}
.modal_sample_content:not(:first-child) {
  margin-top: 16px;
}

.modal_footer {
  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;
  width: 100%;
  max-width: 600px;
  position: fixed;
  z-index: 9000;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.modal_add_btn {
  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;
  background: #EBA79F;
  color: #fff;
  padding: 16px;
  font-weight: bold;
  line-height: 1.15;
  width: 66.4%;
}
.modal_add_btn span {
  position: relative;
}
.modal_add_btn span::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(/images/plus@2x.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 1px;
  right: -24px;
  z-index: 9999;
}

.modal_close_btn {
  background: #233D4C;
  color: #fff;
  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: 16px;
  font-weight: bold;
  line-height: 1.15;
  width: 33.6%;
  cursor: pointer;
}

.active {
  background: #D85041;
  cursor: pointer;
}

.border_red {
  border: 2px solid #D85041;
}

.date_input {
  width: 100% !important;
}

.el-input__inner {
  font-size: 16px !important;
  height: 51px !important;
  border-radius: 2px !important;
}

.el-radio {
  height: 51px !important;
  border-radius: 2px !important;
  margin-right: 0px !important;
  width: calc(50% - 6px);
  background: #fff;
}
.el-radio.is-bordered {
  padding: 18px 20px 0 10px !important;
  border: 1px solid #DCDFE6;
}
.el-radio.is-bordered + .el-radio.is-bordered {
  margin-left: 0 !important;
}

@media (max-width: 350px) {
  .input_year {
    width: 80px;
  }

  .input_month,
.input_day {
    width: 60px;
  }
}
.preview-viewer {
  height: 1070px;
  background: #fff;
}

@media (max-width: 794px) {
  .is-preview {
    -webkit-transform: scale(0.47229);
            transform: scale(0.47229);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }

  .fixed_preview_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #233D4C;
    height: 51px;
    width: 126px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0 4px 0 0;
    z-index: 800;
    font-weight: bold;
    padding-left: 10px;
  }
  .fixed_preview_btn span {
    position: relative;
    color: #fff;
    font-size: 13px;
  }
  .fixed_preview_btn span::before {
    position: absolute;
    content: "";
    display: inline-block;
    background: url(/images/preview@2x.png) no-repeat center center;
    background-size: contain;
    width: 16px;
    height: 16px;
    left: -20px;
    top: 2px;
  }

  .back_arrow {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #233D4C;
    height: 51px;
    width: 155px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0 4px 0 0;
    z-index: 800;
    padding-left: 10px;
  }
  .back_arrow span {
    position: relative;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
  }
  .back_arrow span::before {
    position: absolute;
    content: "";
    display: inline-block;
    background: url(/images/edit.svg) no-repeat center center;
    background-size: contain;
    width: 15px;
    height: 15px;
    left: -22px;
    top: 3px;
  }
}
@media (min-width: 795px) {
  .preview-viewer {
    height: auto;
  }

  .fixed_preview_btn {
    display: none;
  }

  .back_arrow {
    display: none;
  }

  .shokureki-viewer {
    height: auto !important;
    overflow-y: visible;
  }
}
.avatar-uploader .el-upload {
  border: 1px dashed #d9d9d9;
  border-radius: 0 !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.avatar-uploader .el-upload:hover {
  border-color: #409EFF;
}
.avatar-uploader-icon {
  font-size: 28px;
  color: #8c939d;
  width: 178px;
  height: 178px;
  line-height: 178px;
  text-align: center;
}

.avatar {
  width: 178px;
  height: 178px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.step2.--fix .el-collapse-item__header {
  cursor: pointer;
  border-radius: 48px;
  padding: 16px;
  width: 100%;
  min-height: 58px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  background: #233D4C;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .step2.--fix .el-collapse-item__header:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .step2.--fix .el-collapse-item__header:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.step2.--fix .el-collapse-item__header::after {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background: url("/images/icon-add.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.step2 .el-collapse-item__header {
  background: #233D4C !important;
  color: #fff !important;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0 !important;
  position: relative;
}
.step2 .el-collapse-item__header::after {
  content: "";
  display: inline-block;
  background: url(/images/plus@2x.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
}
.step2 .el-collapse-item__header.is-active::after {
  content: "";
  display: inline-block;
  background: url(/images/minus@2x.png) no-repeat center center;
  background-size: contain;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 18px;
}
.step2 .el-collapse-item__arrow {
  display: none !important;
}

.width100 {
  width: 100%;
}

.count_check {
  text-align: right;
  font-size: 13px;
  margin-top: 8px;
}

.el-textarea__inner {
  display: block;
  resize: vertical;
  padding: 16px 20px !important;
  line-height: 1.75 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  font-size: 16px !important;
  color: #233D4C !important;
  background-color: #FFF;
  border: 1px solid #E6E6E6 !important;
  border-radius: 2px !important;
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.el-textarea__inner::-webkit-input-placeholder {
  color: #B3B3B3;
}
.el-textarea__inner::-moz-placeholder {
  color: #B3B3B3;
}
.el-textarea__inner:-ms-input-placeholder {
  color: #B3B3B3;
}
.el-textarea__inner::-ms-input-placeholder {
  color: #B3B3B3;
}
.el-textarea__inner::placeholder {
  color: #B3B3B3;
}

.lh_1 {
  line-height: 1;
}

.age_label {
  width: 30px;
}

.final_input .el-select {
  width: 100%;
}

.el-select {
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
}
.el-select.--wide {
  width: 100%;
}
.el-select .el-input__inner {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.el-select .el-input__suffix {
  pointer-events: none;
}

.el-select-dropdown__item {
  min-height: 44px;
  line-height: 44px;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
.el-select-dropdown__item:active {
  background-color: #E6F7FF;
}

@media (max-width: 768px) {
  .el-select-dropdown__item {
    padding: 12px 20px;
    font-size: 16px;
    min-height: 48px;
    line-height: 24px;
  }

  .el-select .el-input__inner {
    font-size: 16px !important;
    min-height: 44px;
  }

  .el-select-dropdown {
    -webkit-overflow-scrolling: touch;
  }
}
.education_form_item {
  margin-top: 32px;
  color: #233D4C;
}
.education_form_item .flex {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.education_form_title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 16px;
}
.education_form_title + .el-input {
  margin-bottom: 16px;
}

.select_state {
  width: 100%;
  max-width: 158px;
}

.edu_span {
  margin: 0 16px 0 4px !important;
}

.card_list_item {
  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;
  list-style: none;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.submit_btn {
  width: 100%;
  text-align: right;
  font-weight: bold;
  margin: 24px 0 24px auto;
}

.pdf_btn {
  background: #416AD8;
  width: 100%;
  font-weight: bold;
}
.pdf_btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.pdf_btn::after {
  content: "";
  display: inline-block;
  background: url(/images/download.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
}

.download_wrap {
  border-top: 1px solid #e6e6e6;
  padding: 24px 0 48px;
}

.download_text {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
}

.last_back_inner {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.error {
  font-size: 12px;
  color: #D85041;
}

.redborder {
  border: 2px solid #D85041;
}

.disable {
  opacity: 0.5 !important;
  -webkit-transform: none !important;
          transform: none !important;
  cursor: default !important;
}

.preview_header {
  text-align: center;
  letter-spacing: 20px;
  font-size: 24px;
  line-height: 1.8823;
  font-weight: bold;
}

.shokureki_item {
  margin-bottom: 16px;
}
.shokureki_item:not(:first-of-type) {
  margin-top: 40px;
}
.shokureki_name {
  text-align: right;
  text-decoration: underline;
  margin-bottom: 20px;
}
.shokureki_title {
  line-height: 1.75;
  font-weight: bold;
}
.shokureki_title:not(:first-of-type) {
  margin-top: 20px;
}
.shokureki_date {
  text-align: right;
}
.shokureki_summary {
  white-space: pre-wrap;
}
.shokureki-viewer {
  height: 600px;
  overflow-y: scroll;
  background: #fff;
}
.shokureki-paper {
  font-family: Noto Sans JP Regular, Noto Sans Japanese, MyFontFamily, Segoe UI Emoji, Segoe UI Symbol, Apple Color Emoji, Noto Color Emoji, Noto Emoji, sans-serif;
  font-weight: 400;
  background: #fff;
  color: #000;
  font-size: 15px;
  width: 794px;
  padding: 68px 68px 100px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
}
.shokureki-paper p,
.shokureki-paper div,
.shokureki-paper li,
.shokureki-paper span {
  font-weight: 400 !important;
  font-family: monospace, monospace !important;
}

.doc-paper p,
.doc-paper div,
.doc-paper li,
.doc-paper span {
  font-weight: 400 !important;
  font-family: monospace, monospace !important;
}

.skill_name {
  text-decoration: underline;
}
.skill_name:not(:first-of-type) {
  margin-top: 20px;
}

.skill_content {
  line-height: 1.5;
  margin-bottom: 8px;
}

.keireki_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #ebe9e9;
  border: 1px solid #707070;
}
.keireki_time {
  border-right: 1px solid #707070;
  width: 110px;
  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;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.keireki_content {
  width: calc(100% - 110px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.keireki_list_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  border-left: 1px solid #707070;
}

.business_title {
  border-bottom: 1px dotted #707070;
}
.business_text {
  white-space: pre-wrap;
}
.business_content {
  width: calc(100% - 110px);
}

textarea {
  white-space: pre-wrap;
}

.pr_content {
  white-space: pre-wrap;
}

.red_btn_wrap {
  margin-top: 24px;
  background: #D85041;
  border-radius: 3px;
  text-align: center;
  padding: 17px 0;
  cursor: pointer;
}

.company_history_head {
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 16px;
}
.company_head {
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 16px;
}
.company_add {
  position: relative;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.15384;
}
.company_add_wrap {
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 3px;
  border: 1px solid #233D4C;
  text-align: center;
  padding: 17px 0;
  cursor: pointer;
}
.company_add::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(/images/navy_plus.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  right: 16px;
}

.detail_span {
  font-size: 12px;
}

.job_delete_wrap {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 16px;
}
.job_delete_btn {
  display: inline-block;
  font-size: 12px;
  color: #D85041;
  text-decoration: underline;
  margin-top: 12px;
  margin-bottom: 24px;
}

.job_navy_btn {
  margin-top: 8px !important;
  margin-bottom: 12px !important;
}

/***************
プレビュー見本
***************/
.preview_list_radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.preview_item_label {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 11px 0;
  background: #E6E6E6;
  font-weight: bold;
  font-size: 13px;
}

#preview_radio_id:checked + label,
#example_radio_id:checked + label,
#shokureki_preview_radio_id:checked + label,
#shokureki_example_radio_id:checked + label {
  background: #D85041;
  color: #fff;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

:disabled {
  opacity: 0.5 !important;
  -webkit-transform: none !important;
          transform: none !important;
  cursor: default !important;
}

.appeal_pre {
  font-size: 10px;
  padding: 0 6px;
}

.logo_mono {
  width: 140px;
  margin: 9px 0 0 auto;
}

/* バージョンアップ */
input[id=remember] {
  width: 20px;
  height: 20px;
}

.googel_login_btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}

.or_text {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #111;
}

.justify-content-center {
  margin-top: 50px;
}

/***************
ボタンコンポーネント
***************/
.btn__wrap {
  text-align: center;
}
.btn__add {
  cursor: pointer;
  border-radius: 48px;
  padding: 16px;
  width: 100%;
  min-height: 58px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  background: #233D4C;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .btn__add:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .btn__add:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.btn__add::after {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background: url("/images/icon-add.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__delete {
  cursor: pointer;
  border-radius: 48px;
  padding: 16px;
  width: 100%;
  min-height: 58px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  background: #233D4C;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .btn__delete:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .btn__delete:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.btn__delete::after {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background: url("/images/photo-delete.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/***************
学歴履歴コンポーネント
***************/
.c-history__list {
  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;
}
.c-history__item {
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.c-history__item:first-child .c-history__btn.-up {
  pointer-events: none;
  opacity: 0.3;
}
.c-history__item:last-child .c-history__btn.-down {
  pointer-events: none;
  opacity: 0.3;
}
.c-history__item-inner {
  padding: 16px 16px 24px;
}
.c-history__head {
  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;
  background: #233D4C;
  color: #fff;
  min-height: 35px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}
.c-history__head .delete-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  -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;
  width: 55px;
  min-height: 27px;
  border-radius: 18px;
  border: 1px solid #fff;
  color: #fff;
  margin-left: auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, color, border-color, background;
  transition-property: opacity, color, border-color, background;
}
@media (hover: hover) {
  .c-history__head .delete-btn:hover {
    border-color: #233D4C;
    color: #233D4C;
    background: #fff;
  }
  .c-history__head .delete-btn:hover .icon {
    background: url(/images/icon-delete-hover.svg) no-repeat center/100% auto;
  }
}
@media (hover: none) {
  .c-history__head .delete-btn:active {
    border-color: #233D4C;
    color: #233D4C;
    background: #fff;
  }
  .c-history__head .delete-btn:active .icon {
    background: url(/images/icon-delete-hover.svg) no-repeat center/100% auto;
  }
}
.c-history__head .delete-btn .icon {
  aspect-ratio: 10/13;
  width: 9px;
  background: url(/images/icon-delete.svg) no-repeat center/100% auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-history__head .delete-btn .txt {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
}
.c-history__nav-ttl {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #233D4C;
  margin-bottom: 8px;
}
.c-history__btn {
  cursor: pointer;
  width: calc(50% - 2px);
  border-radius: 8px;
  padding: 0 23px;
  min-height: 48px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.c-history__btn.-up {
  background: #D85041;
}
@media (hover: hover) {
  .c-history__btn.-up:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .c-history__btn.-up:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.c-history__btn.-down {
  background: #3665D3;
}
@media (hover: hover) {
  .c-history__btn.-down:hover {
    opacity: 0.7;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media (hover: none) {
  .c-history__btn.-down:active {
    opacity: 0.7;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.c-history__btn .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}
.c-history__btn img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  aspect-ratio: 1/1;
}
.c-history__btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.c-history__checkbox {
  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-history__checkbox.el-checkbox {
  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;
  color: #233D4C;
}
.c-history__checkbox .el-checkbox__inner {
  width: 16px;
  height: 16px;
  border-color: #D9D9D9;
}
.c-history__checkbox .el-checkbox__inner::after {
  left: 5px;
  top: 2px;
}
.c-history__checkbox .el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #3665D3;
  border-color: #3665D3;
}
.c-history__checkbox .el-checkbox__input.is-checked + .el-checkbox__label {
  color: #233D4C;
}
.c-history__checkbox .el-checkbox__label {
  line-height: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-left: 8px;
}
.c-history__checkbox-box {
  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-history__work-title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 16px;
}
.c-history__work-title .sm {
  font-size: 12px;
}
.c-history__work-add {
  border: 2px solid #233D4C;
  min-height: 50px;
  width: 100%;
  border-radius: 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .c-history__work-add:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .c-history__work-add:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.c-history__work-add .arrow {
  width: 18px;
  aspect-ratio: 1/1;
  background: url("/images/work-add.svg") no-repeat center center/contain;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-history__work-add--wrap {
  text-align: center;
}
.c-history__work-list {
  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;
  gap: 16px;
}
.c-history__work-list:has(.c-history__work-item) {
  margin-bottom: 16px;
}
.c-history__work-item .c-history__btn-wrap .c-history__btn.-up, .c-history__work-item .c-history__btn-wrap .c-history__btn.-down {
  opacity: 1;
  pointer-events: auto;
}
.c-history__work-item:first-child .c-history__btn-wrap .c-history__btn.-up {
  opacity: 0.3;
  pointer-events: none;
}
.c-history__work-item:last-child .c-history__btn-wrap .c-history__btn.-down {
  opacity: 0.3;
  pointer-events: none;
}
.c-history__work-item:nth-child(n+2) {
  margin-top: 16px;
}
.c-history__work-item--head {
  background: #7A878C;
  border-radius: 8px 8px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
.c-history__work-item--head .title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
.c-history__work-item--head .delete-btn {
  cursor: pointer;
  margin-left: auto;
  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;
  gap: 5px;
  border: 1px solid #fff;
  border-radius: 18px;
  min-width: 54px;
  min-height: 27px;
  color: #fff;
  padding: 0 7px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, border-color, color, background;
  transition-property: opacity, border-color, color, background;
}
@media (hover: hover) {
  .c-history__work-item--head .delete-btn:hover {
    border-color: #7A878C;
    color: #7A878C;
    background: #fff;
  }
  .c-history__work-item--head .delete-btn:hover .icon {
    background: url(/images/icon-delete-hover2.svg) no-repeat center/100% auto;
  }
}
@media (hover: none) {
  .c-history__work-item--head .delete-btn:active {
    border-color: #7A878C;
    color: #7A878C;
    background: #fff;
  }
  .c-history__work-item--head .delete-btn:active .icon {
    background: url(/images/icon-delete-hover2.svg) no-repeat center/100% auto;
  }
}
.c-history__work-item--head .delete-btn .icon {
  width: 10px;
  aspect-ratio: 10/13;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url(/images/icon-delete.svg) no-repeat center/100% auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-history__work-item--head .delete-btn .text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.c-history__work-item--body {
  border: 2px solid #7A878C;
  border-top: none;
  background: #F5F5F5;
  border-radius: 0 0 8px 8px;
  padding: 16px 14px 14px;
}
.c-history__work-item--bottom {
  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-top: 8px;
  gap: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-history__work-item--bottom .word-count {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
.c-history__work-item--bottom .sample-add {
  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;
  min-height: 31px;
  padding: 0 18px;
  gap: 8px;
  color: #fff;
  background: #A7D129;
  border-radius: 30px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .c-history__work-item--bottom .sample-add:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .c-history__work-item--bottom .sample-add:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.c-history__work-item--bottom .sample-add .text {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}
.c-history__work-item--bottom .sample-add .icon {
  width: 14px;
  aspect-ratio: 1/1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-history__hr {
  margin: 24px 0 16px;
  width: 100%;
  background: #E6E6E6;
  height: 1px;
  border: none;
  opacity: 1;
}
.c-history__caution {
  color: #D85041;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 8px;
}

/***************
履歴書ポップアップ
***************/
.resume_save_btn {
  color: #D85041;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4615384615;
  display: inline-block;
  padding-left: 1rem;
  position: relative;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
@media (hover: hover) {
  .resume_save_btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .resume_save_btn:active {
    opacity: 0.7;
  }
}
.resume_save_btn::before {
  content: "";
  display: inline-block;
  background: url(/images/icon-save.svg) no-repeat center center;
  background-size: contain;
  width: 0.75rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.resume_save_btn_wrap {
  text-align: center;
  margin-top: 1.5rem;
  line-height: 0;
}
.resume_save_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  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: 1.5rem;
}
.resume_save_popup_overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.resume_save_popup_image {
  border-radius: 0.5rem;
  aspect-ratio: 295/180;
  margin-bottom: 0.625rem;
}
.resume_save_popup_box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 34.375rem;
}
.resume_save_popup_title {
  text-align: center;
  font-weight: 700;
  color: #D85041;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 0.625rem;
}
.resume_save_popup_text {
  color: #A4AFB3;
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.resume_save_popup_top {
  background: #fff;
  border: 1px solid #DCDFE6;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.9375rem;
}
.resume_save_popup_btn {
  width: 100%;
  min-height: 3rem;
  padding: 0.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background: #7A878C;
  color: #fff;
  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;
  gap: 0.5rem;
}
.resume_save_popup_btn .icon {
  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;
  aspect-ratio: 1/1;
  width: 1.1875rem;
}
.resume_save_popup_btn .text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}

/***************
ラクラク例文コンポーネント
***************/
.c-sample_btn {
  min-height: 4.8125rem;
  width: 100%;
  border-radius: 6.25rem;
  background: #A7D129;
  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: 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;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .c-sample_btn:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .c-sample_btn:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.c-sample_btn .txt {
  font-size: 1rem;
  display: inline-block;
  line-height: 1.6;
  padding-right: 1.375rem;
  position: relative;
}
.c-sample_btn .txt::before {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1/1;
  background: url(/images/sample-add.svg) no-repeat center/100% auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-sample_btn .caution {
  font-size: 0.75rem;
  line-height: 1.6;
}
.c-sample_btn_wrap {
  margin: 8px auto 0;
}
.c-sample_modal .v--modal-box.v--modal {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.c-sample_modal_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}
.c-sample_modal_note {
  background: #fff;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1rem;
}
.c-sample_modal_note .caution {
  font-size: 0.6875rem;
  color: #D85041;
}
.c-sample_modal_list {
  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;
  gap: 1.5rem;
}
.c-sample_modal_item {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .c-sample_modal_item:hover {
    opacity: 0.9;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .c-sample_modal_item:active {
    opacity: 0.9;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.c-sample_modal_item.border_red {
  border: none;
  outline: 0.125rem solid #D85041;
  border-radius: 0.75rem;
}
.c-sample_modal_item_head {
  background: #233D4C;
  color: #fff;
  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;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem 0.75rem 0 0;
}
.c-sample_modal_item_head_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 700;
  line-height: 1.6;
}
.c-sample_modal_item_head_text .lg {
  font-size: 1rem;
}
.c-sample_modal_item_head_text .sm {
  font-size: 0.75rem;
  margin-top: -0.125rem;
}
.c-sample_modal_item_head_btn {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #fff;
  border: 1px solid #fff;
  width: 7.5rem;
  height: 1.875rem;
  border-radius: 6.25rem;
  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;
}
.c-sample_modal_item_head_btn .txt {
  font-size: 0.625rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-right: 1.125rem;
}
.c-sample_modal_item_head_btn .txt::before {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1/1;
  background: url(/images/sample-select.svg) no-repeat center/100% auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-sample_modal_item_body {
  border: 0.125rem solid #233D4C;
  border-top: none;
  padding: 1rem 0.875rem 0.875rem;
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 400;
  color: #233D4C;
  border-radius: 0 0 0.75rem 0.75rem;
}
.c-sample_modal_close {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
}
.c-sample_modal_close_btn {
  background: #7A878C;
  color: #fff;
  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;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-sample_modal_close_btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-sample_modal_close_btn:active {
    opacity: 0.7;
  }
}
.c-sample_modal_close_btn .txt {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 1.6875rem;
  position: relative;
}
.c-sample_modal_close_btn .txt::before {
  content: "";
  width: 1.1875rem;
  aspect-ratio: 1/1;
  background: url(/images/sample-close.svg) no-repeat center/100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-sample_popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  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;
  z-index: 20;
}
.c-sample_popup_overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-sample_popup_box {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 16px;
  border-radius: 8px;
  max-width: 34.375rem;
  margin: 0 auto;
}
.c-sample_popup_img {
  aspect-ratio: 295/180;
  margin: 0 auto 10px;
}
.c-sample_popup_text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: #D85041;
  margin-bottom: 16px;
}
.c-sample_popup_submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 10px;
  width: 100%;
  min-height: 48px;
  background: #D85041;
  -webkit-box-shadow: 0px 4px 6px rgba(216, 80, 65, 0.2);
          box-shadow: 0px 4px 6px rgba(216, 80, 65, 0.2);
  border-radius: 40px;
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-sample_popup_submit:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-sample_popup_submit:active {
    opacity: 0.7;
  }
}
.c-sample_popup_close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 24px;
  aspect-ratio: 1/1;
  background: url(/images/sample-popup-close.svg) no-repeat center/100% auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-sample_popup_close:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-sample_popup_close:active {
    opacity: 0.7;
  }
}

/***************
クイックビューコンポーネント
***************/
.c-quick {
  max-width: 34.375rem;
  margin: 0 auto;
}
.c-quick_head {
  color: #fff;
  background: #A7D129;
  text-align: center;
  padding: 0.5rem;
  overflow: hidden;
  position: relative;
  border-radius: 1rem 1rem 0 0;
}
.c-quick_head::before {
  content: "";
  aspect-ratio: 41/64;
  background: url(/images/quick-img.svg) no-repeat center/100% auto;
  width: 2.5625rem;
  position: absolute;
  left: 1.25rem;
  bottom: -0.3125rem;
}
.c-quick_head_title {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 700;
}
.c-quick_head_text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
}
.c-quick_block {
  background: #fff;
}
.c-quick_block_head {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  color: inherit;
  min-height: 3rem;
  width: 100%;
  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;
  gap: 0.5rem;
  padding: 1rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-quick_block_head:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-quick_block_head:active {
    opacity: 0.7;
  }
}
.c-quick_block_head.is-open .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-quick_block_head .txt {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  color: #233D4C;
}
.c-quick_block_head .required {
  background: #D85041;
  border-radius: 0.125rem;
  min-width: 1.75rem;
  min-height: 1rem;
  font-size: 0.625rem;
  color: #fff;
  font-weight: 700;
  padding: 0 0.25rem;
  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;
}
.c-quick_block_head .status {
  margin-left: auto;
  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 #D85041;
  color: #D85041;
  min-width: 5.125rem;
  min-height: 0.9375rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.25rem;
  margin-right: 1.5rem;
}
.c-quick_block_head .status.is-valid {
  border-color: #A7D129;
  color: #A7D129;
}
.c-quick_block_head .arrow {
  aspect-ratio: 13/8;
  background: url(/images/quick-arrow.svg) no-repeat center/100% auto;
  width: 0.8125rem;
}
.c-quick_block_body {
  padding: 1rem;
}
.c-quick_block_list {
  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;
  gap: 1rem;
  margin-bottom: 1rem;
}
.c-quick_block_item_title {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #233D4C;
  padding-left: 0.5rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-quick_block_item_title .sm {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #7A878C;
}
.c-quick_block_item_title::before {
  content: "";
  width: 0.25rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #D85041;
}
.c-quick_block_item_label {
  font-size: 0.75rem;
  line-height: 1.5833333333;
  letter-spacing: 0;
  font-weight: 700;
  background: #233D4C;
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}
.c-quick_block_item_text {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 700;
}
.c-quick_block_item_text .expanded_text {
  position: relative;
}
.c-quick_block_item_text .expanded_text.is-open::after {
  opacity: 0;
  visibility: hidden;
}
.c-quick_block_item_text .expanded_text::after {
  content: "";
  width: 100%;
  height: 5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-quick_block_item_text .read-more-btn {
  margin-top: 0.5rem;
  color: #A7D129;
  border: 1px solid #A7D129;
  width: 100%;
  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;
  min-height: 2.875rem;
  border-radius: 0.25rem;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .c-quick_block_item_text .read-more-btn:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .c-quick_block_item_text .read-more-btn:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.c-quick_block_item_text .read-more-btn.is-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.c-quick_block_item_text .read-more-btn::after {
  content: "";
  background: url(/images/read-more-arrow.svg) no-repeat center/100% auto;
  width: 0.8125rem;
  height: 0.5625rem;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-quick_block_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0.625rem;
  width: 100%;
  min-height: 2.875rem;
  background: #D85041;
  color: #fff !important;
  -webkit-box-shadow: 0px 0.25rem 0.375rem rgba(216, 80, 65, 0.2);
          box-shadow: 0px 0.25rem 0.375rem rgba(216, 80, 65, 0.2);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 700;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, color, -webkit-transform;
  transition-property: opacity, color, -webkit-transform;
  transition-property: opacity, color, transform;
  transition-property: opacity, color, transform, -webkit-transform;
}
@media (hover: hover) {
  .c-quick_block_btn:hover {
    opacity: 0.7;
    color: #fff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .c-quick_block_btn:active {
    opacity: 0.7;
    color: #fff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.c-quick_photo_img {
  display: block;
  width: 150px;
  height: auto;
  max-width: 100%;
  margin: 0 auto 16px;
}
.c-quick_photo_status {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

/***************
履歴書ページ
***************/
.p-manual {
  max-width: 34.375rem;
  margin: 0 auto;
  width: 100%;
}
.p-manual__head {
  aspect-ratio: 125/42;
  margin: 0;
}
.p-manual__inner {
  padding: 0 1.25rem;
  width: 100%;
}
.p-manual__intro {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.p-manual__intro-title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #233D4C;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.p-manual__intro-img {
  border-radius: 0.5rem;
  aspect-ratio: 335/180;
  max-width: 20.9375rem;
  margin: 0 auto 1rem;
}
.p-manual__intro-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.5rem;
}
.p-manual__intro-item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  width: 100%;
}
.p-manual__intro-item .title {
  text-align: center;
  color: #233D4C;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-box: trim-both cap alphabetic;
  margin-bottom: 1rem;
}
.p-manual__intro-item .text {
  color: #596266;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 500;
}
.p-manual__caution {
  background: #E6E6E6;
  padding-bottom: 1rem;
}
.p-manual__caution-head {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background: #233D4C;
  width: 100%;
  padding: 24px 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 16px;
}
.p-manual__caution-head.--shokureki::before, .p-manual__caution-head.--shokureki::after {
  background: #3F505A;
}
.p-manual__caution-head::before, .p-manual__caution-head::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 8px;
  background: url("/images/resume/line.png") repeat-x center/375px 8px;
  left: 0;
  right: 0;
}
.p-manual__caution-head::before {
  top: 6px;
}
.p-manual__caution-head::after {
  bottom: 6px;
}
.p-manual__caution-sample {
  aspect-ratio: 134/263;
  margin: 0 auto 1rem;
}
.p-manual__caution-sample.--shokureki {
  aspect-ratio: 134/327;
}
.p-manual__caution-list {
  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;
  gap: 0.5rem;
}
.p-manual__caution-item {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-manual__caution-item .head {
  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;
  min-height: 2.625rem;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
}
.p-manual__caution-item .head .num {
  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;
  width: 2rem;
  height: 1.5rem;
  border-radius: 3.75rem;
  border: 0.125rem solid #D85041;
  color: #D85041;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
}
.p-manual__caution-item .head .title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #233D4C;
}
.p-manual__caution-item .body {
  padding: 1rem;
  position: relative;
}
.p-manual__caution-item .body::before {
  content: "";
  width: calc(100% + 16px);
  position: absolute;
  top: 0;
  left: -8px;
  background: repeating-linear-gradient(to right, #fff 0px, #fff 4px, #E6E6E6 4px, #E6E6E6 12px);
  height: 1px;
}
.p-manual__caution-item .body .text {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 500;
}
.p-manual__caution-item .body .text .strong {
  color: #D85041;
}
.p-manual__caution-item .body .sm {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #7A878C;
}
.p-manual__caution-other {
  margin-top: 0.5rem;
  background: #596266;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
}
.p-manual__caution-other .label {
  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;
  width: 100%;
  min-height: 1.1875rem;
  background: #fff;
  color: #596266;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  border-radius: 3.125rem;
}
.p-manual__caution-other .text {
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}
.p-manual__caution-other .list {
  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;
  gap: 0.75rem;
  list-style: disc;
  padding-left: 1.25rem;
}
.p-manual__caution-other .list li {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
}
.p-manual__caution-other .list-wrap {
  border: 0.125rem solid #FFFFFF;
  padding: 0.875rem 0.375rem;
  border-radius: 0.5rem;
}
.p-manual__point {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
.p-manual__point-label {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #D85041;
  border-radius: 3.75rem;
  margin: 0 auto 1rem;
  width: 12.25rem;
  height: 1.6875rem;
  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-manual__point-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #233D4C;
  text-align: center;
  margin-bottom: 1rem;
}
.p-manual__point-title .strong {
  color: #D85041;
}
.p-manual__point-text {
  color: #596266;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
.p-manual__point-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
}
.p-manual__point-block {
  overflow: hidden;
  border-radius: 0.5rem;
  width: 100%;
}
.p-manual__point-block .head {
  color: #fff;
  background: #233D4C;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 0.4375rem;
  width: 100%;
  text-align: center;
}
.p-manual__point-block .head.--lg {
  padding: 0.6875rem 0.4375rem;
}
.p-manual__point-block .body {
  background: #fff;
  padding: 0.5rem 1rem 1rem;
}
.p-manual__point-block .flow {
  padding-top: 0.5rem;
  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;
  gap: 1.125rem;
}
.p-manual__point-block .flow .flow-item {
  min-height: 2.75rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  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;
  gap: 0.25rem;
  padding-left: 2.5rem;
  position: relative;
  z-index: 1;
}
.p-manual__point-block .flow .flow-item:first-child::before {
  top: 50%;
}
.p-manual__point-block .flow .flow-item:last-child::before {
  bottom: 50%;
}
.p-manual__point-block .flow .flow-item::before {
  content: "";
  width: 0.125rem;
  background: #233D4C;
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: -1.125rem;
  left: 0.75rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-manual__point-block .flow .flow-item .icon {
  position: absolute;
  width: 1.5rem;
  border: 0.125rem solid #233D4C;
  background: #fff;
  aspect-ratio: 1/1;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-manual__point-block .flow .flow-item .icon .flag {
  position: absolute;
  aspect-ratio: 30/33;
  width: 1.875rem;
  z-index: 1;
  left: 0.125rem;
  bottom: 0.6875rem;
  -webkit-transform: rotate(-17.48deg);
          transform: rotate(-17.48deg);
}
.p-manual__point-block .flow .flow-item .icon::before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #C8D1D5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-manual__point-block .flow .title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.p-manual__point-block .flow .text {
  font-size: 0.6875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.p-manual__point-block .list li {
  padding: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  color: #233D4C;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 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;
  gap: 4px;
}
.p-manual__point-block .list li .sm {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}
.p-manual__point-block .list li .inline-block {
  display: inline-block;
}
.p-manual__point-block .list li::before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  background: url("/images/resume/check.svg") no-repeat center/100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-manual__point-block .list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E6E6E6;
  height: 1px;
}
.p-manual__bottom {
  background: #fff;
  padding: 1rem;
}
.p-manual__bottom-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media (hover: hover) {
  .p-manual__bottom-btn:hover {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: none) {
  .p-manual__bottom-btn:active {
    opacity: 0.7;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.p-manual__bottom-btn .body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border: 0.125rem solid #233D4C;
  padding: 0.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
}
.p-manual__bottom-btn .img {
  aspect-ratio: 140/80;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 8.75rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.p-manual__bottom-btn .txt {
  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;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #233D4C;
}
.p-manual__bottom-btn .arrow {
  background: #233D4C url("/images/resume/btn-arrow.svg") no-repeat center/13px auto;
  width: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}
.p-manual__tips {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-bottom: 2.5rem;
}
.p-manual__tips-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 0.5rem;
  gap: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#50BFD7), color-stop(45%, rgba(80, 191, 215, 0)), color-stop(55%, rgba(238, 154, 70, 0)), to(#EE9A46));
  background: linear-gradient(90deg, #50BFD7 0%, rgba(80, 191, 215, 0) 45%, rgba(238, 154, 70, 0) 55%, #EE9A46 100%);
}
.p-manual__tips-item {
  width: calc(50% - 0.25rem);
  max-width: 12.5rem;
}
.p-manual__tips-item.--pr .head {
  background: #50BFD7;
}
.p-manual__tips-item.--pr .body {
  border-color: #50BFD7;
}
.p-manual__tips-item.--pr .result .strong {
  color: #50BFD7;
}
.p-manual__tips-item.--motive .head {
  background: #EE9A46;
}
.p-manual__tips-item.--motive .body {
  border-color: #EE9A46;
}
.p-manual__tips-item.--motive .result .strong {
  color: #EE9A46;
}
.p-manual__tips-item .head {
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.4;
  padding: 0.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
}
.p-manual__tips-item .body {
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.375rem 0.375rem 1.375rem;
  background: #fff;
  border: 2px solid;
}
.p-manual__tips-item .list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.p-manual__tips-item .list li {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-manual__tips-item .arrow {
  aspect-ratio: 42/19;
  width: 2.625rem;
  display: block;
  margin: 0 auto 0.5rem;
}
.p-manual__tips-item .result {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 900;
  text-align: center;
}

/***************
最終確認コンポーネント
***************/
.c-complete__label {
  margin: 0 auto 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 335px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px;
  gap: 8px;
  border: 2px solid #233D4C;
  border-radius: 24px;
  width: 100%;
}
.c-complete__label .label {
  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: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: #233D4C;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 0 8px;
  min-width: 77px;
  min-height: 23px;
  border-radius: 16px;
}
.c-complete__label .txt {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: #233D4C;
}
.c-complete__txt {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
}
.c-complete__error {
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #D85041;
}
.c-complete__body {
  margin-bottom: 24px;
  margin-left: -20px;
  margin-right: -20px;
}
.c-complete__body .c-quick_block.is-error {
  background: #FFE9E7;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
