@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*=======================================
  clampの計算
=======================================*/
/*----------------------------
- message（代表メッセージ）
- message_mv（メインビジュアル）
- message_block（メッセージ本文）
- message_sign（署名）
----------------------------*/
/*============================
message（代表メッセージ）
============================*/
.message_sec {
  padding: 120px 0 200px;
}
@media screen and (max-width: 768px) {
  .message_sec {
    padding: 50px 0 100px;
  }
  .message_sec .inner {
    width: 89.6%;
  }
}

/*============================
message_mv（メインビジュアル）
============================*/
.message_mv {
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .message_mv {
    margin-bottom: 55px;
  }
}

.message_mv__img {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .message_mv__img {
    margin-bottom: 8px;
  }
}
.message_mv__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.message_mv__caption {
  color: var(--main_gray);
  font-size: 14px;
  line-height: 1.5384615385;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .message_mv__caption {
    font-size: 12px;
    line-height: 1.1666666667;
    width: 95%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-inline: auto;
  }
}

.message_mv__caption-left,
.message_mv__caption-right {
  white-space: nowrap;
  position: absolute;
  top: 0;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .message_mv__caption-left,
  .message_mv__caption-right {
    white-space: normal;
    position: static;
  }
}

.message_mv__caption-left {
  left: 37.75%;
}

.message_mv__caption-right {
  left: 72%;
}
@media screen and (max-width: 768px) {
  .message_mv__caption-right {
    text-align: right;
  }
}

/*============================
message_block（メッセージ本文）
============================*/
.message_body {
  max-width: 844px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .message_body {
    max-width: none;
  }
}

.message_block:first-child {
  padding-top: 55px;
  border-top: 1px solid #E3E3E6;
  margin-bottom: 60px;
  position: relative;
}
.message_block:first-child::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 43px;
  height: 1px;
  background: var(--main_red);
}
@media screen and (max-width: 768px) {
  .message_block:first-child {
    padding-top: 30px;
  }
}

.message_block--divider {
  border-top: 1px solid #E3E3E6;
  padding-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .message_block--divider {
    padding-top: 30px;
  }
}
.message_block--divider::before {
  content: "";
  width: 43px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
  background: var(--main_red);
}

.message_block__txt {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .message_block__txt {
    margin-bottom: 40px;
  }
}
.message_block__txt p {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  letter-spacing: 0;
  color: var(--main_black);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .message_block__txt p {
    margin-bottom: 32px;
  }
}
.message_block__txt p:last-child {
  margin-bottom: 0;
}

/*============================
message_sign（署名）
============================*/
.message_sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .message_sign {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
  }
}

.message_sign__role {
  color: var(--main_black);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0;
}

.message_sign__img {
  width: 245px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .message_sign__img {
    width: 150px;
  }
}
.message_sign__img img {
  width: 100%;
  height: auto;
  display: block;
}