.more-view-box{
  background: #fff;
  border: 2px solid #002360;
  max-width: 1050px;
  margin: 0 auto 120px;
  padding: 30px 45px 35px;
}
.more-view-box .txt-show{
  border-bottom: 1px solid #002360;
  padding-bottom: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.more-view-box .txt-show .txt-show-img{
  width: 7%;
}
.more-view-box .txt-show .txt-show-txt{
  width: 93%;
  font-size: 20px;
  font-weight: bold;
  color: #002360;
  align-self: center;
}

/*非表示エリア*/
.more-view-box .txt-hide{
  display: none;
  padding-top: 25px;
}
.more-view-box .txt-hide .txt-hide-ttl{
  font-size: 16px;
  font-weight: bold;
}
.more-view-box .txt-hide .txt-hide-list{
  padding-left: 1em;
  margin-bottom: 1em;
}
.more-view-box .txt-hide .txt-hide-list li{
  font-size: 16px;
}
.more-view-box .txt-hide .txt-hide-list li::before {
  position: relative;
  top: -2px;
  left: -0.5em;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: '';
  border-radius: 100%;
  background: #000;
}
.more-view-box .txt-hide .txt-hide-txt{
  font-size: 16px;
}

/*もっと見るボタン*/
button.more {
  width: 100%;
  max-width: 290px;
  font-size: 16px;
  font-weight: bold;
  margin: 20px auto;
  display: block;
  background-color: #eee;
  color: #000;
  padding:10px 15px;
  border: none;
  border-radius: 5px;
  outline: 0;
  transition: .5s;
  -erbkit-transition: .5s;
  position: relative;
}
button.more::after {
content: "もっと見る";
transition: .2s;
-erbkit-transition: .2s;
}
button.more::before{
  background: url(../img/more-open.png);
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 20px;
  top: 35%;
}
button.more.on-click::after{
  content: "閉じる";
}
button.more.on-click::before{
  background: url(../img/more-close.png);
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  right: 20px;
  top: 45%;
}

@media screen and (max-width: 1200px) {
.more-view-box {
    width: 85%;
}
}

@media screen and (max-width: 767px) {
.more-view-box {
  width: 80%;
  margin: 0 auto 10.6vw;
  padding: 6vw 4vw 6.6vw;
}
.more-view-box .txt-show .txt-show-img{
  width: 25%;
  align-self: center;
}
.more-view-box .txt-show .txt-show-img img{
  width: 60%;
}
.more-view-box .txt-show .txt-show-txt{
  width: 75%;
  font-size: 3.4vw;
}
.more-view-box .txt-hide {
  padding-top: 3.2vw;
}
.more-view-box .txt-hide .txt-hide-ttl {
  font-size: 3.4vw;
}
.more-view-box .txt-hide .txt-hide-txt {
  font-size: 3.4vw;
  margin-bottom: 8vw;
}
.more-view-box .txt-hide .txt-hide-list li {
  font-size: 3.4vw;
}
button.more {
  font-size: 3.7vw;
    margin: 6.4vw auto 0;
    padding: 1em 0;
}
  
}