@charset "utf-8";
/* Body
------------------------------ */
html {
  overflow-x: hidden;
  font-size: 62.5%;
}
body {
  box-shadow: none;
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
    sans-serif;
  font-weight: normal;
  font-size: 1.6em;
  letter-spacing: 0.02em;
  text-size-adjust: 100%;
  margin: 0;
  animation: fadeIn 0.4s ease-in 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
h1,
h2 {
  line-height: 1.4;
  font-weight: 600;
}
h3,
h4 {
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  p {
    line-height: 1.9;
  }
}
a {
  text-decoration: none;
  transition: 0.3s ease;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
table {
  width: 100%;
}
.min,
.red_title,
.sub .br_bl_gr,
.bg_gr_title {
  font-family: "Hiragino Mincho Pro", "HG明朝E", "MS PMincho", serif;
}
/* layout
------------------------------ */
@media screen and (min-width: 641px) {
  .wrapper {
    width: 1280px;
    padding: 0 15px;
  }
}
.wrapper {
  margin: 0 auto;
}
ul,
ol {
  letter-spacing: -0.4em;
  line-height: 0;
}
li {
  letter-spacing: normal;
  vertical-align: top;
  line-height: 1.6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.customize-support header {
  top: 32px;
}
/* Header
------------------------------ */
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  background: #fff;
}
#logo {
  display: block;
}
#logo {
  transition: opacity 0.3s ease;
}
.logo_img {
  background: url(../images/logo.svg) no-repeat left center / contain;
}
#logo:hover {
  opacity: 0.6;
}
@media screen and (min-width: 641px) {
  #lead {
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
  .header_inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header_inner_l {
    position: relative;
    margin-top: 17px;
  }
  .header_inner_r {
    width: 840px;
  }
  .logo_img {
    width: 355px;
    height: 62px;
  }
  .header_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .header_contact .info {
    margin-left: auto;
    margin-top: 17px;
    margin-right: 25px;
    text-align: right;
  }
  .header_contact .tel {
    background: url(../images/tel_num_r.svg) no-repeat center center/contain;
    width: 271px;
    height: 31px;
  }
  .header_contact .time {
    font-size: 1.4rem;
  }
  .header_contact .btn {
    background: #bd0008;
    color: #fff;
    display: block;
    padding: 27px 10px;
    text-align: center;
    width: 206px;
  }
  .header_contact .btn:hover {
    background: #000;
  }
  .header_contact .btn span {
    position: relative;
    padding-left: 50px;
  }
  .header_contact .btn span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../images/mail_w.svg) no-repeat center center/contain;
    width: 27px;
    height: 20px;
  }
  /* fixed header */
  header.fixed_none {
    top: -100%;
    opacity: 0;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 6px -1px,
      rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  }
  header.fixed_none #lead,
  header.fixed_none .header_contact {
    display: none;
  }
  header.fixed_none .header_inner_l {
    margin-top: 0;
  }
  header.fixed_none .logo_img {
    width: 284px;
    height: 66px;
    margin-top: 2px;
  }
  header.fixed_none #gnav > ul > li > a {
    padding-bottom: 27px;
  }
  header.fixed_none #gnav .sub {
    top: 70px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 6px -1px,
      rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  }
  header.fixed_in {
    position: fixed;
    opacity: 1;
  }
  header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .customize-support header.fixed {
    top: 32px;
  }
  #gnav {
    margin-left: auto;
  }
  #gnav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  #gnav > ul > li {
    position: relative;
  }
  #gnav > ul > li > a {
    display: block;
    color: #000;
    text-align: center;
    letter-spacing: 0.08em;
    padding: 26px 13px 37px;
    line-height: 1;
    z-index: 2;
    overflow: hidden;
    transition: color 0.3s;
  }
  #gnav > ul > li > a:hover {
    color: #bd0008;
  }
  /* 子メニュー */
  #gnav .sub {
    position: absolute;
    top: 79px;
    right: 0px;
    text-align: left;
    width: 160px;
    z-index: 5;
    transition: 0.5s;
    overflow: hidden;
    height: 0;
    opacity: 0;
  }
  #gnav > ul > li:hover .sub {
    height: auto;
    opacity: 1;
  }
  #gnav .sub li {
    position: relative;
  }
  #gnav .sub li::after {
    content: "";
    display: block;
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 18px;
    background: #fff;
  }
  #gnav .sub li a {
    display: block;
    background: #bd0008;
    color: #fff;
    padding: 14px;
    font-size: 1.4rem;
  }
  #gnav .sub li a:hover {
    background: #000;
  }
}
/*slider*/
.slick-slider {
  line-height: 0;
}
.slick-slide img{
  margin: auto;
}
.slider01 {
  background: #fff;
}
.slider01_01 {
  position: relative;
}
.slider01 .text {
  position: absolute;
  left: 0;
  right: 0;
  /* bottom: 108px; */
  bottom: 128px;
  margin: auto;
  z-index: 2;
}
@media screen and (min-width: 641px) {
  .slider01 .slick-slide {
    max-height: 550px;
  }
  .slider01_01 h2 {
    font-size: 4rem;
  }
  .slider01,
  .main_img {
    margin-top: 155px;
  }
  .slider01_01 h2::before {
    transform: skew(24deg);
  }
}
.slider01 .slick-slide {
  overflow: hidden;
}
.slider01_01 h2 {
  position: relative;
  color: #bd0008;
  display: inline-block;
  line-height: 1;
  padding: 24px 33px 24px 0;
}
.slider01_01 h2::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
/* Common
------------------------------ */
.red {
  color: #bd0008;
}
.space_chapter p {
  margin-bottom: 1em;
}
.space_chapter p:last-of-type {
  margin-bottom: 0;
}
/*adjust link*/
.sub .jump_link::before {
  content: "";
  display: block;
}
@media screen and (min-width: 641px) {
  .sub .jump_link::before {
    margin-top: -120px;
    padding-top: 120px;
  }
}
.font_hide {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
.red_link {
  position: relative;
  color: #bd0008;
}
.red_link::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #bd0008;
  bottom: -3px;
  left: 0;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.red_link:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
.mt_20 {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 641px) {
  .caution {
    line-height: 1.7;
  }
}
.caution {
  position: relative;
  display: block;
  padding-left: 1.4em;
}
.caution::before {
  color: #bd0008;
  content: "※";
  position: absolute;
  left: 0;
}
/* list */
.dot_list li {
  position: relative;
  margin-bottom: 3px;
  padding-left: 18px;
}
.dot_list li:last-of-type {
  margin-bottom: 0;
}
.dot_list li::before {
  content: "・";
  position: absolute;
  top: 0.1em;
  left: 0;
  font-size: 0.9em;
}
.check_list li {
  position: relative;
  padding-left: 28px;
}
.check_list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  background: url(../images/check_r.svg) no-repeat center center/contain;
  width: 21px;
  height: 18px;
}
.num_img_list li {
  border-bottom: 2px solid #f4f4f4;
}
.num_img_list li:last-of-type {
  border: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 641px) {
  .num_img_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-flow: row-reverse;
    margin-bottom: 48px;
    padding-bottom: 52px;
  }
  .num_img_list .text {
    width: 584px;
  }
  .num_img_list h3 {
    font-size: 2.6rem;
    margin-bottom: 12px;
  }
  .num_img_list h3 {
    padding-left: 36px;
  }
  .num_img_list li .font_hide {
    top: 3px;
    height: 36px;
  }
}
.num_img_list h3 {
  position: relative;
}
.num_img_list li .font_hide {
  position: absolute;
  left: 0;
}
.num_img_list .num01 .font_hide {
  background: url(../images/num01_text_r.svg) no-repeat center center/contain;
  width: 14px;
}
.num_img_list .num02 .font_hide {
  background: url(../images/num02_text_r.svg) no-repeat center center/contain;
  width: 24px;
}
.num_img_list .num03 .font_hide {
  background: url(../images/num03_text_r.svg) no-repeat center center/contain;
  width: 22px;
}
.num_img_list .num04 .font_hide {
  background: url(../images/num04_text_r.svg) no-repeat center center/contain;
  width: 24px;
}
.num_img_list .num05 .font_hide {
  background: url(../images/num05_text_r.svg) no-repeat center center/contain;
  width: 24px;
}
@media screen and (min-width: 641px) {
  .num_br_gr_list > li::before {
    height: 36px;
  }
  .num_br_gr_list > li:first-of-type::before {
    top: 6px;
  }
}
.num_br_gr_list > li:first-of-type {
  padding-top: 0;
}
.num_br_gr_list > li {
  position: relative;
  padding: 19px 0 13px 36px;
  border-bottom: 2px solid #f4f4f4;
  letter-spacing: -0.02em;
}
.num_br_gr_list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 26px;
  left: 0;
  width: 25px;
}
.num_br_gr_list .num01::before {
  background: url(../images/num01_text_r.svg) no-repeat center center/contain;
}
.num_br_gr_list .num02::before {
  background: url(../images/num02_text_r.svg) no-repeat center center/contain;
}
.num_br_gr_list .num03::before {
  background: url(../images/num03_text_r.svg) no-repeat center center/contain;
}
.num_br_gr_list .num04::before {
  background: url(../images/num04_text_r.svg) no-repeat center center/contain;
}
@media screen and (min-width: 641px) {
  .step_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 35px;
    margin-bottom: 33px;
  }
  .step_list > div {
    width: 315px;
    padding: 26px 0 23px 30px;
  }
  .step_list > div::before {
    top: 0;
    right: -30px;
    border-width: 90px 0 90px 30px;
  }
  .step_list > div::after {
    height: 70px;
  }
  .step_list .step1 {
    width: 270px;
  }
  .step_list .step1::before {
    border-color: transparent transparent transparent #f4f4f4;
  }
  .step_list .step2::before {
    border-color: transparent transparent transparent #e3e3e3;
  }
}
.step_list > div {
  position: relative;
  text-align: center;
}
.step_list > div::before {
  content: "";
  display: block;
  z-index: 2;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.step_list > div::after {
  content: "";
  display: block;
  width: 100%;
}
.step_list .step1 {
  background: #f4f4f4;
}
.step_list .step1::after {
  background: url(../images/pc_register_r.svg) no-repeat center center/contain;
}
.step_list .step2 {
  background: #e3e3e3;
}
.step_list .step2::after {
  background: url(../images/consultation_r.svg) no-repeat center center/contain;
}
.step_list .step3 {
  background: #d2d2d2;
}
.step_list > div:last-of-type:before {
  content: none;
}
.step_list .step3::after {
  background: url(../images/staff_r.svg) no-repeat center center/contain;
}
.step_list .font_hide {
  display: block;
  height: 12px;
  margin-bottom: 3px;
}
.step_list .step1 .font_hide {
  background: url(../images/step1_text_r.svg) no-repeat center center/contain;
}
.step_list .step2 .font_hide {
  background: url(../images/step2_text_r.svg) no-repeat center center/contain;
}
.step_list .step3 .font_hide {
  background: url(../images/step3_text_r.svg) no-repeat center center/contain;
}
.step_list h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
@media screen and (min-width: 641px) {
  .num_flow_list li {
    padding: 20px 20px 28px 120px;
    margin-bottom: 50px;
  }
  .num_flow_list li::after {
    left: 30px;
    bottom: -33px;
  }
  .num_flow_list .bg_r {
    width: 90px;
    padding: 24px 0;
  }
  .num_flow_list .step {
    margin-top: 8px;
    height: 12px;
  }
  .num_flow_list h3 {
    font-size: 2.6rem;
  }
}
.num_flow_list li {
  position: relative;
  background: #f4f4f4;
}
.num_flow_list li:last-of-type {
  margin-bottom: 0;
}
.num_flow_list li::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 13px 0 13px;
  border-color: #bd0008 transparent transparent transparent;
}
.num_flow_list li:last-of-type::after {
  content: none;
}
.num_flow_list .bg_r {
  background: #bd0008;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
.num_flow_list .step,
.num_flow_list .num {
  vertical-align: middle;
}
.num_flow_list .step {
  background: url(../images/step_text_w.svg) no-repeat center center/contain;
  width: 31px;
}
.num_flow_list .num {
  width: 30px;
  height: 42px;
}
.num_flow_list .num01 .num {
  background: url(../images/num01_text_w.svg) no-repeat right 4px center/contain;
}
.num_flow_list .num02 .num {
  background: url(../images/num02_text_w.svg) no-repeat right center/contain;
}
.num_flow_list .num03 .num {
  background: url(../images/num03_text_w.svg) no-repeat right center/contain;
}
.num_flow_list .num04 .num {
  background: url(../images/num04_text_w.svg) no-repeat right center/contain;
}
.num_flow_list .num05 .num {
  background: url(../images/num05_text_w.svg) no-repeat right center/contain;
}
.num_flow_list .num06 .num {
  background: url(../images/num06_text_w.svg) no-repeat right center/contain;
}
.num_flow_list .num07 .num {
  background: url(../images/num07_text_w.svg) no-repeat right center/contain;
}
.num_flow_list h3 {
  margin-bottom: 7px;
}
.num_flow_list .chapter {
  min-height: 84px;
}
.num_flow_list .chapter p {
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .history_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .history_list .event {
    width: 638px;
    margin-left: auto;
  }
}
.history_list li {
  background: #f4f4f4;

  padding: 14px 20px;
  border-bottom: 2px solid #fff;
}
.history_list li:last-of-type {
  border-bottom: 0;
}
.history_list .year {
  display: inline-block;
  width: 9.7em;
}
.history_list .month {
  min-width: 2.4em;
  text-align: right;
  display: inline-block;
}
@media screen and (min-width: 641px) {
  .hub .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 22px;
  }
  .hub .text {
    width: 596px;
  }
  .hub h3 {
    font-size: 2.6rem;
    margin-bottom: 7px;
  }
}
.hub:nth-of-type(2) {
  margin-top: 20px;
}
.hub .flex {
  border: 3px solid #f4f4f4;
}
.hub p {
  line-height: 1.8;
}
/* table */
.red_w_table {
  line-height: 1.6;
}
@media screen and (min-width: 641px) {
  .red_w_table tr {
    border-bottom: 2px solid #f4f4f4;
  }
  .red_w_table tr:first-of-type {
    border-top: 2px solid #f4f4f4;
  }
  .red_w_table th,
  .red_w_table td {
    border-right: 2px solid #f4f4f4;
  }
}
.red_w_table th,
.red_w_table td {
  padding: 14px 18px;
}
.red_w_table th {
  background: #bd0008;
  color: #fff;
  font-weight: normal;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .table_w_gr tr {
    border-bottom: 1px solid #333;
  }
  .table_w_gr tr:first-of-type {
    border-top: 1px solid #333;
  }
  .table_w_gr th {
    padding: 24px 22px;
    width: 234px;
  }
  .table_w_gr td {
    background: #f1f1f1;
  }
}
.table_w_gr th {
  text-align: left;
  vertical-align: top;
  font-feature-settings: "palt";
}
.table_w_gr td {
  padding: 14px;
  vertical-align: middle;
}
@media screen and (min-width: 641px) {
  .red_w_table th {
    width: 180px;
  }
}
/* headline */
.br_bl_gr {
  position: relative;
  padding-bottom: 14px;
}
.br_bl_gr::before,
.br_bl_gr::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
}
.br_bl_gr::before {
  background: #f4f4f4;
  width: 100%;
}
.br_bl_gr::after {
  background: #000;
  width: 74px;
}
@media screen and (min-width: 641px) {
  #flow02 .br_bl_gr,
  #flow04 .br_bl_gr,
  #beginners04 .br_bl_gr,
  #system02 .br_bl_gr,
  #outline01 .br_bl_gr,
  #outline02 .br_bl_gr,
  #outline03 .br_bl_gr {
    margin-bottom: 44px;
  }
  #index .br_bl_gr {
    margin-bottom: 40px;
  }
  .red_title {
    font-size: 3.4rem;
    line-height: 1.45;
  }
  .sub .br_bl_gr {
    font-size: 3.2rem;
    margin-bottom: 37px;
  }
  .bg_gr_title {
    font-size: 2.6rem;
    padding: 7px 18px;
  }
}
.sub .br_bl_gr,
.red_title {
  color: #bd0008;
}
.bg_gr_title {
  background: #f4f4f4;
}
/* btn */
.btn_r,
.btn_r_mini {
  position: relative;
  background: #bd0008;
  color: #fff;
  display: block;
  line-height: 1.2;
  text-align: left;
}
.btn_r {
  width: 274px;
  padding: 25px 36px;
}
.btn_r_mini {
  width: 196px;
  padding: 15px 20px;
}
.btn_r::before,
.btn_r_mini::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/arr_w.svg) no-repeat center center/contain;
  transition: 0.3s;
}
@media screen and (min-width: 641px) {
  .btn_r::before,
  .btn_r_mini::before {
    width: 11px;
    height: 20px;
  }
  .btn_r::before {
    right: 24px;
  }
  .btn_r_mini::before {
    right: 17px;
  }
  .btn_r:hover:before {
    right: 20px;
  }
  .btn_r_mini:hover:before {
    right: 13px;
  }
}
.btn_r:hover,
.btn_r_mini:hover {
  background: #000;
}
/* single_pagenavi */
.single_pagenavi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
}
@media screen and (min-width: 641px) {
  .single_pagenavi {
    width: 653px;
  }
  .single_pagenavi li {
    width: 200px;
  }
}
.single_pagenavi a {
  display: block;
  background: #bd0008;
  color: #fff;
  text-align: center;
  padding: 19px 10px;
  line-height: 1;
}
.single_pagenavi .list {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.single_pagenavi .arr {
  position: relative;
}
.single_pagenavi .arr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 20px;
  background: url(../images/arr_w.svg) no-repeat center center/contain;
  transition: 0.3s;
}
.single_pagenavi .prev .arr {
  padding-left: 24px;
}
.single_pagenavi .prev .arr::before {
  transform: scale(-1, 1);
  left: -4px;
}
.single_pagenavi .next .arr {
  padding-right: 24px;
}
.single_pagenavi .next .arr::before {
  right: -4px;
}
.single_pagenavi a:hover {
  background: #000;
}
@media screen and (min-width: 641px) {
  .single_pagenavi .prev a:hover .arr::before {
    left: -10px;
  }
  .single_pagenavi .next a:hover .arr::before {
    right: -10px;
  }
}
/* action_btn */
#action_btn {
  margin-top: 29px;
}
@media screen and (min-width: 641px) {
  #index_search #action_btn {
    width: 614px;
    margin-top: -108px;
    margin-left: auto;
  }
  #action_btn .set a {
    padding: 24px 19px 21px;
    transform-origin: left bottom;
  }
}
@media screen and (min-width: 401px) {
  #action_btn .set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #action_btn .set .icon {
    border-bottom: 1px solid #fff;
  }
  #index_search .sign .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
  }
}
#index_search #action_btn {
  position: relative;
  z-index: 3;
}
#action_btn a {
  position: relative;
  color: #fff;
  display: block;
}
#action_btn a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/arr_w.svg) no-repeat center center/contain;
  transition: 0.3s;
}
#action_btn .sign::before {
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 641px) {
  #action_btn a::before {
    right: 19px;
    width: 11px;
    height: 20px;
  }
  #action_btn .set a::before {
    top: 19px;
  }
  #action_btn .set a:hover {
    transform: rotate(-2deg);
  }
  .sub #action_btn .set a {
    margin-bottom: 45px;
  }
  #action_btn .set h3 {
    font-size: 2rem;
  }
  #action_btn .set .big {
    font-size: 3.6rem;
    margin-right: 6px;
  }
  #index_search .sign {
    width: 465px;
    font-size: 2.8rem;
    padding: 20px 36px 20px 26px;
    margin-top: 20px;
    margin-left: auto;
  }
}
#action_btn .set h3 {
  letter-spacing: 0.04em;
}
#action_btn .job {
  background: #008980;
}
#action_btn .resources {
  background: #253680;
}
#action_btn .sign {
  background: #bd0008;
}
.sub #action_btn .sign {
  font-size: 2.6rem;
  padding: 13px 36px 13px 17px;
}
#action_btn .sign:hover {
  opacity: 0.7;
}
#action_btn .font_hide {
  height: 11px;
  display: block;
}
#action_btn .icon {
  line-height: 0;
}
@media screen and (min-width: 641px) {
  #action_btn .sign:hover::before {
    right: 16px;
  }
  #action_btn .set .icon {
    margin-left: 90px;
    padding-bottom: 19px;
    margin-bottom: 17px;
  }
  #index_search #action_btn .sign .icon {
    padding-left: 74px;
  }
}
#action_btn .icon {
  position: relative;
}
#action_btn .icon::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
}
@media screen and (min-width: 641px) {
  #action_btn .set .icon::before {
    top: -45px;
    left: -90px;
    width: 80px;
    height: 80px;
  }
  #action_btn .job .icon::before {
    border: 5px solid #008980;
    background: #fff url(../images/pc_search_g.svg) no-repeat center center/50px
      auto;
  }
  #action_btn .resources .icon::before {
    border: 5px solid #253680;
    background: #fff url(../images/human_search_b.svg) no-repeat center
      center/45px auto;
  }
  .sub #action_btn .sign .icon {
    padding-left: 70px;
  }
}
#action_btn .sign .icon::before {
  width: 56px;
  height: 56px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff url(../images/document_r.svg) no-repeat left 15px center/32px
    auto;
}
#action_btn .job .font_hide {
  background: url(../images/for_job_seekers_text.svg) no-repeat left
    center/contain;
}
#action_btn .resources .font_hide {
  background: url(../images/for_corporates_text.svg) no-repeat left
    center/contain;
}
#action_btn .sign .font_hide {
  background: url(../images/sign_up_text.svg) no-repeat left center/contain;
  width: 49px;
}
#index_search .sign .font_hide {
  margin-right: 14px;
}
.sub #action_btn .sign .font_hide {
  margin-top: 5px;
}
/* index common
------------------------------ */
@media screen and (min-width: 1501px) {
  #index_concept .pict {
    top: -16px;
    left: 0;
  }
  #index_resources .pict {
    top: 0;
    left: 0;
  }
  #index_job .pict {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 1500px) and (min-width: 641px) {
  #index_concept .wrapper,
  #index_job .wrapper,
  #index_resources .wrapper {
    position: relative;
  }
  #index_concept .pict {
    top: -144px;
    left: -125px;
  }
  #index_resources .pict {
    top: -93px;
    left: -125px;
  }
  #index_job .pict {
    top: -87px;
    right: -125px;
  }
}
@media screen and (min-width: 641px) {
  #index_concept .text,
  #index_job .text,
  #index_resources .text {
    width: 612px;
  }
  #index_concept .text,
  #index_resources .text {
    margin-left: auto;
  }
  #index_concept .section_inner,
  #index_job .section_inner,
  #index_resources .section_inner {
    position: relative;
    max-width: 1500px;
    margin: auto;
  }
  #index_concept .pict,
  #index_job .pict,
  #index_resources .pict {
    position: absolute;
  }
  #index_concept h2,
  #index_resources h2,
  #index_job h2 {
    margin-bottom: 24px;
  }
  #index_concept .btn_r,
  #index_job .btn_r,
  #index_resources .btn_r {
    margin-top: 40px;
  }
}
#index_concept .text,
#index_job .text,
#index_resources .text {
  position: relative;
}
/* index
------------------------------ */
#index_points  .section_inner {
    padding-bottom: 50px;
  }
