@charset "UTF-8";


/* base
----------------------------------- */
html,
body {
  height: 100%;
  background: #fff;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  -webkit-text-size-adjust: none;
  word-break: break-word;
  text-rendering: optimizeLegibility;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt";
  color: #555;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.7;
  letter-spacing: .1em;
}

a {
  color: inherit;
  transition: all .4s ease-out;
}

* {
  box-sizing: border-box;
  outline: none;
}


/* layout
----------------------------------- */
.wrap {
  padding: 0 0 78px;
  position: relative;
}

.container>section {
  padding: 6rem 6%;
}


/* footer
----------------------------------- */
footer {
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .5;
  font-size: 1.1rem;
}


/* contents
----------------------------------- */
h1 {
  font-size: 1.6em;
  margin: 0 0 2em;
}

h2 {
  font-size: 1.25em;
}


/* pc
============================== */
@media screen and (min-width: 960px) {

  .sp {
    display: none !important;
  }

  html {
    font-size: 70%;
  }

  .container>section {
    width: 80rem;
    margin: 0 auto;
    padding: 6rem 0;
  }

  h1 {
    font-size: 2.4rem;
  }

}


/*SP
=================================== */
@media screen and (max-width: 959px) {
  .pc {
    display: none !important;
  }

  .container>section {
    padding-top: 5rem;
  }

}