@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  color: #432;
  font-family: "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  display: grid;
  place-items: center;
}

.container {
  overflow: auto;
  scroll-snap-type: y mandatory;
  height: 100vh;
  width: 100%;
}
section {
  scroll-snap-align: start;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* 要素最大横幅/要素幅/margin領域/内側左右余白 */
.wrapper, .info-wrapper, .sns-wrapper, .msg-wrapper, .form-wrapper {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* FontStyle(太さ影/サイズ/色/大小文字変換×/要素間の下の余白) */
.title-info, .title-contact {
  font-family: 'Pacifico', cursive;
  font-weight: normal;
  text-transform: none;
  font-size: 4.5rem;
  color: #432;
  text-shadow: 2px 2px 10px #ffffff,
    -2px 2px 10px #ffffff,
    2px -2px 10px #ffffff,
    -2px -2px 10px #ffffff;
}


/* FontStyle(太さ影/サイズ/色/Textの行間/要素間の余白上下(左右0)) */
.hero p, .info-wrapper p {
  font-family: 'Kaisei Tokumin', serif;
  color: #fff;
  line-height: 1.7;
  font-size: 1.125rem;
  margin: 10px 0 42px;
  text-shadow: 2px 2px 10px #432,
    -2px 2px 10px #432,
    2px -2px 10px #432,
    -2px -2px 10px #432;
}
footer {
    text-align: center;
    padding: 26px 0;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
}
