@charset "UTF-8";
/* =====================
  天神会について（法人概要）
 ======================= */
/** -------------------- ページ内共通 -------------------- **/
.profile-box {
  border: 2px dotted var(--c_border);
  border-radius: 2.4rem;
  padding: 0.8rem;
}
.profile-box-header {
  padding: 1.2rem;
  background: var(--c_green);
  border-radius: 2.4rem 2.4rem 0 0;
  color: var(--c_wht);
  margin-bottom: 0.8rem;
}
.profile-box-body {
  background: var(--c_wht);
  border-radius: 0 0 2.4rem 2.4rem;
  padding: 2.4rem;
}
.profile-box-ttl {
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
}

/** -------------------- 基本方針 -------------------- **/
.policy .policy-txt {
  text-align: center;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.041em;
}

/** -------------------- ごあいさつ -------------------- **/
.message {
  background: var(--c_wht);
  padding: 8rem 0;
}
.message .message-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 2.4rem;
  margin-top: 1.6rem;
}
.message .message-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 76%;
          flex: 0 1 76%;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.041em;
}
.message .message-txtbox p + p {
  margin-top: 2em;
}
.message .message-imgbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18.8rem;
          flex: 0 0 18.8rem;
}
.message .message-name {
  margin-top: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  font-weight: 500;
  line-height: 2;
}

/** -------------------- 沿革 -------------------- **/
.history .history-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24% 0 1fr;
  grid-template-columns: 24% 1fr;
  gap: 2.4rem 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: -0.041em;
  margin: 5.6rem 0;
}
.history .history-list-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: subgrid;
  grid-template-columns: subgrid;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  gap: 0 5.3%;
}
.history .history-list-item .date {
  text-align: right;
  color: var(--c_green);
}
/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  /** -------------------- ページ内共通 -------------------- **/
  .profile-box {
    border-width: 1px;
    border-radius: 8px;
    padding: 6px;
  }
  .profile-box-header {
    padding: 8px;
    border-radius: 8px 8px 0 0;
  }
  .profile-box-ttl {
    font-size: 20px;
  }
  .profile-box-body {
    border-radius: 0 0 8px 8px;
    padding: 16px;
  }
  /** -------------------- 基本方針 -------------------- **/
  /** -------------------- ごあいさつ -------------------- **/
  .message {
    padding: 40px 0;
  }
  .message .message-container {
    display: block;
  }
  .message .message-txtbox {
    line-height: 1.75;
  }
  .message .message-imgbox {
    width: 150px;
    margin: 20px auto 0;
  }
  .message .message-name {
    line-height: 1.75;
  }
  /** -------------------- 沿革 -------------------- **/
  .history .history-list {
    -ms-grid-columns: auto 0 1fr;
    grid-template-columns: auto 1fr;
    gap: 20px 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .history .history-list-item {
    gap: 0 12px;
  }
}