@media screen and (min-width: 641px) {
  #index_concept .section_inner {
    padding-top: 128px;
    padding-bottom: 97px;
  }
  #index_points .section_inner {
    padding-bottom: 104px;
  }
  #index_resources .section_inner {
    padding-top: 87px;
    padding-bottom: 101px;
  }
  #index_concept .text::before {
    content: "";
    display: block;
    position: absolute;
    top: -70px;
    right: -8px;
    background: url(../images/my_style_gr.svg) no-repeat center center/contain;
    width: 358px;
    height: 71px;
  }
}
#index_concept h3 .font_hide {
  background: url(../images/concept_text_r.svg) no-repeat left center/contain;
  width: 105px;
  height: 21px;
}
#index_points h2 {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}
#index_points h2::before {
  content: "";
  display: block;
  background: url(../images/points_gr.svg) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 641px) {
  #index_points h2::before {
    position: absolute;
    top: 3px;
    left: 319px;
    bottom: 0;
    margin: auto;
    width: 269px;
    height: 71px;
  }
  #index_points h3::before {
    width: 158px;
    height: 158px;
    margin-bottom: 28px;
  }
  #index_points .num {
    width: 100%;
    height: 44px;
  }
}
#index_points h3::before {
  content: "";
  display: block;
  margin: auto;
}
#index_points .num {
  position: absolute;
  top: 0;
  left: 0;
}
#index_points .num01 .num {
  background: url(../images/num01_text_r.svg) no-repeat center center/contain;
}
#index_points .num02 .num {
  background: url(../images/num02_text_r.svg) no-repeat center center/contain;
}
#index_points .num03 .num {
  background: url(../images/num03_text_r.svg) no-repeat center center/contain;
}
#index_points .num01 h3::before {
  background: url(../images/bag_gr.svg) no-repeat center center/contain;
}
#index_points .num02 h3::before {
  background: url(../images/document_gr.svg) no-repeat center center/contain;
}
#index_points .num03 h3::before {
  background: url(../images/handshake_gr.svg) no-repeat center center/contain;
}
@media screen and (min-width: 641px) {
  #index_points .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #index_points li {
    position: relative;
    padding-top: 26px;
    width: 370px;
  }
  #index_points h3 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 20px;
  }
  #index_job .section_inner {
    padding-top: 94px;
    padding-bottom: 238px;
  }
}
#index_points .chapter p {
  line-height: 1.8;
}
#index_numbers .section_inner {
  padding-bottom: 0;
}
#index_numbers .br_bl_gr {
  max-width: 612px;
}
#index_numbers h3 .font_hide {
  /* background: url(../images/numbers_text_r.svg) no-repeat center
    center/contain; */
  width: 111px;
  height: 21px;
}
#index_numbers .red_title span {
  font-size: 16px;
  color: #000;
}
.index_numbers_items {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 24px;
  margin-top: 20px;
}
.index_numbers_item {
  padding: 20px 0 15px;
  border: 1px solid #bd0008;
}
.index_numbers_item_title {
  font-size: 20px;
  font-weight: 600;
  color: #bd0008;
  text-align: center;
  padding: 0 20px;
}
.index_numbers_item_content {
  margin-top: 20px;
}
@media screen and (min-width: 641px) {
  #index_numbers .section_inner {
    padding-bottom: 110px;
  }
  .index_numbers_items {
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .index_numbers_item {
    padding: 32px 0 22px;
  }
  .index_numbers_item_title {
    font-size: 26px;
    padding: 0 20px;
  }
  .index_numbers_item_content {
    margin-top: 32px;
  }
}




