* {
  box-sizing: border-box;
}


/*  p{
    font-size: 1.3em;
    padding: 1.5em 1.5em;
  }
  h2 {
    font-size: 1.8em;
    padding: 1.5em 0;
  }
  h4 {
    font-size: 1.5em;
 /*   line-height: 2.0em; */
  /*}  */

/* モーダルCSS */
.modaltitle{
    font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.7em;
    padding: 1.5em 0;
}
.modalsubtitle{
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding-top: 0.5em;
  font-size:0.6em;
}
.modaltitle2{
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4em;
  padding-bottom: 1em;
}
.modaltext{
    font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.1em;
    padding: 1.0em 1.0em;
}
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
  .modalWrapper {
    position: absolute;
    left: 50%;
    transform:translate(-50%,-50%);
    padding: 10px 20px;
    background-color: #fff;
    overflow : auto; 
  }  


.closeModal {
  position: absolute;
  font-size: 2em;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

@media screen and (min-width:897px){

  .modalWrapper {
    top: 50%;
    width: 80%;
    max-width: 896px;
    height : 70%; 
  }  
}
@media screen and (max-width: 896px) { 
  .modalWrapper {
    top: 50%;
    width: 80%;
    max-width: 420px;
    height : 70%; 
  }  
}
