@charset "UTF-8";
 /*CSS Document */

/* モーダルオーバーレイ用　*/
#modal-overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 120vh;
  z-index: 9999;
}

#modal-content{
  display: none;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}


.article {
    width: 80%;
    height: 95vh;
    background-color: #fff;
    box-shadow: 2px 2px 3px;
    padding: 40px;
    border-bottom: solid 10px #358d52;
    border-top: solid 10px #358d52;
    box-sizing: border-box;
    z-index: 10001;
    overflow: scroll;
    position: absolute;
    top: 1vw;
}

@media(max-width:768px){
  /* 小さい画面 */
  .article {
	width: 100%;
  height: 100vh;
  margin: 0;
  padding-top: 30px;
  top: 0;
  }
}

/* クローズボタン */
.close-btn-Pc {
  width: 50px;
  height: 50px;
  color: #666666;
  position: absolute;
  top: 5px;
  right: 10px;
  background: url("../images/close_btn.png");
  background-size: cover;
}

.close-btn-Pc:hover {
  cursor: pointer;
  width: 60px;
  height: 60px;
  top: 3px;
  right: 3px;
  transition: all .3s;
}

@media(max-width:768px){
  /* 小さい画面 */
  .close-btn-Pc {
  display: none;
  }
}

@media(min-width:768px){
    /* 大きい画面 */
  .close-btn-Sp {
    display: none;
  }
}

@media(max-width:768px){
  /* 小さい画面 */
  .clearfix::after {
    content: "";
    display: block;
    clear: both;
  }

  .close-btn-Sp {
    display: block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    color: #FFF;
    background: #358d52;
    border: 1px solid #358d52;
    padding: 14px 0;
    width: 150px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
    float: right;
    text-decoration: none;
  }

  .close-btn-Sp:hover {
    cursor: pointer;
    background: #fff;
    color: #358d52;
    text-decoration: none;
  }
}

.close-btn {
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #FFF;
  background: #358d52;
  border: 1px solid #358d52;
  padding: 14px 0;
  width: 260px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 15px;
  text-decoration: none;
  margin: 0 auto;
}

.close-btn:hover {
  cursor: pointer;
  background: #fff;
  color: #358d52;
  text-decoration: none;
  transition: all .3s;
}

.modal-ttl {
  font-size: 19.5px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
  line-height: 1.8em;
  opacity: 0.8;
  margin-bottom: 30px;
}

p {
  font-size: 14.5px;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 10px;
}

.image_area {
  margin-bottom: 30px;
}

.image_area img{
  width: 300px;
}