@charset "utf-8";
/* CSS Document */


@font-face{
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src:
    local("Noto Sans CJK JP")
    url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),   
     
     url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),   

     url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}


/*-------------------------------
  *全体の設定
 -------------------------------*/

html{
    font-size: 62.5%;/*16px x 62.5%=10px*/
}
body{
    color: #333;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    background: #fff;
    text-align: center;
}
a{
    color: #333;
    text-decoration: none;
    transition: all .2s;    
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}
a:hover{
    opacity:0.5;
}

img{
    max-width: 100%;
    height: auto;
}
.img-pc{
    display: none;
}
.current{
    color: #888;
}
.section{
    text-align: center;
    padding: 10px 0 50px;
}
/*見出し用フォント→　font-family: 'Shippori Mincho', serif; */
/*本文用フォント→　font-family: 'Noto Serif JP', serif; */
/*font-family: "Hannari";
font-family: 'Shippori Mincho', serif;*/


/*-------------------------------
  *余白
 -------------------------------*/
.header{
    margin: 30px 0;
    font-size: 3rem;
}
.wrapper{
    margin: 0 10px;
}
.contents{
    margin: 30px 0;
}
.footer{
    margin: 30px 0 10px;
}
    
/*-------------------------------
 *btn
 -------------------------------*/
     
 .btn{
    display: block;
    padding: 5px 5px;
    border-radius: 8px;
    font-family: "Sawarabi Mincho", serif;
    font-size: 1.5rem;
    margin: 10px auto;
    width: 300px;
    border: 1px solid #f2b4b7;

.btn:hover,
.btn:focus{
    background: rgba(0,0,0,0.7);
    cursor: pointer;
}
