﻿/*
Theme Name: twentysixteen_mm
Template: twentysixteen
*/

@import url('../twentysixteen/style.css');


.site-header {
    padding-top: 0rem;      /* サイトタイトルの上が広すぎるので */
    padding-bottom: 0rem;   /* サイトタイトルの下が広すぎるので */
}





*/
Gridで超安定
1列 / 2列 / 3列が完全に意図通り
WordPressテーマに強い
将来の修正が圧倒的に楽*/

.events {
  display: grid;
  gap: 20px;
}

/* スマホ：1列 */
@media (max-width: 767px) {
  .events {
    grid-template-columns: 1fr;
  }
}

/* タブレット：2列 */
@media (min-width: 768px) {
  .events {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PC：3列 */
@media (min-width: 1024px) {
  .events {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event {
  border: 0;
}



/***** リンク下線非表示 *****/

a:link {
box-shadow: none;
}
a:visited {
box-shadow: none;
}
a:hover {
box-shadow: none;
}


/***** ↓ topへ
http://takayakondo.com/page-top-link/ ↓ *****/

.page_top {
position:fixed;
bottom:20px;
right:20px;
width: 50px;
height: 50px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color:#fff;
font-size:20px;
text-decoration:none;
background:#2EA2CC;
border: 3px solid #ffffff;
text-align: center;
line-height: 50px;
}

*/
フォント変更候補
Sawarabi Mincho
Sawarabi Gothic
Noto Sans Japanese
*/

