@charset "UTF-8";
h2.free-page {
  position: relative;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-bottom: 6px solid #094;
}

h2.free-page:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: "";
  background: #00cc5b;
}

section, div, p {
  box-sizing: border-box;
  width: 100%;
  margin: 2rem auto;
}

p {
  padding: 0 0.5rem;
}

p.headphoto {
  margin: 1rem 0;
  width: 100%;
}

img {
  max-width: 100%;
}

div.free-contents h3 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0.3em 0.3em 0.3em 0.5em;
  background-color: rgb(32, 171, 229);
}
div.free-contents ul {
  padding: 0;
  position: relative;
  margin: 2rem;
}
div.free-contents ul > li {
  margin: 0.8rem;
  color: #333;
  border-left: solid 6px #2d8fdd; /*左側の線*/
  background: #f1f8ff; /*背景色*/
  margin-bottom: 3px; /*下のバーとの余白*/
  line-height: 1.5;
  padding: 0.5em;
  list-style-type: none !important; /*ポチ消す*/
}
div.free-contents ol {
  padding: 0;
  position: relative;
  margin: 2rem;
}
div.free-contents ol > li {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 0.3em;
  margin: 0.2em;
  list-style-type: none !important; /*ポチ消す*/
}
div.free-contents ol > li::before {
  transform: rotate(-45deg);
  width: 0.4em;
  height: 0.4em;
  border-bottom: 3px solid #d04030;
  border-right: 3px solid #d62f23;
  content: "";
}

.button-30 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: 1px solid #1d8ad7;
  border-radius: 5px;
  background-color: #fff;
  color: #1d8ad7;
  font-size: 1em;
}

.button-30:hover {
  animation: anima-button-30 1s;
}

@keyframes anima-button-30 {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 138, 215, 0.5);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
  }
}
ul.custom-list-text {
  list-style: none;
  padding: 0;
}
ul.custom-list-text li {
  position: relative;
  padding-left: 2.5em;
  padding-top: 1.8em !important;
  margin-bottom: 15px;
  border-radius: 0 10px 10px 0;
}
ul.custom-list-text li::before {
  content: attr(data-label);
  position: absolute;
  left: -1px;
  top: -2px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  background: #2d8fdd;
  padding: 2px 6px;
  border-radius: 0 0 4px 0;
  transform: translateY(2px);
}
ul.custom-list-text li a {
  text-decoration: none;
  color: #333;
}

span.itemlink {
  font-size: 0.75em;
  padding-left: 1.5em;
}
span.itemlink::before {
  content: ">>";
}/*# sourceMappingURL=free-page.css.map */