@charset 'UTF-8';
html {
  overflow-y: scroll;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

/* html5tag */
header, footer, nav, section, article, figure, aside {
  display: block;
  margin: 0;
  padding: 0;
}

html, body, p, h1, h2, h3, h4, h5, h6, div, span, ul, ol, li, dl, dt, dd, table, th, td, input, textarea, section, article, nav, a {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

header, footer, nav, section, article, figure, aside {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}



h1,
h2 {
  font-size: 100%;
  font-weight: normal;
}

/* === CSS === */
html {
  width: 100%;
  height: auto;
  scroll-behavior: smooth;
}

body {
  background-image: url('../img/bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 140%;
  font-weight: 400;
  color: #fff;
  line-height: 1.8rem;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}



/* === section === */
section .point {
  position: relative;
  padding: 100px;
  z-index: 1;
}

section h1 {
  width: 580px;
  margin: 0 0 20px;
  padding: 5px 15px;
  background: #fff;
  border-radius: 20px;
  font-weight: 600;
  color: #ca584e;
  text-align: center;
}

section h2 {
  margin: 0 0 20px;
  font-size: 180%;
  font-weight: 800;
}

span {
  font-weight: 600;
  color: #ffef40;
}

.textCenter {
  width: 100%;
  margin: 50px auto;
  text-align: center;
}


.clearBoth {
  clear: both;
}



@media only screen and (max-width: 1100px) {
  section .point {
    padding: 50px 25px;
  }
  section h2 {
    line-height: 2.4rem;
  }
}


/* === footer === */
footer {
  position: absolute;
  width: 100%;
  padding: 10px 0;
  font-size: 80%;
  color: #fff;
  text-align: center;
  z-index: 2;
}

