@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
#talk {
  background: url(/career/assets/image/talk/visualbg.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
#talk #visual {
  width: 100%;
  margin: 0 auto;
  padding: 130px 5vw 0;
  max-width: 1300px;
}
@media screen and (max-width: 767px) {
  #talk #visual {
    padding: 60px 5vw 0;
  }
}
#talk #visual .txt {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #talk #visual .txt {
    margin-bottom: 30px;
  }
}
#talk #visual .txt .sub {
  color: #E60000;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #talk #visual .txt .sub {
    font-size: 1.6rem;
  }
}
#talk #visual .txt h1 span {
  display: inline-block;
  background-color: #E60000;
  color: #fff;
  line-height: 1;
  padding: 3px;
}
#talk .contents #first {
  margin-bottom: 60px;
}
#talk .contents #first .lead {
  max-width: 768px;
  margin: 0 auto 90px;
}
@media screen and (max-width: 767px) {
  #talk .contents #first .lead {
    margin-bottom: 40px;
  }
}
#talk .contents #first .profile {
  display: flex;
  gap: 5%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #talk .contents #first .profile {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
#talk .contents #first .profile .box {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #talk .contents #first .profile .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#talk .contents #first .profile .box h2 {
  color: #E60000;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#talk .contents #first .profile .box .position {
  color: #E60000;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
#talk .contents #first .note {
  text-align: center;
  font-size: 1.3rem;
}
#talk .contents .chapter {
  position: relative;
  background-color: #fff;
  padding: 50px 8% 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #talk .contents .chapter {
    padding: 40px 5%;
  }
}
#talk .contents .chapter .oc {
  position: relative;
  height: 50px;
  width: 100%;
  cursor: pointer;
}
#talk .contents .chapter .oc::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 1px solid #E60000;
  border-right: 1px solid #E60000;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 0%) rotate(135deg);
}
#talk .contents .chapter.open .oc::after {
  transform: translate(-50%, -10%) rotate(-45deg);
}
#talk .contents .chapter:nth-child(2n+1) {
  background-color: #F4F3F2;
}
#talk .contents .chapter .chapter-title .number {
  text-align: right;
  border-bottom: 1px solid #E60000;
  font-size: 2rem;
  color: #E60000;
  padding-bottom: 0.5rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #talk .contents .chapter .chapter-title .number {
    font-size: 1.6rem;
  }
}
#talk .contents .chapter .chapter-title .sub {
  color: #E60000;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #talk .contents .chapter .chapter-title .sub {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
#talk .contents .chapter .chapter-title h2 {
  margin-bottom: 40px;
}
#talk .contents .chapter .chapter-title h2 span {
  display: inline-block;
  background-color: #E60000;
  font-weight: 600;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1;
  padding: 3px 5px 6px;
}
@media screen and (max-width: 767px) {
  #talk .contents .chapter .chapter-title h2 span {
    font-size: 2rem;
    line-height: 1.3;
  }
}
#talk .contents .chapter .talk-block {
  display: none;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #talk .contents .chapter .talk-block {
    margin-top: 30px;
  }
}
#talk .contents .chapter .talk-block .row {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #talk .contents .chapter .talk-block .row {
    margin-bottom: 20px;
  }
}
#talk .contents .chapter .talk-block .row .name {
  color: #E60000;
  font-size: 1.8rem;
  font-weight: 600;
  width: 80px;
}
@media screen and (max-width: 767px) {
  #talk .contents .chapter .talk-block .row .name {
    font-size: 1.3rem;
    width: 50px;
  }
}
#talk .contents .chapter .talk-block .row p {
  flex: 1;
}
#talk .contents .chapter .talk-block .note {
  font-size: 1.3rem;
  margin-bottom: 50px;
  padding-left: 80px;
}