#index_job h3 .font_hide {
  background: url(../images/for_job_seekers_text_r.svg) no-repeat center
    center/contain;
  width: 200px;
  height: 21px;
}
#index_resources h3 .font_hide {
  background: url(../images/for_corporates_text_r.svg) no-repeat center
    center/contain;
  width: 200px;
  height: 21px;
}
@media screen and (min-width: 641px) {
  #index_job .text::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -100px;
    right: -16px;
    background: url(../images/job_search_gr.svg) no-repeat center center/contain;
    width: 466px;
    height: 71px;
  }
  #index_resources .text::before {
    content: "";
    display: block;
    position: absolute;
    top: -87px;
    right: 0;
    background: url(../images/recruit_gr.svg) no-repeat center center/contain;
    width: 330px;
    height: 71px;
  }
  #index_other .section_inner {
    padding-top: 117px;
    padding-bottom: 113px;
  }
  #index_other .list {
    max-width: 1148px;
    margin: auto;
  }
  #index_other li {
    width: 530px;
  }
  #index_other .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #index_other h2 {
    margin-top: 27px;
    margin-bottom: 18px;
  }
}
#index_other .section_inner {
  background: #f1f1f1;
}
#index_other li {
  text-align: center;
}
#index_other .chapter {
  margin-bottom: 33px;
}
#index_other .btn_r {
  margin: auto;
}
#index_news .section_inner {
  background: url(../images/index_news_bg.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 641px) {
  #index_news .section_inner {
    padding-top: 80px;
    padding-bottom: 116px;
  }
  #index_news .flex {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  #index_news .flex::before {
    content: "";
    display: block;
    position: absolute;
    left: 118px;
    bottom: -118px;
    background: url(../images/updates_gr.svg) no-repeat center center/contain;
    width: 334px;
    height: 71px;
  }
  #index_news .headline {
    padding: 38px 43px 38px 0;
    margin-top: 34px;
  }
  #index_news .headline::before {
    transform: skew(-24deg);
  }
  #index_news .headline h3 {
    margin-bottom: 16px;
  }
  #index_news h2 {
    letter-spacing: -0.03em;
  }
  #index_news .list {
    width: 684px;
  }
  #index_news .news_list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 28px 4px;
  }
  #index_news .btn_r_mini {
    margin-top: 18px;
  }
}
#index_news .headline {
  position: relative;
  z-index: 2;
}
#index_news .headline::before {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  right: 0;
  width: 150vw;
  height: 100%;
  z-index: -1;
}
#index_news .headline h3 {
  line-height: 0;
}
@media all and (-ms-high-contrast: none) {
  #index_news .headline {
    padding-right: 28px;
  }
  #index_news h2 {
    font-feature-settings: "palt";
    font-size: 3.3rem;
  }
}
#index_news .font_hide {
  background: url(../images/news_text_r.svg) no-repeat center center/contain;
  width: 66px;
  height: 21px;
}
#index_news li {
  border-bottom: 1px solid #fff;
}
#index_news li:first-of-type {
  bottom: 0;
}
#index_news .news_list a {
  color: #fff;
}
#index_news .news_list a:hover {
  opacity: 0.7;
}
#index_news .date {
  font-weight: 600;
  font-size: 1.4rem;
  margin-right: 56px;
}
#index_news li h3 {
  font-weight: normal;
}
/* sub common
------------------------------ */
@media screen and (min-width: 641px) {
  .main_img {
    padding: 75px 0;
  }
  .main_img .inner {
    min-width: 726px;
  }
  .main_img .main {
    font-size: 4rem;
  }
  .main_img .sub {
    height: 14px;
    margin-bottom: 5px;
  }
  .main_img .inner::before {
    transform: skew(24deg);
  }
}
.main_img .inner {
  position: relative;
  padding: 18px 18px 13px 0;
  display: inline-block;
  z-index: 2;
}
.main_img .inner::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 150vw;
  height: 100%;
  z-index: -1;
}
.main_img .main {
  color: #bd0008;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 641px) {
  #page_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #page_contents {
    width: 900px;
  }
  #page_side {
    width: 296px;
  }
}
/* job_seekers
------------------------------ */
#job_seekers .main_img {
  background: url(../images/job_seekers_main_img.jpg) no-repeat center
    center/cover;
}
#job_seekers .main_img .sub {
  background: url(../images/for_job_seekers_text_bl.svg) no-repeat left
    center/contain;
  width: 134px;
}
@media screen and (min-width: 641px) {
  #job_seekers01 .section_inner {
    padding-bottom: 84px;
  }
  #job_seekers01 .job_btn {
    width: 487px;
    font-size: 2.6rem;
  }
  #job_seekers01 .job_btn::before {
    width: 11px;
    height: 20px;
    right: 33px;
  }
  #job_seekers01 .job_btn .icon {
    margin-left: 76px;
    padding-left: 33px;
  }
  #job_seekers01 .job_btn .icon::before {
    width: 56px;
    height: 56px;
    left: -76px;
  }
}
#job_seekers01 .job_btn {
  position: relative;
  background: #008980;
  color: #fff;
  display: block;
  margin-top: 18px;
  padding: 13px 16px;
}
#job_seekers01 .job_btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/arr_w.svg) no-repeat center center/contain;
  transition: 0.3s;
}
#job_seekers01 .job_btn:hover {
  opacity: 0.7;
}
#job_seekers01 .job_btn:hover:before {
  right: 28px;
}
#job_seekers01 .job_btn .icon {
  position: relative;
  border-left: 1px solid #fff;
  line-height: 0;
  padding-top: 11px;
  padding-bottom: 11px;
}
#job_seekers01 .job_btn .icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff url(../images/glass_search_g.svg) no-repeat center
    center/43px auto;
  border-radius: 50%;
}
#job_seekers01 .job_btn h3 {
  line-height: 1;
  margin-top: 10px;
}
#job_seekers01 .font_hide {
  background: url(../images/job_search_text.svg) no-repeat center center/contain;
  width: 74px;
  height: 12px;
}
#job_seekers02 .list {
  margin-top: 5px;
}
@media screen and (min-width: 641px) {
  #job_seekers02 .section_inner {
    padding-bottom: 44px;
  }
  #job_seekers02 .list > li {
    padding-left: 189px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  #job_seekers02 li::before {
    top: 0;
    bottom: 0;
    width: 158px;
    height: 158px;
  }
  #job_seekers02 h3 {
    font-size: 2.6rem;
    padding-left: 36px;
  }
  #job_seekers02 .num01 h3 {
    padding-left: 28px;
  }
  #job_seekers02 .font_hide {
    top: 3px;
    height: 36px;
  }
  #job_seekers02 .chapter {
    min-height: 90px;
  }
  #job_seekers03 .section_inner,
  #corporates03 .section_inner {
    padding-bottom: 82px;
  }
}
#job_seekers02 .list > li {
  position: relative;
  border-bottom: 1px solid #f4f4f4;
}
#job_seekers02 .list > .num03 {
  border: 0;
}
#job_seekers02 li::before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  left: 0;
}
#job_seekers02 .num01::before {
  background: url(../images/bag_gr.svg) no-repeat center center/contain;
}
#job_seekers02 .num02::before {
  background: url(../images/building_gr.svg) no-repeat center center/contain;
}
#job_seekers02 .num03::before {
  background: url(../images/handshake_gr.svg) no-repeat center center/contain;
}
#job_seekers02 h3 {
  position: relative;
  margin-bottom: 14px;
}
#job_seekers02 .font_hide {
  position: absolute;
  left: 0;
}
#job_seekers02 .num01 .font_hide {
  background: url(../images/num01_text_r.svg) no-repeat center center/contain;
  width: 14px;
}
#job_seekers02 .num02 .font_hide {
  background: url(../images/num02_text_r.svg) no-repeat center center/contain;
  width: 24px;
}
#job_seekers02 .num03 .font_hide {
  background: url(../images/num03_text_r.svg) no-repeat center center/contain;
  width: 22px;
}
#job_seekers03 .btn_r,
#corporates03 .btn_r {
  margin-top: 20px;
}
/* beginners
------------------------------ */
#beginners .main_img {
  background: url(../images/beginners_main_img.jpg) no-repeat center
    center/cover;
}
#beginners .main_img .sub {
  background: url(../images/for_beginners_text_bl.svg) no-repeat left
    center/contain;
  width: 122px;
}
@media screen and (min-width: 641px) {
  #beginners01 .section_inner {
    padding-bottom: 82px;
  }
  #beginners01 .bg_gr {
    padding: 27px 24px;
  }
  #beginners01 .bg_gr h3 {
    font-size: 2.6rem;
    margin-bottom: 34px;
  }
  #beginners01 .check_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #beginners02 .br_bl_gr {
    margin-bottom: 54px;
  }
  #beginners02 .section_inner {
    padding-bottom: 33px;
  }
  #beginners03 .section_inner {
    padding-bottom: 85px;
  }
  #beginners03 .btn_r {
    width: 350px;
  }
  #beginners01 .check_list li {
    margin-bottom: 4px;
  }
  #beginners01 li:nth-of-type(odd) {
    width: 51%;
  }
}
#beginners01 .bg_gr {
  background: #f4f4f4;
  margin-top: 30px;
  margin-bottom: 20px;
}
#beginners01 .bg_gr h3 {
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
#beginners01 .btn_r {
  margin-top: 26px;
}
#beginners03 .step_list + p {
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  margin-bottom: 27px;
}
@media screen and (min-width: 641px) {
  .q_box {
    font-size: 1.8rem;
  }
}
.q_box {
  position: relative;
  background: #f4f4f4;
  font-weight: 600;
  padding: 17px 14px 17px 52px;
}
.q_box::before {
  content: "";
  display: block;
  position: absolute;
  left: 18px;
  background: url(../images/q_text_r.svg) no-repeat center center/contain;
  width: 15px;
  height: 25px;
}
.a_box {
  position: relative;
  padding: 26px 0 32px 52px;
}
.a_box::before {
  content: "";
  display: block;
  position: absolute;
  top: 32px;
  left: 16px;
  background: url(../images/a_text_bl.svg) no-repeat center center/contain;
  width: 15px;
  height: 22px;
}
#beginners04 h4 {
  color: #bd0008;
}
#beginners04 li {
  margin-bottom: 24px;
}
#beginners04 li:last-of-type {
  margin-bottom: 0;
}
/* corporates
------------------------------ */
#corporates .main_img {
  background: url(../images/corporates_main_img.jpg) no-repeat center
    center/cover;
}
#corporates .main_img .sub {
  background: url(../images/for_corporates_text_bl.svg) no-repeat left
    center/contain;
  width: 132px;
}
@media screen and (min-width: 641px) {
  #corporates01 .section_inner {
    padding-bottom: 34px;
  }
  #corporates01 .pict {
    max-width: 268px;
  }
  #corporates02 .section_inner {
    padding-bottom: 85px;
  }
  #corporates02 .list {
    margin-top: 40px;
  }
  #corporates02 li {
    padding: 25px 28px;
  }
  #corporates01 .bg_gr_title {
    margin-top: 38px;
    margin-bottom: 42px;
  }
}
#corporates02 .section_inner > .chapter {
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
#corporates02 li {
  background: #f4f4f4;
  margin-bottom: 20px;
}
#corporates02 li:last-of-type {
  margin-bottom: 0;
}
#corporates02 li h3 {
  position: relative;
  font-size: 1.9rem;
  border-bottom: 1px solid #333;
  padding-left: 29px;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
