@charset "utf-8";

h1{font-size:20px; line-height: 1.2;}
h1  span{font-size:80%;}


.wrap{
color: #333;
display: flex;      flex-wrap: wrap;
margin: 0  auto;
width:1000px;
background-color: #fafafa;
padding: 20px 20px 50px 20px;
gap: 30px 20px;
justify-content: space-between;
//border: 1px solid red; box-sizing: border-box;
}

.main_title{
line-height: 1.2;   text-align:center;
display: block;
width:100%;
align-items: center;
justify-content: center;
font-size: 34px;
font-weight: 800;
//border: 1px solid red; box-sizing: border-box;
}

.font_bigger_120{font-size: 120%;}


.items{
width:48%;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
background-color: royalblue;
}

.items_border_blue{background-color: white;  border: 5px solid #4069e1; box-sizing: border-box;}


.items  img{height: 120px;}

.items  a{
width: 100%;   display:block; height:100%; display: flex;
align-items: center;   justify-content: center;
transition:  0.3s ;
}
.items  a:hover{
background-color: rgba(255, 255, 255, 0.3);
}



/*____________________________________________________________*/
/*____________________スマホ版用 800px____________________*/

@media screen and (max-width: 800px) {

h1{margin: 0  auto;  text-align: center;  justify-content: center;}

.wrap{
display: flex;      flex-wrap: wrap;
margin: 0  auto;
align-items: center;
width:100%;
//border: 1px solid red; box-sizing: border-box;
}

.main_title{                    /*____スマホ版____*/
display: block;
width:100%;
align-items: center;
justify-content: center;
font-size: 30px;
//border: 1px solid red; box-sizing: border-box;
}

.items{                    /*____スマホ版____*/
width:100%;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
background-color: royalblue;
}

.items_border_blue{background-color: white;  border: 5px solid #4069e1; box-sizing: border-box;}


.items  img{height: 100px;}

}
/*_________________________スマホ版用 800px　　ここまで_________________________*/
/*____________________________________________________________*/




/*プリントアウトの設定*//* 印刷時に印刷しない要素 */
@media print {


}/*プリントアウトの設定　　　　ここまで*/






