@charset "UTF-8";
/*reset
------------------------------------*/
html,body,dl,dt,dd{
margin:0;
padding:0;
line-height: 1.0;
}
/*body
---------------------*/
body{
font-size:16px;
font-family: 'Noto Sans JP', sans-serif;
}
/* layout
----------------*/
.accordion{
width:100%;
margin:50px auto;
}
dt{
 background:blue;
 border:2px solid #2882fc;
 border-bottom:2px solid #fff;
 color:antiquewhite;
 font-size:18px;
 font-weight:500;/*googlefontsをいれたら*/
 text-align:center;
 line-height: 40px;
}
dd{
/*display:none;*//*初めの段階でddを表示させない*/
height:200px;
padding:20px;
border:2px solid #2882fc;
border-top:0;
text-align: center;
line-height:200px;
font-size:30px;
}
dt.open{
background: pink;/*dtがクリックされて開かれたときにピンクになる*/
}
dd.good{/*大吉を大きく表示*/
color:yellow;
font-size: 200%;/*シートのなかの倍サイズ*/
font-weight:900;
}
dd.map{
height:400px;
padding:5px;
}
.gmap{
width:100%;
height:100%;
}