@charset "utf-8";
/* CSS Document */
ul.pg__link,
ul.pg__link a,
ul.pg__link li {
  align-items: flex-start;
}
.pg__linkLabel {
  min-width: 13rem;
  white-space: nowrap;
}

.pg__linkTtl {
  width: 85%;
}

.conts_main .block_history {
  margin-top: 5rem;
}

.area_history>div {
  display: flex;
}

.ttl_year {
  color: #707d96;
  width: 10rem;
  display: flex;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-size: 1.7rem;
}

.ttl_year.year_point {
  font-size: 2.0rem;
  color: #293382;
}

.ttl_year::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border-radius: 2rem;
  background-color: #707d96;
  margin-top: 0.8rem;
}

.ttl_year.year_point::after {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #293382;
}

.area_history {
  width: 100%;
}

.area_history ul,
.area_history li {
  margin-top: 0;
}

.area_history ul {
  list-style: none;
  flex: 1;
}

.area_history li {
  border-top: 0.1rem solid #ddd;
  padding: 2rem 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.area_history li p{
  flex: 1;
}
.area_history li figure,
.area_history li img {
  width: 20rem;
  margin: 0 3rem;
}
.area_history li figure img {
  margin: 0;
}

.area_history li img:nth-child(2) {
  margin-left: 0;
}

.area_history>div:last-of-type li:last-of-type {
  border-bottom: 0.1rem solid #ddd;
}

/*--こぼれ話--*/
.block_episode {
  background-color: #f2f2f2;
  margin-top: 4rem;
}
.block_episode p {
  padding: 2.5rem;
}
.icon_episode {
  float: left;
  padding: 1.5rem 3rem 2rem;
  background-color: #65749d;
  color: #FFF;
  font-size: 1.2rem;
  margin-right: 2rem;
  text-align: center;
}
.icon_episode::before {
  font-family: Material Icons;
  content: "\e0cb";
  display: block;
  font-size: 2rem;
  margin-bottom: -0.3rem;
}
.input_opcl {
  display: none;
}

@media screen and (max-width: 1024px) {
  .area_history>div {
    flex-direction: column
  }

  .ttl_year {
    width: 100%;
    padding-bottom: 1.2rem;
  }

  .ttl_year::after {
    content: none;
  }

  .area_history ul {
    padding-left: 0;
    ;
  }

  .area_history ul li:last-of-type {
    border-bottom: 0.1rem solid #ddd;
  }

  .area_history li {
    flex-direction: column;
  }

  .area_history li img ,
  .area_history li figure {
    margin: 1rem auto 0;
  }

  /*--こぼれ話--*/
  .block_episode {
    position: relative;
    margin-top: 6rem;
  }

  .inner_opcl > p {
    padding: 4rem 1.5rem 1.5rem;
  }

  .icon_episode {
    position: absolute;
    top: -2rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 3rem;
    font-size: inherit;
  }

  .icon_episode::before {
    display: inline-block;
    padding-right: 0.5rem;
  }

  /*(続きを読む)*/
  .box_openclose {
    position: relative;
  }

  .box_openclose label {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 10rem;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0.95) 50%);
  }

  .box_openclose input:checked+label {
    background: inherit;
    /* 開いた時にグラデーションを消す */
  }

  .box_openclose label:after {
    line-height: 2.5rem;
    position: absolute;
    z-index: 2;
    bottom: 2rem;
    font-family: Material Icons;
    content: "\e313"" 続きを読む";
    transform: translate(-50%, 0);
    color: #65749d;
  }

  .box_openclose .inner_opcl {
    overflow: hidden;
    height: 25rem;
    /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
  }

  .input_opcl {
    display: none;
  }

  .input_opcl:checked+label:after {
    font-family: Material Icons;
    content: '\e316'' 閉じる';
  }

  .input_opcl:checked~.inner_opcl {
    height: auto;
    padding-bottom: 4rem;
    transition: all 0.5s;
  }


}