#corporates02 li h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  background: url(../images/check_r.svg) no-repeat center center/contain;
  width: 21px;
  height: 18px;
}
#corporates02 li .chapter {
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
#corporates02 li .chapter p {
  line-height: 1.7;
}
#corporates05 .section_inner {
  padding-bottom: 50px;
}
.corporates05_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 16px;
    counter-reset: cnt;
  margin-top: 67px;
}
.corporates05_item {
  position: relative;
  background-color: #F4F4F4;
  padding: 42px 20px 32px;
}
.corporates05_item::before {
  position: absolute;
  counter-increment: cnt;
  content: counter(cnt, decimal);
  font-size: 24px;
  font-weight: 600;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 48px;
  height: 48px;
  left: 50%;
  transform: translateX(-50%);
  top: -24px;
  color: #fff;
  background-color: #bd0008;
  border-radius: 50%;
}
.corporates05_item_title {
  text-align: center;
}

@media screen and (min-width: 641px) {
  #corporates05 .section_inner {
    padding-bottom: 85px;
  }
  .corporates05_items {
    grid-template-columns: repeat(4,1fr);
    gap: 36px 16px;
    margin-top: 67px;
  }
}
/* flow
------------------------------ */
#flow .main_img {
  background: url(../images/flow_main_img.jpg) no-repeat center center/cover;
}
#flow .main_img .sub {
  background: url(../images/flow_text_bl.svg) no-repeat left center/contain;
  width: 134px;
}
@media screen and (min-width: 641px) {
  #flow01 .section_inner,
  #flow02 .section_inner {
    padding-bottom: 84px;
  }
  #flow01 .panel {
    width: 435px;
    margin-top: 30px;
  }
  #flow01 h3 {
    font-size: 2.6rem;
  }
  #flow03 .section_inner {
    padding-bottom: 88px;
  }
  #flow03 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-flow: row-reverse;
  }
  #flow03 .flex .chapter {
    width: 590px;
  }
  #flow03 .flex .pict {
    margin-top: 4px;
  }
}
#flow01 .panel_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 26px;
}
#flow01 .panel {
  background: #f4f4f4;
}
#flow01 .panel:first-of-type,
#flow01 .panel:nth-of-type(2) {
  margin-top: 0;
}
#flow01 .text {
  padding: 13px 10px 18px;
  text-align: center;
}
#flow01 h3 {
  margin-bottom: 3px;
}
#flow01 .chapter {
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
#flow03_01 {
  margin-top: 29px;
  margin-bottom: 50px;
}
#flow03 .bg_gr_title {
  margin-bottom: 25px;
}

