@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
button, hr, input {
  overflow: visible;
}

progress, sub, sup {
  vertical-align: baseline;
}

[type=checkbox], [type=radio], legend {
  box-sizing: border-box;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

details, main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

/*------------------------------------*\
    $ 共通
\*------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  min-width: 100%;
  min-height: 100%;
}

body {
  background-color: #000;
  color: #e6e6e6;
  font-family: "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  position: relative;
  min-width: 100%;
  min-height: 100%;
}

::-webkit-scrollbar {
  width: 8px; /* スクロールバーの幅を指定 */
}

::-webkit-scrollbar-thumb {
  background-color: #333; /* スクロールバーのつまみの色 */
}

::-webkit-scrollbar-track {
  background-color: #000; /* スクロールバーの背景色 */
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #e6e6e6;
}

a:hover {
  color: #e6e6e6;
}

a:visited {
  color: #666666;
}

h2 {
  font-size: 24px;
}

p {
  line-height: 27px;
  word-spacing: 3px;
  letter-spacing: 3px;
}

table {
  font-size: 14px;
  line-height: 27px;
  word-spacing: 3px;
  letter-spacing: 3px;
}

time {
  display: block;
  color: #a6a6a6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-style: italic;
  font-size: 0.9rem;
}

/*------------------------------------*\
    $ トップページ
\*------------------------------------*/
#topWrapper {
  padding: 2% 10% 2% 10%;
}
#topWrapper a {
  color: #6bf;
  text-decoration: none;
}
#topWrapper a:hover {
  text-decoration: underline;
}
#topWrapper p {
  letter-spacing: 1px;
}
#topWrapper .deadLink {
  color: #6bf;
  text-decoration: line-through;
}
#topWrapper .linkDescription {
  margin-bottom: 2em;
}
#topWrapper #titleLogo {
  text-align: center;
  margin: 0 0 3em 0;
}
#topWrapper #postBlock {
  padding: 0.7em 0rem 0.7em;
}
#topWrapper #postBlock:first-child {
  border-top: 2px solid #1e1e1e;
}
#topWrapper #formBlock {
  text-align: center;
  margin-top: 5em;
}
#topWrapper input {
  color: #fff;
  background-color: #000;
  font-size: 13px;
  letter-spacing: 3px;
  text-align: center;
  border: 1px solid #808080;
  border-radius: 0;
  width: 34%;
  min-width: 150px;
  box-sizing: border-box;
  transition: 0.5s;
  transition-duration: 0.5s;
  padding: 3px 8px;
}
#topWrapper textarea {
  color: #fff;
  background-color: #000;
  font-size: 13px;
  word-spacing: 3px;
  letter-spacing: 3px;
  line-height: 17px;
  margin: 10px 0 0 0;
  border: 1px solid #808080;
  border-radius: 0;
  width: 70%;
  box-sizing: border-box;
  transition-duration: 0.5s;
  padding: 5px 8px;
}
#topWrapper input[type=text]:focus,
#topWrapper input[type=email]:focus,
#topWrapper input[type=send]:focus,
#topWrapper textarea:focus {
  border-color: #1abc9c;
  outline: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  #topWrapper textarea {
    width: 100%;
  }
  #topWrapper input {
    width: 100%;
  }
}

/*------------------------------------*\
    $ RO UO
\*------------------------------------*/
#header {
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
  height: 37px;
  line-height: 37px;
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

#gototop {
  font-size: 12px;
}

.header_menu {
  padding: 0 15px;
}

#dairy_title {
  font-size: 26px;
  font-weight: normal;
}

.dairy_top_main {
  width: 100%;
  text-align: center;
}

.dairy_top_main img {
  margin: 20px 0 0 0;
}

.mini {
  font-size: 10px;
}

#update span {
  color: #f00;
}

.dairy_head {
  font-size: 18px;
}

ul {
  padding-left: 20px;
  margin-bottom: 2rem;
}

/* 全体 */
#content {
  position: relative;
  width: 100%;
  height: 100%;
}

/* スマホ時 */
#rightArea {
  min-width: 100%;
  min-height: 100%;
  padding-top: 20px;
  padding-left: 10px;
  padding-bottom: 30px;
  padding-right: 10px;
}

/* サイドバーOpen時のサイドバー */
#sidebar.active {
  left: 180px;
  width: 180px;
}

/* サイドバー */
#sidebar {
  margin-left: -180px;
  width: 180px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #111;
  padding: 6px 10px 0;
  box-sizing: border-box;
  opacity: 0;
  height: 100vh;
  overflow-y: auto;
  scrollbar-color: #333 #111;
  scrollbar-width: thin;
}
#sidebar.active {
  opacity: 1;
}

#btn {
  position: fixed;
  z-index: 5;
  top: 10px;
  left: 10px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  opacity: 1;
}
#btn div {
  width: 35px;
  height: 2px;
  margin-bottom: 8px;
  background-color: #00DFFC;
  transition: transform 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91), opacity 500ms, background-color 250ms;
}

#btn.active {
  left: 195px;
}
#btn.active #top {
  transform: translateY(10px) rotate(-135deg);
}
#btn.active #middle {
  opacity: 0;
  transform: rotate(135deg);
}
#btn.active #bottom {
  transform: translateY(-10px) rotate(-45deg);
}

#btn, #btn * {
  will-change: transform;
}

#box {
  will-change: transform, opacity;
}

/* タブレット以上のサイズ */
@media (min-width: 48em) {
  #rightArea {
    padding-top: 10px;
    padding-left: 200px;
    padding-bottom: 30px;
    padding-right: 20px;
  }
  #sidebar {
    left: 180px;
    opacity: 1;
  }
  #btn {
    position: fixed;
    left: -100px;
    opacity: 0;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
}
/* スマホ時にボタンONでrightAreaを右にずらす */
@media (max-width: 48em) {
  #rightArea.active {
    position: relative;
    left: 180px;
  }
}/*# sourceMappingURL=style.css.map */