main > article{
 width: 980px;
 box-sizing: border-box;
 margin: 0 auto;
}
.toEdinet{
 border: 2px solid #e9ecee;
 text-align: center;
 padding: 60px 0;
 font-size: 1.4rem;
 margin-bottom: 30px;
}
.toEdinet p{
 line-height: 2.8rem;
 color: #333;
 margin-bottom: 35px;
}
.toEdinet a{
 display: inline-flex;
 width: 240px;
 height: 64px;
 border: 1px solid #e60012;
 position: relative;
 justify-content: center;
 align-items: center;
 color: #e60012;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.toEdinet a .linkBlank::after{
 content: '';
 width: 15px;
 height: 10px;
 display: inline-block;
 background: url(/images/common/blank.png) no-repeat right center;
 background-size: 10px;
 transition-property: background;
 transition-duration: 0.12s;
}
.toEdinet a .redArrowS{
 right: 35px;
 transition-property: border-color, margin-right;
}
.toEdinet a.hover{
 background-color: #e60012;
 color: #fff;
}
.toEdinet a.hover .linkBlank::after{
 background: url(/images/common/blank-white.png) no-repeat right center;
 background-size: 10px;
}
.toEdinet a.hover .redArrowS{
 border-color: #fff;
 margin-right: -5px;
}


.howTo h2{
 font-size: 2.8rem;
 color: #000;
 margin-bottom: 30px;
 font-weight: normal;
}
.howTo ol{
 font-size: 1.4rem;
 color: #333;
 padding-left: 10px;
}
.howTo ol > li{
 padding-left: 30px;
 position: relative;
}
.howTo ol > li:not(:last-child){ margin-bottom: 35px;}
.howTo ol > li::before{
 position: absolute;
 top: 0;
 left: 0;
}
.howTo ol > li:nth-child(1)::before{ content: '1.';}
.howTo ol > li:nth-child(2)::before{ content: '2.';}
.howTo ol > li:nth-child(3)::before{ content: '3.';}

.howTo li ul{
 background-color: #f3f5f7;
 padding: 20px;
 margin-top: 10px;
}
.howTo li ul li:not(:last-child){ margin-bottom: 15px;}