/* job_seekers
------------------------------ */
#job_seekers .main_img {
  background: url(../images/job_seekers_main_img.jpg) no-repeat center
    center/cover;
}
#job_seekers .main_img .sub {
  background: url(../images/for_job_seekers_text_bl.svg) no-repeat left
    center/contain;
  width: 134px;
}
/* system
------------------------------ */
#system .main_img {
  background: url(../images/system_main_img.jpg) no-repeat center center/cover;
}
#system .main_img .sub {
  background: url(../images/system_text_bl.svg) no-repeat left center/contain;
  width: 59px;
}
@media screen and (min-width: 641px) {
  #system01 .section_inner {
    padding-bottom: 78px;
  }
  #system01 .num_br_gr_list {
    width: 415px;
  }
  #system01 .pict {
    width: 442px;
    margin-top: 7px;
    padding: 22px 0;
  }
  #system01 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-flow: row-reverse;
    align-items: flex-start;
    margin-top: 33px;
  }
}
#system01 .pict {
  text-align: center;
  border: 1px solid #000;
}
#system01_01 {
  margin-top: 54px;
}
#system01_01 .bg_gr_title {
  margin-bottom: 24px;
}
/* company
------------------------------ */
#company .main_img,
#thanks .main_img,
#yonmaruyon .main_img {
  background: url(../images/company_main_img.jpg) no-repeat center center/cover;
}
#company .main_img .sub {
  background: url(../images/company_text_bl.svg) no-repeat left center/contain;
  width: 76px;
}
.company01_message {
  margin-bottom: 20px;
}
@media screen and (min-width: 641px) {
  #company01 .section_inner,
  #company02 .section_inner {
    padding-bottom: 75px;
  }
  .company01_message {
    margin-bottom: 24px;
  }
  #company01 h3 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  #company03 h3 {
    font-size: 2.6rem;
    line-height: 1.3;
  }
  #company03 .bg_gr::before {
    width: 10px;
  }
  #company03 .bg_gr {
    padding: 25px 25px 29px;
  }
  #company03 .section_inner {
    padding-bottom: 86px;
  }
  #company03 .section_child {
    margin-top: 38px;
  }
  #company03 .btn_link {
    margin-top: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #company04 .section_inner {
    padding-bottom: 84px;
  }
}
@media screen and (min-width: 441px) {
  #company03 .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
#company01 .last {
  text-align: right;
  margin-top: 26px;
}
#company01 .job {
  margin-right: 14px;
  vertical-align: 4px;
}
#company01 .last .font_hide {
  background: url(../images/ceo_name_bl.svg) no-repeat center center/contain;
  width: 143px;
  height: 28px;
}
#company03 .section_child:first-of-type {
  margin-top: 0;
}
#company03 .br_bl_gr {
  margin-bottom: 52px;
}
#company03 .bg_gr {
  position: relative;
  background: #f4f4f4;
}
#company03 .bg_gr::before {
  content: "";
  display: block;
  background: #bd0008;
  position: absolute;
  top: 22px;
  left: 0;
  height: 40px;
}
#company03 .title {
  border-bottom: 1px solid #333;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
