@charset "utf-8";

/*----------------------------------

Setup

----------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  background: #fff;
  height: 100%;
  text-align: left;
  color: #00adc3;
  font-size: 100%;
  font-weight: 700;
  font-family: 'Overpass','Noto Sans JP',"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: 0em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #009556;
}

a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #009556;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

a:hover::after {
  transform: scale(1, 1);
}

::-moz-selection {
  background: #009556;
  color: #fff;
}

::selection {
  background: #009556;
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}


@media screen and (max-width: 768px) {



.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.inner {
  padding: 0 5vw;
}

}


/*----------------------------------

Footer

----------------------------------*/
footer {
  padding: 100px 0;
  background: #009556;
  color: #fff;
  text-align: center;
  letter-spacing: .2em;
}

footer dt {
  font-size: 2.4rem;
  font-weight: 700;
}

footer dt:nth-of-type(2) {
  margin-top: 50px;
}

footer dd {
  font-size: 1.8rem;
  margin-top: 20px;
}

footer p {
  margin-top: 100px;
}


@media screen and (max-width: 768px) {

footer {
  padding: 80px 0;
  letter-spacing: .15em;
}

footer dt {
  font-size: 1.6rem;
}

footer dd {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 10px;
}

footer p {
  margin-top: 80px;
}



}


