﻿@charset "UTF-8";
/*----------------------------------------
initial setting
----------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  font-size: inherit;
  line-height: inherit;
}
::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}
span, small, strong, em, b, i {
  color: inherit;
}
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
input, select {
  vertical-align: middle;
}
input, textarea {
  margin: 0;
  padding: 0;
}
address {
  font-style: normal;
}
q::before,
q::after {
  display: none;
}
/*----------------------------------------
base
----------------------------------------*/
body {
  color: #333;
  font-family: 'Rubik', 'Noto Sans JP',  sans-serif;/*文字種見直し*/
  line-height: 1.3;
  background-color:#eee;
}
a {
  color: #000000;
  transition: color 0.3s;
}
a:hover {
  color: #006400;/*color 設定再考*/
  text-decoration: none;
}

.footer-area{
  background-color: black;
  color:white;
  text-align:center;
  font-size:2.5em;
  padding:30px;
}
@media screen and (max-width: 768px), print {
.footer-area{
  background-color:#000;
  
}
}

