@charset "UTF-8";
main {
  overflow-x: hidden;
}

.crosstalk_kv {
  position: relative;
  width: 100%;
  height: 51.09375vw;
}
.crosstalk_kv--fresh .copy .outer span {
  background-color: #00BFFF;
}
.crosstalk_kv--career .copy .outer span {
  background-color: #0486D0;
}
.crosstalk_kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.crosstalk_kv .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.crosstalk_kv .wrapper {
  height: 100%;
}
.crosstalk_kv .content {
  position: relative;
  height: 100%;
}
.crosstalk_kv .copy {
  position: absolute;
  bottom: 7.4447vw;
  left: 0;
  z-index: 2;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.crosstalk_kv .copy .outer {
  overflow: hidden;
  display: block;
  padding: 0;
}
.crosstalk_kv .copy .outer span {
  position: relative;
  font-size: 3.36rem;
  margin-top: 8px;
  padding: 2px 12px;
  display: inline-block;
  color: #fff;
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.crosstalk_kv .copy .outer span::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
  background-color: #0486D0;
}
.crosstalk_kv .copy .outer span i {
  font-style: normal;
  background-color: #0486D0;
  padding: 4px 16px;
}
.crosstalk_kv .copy .outer span, .crosstalk_kv .copy .outer span::after {
  animation-delay: var(--animation-delay, 1s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 600ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.crosstalk_video {
  padding: 130px 0 143.77px;
  position: relative;
  width: 100%;
}
.crosstalk_video::before {
  pointer-events: none;
  z-index: 1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23.95vw;
  height: 100%;
  background-image: url(../img/interview/back-ashirai-edge-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.crosstalk_video .heading-gr {
  position: relative;
  z-index: 2;
  text-align: center;
  width: calc(100% + 81px);
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-40.5px);
}
.crosstalk_video .heading-gr .heading {
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  padding: 17px 0;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  -webkit-clip-path: polygon(4% 0, 100% 0%, 96% 100%, 0% 100%);
          clip-path: polygon(4% 0, 100% 0%, 96% 100%, 0% 100%);
  background-image: url(../img/crosstalk/video/heading-back.svg);
  background-size: cover;
  background-position: center;
}
.crosstalk_video .heading-gr .heading .item {
  width: 50%;
}
.crosstalk_video .content {
  margin-top: 122px;
}
.crosstalk_video .content .video {
  aspect-ratio: 1/0.568;
  opacity: 0;
  transform: translateY(50px);
}
.crosstalk_video .content .video.is-animated {
  opacity: 1;
  transition-duration: 1s;
  transform: translateY(0px);
}
.crosstalk_video .content .video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.crosstalk_qa--fresh .block::before {
  background-image: linear-gradient(to right, #00BFFF, #0486D0);
}
.crosstalk_qa--fresh .block .container .heading {
  color: #00BFFF;
}
.crosstalk_qa--fresh .block .container .heading::before {
  background-color: #00BFFF;
}
.crosstalk_qa--career .block::before {
  background-image: linear-gradient(to right, #00BFFF, #0486D0);
}
.crosstalk_qa--career .block .container .heading {
  color: #0486D0;
}
.crosstalk_qa--career .block .container .heading::before {
  background-color: #056AB8;
}
.crosstalk_qa .block {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 80px;
}
.crosstalk_qa .block.ashirai::after {
  pointer-events: none;
  z-index: 1;
  content: "";
  position: absolute;
  right: 0;
  top: -80px;
  width: 18.95vw;
  height: 100%;
  background-position: top right;
  background-image: url(../img/interview/back-ashirai-edge-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  border: alic;
}
.crosstalk_qa .block.reverse .container .lr {
  flex-direction: row-reverse;
}
.crosstalk_qa .block.reverse::before {
  left: initial;
  right: 0;
}
.crosstalk_qa .block.align-center .container .lr {
  align-items: center;
}
.crosstalk_qa .block::before {
  z-index: 0;
  content: "";
  position: absolute;
  bottom: 0px;
  transform: translateY(-10%);
  left: 0;
  width: calc(46.3% - 81px);
  display: block;
  height: var(--after-height); /* JSで上書き */
}
.crosstalk_qa .block .container {
  position: relative;
  z-index: 2;
}
.crosstalk_qa .block .container .lr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.crosstalk_qa .block .container .lr .left {
  width: 46.25%;
}
.crosstalk_qa .block .container .lr .right {
  margin-top: 49px;
  width: 46.25%;
}
.crosstalk_qa .block .container .image {
  opacity: 0;
  width: 100%;
}
.crosstalk_qa .block .container .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.crosstalk_qa .block .container .heading {
  margin-bottom: 40px;
  padding-left: 40px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.8rem;
  letter-spacing: 0.07em;
  opacity: 0;
  transform: translateY(50px);
}
.crosstalk_qa .block .container .heading::before {
  content: "";
  -webkit-clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
          clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
  width: 34.13px;
  height: 22.2px;
  position: absolute;
  top: 10px;
  left: 0;
}
.crosstalk_qa .block .container .int {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(50px);
}
.crosstalk_qa .block .container .int .script {
  display: flex;
  align-items: flex-start;
}
.crosstalk_qa .block .container .int .script .who {
  display: inline-block;
  width: 64px;
  padding: 4px 4px;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(6.8px);
  text-align: center;
  color: #fff;
}
.crosstalk_qa .block .container .int .script .who--blue {
  background-color: #056AB8;
}
.crosstalk_qa .block .container .int .script .who--pink {
  background-color: #E44E98;
}
.crosstalk_qa .block .container .int .script .desc {
  padding-left: 7px;
  width: calc(100% - 64px);
  line-height: 2.25;
}
.crosstalk_qa .block:nth-of-type(1) .container .image {
  transform: translateX(-50px);
}
.crosstalk_qa .block:nth-of-type(3) .container .image {
  transform: translateX(50px);
}
.crosstalk_qa .block.is-animated .container .image {
  opacity: 1;
  transition-duration: 1s;
  transform: translateX(0px);
  transition-delay: 0.5s;
}
.crosstalk_qa .block.is-animated .container .heading {
  opacity: 1;
  transition-duration: 1s;
  transform: translateY(0px);
}
.crosstalk_qa .block.is-animated .container .int {
  opacity: 1;
  transition-duration: 1s;
  transition-delay: 0.5s;
  transform: translateY(0px);
}

.crosstalk_background {
  margin-top: 81px;
  height: 50.9895833vw;
  position: relative;
  width: 100%;
  min-height: 979px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crosstalk_background--career .content .heading {
  color: #0486D0;
}
.crosstalk_background--career .content .heading::before {
  background-color: #056AB8;
}
.crosstalk_background .wrapper {
  height: 100%;
}
.crosstalk_background .container {
  position: relative;
  height: 100%;
  opacity: 0;
}
.crosstalk_background .container.left .crowd {
  left: 0;
}
.crosstalk_background .container.left .content {
  margin-left: 0;
  margin-right: auto;
}
.crosstalk_background .container.right .crowd {
  right: 0;
}
.crosstalk_background .container.right .content {
  margin-left: auto;
  margin-right: 0;
}
.crosstalk_background .container .crowd {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 63.4375%;
  height: 90%;
  transform: translateX(-50%) translateY(-50%);
}
.crosstalk_background .container .crowd img {
  width: 100%;
  height: 100%;
}
.crosstalk_background .container .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.crosstalk_background .container .content .heading {
  margin-bottom: 40px;
  padding-left: 40px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.8rem;
  letter-spacing: 0.07em;
}
.crosstalk_background .container .content .heading::before {
  content: "";
  -webkit-clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
          clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
  width: 34.13px;
  height: 22.2px;
  position: absolute;
  top: 10px;
  left: 0;
}
.crosstalk_background .container .content .int {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.crosstalk_background .container .content .int .script {
  display: flex;
  align-items: flex-start;
}
.crosstalk_background .container .content .int .script .who {
  display: inline-block;
  width: 64px;
  padding: 4px 4px;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(6.8px);
  text-align: center;
  color: #fff;
}
.crosstalk_background .container .content .int .script .who--blue {
  background-color: #056AB8;
}
.crosstalk_background .container .content .int .script .who--pink {
  background-color: #E44E98;
}
.crosstalk_background .container .content .int .script .desc {
  padding-left: 7px;
  width: calc(100% - 64px);
  line-height: 2.25;
}
.crosstalk_background .container.is-animated {
  opacity: 1;
  transition-duration: 1s;
}

.crosstalk_other-interview {
  padding: 65px 0 95px;
}
.crosstalk_other-interview--fresh {
  background-color: #00BFFF;
}
.crosstalk_other-interview--fresh .heading h3 {
  background-color: #00BFFF;
}
.crosstalk_other-interview--fresh .content {
  padding-left: 16px;
  padding-right: 16px;
}
.crosstalk_other-interview--fresh .content .slide .items .item a .title span {
  color: #00BFFF;
}
.crosstalk_other-interview--career {
  background-color: #0486D0;
}
.crosstalk_other-interview--career .heading h3 {
  background-color: #0486D0;
}
.crosstalk_other-interview--career .content .slide .items .item a .title span {
  color: #0486D0;
}
.crosstalk_other-interview .heading {
  margin-bottom: 76px;
  position: relative;
  text-align: left;
}
.crosstalk_other-interview .heading::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  z-index: 0;
}
.crosstalk_other-interview .heading h3 {
  display: inline-block;
  padding-right: 16px;
  position: relative;
  z-index: 2;
  font-size: 6rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
}
.crosstalk_other-interview .content {
  position: relative;
}
.crosstalk_other-interview .content .oi-nav {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  z-index: inherit;
  height: 100%;
}
.crosstalk_other-interview .content .oi-nav .oi-nav-inner {
  position: relative;
}
.crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-prev {
  position: absolute;
  left: -40px;
  top: 0%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-prev::after {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 55%;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-next {
  position: absolute;
  right: -40px;
  top: 0;
  width: 55px;
  height: 55px;
  transform: translateX(50%);
  border-radius: 50%;
  border: 2px solid #fff;
}
.crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-next::after {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 45%;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(45deg);
}
.crosstalk_other-interview .content .slide .items--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
}
.crosstalk_other-interview .content .slide .items--flex .item {
  width: 55.3%;
  aspect-ratio: 1/0.5;
}
.crosstalk_other-interview .content .slide .items--swiper .item {
  width: 31.3%;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.crosstalk_other-interview .content .slide .items--swiper .item .num {
  transform: translateY(-10%) translateX(-14%) !important;
}
.crosstalk_other-interview .content .slide .items .item {
  position: relative;
}
.crosstalk_other-interview .content .slide .items .item .num {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%) translateX(-30%);
  z-index: 2;
}
.crosstalk_other-interview .content .slide .items .item .num span {
  padding: 4px 13px;
  font-size: 10rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-style: italic;
  text-shadow: 3px 3px 2px rgba(0, 70, 93, 0.262745098);
}
.crosstalk_other-interview .content .slide .items .item a {
  position: relative;
  z-index: 1;
  aspect-ratio: 1/0.778723;
  border-radius: 11px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  overflow: hidden;
}
.crosstalk_other-interview .content .slide .items .item a .thumb {
  border-radius: 11px;
  width: 100%;
  height: 100%;
}
.crosstalk_other-interview .content .slide .items .item a .thumb img {
  border-radius: 11px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.crosstalk_other-interview .content .slide .items .item a .title {
  position: absolute;
  bottom: 31px;
  left: 0;
  width: 100%;
  font-weight: 600;
  line-height: 2;
}
.crosstalk_other-interview .content .slide .items .item a .title span {
  background-color: #fff;
  padding: 4px 13px;
  font-size: 2rem;
}

@media screen and (max-width: 1630px) {
  .crosstalk_video .heading-gr {
    width: 100%;
    transform: initial;
  }
  .crosstalk_video .heading-gr .heading {
    font-size: 2.4rem;
  }
  .crosstalk_video::before {
    width: 11.975vw;
  }
  .crosstalk_qa .block.ashirai::after {
    top: -80px;
    width: 11.975vw;
  }
  .crosstalk_qa .block::before {
    position: var(--before-position, absolute); /* デフォルト absolute */
    bottom: initial;
    top: 24px;
    width: calc(46.3% - 40px);
  }
  .crosstalk_other-interview .content .oi-nav {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
  }
  .crosstalk_other-interview .content .oi-nav .wrapper {
    height: 100%;
  }
  .crosstalk_other-interview .content .oi-nav .oi-nav-inner {
    position: relative;
  }
  .crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-prev {
    transform: initial;
    top: -4%;
    left: initial;
    right: 103px;
  }
  .crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-next {
    top: -4%;
    transform: initial;
    right: 32px;
  }
}
@media screen and (max-width: 768px) {
  .crosstalk_kv {
    margin-top: 64px;
    height: 75vw;
  }
  .crosstalk_kv .wrapper {
    padding-left: 0;
  }
  .crosstalk_kv .copy {
    bottom: 0;
    left: 0;
    margin-top: 4px;
    transform: translateY(50%);
    gap: 4px;
  }
  .crosstalk_kv .copy .outer span {
    font-size: 2rem;
    margin-top: 0px;
    padding: 2px 0;
  }
  .crosstalk_kv .copy .outer span i {
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
  }
  .crosstalk_video {
    padding: 80px 0 71.885px;
  }
  .crosstalk_video::before {
    display: none;
  }
  .crosstalk_video .heading-gr {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    transform: initial;
  }
  .crosstalk_video .heading-gr .heading {
    display: block;
    font-size: 1.5rem;
    padding: 12.5px 0;
    font-weight: 500;
    letter-spacing: 0.075em;
    line-height: 1.3;
    -webkit-clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    background-image: initial;
  }
  .crosstalk_video .heading-gr .heading .item {
    width: 100%;
    padding: 8px 0;
  }
  .crosstalk_video .heading-gr .heading .item:nth-of-type(1) {
    background-color: #E44E98;
  }
  .crosstalk_video .heading-gr .heading .item:nth-of-type(2) {
    margin-top: 8px;
    background-color: #056AB8;
  }
  .crosstalk_video .content {
    margin-top: 32px;
  }
  .crosstalk_qa .block {
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
  .crosstalk_qa .block.ashirai {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 40px;
  }
  .crosstalk_qa .block.ashirai::after {
    top: -65px;
    width: 25.95vw;
  }
  .crosstalk_qa .block.reverse .container .lr {
    flex-direction: column;
  }
  .crosstalk_qa .block.reverse::before {
    left: initial;
    right: 0;
  }
  .crosstalk_qa .block:nth-of-type(1) .container .lr .left {
    margin-bottom: 0px;
    position: relative;
    z-index: 0;
    width: calc(100% - 26px);
    margin-left: auto;
    margin-right: 0;
  }
  .crosstalk_qa .block:nth-of-type(1) .container .lr .left .image {
    position: relative;
  }
  .crosstalk_qa .block:nth-of-type(1) .container .lr .left .image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -23px;
    width: calc(100% - 26px);
    height: calc(100% - 26px);
    background-image: linear-gradient(to right, #00BFFF, #0486D0);
    z-index: -1;
  }
  .crosstalk_qa .block:nth-of-type(3) .container .lr .left {
    margin-bottom: 0px;
    width: 100%;
  }
  .crosstalk_qa .block:nth-of-type(3) .container .lr .left .image {
    position: relative;
    padding-left: 26px;
    padding-right: 26px;
  }
  .crosstalk_qa .block:nth-of-type(3) .container .lr .left .image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -23px;
    width: calc(100% - 48px);
    height: calc(100% - 26px);
    background-image: linear-gradient(to right, #00BFFF, #0486D0);
    z-index: -1;
  }
  .crosstalk_qa .block::before {
    display: none;
  }
  .crosstalk_qa .block .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .crosstalk_qa .block .container .lr {
    flex-direction: column;
  }
  .crosstalk_qa .block .container .lr .left {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .crosstalk_qa .block .container .lr .right {
    margin-top: 49px;
    width: 100%;
  }
  .crosstalk_qa .block .container .heading {
    padding-top: 32px;
    margin-bottom: 16px;
    padding-left: 26px;
    font-size: 2rem;
  }
  .crosstalk_qa .block .container .heading::before {
    width: 34.13px;
    height: 22.2px;
    top: 0px;
    left: 26px;
  }
  .crosstalk_qa .block .container .int {
    padding-left: 26px;
    padding-right: 26px;
  }
  .crosstalk_qa .block .container .int .script .who {
    width: 60px;
    font-size: 1.4rem;
    transform: translateY(2.8px);
  }
  .crosstalk_qa .block .container .int .script .desc {
    padding-left: 10px;
    width: calc(100% - 60px);
    line-height: 2;
    font-size: 1.4rem;
  }
  .crosstalk_qa .block.is-animated .container .image {
    transition-delay: 0s;
  }
  .crosstalk_background {
    margin-bottom: 40px;
    margin-top: 40px;
    height: initial;
    min-height: initial;
    width: 100%;
    background-image: initial !important;
  }
  .crosstalk_background .container {
    transform: translateY(0px);
  }
  .crosstalk_background .container.left .crowd {
    left: 0;
  }
  .crosstalk_background .container.left .content {
    margin-left: 0;
    margin-right: auto;
  }
  .crosstalk_background .container.right .crowd {
    right: 0;
  }
  .crosstalk_background .container.right .content {
    margin-left: auto;
    margin-right: 0;
  }
  .crosstalk_background .container .crowd {
    top: 50%;
    width: 80%;
    transform: translateY(-50%);
    height: 100vw;
  }
  .crosstalk_background .container .content {
    margin-top: 24px;
    width: 100%;
    min-height: initial;
  }
  .crosstalk_background .container .content .heading {
    margin-bottom: 8px;
    padding-left: 32px;
    font-size: 2rem;
  }
  .crosstalk_background .container .content .heading::before {
    width: 26.2538461538px;
    height: 22.2px;
    top: 6px;
    left: 0;
  }
  .crosstalk_background .container .content .int .script .who {
    width: 60px;
    font-size: 1.4rem;
    transform: translateY(2.8px);
  }
  .crosstalk_background .container .content .int .script .desc {
    padding-left: 10px;
    width: calc(100% - 60px);
    line-height: 2;
    font-size: 1.4rem;
  }
  .crosstalk_other-interview {
    padding: 40px 0 40px;
  }
  .crosstalk_other-interview .heading {
    width: calc(100% - 0px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-align: center;
    border-bottom: solid 2px #fff;
  }
  .crosstalk_other-interview .heading::after {
    display: none;
  }
  .crosstalk_other-interview .heading h3 {
    padding-right: 0;
    display: inline-block;
    font-size: 3.6rem;
    letter-spacing: 0;
  }
  .crosstalk_other-interview .content {
    padding-left: 0;
    padding-right: 0;
  }
  .crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-prev {
    width: 32px;
    height: 32px;
    right: 56px;
  }
  .crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-prev::after {
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-next {
    width: 32px;
    height: 32px;
    right: 16px;
  }
  .crosstalk_other-interview .content .oi-nav .oi-nav-inner .swiper-button-next::after {
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    left: 45%;
  }
  .crosstalk_other-interview .content .slide .items--flex .item {
    margin-top: 24px;
    width: 100%;
  }
  .crosstalk_other-interview .content .slide .items--flex .item:first-of-type {
    margin-top: 0;
  }
  .crosstalk_other-interview .content .slide .items--swiper {
    padding-top: 24px;
  }
  .crosstalk_other-interview .content .slide .items--swiper .item {
    width: 100%;
    padding-top: 24px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .crosstalk_other-interview .content .slide .items .item .num {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%) translateX(-30%);
    z-index: 2;
  }
  .crosstalk_other-interview .content .slide .items .item .num span {
    padding: 4px 4px;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0;
  }
  .crosstalk_other-interview .content .slide .items .item a {
    border-radius: 8px;
  }
  .crosstalk_other-interview .content .slide .items .item a .thumb {
    border-radius: 8px;
  }
  .crosstalk_other-interview .content .slide .items .item a .thumb img {
    border-radius: 8px;
  }
  .crosstalk_other-interview .content .slide .items .item a .title {
    bottom: 16px;
  }
  .crosstalk_other-interview .content .slide .items .item a .title span {
    padding: 4px 4px;
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=crosstalk.css.map */