@charset "UTF-8";
/*
本WEBサイトで公開しているHTML・CSS・JavaScriptは合同会社ベストブリッジが記述し、タイムスタンプを付与した電子書類で保管を行っています。
また、公開に至るまでの制作過程も、タイムスタンプを付与した電子書類として保管を行っています。
*/

/*============================================
#top_saiyou
============================================*/
#top_saiyou{
position:relative;
/*--*/
display:block;
width:100%;
height:auto;
margin:0;
border:0;
padding:80px 0 0 0;
}

/*============================================
#top_saiyou>h2
============================================*/
#top_saiyou>h2{
position:relative;
/*--*/
display:block;
width:90%;
max-width:1000px;
height:auto;
margin:0 auto 15px auto;
border:0;
padding:0;
/*--*/
text-align:center;
line-height:1.6;
font-size:100%;
font-weight:bold;
color:#333;
}

/*============================================
#top_saiyou>p
============================================*/
#top_saiyou>p{
position:relative;
/*--*/
display:block;
width:90%;
max-width:1000px;
height:auto;
margin:0 auto 15px auto;
border:0;
padding:0;
/*--*/
text-align:left;
line-height:1.6;
font-size:90%;
font-weight:normal;
color:#333;
}

/*============================================
#top_saiyou>ol
============================================*/
#top_saiyou>ol{
position:relative;
/*--*/
display:flex;
width:90%;
max-width:1000px;
height:auto;
margin:0 auto 30px auto;
border:0;
border:solid 1px #CCC;
background-color:#FFC;
/*--*/
align-items:stretch;/*縦揃え*/
flex-direction:row;/*方向*/
flex-wrap:wrap;/*改行*/
justify-content:space-between;/*横揃え*/
}

#top_saiyou>ol>:nth-child(odd){
position:relative;
/*--*/
display:block;
flex-basis:38%;
height:auto;
margin:0;
border:solid 1px #CCC;
padding:7px;
/*--*/
text-align:left;
line-height:1.6;
font-size:14px;
font-weight:bold;
color:#333;
}

@media screen and (max-width: 900px){
#top_saiyou>ol>:nth-child(odd){
flex-basis:100%;
border-bottom:solid 0px #CCC;
}
}

#top_saiyou>ol>:nth-child(even){
position:relative;
/*--*/
display:block;
flex-basis:62%;
height:auto;
margin:0;
border:solid 1px #CCC;
padding:7px;
/*--*/
text-align:left;
line-height:1.6;
font-size:14px;
font-weight:normal;
color:#333;
}

@media screen and (max-width: 900px){
#top_saiyou>ol>:nth-child(even){
flex-basis:100%;
border-top:solid 0px #CCC;
}
}



