/*
Theme Name: s-grands Theme
Theme URI: https://s-grands.com/
Author: s-grands corporate
Author URI: https://s-grands.com/
Description: Minimal corporate theme (full scratch).
Version: 1.0
Text Domain: s-grands-theme
*/
*,
*::before,
*::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0052cc; text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header { border-bottom: 1px solid #eee; padding:16px 24px; }
.site-title { font-size:20px; font-weight:700; margin:0; }
.site-main { max-width:960px; margin:40px auto; padding:0 16px; }
.site-footer { border-top:1px solid #eee; padding:16px 24px; text-align:center; color:#666; }
.gnav__list { list-style:none; margin:0; padding:0; display:flex; gap:16px; }
.entry__title { font-size:26px; margin:0 0 12px; }
.entry__meta { font-size:13px; color:#888; margin-bottom:16px; }
.entry__content { font-size:16px; }
.entry-list { list-style:none; padding:0; }
.entry-list__item { border-bottom:1px solid #eee; padding:16px 0; }
.entry-list__title { font-size:18px; margin:0 0 4px; }



/*====================================================================================================
管理ボタン
====================================================================================================*/

.wpEditBtn {
    z-index: 9999;
    position: fixed;
    bottom: 150px;
    right: -1px;
    display: grid;
    place-items: center;
    background-color: #333;
    border: 1px solid #333;
    text-align: center;
    color: #fff;
    border-radius: 10px 0 0 10px;
    line-height: 1.4;
    font-size: 14px;
    width: 80px;
    height: 80px;
    transition: all .3s;
}

.wpEditBtn:hover {
    background-color: #fff;
    color: #333;
    opacity: 1;
}


