html {
  font-size: 0.0732vw;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 1366px) {
  html {
    font-size: 1px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 0.2666vw;
  }
}
html body {
  font-size: 10rem;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 767px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media (max-width: 767px) {
  .sponly {
    display: block;
  }
}

.br_sp {
  display: none;
}
@media (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

header {
  z-index: 99;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
}
header .inner {
  max-width: 1366px;
  margin: 0 auto;
  overflow: visible;
  height: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  header .inner {
    height: 50rem;
    background-color: #fff;
  }
}
header .inner > a {
  width: 400rem;
  height: 90rem;
  background-color: #fff;
  padding-block: 22rem 17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-clip-path: polygon(30rem 0, 100% 0, calc(100% - 30rem) 100%, 0 100%);
          clip-path: polygon(30rem 0, 100% 0, calc(100% - 30rem) 100%, 0 100%);
  -webkit-transform: translateX(-40rem);
          transform: translateX(-40rem);
}
@media (max-width: 767px) {
  header .inner > a {
    -webkit-clip-path: none;
            clip-path: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15rem;
    width: auto;
    height: auto;
    padding-block: 14rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding-left: 10rem;
  }
}
header .inner > a img {
  width: 300rem;
  display: block;
}
@media (max-width: 767px) {
  header .inner > a img {
    width: 230rem;
  }
}
header .inner > a > span {
  font-size: 16rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5625;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  header .inner > a > span {
    font-size: 10rem;
  }
}
header .inner > div.ham {
  display: none;
}
@media (max-width: 767px) {
  header .inner > div.ham {
    position: absolute;
    top: 16rem;
    right: 20rem;
    left: auto;
    width: 22rem;
    height: 18rem;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: none;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  header .inner > div.ham span {
    display: block;
    width: 22rem;
    height: 1rem;
    background-color: #000;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 1rem;
  }
}
header .inner > div.ham.active span:nth-of-type(1) {
  -webkit-transform: translateY(8rem) rotate(-45deg);
          transform: translateY(8rem) rotate(-45deg);
}
header .inner > div.ham.active span:nth-of-type(2) {
  opacity: 0;
}
header .inner > div.ham.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9rem) rotate(45deg);
          transform: translateY(-9rem) rotate(45deg);
}
header .inner > div.ham.active + div {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
header .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  header .inner > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 49rem;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 50rem + 2rem);
    background-color: #fff;
    overflow-y: auto;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
header .inner > div div > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  font-size: 13rem;
  letter-spacing: 0.03;
  margin-top: 9rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 20rem;
}
header .inner > div div > a::before {
  content: "";
  width: 17rem;
  height: 17rem;
  display: block;
  background: url(../../../../../images/logo.png) center/cover no-repeat;
}
header .inner > div div > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 20rem;
}
@media (max-width: 767px) {
  header .inner > div div > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    gap: 0;
  }
}
header .inner > div div > ul li {
  height: 100%;
}
@media (max-width: 767px) {
  header .inner > div div > ul li {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}
header .inner > div div > ul li a {
  font-size: 15rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.5;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10rem 11rem;
}
@media (max-width: 767px) {
  header .inner > div div > ul li a {
    padding: 20rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 16rem;
  }
}
header .inner > div > a {
  width: 160rem;
  height: 90rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12rem;
  padding: 30rem 18rem 20rem 20rem;
  background-color: #BE0007;
}
@media (max-width: 767px) {
  header .inner > div > a {
    width: calc(100% - 40rem);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-inline: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16rem 0;
    margin-block: 20rem 50rem;
  }
}
header .inner > div > a img {
  display: block;
  width: 26rem;
  height: 18rem;
  -webkit-transform: translateY(6rem);
          transform: translateY(6rem);
}
@media (max-width: 767px) {
  header .inner > div > a img {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
header .inner > div > a p {
  font-size: 14rem;
  font-weight: bold;
  line-height: 1.4286;
  color: #fff;
}
@media (max-width: 767px) {
  header .inner > div > a p {
    font-size: 16rem;
  }
}

div#mv {
  position: relative;
  background-color: #ED1D25;
}
@media (max-width: 767px) {
  div#mv {
    overflow: hidden;
  }
}
div#mv .inner {
  padding-top: 70rem;
  margin-bottom: 112rem;
  position: relative;
  height: 300rem;
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: 83rem;
}
@media (max-width: 767px) {
  div#mv .inner {
    padding-top: 0;
    margin-top: 50rem;
    margin-bottom: 0;
    height: 160rem;
    padding-inline: 20rem;
  }
}
div#mv .inner img.mv_bg {
  width: 824rem;
  height: 230rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 70rem;
  max-width: none;
}
@media (max-width: 767px) {
  div#mv .inner img.mv_bg {
    width: 573.22rem;
    height: 160rem;
    right: auto;
    left: 36rem;
    top: 0;
  }
}
div#mv .inner h1 {
  font-size: 86rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 100rem;
  z-index: 2;
}
@media (max-width: 767px) {
  div#mv .inner h1 {
    font-size: 40rem;
    left: 20rem;
  }
}
div#mv .inner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27rem;
  margin-right: 100rem;
  position: absolute;
  right: 0;
  bottom: calc(-21rem - 1em);
}
div#mv .inner ol li {
  position: relative;
}
div#mv .inner ol li:not(:last-of-type)::after {
  content: "";
  width: 5.66rem;
  height: 5.66rem;
  border-top: solid #A5A5A5 1rem;
  border-right: solid #A5A5A5 1rem;
  display: block;
  position: absolute;
  right: -15rem;
  top: calc(50% - 2rem);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
