@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 548px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0.8rem;
  background: #CCDF79 ; 
  background: -webkit-linear-gradient(180deg, #CCDF79 , #839E46); 
  background: -o-linear-gradient(180deg, #CCDF79 , #839E46); 
  background: -moz-linear-gradient(180deg, #CCDF79 ,#839E46); 
  background: linear-gradient(180deg, #CCDF79 , #839E46); 
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0rem 0rem 1.5rem;
  font-size: 1.692em;
  line-height: 1.1em;
  color: #B21E34;
  padding: 1rem;
  border: 3px solid #BBD241;
  border-radius: 1.5rem;
  display: inline-block;
  font-weight: 800;
}

h1 span {
  font-size: 0.8em;
  color: #000;
  display: block;
  text-align: right;
  font-weight: 400;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
  width: 33%;
  text-align: left;
  padding-left: 2.1rem;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0rem 0rem 1.5rem 0rem;
  list-style-image: url();
  list-style: none;
  text-align: left;
}

li {
  padding-left: 1rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 0.2rem;
}

/* Ende Header */

/* Article */
article {
  padding: 1rem 1rem 0.3rem;
  background: #fff;
  text-align: center;
}
article > a img{
  margin-top: -2rem;
}
section{
  display: flex;
  justify-content: flex-start;
  position: relative;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0.5rem 2rem 0rem;
  font-size: 1.2em;
  line-height: 1.3em;
}
footer strong{
  font-weight: 900;
}
footer a{
  color: #E41F24;
}
footer > span{
  text-shadow: -2px 0 #D7DFBB, 0 2px #D7DFBB, 2px 0 #D7DFBB, 0 -2px #D7DFBB;
}
footer aside{
  position: absolute;
  bottom: 0;
  right: 0;
}
footer aside img{
  margin-bottom: -0.4rem;
}
/* Ende Footer */

/* Responsive */
@media only screen and (max-width:548px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0.5rem;
  }
  h1 span{
    text-align: left;
  }
  p {
    text-align: left;
  }
  h2{
    width: 100%;
    padding-left: 0;
    margin-bottom: 1rem;
  }
  section{
    display: block;
  }
  article > a img{
    margin-top: 0;
  }
  footer{
    padding-left: 1rem;
    padding-bottom: 7rem;
  }
}

/* Ende Responsive */
