@charset "utf-8";

/* ================================
   FONT
================================ */
@font-face {
  font-family: 'Zen Maru Gothic';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://sishuu.com/googlefont/ZenMaruGothic-Bold.woff2') format('woff2');
}

/* ================================
   BASE
================================ */
html {
  background: #ffe;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #300;
  font-weight: 700;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}

/* 横ズレ完全防止 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ================================
   HEADINGS
================================ */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  margin-top: 0;
}

/* ================================
   LINKS
================================ */
a {
  color: #300;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  a:hover {
    color: #800;
    background: #fc6;
  }
}

a img {
  border: 0;
  vertical-align: bottom;
}

/* ================================
   NAVBAR
================================ */
.navbar,
.navbar-brand {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

/* ================================
   BUTTON STYLE 1
================================ */
a.btn-radius-solid {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #300;
  background: #f90;
  border-radius: 6px;
  transition: background 0.3s ease;
}

a.btn-radius-solid:hover {
  background: #f60;
  color: #ffe;
}

/* ================================
   BUTTON STYLE 2
================================ */
.bbtn {
  border: 0;
  padding: 0 20px;
  line-height: 2.5;
  font-size: 1rem;
  color: #fff;
  border-radius: 10px;
  background: tomato;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
  box-shadow:
    inset 2px 2px 3px rgba(255,255,255,0.6),
    inset -2px -2px 3px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bbtn:hover {
  transform: translateY(-2px);
}

/* ================================
   SECTION TITLE
================================ */
.listtitle {
  background: linear-gradient(#ffaa66, #dd5500);
  color: #ffe;
  padding: 8px 12px;
}

.t-bar { background: #f60; color: #ffe; font-size: 10pt; font-weight: 900; font-style: normal; text-align: center; margin-left: auto; margin-right: auto; width: 90%; border: 0 none; cursor: default; }

/* ================================
   CONTENT WRAPPER
================================ */
#contents {
  width: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   COPYRIGHT
================================ */
#copyright,
address.sishuu-copyright {
  font-size: 16pt;
  color: #300;
  font-weight: 700;
}

footer {
  font-size: 14pt;
  color: #300;
  font-weight: 700;
}