div#mv .inner ol li a {
  color: #797979;
}
div#mv .inner ol li a[href] {
  color: #ED1D25;
  text-decoration: underline;
}

#interview-archive div#mv {
  position: relative;
  background-color: #ED1D25;
}
@media (max-width: 767px) {
  #interview-archive div#mv {
    overflow: hidden;
  }
}
#interview-archive div#mv .inner {
  padding-top: 70rem;
  margin-bottom: 112rem;
  position: relative;
  height: 300rem;
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: 83rem;
}
@media (max-width: 767px) {
  #interview-archive div#mv .inner {
    padding-top: 0;
    margin-top: 50rem;
    margin-bottom: 0;
    height: 160rem;
    padding-inline: 20rem;
  }
}
#interview-archive div#mv .inner img.mv_bg {
  content: "";
  width: 824rem;
  height: 230rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 70rem;
}
@media (max-width: 767px) {
  #interview-archive div#mv .inner img.mv_bg {
    width: 573.22rem;
    height: 160rem;
    right: auto;
    left: 36rem;
    top: 0;
  }
}
#interview-archive div#mv .inner h1 {
  font-size: 86rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 100rem;
  z-index: 2;
}
@media (max-width: 767px) {
  #interview-archive div#mv .inner h1 {
    font-size: 40rem;
    left: 20rem;
  }
}
#interview-archive div#mv .inner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27rem;
  margin-right: 100rem;
  position: absolute;
  right: 0;
  bottom: calc(-21rem - 1em);
}
#interview-archive div#mv .inner ol li {
  position: relative;
}
#interview-archive div#mv .inner ol li:not(:last-of-type)::after {
  content: "";
  width: 5.66rem;
  height: 5.66rem;
  border-top: solid #A5A5A5 1rem;
  border-right: solid #A5A5A5 1rem;
  display: block;
  position: absolute;
  right: -15rem;
  top: calc(50% - 2rem);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#interview-archive div#mv .inner ol li a {
  color: #797979;
}
#interview-archive div#mv .inner ol li a[href] {
  color: #ED1D25;
  text-decoration: underline;
}
#interview-archive section#interview_content .inner .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 90rem;
  padding-inline: 60rem;
}
@media (max-width: 767px) {
  #interview-archive section#interview_content .inner .grid-container {
    grid-template-columns: 1fr;
    padding-inline: 20rem;
  }
}
#interview-archive section#interview_content .inner .grid-container > div,
#interview-archive section#interview_content .inner .grid-container > a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  margin-bottom: 90rem;
}
#interview-archive section#interview_content .inner .grid-container > div:hover span::after,
#interview-archive section#interview_content .inner .grid-container > a:hover span::after {
  -webkit-transform: translateX(10rem);
          transform: translateX(10rem);
}
#interview-archive section#interview_content .inner .grid-container > div img,
#interview-archive section#interview_content .inner .grid-container > a img {
  width: 100%;
  height: auto;
}
#interview-archive section#interview_content .inner .grid-container > div p:first-of-type,
#interview-archive section#interview_content .inner .grid-container > a p:first-of-type {
  margin-top: 25rem;
  padding-bottom: 20rem;
  border-bottom: solid 1rem #D9D9D9;
  font-size: 22rem;
  font-weight: bold;
  line-height: 1.59;
  color: #ED1D25;
}
#interview-archive section#interview_content .inner .grid-container > div p:nth-of-type(2),
#interview-archive section#interview_content .inner .grid-container > a p:nth-of-type(2) {
  margin-top: 18rem;
  font-size: 14rem;
  line-height: 1.86;
}
#interview-archive section#interview_content .inner .grid-container > div p:nth-of-type(3),
#interview-archive section#interview_content .inner .grid-container > a p:nth-of-type(3) {
  margin-top: 7rem;
  font-size: 18rem;
  font-weight: bold;
  line-height: 1.666;
}
#interview-archive section#interview_content .inner .grid-container > div a,
#interview-archive section#interview_content .inner .grid-container > div span,
#interview-archive section#interview_content .inner .grid-container > a a,
#interview-archive section#interview_content .inner .grid-container > a span {
  font-family: "Oswald", sans-serif;
  font-size: 16rem;
  font-weight: bold;
  letter-spacing: 0.13em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20rem;
  color: #ED1D25;
  justify-self: flex-end;
}
#interview-archive section#interview_content .inner .grid-container > div a::after,
#interview-archive section#interview_content .inner .grid-container > div span::after,
#interview-archive section#interview_content .inner .grid-container > a a::after,
#interview-archive section#interview_content .inner .grid-container > a span::after {
  content: "";
  display: block;
  width: 23rem;
  height: 6rem;
  background-color: #ED1D25;
  -webkit-clip-path: polygon(0 calc(100% - 1rem), calc(100% - 2rem) calc(100% - 1rem), 17rem 0, 18rem 0, 100% 100%, 0 100%);
          clip-path: polygon(0 calc(100% - 1rem), calc(100% - 2rem) calc(100% - 1rem), 17rem 0, 18rem 0, 100% 100%, 0 100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#interview-single main div#mv {
  position: relative;
  background-color: #000;
}
#interview-single main div#mv > img {
  position: absolute;
  top: 70rem;
  display: block;
  width: 100%;
  height: calc(100% - 70rem);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  #interview-single main div#mv > img {
    top: 50rem;
    height: calc(100% - 50rem);
  }
}
@media (max-width: 767px) {
  #interview-single main div#mv > img.mv_bg_img {
    display: none;
  }
}
#interview-single main div#mv > img.mv_bg_img_sp {
  display: none;
}
@media (max-width: 767px) {
  #interview-single main div#mv > img.mv_bg_img_sp {
    display: block;
  }
}
#interview-single main div#mv .inner {
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: 83rem;
  margin-bottom: 88rem;
  padding-block: 140rem 67rem;
  position: relative;
  z-index: 2;
  height: auto;
}
@media (max-width: 767px) {
  #interview-single main div#mv .inner {
    padding-inline: 20rem;
    padding-block: 236rem 25rem;
    margin-bottom: 0;
  }
}
#interview-single main div#mv .inner > div > p:first-of-type {
  font-size: 18rem;
  font-weight: bold;
  line-height: 1.944;
  color: #fff;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  #interview-single main div#mv .inner > div > p:first-of-type {
    margin-bottom: 7rem;
  }
}
#interview-single main div#mv .inner > div > p.mv_message {
  margin-top: 12rem;
  font-size: 36rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  background-color: #ED1D25;
  padding-inline: 13rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  #interview-single main div#mv .inner > div > p.mv_message {
    margin-top: 8rem;
    font-size: 24rem;
  }
}
#interview-single main div#mv .inner > div > p.mv_department {
  margin-top: 30rem;
  font-size: 14rem;
  line-height: 1.857;
  color: #fff;
}
@media (max-width: 767px) {
  #interview-single main div#mv .inner > div > p.mv_department {
    margin-top: 18rem;
  }
}
#interview-single main div#mv .inner > div > p.mv_name {
  font-size: 22rem;
  font-weight: bold;
  line-height: 1.363;
  color: #fff;
  margin-top: 10rem;
}
#interview-single main div#mv .inner > div > p.mv_name span {
  display: inline-block;
  margin-left: 18rem;
  font-size: 12rem;
  line-height: 2.5;
}
#interview-single main div#mv .inner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27rem;
  margin-right: 100rem;
  position: absolute;
  right: 0;
  bottom: calc(-21rem - 1em);
}
@media (max-width: 767px) {
  #interview-single main div#mv .inner ol {
    display: none;
  }
}
#interview-single main div#mv .inner ol li {
  position: relative;
}
#interview-single main div#mv .inner ol li:not(:last-of-type)::after {
  content: "";
  width: 5.66rem;
  height: 5.66rem;
  border-top: solid #A5A5A5 1rem;
  border-right: solid #A5A5A5 1rem;
  display: block;
  position: absolute;
  right: -15rem;
  top: calc(50% - 2rem);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#interview-single main div#mv .inner ol li a {
  color: #797979;
}
#interview-single main div#mv .inner ol li a[href] {
  color: #ED1D25;
  text-decoration: underline;
}
#interview-single main section#news_content .inner {
  padding-bottom: 160rem;
  padding-inline: 180rem;
}
@media (max-width: 767px) {
  #interview-single main section#news_content .inner {
    padding: 34rem 20rem 80rem;
  }
}
#interview-single main section#news_content h2.wp-block-heading {
  counter-increment: h2;
}
@media (max-width: 767px) {
  #interview-single main section#news_content h2.wp-block-heading {
    margin-bottom: 30rem;
  }
}
@media (max-width: 767px) {
  #interview-single main section#news_content h2.wp-block-heading:not(:first-of-type) {
    margin-top: 90rem;
  }
}
#interview-single main section#news_content h2.wp-block-heading::before {
  content: "Interview" counter(h2, decimal-leading-zero);
  font-size: 12rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.13em;
  line-height: 1.5;
  color: #fff;
  background-color: #ED1D25;
  padding-inline: 10rem;
  margin-bottom: 10rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#interview-single main section#news_content .wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60rem;
}
#interview-single main section#news_content .wp-block-columns .wp-block-column {
  -ms-flex-preferred-size: initial;
      flex-basis: initial;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
}
#interview-single main section#news_content .wp-block-columns .wp-block-column:has(p) {
  width: 600rem;
}
#interview-single main section#news_content .wp-block-columns .wp-block-column:has(figure.wp-block-image) {
  width: 462rem;
}
#interview-single main section#news_content .wp-block-columns .wp-block-column:has(figure.wp-block-image) figure.wp-block-image {
  width: 100%;
  height: auto;
  margin: 0;
}
#interview-single main section#news_content figure.wp-block-image {
  margin: 60rem 80rem 0;
  width: calc(100% - 160rem);
}
@media (max-width: 767px) {
  #interview-single main section#news_content figure.wp-block-image {
    width: 100%;
    margin: 40rem 0 0;
  }
}
#interview-single main section#news_content figure.wp-block-image img {
  width: 100% !important;
}
#interview-single main section#news_content ul li {
  font-size: 16rem;
  line-height: 1.875;
  margin-bottom: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11rem;
}
@media (max-width: 767px) {
  #interview-single main section#news_content ul li {
    margin-bottom: 16rem;
  }
}
#interview-single main section#news_content ul li::before {
  content: "";
  height: 6rem;
  width: 6rem;
  background-color: #ED1D25;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(calc(1em - 3rem));
          transform: translateY(calc(1em - 3rem));
}
#interview-single main section#news_content ul li:last-of-type {
  margin-bottom: 0;
}
#interview-single main section#other_interview {
  border-top: solid #D9D9D9 1rem;
  overflow: hidden;
}
#interview-single main section#other_interview .inner {
  padding-top: 80rem;
  padding-inline: 0;
}
@media (max-width: 767px) {
  #interview-single main section#other_interview .inner {
    padding-inline: 0;
  }
}
#interview-single main section#other_interview .inner h3 {
  font-size: 22rem;
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1.5;
  color: #fff;
  background-color: #ED1D25;
  padding-inline: 10rem;
  font-family: "Oswald", sans-serif;
  margin-bottom: 60rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box {
  display: block;
  width: 300rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  #interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box {
    width: 220rem;
  }
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box:hover > span::after {
  -webkit-transform: translateX(10rem);
          transform: translateX(10rem);
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box > img {
  display: block;
  width: 100%;
  height: auto;
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box > p:first-of-type {
  font-size: 22rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 10rem;
  padding-bottom: 6rem;
  border-bottom: solid 1rem #D9D9D9;
  color: #ED1D25;
}
@media (max-width: 767px) {
  #interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box > p:first-of-type {
    font-size: 18rem;
  }
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box > p:nth-of-type(2) {
  font-size: 14rem;
  line-height: 1.857;
  margin-top: 6rem;
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box > p:nth-of-type(3) {
  margin-top: 5rem;
  font-size: 18rem;
  font-weight: bold;
  line-height: 1.666;
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box > span {
  margin-top: 15rem;
  display: block;
  width: 100%;
  font-family: "Oswald", sans-serif;
  font-size: 16rem;
  font-weight: bold;
  letter-spacing: 0.13em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20rem;
  color: #ED1D25;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#interview-single main section#other_interview .inner .swiper .swiper-wrapper .swiper-slide .swiper-box > span::after {
  content: "";
  display: block;
  width: 23rem;
  height: 6rem;
  background-color: #ED1D25;
  -webkit-clip-path: polygon(0 calc(100% - 1rem), calc(100% - 2rem) calc(100% - 1rem), 17rem 0, 18rem 0, 100% 100%, 0 100%);
          clip-path: polygon(0 calc(100% - 1rem), calc(100% - 2rem) calc(100% - 1rem), 17rem 0, 18rem 0, 100% 100%, 0 100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#interview-single main section#other_interview .inner .swiper .swiper-buttons {
  margin-top: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60rem;
}
#interview-single main section#other_interview .inner .swiper .swiper-buttons > div {
  width: 60rem;
  height: 60rem;
  display: block;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0;
}
#interview-single main section#other_interview .inner .swiper .swiper-buttons > div::after {
  width: 60rem;
  height: 60rem;
  display: block;
  content: "";
}
#interview-single main section#other_interview .inner .swiper .swiper-buttons > div.swiper-button-prev::after {
  background: url(../../../../../images/recruit_top_swiper_left.png) center/cover no-repeat;
}
#interview-single main section#other_interview .inner .swiper .swiper-buttons > div.swiper-button-next::after {
  background: url(../../../../../images/recruit_top_swiper_right.png) center/cover no-repeat;
}

section .inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 60rem 100rem 140rem;
}
@media (max-width: 767px) {
  section .inner {
    padding-inline: 20rem;
  }
}
section .inner .__h2,
section .inner h2.wp-block-heading {
  font-size: 35rem;
  font-weight: bold;
  color: #ED1D25;
  line-height: 1.657;
  margin-bottom: 25rem;
  text-wrap: wrap;
}
@media (max-width: 767px) {
  section .inner .__h2,
  section .inner h2.wp-block-heading {
    font-size: 24rem;
  }
  section .inner .__h2:not(:first-of-type),
  section .inner h2.wp-block-heading:not(:first-of-type) {
    margin-top: 34rem;
    margin-bottom: 30rem;
  }
}
section .inner .__h2:not(:first-of-type),
section .inner h2.wp-block-heading:not(:first-of-type) {
  margin-top: 60rem;
}
section .inner p {
  font-size: 16rem;
  color: #000;
  line-height: 1.875;
}
@media (max-width: 767px) {
  section .inner p {
    font-size: 15rem;
  }
}
section .inner .__h3,
section .inner h3.wp-block-heading {
  font-size: 24rem;
  font-weight: bold;
  line-height: 1.68;
  color: #ED1D25;
  text-wrap: wrap;
  margin: 57rem 0 25rem;
}
@media (max-width: 767px) {
  section .inner .__h3,
  section .inner h3.wp-block-heading {
    font-size: 20rem;
    margin-block: 40rem 20rem;
  }
}
section .inner .__h4,
section .inner h4.wp-block-heading {
  font-size: 18rem;
  font-weight: bold;
  line-height: 2;
  color: #ED1D25;
  text-wrap: wrap;
  margin-block: 49rem 25rem;
}
@media (max-width: 767px) {
  section .inner .__h4,
  section .inner h4.wp-block-heading {
    font-size: 17rem;
    margin-block: 50rem 20rem;
  }
}
section .inner .__h5,
section .inner h5.wp-block-heading {
  font-size: 16rem;
  font-weight: bold;
  line-height: 2;
  color: #ED1D25;
  text-wrap: wrap;
  margin-block: 49rem 22rem;
}
@media (max-width: 767px) {
  section .inner .__h5,
  section .inner h5.wp-block-heading {
    font-size: 15rem;
    margin-block: 50rem 17rem;
  }
}
section .inner .table_container,
section .inner .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}
section .inner .table_container table,
section .inner .wp-block-table table {
  width: 100%;
  border-spacing: 0;
}
section .inner .table_container table tr,
section .inner .wp-block-table table tr {
  position: relative;
}
@media (max-width: 767px) {
  section .inner .table_container table tr,
  section .inner .wp-block-table table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section .inner .table_container table tr:first-of-type td,
section .inner .wp-block-table table tr:first-of-type td {
  border-top: solid 1rem #D9D9D9;
}
@media (max-width: 767px) {
  section .inner .table_container table tr:first-of-type td,
  section .inner .wp-block-table table tr:first-of-type td {
    border-top: none;
  }
}
section .inner .table_container table tr td,
section .inner .wp-block-table table tr td {
  font-size: 16rem;
  line-height: 1.875;
  padding: 15rem 15rem 14rem;
  border-bottom: solid 1rem #D9D9D9;
  border-right: none;
  border-left: none;
}
@media (max-width: 767px) {
  section .inner .table_container table tr td,
  section .inner .wp-block-table table tr td {
    width: 100%;
    border-bottom: solid 1rem #D9D9D9;
    border-right: none;
    border-left: none;
    border-top: none;
  }
}
section .inner .table_container table tr td:first-of-type,
section .inner .wp-block-table table tr td:first-of-type {
  font-weight: bold;
  line-height: 1.75;
  background-color: #F5F2F2;
  border-left: none;
  text-wrap: nowrap;
}
section .inner .table_container table tr td:last-of-type,
section .inner .wp-block-table table tr td:last-of-type {
  background-color: #fff;
  font-weight: normal;
}
section .inner .table_container table tr td:has(.__btn),
section .inner .wp-block-table table tr td:has(.__btn) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  section .inner .table_container table tr td:has(.__btn),
  section .inner .wp-block-table table tr td:has(.__btn) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
section .inner .table_container table tr td:has(.__btn) .__btn,
section .inner .wp-block-table table tr td:has(.__btn) .__btn {
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
section .inner .wp-block-button__link {
  width: 300rem !important;
  z-index: 2;
  color: #ED1D25;
  font-family: "Oswald", sans-serif;
  font-size: 16rem;
  letter-spacing: 0.13em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60rem;
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-align: center;
  text-decoration: none;
  vertical-align: baseline;
  border: solid 2rem #ED1D25;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0;
}
@media (max-width: 767px) {
  section .inner .wp-block-button__link {
    width: 310rem !important;
    font-size: 15rem;
  }
}
section .inner .wp-block-button__link:hover {
  opacity: 1;
  background-color: #ED1D25;
  color: #fff;
  border-color: #fff;
}
section .inner .wp-block-button__link:hover::before {
  background: #fff;
  width: 18rem;
  right: -1rem;
}
section .inner .wp-block-button__link::before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  height: 1rem;
  top: 50%;
  width: 17rem;
  background: #ED1D25;
  right: 0;
}
section .inner .wp-block-button__link::after {
  content: "";
  display: block;
  height: 6rem;
  width: 23rem;
  background-color: #ED1D25;
  position: absolute;
  top: calc(50% - 5rem);
  right: -23rem;
  -webkit-clip-path: polygon(0 calc(100% - 1rem), calc(100% - 1rem) calc(100% - 1rem), 17rem 0, 18rem 0, 100% calc(100% - 1rem), 100% 100%, 0 100%);
          clip-path: polygon(0 calc(100% - 1rem), calc(100% - 1rem) calc(100% - 1rem), 17rem 0, 18rem 0, 100% calc(100% - 1rem), 100% 100%, 0 100%);
}
section .inner .__btn {
  position: absolute;
  bottom: 80rem;
  left: calc(50% - 150rem);
  width: 300rem !important;
  z-index: 2;
}
@media (max-width: 767px) {
  section .inner .__btn {
    width: 310rem !important;
  }
}
section .inner .__btn.__btn_white a {
  color: #fff;
  border: solid 2rem #fff;
}
section .inner .__btn.__btn_white a::before {
  background-color: #fff;
}
section .inner .__btn.__btn_white a:hover {
  background-color: #fff;
  color: #ED1D25;
}
section .inner .__btn.__btn_white a:hover::before {
  background-color: #ED1D25;
}
section .inner .__btn.__btn_white .link_btn_item::before, section .inner .__btn.__btn_white .link_btn_item::after {
  background-color: #fff;
}
section .inner .__btn a {
  color: #ED1D25;
  font-family: "Oswald", sans-serif;
  font-size: 16rem;
  letter-spacing: 0.13em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60rem;
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  vertical-align: baseline;
  border: solid 2rem #ED1D25;
}
@media (max-width: 767px) {
  section .inner .__btn a {
    font-size: 15rem;
  }
}
section .inner .__btn a:hover {
  opacity: 1;
  border: none;
  background-color: #ED1D25;
  color: #fff;
}
section .inner .__btn a:hover::before {
  background-color: #fff;
  right: -5rem;
}
section .inner .__btn a:hover + .link_btn_item {
  right: -5rem;
}
section .inner .__btn a:hover + .link_btn_item::before {
  width: 28rem;
}
section .inner .__btn a::before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  height: 1rem;
  top: 50%;
  width: 17rem;
  background: #ED1D25;
  right: 0;
}
section .inner .__btn .link_btn_item {
  position: absolute;
  right: 0;
  display: block;
  top: 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
section .inner .__btn .link_btn_item::before, section .inner .__btn .link_btn_item::after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #ED1D25;
}
section .inner .__btn .link_btn_item::before {
  height: 1rem;
  top: 50%;
  width: 23rem;
  right: -23rem;
}
section .inner .__btn .link_btn_item::after {
  top: -8rem;
  right: -19rem;
  height: 8.5rem;
  width: 1rem;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

footer {
  border-top: solid 1rem #E6E6E6;
}
footer .inner {
  max-width: 1366px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 260rem;
  position: relative;
}
@media (max-width: 767px) {
  footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
footer .inner > a {
  width: 230rem;
  height: 133.05rem;
  margin: 63rem 63rem 47rem 63.9rem;
}
@media (max-width: 767px) {
  footer .inner > a {
    margin: 40rem auto;
    width: 190.15rem;
    height: 110rem;
  }
}
footer .inner > a img {
  display: block;
  width: 100%;
}
footer .inner > div {
  border-left: solid 1rem #E6E6E6;
  padding-top: 49rem;
  padding-left: 82rem;
}
@media (max-width: 767px) {
  footer .inner > div {
    border-left: none;
    border-top: solid 1rem #E6E6E6;
    padding-top: 40rem;
    padding-left: 0;
    padding-inline: 20rem;
  }
}
footer .inner > div ul {
  width: 486rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40rem 29rem;
}
@media (max-width: 767px) {
  footer .inner > div ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    gap: 20rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  footer .inner > div ul li {
    width: calc(50% - 10rem);
  }
}
footer .inner > div ul li a {
  font-size: 15rem;
  font-weight: bold;
  line-height: 1.7333;
}
@media (max-width: 767px) {
  footer .inner > div ul li a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .inner > div.copyright {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20rem;
  border-left: none;
}
@media (max-width: 767px) {
  footer .inner > div.copyright {
    position: static;
    margin: 25rem auto 30rem;
    right: auto;
    bottom: auto;
    border-top: none;
  }
}
footer .inner > div.copyright p {
  font-size: 10rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #7E7E7E;
}
@media (max-width: 767px) {
  footer .inner > div.copyright p {
    text-align: center;
  }
}
footer .inner > div.copyright a {
  display: block;
  width: 50rem;
  height: 50rem;
  background-color: #ED1D25;
  background-image: url(../../images/right_arrow03.png);
  background-size: 21rem 9rem;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 767px) {
  footer .inner > div.copyright a {
    position: absolute;
    top: -50rem;
    right: 0;
  }
}/*# sourceMappingURL=common_recruit.css.map */