@charset "UTF-8";
.sec-chat {
  padding-bottom: 80px;
}
.sec-chat:first-child {
  padding-top: 80px;
}
.sec-chat .chat-container {
  padding: 80px 32px;
  border-radius: 16px;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* Safari対策 */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .sec-chat .chat-container {
    padding: 80px 12px;
  }
}
.sec-chat .chat-container + .chat-container {
  margin-top: 80px;
}
.sec-chat .chat-container .chat-inner {
  max-width: 814px;
  margin: 0 auto;
}
.sec-chat .chat-container .chat-inner h2 {
  color: #fff;
  justify-content: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #ddd;
}
.sec-chat .chat-container .chat-inner .hukidashi-wrapper {
  width: 100%;
  display: inline-grid;
}
.sec-chat .chat-container .chat-inner .hukidashi-wrapper:not(:last-child) {
  margin-bottom: 64px;
}
.sec-chat .chat-container .chat-inner .black-tag {
  margin: 0 auto 24px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: table;
  padding: 4px 12px;
  border-radius: 8px;
}
.sec-chat .chat-container .chat-Left,
.sec-chat .chat-container .chat-Right {
  display: inline-grid;
  grid-template-columns: 64px auto 64px;
  gap: 32px;
  position: relative;
}
.sec-chat .chat-container .chat-Left .chat-txt,
.sec-chat .chat-container .chat-Right .chat-txt {
  grid-column: 2/3;
  border-radius: 16px;
  padding: 20px;
  background-color: #fff;
  position: relative;
}
.sec-chat .chat-container .chat-Left .chat-txt::before,
.sec-chat .chat-container .chat-Right .chat-txt::before {
  content: "";
  top: 18px;
  height: 13px;
  position: absolute;
  width: 20px;
}
.sec-chat .chat-container .chat-Left {
  justify-self: left;
}
.sec-chat .chat-container .chat-Left .chat-txt::before {
  left: -18px;
  transform: scale(1);
}
@media (max-width: 768px) {
  .sec-chat .chat-container .chat-Left .chat-txt::before {
    left: -14px;
  }
}
.sec-chat .chat-container .chat-Right {
  justify-self: right;
}
.sec-chat .chat-container .chat-Right .chat-txt::before {
  background: url(/asset/employee/interview/posts/img/chat-object_white.svg) center/contain no-repeat;
  right: -18px;
}
@media (max-width: 768px) {
  .sec-chat .chat-container .chat-Right .chat-txt::before {
    right: -14px;
  }
}
.sec-chat .chat-container .chat-Right .chat-icon {
  order: 3;
}
.sec-chat .chat-container .chat-img {
  display: inline-grid;
  grid-template-columns: 64px auto 64px;
  gap: 32px;
}
@media (max-width: 768px) {
  .sec-chat .chat-container .chat-img {
    grid-template-columns: 32px auto 32px;
    gap: 18px;
  }
}
.sec-chat .chat-container .chat-img div {
  grid-column: 2/3;
}
.sec-chat .chat-container .chat-img div img {
  border-radius: 16px;
}
.sec-chat .chat-container .chat-img div p {
  color: #fff;
  font-size: 12px;
  margin-top: 8px;
}
.sec-chat .chat-container .chat-img-half > div {
  width: 50%;
}
@media (max-width: 768px) {
  .sec-chat .chat-container .chat-img-half > div {
    width: 100%;
  }
}

.sec-button .button-link.blue {
  text-align: center;
  padding-top: 64px;
  border-top: 1px solid #ddd;
}
.sec-button .button-link.blue a::after {
  content: none;
}
.sec-button .button-link.blue a::before {
  content: url(/asset/common/img/arrow-white.svg);
  transform: rotate(180deg);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}
.sec-button .button-link.blue a:hover::before {
  transform: rotate(180deg) translateX(6px);
}/*# sourceMappingURL=chat.css.map */