.tatete {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: upright;
}

.hogehoge {
  padding-top: clamp(20px, 5.3333333333vw, 40.96px);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hogehoge {
    padding-top: clamp(60px, 7.8125vw, 80px);
  }
}
@media only screen and (min-width: 1025px) {
  .hogehoge {
    padding-top: clamp(76.8px, 7.5vw, 120px);
  }
}

main {
  width: 100vw !important;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

section.saiyou {
  padding: 15rem 8vw;
  background: url("/recruit/mid-career/assets/image/career/bg01.png") no-repeat 0 0;
  background-size: cover;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  section.saiyou {
    padding: 8vw;
  }
}
section.saiyou.green {
  background: url("/recruit/mid-career/assets/image/career/bg02.png") no-repeat 0 0;
  background-size: cover;
}
section.saiyou .message {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.saiyou .message h2 {
  text-align: center;
  margin-bottom: 3rem;
}
section.saiyou .message .in p {
  margin: 0 0 1em 0;
}
section.saiyou h2.center {
  text-align: center;
  margin: 0 0 5rem 0;
}

.numbers_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 767px) {
  .numbers_grid {
    display: block;
    margin: 0 0 1rem 0;
  }
}
.numbers_grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}
.numbers_grid.wide {
  grid-template-columns: 1fr;
}
.numbers_grid .box {
  background: #ffffff;
  border-radius: 1rem;
  padding: 3vw;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .numbers_grid .box {
    margin: 0 0 1rem 0;
  }
}
.numbers_grid .box.bgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .numbers_grid .box.bgrid {
    display: block;
  }
  .numbers_grid .box.bgrid .image {
    margin: 0 0 3rem 0;
  }
}
.numbers_grid .box h3 {
  padding: 0 0 0 2rem;
  border-left: 5px solid #4CA237;
}
.numbers_grid .box h3 span {
  font-size: 1rem;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .numbers_grid .box h3 span {
    line-height: 1.5;
  }
}
.numbers_grid .box .zu {
  padding: 4vw 2vw;
}
.numbers_grid .box .number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60C482;
  margin-top: auto;
}
.numbers_grid .box .number .in {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.numbers_grid .box .number p.num {
  font-size: 7rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .numbers_grid .box .number p.num {
    font-size: 4rem;
  }
}
.numbers_grid .box .number p.sub {
  font-size: 2rem;
}
.numbers_grid .box p.detail {
  font-size: var(--font-size-s);
  color: #666;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .numbers_grid .box p.detail {
    font-size: 0.875rem;
  }
}
.numbers_grid .income_layout {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .numbers_grid .income_layout {
    display: block;
  }
}
.numbers_grid .income_layout .col {
  width: 50%;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .numbers_grid .income_layout .col {
    width: 100%;
    margin: 2rem 0 2rem 0;
  }
}
.numbers_grid .income_layout .col h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.numbers_grid .income_layout .col h4 small {
  font-size: 1rem;
  margin-left: 1rem;
}
.numbers_grid .income_layout .col table {
  width: 100%;
}
.numbers_grid .income_layout .col table th {
  position: relative;
  background-color: #60C482;
  margin-bottom: 1px;
  text-align: center;
  padding: 13px 2rem;
  font-weight: 500;
}
.numbers_grid .income_layout .col table td {
  position: relative;
  background-color: #EAF7EA;
  margin-bottom: 1px;
  padding: 13px 2rem;
  font-weight: 500;
}
.numbers_grid .income_layout .col table td:nth-child(2) {
  text-align: right;
}
.numbers_grid .income_layout .col table th:nth-child(2)::before,
.numbers_grid .income_layout .col table td:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  height: calc(100% - 20px);
  width: 1px;
  background-color: #fff;
}
.numbers_grid .income_layout .col.col2 table th {
  background-color: #86A9D3;
}
.numbers_grid .income_layout .col.col2 table td {
  background-color: #F0F3F7;
}