@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;

	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@media (min-width: 1000px) {
    header, main, footer {
        width: 1000px;
        margin: 0 auto;
    }
}

body {
    font-family: "M PLUS Rounded 1c";
    font-size: 14px;
}

.headerWrapper {
    background-color: #000;
    position: sticky;
    top: 0;
}

header {
    /* width: 1000px; */
    /* margin: 0 auto; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.headerLogo a {
    text-decoration: none;
}

.headerLogo span {
    color: #FFF;
    font-size: 1.143em;
}

.breadcrumbs ol {
	list-style: none;
	display: flex;
	align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
	content: '>';
	margin: 0 3px 0 0;
}

.breadcrumbs a {
	text-decoration: none;
	color: #000;
}

.breadcrumbs i {
	margin: 0 -5px 0 0;
}

.breadcrumbs li:last-child span {
	color: #5E5E5E;
}

.pageTitle {
	text-align: center;
	margin: 20px 0;
}

.pageTitle h2 {
	font-weight: bold;
	font-size: 24px;
}

.loginButton {
    background-color: #FFF;
    padding: 2px 5px;
    border-radius: 3px;
}

.loginButton a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

main {
    padding: 10px 15px;
}

.footerWrapper {
    background-color: #000;
}

footer {
    padding: 20px 0;
}

.sns {
    margin: 0 0 10px 0;
}

.sns ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sns li:not(:last-child) {
    margin: 0 20px 0 0;
}

.sns a {
    text-decoration: none;
}

.sns i {
    color: #FFF;
    font-size: 30px;
}

.copyright {
    text-align: center;
}

.copyright span {
    color: #FFF;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* 背景色は自由 */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; /* 初期は表示 */
    transition: opacity 1s ease; /* 1秒かけてフェード */
    z-index: 9999;
}

.bars {
  display: flex;
  align-items: flex-end; /* 下端揃え */
  gap: 8px;
}

.bar {
  display: flex;
  flex-direction: column-reverse; /* 下から上にLED */
  gap: 2px;
}

.led {
  width: 12px;
  height: 8px;
  border-radius: 2px;
  opacity: 0.2; /* 初期は消灯風 */
  transition: opacity 0.2s;
}

.led.green { background: limegreen; }
.led.yellow { background: yellow; }
.led.red { background: red; }

.marginNone {margin: 0 !important;}