@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/* fonts */
@font-face {
  src: url(../fonts/NotoSansJP-Bold.woff) format("woff"), url(../fonts/NotoSansJP-Bold.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
/*weight:700*/
@font-face {
  src: url(../fonts/NotoSansJP-Medium.woff) format("woff"), url(../fonts/NotoSansJP-Medium.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
/*weight:500*/
@font-face {
  src: url(../fonts/NotoSansJP-Regular.woff) format("woff"), url(../fonts/NotoSansJP-Regular.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
/*weight:400*/
/**/
html {
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  html {
    font-size: 0.6944444444vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.6rem;
}

/**/
.red {
  color: #f02424;
}

.back_yellow {
  background: #F5DD33;
  font-weight: 700;
}

.under_line {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

.strong {
  font-size: 130%;
}
@media only screen and (min-width: 750px) {
  .strong {
    font-size: 150%;
  }
}

.middle {
  font-size: 115%;
}
@media only screen and (min-width: 750px) {
  .middle {
    font-size: 125%;
  }
}

.small {
  font-size: 80%;
}

.text_center {
  text-align: center;
}

/**/
.article {
  padding: 0 1.5rem;
}
@media only screen and (min-width: 750px) {
  .article {
    max-width: 710px;
    margin: 0 auto;
    padding: 0;
  }
}
.article .pr {
  text-align: right;
  font-size: 1rem;
  color: #888;
  margin-bottom: 1em;
}
.article h1 {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  font-weight: 700;
}
@media only screen and (min-width: 750px) {
  .article h1 {
    font-size: 3rem;
  }
}
.article .heading_image {
  margin-bottom: 2rem;
}
.article .first_view {
  margin-bottom: 1rem;
}
.article section + section {
  margin-top: 4rem;
}
@media only screen and (min-width: 750px) {
  .article section + section {
    margin-top: 6rem;
  }
}
.article h2 {
  font-weight: 700;
  border-left: 4px solid #333;
  border-bottom: 2px solid #333;
  font-size: 1.8rem;
  background: #f6f6f6;
  margin-bottom: 0.5em;
  padding: 0.4em 0.8em;
  line-height: 1.3;
}
@media only screen and (min-width: 750px) {
  .article h2 {
    font-size: 2rem;
  }
}
.article .main_text .note {
  margin-top: 0.5em;
}
.article .main_text span:not(.back_yellow) {
  display: inline-block;
}
.article .main_text + .main_text {
  margin-top: 4rem;
}
.article .main_text + .image {
  margin-top: 1.5rem;
}

.image + .main_text {
  margin-top: 1.5rem;
}

.note {
  display: inline-block;
  font-size: 1.2rem;
}

.heading {
  margin-bottom: 2rem;
}

.cta_area {
  margin-top: 4rem;
}
.cta_area .top_heading {
  text-align: center;
}
.cta_area .top_heading span {
  display: inline-block;
  padding: 0 1em;
  position: relative;
}
.cta_area .top_heading span::before, .cta_area .top_heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 1em;
  height: 2px;
  background: #333;
}
.cta_area .top_heading span::before {
  transform: rotate(70deg);
  left: 0;
}
.cta_area .top_heading span::after {
  transform: rotate(-70deg);
  right: 0;
}
.cta_area .cta_btn {
  margin-top: 1.5rem;
}
.cta_area .cta_btn a {
  font-weight: 700;
  text-align: center;
  display: block;
  position: relative;
  padding: 1em 0;
  background: #ed4a4d;
  box-shadow: 0 3px 0 0 rgb(211, 10, 41);
  border-radius: 8rem;
  font-size: 2rem;
  color: #fff;
  overflow: hidden;
}
.cta_area .cta_btn a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny 3s ease-in-out infinite;
}
@keyframes shiny {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta_area + .more_contents {
  margin-top: 4rem;
}
@media only screen and (min-width: 750px) {
  .cta_area + .more_contents {
    margin-top: 6rem;
  }
}

/*もくじ*/
.table_of_contents, .table_of_contents_bottom {
  background: #f5f5f5;
  padding: 1.5rem 2rem;
}
.table_of_contents .heading, .table_of_contents_bottom .heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 750px) {
  .table_of_contents .heading, .table_of_contents_bottom .heading {
    font-size: 2rem;
  }
}
.table_of_contents ul li, .table_of_contents_bottom ul li {
  color: #555;
  padding: 0.4em 0;
}
.table_of_contents ul li + li, .table_of_contents_bottom ul li + li {
  border-top: solid 1px #ddd;
}

/**/
.intro {
  margin-bottom: 2rem;
}
.intro .note {
  margin-top: 0.5em;
}

/**/
.check_area {
  background-color: #f7fef0;
  border: 4px solid #e2f4dc;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.check_area h3 {
  font-weight: 700;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #ddd;
}
.check_area h3 .yellow_green {
  color: #99cc00;
}
.check_area h3 + div {
  margin-top: 1rem;
}
.check_area h4 {
  font-weight: 700;
  padding: 0 0 0 1.2em;
  position: relative;
}
.check_area h4::before {
  position: absolute;
  content: "▼";
  color: #99cc00;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80%;
}
.check_area div dl {
  display: flex;
  margin-top: 0.5rem;
}
.check_area div dl dt {
  font-weight: 500;
  width: 5em;
  position: relative;
}
.check_area div dl dt::after {
  position: absolute;
  content: ":";
  top: 50%;
  transform: translateY(-55%);
  right: 0.5rem;
}
.check_area div dl dd .small {
  font-size: 1.2rem;
}
.check_area div + div {
  margin-top: 1rem;
}

/**/
.how_to_use ul {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  gap: 1%;
}
.how_to_use ul li {
  background: #f0eef2;
  border: solid 5px #f0eef2;
  width: 32.6666666667%;
  font-size: 1.2rem;
}
@media only screen and (min-width: 750px) {
  .how_to_use ul li {
    font-size: 1rem;
  }
}
.how_to_use ul li p {
  padding-top: 0.5em;
}

/**/
.footer {
  margin-top: 4rem;
  border-top: solid 1px #ddd;
  padding: 15px;
}
@media only screen and (min-width: 750px) {
  .footer {
    max-width: 710px;
    margin: 4rem auto 0;
    padding: 2rem;
  }
}
.footer ul {
  display: flex;
  align-items: center;
}
.footer ul li {
  font-size: 1.2rem;
  color: #888;
  width: 50%;
  text-align: center;
}

/**/
.pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 15px;
}
.pagetop a {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  width: 4rem;
  height: 4rem;
}/*# sourceMappingURL=style.css.map */