@charset "utf-8";
/* CSS Document */

/* ---------- 団体概要 テキスト　---------- */
.section-about__text{
  margin: 100px auto ;
}
@media(max-width:1200px) {
  .section-about__text {
    width: 80%;
    box-sizing: border-box;
    display: block;
  }
}

/* ---------- 団体概要 背景・タイトル　---------- */
.section-about__info {
  background-color: #f6f8f3;
  height: 600px;
  margin-bottom: 250px;
}
.section-about__info::after {
  content: "";
  display: block;
  background-image: url("../images/accent/wave_bg.png");
  background-size: contain;
  background-repeat: repeat-x;
  width: 100%;
  height: 200px;
  position: absolute;
}
.section-about__info h1{
  padding: 100px 0 60px;
}
.section-about__info h1::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 20px;
  background-image: url("../images/accent/emphasis.png");
  background-repeat: no-repeat;
  margin-right: 20px;
}
.section-about__info h1::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 20px;
  background-image: url("../images/accent/emphasis.png");
  background-repeat: no-repeat;
  transform: scale(-1, 1);
  margin-left: 15px;
}
@media(max-width:1200px) {
  .section-about__info {
    height: 100%;
  }
  .section-about__info {
    height: 100%;
    margin-bottom: 350px;
  }
}
/* ---------- 　団体概要 詳細　---------- */
.section-about__info-detail {
  margin: 0 auto;
}
.section-about__info-detail table {
  margin: 0 auto;
  width: 800px;
  font-size: 1.6rem;
  line-height: 2.9rem;
  background-color: #fcfcfc;
}
.section-about__info-detail table tr {
  border-bottom: solid 1px #01598A;
}
.section-about__info-detail table tr:last-child {
  border-bottom: none;
}
.section-about__info-detail table th {
  background-color: #53A6B8;
  color: #fcfcfc;
  font-weight: 400;
  padding: 10px;
  vertical-align: middle;
  width: 200px;
}
.section-about__info-detail table td {
  padding: 10px 30px;
  text-align: left;
}
.section-about__info-detail table a{
  color:#01598A;
  text-decoration: none;
}
@media(max-width:1200px) {
  .section-about__info-detail {
    margin: 0 auto;
    width: 80%;
    box-sizing: border-box;
    display: block;
  }
  .section-about__info-detail table {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}
