/*
 Theme Name:   OnePress Child
 Theme URI:    https://www.famethemes.com
 Description:  OnePress sample child theme
 Author:       FameThemes
 Author URI:   https://www.famethemes.com
 Template:     onepress
 Version:      1.0.0
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  onepress-child
*/

/* Add your custom css below
-------------------------------------------------------------- */
/* 親要素でflex指定 */
.reversebox {
 display: flex;
}

/* 幅781px以下は縦向き表示にする設定 */
@media screen and (max-width: 781px) {
 .reversebox {
  flex-direction: column;
 }
}

/* 子要素に縦向きの際の並び順を指定 */
@media screen and (max-width: 781px) {
.order1 {
  order: 1;
}
.order2 {
  order: 2;
}
}


/***** カラムの入れ替え *****/
.entry-utility,
.entry-meta {
display: none;
}


/***** サイト全体の文字種と文字サイズ *****/
body {
	/* 文字種 */
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
	/* 基本文字サイズ */
    font-size: 16px;
	/* 基本文字サイズに対する倍率 */
    font-size: 1rem;
}


