@charset "UTF-8";
:root {
  --viewport-base-pc: 1420;
  --viewport-base-sp: 375;
  --vpx-ratio: 1;
}

@media screen and (min-width: 769px) and (max-width: 1420px) {
  :root {
    --vpx-ratio: var(--viewport-ratio-pc, calc(100vw / 1420px));
  }
}
@media screen and (max-width: 768px) {
  :root {
    --vpx-ratio: min(var(--viewport-ratio-sp, calc(100vw / 375px)), 1.4814814815);
  }
}
.intro {
  width: 100%;
  background: url("../images/technician/intro_bg.jpg") no-repeat center/cover;
}
.intro__body {
  padding-block: 130px;
  text-align: center;
}
.intro__ttl {
  margin-bottom: 25px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.intro__txt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .intro__body {
    padding-block: 52px;
  }
  .intro__ttl {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .intro__txt {
    font-size: 14px;
  }
}
.about {
  width: 100%;
  padding-block: calc(80px * var(--vpx-ratio));
  background: #fff;
}
.about__blocks {
  display: grid;
  row-gap: 90px;
  counter-reset: about-num;
}
.about__block {
  counter-increment: about-num;
}
.about__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
.about__heading:has(+ .about__txt) {
  margin-bottom: 5px;
}
.about__num {
  flex: 0 0 65px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #fff;
  filter: drop-shadow(1px 0 0 #202121) drop-shadow(-1px 0 0 #202121) drop-shadow(0 1px 0 #202121) drop-shadow(0 -1px 0 #202121);
}
.about__num::before {
  content: counter(about-num, decimal-leading-zero);
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  font-weight: 600;
}
.about__num::after {
  content: "";
  position: absolute;
  top: 85%;
  right: -7%;
  transform: translate(-50%, -50%) rotate(12deg);
  width: 12px;
  aspect-ratio: 2/1;
  background: #fff;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.about__ttl {
  flex: 1;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.about__subttl {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}
.about__subttl::before {
  content: "■";
}
.about__txt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}
.about__txt-em {
  font: inherit;
  border-bottom: 1px solid #FFEC00;
}
.about__heading + .about__txt {
  padding-left: 80px;
  margin-bottom: 20px;
}
.about__block:nth-child(1) .about__body {
  display: grid;
  grid-template-columns: 60fr 40fr;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.about__block:nth-child(1) .about__img {
  pointer-events: none;
}
.about__block:nth-child(1) .about__content {
  flex: 1;
}
.about__block:nth-child(1) .about__txt {
  margin-bottom: 45px;
}
.about__block:nth-child(1) .about__subttl {
  padding-bottom: 0.3em;
  margin-bottom: 16px;
  border-bottom: 1px dashed #202121;
}
.about__block:nth-child(1) .about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.about__block:nth-child(1) .about__item {
  padding-block: 12px;
  border: 1px solid #202121;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.about__block:nth-child(2) .about__body {
  --gap: 60px;
  position: relative;
  display: grid;
  grid-template-columns: 55fr 45fr;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}
.about__block:nth-child(2) .about__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100% - var(--gap)) * 0.55 + var(--gap) / 2);
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #202121;
}
.about__block:nth-child(2) .about__subttl {
  margin-bottom: 16px;
}
.about__block:nth-child(2) .about__rate {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
  color: #072551;
  font-weight: 600;
}
.about__block:nth-child(2) .about__rate-num {
  font: inherit;
  font-size: 180px;
  color: inherit;
  letter-spacing: 0;
}
.about__block:nth-child(2) .about__rate-unit {
  font: inherit;
  font-size: 90px;
  color: inherit;
}
.about__block:nth-child(2) .about__breakdowns {
  display: grid;
  row-gap: 12px;
  padding-block: 12px;
  margin-bottom: 14px;
  border-top: 1px dashed #202121;
  border-bottom: 1px dashed #202121;
}
.about__block:nth-child(2) .about__breakdown > * {
  display: inline-block;
}
.about__block:nth-child(2) .about__breakdown-year {
  margin-right: 1em;
  font-size: 14px;
  font-weight: 600;
}
.about__block:nth-child(2) .about__breakdown-detail {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}
.about__block:nth-child(2) .about__breakdown-detail:not(:last-child) {
  margin-right: 1em;
}
.about__block:nth-child(2) .about__breakdown-detail:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0.2em;
  right: -0.7em;
  transform: translateX(50%) rotate(25deg);
  width: 1px;
  height: 1em;
  background: #202121;
}
.about__block:nth-child(2) .about__breakdown-num {
  font: inherit;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
}
.about__block:nth-child(2) .about__breakdown-unit {
  font: inherit;
  font-family: "Roboto", sans-serif;
}
.about__block:nth-child(2) .about__job {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 14px;
}
.about__block:nth-child(2) .about__job-year {
  flex: 0 0 130px;
  padding-block: 8px;
  border-radius: 25px;
  background: #072551;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.about__block:nth-child(2) .about__job-values {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.about__block:nth-child(2) .about__job-data {
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.about__block:nth-child(2) .about__job-data:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0.2em;
  right: -1.2em;
  transform: translateX(50%) rotate(25deg);
  width: 1px;
  height: 1em;
  background: #202121;
}
.about__block:nth-child(2) .about__job-num {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  color: #072551;
  font-weight: 600;
}
.about__block:nth-child(2) .about__note {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 600;
}
.about__block:nth-child(2) .about__note::before {
  flex: 0 0 fit-content;
  content: "※";
}
.about__block:nth-child(2) .about__points {
  --point-size: 150px;
  display: grid;
  grid-template-columns: repeat(2, var(--point-size));
  justify-content: center;
  justify-items: center;
  -moz-column-gap: calc(var(--point-size) / 5);
       column-gap: calc(var(--point-size) / 5);
}
.about__block:nth-child(2) .about__point {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: var(--point-size);
  aspect-ratio: 1/1;
  border: 1px solid #202121;
  border-radius: 100%;
  background: #fff;
  text-align: center;
}
.about__block:nth-child(2) .about__point-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2em;
  margin-bottom: 5px;
  font-family: "Caveat", cursive;
  font-size: 18px;
  font-weight: 500;
  font-optical-sizing: auto;
}
.about__block:nth-child(2) .about__point-label::before, .about__block:nth-child(2) .about__point-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 60%;
  background: #202121;
}
.about__block:nth-child(2) .about__point-label::before {
  left: -6px;
  transform: translateX(-50%) rotate(-25deg);
}
.about__block:nth-child(2) .about__point-label::after {
  right: -6px;
  transform: translateX(50%) rotate(25deg);
}
.about__block:nth-child(2) .about__point-txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.about__block:nth-child(2) .about__point:first-child {
  grid-column: 1/-1;
}
.about__block:nth-child(3) .about__body {
  display: grid;
  grid-template-columns: 35fr 65fr;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.about__block:nth-child(3) .about__merits {
  display: grid;
  row-gap: 20px;
  counter-reset: merit-num;
}
.about__block:nth-child(3) .about__merit {
  counter-increment: merit-num;
}
.about__block:nth-child(3) .about__merit-ttl {
  padding-block: 6px;
  margin-bottom: 10px;
  border: 1px solid #202121;
  border-radius: 20px;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.about__block:nth-child(3) .about__merit-ttl::after {
  content: counter(merit-num);
}
.about__block:nth-child(3) .about__merit-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.about__block:nth-child(4) .about__subttl {
  margin-bottom: 16px;
}
.about__block:nth-child(4) .about__income {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 16px;
}
.about__block:nth-child(4) .about__income-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.about__block:nth-child(4) .about__income-term {
  flex: 0 0 110px;
  padding-block: 16px;
  border: 1px solid #202121;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.about__block:nth-child(4) .about__income-desc {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  font-size: 28px;
  color: #072551;
  font-weight: 600;
  white-space: nowrap;
}
.about__block:nth-child(4) .about__income-num {
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  color: #072551;
  font-weight: 600;
  letter-spacing: 0;
}
.about__block:nth-child(4) .about__income-mark {
  align-self: flex-start;
  font-size: 12px;
  vertical-align: super;
}
.about__block:nth-child(4) .about__txt {
  margin-bottom: 12px;
}
.about__block:nth-child(4) .about__notes {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 7px 14px;
}
.about__block:nth-child(4) .about__note {
  flex: 0 0 fit-content;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  font-size: 14px;
}
.about__block:nth-child(4) .about__note::before {
  flex: 0 0 fit-content;
  content: "※";
}
.about__block:nth-child(5) .about__txt {
  margin-bottom: 20px;
}
.about__block:nth-child(5) .about__procedures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  justify-content: start;
  gap: 20px 24px;
  padding-top: 20px;
  border-top: 1px dashed #202121;
}
.about__block:nth-child(5) .about__procedure {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.about__block:nth-child(5) .about__procedure-ttl {
  flex: 0 0 100%;
  font-size: 16px;
  font-weight: 600;
}
.about__block:nth-child(5) .about__procedure-sub {
  font: inherit;
  font-size: 12px;
}
.about__block:nth-child(5) .about__procedure-icon {
  flex: 0 0 17%;
  pointer-events: none;
}
.about__block:nth-child(5) .about__procedure-txt {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .about {
    padding-block: calc(48px * var(--vpx-ratio));
  }
  .about__blocks {
    display: grid;
    row-gap: 50px;
  }
  .about__heading {
    display: flex;
    -moz-column-gap: 8px;
         column-gap: 8px;
    margin-bottom: 15px;
  }
  .about__heading:has(+ .about__txt) {
    margin-bottom: 3px;
  }
  .about__num {
    flex: 0 0 40px;
  }
  .about__num::before {
    font-size: 20px;
  }
  .about__num::after {
    content: "";
    position: absolute;
    top: 85%;
    right: -7%;
    transform: translate(-50%, -50%) rotate(12deg);
    width: 12px;
    aspect-ratio: 2/1;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  }
  .about__ttl {
    font-size: 20px;
  }
  .about__subttl {
    font-size: 16px;
  }
  .about__txt {
    font-size: 14px;
  }
  .about__heading + .about__txt {
    padding-left: 0px;
    margin-bottom: 15px;
  }
  .about__block:nth-child(1) .about__body {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  .about__block:nth-child(1) .about__content {
    flex: 1;
  }
  .about__block:nth-child(1) .about__txt {
    margin-bottom: 16px;
  }
  .about__block:nth-child(1) .about__subttl {
    margin-bottom: 14px;
  }
  .about__block:nth-child(1) .about__list {
    display: grid;
    gap: 8px;
  }
  .about__block:nth-child(1) .about__item {
    padding-block: 10px;
    font-size: 14px;
  }
  .about__block:nth-child(2) .about__body {
    display: grid;
    grid-template-columns: 1fr;
  }
  .about__block:nth-child(2) .about__body::before {
    content: "";
    display: none;
  }
  .about__block:nth-child(2) .about__box:first-child {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid #202121;
  }
  .about__block:nth-child(2) .about__subttl {
    margin-bottom: 14px;
  }
  .about__block:nth-child(2) .about__rate {
    display: flex;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-bottom: 3px;
  }
  .about__block:nth-child(2) .about__rate-num {
    font-size: 90px;
  }
  .about__block:nth-child(2) .about__rate-unit {
    font-size: 45px;
  }
  .about__block:nth-child(2) .about__breakdowns {
    display: grid;
    row-gap: 12px;
    padding-block: 10px;
    margin-bottom: 12px;
  }
  .about__block:nth-child(2) .about__breakdown {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .about__block:nth-child(2) .about__breakdown-year {
    flex: 0 0 100%;
    margin: 0;
    font-size: 12px;
  }
  .about__block:nth-child(2) .about__breakdown-detail {
    font-size: 12px;
  }
  .about__block:nth-child(2) .about__breakdown-detail:not(:last-child)::before {
    right: -0.5em;
  }
  .about__block:nth-child(2) .about__breakdown-num {
    font-size: 24px;
  }
  .about__block:nth-child(2) .about__job {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 12px;
    margin-bottom: 12px;
  }
  .about__block:nth-child(2) .about__job-year {
    flex: 1;
    width: 110px;
    font-size: 14px;
  }
  .about__block:nth-child(2) .about__job-values {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 24px;
         column-gap: 24px;
    width: 100%;
  }
  .about__block:nth-child(2) .about__job-data {
    font-size: 16px;
  }
  .about__block:nth-child(2) .about__job-data:not(:last-child)::before {
    right: -0.8em;
  }
  .about__block:nth-child(2) .about__job-num {
    font-size: 32px;
  }
  .about__block:nth-child(2) .about__note {
    font-size: 12px;
  }
  .about__block:nth-child(3) .about__body {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .about__block:nth-child(3) .about__merits {
    display: grid;
    row-gap: 18px;
  }
  .about__block:nth-child(3) .about__merit-txt {
    font-size: 14px;
  }
  .about__block:nth-child(4) .about__subttl {
    margin-bottom: 16px;
  }
  .about__block:nth-child(4) .about__income {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 16px;
  }
  .about__block:nth-child(4) .about__income-row {
    display: flex;
    justify-content: flex-start;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .about__block:nth-child(4) .about__income-term {
    flex: 0 0 95px;
    padding-block: 14px;
    font-size: 14px;
  }
  .about__block:nth-child(4) .about__income-desc {
    flex: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    font-size: 22px;
    color: #072551;
    font-weight: 600;
  }
  .about__block:nth-child(4) .about__income-num {
    font-size: 45px;
  }
  .about__block:nth-child(4) .about__income-mark {
    font-size: 10px;
  }
  .about__block:nth-child(4) .about__txt {
    margin-bottom: 10px;
  }
  .about__block:nth-child(4) .about__note {
    font-size: 12px;
  }
  .about__block:nth-child(5) .about__txt {
    margin-bottom: 18px;
  }
  .about__block:nth-child(5) .about__procedures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    padding-top: 20px;
  }
  .about__block:nth-child(5) .about__procedure {
    display: flex;
    gap: 8px;
  }
  .about__block:nth-child(5) .about__procedure-ttl {
    font-size: 14px;
  }
  .about__block:nth-child(5) .about__procedure-sub {
    font-size: 10px;
  }
  .about__block:nth-child(5) .about__procedure-txt {
    font-size: 12px;
  }
}
.support {
  width: 100%;
  padding-block: calc(40px * var(--vpx-ratio));
  background: #D9D8CB;
}
.support__ttl {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.support__body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 45px;
       column-gap: 45px;
}
.support__content {
  flex: 0 0 37%;
  padding-top: 30px;
}
.support__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.support__chart {
  flex: 1;
}
.support__chart-caption {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
}
.support__chart-img {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .support {
    padding-block: calc(30px * var(--vpx-ratio));
  }
  .support__ttl {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .support__body {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .support__content {
    flex: 1;
    padding-top: 0;
  }
  .support__txt {
    font-size: 14px;
  }
  .support__chart-caption {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.department {
  width: 100%;
  padding-block: calc(37px * var(--vpx-ratio));
  background: linear-gradient(135deg, #85cedf, #deeedb);
  overflow: hidden;
}
.department__body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.department__content {
  width: 50%;
  text-align: center;
}
.department__ttl {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding-block: 8px;
  margin-bottom: 33px;
}
.department__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #fff;
}
.department__ttl-ja {
  position: relative;
  font-size: 26px;
  font-weight: 600;
}
.department__ttl-en {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.department__faculty {
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.3em;
}
.department__name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-bottom: 45px;
}
.department__name-main, .department__name-sub {
  font-weight: 600;
  letter-spacing: 0.3em;
}
.department__name-main {
  font-size: 54px;
}
.department__name-sub {
  font-size: 34px;
}
.department__capacity {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 32px;
  margin-bottom: 40px;
  margin-inline: auto;
  border: 1px solid #202121;
  font-size: 30px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .department {
    padding-block: calc(24px * var(--vpx-ratio));
  }
  .department__body {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 30px;
  }
  .department__content {
    width: 100%;
  }
  .department__ttl {
    position: relative;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding-block: 6px;
    margin-bottom: 25px;
  }
  .department__ttl::before {
    width: 100%;
  }
  .department__ttl-ja {
    font-size: 20px;
  }
  .department__ttl-en {
    font-size: 14px;
  }
  .department__faculty {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .department__name {
    display: flex;
    margin-bottom: 33px;
  }
  .department__name-main {
    font-size: 35px;
  }
  .department__name-sub {
    font-size: 20px;
  }
  .department__capacity {
    padding: 10px 24px;
    margin-bottom: 30px;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .department__btn:hover,
  .department__btn:focus-visible {
    opacity: 0.7;
  }
}
/*# sourceMappingURL=technician.css.map */
