@charset "UTF-8";
/* ==========================================================================//
//
// メッセージ
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
.contents {
  padding: 40px 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #63a7c3), to(#1b83c5));
  background: linear-gradient(#63a7c3 25%, #1b83c5 100%);
}
@media all and (min-width: 751px) {
  .contents {
    padding: 80px 0;
    background: linear-gradient(-50deg, #1b83c5, #63a7c3);
  }
}

.sec_ttl {
  color: #fff;
  margin-bottom: 24px;
}
@media all and (max-width: 750px) {
  .sec_ttl {
    background-image: radial-gradient(circle, #3B97D4 2.5px, transparent 2.5px);
    background-size: 8px 5px;
    background-repeat: space no-repeat;
    background-position: left bottom;
    padding-bottom: 14px;
  }
}
.sec_ttl span {
  display: block;
  text-align: center;
}
.sec_ttl .en {
  font-family: "Hind", sans-serif;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-size: 30px;
}
@media all and (min-width: 751px) {
  .sec_ttl .en {
    font-size: clamp(32px, 3vw, 42px);
  }
}
.sec_ttl .jp {
  position: relative;
  letter-spacing: 0.1em;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  .sec_ttl .jp {
    font-size: clamp(22px, 1.86vw, 26px);
  }
  .sec_ttl .jp::before, .sec_ttl .jp::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 26.7%;
    height: 5px;
    background-image: radial-gradient(circle, #fff 2.5px, transparent 2.5px);
    background-size: 8px 5px;
    background-position: left center;
    background-repeat: space no-repeat;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sec_ttl .jp::before {
    left: 0;
  }
  .sec_ttl .jp::after {
    right: 0;
  }
}

/* 代表メッセージ
---------------------------------------------------------- */
@media all and (min-width: 751px) {
  .sec_message .inner {
    max-width: 910px;
  }
}
.sec_message .bg_contents {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0 0 0 30px;
  padding: 30px 15px 50px;
}
@media all and (min-width: 751px) {
  .sec_message .bg_contents {
    margin-top: 47px;
    padding: 60px 63px;
    border-radius: 0 0 0 60px;
  }
}
.sec_message .bg_contents .image {
  overflow: hidden;
  border: 1.5px solid #3B97D4;
  border-radius: 0 0 0 60px;
}
@media all and (min-width: 751px) {
  .sec_message .bg_contents .image {
    margin-bottom: 40px;
  }
}
.sec_message .bg_contents .message_detail:not(:first-of-type) {
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  .sec_message .bg_contents .message_detail:not(:first-of-type) {
    margin-top: 40px;
  }
}
.sec_message .bg_contents .message_detail .head_ttl {
  color: #005085;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 15px;
  margin-bottom: 15px;
}
@media all and (min-width: 751px) {
  .sec_message .bg_contents .message_detail .head_ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(22px, 1.86vw, 26px);
    margin-inline: auto;
    margin-bottom: 40px;
  }
}
.sec_message .bg_contents .message_detail p {
  line-height: 1.5;
}
@media all and (min-width: 751px) {
  .sec_message .bg_contents .message_detail p {
    letter-spacing: 0.075em;
    line-height: 2.18;
  }
}
.sec_message .bg_contents .message_detail p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media all and (min-width: 751px) {
  .sec_message .bg_contents .message_detail p:not(:last-child) {
    margin-bottom: 2em;
  }
}

/* 画像
---------------------------------------------------------- */
.image_contents {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .image_contents {
    margin: 80px 0;
  }
}
.image_contents .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 54.8%;
}
@media all and (min-width: 751px) {
  .image_contents .image {
    width: min(600px, 100%);
  }
}
.image_contents .image img {
  width: 100%;
  height: auto;
  display: block;
}