/*
Theme Name: Alpha Child
Template: wp-alpha
Author: Yoshida Design Inc.
Version: 1.1
*/
/* PC表示時に投稿エリアの本文のフォントサイズと行間を変更する */
@media screen and (min-width: 980px) {
body .entry-content,
body .entry-content p{
line-height: 1.8;
font-size: 18px;
}
}
/* 投稿タイトルの文字サイズを変更 */
body .hentry .entry-title {font-size: 30px;}
/* スマホ表示時に本文サイズを変更 */
@media(max-width: 640px) {
body .entry-content p,
body .textwidget p {
line-height: 1.8;
font-size: 18px;
}
}
/* スマホ表示時に文字サイズを変更 
 * 62.5%が初期設定*/
@media(max-width: 640px) {
html {
font-size: 62.5%;
}
}