#company03 h3 {
  font-size: 2.6rem;
  line-height: 1.3;
}
#company03 .permission {
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
#company03 .btn_link::after {
  content: "";
  display: block;
  width: 274px;
  height: 0;
}
#company04 .map {
  line-height: 0;
  margin-top: 22px;
}
/* outline
------------------------------ */
#outline .main_img {
  background: url(../images/outline_main_img.jpg) no-repeat center center/cover;
}
#outline .main_img .sub {
  background: url(../images/outline_text_bl.svg) no-repeat left center/contain;
  width: 63px;
}
@media screen and (min-width: 641px) {
  #outline01 .section_inner,
  #outline02 .section_inner,
  #outline03 .section_inner,
  #outline04 .section_inner,
  #outline05 .section_inner {
    padding-bottom: 80px;
  }
  #outline04 .connection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  #outline04 .text {
    margin-left: auto;
    width: 620px;
  }
  #outline04 .dot_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #outline04 .dot_list li {
    width: 49%;
  }
  #outline04 .dot_list li:nth-of-type(even) {
    margin-left: auto;
  }
}
#outline03 .pict {
  background: #403d3c;
  width: 224px;
  height: 140px;
}
.outline03_subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #bd0008;
  margin-top: 20px;
}
.outline03_logo {
  max-width: 180px;
}
.outline03_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 5px;
}
.outline03_item {
  border: 3px solid #F4F4F4;
  padding: 10px 15px;
}
.outline03_item_logo {
  max-width: 150px;
}
.outline03_item_title {
  font-size: 20px;
  margin-top: 5px;
}
.outline03_item_title span {
  font-size: 15px;
}
.outline03_item_text {
  margin-top: 5px;
}
@media screen and (min-width: 641px) {
  .outline03_subtitle {
    font-size: 20px;
    margin-top: 40px;
  }
  .outline03_items {
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .outline03_item {
    padding: 20px 25px;
  }
  .outline03_item_title {
    font-size: 26px;
  }
  .outline03_item_title span {
    font-size: 16px;
  }
  .outline03_item_text {
    margin-top: 10px;
  }
}
#outline07 .section_inner {
  padding-bottom: 40px;
}
.outline07_lists {
  margin-top: 20px;
}
.outline07_list {
  position: relative;
  padding-left: 16px;
}
.outline07_list::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  left: 6px;
  top: 10px;
  border-radius: 50%;
  background-color: #000;
}
@media screen and (min-width: 641px) {
  #outline07 .section_inner {
    padding-bottom: 80px;
  }
  .outline07_lists {
    margin-top: 40px;
  }
}
#outline04 .br_bl_gr {
  margin-bottom: 40px;
}
#outline04 .business {
  margin-top: 19px;
}
#outline04 .pict a {
  display: block;
  border: 3px solid #f4f4f4;
}
#outline04 .pict a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 641px) {
  #outline04 .meister .pict a {
    width: 250px;
    padding: 37px 0;
    margin-top: 6px;
  }
}
#outline04 .meister .pict a {
  text-align: center;
}
#outline04 h3 {
  font-weight: normal;
  font-size: 2rem;
  margin-bottom: 5px;
}
#outline04 h4 {
  font-weight: normal;
  font-feature-settings: "palt";
  margin-bottom: 4px;
}
#outline05 .section_child,
#outline06 .section_child {
  margin-top: 22px;
}
#outline05 .section_child .red {
  font-feature-settings: "palt";
}
#outline05 .section_child p {
  line-height: 1.8;
}
#outline06_02 ul {
  margin-bottom: 30px;
}
#outline06_02 ul li,
#outline06_03 ul li,
#outline06_04 p {
  margin-top: 12px;
}
#outline06_03.section_child,
#outline06_04.section_child {
  margin-top: 50px;
}
#outline06_04 .red_w_table td:first-of-type {
    border-left: 2px solid #f4f4f4;
}

