@charset "utf-8";
/* SP & TB & PC */

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap');

body,
html {
  color: #222;
  height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  background: #FBEC96;
}

.wrapper {
  padding: 30px 10px;
  border: 10px #088534 solid;
  height: 100%;
  position: relative;
}

.wrapper .inner {
  width: 100%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.wrapper .inner p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }

  .wrapper {
    height: 100vh;
    border: 15px #088534 solid;
  }

  h1 img {
    max-width: 240px;
  }

  .wrapper .inner p {
    font-size: 15px;
    line-height: 2;
    text-align: center;
  }
}

