@charset "utf-8";
.chiji_container {
  padding-top: 3rem;
  background: url(../img/bg.jpg);
}
.chiji_header {
  background: url(../img/bg_star.png);
  background-size: contain;
}
.chiji_header .logo_kagawa {
  width: 30%;
  max-width: 8rem;
  margin: auto auto 2rem;
}

.chiji_header h1 {
  width: 100%;
  max-width: 39rem;
  margin: 0 auto 1.5rem;
}
.chiji_header img {
  width: 100%;
}
.chiji_header_inner {
  width: 100%;
  max-width:111rem;
  margin: 0 auto;
}
.chiji_header_item:nth-of-type(1) {
  margin-bottom: 2rem;
}
.chiji_header_item:nth-of-type(2) {
  text-align: center;
}
.chiji_header_item:nth-of-type(2) img {
  max-width: 31.9rem;
}
.chiji_header_item .schedule {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.chiji_header_item .schedule span {
  font-size: 3rem;
}
.chiji_header_item .label {
  display: inline-block;
  margin: 0 .5rem 1rem 0;
  padding: .2rem .5rem;
  background: #008600;
  color: #fff;
  border-radius: .5rem;
  font-size: 1.6rem;
}
.chiji_header_item .name {
  font-size: 2rem;
  font-weight: bold;
}
.chiji_header_item .postion {
  margin-left: .5rem;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .chiji_header {
    background: url(../img/bg_star.png);
  }
  .chiji_header h1 {
    max-width: 39rem;
    margin-bottom: 2rem;
  }
  .chiji_header .logo_kagawa {
    width: 30%;
    max-width: 8rem;
    margin: auto 0 2rem auto;
  }
  .chiji_header_inner {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .chiji_header_item:nth-of-type(1) {
    margin-bottom: 0;
  }
  .chiji_header_item .schedule {
    font-size: 2.4rem;
    text-align: left;
  }
  .chiji_header_item .schedule span {
    font-size: 3.4rem;
  }
  .chiji_header_item .name {
    font-size: 2.4rem;
  }
}
/*　説明文　*/
/* --------------------------- */
.chiji_description {
  width: 100%;
  max-width:111rem;
  margin: 3rem auto 0;
  font-size: 1.8rem;
}
/* --------------------------- */
/*　バックナンバー　*/
/* --------------------------- */
.chiji_contents {
  width: 100%;
  max-width: 80rem;
  padding: 2rem 0;
  margin: 0 auto;
}
.chiji_contents h2 {
  width: 25rem;
  height: 5rem;
  line-height: 5rem;
  font-weight: bold;
  font-size: 2rem;
  color: #0070bc;
  border: .2rem solid #0070bc;
  border-radius: 1rem;
  text-align: center;
  margin: 0 auto 2rem;
}
.chiji_contents .lead {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.chiji_contents ul {
  width: 100%;
}
.chiji_contents li {
  padding: 2rem;
}
.chiji_contents li:nth-of-type(odd) {
  background: #E1F4FF;
}
.chiji_contents li:nth-of-type(even) {
  background: #F7FCFF;
}
.chiji_contents li .audio {
  max-width: 100%;
  margin-top: 1rem;
}
.chiji_contents li .date {
  font-weight: bold;
}
.governor_contents li .ttl {
  color: #00A3D8;
  font-weight: bold;
}
@media screen and (min-width:768px) {
  .chiji_contents {
    padding: 5rem 0;
  }
  .chiji_contents li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .chiji_contents li .txtbox {
    width: 30%;
  }
  .chiji_contents li audio {
    margin-top: 0;
    width: 65%;
  }
}

/*　accordion　*/
/* --------------------------- */
.parent {
  position: relative;
  background: #00A0E9;
  color: #fff;
  cursor: pointer;
  height: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 2rem;
}
.parent:not(:first-of-type) {
  margin-top: 2rem;
}
.parent::before,
.parent::after {
  position: absolute;
  content:'';
  top:50%;
  transform: translateY(-50%);
  background: #fff;
}
.parent::before {
  right: 2rem;
  width: 2.4rem;
  height: .2rem;
}
.parent::after {
 /* （beforeのright）+（beforeのwidth/2）- width.2remの半分 */
  right: 3.1rem;
  width: .2rem;
  height: 2.4rem;
  transition: .3s;
}
.parent.open::after {
  top:25%;
  opacity: 0;
  transform: rotate(90deg);
}
@media screen and (min-width:768px) {
  .parent {
    height: 6rem;
    line-height: 6rem;
    font-size: 2.3rem;
    padding: 0 4rem;
  }
  .parent::before {
    right: 3rem;
  }
  .parent::after {
    right: 4.1rem;
  }
}
.child {
  display: none;
}
.child:first-of-type {
  display: block;
}

/* --------------------------- */
/*　リンク　*/
/* --------------------------- */
.chiji_link {
  text-align: center;

}
