/* --------------------------------------------------
	ステージ共通
-------------------------------------------------- */
/* サブページのステージ */
#zone_substage {
    width: auto;
    background-color: white; /*サブページ背景*/
    background-image: url("../image/img-sbstage.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    background-size: cover;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#zone_substage h1 {
    font-size: 2.5em;
    font-weight: normal;
}
@media (max-width : 768px) {
    #zone_substage {
        background-position: center center;
        height: auto;
    }
    #zone_substage h1 {
        color: #fff;
        margin: 0;
        margin-top: 50px;
        padding-bottom: 40px;
        width: 100%;
        font-size: 1.3em;
        text-align: center;
    }
}
/*スタッフ紹介*/
ul.staff {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 30px;
}
ul.staff.long{
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 30px;
}
ul.staff li {
    width: 95%;
    background: #F4F7F9;
    padding: 1em;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
ul.staff li.off {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
ul.staff li h4 {
    font-weight: normal;
    font-size: 1.1em;
}
ul.staff li h4 > span {
    font-size: .65em;
    display: block;
}
ul.staff li > span {
    color: #4B696F;
    display: block;
    border-left: 3px solid #B2BEC4;
    padding-left: .5em;
    margin-top: 1em;
}
ul.staff li span h5 {
    font-size: .9em;
    font-weight: bold;
}
ul.staff li a {
    display: inline-block;
    text-align: center;
}
/*バナー*/
ul.l_bnr_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
ul.l_bnr_link li {
    margin: 1%;
    border: 1px solid #B8B8B8;
}
/*個別ページの名前*/
.prof_flex div {
    margin: 2em;
}
.l_komidashi {
    border-bottom: 2px solid #82A8A6;
    display: inline-block;
    margin-bottom: .3em;
}
.l_name {
    font-size: 1.4em;
}
.l_name span {
    color: #82A8A6;
}
.l_bunya {
  margin:1em 0 0 0;
    font-size: 1em;
    white-space: pre;
  font-weight: normal;
  padding-left: 1em;
  border-left: 5px solid #50ACAC;line-height: 1;
}
@media only screen and (max-width:768px) {
    .prof_flex {
        margin: 0 auto;
        text-align: center;
    }
    .prof_flex div {
        margin: 0 auto;
        width: 90%;
    }
    .l_komidashi {
        display: block;
    }
    .l_name {
        text-align: center;
    }
    .l_name span {
        display: block;
        font-size: .8em;
    }
    .l_bunya span {
        display: block;
    }
}
.l_prof{
  max-width: 900px;
  margin: 0 auto 3em auto;
  border: 1px solid #ADADAD;border-radius: 10px;
  padding: 2em 3em;
}
.l_prof_flex div{
  margin:0 2em;
}
.l_prof .unit_table_side{
  font-size: .95em;
}
.l_prof .unit_table_side tr th,.l_prof .unit_table_side tr td{
  padding: 5px 0;
}
.l_prof .unit_table_side tr th{
  width:  30%;
}
.unit_table_side.l_prof_table{
  max-width: 350px;
  margin: 0 auto 0 0;
}
.staff_prof {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
}
@media only screen and (max-width:768px) {
  .l_prof_flex div{margin: 0;}
    .unit_table_side {
        width: 100%;
    }
.l_prof .unit_table_side tr th{
  width:  100%;
  font-weight: bold;
}
  .unit_table_side.l_prof_table{
  max-width: 100%;
  margin: 0 auto 0 0;
}
}