@charset "UTF-8";
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #E0E0E0;
  letter-spacing: 0.05em;
  background-color: #191919;
  height: 100vh;
  position: relative;
}
article{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  max-width: 600px;
  height: 25rem;
}
h1{
  text-align: center;
  padding: 30px 50px 60px 50px;
}
h1 img{
  width: 100%;
  max-width: 300px;
}
section {
  padding: 20px 50px;
}
section h2{
  font-family: 'Jost', sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
section h3{
  font-family: 'Jost', sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  color: #D4BB3C;
}
section p{
font-size: 16px;
line-height: 1.6em;
margin-bottom: 15px;
}
@media only screen and (max-width: 768px){
  section p{
    font-size: 14px;
    line-height: 1.6em;
    }
}