/* CSS Reset */
body, div, section, article, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, header, footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 900px) {
  a:active, a:hover {
    transition: all 0.4s;
  }
}

:focus {
  outline: none;
}

a:hover, a:active {
  transition: all 0.6s;
  text-decoration: none;
}

a:-webkit-any-link {
  cursor: pointer;
}

* {
  min-height: 0;
  min-width: 0;
}

body p {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 550px) {
  body {
    background-image: url(../img/bg_sp.jpg);
  }
}

header {
  background-color: #fff;
  padding: 20px;
  width: 100%;
}
header .header_logo {
  max-width: 227px;
  width: 100%;
  margin: 0 auto;
}

main {
  flex: 1;
}
main .main_contents {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .main_contents .main_contents_logo {
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 550px) {
  main .main_contents .main_contents_logo {
    max-width: 248px;
  }
}
main .main_contents .main_contents_text {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  color: #0A741F;
}
@media screen and (max-width: 550px) {
  main .main_contents .main_contents_text {
    font-size: 18px;
  }
}
main .main_contents .main_contents_detail {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  color: #262626;
}
@media screen and (max-width: 550px) {
  main .main_contents .main_contents_detail {
    font-size: 14px;
  }
}

footer {
  width: 100%;
}
footer .footer_top {
  padding: 17px 20px;
  background-color: #484848;
}
footer .footer_top .footer_top_text {
  font-size: 10px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
footer .footer_bottom {
  padding: 17px 20px;
  background-color: #FCF8EA;
}
footer .footer_bottom .copyright {
  font-size: 10px;
  line-height: 1;
  color: #42342C;
  text-align: center;
}/*# sourceMappingURL=style.css.map */