@charset "UTF-8";
.top_message {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .top_message {
    display: block;
  }
}
.top_message .top_message_img {
  width: 100%;
  min-width: 320px;
  max-width: 320px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .top_message .top_message_img {
    min-width: inherit;
    max-width: 200px;
  }
}
.top_message .top_message_img .main_img {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  -ms-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}
.top_message .top_message_img p {
  position: absolute;
  bottom: 2px;
  left: 4px;
  color: #fff;
  font-size: 10px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}
.top_message .top_message_text {
  padding: 30px;
  background: #fff;
  max-width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top_message .top_message_text {
    padding: 40px;
    position: static;
    max-width: inherit;
  }
}
@media screen and (max-width: 896px) {
  .top_message .top_message_text {
    padding: 20px 0;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.top_message .top_message_text h4 {
  font-size: 20px;
  font-weight: bold;
}
.top_message .top_message_text h4:first-line {
  font-size: 16px;
}
.top_message .top_message_text h4 span {
  margin-left: 10px;
  font-weight: 100;
  font-size: 12px;
}
.top_message .top_message_text p {
  position: relative;
}
.top_message .top_message_text p::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  /*隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
  content: "";
}
.top_message .top_message_text .text-box.-en {
  overflow: scroll;
  height: 330px;
}

.top_message_flex-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.top_message_morebtn {
  text-align: right;
}
.top_message_morebtn:not(:last-child) {
  margin-right: 10px;
}
.top_message_morebtn a {
  font-size: 12px;
  display: inline-block;
  padding-left: 20px;
  font-weight: bold;
  border: 3px solid #231815;
  padding: 6px 20px;
  transition-duration: .3s;
}
.top_message_morebtn a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(/img/ico_arrow_s_next.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top_message_morebtn a:hover {
  background-color: #231815;
  color: #fff;
}
.top_message_morebtn a:hover::before {
  background: url(/img/ico_arrow_s_next_wh.svg) no-repeat center center;
  background-size: contain;
}
