.cp_box *, .cp_box *:before, .cp_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_box_box {
  border-radius: 6px;
  margin-top: 16px;
  position: relative;
  background: #FFFFFF;
  padding: 20% 5% 0;
}
.cp_box_box img {
  border-radius: 10px;
  margin-bottom: 20px;
}
.interview {
  width: 95%;
  position: absolute;
  top: 10px;
  left: -10px;
}
.cp_box {
  position: relative;
}
.cp_box label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_box input:checked + label {
  background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
  line-height: 2.5rem;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 100%;
  font-family: FontAwesome;
  content: ' 続きをよむ';
  transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ffffff;
  border: #3A3636 solid 1px;
  border-radius: 6px;
  box-shadow: 5px 5px #F6BB89;
  background: rgba(195, 77, 34, 1) url("../images/label-icon.png") no-repeat;
  background-size: 10%;
  background-position: left 4% top 50%
}
.cp_box input {
  display: none;
}
.cp_box .cp_container {
  overflow: hidden;
  height: 350px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
.cp_box input:checked + label {
  /* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
  font-family: FontAwesome;
  content: ' 閉じる';
  background: rgba(195, 77, 34, 1) url("../images/label-icon-close.png") no-repeat;
  background-size: 10%;
  background-position: left 4% top 50%
}
.cp_box input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}
.interview-name{
    color: #C34D22;
	font-size: 4.5vw;
	line-height: 140%;
	margin-top: .5rem;
	margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
.interview-name{
	font-size: 4vw;
}
  .cp_box_box {
    margin-top: 26px;
  }
  .cp_box label:after {
    line-height: 4.5rem;
  }
  .cp_box input:checked ~ .cp_container {
    height: auto;
    padding-bottom: 110px;
    transition: all 0.5s;
  }
  .cp_box .cp_container {
    overflow: hidden;
    height: 550px; /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
  }
  .cp_box label:after {
    background-size: 7%;
  }
  .cp_box input:checked + label:after {
    background-size: 7%;
  }
  .cp_box label {
    height: 275px;
  }
}
@media screen and (min-width: 1024px) {

  .cp_box_box {
    margin-top: 46px;
  }
  .cp_box .cp_container {
    height: 850px; /* 開く前に見えている部分の高さ */
  }
}
@media screen and (min-width: 1072px) {
.interview-name{
	font-size: 40px;
}
}