@keyframes floating-y {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 1;
    scale: 1.1;
  }
  65% {
    scale: 0.9;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale3d(0.95, 0.95, 0.95);
  }
  25% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    transform: scale3d(0.95, 0.95, 0.95);
  }
  75% {
    opacity: 1;
    transform: scale3d(1.02, 1.02, 1.02);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.anim-floaty {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

.kv_section {
  position: relative;
}
@media screen and (min-width: 769px) {
  .kv_section {
    height: 68rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_section {
    height: 118rem;
  }
}
.kv_section::before {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  inset: 0;
  opacity: 0;
  scale: 1.1;
}
@media screen and (min-width: 769px) {
  .kv_section::before {
    background-image: url(../img/top/kv_bg_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .kv_section::before {
    background-image: url(../img/top/kv_bg_sp.png);
  }
}
.kv_section.is-animated::before {
  animation: scaleIn 0.2s ease-out 0s 1 forwards;
}

.kv_inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .kv_inner {
    max-width: 136.6rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_inner {
    max-width: 75rem;
  }
}

.kv_img {
  position: absolute;
  opacity: 0;
  translate: 0 30px;
  transition: opacity 1s linear 1s, translate 1s ease-out 1s;
}
@media screen and (min-width: 769px) {
  .kv_img.img1 {
    width: 26.7rem;
    left: 12.3rem;
    bottom: 4.6rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_img.img1 {
    width: 21.8rem;
    left: -0.9rem;
    top: 7.6rem;
  }
}
.kv_img.img1 div {
  transform: translateY(20px);
  animation-delay: 4s !important;
}
@media screen and (min-width: 769px) {
  .kv_img.img2 {
    width: 39.5rem;
    right: 2.7rem;
    bottom: 14.5rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_img.img2 {
    width: 37.1rem;
    right: -15rem;
    bottom: 0;
  }
}
.kv_img.img2 div {
  transform: translateY(20px);
  animation-delay: 4.8s !important;
}
.kv_section.is-animated .kv_img {
  opacity: 1;
  translate: 0 0;
}

.kv_title {
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: scale3d(0.95, 0.95, 0.95);
  transform-origin: center bottom;
}
@media screen and (min-width: 769px) {
  .kv_title {
    width: 54.4rem;
    padding-top: 4.3rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_title {
    width: 70.6rem;
    padding-top: 5.8rem;
  }
}
.kv_section.is-animated .kv_title {
  animation: bounceIn 0.6s linear 0.5s 1 forwards;
}

.kv_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: 0.4s linear 1s;
}
@media screen and (min-width: 769px) {
  .kv_lead {
    padding-top: 2.7rem;
    line-height: 1.75;
    font-size: 1.6rem;
  }
  .kv_lead > p {
    font: inherit;
  }
  .kv_lead > p:first-of-type {
    margin-top: -0.375em;
  }
  .kv_lead > p:last-of-type {
    margin-bottom: -0.375em;
  }
}
@media screen and (max-width: 768px) {
  .kv_lead {
    padding-top: 5.6rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .kv_lead > p {
    font: inherit;
  }
  .kv_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .kv_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}
.kv_section.is-animated .kv_lead {
  opacity: 1;
}

.kv_anchors {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s linear 1s;
}
@media screen and (min-width: 769px) {
  .kv_anchors {
    gap: 2.2rem;
    padding-top: 2.9rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_anchors {
    gap: 2.8rem;
    padding-top: 3.8rem;
  }
}
.kv_section.is-animated .kv_anchors {
  opacity: 1;
}

.kv_anchor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .kv_anchor {
    width: 12.8rem;
    height: 12.8rem;
    padding-bottom: 1.053em;
    line-height: 1.264;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_anchor {
    width: 21.4rem;
    height: 21.4rem;
    padding-bottom: 0.625em;
    line-height: 1.313;
    font-size: 3.2rem;
  }
}
.kv_anchor::before, .kv_anchor::after {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  inset: 0;
  pointer-events: none;
}
.kv_anchor::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .kv_anchor::before {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_anchor::before {
    translate: 0 1rem;
  }
}
.kv_anchor span {
  position: relative;
  font-weight: 800;
  text-align: center;
  z-index: 2;
}
.kv_anchor svg {
  stroke: #2b2b2b;
  fill: #fffff2;
  position: absolute;
  width: 0.737em;
  height: 0.843em;
  left: 0;
  right: 0;
  bottom: 0.737em;
  margin: 0 auto;
  rotate: 90deg;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .kv_anchor svg {
    stroke-width: 0.35rem;
  }
}
@media screen and (min-width: 769px) {
  .kv_anchor:hover::after, .kv_anchor:hover span, .kv_anchor:hover svg {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .kv_anchor:hover::after, .kv_anchor:hover span, .kv_anchor:hover svg {
    translate: 0 1rem;
  }
}
.kv_anchor.col1::after {
  background: #0039bc;
}
.kv_anchor.col1 span {
  color: #fff;
}
.kv_anchor.col2::after {
  background: #ffd125;
}

.message_section {
  display: flex;
  justify-content: center;
  position: relative;
  background-position: center top;
  background-repeat: repeat-y;
}
@media screen and (min-width: 769px) {
  .message_section {
    background-image: url(../img/top/message_bg_pc.png);
    background-size: 136.6rem auto;
    padding: 10.6rem 0 16rem;
  }
}
@media screen and (max-width: 768px) {
  .message_section {
    background-image: url(../img/top/message_bg_sp.png);
    background-size: 100% auto;
    padding: 3.8rem 0 18rem;
  }
}

.message_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .message_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .message_head {
    gap: 1.5rem;
  }
}
.message_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .message_head p {
    width: 14rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .message_head p {
    width: 21rem;
    height: 7.8rem;
  }
}
.message_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.message_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.message_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.message_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.message_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.message_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.message_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.message_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.message_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.message_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.message_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.message_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.message_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.message_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.message_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.message_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.message_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.message_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .message_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .message_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.message_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.message_lead {
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .message_lead {
    padding-top: 6.6rem;
    line-height: 1.484;
    font-size: 3.1rem;
  }
  .message_lead > p {
    font: inherit;
  }
  .message_lead > p:first-of-type {
    margin-top: -0.241em;
  }
  .message_lead > p:last-of-type {
    margin-bottom: -0.241em;
  }
}
@media screen and (max-width: 768px) {
  .message_lead {
    padding-top: 6rem;
    line-height: 1.49;
    font-size: 4.7rem;
  }
  .message_lead > p {
    font: inherit;
  }
  .message_lead > p:first-of-type {
    margin-top: -0.244em;
  }
  .message_lead > p:last-of-type {
    margin-bottom: -0.244em;
  }
}

.message_text {
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .message_text {
    padding-top: 4.6rem;
    line-height: 2.112;
    font-size: 1.8rem;
  }
  .message_text > p {
    font: inherit;
  }
  .message_text > p:first-of-type {
    margin-top: -0.555em;
  }
  .message_text > p:last-of-type {
    margin-bottom: -0.555em;
  }
}
@media screen and (max-width: 768px) {
  .message_text {
    width: 59rem;
    padding-top: 6.5rem;
    line-height: 2;
    font-size: 2.8rem;
  }
  .message_text > p {
    font: inherit;
  }
  .message_text > p:first-of-type {
    margin-top: -0.5em;
  }
  .message_text > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
@media screen and (min-width: 769px) {
  .message_text p + p {
    padding-top: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .message_text p + p {
    padding-top: 2.6rem;
  }
}

.message_sign {
  letter-spacing: 0.01em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .message_sign {
    padding-top: 6.6rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .message_sign {
    padding-top: 8.9rem;
    font-size: 2.2rem;
  }
}

.about_section {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .about_section {
    margin-top: -7.9rem;
  }
}
.about_section::before, .about_section::after {
  content: "";
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .about_section::before, .about_section::after {
    background-image: url(../img/top/bg_b_pc.png);
    height: 19.034vw;
  }
}
@media screen and (max-width: 768px) {
  .about_section::before, .about_section::after {
    background-image: url(../img/top/bg_b_sp.png);
    height: 20vw;
  }
}
.about_section::after {
  scale: -1 -1;
}

.about_inner {
  position: relative;
  margin: 0 auto;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .about_inner {
    max-width: 110rem;
    margin-top: -9.1rem;
    padding-bottom: 7.6rem;
  }
}
@media screen and (max-width: 768px) {
  .about_inner {
    max-width: 67rem;
    padding: 1.3rem 0 19rem;
  }
}
.about_inner::before {
  content: "";
  position: absolute;
  background: #2771e8;
  width: 100vw;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 769px) {
  .about_inner::before {
    min-width: 1140px;
    top: 9rem;
    bottom: -0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .about_inner::before {
    top: -0.1rem;
    bottom: -0.1rem;
  }
}

.about_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .about_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .about_head {
    gap: 1.5rem;
  }
}
.about_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .about_head p {
    width: 14rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .about_head p {
    width: 21rem;
    height: 7.8rem;
  }
}
.about_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.about_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.about_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.about_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.about_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.about_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.about_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.about_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.about_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.about_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.about_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.about_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.about_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.about_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.about_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.about_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.about_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.about_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .about_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .about_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.about_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.about_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .about_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .about_lead > p {
    font: inherit;
  }
  .about_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .about_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .about_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .about_lead > p {
    font: inherit;
  }
  .about_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .about_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}

.about_box {
  position: relative;
  background: #fff;
  border: 1px solid #2b2b2b;
  color: #2b2b2b;
}
@media screen and (min-width: 769px) {
  .about_box {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 48rem 40rem;
    gap: 5.4rem 3rem;
    border-radius: 3.5rem;
    margin-top: 6rem;
    padding: 6.9rem 0 8.7rem;
  }
}
@media screen and (max-width: 768px) {
  .about_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5.5rem;
    margin-top: 7rem;
    padding: 8rem 4.3rem 4.8rem;
  }
}

.about_box_logo {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .about_box_logo {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 768px) {
  .about_box_logo {
    width: 52rem;
  }
}
@media screen and (min-width: 769px) {
  .about_box_logo img {
    width: 66.2rem;
  }
}

.about_box_caption {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .about_box_caption {
    grid-row: 2/3;
    gap: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .about_box_caption {
    align-items: center;
    gap: 3.5rem;
    padding-top: 5.5rem;
  }
}

.about_box_text {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .about_box_text {
    line-height: 1.625;
    font-size: 1.6rem;
  }
  .about_box_text > p {
    font: inherit;
  }
  .about_box_text > p:first-of-type {
    margin-top: -0.312em;
  }
  .about_box_text > p:last-of-type {
    margin-bottom: -0.312em;
  }
}
@media screen and (max-width: 768px) {
  .about_box_text {
    width: 52rem;
    line-height: 1.616;
    font-size: 2.6rem;
  }
  .about_box_text > p {
    font: inherit;
  }
  .about_box_text > p:first-of-type {
    margin-top: -0.307em;
  }
  .about_box_text > p:last-of-type {
    margin-bottom: -0.307em;
  }
}

.about_box_points {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .about_box_points {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .about_box_points {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2rem;
  }
}

.about_box_point {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffd125;
  border: 1px solid;
  border-radius: 50%;
  padding-top: 0.5em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .about_box_point {
    width: 15.2rem;
    height: 15.2rem;
    line-height: 2.143;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .about_box_point {
    width: 25.2rem;
    height: 25.2rem;
    line-height: 1.917;
    font-size: 2.4rem;
  }
  .about_box_point:last-of-type {
    margin-top: -1.6rem;
  }
}
.about_box_point strong {
  margin-right: 0.2em;
  line-height: 1;
  font-size: 1.858em;
  font-family: "Inclusive Sans", sans-serif;
  color: #0039bc;
}

.about_box_image {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .about_box_image {
    grid-row: 2/3;
    border-radius: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .about_box_image {
    border-radius: 5.5rem;
    margin-top: 6rem;
  }
}

.about_sub {
  display: flex;
  gap: 0.589em;
  position: relative;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .about_sub {
    margin-top: 8.8rem;
    line-height: 1;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .about_sub {
    margin-top: 11rem;
    line-height: 1.347;
    font-size: 5.2rem;
  }
  .about_sub > h3 {
    font: inherit;
  }
  .about_sub > h3:first-of-type {
    margin-top: -0.173em;
  }
  .about_sub > h3:last-of-type {
    margin-bottom: -0.173em;
  }
}
.about_sub::before {
  content: "";
  flex-shrink: 0;
  background-image: url(../img/bg1.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.883em;
  height: 0.883em;
  translate: 0 13.334%;
}
.about_sub h3 {
  font-weight: 800;
}
.about_sub strong {
  color: #ffd125;
}

.about_points {
  counter-reset: about_points;
  display: flex;
}
@media screen and (min-width: 769px) {
  .about_points {
    justify-content: space-between;
    align-items: stretch;
    gap: 1.7rem;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .about_points {
    flex-direction: column;
    gap: 5rem;
    padding-top: 9rem;
  }
}
.about_points > li {
  counter-increment: about_points;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .about_points + .about_sub {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .about_points + .about_sub {
    margin-top: 10.5rem;
  }
}

.about_point {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid;
  width: 100%;
  color: #2b2b2b;
}
@media screen and (min-width: 769px) {
  .about_point {
    border-radius: 3.5rem;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about_point {
    border-radius: 5.5rem;
  }
}
.about_point > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #ffd125;
  border-bottom: 1px solid;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .about_point > dt {
    flex-shrink: 0;
    border-radius: 3.5rem 3.5rem 0 0;
    height: 6.8rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .about_point > dt {
    border-radius: 5.5rem 5.5rem 0 0;
    height: 13.9rem;
    font-size: 3.5rem;
  }
}
.about_point > dt::before {
  content: counter(about_points);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-image: url(../img/balloon_w.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1;
  font-weight: 800;
  color: #0039bc;
}
@media screen and (min-width: 769px) {
  .about_point > dt::before {
    width: 6.2rem;
    height: 6.2rem;
    left: 3rem;
    top: -2.4rem;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .about_point > dt::before {
    width: 9.1rem;
    height: 9.1rem;
    left: 4.8rem;
    top: -2.9rem;
    font-size: 4rem;
  }
}
.about_point > dd {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .about_point > dd {
    gap: 2rem;
    padding: 3rem 0 4rem;
  }
}
@media screen and (max-width: 768px) {
  .about_point > dd {
    gap: 4.5rem;
    padding: 5rem 0 8rem;
  }
}

.about_point_lead {
  letter-spacing: 0.01em;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .about_point_lead {
    line-height: 1.45;
    font-size: 2rem;
  }
  .about_point_lead > p {
    font: inherit;
  }
  .about_point_lead > p:first-of-type {
    margin-top: -0.225em;
  }
  .about_point_lead > p:last-of-type {
    margin-bottom: -0.225em;
  }
}
@media screen and (max-width: 768px) {
  .about_point_lead {
    line-height: 1.422;
    font-size: 3.8rem;
  }
  .about_point_lead > p {
    font: inherit;
  }
  .about_point_lead > p:first-of-type {
    margin-top: -0.21em;
  }
  .about_point_lead > p:last-of-type {
    margin-bottom: -0.21em;
  }
}

.about_point_text {
  font-weight: 700;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .about_point_text {
    width: 25rem;
    line-height: 1.572;
    font-size: 1.4rem;
  }
  .about_point_text > p {
    font: inherit;
  }
  .about_point_text > p:first-of-type {
    margin-top: -0.285em;
  }
  .about_point_text > p:last-of-type {
    margin-bottom: -0.285em;
  }
}
@media screen and (max-width: 768px) {
  .about_point_text {
    width: 52rem;
    line-height: 1.667;
    font-size: 2.4rem;
  }
  .about_point_text > p {
    font: inherit;
  }
  .about_point_text > p:first-of-type {
    margin-top: -0.333em;
  }
  .about_point_text > p:last-of-type {
    margin-bottom: -0.333em;
  }
}

@media screen and (min-width: 769px) {
  .about_list {
    display: flex;
    gap: 6.5rem;
    padding-left: 5rem;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .about_list {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4.5rem;
    padding-left: 8rem;
    padding-top: 6rem;
  }
}
.about_list > li {
  position: relative;
}
@media screen and (min-width: 769px) {
  .about_list > li + li::before {
    content: "";
    position: absolute;
    border-left: 1px solid;
    height: 1.7rem;
    left: -3.3rem;
    top: 50%;
    translate: 0 -50%;
  }
}
@media screen and (max-width: 768px) {
  .about_list > li {
    padding-left: 2.2rem;
  }
  .about_list > li::before {
    content: "";
    position: absolute;
    border-left: 1px solid;
    height: 2.7rem;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
}
.about_list > li p {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .about_list > li p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .about_list > li p {
    font-size: 2.8rem;
  }
}

.about_img {
  position: absolute;
  width: 37.3rem;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .about_img {
    right: 14.861vw;
    bottom: 4.905vw;
  }
}
@media screen and (max-width: 768px) {
  .about_img {
    right: 10.1rem;
    bottom: 7.2rem;
  }
}
.about_img img {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
}
.about_img img:nth-of-type(2) {
  position: absolute;
  animation-delay: 0.6s;
}
.about_img img:nth-of-type(3) {
  position: absolute;
  animation-delay: 1.2s;
}

.what_section {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .what_section {
    margin-top: -19.033vw;
  }
}
@media screen and (max-width: 768px) {
  .what_section {
    margin-top: -20vw;
  }
}
.what_section::after {
  content: "";
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .what_section::after {
    background-image: url(../img/top/bg_y_pc.png);
    height: 19.034vw;
  }
}
@media screen and (max-width: 768px) {
  .what_section::after {
    background-image: url(../img/top/bg_y_sp.png);
    height: 20vw;
  }
}

.what_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .what_inner {
    max-width: 110rem;
    padding: 12.885vw 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .what_inner {
    max-width: 67rem;
    padding: 20.667vw 0 6.5rem;
  }
}
.what_inner::before {
  content: "";
  position: absolute;
  background: #ffd125;
  width: 100vw;
  left: 50%;
  top: -0.1rem;
  bottom: -0.1rem;
  translate: -50% 0;
}
@media screen and (min-width: 769px) {
  .what_inner::before {
    min-width: 1140px;
  }
}

.what_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .what_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .what_head {
    gap: 1.5rem;
  }
}
.what_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .what_head p {
    width: 14rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .what_head p {
    width: 21rem;
    height: 7.8rem;
  }
}
.what_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.what_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.what_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.what_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.what_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.what_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.what_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.what_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.what_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.what_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.what_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.what_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.what_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.what_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.what_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.what_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.what_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.what_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .what_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .what_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.what_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.what_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .what_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .what_lead > p {
    font: inherit;
  }
  .what_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .what_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .what_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .what_lead > p {
    font: inherit;
  }
  .what_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .what_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}

.what_box {
  position: relative;
  background: #fff;
  border: 1px solid;
}
@media screen and (min-width: 769px) {
  .what_box {
    border-radius: 3.5rem;
    width: 77rem;
    margin-top: 6rem;
    padding: 5.3rem 0 5.9rem 9.9rem;
  }
}
@media screen and (max-width: 768px) {
  .what_box {
    border-radius: 5.5rem;
    margin-top: 7rem;
    padding: 7.8rem 7.3rem 12.8rem;
  }
}

.what_box_head {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .what_box_head {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .what_box_head {
    gap: 3rem;
  }
}
.what_box_head p {
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .what_box_head p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .what_box_head p {
    font-size: 2.8rem;
  }
}
.what_box_head h3 {
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .what_box_head h3 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .what_box_head h3 {
    font-size: 4.8rem;
  }
}

.what_box_text {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .what_box_text {
    padding-top: 2.5rem;
    line-height: 1.625;
    font-size: 1.6rem;
  }
  .what_box_text > p {
    font: inherit;
  }
  .what_box_text > p:first-of-type {
    margin-top: -0.312em;
  }
  .what_box_text > p:last-of-type {
    margin-bottom: -0.312em;
  }
}
@media screen and (max-width: 768px) {
  .what_box_text {
    padding-top: 4.5rem;
    line-height: 1.616;
    font-size: 2.6rem;
  }
  .what_box_text > p {
    font: inherit;
  }
  .what_box_text > p:first-of-type {
    margin-top: -0.307em;
  }
  .what_box_text > p:last-of-type {
    margin-bottom: -0.307em;
  }
}

.what_points {
  display: flex;
}
@media screen and (min-width: 769px) {
  .what_points {
    gap: 3.6rem;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .what_points {
    flex-direction: column;
    gap: 12rem;
    padding-top: 7rem;
  }
}
.what_points > li {
  position: relative;
}
.what_points > li + li::before {
  content: "";
  position: absolute;
  background-image: url(../img/top/what_point_arrow.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .what_points > li + li::before {
    width: 1.5rem;
    height: 1.8rem;
    top: 2.7rem;
    left: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .what_points > li + li::before {
    width: 2rem;
    height: 2.4rem;
    top: -7rem;
    left: 7.2rem;
    rotate: 90deg;
  }
}

.what_point {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .what_point {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .what_point {
    align-items: flex-start;
    padding-left: 21rem;
  }
}

@media screen and (min-width: 769px) {
  .what_point_image {
    height: 9.1rem;
  }
}
@media screen and (max-width: 768px) {
  .what_point_image {
    position: absolute;
    left: 8.4rem;
    top: 50%;
    translate: -50% -50%;
  }
}
@media screen and (min-width: 769px) {
  .what_point_image.img1 {
    width: 9.1rem;
  }
}
@media screen and (max-width: 768px) {
  .what_point_image.img1 {
    width: 17.3rem;
  }
}
@media screen and (min-width: 769px) {
  .what_point_image.img2 {
    width: 7.3rem;
  }
}
@media screen and (max-width: 768px) {
  .what_point_image.img2 {
    width: 12.1rem;
  }
}
@media screen and (min-width: 769px) {
  .what_point_image.img3 {
    width: 7.6rem;
  }
}
@media screen and (max-width: 768px) {
  .what_point_image.img3 {
    width: 13.4rem;
  }
}

.what_point_sub {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffd125;
  padding: 0 0.5em;
  font-weight: 800;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .what_point_sub {
    line-height: 1.429;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .what_point_sub {
    line-height: 1.728;
    font-size: 2.2rem;
  }
}

.what_point_text {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .what_point_text {
    padding-top: 1.5rem;
    line-height: 1.572;
    font-size: 1.4rem;
  }
  .what_point_text > p {
    font: inherit;
  }
  .what_point_text > p:first-of-type {
    margin-top: -0.285em;
  }
  .what_point_text > p:last-of-type {
    margin-bottom: -0.285em;
  }
  .what_point_text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .what_point_text {
    padding-top: 1.5rem;
    line-height: 1.546;
    font-size: 2.2rem;
  }
  .what_point_text > p {
    font: inherit;
  }
  .what_point_text > p:first-of-type {
    margin-top: -0.272em;
  }
  .what_point_text > p:last-of-type {
    margin-bottom: -0.272em;
  }
}

.what_image {
  position: absolute;
  transition-delay: 0.4s !important;
}
@media screen and (min-width: 769px) {
  .what_image {
    width: 47rem;
    height: 38rem;
    left: 82.858%;
    top: -0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .what_image {
    width: 41.3rem;
    height: 39.7rem;
    left: 59.105%;
    top: -26.6rem;
  }
}
.what_image img {
  position: absolute;
}
.what_image .img1 {
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .what_image .img1 {
    width: 87.873%;
  }
}
.what_image .img2 {
  left: 0;
}
@media screen and (min-width: 769px) {
  .what_image .img2 {
    width: 19.149%;
    top: 11.579%;
  }
}
@media screen and (max-width: 768px) {
  .what_image .img2 {
    width: 20.824%;
    left: 19.613%;
  }
}
.what_image .img3 {
  top: 0;
}
@media screen and (min-width: 769px) {
  .what_image .img3 {
    width: 65.32%;
    left: 21.49%;
  }
}
@media screen and (max-width: 768px) {
  .what_image .img3 {
    width: 74.335%;
    left: 5.532%;
    top: 7.053%;
  }
}

.works_section {
  position: relative;
}
@media screen and (min-width: 769px) {
  .works_section {
    margin-top: -19.033vw;
    padding: 0.2rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .works_section {
    margin-top: -20vw;
  }
}
.works_section::before {
  content: "";
  display: block;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .works_section::before {
    background-image: url(../img/top/works_bg1_pc.jpg);
    height: 31.699vw;
  }
}
@media screen and (max-width: 768px) {
  .works_section::before {
    background-image: url(../img/top/works_bg1_sp.jpg);
    height: 30.667vw;
  }
}
.works_section::after {
  content: "";
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .works_section::after {
    background-image: url(../img/top/bg_w_pc.png);
    height: 19.034vw;
  }
}
@media screen and (max-width: 768px) {
  .works_section::after {
    background-image: url(../img/top/bg_w_sp.png);
    height: 20vw;
  }
}

.works_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .works_inner {
    max-width: 110rem;
    margin-top: -12rem;
  }
}
@media screen and (max-width: 768px) {
  .works_inner {
    max-width: 67rem;
    margin-top: -0.5rem;
    padding: 0 0 8rem;
  }
}
.works_inner::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100vw;
  left: 50%;
  bottom: -0.1rem;
  translate: -50% 0;
}
@media screen and (min-width: 769px) {
  .works_inner::before {
    min-width: 1140px;
    top: 11.9rem;
  }
}
@media screen and (max-width: 768px) {
  .works_inner::before {
    top: 0.4rem;
  }
}

.works_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .works_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .works_head {
    gap: 1.5rem;
  }
}
.works_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .works_head p {
    width: 14rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .works_head p {
    width: 21rem;
    height: 7.8rem;
  }
}
.works_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.works_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.works_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.works_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.works_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.works_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.works_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.works_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.works_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.works_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.works_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.works_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.works_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.works_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.works_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.works_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.works_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.works_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .works_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .works_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.works_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.works_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .works_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .works_lead > p {
    font: inherit;
  }
  .works_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .works_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .works_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .works_lead > p {
    font: inherit;
  }
  .works_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .works_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}

.works_details {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 769px) {
  .works_details {
    gap: 1.9rem;
    padding-top: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .works_details {
    flex-direction: column;
    gap: 2rem;
    padding-top: 7rem;
  }
}

.works_detail {
  display: flex;
  flex-direction: column;
  border: 1px solid #2b2b2b;
  width: 100%;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .works_detail {
    gap: 2rem;
    border-radius: 3.5rem;
    padding: 4.9rem 9.9rem;
  }
}
@media screen and (max-width: 768px) {
  .works_detail {
    gap: 3.5rem;
    border-radius: 5.5rem;
    padding: 8rem 7rem;
  }
}
.works_detail > dt {
  display: flex;
  align-items: center;
  gap: 0.371em;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .works_detail > dt {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .works_detail > dt {
    font-size: 3.6rem;
  }
}
.works_detail > dt::before {
  content: "";
  background: #ffd125;
  width: 0.482em;
  height: 0.482em;
}
.works_detail > dd {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .works_detail > dd {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .works_detail > dd {
    gap: 3.5rem;
  }
}
.works_detail.col1 {
  background: #2771e8;
}
.works_detail.col2 {
  background: #ff7c46;
}

.works_detail_text {
  font-weight: 700;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .works_detail_text {
    line-height: 1.625;
    font-size: 1.6rem;
  }
  .works_detail_text > p {
    font: inherit;
  }
  .works_detail_text > p:first-of-type {
    margin-top: -0.312em;
  }
  .works_detail_text > p:last-of-type {
    margin-bottom: -0.312em;
  }
}
@media screen and (max-width: 768px) {
  .works_detail_text {
    line-height: 1.667;
    font-size: 2.4rem;
  }
  .works_detail_text > p {
    font: inherit;
  }
  .works_detail_text > p:first-of-type {
    margin-top: -0.333em;
  }
  .works_detail_text > p:last-of-type {
    margin-bottom: -0.333em;
  }
}

.works_detail_lead {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-weight: 700;
  color: #2b2b2b;
}
@media screen and (min-width: 769px) {
  .works_detail_lead {
    border-radius: 4.4rem;
    line-height: 3.143;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .works_detail_lead {
    border-radius: 3.3rem;
    line-height: 3;
    font-size: 2.2rem;
  }
}

.works_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .works_buttons {
    padding-top: 5rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .works_buttons {
    padding-top: 5.5rem;
    gap: 3.5rem;
  }
}
.works_buttons p {
  line-height: 1;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .works_buttons p {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .works_buttons p {
    font-size: 4.2rem;
  }
}

.works_button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .works_button {
    width: 47.6rem;
    height: 10.2rem;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .works_button {
    width: 100%;
    height: 14.4rem;
    font-size: 5rem;
  }
}
.works_button::before, .works_button::after {
  content: "";
  position: absolute;
  border: 1px solid;
  inset: 0;
}
@media screen and (min-width: 769px) {
  .works_button::before, .works_button::after {
    border-radius: 10.2rem;
  }
}
@media screen and (max-width: 768px) {
  .works_button::before, .works_button::after {
    border-radius: 14.4rem;
  }
}
.works_button::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .works_button::before {
    translate: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .works_button::before {
    translate: 0 1.5rem;
  }
}
.works_button::after {
  background: #0039bc;
}
.works_button span {
  position: relative;
  color: #fff;
  z-index: 2;
}
.works_button svg {
  stroke: #2b2b2b;
  fill: #fffff2;
  position: absolute;
  width: 0.556em;
  height: 0.667em;
  right: 1.408em;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .works_button:hover::after, .works_button:hover span, .works_button:hover svg {
    translate: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .works_button:hover::after, .works_button:hover span, .works_button:hover svg {
    translate: 0 1.5rem;
  }
}

.number_section {
  position: relative;
}
@media screen and (min-width: 769px) {
  .number_section {
    margin-top: -4.2rem;
  }
}
.number_section::after {
  content: "";
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .number_section::after {
    background-image: url(../img/top/number_bg_pc.jpg);
    height: 65rem;
  }
}
@media screen and (max-width: 768px) {
  .number_section::after {
    background-image: url(../img/top/number_bg_sp.jpg);
    height: 43rem;
  }
}

.number_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .number_inner {
    max-width: 110rem;
    padding: 0 0 8rem;
  }
}
@media screen and (max-width: 768px) {
  .number_inner {
    max-width: 67rem;
    padding: 3rem 0 15rem;
  }
}

.number_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .number_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .number_head {
    gap: 1.5rem;
  }
}
.number_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .number_head p {
    width: 14rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .number_head p {
    width: 21rem;
    height: 7.8rem;
  }
}
.number_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.number_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.number_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.number_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.number_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.number_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.number_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.number_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.number_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.number_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.number_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.number_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.number_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.number_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.number_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.number_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.number_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.number_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .number_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .number_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.number_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.number_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .number_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .number_lead > p {
    font: inherit;
  }
  .number_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .number_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .number_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .number_lead > p {
    font: inherit;
  }
  .number_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .number_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}
@media screen and (min-width: 769px) {
  .number_lead + .number_panels {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .number_lead + .number_panels {
    padding-top: 7rem;
  }
}

.number_panels {
  display: grid;
}
@media screen and (min-width: 769px) {
  .number_panels {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.9rem 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panels {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .number_panels.wid2 {
    gap: 1.2rem 1.5rem;
  }
}
.number_panels.wid2 .number_panel {
  justify-content: center;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .number_panels.wid2 .number_panel {
    height: 16.7rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panels.wid2 .number_panel {
    height: 32.5rem;
  }
}
@media screen and (min-width: 769px) {
  .number_panels > li.full {
    grid-column: 1/4;
  }
  .number_panels > li.full .number_panel {
    flex-direction: row;
    justify-content: center;
    gap: 7rem;
  }
  .number_panels > li.full .number_panel_note {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .number_panels > li.full {
    grid-column: 1/3;
  }
}

.number_panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #fff;
  border: 1px solid;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .number_panel {
    border-radius: 3.5rem;
    padding: 7rem 0;
  }
}
@media screen and (max-width: 768px) {
  .number_panel {
    border-radius: 5.5rem;
    padding: 8rem 0;
  }
}

.number_panel_lead {
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .number_panel_lead {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_lead {
    font-size: 4rem;
  }
}
.number_panel_lead strong {
  font-size: 1.926em;
  font-weight: 800;
  color: #0039bc;
}

.number_panel_label {
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .number_panel_label {
    padding-top: 3rem;
    line-height: 1;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_label {
    padding-top: 2.5rem;
    line-height: 1;
    font-size: 3rem;
  }
}

.number_panel_text {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .number_panel_text {
    padding-top: 1.5rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .number_panel_text > p {
    font: inherit;
  }
  .number_panel_text > p:first-of-type {
    margin-top: -0.25em;
  }
  .number_panel_text > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_text {
    padding-top: 2rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .number_panel_text > p {
    font: inherit;
  }
  .number_panel_text > p:first-of-type {
    margin-top: -0.25em;
  }
  .number_panel_text > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (min-width: 769px) {
  .number_panel_text + .number_panel_note {
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_text + .number_panel_note {
    padding-top: 1.5rem;
  }
}

.number_panel_note {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .number_panel_note {
    line-height: 1.667;
    font-size: 1.2rem;
  }
  .number_panel_note > p {
    font: inherit;
  }
  .number_panel_note > p:first-of-type {
    margin-top: -0.333em;
  }
  .number_panel_note > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_note {
    line-height: 1.5;
    font-size: 2rem;
  }
  .number_panel_note > p {
    font: inherit;
  }
  .number_panel_note > p:first-of-type {
    margin-top: -0.25em;
  }
  .number_panel_note > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.number_panel_sub {
  font-weight: 800;
  color: #0039bc;
}
@media screen and (min-width: 769px) {
  .number_panel_sub {
    line-height: 1;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_sub {
    line-height: 1;
    font-size: 5.4rem;
  }
}
@media screen and (min-width: 769px) {
  .number_panel_sub + .number_panel_note {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_sub + .number_panel_note {
    padding-top: 2rem;
  }
}

.number_chart {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .number_chart {
    gap: 1.5rem;
    width: 47.5rem;
  }
}
@media screen and (max-width: 768px) {
  .number_chart {
    gap: 1.7rem;
    width: 54rem;
    margin-top: 5rem;
  }
}

.number_chart_detail {
  width: 100%;
}
.number_chart_detail > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.223em;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .number_chart_detail > dt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .number_chart_detail > dt {
    font-size: 2.4rem;
  }
}
.number_chart_detail > dt span {
  font-size: 1.223em;
}
.number_chart_detail > dd {
  position: relative;
}
@media screen and (min-width: 769px) {
  .number_chart_detail > dd {
    height: 19.6rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .number_chart_detail > dd {
    height: 22.4rem;
    margin-top: 2rem;
  }
}
.number_chart_detail > dd::before {
  content: "";
  position: absolute;
  border: 1px dashed #0039bc;
  border-top: 0;
  border-radius: 0 0 2rem 2rem;
  inset: 0;
}

.number_chart_bar {
  position: absolute;
  background: #0039bc;
  border-radius: 2rem;
  left: 0;
  right: 0;
  bottom: 0;
  transition: height 0.8s ease;
}
.number_chart:not(.is-animated) .number_chart_bar {
  height: 0 !important;
}

.number_chart_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .number_chart_text {
    min-height: 5rem;
    bottom: 1.5rem;
    line-height: 1.667;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .number_chart_text {
    min-height: 6rem;
    bottom: 2rem;
    line-height: 1.25;
    font-size: 2rem;
  }
}

.number_panel_detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .number_panel_detail {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_detail {
    gap: 2.5rem;
  }
}
.number_panel_detail > dt {
  font-weight: 800;
  text-align: center;
  color: #0039bc;
}
@media screen and (min-width: 769px) {
  .number_panel_detail > dt {
    line-height: 1.455;
    font-size: 2.2rem;
  }
  .number_panel_detail > dt > p {
    font: inherit;
  }
  .number_panel_detail > dt > p:first-of-type {
    margin-top: -0.227em;
  }
  .number_panel_detail > dt > p:last-of-type {
    margin-bottom: -0.227em;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_detail > dt {
    line-height: 1.278;
    font-size: 3.6rem;
  }
  .number_panel_detail > dt > p {
    font: inherit;
  }
  .number_panel_detail > dt > p:first-of-type {
    margin-top: -0.138em;
  }
  .number_panel_detail > dt > p:last-of-type {
    margin-bottom: -0.138em;
  }
}
.number_panel_detail > dd {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .number_panel_detail > dd {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .number_panel_detail > dd > p {
    font: inherit;
  }
  .number_panel_detail > dd > p:first-of-type {
    margin-top: -0.25em;
  }
  .number_panel_detail > dd > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 768px) {
  .number_panel_detail > dd {
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .number_panel_detail > dd > p {
    font: inherit;
  }
  .number_panel_detail > dd > p:first-of-type {
    margin-top: -0.25em;
  }
  .number_panel_detail > dd > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.number_sub {
  display: flex;
  gap: 0.589em;
  position: relative;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .number_sub {
    margin-top: 9rem;
    line-height: 1;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .number_sub {
    margin-top: 10rem;
    line-height: 1.347;
    font-size: 5.2rem;
  }
  .number_sub > h3 {
    font: inherit;
  }
  .number_sub > h3:first-of-type {
    margin-top: -0.173em;
  }
  .number_sub > h3:last-of-type {
    margin-bottom: -0.173em;
  }
}
.number_sub::before {
  content: "";
  flex-shrink: 0;
  background-image: url(../img/bg1.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.883em;
  height: 0.883em;
  translate: 0 13.334%;
}
.number_sub h3 {
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .number_sub + .number_panels {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .number_sub + .number_panels {
    padding-top: 6rem;
  }
}

.interview_section {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .interview_section {
    margin-top: calc(-19.033vw - 0.8rem);
  }
}
@media screen and (max-width: 768px) {
  .interview_section {
    margin-top: -20vw;
  }
}
.interview_section::before, .interview_section::after {
  content: "";
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .interview_section::before, .interview_section::after {
    background-image: url(../img/top/bg_w_pc.png);
    height: 19.034vw;
  }
}
@media screen and (max-width: 768px) {
  .interview_section::before, .interview_section::after {
    background-image: url(../img/top/bg_w_sp.png);
    height: 20vw;
  }
}
.interview_section::before {
  scale: -1 -1;
}

.interview_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .interview_inner {
    max-width: 110rem;
    margin-top: -7.9rem;
    padding: 0 0 6rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_inner {
    max-width: 67rem;
    padding: 0.8rem 0 5rem;
  }
}
.interview_inner::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100vw;
  left: 50%;
  bottom: -0.1rem;
  translate: -50% 0;
}
@media screen and (min-width: 769px) {
  .interview_inner::before {
    min-width: 1140px;
    top: 7.8rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_inner::before {
    top: -0.1rem;
  }
}

.interview_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .interview_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_head {
    gap: 1.5rem;
  }
}
.interview_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .interview_head p {
    width: 16rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_head p {
    width: 24rem;
    height: 7.8rem;
  }
}
.interview_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.interview_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.interview_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.interview_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.interview_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.interview_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.interview_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.interview_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.interview_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.interview_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.interview_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.interview_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.interview_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.interview_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.interview_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.interview_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.interview_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.interview_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .interview_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.interview_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.interview_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .interview_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .interview_lead > p {
    font: inherit;
  }
  .interview_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .interview_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .interview_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .interview_lead > p {
    font: inherit;
  }
  .interview_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .interview_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}

.interview_buttons {
  display: flex;
  position: relative;
}
@media screen and (min-width: 769px) {
  .interview_buttons {
    justify-content: center;
    gap: 4.3rem;
    padding-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_buttons {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    padding-top: 7rem;
  }
}

.interview_button {
  display: flex;
  position: relative;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .interview_button {
    flex-direction: column;
    gap: 2.5rem;
    width: 32.8rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_button {
    width: 100%;
  }
  .interview_button:nth-of-type(2n) {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.interview_button.col1 .interview_button_position p {
  background: #20aa5f;
}
.interview_button.col2 .interview_button_position p {
  background: #ff6ab1;
}
.interview_button.col3 .interview_button_position p {
  background: #ffd125;
}
.interview_button.js-dialogOpen:hover .interview_button_image span::after, .interview_button.js-dialogOpen:hover .interview_button_image span svg {
  translate: 0 0.3rem;
}

.interview_button_image {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .interview_button_image {
    width: 33.4rem;
  }
}
.interview_button_image span {
  position: absolute;
  width: 6.6rem;
  height: 6.6rem;
  right: 1.7rem;
  bottom: 0.8rem;
}
.interview_button_image span::before, .interview_button_image span::after {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  inset: 0;
}
.interview_button_image span::before {
  background: #fffff2;
  translate: 0 0.3rem;
}
.interview_button_image span::after {
  background: #0039bc;
}
.interview_button_image span svg {
  fill: #fffff2;
  stroke: #2b2b2b;
  position: relative;
  z-index: 2;
}
.interview_button_image.js-dialogOpen:hover span::after, .interview_button_image.js-dialogOpen:hover span svg {
  translate: 0 0.3rem;
}

@media screen and (min-width: 769px) {
  .interview_button_caption {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 1.5rem 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_button_caption {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
  }
}

.interview_button_position {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .interview_button_position {
    justify-content: flex-end;
  }
}
.interview_button_position p {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
  font-weight: 800;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .interview_button_position p {
    border-radius: 4.6rem;
    min-width: 10rem;
    line-height: 2.3;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_button_position p {
    border-radius: 6.8rem;
    line-height: 2.267;
    font-size: 3rem;
  }
}

.interview_button_name {
  display: flex;
}
@media screen and (min-width: 769px) {
  .interview_button_name {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_button_name {
    align-items: center;
    gap: 1.5rem;
    padding-top: 3rem;
  }
}
.interview_button_name h4 {
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .interview_button_name h4 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_button_name h4 {
    font-size: 2rem;
  }
}
.interview_button_name p {
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .interview_button_name p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_button_name p {
    font-size: 2.7rem;
  }
}

.interview_button_text {
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .interview_button_text {
    grid-column: 1/3;
    grid-row: 2/3;
    line-height: 1.455;
    font-size: 2.2rem;
  }
  .interview_button_text > p {
    font: inherit;
  }
  .interview_button_text > p:first-of-type {
    margin-top: -0.227em;
  }
  .interview_button_text > p:last-of-type {
    margin-bottom: -0.227em;
  }
  .interview_button_text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .interview_button_text {
    padding-top: 2rem;
    line-height: 1.471;
    font-size: 3.4rem;
  }
  .interview_button_text > p {
    font: inherit;
  }
  .interview_button_text > p:first-of-type {
    margin-top: -0.235em;
  }
  .interview_button_text > p:last-of-type {
    margin-bottom: -0.235em;
  }
}

.schedule_head {
  position: relative;
}
@media screen and (min-width: 769px) {
  .schedule_head {
    display: grid;
    justify-content: space-between;
    grid-template-columns: auto auto;
    padding-top: 8.5rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_head {
    display: flex;
    flex-direction: column;
    padding-top: 11rem;
  }
}
@media screen and (min-width: 769px) {
  .schedule_head .interview_head, .schedule_head .interview_lead {
    grid-column: 1/2;
  }
}

.schedule_switches {
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 769px) {
  .schedule_switches {
    gap: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_switches {
    gap: 2.5rem;
    padding-top: 7rem;
  }
}

.schedule_switch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .schedule_switch {
    width: 13rem;
    height: 13rem;
    padding-bottom: 1.4rem;
    line-height: 1.239;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_switch {
    width: 20.6rem;
    height: 20.6rem;
    padding-bottom: 1.4rem;
    line-height: 0.971;
    font-size: 3.4rem;
  }
}
.schedule_switch::before, .schedule_switch::after {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  inset: 0;
  pointer-events: none;
}
.schedule_switch::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .schedule_switch::before {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_switch::before {
    translate: 0 1rem;
  }
}
.schedule_switch::after {
  background: #c7c8c8;
}
.schedule_switch p {
  position: relative;
  font-weight: 800;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.schedule_switch p small {
  font-size: 0.62em;
}
.schedule_switch svg {
  stroke: #2b2b2b;
  fill: #fffff2;
  position: absolute;
  width: 0.715em;
  height: 0.858em;
  bottom: 0.715em;
  rotate: 90deg;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .schedule_switch:hover::after, .schedule_switch:hover p, .schedule_switch:hover svg {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_switch:hover::after, .schedule_switch:hover p, .schedule_switch:hover svg {
    translate: 0 1rem;
  }
}
.schedule_switch.is-current {
  pointer-events: none;
}
.schedule_switch.is-current::after {
  background: #0039bc;
}

.schedule_tabs {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .schedule_tabs {
    gap: 2rem;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_tabs {
    gap: 4rem;
    margin-top: 5rem;
  }
}

.schedule_tab {
  position: relative;
  background: #fff6d3;
  border: 1px solid #2b2b2b;
}
@media screen and (min-width: 769px) {
  .schedule_tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 3.5rem;
    gap: 10rem;
    padding: 4.4rem 6.9rem;
  }
  #Schedule3.schedule_tab {
    padding-bottom: 8.4rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4.5rem;
    border-radius: 5.5rem;
    padding: 8.8rem 5.2rem 11.8rem;
  }
}
.schedule_tab::before {
  content: "";
  position: absolute;
  background-image: url(../img/line2.svg);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  margin: 0 auto;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .schedule_tab::before {
    width: 0.4rem;
    inset: 4.4rem 0;
  }
}
.schedule_tab:not(.is-current) {
  display: none !important;
}

.schedule_tab_note {
  position: absolute;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .schedule_tab_note {
    right: 3.5rem;
    bottom: 3.5rem;
    line-height: 1.667;
    font-size: 1.2rem;
  }
  .schedule_tab_note > p {
    font: inherit;
  }
  .schedule_tab_note > p:first-of-type {
    margin-top: -0.333em;
  }
  .schedule_tab_note > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .schedule_tab_note {
    right: 3rem;
    bottom: 5.2rem;
    line-height: 1.5;
    font-size: 2rem;
  }
  .schedule_tab_note > p {
    font: inherit;
  }
  .schedule_tab_note > p:first-of-type {
    margin-top: -0.25em;
  }
  .schedule_tab_note > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.schedule_list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .schedule_list {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_list {
    gap: 4.5rem;
  }
}
.schedule_list > li {
  display: flex;
  align-items: flex-start;
}
.schedule_list > li.col1 .schedule_list_date::before {
  background: #2771e8;
}
.schedule_list > li.col2 .schedule_list_date::before {
  background: #ff7c46;
}

.schedule_list_date {
  flex-shrink: 0;
  position: relative;
  padding: 0.375em 0 0 1.375em;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .schedule_list_date {
    width: 9rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_list_date {
    width: 15rem;
    font-size: 2.6rem;
  }
}
.schedule_list_date::before {
  content: "";
  position: absolute;
  width: 0.813em;
  height: 0.813em;
  left: 0;
  top: 0.5em;
}

.schedule_list_detail {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .schedule_list_detail {
    gap: 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_list_detail {
    gap: 1rem;
  }
}

.schedule_list_sub {
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .schedule_list_sub {
    line-height: 1.5;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_list_sub {
    line-height: 1.5;
    font-size: 3rem;
  }
}

.schedule_list_text {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .schedule_list_text {
    line-height: 1.539;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .schedule_list_text {
    line-height: 1.546;
    font-size: 2.2rem;
  }
}

.office_section {
  position: relative;
}
@media screen and (min-width: 769px) {
  .office_section {
    margin-top: -19.033vw;
  }
}
@media screen and (max-width: 768px) {
  .office_section {
    margin-top: -20vw;
  }
}
.office_section::after {
  content: "";
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .office_section::after {
    background-image: url(../img/top/bg_y_pc.png);
    height: 19.034vw;
  }
}
@media screen and (max-width: 768px) {
  .office_section::after {
    background-image: url(../img/top/bg_y_sp.png);
    height: 20vw;
  }
}

.office_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .office_inner {
    max-width: 110rem;
    margin-bottom: -2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .office_inner {
    max-width: 67rem;
  }
}
.office_inner::before {
  content: "";
  position: absolute;
  background: #ffd125;
  width: 100vw;
  left: 50%;
  top: -0.1rem;
  translate: -50% 0;
}
@media screen and (min-width: 769px) {
  .office_inner::before {
    min-width: 1140px;
    bottom: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .office_inner::before {
    bottom: -0.1rem;
  }
}

.office_block {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 769px) {
  .office_block {
    align-items: flex-start;
    padding: 19.4vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .office_block {
    flex-direction: column;
    padding: calc(20vw + 2.4rem) 0 10.6rem;
  }
}

@media screen and (min-width: 769px) {
  .office_caption {
    width: 40rem;
  }
}

.office_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .office_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .office_head {
    gap: 1.5rem;
  }
}
.office_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .office_head p {
    width: 14rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .office_head p {
    width: 21rem;
    height: 7.8rem;
  }
}
.office_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.office_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.office_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.office_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.office_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.office_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.office_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.office_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.office_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.office_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.office_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.office_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.office_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.office_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.office_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.office_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.office_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.office_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .office_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .office_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.office_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.office_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .office_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .office_lead > p {
    font: inherit;
  }
  .office_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .office_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .office_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .office_lead > p {
    font: inherit;
  }
  .office_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .office_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}

.office_switches {
  display: grid;
}
@media screen and (min-width: 769px) {
  .office_switches {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 0.8rem;
    padding-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .office_switches {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.9rem 0;
    padding-top: 7rem;
  }
}

.office_switch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .office_switch {
    width: 19.6rem;
    height: 5.4rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .office_switch {
    width: 21.3rem;
    height: 9.6rem;
    font-size: 3.4rem;
  }
}
.office_switch::before, .office_switch::after {
  content: "";
  position: absolute;
  border: 1px solid;
  inset: 0;
}
@media screen and (min-width: 769px) {
  .office_switch::before, .office_switch::after {
    border-radius: 5.4rem;
  }
}
@media screen and (max-width: 768px) {
  .office_switch::before, .office_switch::after {
    border-radius: 9.6rem;
  }
}
.office_switch::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .office_switch::before {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .office_switch::before {
    translate: 0 1rem;
  }
}
.office_switch::after {
  background: #c7c8c8;
}
.office_switch span {
  position: relative;
  color: #fff;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .office_switch:hover::after, .office_switch:hover span {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .office_switch:hover::after, .office_switch:hover span {
    translate: 0 1rem;
  }
}
.office_switch.is-current {
  pointer-events: none;
}
.office_switch.is-current::after {
  background: #0039bc;
}

.office_slider {
  position: relative;
}
@media screen and (min-width: 769px) {
  .office_slider {
    width: 65rem;
    padding-top: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider {
    width: 100%;
    padding-top: 6rem;
  }
}
.office_slider .swiper-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  .office_slider .swiper-navigation {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider .swiper-navigation {
    gap: 1.6rem;
  }
}
.office_slider .swiper-button-prev, .office_slider .swiper-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: auto;
  right: auto;
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .office_slider .swiper-button-prev, .office_slider .swiper-button-next {
    width: 5.4rem;
    height: 5.4rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider .swiper-button-prev, .office_slider .swiper-button-next {
    width: 6.7rem;
    height: 6.7rem;
  }
}
.office_slider .swiper-button-prev::before, .office_slider .swiper-button-prev::after, .office_slider .swiper-button-next::before, .office_slider .swiper-button-next::after {
  content: "";
  position: absolute;
  border: 1px solid #2b2b2b;
  border-radius: 50%;
  inset: 0;
  pointer-events: none;
}
.office_slider .swiper-button-prev::before, .office_slider .swiper-button-next::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .office_slider .swiper-button-prev::before, .office_slider .swiper-button-next::before {
    translate: 0 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider .swiper-button-prev::before, .office_slider .swiper-button-next::before {
    translate: 0 0.5rem;
  }
}
.office_slider .swiper-button-prev::after, .office_slider .swiper-button-next::after {
  background: #0039bc;
}
.office_slider .swiper-button-prev svg, .office_slider .swiper-button-next svg {
  stroke: #2b2b2b;
  fill: #fffff2;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .office_slider .swiper-button-prev svg, .office_slider .swiper-button-next svg {
    width: 1.3rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider .swiper-button-prev svg, .office_slider .swiper-button-next svg {
    width: 2.3rem;
    height: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  .office_slider .swiper-button-prev:hover::after, .office_slider .swiper-button-prev:hover svg, .office_slider .swiper-button-next:hover::after, .office_slider .swiper-button-next:hover svg {
    translate: 0 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider .swiper-button-prev:hover::after, .office_slider .swiper-button-prev:hover svg, .office_slider .swiper-button-next:hover::after, .office_slider .swiper-button-next:hover svg {
    translate: 0 0.5rem;
  }
}
.office_slider .swiper-button-prev.swiper-button-disabled, .office_slider .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.office_slider .swiper-button-prev.swiper-button-disabled::after, .office_slider .swiper-button-next.swiper-button-disabled::after {
  background: #c7c8c8;
}
.office_slider .swiper-button-prev {
  padding-right: 0.4rem;
}
.office_slider .swiper-button-prev svg {
  scale: -1 1;
}
.office_slider .swiper-button-next {
  padding-left: 0.4rem;
}

.office_slider_frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .office_slider_frame {
    border-radius: 3.5rem;
    height: 40.5rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider_frame {
    border-radius: 5.5rem;
  }
}
.office_slider_frame::after {
  content: "";
  position: absolute;
  border: 1px solid #2b2b2b;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .office_slider_frame::after {
    border-radius: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .office_slider_frame::after {
    border-radius: 5.5rem;
  }
}

.office_slide_image {
  height: 100%;
}
.office_slide_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.recruit_section {
  position: relative;
}

.recruit_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .recruit_inner {
    max-width: 110rem;
    padding: 6.8rem 0 10rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_inner {
    max-width: 67rem;
    padding: 10rem 0 6.6rem;
  }
}

.recruit_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .recruit_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_head {
    gap: 1.5rem;
  }
}
.recruit_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .recruit_head p {
    width: 19.2rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_head p {
    width: 28.8rem;
    height: 7.8rem;
  }
}
.recruit_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.recruit_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.recruit_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.recruit_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.recruit_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.recruit_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.recruit_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.recruit_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.recruit_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.recruit_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.recruit_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.recruit_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.recruit_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.recruit_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.recruit_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.recruit_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.recruit_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.recruit_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .recruit_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.recruit_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.recruit_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .recruit_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .recruit_lead > p {
    font: inherit;
  }
  .recruit_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .recruit_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .recruit_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .recruit_lead > p {
    font: inherit;
  }
  .recruit_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .recruit_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}

.recruit_panels {
  display: grid;
}
@media screen and (min-width: 769px) {
  .recruit_panels {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 1.5rem;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_panels {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 7rem;
  }
}

.recruit_panel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  border: 1px solid;
}
@media screen and (min-width: 769px) {
  .recruit_panel {
    border-radius: 3.5rem;
    height: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_panel {
    border-radius: 5.5rem;
    height: 32.5rem;
  }
}

.recruit_panel_detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .recruit_panel_detail {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_panel_detail {
    gap: 2.5rem;
  }
}
.recruit_panel_detail > dt {
  font-weight: 800;
  text-align: center;
  color: #0039bc;
}
@media screen and (min-width: 769px) {
  .recruit_panel_detail > dt {
    line-height: 1.455;
    font-size: 2.2rem;
  }
  .recruit_panel_detail > dt > p {
    font: inherit;
  }
  .recruit_panel_detail > dt > p:first-of-type {
    margin-top: -0.227em;
  }
  .recruit_panel_detail > dt > p:last-of-type {
    margin-bottom: -0.227em;
  }
}
@media screen and (max-width: 768px) {
  .recruit_panel_detail > dt {
    line-height: 1.278;
    font-size: 3.6rem;
  }
  .recruit_panel_detail > dt > p {
    font: inherit;
  }
  .recruit_panel_detail > dt > p:first-of-type {
    margin-top: -0.138em;
  }
  .recruit_panel_detail > dt > p:last-of-type {
    margin-bottom: -0.138em;
  }
}
.recruit_panel_detail > dd {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .recruit_panel_detail > dd {
    line-height: 1.625;
    font-size: 1.6rem;
  }
  .recruit_panel_detail > dd > p {
    font: inherit;
  }
  .recruit_panel_detail > dd > p:first-of-type {
    margin-top: -0.312em;
  }
  .recruit_panel_detail > dd > p:last-of-type {
    margin-bottom: -0.312em;
  }
}
@media screen and (max-width: 768px) {
  .recruit_panel_detail > dd {
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .recruit_panel_detail > dd > p {
    font: inherit;
  }
  .recruit_panel_detail > dd > p:first-of-type {
    margin-top: -0.25em;
  }
  .recruit_panel_detail > dd > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.recruit_sub {
  display: flex;
  gap: 0.589em;
  position: relative;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .recruit_sub {
    margin-top: 9rem;
    line-height: 1;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_sub {
    margin-top: 10.5rem;
    line-height: 1.347;
    font-size: 5.2rem;
  }
  .recruit_sub > h3 {
    font: inherit;
  }
  .recruit_sub > h3:first-of-type {
    margin-top: -0.173em;
  }
  .recruit_sub > h3:last-of-type {
    margin-bottom: -0.173em;
  }
}
.recruit_sub::before {
  content: "";
  flex-shrink: 0;
  background-image: url(../img/bg1.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.883em;
  height: 0.883em;
  translate: 0 13.334%;
}
.recruit_sub h3 {
  font-weight: 800;
}

.recruit_faqs {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .recruit_faqs {
    gap: 1.8rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faqs {
    gap: 2rem;
    margin-top: 6rem;
  }
}

.recruit_faq {
  background: #fff;
  border: 1px solid;
}
@media screen and (min-width: 769px) {
  .recruit_faq {
    border-radius: 3.5rem;
    padding: 0 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq {
    border-radius: 5.5rem;
  }
}

.recruit_faq_head {
  position: relative;
}
@media screen and (min-width: 769px) {
  .recruit_faq_head {
    padding: 2.6rem 8.5rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_head {
    padding: 5.7rem 12rem 5.7rem 9rem;
  }
}
.recruit_faq_head::before {
  content: "Q";
  position: absolute;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .recruit_faq_head::before {
    left: 5.5rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_head::before {
    left: 4.3rem;
    font-size: 3.3rem;
  }
}
.recruit_faq_head span {
  display: block;
  position: absolute;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .recruit_faq_head span {
    width: 4.4rem;
    height: 4.4rem;
    right: 3.6rem;
    top: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_head span {
    width: 6.7rem;
    height: 6.7rem;
    right: 4.7rem;
    top: 3.6rem;
  }
}
.recruit_faq_head span::before, .recruit_faq_head span::after {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  inset: 0;
  pointer-events: none;
}
.recruit_faq_head span::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .recruit_faq_head span::before {
    translate: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_head span::before {
    translate: 0 0.5rem;
  }
}
.recruit_faq_head span::after {
  background: #0039bc;
}
.recruit_faq_head span svg {
  fill: #fffff2;
  stroke: #2b2b2b;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .recruit_faq_head span:hover::after, .recruit_faq_head span:hover svg {
    translate: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_head span:hover::after, .recruit_faq_head span:hover svg {
    translate: 0 0.5rem;
  }
}
.recruit_faq_head:not(.is-opened) span:nth-of-type(2) {
  display: none;
}
.recruit_faq_head.is-opened span:nth-of-type(1) {
  display: none;
}

.recruit_faq_lead {
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .recruit_faq_lead {
    line-height: 1.273;
    font-size: 2.2rem;
  }
  .recruit_faq_lead > h4 {
    font: inherit;
  }
  .recruit_faq_lead > h4:first-of-type {
    margin-top: -0.136em;
  }
  .recruit_faq_lead > h4:last-of-type {
    margin-bottom: -0.136em;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_lead {
    line-height: 1.334;
    font-size: 3.3rem;
  }
  .recruit_faq_lead > h4 {
    font: inherit;
  }
  .recruit_faq_lead > h4:first-of-type {
    margin-top: -0.166em;
  }
  .recruit_faq_lead > h4:last-of-type {
    margin-bottom: -0.166em;
  }
}

.recruit_faq_body {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
}
.recruit_faq_body::before {
  content: "A";
  position: absolute;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .recruit_faq_body::before {
    left: 5.5rem;
    top: 2.7rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_body::before {
    left: 4.3rem;
    top: 4.4rem;
    font-size: 3.3rem;
  }
}
.recruit_faq_body::after {
  content: "";
  display: none;
  position: absolute;
  background-image: url(../img/line1.svg);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .recruit_faq_body::after {
    height: 4px;
    inset: 0 2rem auto;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_body::after {
    height: 0.6rem;
    inset: 0 4.2rem auto;
  }
}
.js-accSwitch.is-opened + .recruit_faq_body::after {
  display: block;
}

.recruit_faq_text {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .recruit_faq_text {
    padding: 3rem 3.6rem 3rem 8.5rem;
    line-height: 1.625;
    font-size: 1.6rem;
  }
  .recruit_faq_text > p {
    font: inherit;
  }
  .recruit_faq_text > p:first-of-type {
    margin-top: -0.312em;
  }
  .recruit_faq_text > p:last-of-type {
    margin-bottom: -0.312em;
  }
}
@media screen and (max-width: 768px) {
  .recruit_faq_text {
    padding: 4.8rem 4.5rem 5rem 9rem;
    line-height: 1.616;
    font-size: 2.6rem;
  }
  .recruit_faq_text > p {
    font: inherit;
  }
  .recruit_faq_text > p:first-of-type {
    margin-top: -0.307em;
  }
  .recruit_faq_text > p:last-of-type {
    margin-bottom: -0.307em;
  }
}

.recruit_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .recruit_buttons {
    gap: 3rem;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_buttons {
    gap: 3.5rem;
    margin-top: 8rem;
  }
}

.recruit_buttons_text {
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .recruit_buttons_text {
    line-height: 1;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_buttons_text {
    line-height: 1.4;
    font-size: 4.5rem;
  }
}

.recruit_button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .recruit_button {
    width: 33.4rem;
    height: 6.4rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_button {
    width: 50rem;
    height: 9.6rem;
    font-size: 3.3rem;
  }
}
.recruit_button::before, .recruit_button::after {
  content: "";
  position: absolute;
  border: 1px solid;
  inset: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .recruit_button::before, .recruit_button::after {
    border-radius: 6.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_button::before, .recruit_button::after {
    border-radius: 9.6rem;
  }
}
.recruit_button::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .recruit_button::before {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_button::before {
    translate: 0 1.1rem;
  }
}
.recruit_button::after {
  background: #0039bc;
}
.recruit_button span {
  position: relative;
  color: #fff;
  z-index: 2;
}
.recruit_button svg {
  fill: #fffff2;
  stroke: #2b2b2b;
  position: absolute;
  width: 0.591em;
  height: 0.682em;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .recruit_button svg {
    right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_button svg {
    right: 3.2rem;
  }
}
@media screen and (min-width: 769px) {
  .recruit_button:hover::after, .recruit_button:hover span, .recruit_button:hover svg {
    translate: 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_button:hover::after, .recruit_button:hover span, .recruit_button:hover svg {
    translate: 0 1.1rem;
  }
}

.recruit_image {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .recruit_image {
    width: 32.5rem;
    right: -7.1rem;
    top: -14.7rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_image {
    width: 32.4rem;
    right: -7.9rem;
    top: 1.3rem;
  }
}
.recruit_image::before {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .recruit_image::before {
    background-image: url(../img/top/recruit_bg_pc.png);
    width: 57.2rem;
    height: 40rem;
    right: -6.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit_image::before {
    background-image: url(../img/top/recruit_bg_sp.png);
    width: 37rem;
    height: 42.4rem;
    right: 0;
  }
}
.recruit_image figure {
  position: relative;
  transition-delay: 0.4s !important;
}
.entry_section {
  position: relative;
  color: #fff;
}
.entry_section::after {
  content: "";
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  scale: -1 -1;
}
@media screen and (min-width: 769px) {
  .entry_section::after {
    background-image: url(../img/top/bg_b_pc.png);
    height: 19.034vw;
  }
}
@media screen and (max-width: 768px) {
  .entry_section::after {
    background-image: url(../img/top/bg_b_sp.png);
    height: 20vw;
  }
}

.entry_bg {
  position: relative;
}
@media screen and (min-width: 769px) {
  .entry_bg {
    height: 20.498vw;
  }
}
@media screen and (max-width: 768px) {
  .entry_bg {
    height: 28vw;
  }
}
.entry_bg::before, .entry_bg::after {
  content: "";
  display: block;
  position: absolute;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  inset: 0;
}
.entry_bg::before {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.4s linear, translate 0.4s ease-out;
}
@media screen and (min-width: 769px) {
  .entry_bg::before {
    background-image: url(../img/top/entry_bg2_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .entry_bg::before {
    background-image: url(../img/top/entry_bg2_sp.png);
  }
}
.entry_section.is-animated .entry_bg::before {
  opacity: 1;
  translate: 0 0;
}
@media screen and (min-width: 769px) {
  .entry_bg::after {
    background-image: url(../img/top/entry_bg1_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .entry_bg::after {
    background-image: url(../img/top/entry_bg1_sp.png);
  }
}

.entry_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .entry_inner {
    max-width: 110rem;
    margin-top: -9.5rem;
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_inner {
    max-width: 67rem;
    padding: 0.8rem 0 7rem;
  }
}
.entry_inner::before {
  content: "";
  position: absolute;
  background: #2771e8;
  width: 100vw;
  left: 50%;
  bottom: -0.1rem;
  translate: -50% 0;
}
@media screen and (min-width: 769px) {
  .entry_inner::before {
    min-width: 1140px;
    top: 9.4rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_inner::before {
    top: -0.1rem;
  }
}

.entry_head {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 769px) {
  .entry_head {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_head {
    gap: 1.5rem;
  }
}
.entry_head p {
  position: relative;
  background-image: url(../img/top/head_p_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .entry_head p {
    width: 14rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_head p {
    width: 21rem;
    height: 7.8rem;
  }
}
.entry_head p svg {
  clip-path: polygon(0 0, 100% 0, 100% 61.539%, 0 61.539%);
}
.entry_head p svg > * {
  fill-opacity: 0;
  translate: 0 20px;
  transition: 0.3s linear;
}
.entry_head p svg > *:nth-of-type(1) {
  transition-delay: 0.4s;
}
.entry_head p svg > *:nth-of-type(2) {
  transition-delay: 0.6s;
}
.entry_head p svg > *:nth-of-type(3) {
  transition-delay: 0.8s;
}
.entry_head p svg > *:nth-of-type(4) {
  transition-delay: 1s;
}
.entry_head p svg > *:nth-of-type(5) {
  transition-delay: 1.2s;
}
.entry_head p svg > *:nth-of-type(6) {
  transition-delay: 1.4s;
}
.entry_head p svg > *:nth-of-type(7) {
  transition-delay: 1.6s;
}
.entry_head p svg > *:nth-of-type(8) {
  transition-delay: 1.8s;
}
.entry_head p svg > *:nth-of-type(9) {
  transition-delay: 2s;
}
.entry_head p svg > *:nth-of-type(10) {
  transition-delay: 2.2s;
}
.entry_head p svg > *:nth-of-type(11) {
  transition-delay: 2.4s;
}
.entry_head p svg > *:nth-of-type(12) {
  transition-delay: 2.6s;
}
.entry_head p svg > *:nth-of-type(13) {
  transition-delay: 2.8s;
}
.entry_head p svg > *:nth-of-type(14) {
  transition-delay: 3s;
}
.entry_head p svg > *:nth-of-type(15) {
  transition-delay: 3.2s;
}
.entry_head h2 {
  letter-spacing: 0.04em;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .entry_head h2 {
    line-height: 1;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_head h2 {
    line-height: 1.259;
    font-size: 8.5rem;
  }
}
.entry_head.is-animated p svg > * {
  translate: 0 0;
  fill-opacity: 1;
}

.entry_lead {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .entry_lead {
    padding-top: 4rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .entry_lead > p {
    font: inherit;
  }
  .entry_lead > p:first-of-type {
    margin-top: -0.333em;
  }
  .entry_lead > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .entry_lead {
    padding-top: 2.8rem;
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .entry_lead > p {
    font: inherit;
  }
  .entry_lead > p:first-of-type {
    margin-top: -0.321em;
  }
  .entry_lead > p:last-of-type {
    margin-bottom: -0.321em;
  }
}
.entry_lead span {
  display: inline-block;
  background: #ffd125;
  margin: 0 0.2em;
  padding: 0 0.2em 0 0.3em;
  color: #2b2b2b;
}

.entry_sub {
  display: flex;
  gap: 0.589em;
  position: relative;
  margin-top: 7rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .entry_sub {
    line-height: 1;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_sub {
    line-height: 1.347;
    font-size: 5.2rem;
  }
  .entry_sub > h3 {
    font: inherit;
  }
  .entry_sub > h3:first-of-type {
    margin-top: -0.173em;
  }
  .entry_sub > h3:last-of-type {
    margin-bottom: -0.173em;
  }
}
.entry_sub::before {
  content: "";
  flex-shrink: 0;
  background-image: url(../img/bg1.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.883em;
  height: 0.883em;
  translate: 0 13.334%;
}
.entry_sub h3 {
  font-weight: 800;
}

.entry_text {
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .entry_text {
    padding-top: 4rem;
    line-height: 1.625;
    font-size: 1.6rem;
  }
  .entry_text > p {
    font: inherit;
  }
  .entry_text > p:first-of-type {
    margin-top: -0.312em;
  }
  .entry_text > p:last-of-type {
    margin-bottom: -0.312em;
  }
}
@media screen and (max-width: 768px) {
  .entry_text {
    padding-top: 5rem;
    line-height: 1.616;
    font-size: 2.6rem;
  }
  .entry_text > p {
    font: inherit;
  }
  .entry_text > p:first-of-type {
    margin-top: -0.307em;
  }
  .entry_text > p:last-of-type {
    margin-bottom: -0.307em;
  }
}

.entry_steps {
  counter-reset: entry_steps;
  display: flex;
  position: relative;
}
@media screen and (min-width: 769px) {
  .entry_steps {
    justify-content: space-between;
    align-items: stretch;
    gap: 6.9rem;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_steps {
    flex-direction: column;
    gap: 5.8rem;
    padding-left: 4.5rem;
    padding-top: 6rem;
  }
}
.entry_steps > li {
  counter-increment: entry_steps;
  position: relative;
  width: 100%;
}
.entry_steps > li + li::before {
  content: "";
  position: absolute;
  background-image: url(../img/entry_step_arrow.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .entry_steps > li + li::before {
    width: 1.8rem;
    height: 2.1rem;
    left: -4.1rem;
    top: 50%;
    translate: 0 -50%;
  }
}
@media screen and (max-width: 768px) {
  .entry_steps > li + li::before {
    width: 2.1rem;
    height: 2.6rem;
    left: 50%;
    top: -4rem;
    translate: -50% 0;
    rotate: 90deg;
  }
}

.entry_step {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid;
  text-align: justify;
  color: #2b2b2b;
}
@media screen and (min-width: 769px) {
  .entry_step {
    gap: 2rem;
    border-radius: 3.5rem;
    height: 100%;
    padding: 3.5rem 5.4rem 3.5rem 4.9rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_step {
    gap: 3rem;
    border-radius: 5.5rem;
    padding: 5.4rem 4.4rem 6.4rem 6.9rem;
  }
}
.entry_step::after {
  content: counter(entry_steps);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-image: url(../img/balloon_y.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.455em;
  height: 2.455em;
  top: 2rem;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .entry_step::after {
    left: -2.7rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_step::after {
    left: -4.6rem;
    font-size: 3.8rem;
  }
}

.entry_step_text {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .entry_step_text {
    line-height: 1.455;
    font-size: 2.2rem;
  }
  .entry_step_text > p {
    font: inherit;
  }
  .entry_step_text > p:first-of-type {
    margin-top: -0.227em;
  }
  .entry_step_text > p:last-of-type {
    margin-bottom: -0.227em;
  }
}
@media screen and (max-width: 768px) {
  .entry_step_text {
    line-height: 1.375;
    font-size: 3.2rem;
  }
  .entry_step_text > p {
    font: inherit;
  }
  .entry_step_text > p:first-of-type {
    margin-top: -0.187em;
  }
  .entry_step_text > p:last-of-type {
    margin-bottom: -0.187em;
  }
}

.entry_step_address {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .entry_step_address {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_step_address {
    gap: 1.5rem;
  }
}
.entry_step_address > dt {
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .entry_step_address > dt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_step_address > dt {
    font-size: 2.2rem;
  }
}
.entry_step_address > dd {
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .entry_step_address > dd {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_step_address > dd {
    font-size: 2rem;
  }
}
.entry_step_address > dd::before {
  content: "";
  display: inline-block;
  background-image: url(../img/mail01.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: middle;
  translate: 0 5%;
}
.entry_step_address > dd a {
  text-decoration: underline;
}

.profile_dialog {
  background: transparent;
  border: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
}
@media screen and (min-width: 769px) {
  .profile_dialog {
    padding: 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_dialog {
    padding: 12rem 4rem 8rem;
  }
}
.profile_dialog::backdrop {
  opacity: 0;
}
.profile_dialog:focus {
  outline: none;
}

.profile_dialog_bg {
  position: fixed;
  background: rgba(43, 43, 43, 0.4);
  inset: 0;
}

.profile_close {
  position: absolute;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .profile_close {
    width: 5.5rem;
    height: 5.5rem;
    right: 1rem;
    top: 1rem;
  }
}
@media screen and (min-width: 1230px) {
  .profile_close {
    left: calc(50% + 54rem);
  }
}
@media screen and (max-width: 768px) {
  .profile_close {
    width: 6.7rem;
    height: 6.7rem;
    right: 4rem;
    top: 3rem;
  }
}
.profile_close::before, .profile_close::after {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  inset: 0;
  pointer-events: none;
}
.profile_close::before {
  background: #fffff2;
}
@media screen and (min-width: 769px) {
  .profile_close::before {
    translate: 0 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_close::before {
    translate: 0 0.5rem;
  }
}
.profile_close::after {
  background: #0039bc;
}
.profile_close svg {
  fill: #fffff2;
  stroke: #2b2b2b;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .profile_close:hover::after, .profile_close:hover svg {
    translate: 0 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_close:hover::after, .profile_close:hover svg {
    translate: 0 0.5rem;
  }
}

.profile_box {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .profile_box {
    border-radius: 3.5rem;
    max-width: 110rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_box {
    border-radius: 5.5rem;
    max-width: 67rem;
  }
}
.profile_box::after {
  content: "";
  position: absolute;
  border: 1px solid #2b2b2b;
  inset: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .profile_box::after {
    border-radius: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_box::after {
    border-radius: 5.5rem;
  }
}
.profile_box.col1 {
  background: #20aa5f;
}
.profile_box.col1 .interview_detail_thumb {
  background: #ffd125;
}
.profile_box.col2 {
  background: #ff6ab1;
}
.profile_box.col2 .interview_detail_thumb {
  background: #ffd125;
}
.profile_box.col3 {
  background: #ffd125;
}
.profile_box.col3 .interview_detail_thumb {
  background: #ff7c46;
}

.profile_label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #0039bc;
  border-right: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  padding-right: 0.682em;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .profile_label {
    border-radius: 0 0 6.7rem 0;
    width: 21rem;
    height: 6.7rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_label {
    border-radius: 0 0 8.3rem 0;
    width: 26rem;
    height: 8.3rem;
    font-size: 3rem;
  }
}

.profile_detail {
  display: flex;
  position: relative;
  border-bottom: 1px solid #2b2b2b;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .profile_detail {
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .profile_detail {
    padding: 17.5rem 7rem 5rem;
  }
}

@media screen and (min-width: 769px) {
  .profile_caption {
    width: 50%;
    padding: 0 12.5rem;
  }
}

.profile_name {
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .profile_name {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_name {
    font-size: 7rem;
  }
}
.profile_name small {
  font-size: 0.7em;
}

.profile_career {
  display: flex;
  position: relative;
  justify-content: flex-start;
}
@media screen and (min-width: 769px) {
  .profile_career {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_career {
    padding-top: 4rem;
  }
}
.profile_career > li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 1.563em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .profile_career > li {
    height: 3.9rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_career > li {
    height: 6rem;
    font-size: 2.5rem;
  }
}
.profile_career > li:nth-of-type(1) {
  background: #2b2b2b;
  color: #fff;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .profile_career > li:nth-of-type(1) {
    border-radius: 3.9rem;
    margin-right: -3.9rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_career > li:nth-of-type(1) {
    border-radius: 6rem;
    margin-right: -6rem;
  }
}
.profile_career > li:nth-of-type(2) {
  background: #fff;
  border: 1px solid;
  border-left: 0;
  padding-left: 3.375em;
  color: #2b2b2b;
}
@media screen and (min-width: 769px) {
  .profile_career > li:nth-of-type(2) {
    border-radius: 0 3.9rem 3.9rem 0;
  }
}
@media screen and (max-width: 768px) {
  .profile_career > li:nth-of-type(2) {
    border-radius: 0 6rem 6rem 0;
  }
}

.profile_likes {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .profile_likes {
    gap: 1.1rem 1.3rem;
    padding-top: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_likes {
    width: 25rem;
    gap: 2.1rem;
    padding-top: 13rem;
  }
}
.profile_likes > li {
  background: #fff;
  padding: 0 1.072em;
  font-weight: 700;
  color: #2b2b2b;
}
@media screen and (min-width: 769px) {
  .profile_likes > li {
    border-radius: 3.4rem;
    line-height: 2.429;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_likes > li {
    border-radius: 5.2rem;
    line-height: 2.364;
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 769px) {
  .profile_thumb {
    position: relative;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .profile_thumb {
    position: absolute;
    border-radius: 5.5rem 0 0;
    width: 33.5rem;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
}
.profile_thumb::before {
  content: "";
  position: absolute;
  border-left: 1px solid #2b2b2b;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .profile_thumb::before {
    left: 0;
    top: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .profile_thumb::before {
    border-top: 1px solid #2b2b2b;
    border-radius: 5.5rem 0 0;
    inset: 0;
  }
}
.profile_thumb figure {
  width: 100%;
  height: 100%;
}
.profile_thumb figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.profile_buttons {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .profile_buttons {
    padding-top: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_buttons {
    margin-top: -0.5rem;
  }
}

.profile_button {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .profile_button {
    line-height: 1.875;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .profile_button {
    line-height: 1.417;
    font-size: 2.4rem;
  }
}
.profile_button:hover {
  color: #0039bc;
}

.interview_details {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .interview_details {
    gap: 6rem;
    padding: 9rem 12rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_details {
    gap: 9rem;
    padding: 10rem 4.5rem 3.3rem;
  }
}

@media screen and (min-width: 769px) {
  .interview_detail {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 9rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail {
    display: flex;
    flex-direction: column;
  }
}

.interview_detail_thumb {
  position: relative;
  border-radius: 50%;
  margin: 0 0 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .interview_detail_thumb {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_thumb {
    width: 13.6rem;
  }
}
.interview_detail_thumb::before {
  content: "";
  position: absolute;
  border: 1px solid #2b2b2b;
  border-radius: 50%;
  inset: 0;
}

.interview_detail_q {
  display: flex;
}
@media screen and (max-width: 768px) {
  .interview_detail_q {
    order: -5;
    margin-bottom: 4rem;
  }
}
.interview_detail_q p {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border: 1px solid #2b2b2b;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .interview_detail_q p {
    border-radius: 0 3.75rem 3.75rem 3.75rem;
    padding: 2.2rem 4rem 2.2rem 7.9rem;
    line-height: 1.319;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_q p {
    border-radius: 0 9rem 9rem 9rem;
    width: 100%;
    padding: 4.5rem 4rem 4.5rem 9.8rem;
    line-height: 1.334;
    font-size: 3.3rem;
  }
}
.interview_detail_q p::before {
  content: "Q";
  position: absolute;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .interview_detail_q p::before {
    left: 4rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_q p::before {
    left: 4rem;
    top: 5rem;
    font-size: 3.3rem;
  }
}

.interview_detail_a {
  position: relative;
  background: #fff6d3;
  border: 1px solid #2b2b2b;
}
@media screen and (min-width: 769px) {
  .interview_detail_a {
    grid-column: 1/3;
    border-radius: 4rem 0 4rem 4rem;
    padding: 3rem 7rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_a {
    border-radius: 6rem 0 6rem 6rem;
    margin-top: 2rem;
    padding: 5rem 6rem 5rem;
  }
}
.interview_detail_a::before {
  content: "A";
  position: absolute;
  line-height: 1;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .interview_detail_a::before {
    left: 7rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_a::before {
    left: 4rem;
    top: 4.5rem;
    font-size: 3.3rem;
  }
}

.interview_detail_text {
  font-weight: 700;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .interview_detail_text {
    padding-left: 3rem;
    line-height: 1.667;
    font-size: 1.8rem;
  }
  .interview_detail_text > p {
    font: inherit;
  }
  .interview_detail_text > p:first-of-type {
    margin-top: -0.333em;
  }
  .interview_detail_text > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_text {
    padding-left: 3.8rem;
    line-height: 1.667;
    font-size: 2.7rem;
  }
  .interview_detail_text > p {
    font: inherit;
  }
  .interview_detail_text > p:first-of-type {
    margin-top: -0.333em;
  }
  .interview_detail_text > p:last-of-type {
    margin-bottom: -0.333em;
  }
}

.interview_detail_image {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .interview_detail_image {
    width: 47rem;
    margin-top: 5rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_image {
    width: 44.5rem;
    margin-top: 4rem;
  }
}
.interview_detail_image figure {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .interview_detail_image figure {
    border-radius: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .interview_detail_image figure {
    border-radius: 2.8rem;
  }
}