@charset "UTF-8";
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
/* message
////////////////////////////////////////////*/
main {
  padding-top: 0;
}

.content_message {
  margin-left: calc(50% - 50vw);
  display: flex;
}
@media all and (max-width: 1025px) {
  .content_message {
    margin-right: calc(50% - 50vw);
    flex-direction: column;
  }
}
.content_message .block_img {
  width: 60%;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 80%, transparent 95%);
          mask-image: linear-gradient(90deg, #000 0%, #000 80%, transparent 95%);
}
@media all and (max-width: 1025px) {
  .content_message .block_img {
    width: 100%;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.content_message .block_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1025px) {
  .content_message .block_img img {
    aspect-ratio: 16/9;
    -o-object-position: 50% 25%;
       object-position: 50% 25%;
  }
}
.content_message .block_txt {
  box-sizing: border-box;
  padding: 30px 0 30px 5%;
  width: 50%;
  margin-left: -10%;
  position: relative;
  z-index: 20;
}
@media all and (max-width: 1025px) {
  .content_message .block_txt {
    padding: 25px 15px 0;
    width: 100%;
    margin-left: 0;
  }
}
.content_message .block_txt::after {
  content: "";
  display: block;
  width: 110%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #fff 30%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
}
@media all and (max-width: 1025px) {
  .content_message .block_txt::after {
    content: none;
  }
}
.content_message .txt_message {
  word-break: keep-all;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .content_message .txt_message {
    word-break: normal;
    font-size: 1.4rem;
  }
}
.content_message .txt_message + .txt_message {
  margin-top: 10px;
}
@media all and (max-width: 896px) {
  .content_message .txt_message + .txt_message {
    margin-top: 5px;
  }
}
.content_message .box_name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 15px;
}
@media all and (max-width: 896px) {
  .content_message .box_name {
    margin-top: 15px;
  }
}
.content_message .name_message {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3.2rem;
  font-weight: bold;
}
@media all and (max-width: 896px) {
  .content_message .name_message {
    font-size: 2.4rem;
  }
}