﻿@charset "UTF-8";


iframe{
display:block;
width:48%;
height:500px;
border:solid 1px gray;
margin:0px auto;
padding:0;
box-sizing:border-box;
}

.content_title{
display:block;
width:100%;
margin:30px 0px 10px;
padding:3px 5px;
background:#eeeeee;
border-left:solid 5px #0000ff;
}

.block_wrapper{
display:flex;
align-items: flex-start;
justify-content:space-between;
align-content: flex-start;
margin:20px auto 0 ;
padding:0;
}




/*■■■codecontainer■■■*/

.code_container{
width:48%;
height:500px;
margin:0;
padding:0 10px;
border:solid 1px #000;
max-width:900px;
background:#FFFFF0;

}

pre{
width:100%;
/*overflow-x:scroll;*/
/*marginとpaddingを入れることでズレ解消*/
margin:0;
padding:0;
}

.code{
width:100%;

}

.text{
display:flex;
align-items:center;
width:700px;
height:21px;
padding:0 0 0 5px;
margin:0;

}

.textodd{
background:#fff;
}

.texteven{
background:whitesmoke;
}


.code_code{
font-family: 'Noto Sans JP', sans-serif;
line-height:1.3;

}





/*■■■■■■■■■■スマホ■■■■■■■■■■*/

@media screen and (max-width:768px){

.content_title{
width:98%;

}

iframe{
width:100%;

}

.block_wrapper{
display:block;
margin:20px auto 0 ;
padding:0;
}

.code_container{
width:95%;
height:100%;
margin:5px auto;
}

}/*スマホ終了タグ*/



