#kv.type_1 {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  #kv.type_1 .ttl_set {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 769px) {
  #kv.type_1 .ttl_set > p {
    line-height: 1em;
    font-size: 10rem;
  }
}
@media screen and (min-width: 769px) {
  #kv.type_1 h2 span {
    line-height: 1em;
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 769px) {
  #kv.type_1 .inner {
    min-height: 84rem;
  }
}
@media screen and (min-width: 769px) {
  #kv.type_1 figure {
    top: auto;
    bottom: 8rem;
  }
}

.cover_img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.voice_index {
  padding: 8rem 0 12rem;
  background: url(../../images/voice/bg.jpg) no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  .voice_index {
    padding: 6rem 0;
    background-image: url(../../images/voice/bg_sp.png);
  }
}

.voice_index_inner {
  width: min(100rem, 100% - 8rem);
  margin: 0 auto;
}

.voice_index_sortbtn {
  display: flex;
  justify-content: space-between;
}

.voice_index_sortbtn_left {
  width: 8.2rem;
}

.voice_index_sortbtn_right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  width: calc(100% - 9rem);
}

.voice_index_sortbtn_anchor {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(33.3333333333% - 0.8rem * 2 / 3);
  min-height: 6rem;
  color: #0000ff;
  line-height: 1em;
  font-size: 1.6rem;
  font-weight: 600;
  background: #fff;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  transition: color 500ms cubic-bezier(0.74, 0.255, 0.19, 0.955);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .voice_index_sortbtn_anchor {
    display: none;
  }
}
.voice_index_sortbtn_anchor::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: calc(100% + 40px);
  height: 100%;
  background-color: #0000ff;
  transform: translateX(-102%);
  transition: transform 300ms cubic-bezier(0.74, 0.255, 0.19, 0.955);
  clip-path: polygon(0 0, calc(100% - 40px) 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
.voice_index_sortbtn_anchor:hover {
  color: #fff;
}
.voice_index_sortbtn_anchor:hover::before {
  transform: translateX(0%);
}
.voice_index_sortbtn_anchor.is-current {
  color: #fff;
}
.voice_index_sortbtn_anchor.is-current::before {
  transform: translateX(0%);
}
.voice_index_sortbtn_anchor .in-text {
  position: relative;
  display: block;
  z-index: 2;
}
.voice_index_sortbtn_anchor.is-all {
  width: 100%;
  min-height: 100%;
}

.voice_index_sortselect {
  position: relative;
  background: #0000ff;
}
.voice_index_sortselect::before {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 2rem;
  display: block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: #fff solid 0.3rem;
  border-bottom: #fff solid 0.3rem;
  transform: rotate(45deg);
  margin-top: -0.7rem;
}
@media screen and (min-width: 769px) {
  .voice_index_sortselect {
    display: none;
  }
}

.voice_index_sortselect_el {
  position: relative;
  width: 100%;
  color: #fff;
  line-height: 1.334em;
  font-size: 1.2rem;
  padding: 1rem;
  font-weight: 600;
  background: none;
  text-align: center;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  cursor: pointer;
  z-index: 2;
}

.voice_stafflist {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .voice_stafflist {
    margin-top: 2rem;
  }
}

.voice_stafflist_item {
  width: calc(25% - 2rem * 3 / 4);
}
@media screen and (max-width: 768px) {
  .voice_stafflist_item {
    width: calc(50% - 2rem / 2);
  }
}
.voice_stafflist_item.is-type-hide {
  display: none;
}
@media screen and (max-width: 768px) {
  .voice_stafflist_item.is-type-visible {
    display: none;
  }
  .voice_stafflist_item.is-type-visible.is-btn-visible {
    display: block;
  }
}

.voice_stafflist_anchor {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 2rem 2.7rem;
  line-height: 1.429em;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .voice_stafflist_anchor {
    padding: 1rem 1rem 1.7rem;
    line-height: 1.4em;
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .voice_stafflist_anchor:hover .voice_stafflist_img::before {
    transform: translateX(0%);
  }
  .voice_stafflist_anchor:hover .voice_stafflist_img::after {
    transform: translateX(0%);
  }
}

.voice_stafflist_img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  aspect-ratio: 390/314;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .voice_stafflist_img {
    margin-bottom: 1.2rem;
  }
}
.voice_stafflist_img::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: calc(100% + 40px);
  height: 100%;
  background-color: #0000ff;
  transform: translateX(-102%);
  transition: transform 400ms 0.1s cubic-bezier(0.74, 0.255, 0.19, 0.955);
  clip-path: polygon(0 0, calc(100% - 40px) 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
  z-index: 2;
}
.voice_stafflist_img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(../../images/icon_arrow_w.svg) center center no-repeat;
  transform: translateX(-102%);
  transition: transform 400ms 0.2s cubic-bezier(0.74, 0.255, 0.19, 0.955);
  background-size: 1.6rem auto;
  z-index: 3;
}
.voice_stafflist_img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.voice_stafflist_name {
  margin: 0.7rem 0;
  line-height: 1.112em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .voice_stafflist_name {
    margin: 0.5rem 0;
    line-height: 1.167em;
    font-size: 1.2rem;
  }
}

