/* CSS Document */
.spmask {
  display: inline-block;
}

.spmask-inline {
  display: inline;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .spmask-inline {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
.table {
  padding-block: 6rem;
  background-color: var(--bg-sub);
}
@media screen and (max-width: 767px) {
  .table {
    padding-block: 3rem 4rem;
  }
}
.table_wrap {
  display: grid;
  grid-template-columns: 0 1fr;
  align-items: flex-end;
  overflow: hidden;
}
.table_wrap ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  width: 100%;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.table_wrap ul li {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.6rem;
  position: relative;
  z-index: 1;
}
.table_wrap ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 1px;
  width: 100vw;
  left: 0;
  background-size: 6px 1px;
  background-image: linear-gradient(to right, var(--bg-sub) 4px, transparent 2px);
  background-position: left;
  background-repeat: repeat-x;
}
.table_wrap ul li > p {
  font-size: 1.4rem;
  font-weight: 600;
  position: absolute;
  white-space: nowrap;
  left: 1rem;
  translate: 0 -2.3rem;
  color: #00bed4;
}
@media screen and (max-width: 767px) {
  .table_wrap ul li > p {
    translate: 0 -2rem;
    font-size: 1.2rem;
  }
}
.table_wrap ul li .term {
  position: absolute;
  left: 0;
  width: min(700px, 100vw - 6rem);
  height: 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .table_wrap ul li .term {
    width: calc(100vw - 4rem);
  }
}
.table_wrap ul li .term > span {
  display: inline-block;
  height: 2rem;
  width: calc(20% + 0.2rem);
  background-color: #00bed4;
}
.table_wrap ul li .term > span:first-of-type {
  width: calc(20% - 0.3rem - 2rem);
  margin-left: 2rem;
}
.table_wrap ul li .term > span:last-of-type {
  width: calc(20% - 0.3rem - 2rem);
  margin-right: 2rem;
}
.table_wrap ul li .term > span.thin {
  height: 1rem;
}
.table_wrap ul li .term > span.none {
  background-color: none;
  height: 0;
}
.table_wrap ul li .term > span.half {
  width: calc(10% + 0.1rem);
}
.table_wrap ul li .term > span.ml {
  margin-left: calc(10% + 0.1rem);
}
.table_wrap ul li .term > span.mr {
  margin-right: calc(10% + 0.1rem);
}
.table_wrap ul li .term > span.sml {
  width: calc(5% + 0.05rem);
  margin-left: calc(15% + 0.15rem);
}
.table_wrap ul li .term > span.lmr {
  width: calc(15% + 0.15rem);
  margin-right: calc(5% + 0.05rem);
}
@media screen and (max-width: 767px) {
  .table_wrap ul li .term > span {
    height: 1.6rem;
    width: calc(20% + 0.1rem);
  }
  .table_wrap ul li .term > span:first-of-type {
    width: calc(20% - 0.15rem - 1rem);
    margin-left: 1rem;
  }
  .table_wrap ul li .term > span:last-of-type {
    width: calc(20% - 0.15rem - 1rem);
    margin-right: 1rem;
  }
  .table_wrap ul li .term > span.thin {
    height: 0.8rem;
  }
  .table_wrap ul li .term > span.half {
    width: calc(10% + 0.05rem);
  }
  .table_wrap ul li .term > span.ml {
    margin-left: calc(10% + 0.05rem);
  }
  .table_wrap ul li .term > span.mr {
    margin-right: calc(10% + 0.05rem);
  }
  .table_wrap ul li .term > span.sml {
    width: calc(5% + 0.025rem);
    margin-left: calc(15% + 0.075rem);
  }
  .table_wrap ul li .term > span.lmr {
    width: calc(15% + 0.075rem);
    margin-right: calc(5% + 0.025rem);
  }
}
.table_phase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 5.4rem auto;
  row-gap: 3rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .table_phase {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    row-gap: 2.5rem;
  }
}
.table_phase .title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  grid-area: 1/1/2/6;
  position: relative;
  border-bottom: 2px solid #d2d2d2;
}
.table_phase .title::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #d2d2d2;
  z-index: 0;
  width: 1.6rem;
  height: 1.2rem;
  left: calc(50% - 0.8rem);
  top: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.table_phase .title > p {
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .table_phase .title > p {
    font-weight: 600;
    font-size: 1.6rem;
  }
}
.table_phase .phase {
  text-align: center;
  background-color: #d2d2d2;
  height: 70rem;
}
@media screen and (max-width: 767px) {
  .table_phase .phase {
    height: 66rem;
  }
}
.table_phase .phase > p.ja {
  font-weight: 600;
  padding-block: 1.4rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .table_phase .phase > p.ja {
    font-size: 1.1rem;
    font-weight: 500;
    padding-block: 2rem 1.2rem;
  }
}
.table_phase .phase .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 10rem;
  aspect-ratio: 1;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .table_phase .phase .icon {
    width: 86%;
  }
}
.table_phase .phase .icon img {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .table_phase .phase .icon img {
    width: 54%;
  }
}

