/*+++++++++++++++++++++++++++++++++++++++++++
	伊豆伊東のゴルフ物語仕様
+++++++++++++++++++++++++++++++++++++++++++ */
<!-- 20200529kanekoモーダル仕様start -->
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content{
    margin: 0 auto;
    padding: 5px;
    font-size: 10.5px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 5px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    height:90%;　/* モーダルの高さ */
    overflow-y:scroll;　/* 高さを指定しているので中身が超えた分はスクロールできるように */
}

/* モーダルリンク文字仕様：カーソルがかかった時のみ下線*/

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/* リンクの文字色仕様*/
a:link,
a:visited { 
	color: black;
 }

a:hover,
a:active {
	color: #F79646; transition: 0.5s; 
}
<!-- 20200529kanekoモーダル仕様end -->
