@charset "utf-8";

/****************************************
基本
****************************************/
html,
body {
  overflow-x: hidden;
  min-height: 100vh;
}

body {
  font-size: 1.6rem;
  font-family: 'Noto Sans Japanese', sans-serif;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.8;
}

.wrap {
  width: 90%;
  max-width: 960px;
  margin: auto;
  position: relative;
}

.index {
  text-indent: -1em;
  margin-left: 1em;
}

.pcObj {
  display: block;
}

.spObj {
  display: none;
}

.spPtObj {
  display: none;
}

@media only screen and (max-width: 768px) {

  .telLink a,
  .telLink a:visited,
  .telLink a:hover {
    color: #333;
  }

  .telLink a {
    text-decoration: underline;
  }

  .pcObj {
    display: none;
  }

  .spObj {
    display: block;
  }
}

@media only screen and (max-width: 768px) and (orientation : portrait) {
  .spPtObj {
    display: block;
  }
}

/****************************************
フッタ
****************************************/
#goTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;

  & a {
    display: block;
    color: #FFF;
    font-size: 1.8rem;
    border: 1px solid #FFF;
    background-color: #000;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
}

body > footer {
  position: sticky;
  top: 100vh;
}
