@charset "UTF-8";
.news_date {
  font-size: 14px;
  margin-bottom: 12px;
}

.news_title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 34px;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.2;
}

.news_content {
  margin-bottom: 60px;
}

.news_pic_outer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 38px;
  margin-bottom: 60px;
}
.news_pic_outer .news_pic {
  width: calc((100% - 38px) / 2);
}

.data_section {
  width: fit-content;
  max-width: 100%;
  padding: 42px 70px;
  background-color: #F6F6F6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px;
}
.data_section .data_block {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 6px;
  height: 22px;
}
.data_section .data_block img {
  width: 18.51px;
  height: 21.24px;
}
.data_section .data_block a {
  font-size: 16px;
  color: #333;
  border-bottom: solid 1px #333;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1; /* 表示する行数 */
  line-clamp: 1;
}
.data_section .data_block a:hover {
  border-bottom: none;
}

.news_back_btn {
  display: block;
  width: 246px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: #5497C7;
  font-size: 16px;
  border-radius: 28px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
  position: relative;
}
.news_back_btn:hover {
  color: #fff;
  background-color: #5497C7;
}
.news_back_btn:hover .news_back_btn_arrow::before,
.news_back_btn:hover .news_back_btn_arrow::after {
  background-color: #fff;
}
.news_back_btn .news_back_btn_arrow {
  position: absolute;
  display: inline-block;
  width: 6.1px;
  height: 10.7px;
  top: 52%;
  right: 46px;
  transition: 0.3s;
}
.news_back_btn .news_back_btn_arrow::before, .news_back_btn .news_back_btn_arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.2px;
  border-radius: 9999px;
  background-color: #5497c7;
  transform-origin: calc(100% - 0.75px) 50%;
  transition: 0.3s;
}
.news_back_btn .news_back_btn_arrow::before {
  transform: rotate(45deg);
}
.news_back_btn .news_back_btn_arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 1200px){
  .news_pic_outer {
    gap: 16px;
  }
  .news_pic_outer .news_pic {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 960px){
  .news_pic_outer {
    flex-direction: column;
    align-items: center;
  }
  .news_pic_outer .news_pic {
    width: 100%;
  }
}
@media (max-width: 767px){
  .data_section {
    padding: 42px 24px;
    margin-top: 40px;
  }
  .data_section .data_block a {
    font-size: 14px;
  }
}