@charset "UTF-8";
/* ==========================================================================//
//
// 社員インタビュー 扉
//
// ========================================================================== */
.sec_interview {
  padding: 50px 0 80px;
}
@media all and (min-width: 751px) {
  .sec_interview {
    padding: 72px 0 94px;
  }
}
@media all and (max-width: 750px) {
  .sec_interview {
    position: relative;
    z-index: 1;
  }
  .sec_interview::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-image: repeating-linear-gradient(-45deg, #C1C1C1, #C1C1C1 1px, transparent 0, transparent 7px);
    border-bottom: 1px solid #222222;
    z-index: -1;
  }
  .sec_interview::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 17%;
    background-image: repeating-linear-gradient(-45deg, #C1C1C1, #C1C1C1 1px, transparent 0, transparent 7px);
    border-top: 1px solid #222222;
    z-index: -1;
  }
}
.sec_interview .sec_ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  .sec_interview .sec_ttl {
    margin-bottom: 45px;
  }
}
.sec_interview .sec_ttl span {
  position: relative;
}
.sec_interview .sec_ttl span::before {
  position: absolute;
  content: "";
  background-image: url(../../images/top/interview_star_01_pc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 49/45;
  width: 38px;
  top: 50%;
  right: 116%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .sec_interview .sec_ttl span::before {
    width: 49px;
  }
}
.sec_interview .sec_ttl span::after {
  position: absolute;
  content: "";
  background-image: url(../../images/top/interview_star_02_pc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 64/44;
  width: 45px;
  top: 40%;
  left: 116%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .sec_interview .sec_ttl span::after {
    width: 64px;
  }
}
.sec_interview .sec_ttl img {
  width: min(208px, 50%);
}
.sec_interview .member_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media all and (max-width: 750px) {
  .sec_interview .member_list {
    width: min(264px, 100%);
    margin-inline: auto;
  }
}
@media all and (min-width: 751px) {
  .sec_interview .member_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5%;
  }
}
@media all and (min-width: 751px) {
  .sec_interview .member_item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.sec_interview .member_item a {
  position: relative;
  display: block;
}
@media (hover: hover) {
  .sec_interview .member_item a .image {
    overflow: hidden;
  }
  .sec_interview .member_item a img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sec_interview .member_item a:hover img {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
}
.sec_interview .member_item .image {
  overflow: hidden;
  border: 1.5px solid #222222;
  border-radius: 25px;
}
.sec_interview .member_item .texts {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #a3ced6;
  border: 1.5px solid #222222;
  border-radius: 15px;
  padding: 10px 16px 10px 18px;
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_interview .member_item .texts {
    padding: 8px 14px 8px 14px;
  }
}
.sec_interview .member_item .texts .position {
  font-weight: bold;
  font-size: 15px;
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_interview .member_item .texts .position {
    font-size: 13px;
  }
}
.sec_interview .member_item .texts .name {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 29px;
  margin-left: 10px;
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_interview .member_item .texts .name {
    font-size: 22px;
  }
}
.sec_interview .member_item .texts .arrow {
  width: 26px;
  margin-left: 8px;
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_interview .member_item .texts .arrow {
    width: 20px;
  }
}
.sec_interview .member_item.js_scroll {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
@media all and (min-width: 751px) {
  .sec_interview .member_item.js_scroll:nth-child(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .sec_interview .member_item.js_scroll:nth-child(3) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
}
.sec_interview .member_item.js_scroll.scroll_active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* crosstalk
---------------------------------------------------------- */
.sec_crosstalk {
  background-color: #dddddd;
  border-top: 1px solid #222222;
  padding: 50px 0;
}
@media all and (min-width: 751px) {
  .sec_crosstalk {
    padding: 70px 0;
  }
}
@media all and (max-width: 750px) {
  .sec_crosstalk .inner {
    --inner_padding: 40px;
  }
}
@media all and (min-width: 751px) {
  .sec_crosstalk .inner {
    max-width: 1200px;
  }
}
.sec_crosstalk .row_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap {
    position: relative;
    z-index: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sec_crosstalk .row_wrap .texts {
  position: relative;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts {
    width: 100%;
  }
}
.sec_crosstalk .row_wrap .texts::before {
  position: absolute;
  content: "";
  background-image: url(../../images/top/crosstalk_illust_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 128/148;
  width: 54px;
  bottom: -16px;
  left: 71%;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts::before {
    width: 60px;
    left: calc(154px + 6%);
  }
}
.sec_crosstalk .row_wrap .texts .sec_ttl {
  margin-bottom: 18px;
}
.sec_crosstalk .row_wrap .texts .sec_ttl .en {
  width: min(202px, 80%);
  margin-bottom: 18px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .sec_ttl .en {
    width: min(267px, 34%);
    margin-bottom: 23px;
  }
}
.sec_crosstalk .row_wrap .texts .sec_ttl .jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.17em;
  background-color: #222222;
  border-radius: 3px;
  padding: 2px 10px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .sec_ttl .jp {
    font-size: 15px;
    padding: 2px 12px;
  }
}
.sec_crosstalk .row_wrap .texts .copy_wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust {
  position: absolute;
  width: 108px;
  top: 10px;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: -1;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .copy_wrap .illust {
    right: 65%;
    width: min(114px, 16%);
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_crosstalk .row_wrap .texts .copy_wrap .illust {
    right: 62%;
    width: 12%;
  }
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust.js_scroll {
  overflow: hidden;
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust.js_scroll img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s 0.5s;
  transition: -webkit-transform 0.4s 0.5s;
  transition: transform 0.4s 0.5s;
  transition: transform 0.4s 0.5s, -webkit-transform 0.4s 0.5s;
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust.js_scroll.scroll_active img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sec_crosstalk .row_wrap .texts .copy {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .copy {
    font-size: 26px;
  }
}
.sec_crosstalk .row_wrap .texts .copy span {
  display: inline;
  background-color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 5px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .copy span {
    padding: 2px 10px;
  }
}
.sec_crosstalk .row_wrap .more_btn {
  --bg_color: #fff;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .image {
    position: absolute;
    top: 0;
    right: 0;
    width: 64%;
    z-index: -1;
  }
}
.sec_crosstalk .row_wrap .image img {
  border-radius: 15px;
  border: 1px solid #222222;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .image img {
    border-radius: 30px;
  }
}