/* recruit
------------------------------ */
#recruit .main_img {
  background: url(../images/recruit_main_img.jpg) no-repeat center center/cover;
}
#recruit .main_img .sub {
  background: url(../images/recruit_text_bl.svg) no-repeat left center/contain;
  width: 134px;
}
@media screen and (min-width: 641px) {
  #recruit01 .section_inner {
    padding-bottom: 89px;
  }
  #recruit02 .section_inner {
    padding-bottom: 85px;
  }
  #recruit01 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-flow: row-reverse;
  }
  #recruit01 .chapter {
    width: 602px;
    letter-spacing: -0.02em;
  }
  #recruit02 .section_child {
    margin-top: 40px;
  }
  #recruit02 h3 {
    font-size: 2.6rem;
    margin-bottom: 3px;
  }
}
#recruit02 .section_child:first-of-type {
  margin-top: 0;
}
#recruit02 h3 {
  color: #bd0008;
}
/* support
------------------------------ */
#support .main_img {
  background: url(../images/support_main_img.jpg) no-repeat center center/cover;
}
#support .main_img .sub {
  background: url(../images/support_text_bl.svg) no-repeat left center/contain;
  width: 71px;
}
@media screen and (min-width: 641px) {
  #support01 .section_inner {
    padding-bottom: 84px;
  }
  #support02 .section_inner {
    padding-bottom: 76px;
  }
  #support01 .panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
  }
  #support01 .bg_gr {
    width: 440px;
    min-height: 188px;
  }
  #support01 .bg_gr:first-of-type,
  #support01 .bg_gr:nth-of-type(2) {
    margin-top: 0;
  }
  #support03 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-flow: row-reverse;
  }
  #support03 .chapter {
    width: 590px;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
  }
  #support03 .section_child {
    margin-top: 30px;
  }
}
#support01 .bg_gr {
  position: relative;
  background: #f4f4f4;
  padding: 16px 24px;
  margin-top: 20px;
}
#support01 .bg_gr::before {
  content: "";
  display: block;
  background: #bd0008;
  position: absolute;
  top: 22px;
  left: 0;
  width: 10px;
  height: 40px;
}
#support01 .bg_gr p {
  line-height: 1.6;
}
#support01 .title {
  min-height: 61px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
#support01 h3 {
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1.4;
}
@media all and (-ms-high-contrast: none) {
  #support01 h3 {
    font-size: 1.7rem;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
  }
}
#support01 h4 {
  font-weight: normal;
}
#support02 .chapter {
  margin-bottom: 12px;
}
#support02 li {
  margin-bottom: 6px;
}
#support02 li:last-of-type {
  margin-bottom: 0;
}
#support03 .bg_gr_title {
  margin-bottom: 24px;
}
/* register
------------------------------ */
#register .main_img {
  background: url(../images/register_main_img.jpg) no-repeat center center/cover;
}
#register .main_img .sub {
  background: url(../images/register_text_bl.svg) no-repeat left center/contain;
  width: 73px;
}
/* form common
------------------------------ */
.must {
  color: #bd0008;
  margin-left: 4px;
}
@media screen and (min-width: 641px) {
  form {
    margin-right: 30px;
  }
  .form_section .chapter {
    margin-bottom: 30px;
  }
  #mailformpro input[type="text"],
  #mailformpro input[type="tel"],
  #mailformpro input[type="email"] {
    padding: 4px 6px;
    max-width: 418px;
  }
  #mailformpro select {
    padding: 7px 4px;
    border: 0;
  }
  #mailformpro textarea {
    min-height: 180px;
  }
}
#mailformpro select,
#mailformpro textarea,
#mailformpro input {
  font-size: 1.6rem;
}
#mailformpro input[type="text"],
#mailformpro input[type="tel"],
#mailformpro input[type="email"],
#mailformpro textarea {
  line-height: 1.5;
  border: 1px solid #d8d8d8;
  width: 100%;
}
#mailformpro textarea {
  width: 100% !important;
}
#register textarea {
  min-height: 68px;
}
#mailformpro button {
  font-size: 1.6rem;
  border: 0;
  margin: auto;
}
#mailformpro .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#mailformpro .type li {
  margin-right: 1em;
}
#mailformpro .old input {
  max-width: 135px;
}
#mailformpro .unit {
  margin-left: 6px;
}
#mailformpro .address input:first-of-type {
  max-width: 135px;
  margin-left: 4px;
  margin-bottom: 6px;
}
#mailformpro .address input:nth-of-type(2) {
  display: block;
}
#mailformpro .birth select {
  margin-right: 10px;
}
#mailformpro .birth select:first-of-type {
  width: 106px;
}
@media screen and (min-width: 641px) {
  #mailformpro .occupation {
    padding: 18px;
  }
  .tab_item {
    padding: 5px 30px 5px 10px;
  }
  .tab_item::after {
    width: 21px;
    height: 12px;
    right: 10px;
  }
}
#mailformpro .occupation {
  background: #fff;
}
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab_menu {
  width: 36%;
}
.tab_item {
  background: #f1f1f1;
  cursor: pointer;
  position: relative;
}
.tab_item:last-of-type {
  margin-bottom: 0;
}
.tab_item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/arr2_r.svg) no-repeat center center/contain;
}
.tab_item.active {
  background: #fff;
  color: #bd0008;
}
.tab_box {
  width: 62%;
}
.tab_content {
  display: none;
}
.tab_content.show {
  display: block;
}
.tab_box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab_box .list li {
  margin-bottom: 10px;
  margin-right: 1em;
}
@media screen and (min-width: 641px) {
  #privacy_policy {
    margin-top: 43px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}
#privacy_policy {
  border: 1px solid #333;
  height: 166px;
  overflow-y: scroll;
}
#privacy_policy h3 {
  font-size: 1.8rem;
}
#privacy_policy h4 {
  margin-top: 2em;
}
#privacy_policy .dot_list {
  margin-top: 1em;
}
/* thanks & yonmaruyon
------------------------------ */
#thanks .main_img .sub {
  background: url(../images/thanks_text_bl.svg) no-repeat left center/contain;
  width: 59px;
}
#yonmaruyon .main_img .sub {
  background: url(../images/yonmaruyon_text_bl.svg) no-repeat left
    center/contain;
  width: 29px;
}
#thanks01 .btn_r,
#yonmaruyon01 .btn_r {
  margin-top: 40px;
}
/* news - archive
------------------------------ */
#news .main_img {
  background: url(../images/news_main_img.jpg) no-repeat center center/cover;
}
#news .main_img .sub {
  background: url(../images/news_text_bl.svg) no-repeat left center/contain;
  width: 44px;
}
#archive01 li {
  border-bottom: 2px solid #f4f4f4;
}
#archive01 li:last-of-type {
  border-bottom: 0;
}
#archive01 li:first-of-type a {
  padding-top: 0;
}
#archive01 li a:hover {
  opacity: 0.6;
}
#archive01 .pict {
  width: 260px;
  height: 185px;
  overflow: hidden;
}
#archive01 .text {
  color: #000;
}
@media screen and (min-width: 641px) {
  #archive01 li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #archive01 .contants {
    width: 596px;
  }
  #archive01 h2 {
    font-size: 3.2rem;
    margin-bottom: 15px;
  }
}
#archive01 h2 {
  color: #bd0008;
}
#news .date {
  color: #999;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
#archive01 .date {
  margin-bottom: 12px;
}

/* news - single
------------------------------ */
@media screen and (min-width: 641px) {
  #single01 .date {
    margin-bottom: 36px;
  }
}
#single01 .br_bl_gr {
  margin-bottom: 22px;
}

#single01 .content {
  margin-top: 24px;
  margin-bottom: 56px;
}
#single01 h3 {
  color: #bd0008;
  margin-bottom: 8px;
}
#single01 h4 {
  color: #bd0008;
  margin-bottom: 6px;
}
#single01 h5 {
  margin-bottom: 6px;
}
#single01 .pict {
  text-align: center;
}
#single01 .content img {
  margin-top: 1em;
  margin-bottom: 1em;
}
#single01 .content p {
  margin-bottom: 1.8em;
}
#single01 .content p:last-of-type {
  margin-bottom: 0;
}
/* aside
------------------------------ */

