/* CSS Document */
html {
  font-size: 16px; }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  font-size: 16px; }
  @media screen and (max-width: 1200px) {
    body {
      font-size: 1.2vw; } }
  @media screen and (max-width: 599px) {
    body {
      font-size: 3.75vw; } }

a {
  text-decoration: none;
  transition: 0.5s;
  color: #036eb8; }
  a:hover {
    opacity: 0.75; }

strong {
  font-weight: 700; }

ul li {
  list-style-type: none; }

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

* {
  box-sizing: border-box; }

.pc {
  display: block; }
  @media screen and (max-width: 599px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 599px) {
    .sp {
      display: block; } }

.tab {
  display: none; }
  @media screen and (max-width: 1200px) {
    .tab {
      display: block; } }

/*--------------------------------------
top
--------------------------------------*/
#top {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }
  #top #link {
    text-align: center;
    max-width: 95%;
    margin: 0 auto; }
    #top #link h1 {
      width: 20em;
      max-width: 80%;
      margin: -5em auto 4em; }
      #top #link h1 img {
        width: 100%; }
    #top #link ul li {
      margin-top: 1em;
      font-size: 1.125em;
      line-height: 1.4; }
      #top #link ul li strong {
        text-decoration: underline;
        font-size: 125%; }
        @media screen and (max-width: 599px) {
          #top #link ul li strong {
            display: block; } }
  #top footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    #top footer #copyright {
      background: #036eb8;
      color: #fff;
      padding: 1.5em 0 1.75em;
      text-align: center; }
      #top footer #copyright small {
        font-size: 0.8125em;
        line-height: 1.5; }
        #top footer #copyright small .pc {
          display: inline; }
