/*記事本文のレイアウト*/
#description{
  clear: both;
  overflow: hidden;
  font-size: 0.9rem;
  padding-bottom: 5px;
  color: #000;
}
  /*文書のスタイル*/
  article img{
    max-width: 528px;
  }
  article span[data-url],
  article a{
    color:#c90000;
    font-weight: bold;
    text-decoration: underline;
  }
  article h2{
    background-image: url(../img/h2.png);
    background-repeat: no-repeat;
    background-size: 528px;
    height: 29px;
    background-position: top left;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-left: 5px;
    margin: 5px 0;
  }
  article h3{
    margin: 0;
    color: #3878d8;
    font-size: 0.9rem;
    font-weight: bold;
  }
  article h4{
    margin: 0;
    color: #732d97;
    font-size: 0.9rem;
    font-weight: normal;
  }
  article strong{
    color: #c90000;
    font-weight: bold;
    font-size: 0.95rem;
  }  
  article em{
    color: #732d97;
    font-weight: normal;
    font-style: normal;
  }
  article b{
    color: #3878d8;
    font-weight: normal;
  }
  article s,
  article del{
    color: #797979;
    text-decoration: line-through;
  }
  article time{
    color: #16113e;
    font-size: 0.85rem;
  }
  article i{
    color: #757482;
    font-size: 0.75rem;
  }
  article small{
    font-size: 0.75rem;
    display: block;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #ccc;
    margin: 10px;
  }
  article ins{
    text-decoration: underline;
  }
  article video{
    max-width: 528px;
  }
  article address{
    font-size: 0.75rem;
    display: block;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #ccc;
    margin: 10px;
  }
  article p{
    margin: 10px 0;
  }
  article hr{
    border: none;
    border-top: 2px solid #878aa9;
    margin: 10px 0;
  }
  article blockquote{
    background: rgba(135,138,169,0.4);
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
  }
  article ol{
    margin: 5px 0;
    list-style: decimal;
    padding-left: 30px;
    color: #16113e;
    font-size: 0.85rem;
  }
  article ul{
    margin: 5px 0;
    list-style: square;
    padding-left: 30px;
    color: #16113e;
    font-size: 0.85rem;
  }
  article dl{
    margin: 5px 0;
    padding-left: 10px; 
  }
    article dl:after{
      clear: both;
      content: ".";
      display: block;
      height: 0;
      visibility: hidden;
    }
    article dt {
      float: left;
      clear: left;
      margin-right: 0.5em;
      color: #16113e;
      font-size: 0.85rem;
      font-weight: bold;
    }
    article dd {
      float: left;
      margin-left: 1em;
      color: #16113e;
      font-size: 0.85rem;
    }
  article figure{
    margin: 5px 0;
    text-align: center;
    width: 100%;
    display: block;
  }
    article figure img{
      text-align: center;
    }
    article figcaption{
      text-align: center;
      color: #757482;
      font-size: 0.75rem;
      margin-top: 0;
    }
  article table{
    width: 95%;
    margin: 0 auto;
    border: 2px solid #74889d;
  }
   article table + table caption,
   article table + table{
    border-top: none;
   }
   article table + h2{
    margin-top: 10px;
   }
    article table caption{
      border: 2px solid #74889d;
      border-bottom: none;
      background: #a3a7c0;
      color: #000;
      padding: 3px;
      text-align: left;
    }
    article table tr{
      border-bottom: 2px solid #74889d;
    }
    article table th{
      background: #cbcfd8;
      padding: 5px;
      vertical-align: middle;
      line-height: 1;
      width: 64px;
    }
      article table th img{
        vertical-align: middle;
        width: 64px;
      }
    article table td{
      background: #eaedf3;
      text-align: left;
      padding: 5px;
      vertical-align: middle;
    }
      article table td em{
        color: #3878d8;
        font-weight: bold;
      }

  /*クラスのスタイル*/
  .banner{
    text-align: center;
    margin: 10px auto;
    color: #2c63c0;
  }
    .banner img{
    }

  /*モーダルのスタイル*/
  body #content{
    transition: filter .1s ease-out;
  }

  body.modal-body #content {
    pointer-events: none;
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
  }

  .modal-overlay{
    z-index:1;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:120%;
  }

  .modal-body .modal-overlay {
    display: block;
  }

  .modal-content{
    width:100%;
    margin:auto 0;
    z-index:999;
    position:fixed;
    background-image: url(../img/ModalBG.png);
    background-size: contain;
    background-repeat: repeat-y;

    transition: opacity 200ms, visibility 0s ease 200ms;
    opacity: 0;
    visibility: hidden;
  }

  .modal-body .modal-content {
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
  }

  .modal-content::before{
    content: '';
    display: block;
    width: 100%;
    height: 28px;
    background-image: 
      url(../img/ModalTitleBg1.png),
      url(../img/ModalTitleBg3.png),
      url(../img/ModalTitleBg2.png);
    background-size: 
      121px 28px,
      177px 28px,
      14px 28px;
    background-repeat:
      no-repeat,
      no-repeat,
      repeat;
    background-position:
      top left, 
      top right,
      top center;
    margin-top: -10px;
    margin-bottom: 15px;
  }

  .modal-content::after{
    content: '';
    display: block;
    width: 100%;
    height: 29px;
    transform: scale(-1,-1);
    background-image: 
      url(../img/ModalBottomFrame1.png),
      url(../img/ModalBottomFrame3.png),
      url(../img/ModalBottomFrame2.png);
    background-size: 
      185px 29px,
      177px 29px,
      3px 29px;
    background-repeat:
      no-repeat,
      no-repeat,
      repeat;
    background-position:
      top left, 
      top right,
      top center;
    margin-bottom: -10px;
    margin-top: 15px;
  }
  .modal-content p{
    text-align: center;
  }
  #modal-close-button{
    display: block;
    position: absolute;
    right: 0;
    top: -3px;
    width: 67px;
    height: 34px;
    background-image: url(../img/ModalCloseBtn.png);
    background-size: 67px 34px;
  }
  body.jp .modal-content .btn-yes{
    background-image: url(../img/news/btn_sub_blue.png);
  }
  body.tw .modal-content .btn-yes{
    background-image: url(../img/news/tw/btn_sub_blue.png);
  }
  body.hk .modal-content .btn-yes{
    background-image: url(../img/news/hk/btn_sub_blue.png);
  }
  .modal-content .btn-yes{
    display: inline-block;
    width: 136px;
    height: 41px;
    text-indent: -1000%;
    background-size: 136px 41px;
    margin: 10px 5px 0 5px;
  }
  body.jp .modal-content .btn-no{
    background-image: url(../img/news/btn_sub_black.png);
  }
  body.tw .modal-content .btn-no{
    background-image: url(../img/news/tw/btn_sub_black.png);
  }
  body.hk .modal-content .btn-no{
    background-image: url(../img/news/hk/btn_sub_black.png);
  }
  .modal-content .btn-no{
    display: inline-block;
    width: 136px;
    height: 41px;
    text-indent: -1000%;
    background-size: 136px 41px;
    margin: 10px 5px 0 5px;
  }