/* wp-pagenavi
------------------------------ */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 78px;
}
.wp-pagenavi span,
.wp-pagenavi a {
  color: #000;
  background: #f4f4f4;
  display: block;
  margin: 0 4px;
  width: 36px;
  padding: 10px;
  text-align: center;
  line-height: 1;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
  color: #fff;
  background: #bd0008;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #bd0008;
}
/* bottom_contact
------------------------------ */
@media screen and (min-width: 641px) {
  #bottom_contact .bg_gr {
    padding: 68px 60px 74px;
  }
  #bottom_contact .section_inner {
    padding-top: 114px;
  }
  #bottom_contact h3 {
    margin-bottom: 22px;
  }
  #bottom_contact h2 {
    margin-bottom: 18px;
  }
  #bottom_contact .chapter {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 34px;
  }
  #bottom_contact .tel_box {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 40px;
  }
  #bottom_contact .tel {
    width: 314px;
    height: 35px;
    margin-left: 40px;
    margin-right: auto;
  }
  #bottom_contact .time {
    width: 324px;
  }
  #bottom_contact .mail_box h4 {
    text-align: center;
    margin-bottom: 29px;
  }
}
#bottom_contact .bg_gr {
  background: #f1f1f1;
}
#bottom_contact .tel_box {
  background: #fff;
}
#bottom_contact h2,
#bottom_contact h3 {
  text-align: center;
}
#bottom_contact h3 {
  line-height: 0;
}
#bottom_contact .chapter {
  border-bottom: 1px solid #333;
}
#bottom_contact h3 .font_hide {
  background: url(../images/contact_text_r.svg) no-repeat center center/contain;
  width: 102px;
  height: 21px;
}
#bottom_contact h4 {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
#bottom_contact .tel {
  background: url(../images/tel_num_r.svg) no-repeat center center/contain;
}
#bottom_contact .time {
  background: #f1f1f1;
  text-align: center;
  font-size: 1.4rem;
  padding: 5px;
}
#bottom_contact .time span {
  font-weight: 600;
}
#bottom_contact .mail_box {
  margin-top: 26px;
}
@media screen and (min-width: 641px) {
  #bottom_contact .set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 938px;
    margin: auto;
  }
  #bottom_contact a {
    padding: 12px 30px;
    margin-top: 32px;
  }
  #bottom_contact a:first-of-type,
  #bottom_contact a:nth-of-type(2) {
    margin-top: 0;
  }
  #bottom_contact .sign {
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #bottom_contact .mail_box a {
    width: 455px;
    font-size: 2rem;
  }
  #bottom_contact .icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    transition: 0.3s ease;
  }
  #bottom_contact .job .icon::before {
    background: #fff url(../images/pc_search_g.svg) no-repeat center center/40px
      auto;
  }
  #bottom_contact .resources .icon::before {
    background: #fff url(../images/human_search_b.svg) no-repeat center
      center/36px auto;
  }
  #bottom_contact .sign .icon::before {
    background: #fff url(../images/document_r.svg) no-repeat left 15px
      center/32px auto;
  }
  #bottom_contact .icon {
    padding-left: 80px;
  }
  #bottom_contact .mail_box a:hover:before {
    right: 26px;
  }
}
#bottom_contact .mail_box a {
  position: relative;
  display: block;
  color: #fff;
}
#bottom_contact .mail_box a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 20px;
  background: url(../images/arr_w.svg) no-repeat center center/contain;
  transition: 0.3s;
}
#bottom_contact .big {
  font-size: 2.6rem;
  margin-right: 2px;
}
#bottom_contact .job {
  background: #008980;
}
#bottom_contact .resources {
  background: #253680;
}
#bottom_contact .sign {
  background: #bd0008;
}
#bottom_contact .icon {
  position: relative;
  line-height: 1.3;
  font-weight: 600;
}
#bottom_contact a:hover {
  opacity: 0.7;
}

/* back_btn
------------------------------ */
@media screen and (min-width: 641px) {
  .back_btn {
    padding-top: 109px;
  }
  .back_btn a {
    padding: 36px 5%;
  }
}
.back_btn a {
  position: relative;
  display: block;
  background: #bd0008;
  text-align: center;
  line-height: 1;
}
.back_btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 14px;
  border-color: transparent transparent #bd0008 transparent;
}
.back_btn a:hover {
  opacity: 0.7;
}
.back_btn .font_hide {
  background: url(../images/back_top_text_w.svg) no-repeat center center/contain;
  width: 143px;
  height: 21px;
}
/* footer
------------------------------ */
@media screen and (min-width: 641px) {
  footer .section_inner {
    padding-top: 73px;
    padding-bottom: 81px;
  }
  footer .logo span {
    width: 313px;
    height: 54px;
  }
  footer .flex,
  footer .flex_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .flex_l {
    margin-top: 12px;
  }
  footer .flex_r {
    width: 711px;
  }
}
footer .section_inner {
  background: #f1f1f1;
}
footer .flex {
  position: relative;
  font-size: 1.4rem;
  z-index: 2;
}
footer .logo {
  display: block;
}
footer .logo:hover {
  opacity: 0.7;
}
footer .logo span {
  background: url(../images/logo.svg) no-repeat left center / contain;
}
footer h3 {
  margin-top: 10px;
  margin-bottom: 2px;
}
footer ul a {
  color: #000;
  display: block;
}
footer ul a:hover {
  color: #bd0008;
}
footer .parent {
  font-weight: 600;
}
footer .parent a {
  padding: 4px 10px;
}
footer .child a {
  position: relative;
  margin-left: 20px;
  padding: 4px 10px 4px 14px;
}
footer .child a::before {
  content: "/";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
}
footer p.invoice {
  padding-bottom: 10px;
}
footer .flex_l p.fw_6 {
  font-weight: 600;
  color: #bd0008;
}
footer .flex_l .sendai_office {
  margin-top: 15px;
}
/* copyright
------------------------------ */
@media screen and (min-width: 641px) {
  .copyright {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.copyright {
  position: relative;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
}
.copyright a {
  position: relative;
  color: #fff;
}
.copyright a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -3px;
  left: 0;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.copyright a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
/* Breadcrumb
------------------------------ */
.bread_crumb {
  background: #f4f4f4;
}
.bread_crumb .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 641px) {
  .bread_crumb {
    margin-bottom: 69px;
    padding: 29px 0;
  }
}
.bread_crumb span,
.bread_crumb a {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.bread_crumb a {
  color: #bd0008;
  margin-right: 14px;
}
.bread_crumb a::after {
  content: "";
  display: inline-block;
  vertical-align: 2px;
  width: 5px;
  height: 5px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
  margin-left: 11px;
}
.bread_crumb a:hover {
  opacity: 0.7;
}

/* Page Navi
------------------------------ */
.pagenavi {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}
.pagenavi span,
.pagenavi a {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
}
.pagenavi span {
  color: #fff;
  background: #bd0008;
}
.pagenavi a {
  color: #bd0008;
  background: #fff;
  border: 1px solid #cacaca;
  box-sizing: border-box;
}
.pagenavi a.next {
  text-indent: -9999px;
  background: #fff url(../images/pagenavi_next_blue.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: center center, 0 0;
  background-size: 8px auto, auto;
}
.pagenavi a:hover {
  color: #fff;
  background: #bd0008;
  border-color: #bd0008;
}
.pagenavi a.next:hover {
  background: #bd0008 url(../images/pagenavi_next_white.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: center center, 0 0;
  background-size: 8px auto, auto;
}
/* Page Top
------------------------------ */
.show.pagetop {
  opacity: 1;
}
.pagetop {
  position: fixed;
  bottom: 14px;
  right: 20px;
  transition: 0.3s;
  font-size: 0;
  z-index: 10;
  opacity: 0;
}
.pagetop a {
  background: #bd0008;
  border: 2px solid #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 41%;
  left: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
}
.pagetop a:hover {
  background: #fff;
}
.pagetop a:hover:before {
  border-color: #bd0008;
}