/*------------------------------*/
.job_section {
  padding-block: 8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .job_section {
    padding-block: 4rem;
  }
}
.job_section.odd {
  background-color: var(--bg-main);
  color: #fff;
}
.job_section.odd .job_wrap {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .job_section.odd .job_wrap {
    margin-right: 0;
  }
}
.job_section.odd .job_feature .title, .job_section.odd .job_tool .title {
  background-color: #fff;
}
.job_section.odd .job_feature .title::after, .job_section.odd .job_tool .title::after {
  background-color: #fff;
}
.job_section.odd .job_feature .title p, .job_section.odd .job_tool .title p {
  color: var(--text-main);
}
.job_section.odd .job_image {
  margin-left: 10rem;
}
@media screen and (max-width: 767px) {
  .job_section.odd .job_image {
    margin-left: 0;
  }
}
.job_section.even {
  background-color: var(--bg-sub);
  color: var(--text-main);
}
.job_section.even .job_wrap {
  margin-left: calc(50% - 50vw);
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .job_section.even .job_wrap {
    margin-left: 0;
    flex-direction: column;
  }
}
.job_section.even .job_feature .title, .job_section.even .job_tool .title {
  background-color: var(--bg-main);
}
.job_section.even .job_feature .title::after, .job_section.even .job_tool .title::after {
  background-color: var(--bg-main);
}
.job_section.even .job_feature .title p, .job_section.even .job_tool .title p {
  color: #fff;
}
.job_section.even .job_image {
  margin-right: 10rem;
}
@media screen and (max-width: 767px) {
  .job_section.even .job_image {
    margin-right: 0;
  }
}
.job_wrap {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .job_wrap {
    flex-direction: column;
    row-gap: 4rem;
  }
}
.job_container {
  width: 51rem;
  flex-shrink: 0;
}
.job_container > p.readText {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .job_container > p.readText {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .job_container {
    width: 100%;
  }
}
.job_hd > p.en {
  color: var(--color-home);
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .job_hd > p.en {
    font-size: 1.6rem;
  }
}
.job_hd > h3 {
  font-size: 4rem;
  font-weight: 600;
  margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  .job_hd > h3 {
    font-size: 2.6rem;
    white-space: nowrap;
  }
}
.job_feature, .job_tool {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .job_feature, .job_tool {
    margin-top: 4rem;
  }
}
.job_feature .title, .job_tool .title {
  text-align: center;
  position: relative;
}
.job_feature .title > p, .job_tool .title > p {
  padding-block: 0.8em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .job_feature .title > p, .job_tool .title > p {
    font-size: 1.6rem;
  }
}
.job_feature .title::after, .job_tool .title::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 1.6rem;
  height: 1.2rem;
  left: calc(50% - 0.8rem);
  top: 99%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.job_feature ul {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .job_feature ul {
    margin-top: 3rem;
  }
}
.job_feature ul li {
  display: flex;
  padding-bottom: 1em;
  border-bottom: 1px solid currentColor;
}
.job_feature ul li p.readText {
  line-height: 1.8;
}
.job_feature ul li + li {
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .job_feature ul li + li {
    padding-top: 0.8em;
  }
}
.job_feature ul li::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 2px;
  background-color: currentColor;
  margin-right: 0.6em;
  flex-shrink: 0;
  margin-top: 0.95em;
}
@media screen and (max-width: 767px) {
  .job_feature ul li::before {
    height: 1px;
    width: 0.4em;
    margin-top: 0.85em;
  }
}
.job_tool-wrap {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .job_tool-wrap {
    margin-top: 3rem;
    width: 100%;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
.job_tool-wrap .tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .job_tool-wrap .tool {
    padding-bottom: 2rem;
  }
}
.job_tool-wrap .tool .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .job_tool-wrap .tool .icon {
    width: 5rem;
  }
}
.job_tool-wrap .tool .icon img {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .job_tool-wrap .tool .icon img {
    width: 60%;
  }
}
.job_tool-wrap .tool .icon.small img {
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .job_tool-wrap .tool .icon.small img {
    width: 50%;
  }
}
.job_tool-wrap .tool p {
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .job_tool-wrap .tool p {
    position: absolute;
    top: 5.6rem;
    font-size: 1.1rem;
    font-weight: 500;
  }
}
.job_image {
  max-width: 700px;
}
/*# sourceMappingURL=style.css.map */