/* ==========================================================================
 * social / 社会
 *
 *
========================================================================== */
/* 汎用クラス
 * ローカル扱いだが、全域CSS整理後に共通化したい。
-------------------------------------*/
@media screen and (max-width: 768px) {
  .onlyPC{
      display: none;
  }
}/* max-width: 768px */
@media screen and (min-width: 769px) {
  .onlySP{
      display: none;
  }
}/* max-width: 768px */

.mt-0 {
  margin-top: 0 !important;
}
.mt-20px {
  margin-top: 20px !important;
}
.mt-80px {
  margin-top: 80px !important;
}
.mt-120px {
  margin-top: 120px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-40px {
  margin-bottom: 40px !important;
}
.mb-80px {
  margin-bottom: 80px !important;
}

.w-300 {
  width: 300px;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.text-s {
  font-size: 11px;
}

/* 共通パーツ
* ローカル扱いだが、全域CSS整理後に共通化したい。
-------------------------------------*/
/* 横幅700px特殊インナー */
.l-inner--local {
  max-width: 700px;
}

/* セクション */
.l-section {
  margin-bottom: 120px;
}

/* flex */
.l-flex--2col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.l-flex--2col > *{
  width: calc(50% - 20px);
}
.l-flex--2col--reverse {
  flex-direction: row-reverse;
}

/* ボックス */
.l-box {
  margin: 16px 0;
  padding: 16px;
}
.l-box-gray {
  background: #F6F6F6;
}

.l-box__headline {
  margin-bottom: 8px;

  color: #003B83;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

/* リンク */
.l-link {
  color: #1B6FAF;

  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.4px;
  text-decoration-line: underline;

  word-break: break-all;
}

/* テキストブロック */
.l-text {
  margin-bottom: 16px;
  line-height: 2em;
  letter-spacing: 1.4px;
}

/* 注釈ブロック */
.l-note {
  font-size: 10px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

/* 画像ブロック */
.image-wrap {
  margin: 20px 0 40px;
}

.image-wrap--1col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.image-wrap--2col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.image-wrap--2col > * {
  width: calc(50% - 4px);
}
@media screen and (max-width: 768px) {
  .image-wrap--2col {
      flex-direction: column;
      align-items: center;
  }
  .image-wrap--2col > * {
      width: 100%;
  }
}/* max-width: 768px */

/* セクション見出し */
.l-section-h2 {
  position: relative;

  margin: 7px 0 48px;
  padding: 20px 0 0 10px;

  border-top: 1px solid #c3c3c3;
  font-size: 28px;
  font-weight: bold;
  line-height: 42px;
}
.l-section-h2:after {
  display: block;
  content: "";

  position: absolute;
  top: -6px;
  left: 0;

  height: 5px;
  width: 180px;

  background-color:#036A9F;
}

.l-section-h3 {
  position: relative;

  margin: 40px 0 32px;
  padding-left: 10px;

  font-size: 18px;
  font-weight: bold;
  line-height: 42px;
}
.l-section-h3:after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 300px;
  height: 1px;

  background: #C3C3C3;
}

.l-section-h4 {
  font-size: 18px;

  font-weight: 600;
  line-height: 28px;
  margin-bottom: 4px;
}

/* 社会カラム */
.l-column-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 24px;

  margin: 40px 0;
}
.l-column-social__col:first-child {
  flex: 1;
}
.l-column-social__col:last-child {
  max-width: 313px;
}

.l-column-social__headline {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .l-column-social {
    flex-direction: column;
    align-items: center;
  }
}/* max-width: 768px */


.sus-social-flex {
  display: flex;
  align-items: flex-start;
  line-height: 2;
  margin-bottom: 48px;
  max-width: 900px;
}
.sus-social-flex:first-child {
  margin-top: 40px;
}
.sus-social-flex:last-of-type {
  margin-bottom: 120px;
}
.sus-social-flex img {
  width: 100%;
  height: auto;
  max-width: 313px;
  margin-right: 24px;
}