@charset "utf-8";

:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #4F575A;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 1140px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}

p {
  padding-bottom: 1rem;
  text-align: justify;
}

h1 {
  margin: 0;
  font-size: 2.25em;
  line-height: 1.3;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  color: #003C60;
  margin-bottom: 0;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
a.color {
  color: #003C60;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0 0 1rem;
  list-style: none;
}

li {
  padding-left: 1.25rem;
}

ul li:before {
  content: "»";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  color: #003C60;
  margin-left: -1.25rem;
}

.ttl {
  color: #003B5F;
  text-shadow: 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff;
  text-align: center;
  position: absolute;
  top: 12rem;
  left: 30%;
}

.ttl p {
    padding: 0;
    text-align: center;
    font-size: 1.5em;
    line-height: 1.3;
}

article {
  padding: 1rem 8rem;
}
.center {
  color: #000;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}
footer {
  position: absolute;
  bottom: 0.5rem;
  right: 3rem;
}

@media only screen and (max-width:1139px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  p :is(a, span) {
    display: inline-block;
  }
  .ttl {
    position: static;
  }
  br {
    display: none;
  }
  article {
    padding: 1rem 2rem 0;
  }
  footer {
    position: static;
    display: flex;
    justify-content: center;
    padding: 0 1rem 1rem;
  }
}
@media only screen and (max-width: 480px) {
  article {
    padding: 1rem 1rem 0;
  }
}