.voice_staffclose,
.voice_staffmore {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 14rem;
  margin: 2rem auto 0;
  padding: 0 0 1.4rem;
  color: #0000ff;
  line-height: 1.6em;
  font-size: 1rem;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  text-align: left;
  border-bottom: #0000ff solid 1px;
  cursor: pointer;
}
.voice_staffclose::before, .voice_staffclose::after,
.voice_staffmore::before,
.voice_staffmore::after {
  position: absolute;
  top: 0.6rem;
  right: 0;
  display: block;
  content: "";
  width: 1.6rem;
  height: 0.1rem;
  background-color: #0000ff;
}
.voice_staffclose::after,
.voice_staffmore::after {
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .voice_staffclose.is-visible,
  .voice_staffmore.is-visible {
    display: block;
  }
  .voice_staffclose.is-hide,
  .voice_staffmore.is-hide {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .voice_staffclose,
  .voice_staffmore {
    display: none;
  }
}

.voice_staffclose::after {
  opacity: 0;
}

.crosstalk_head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(132rem, 100% - 8rem);
  margin: 12rem auto 0;
}
@media screen and (max-width: 768px) {
  .crosstalk_head {
    display: block;
    width: calc(100% - 4rem);
    margin-top: 6rem;
  }
}

.crosstalk_head_img {
  position: relative;
  width: 66rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .crosstalk_head_img {
    position: absolute;
    top: 0;
    right: 0;
    width: 23.5rem;
    height: 22rem;
  }
  .crosstalk_head_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.crosstalk_head_letters {
  position: relative;
  width: 58rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .crosstalk_head_letters {
    width: auto;
    margin: 0 2rem;
  }
}

.crosstalk_head_letters_inner {
  max-width: 41.5rem;
  margin-left: auto;
  line-height: 1.75em;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .crosstalk_head_letters_inner {
    line-height: 1.75em;
    font-size: 1.2rem;
  }
}

.crosstalk_head_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
@media screen and (max-width: 768px) {
  .crosstalk_head_title {
    height: 22rem;
    justify-content: center;
  }
}

.crosstalk_head_title_en {
  line-height: 1.053em;
  font-size: 3.8rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .crosstalk_head_title_en {
    line-height: 1.084em;
    font-size: 2.4rem;
    background-color: #fff;
  }
}

.crosstalk_head_title_jp {
  line-height: 1.4em;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .crosstalk_head_title_jp {
    line-height: 1.429em;
    font-size: 1.4rem;
    background-color: #fff;
  }
}

.crosstalk_head_texts {
  margin-top: 2.7rem;
}

.crosstalk_list {
  display: flex;
  flex-wrap: wrap;
  gap: 7rem 2rem;
  max-width: 100rem;
  margin: 12rem auto 0;
}
@media screen and (max-width: 768px) {
  .crosstalk_list {
    gap: 3.5rem;
    margin: 5rem 4rem;
  }
}

.crosstalk_list_item {
  width: calc(50% - 2rem / 2);
}
@media screen and (max-width: 768px) {
  .crosstalk_list_item {
    width: 100%;
  }
}

.crosstalk_list_anchor {
  display: block;
  line-height: 1.75em;
  font-size: 1.6rem;
  color: #0000ff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .crosstalk_list_anchor {
    line-height: 1.834em;
    font-size: 1.2rem;
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .crosstalk_list_anchor:hover .crosstalk_list_img::before {
    transform: translateX(0%);
  }
  .crosstalk_list_anchor:hover .crosstalk_list_img::after {
    transform: translateX(0%);
  }
}

.crosstalk_list_img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-bottom: 2.5rem;
  aspect-ratio: 490/290;
}
@media screen and (max-width: 768px) {
  .crosstalk_list_img {
    margin-bottom: 1.5rem;
  }
}
.crosstalk_list_img::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: calc(100% + 40px);
  height: 100%;
  background-color: #0000ff;
  transform: translateX(-102%);
  transition: transform 400ms 0.1s cubic-bezier(0.74, 0.255, 0.19, 0.955);
  clip-path: polygon(0 0, calc(100% - 40px) 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
  z-index: 2;
}
.crosstalk_list_img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(../../images/icon_arrow_w.svg) center center no-repeat;
  transform: translateX(-102%);
  transition: transform 400ms 0.2s cubic-bezier(0.74, 0.255, 0.19, 0.955);
  background-size: 1.6rem auto;
  z-index: 3;
}
.crosstalk_list_img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.crosstalk_list_title {
  line-height: 1.75em;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .crosstalk_list_title {
    line-height: 1.572em;
    font-size: 1.4rem;
  }
}

.crosstalk_list_category {
  margin-top: 0.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .crosstalk_list_category {
    margin-top: 1rem;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */