@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.8rem;
  line-height: 1.6;
  position: relative;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
}

img {
  max-width: 100%;
}

ul li {
  list-style: none;
}

.mbS {
  margin-bottom: 0.5em;
}

.mbM {
  margin-bottom: 1em;
}

.mbL {
  margin-bottom: 3em;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.c2 > * {
  width: 48%;
}

@media only screen and (max-width: 768px) {
  .mbL {
    margin-bottom: 2em;
  }
}
body {
  text-align: center;
  background: url(../img/p0521_m.jpg);
  /*
  background: rgba(150, 150, 150, 0.1);
  */
}

#headerBox {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0;
  background: rgb(0, 60, 132);
}
#headerBox .initBox {
  width: 100%;
  max-width: calc(900px + 2em);
  margin: auto;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1em;
}
#headerBox .initBox h1 {
  flex: 1;
}
#headerBox .initBox h1 img {
  height: 3vh;
}
#headerBox .initBox .btn_init a {
  display: inline-block;
  text-decoration: none;
  border: 2px solid #FFF;
  background: #9f000c;
  padding: 0.5em 2em;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  #headerBox .initBox .btn_init a {
    padding: 0.5em;
  }
}
#headerBox .initBox .btn_init a::before {
  font-family: "Material Symbols Outlined";
  content: "\e8cc";
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.6;
  font-size: 2.5rem;
  margin-right: 0.25em;
}
#headerBox .initBox .btn_init a span {
  transition: 0s;
}
#headerBox .initBox .btn_init a:hover {
  background: #fff000;
  color: #000;
}

#wrapperBox {
  margin-top: calc(5.4rem + 4px);
}
#wrapperBox .header {
  background: #fff000;
  margin-bottom: 3em;
}
@media only screen and (max-width: 768px) {
  #wrapperBox .header {
    margin-bottom: 2em;
  }
}
#wrapperBox .header h1 {
  text-align: left;
  padding: 2.7777777778% 0 2.7777777778% 2.7777777778%;
  position: relative;
}
#wrapperBox .header h1::after {
  content: "";
  display: block;
  pointer-events: none;
  width: 56.8888888889%;
  aspect-ratio: 512/274;
  max-width: 512px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: url(../img/title_bg.png) no-repeat 100% 100%;
  background-size: contain;
}
#wrapperBox .header h1 img {
  width: 64.2222222222%;
  max-width: 578px;
  position: relative;
  z-index: 1;
}
#wrapperBox h2 {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  display: inline-block;
}
#wrapperBox h2.large {
  font-size: 3rem;
}
#wrapperBox h2::before, #wrapperBox h2::after {
  content: "";
  width: 0;
  height: 100%;
  border-left: 3px solid rgb(0, 60, 132);
  display: block;
  pointer-events: none;
  position: absolute;
  top: -50%;
}
#wrapperBox h2::before {
  left: 0;
  transform: translateY(50%) rotate(-15deg);
}
#wrapperBox h2::after {
  right: 0;
  transform: translateY(50%) rotate(15deg);
}
#wrapperBox h2.noneline::before, #wrapperBox h2.noneline::after {
  content: none;
}
#wrapperBox h2 span {
  display: inline-block;
  margin: 0 2em;
  color: rgb(0, 60, 132);
}
#wrapperBox h2 span .redline {
  margin: 0 0.1em;
  font-size: 3.2rem;
  background: linear-gradient(transparent 90%, #9f000c 50%);
}
@media only screen and (max-width: 768px) {
  #wrapperBox h2 span .redline {
    display: inline;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  #wrapperBox h2.pcHide {
    display: none;
  }
}
#wrapperBox .page {
  width: 100%;
  max-width: 900px;
  margin: auto;
  position: relative;
  vertical-align: baseline;
  background: rgb(255, 255, 255);
}
#wrapperBox .page dl.pricebox {
  position: relative;
}
#wrapperBox .page dl.pricebox::before {
  content: "";
  width: 16.1111111111%;
  aspect-ratio: 1/1;
  max-width: 145px;
  background: url(../img/price_point.png) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-40%);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #wrapperBox .page dl.pricebox::before {
    width: 70px;
    right: 0.5rem;
  }
}
#wrapperBox .page dl.pricebox dt {
  font-size: 2.4rem;
  padding: 0.5em 0;
  text-align: center;
  background: #fff000;
}
#wrapperBox .page dl.pricebox dd {
  background: rgba(255, 240, 0, 0.2);
  padding: 1em 2em 2em;
}
#wrapperBox .page dl.pricebox dd:not(:last-child) {
  padding-bottom: 5em;
  position: relative;
}
#wrapperBox .page dl.pricebox dd:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  border: 1.5em solid transparent;
  border-top-color: rgb(0, 60, 132);
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
}
#wrapperBox .page dl.pricebox dd h3 {
  text-align: center;
  font-size: 4rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
}
#wrapperBox .page dl.pricebox dd h3 .small {
  font-size: 2rem;
}
#wrapperBox .page dl.pricebox dd h4 {
  font-size: 3rem;
  font-weight: bold;
  border-bottom: 1px solid black;
}
#wrapperBox .page dl.pricebox dd h4 .small {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #wrapperBox .page dl.pricebox dd h4 {
    font-size: 2rem;
  }
  #wrapperBox .page dl.pricebox dd h4 .small {
    font-size: 1.6rem;
  }
}
#wrapperBox .page dl.pricebox dd .flex > * {
  position: relative;
  padding-left: 10%;
}
#wrapperBox .page dl.pricebox dd .flex > *::before {
  content: "";
  width: 25%;
  aspect-ratio: 923/1288;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center center;
  box-shadow: 0 0 3px rgba(100, 100, 100, 0.5);
  line-height: 1;
}
#wrapperBox .page dl.pricebox dd .flex > *.japanese::before {
  background-image: url(../img/coverimage_j.png);
}
#wrapperBox .page dl.pricebox dd .flex > *.english::before {
  background-image: url(../img/coverimage_e.png);
}
@media only screen and (max-width: 768px) {
  #wrapperBox .page dl.pricebox dd .flex > *.japanese {
    padding-right: 30%;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.japanese h4,
  #wrapperBox .page dl.pricebox dd .flex > *.japanese h3 {
    text-align: right;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.english {
    padding-left: 30%;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.english h4,
  #wrapperBox .page dl.pricebox dd .flex > *.english h3 {
    text-align: left;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.english::before {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  #wrapperBox .page dl.pricebox dd .flex > * h3 {
    font-size: 2.4rem;
  }
  #wrapperBox .page dl.pricebox dd .flex > * h4 .small {
    font-size: 1.6rem;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.japanese {
    padding-right: 0;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.japanese h4,
  #wrapperBox .page dl.pricebox dd .flex > *.japanese h3 {
    padding-left: 25%;
    text-align: left;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.english {
    padding-left: 0;
  }
  #wrapperBox .page dl.pricebox dd .flex > *.english h4,
  #wrapperBox .page dl.pricebox dd .flex > *.english h3 {
    padding-right: 35%;
    text-align: right;
  }
}
#wrapperBox .page dl.pricebox dd .flex > * .small {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
#wrapperBox .page dl.pricebox dd .set {
  position: relative;
}
#wrapperBox .page dl.pricebox dd .set h3,
#wrapperBox .page dl.pricebox dd .set h4 {
  padding-left: 35%;
  text-align: left;
}
#wrapperBox .page dl.pricebox dd .set::before, #wrapperBox .page dl.pricebox dd .set::after {
  content: "";
  width: 15%;
  aspect-ratio: 923/1288;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  transform-origin: center center;
  box-shadow: 0 0 3px rgba(100, 100, 100, 0.5);
  line-height: 1;
}
#wrapperBox .page dl.pricebox dd .set::before {
  background-image: url(../img/coverimage_j.png);
  transform: translate(-45%, -50%) rotate(-10deg);
}
#wrapperBox .page dl.pricebox dd .set::after {
  background-image: url(../img/coverimage_e.png);
  transform: translate(45%, -50%) rotate(10deg);
}
@media only screen and (max-width: 480px) {
  #wrapperBox .page dl.pricebox dd .set h3 {
    font-size: 2.4rem;
  }
}
#wrapperBox .page ol {
  margin: 0 2em;
  padding-bottom: 4em;
}
#wrapperBox .page ol li {
  list-style: none;
  /*
  padding-bottom: 1em;
  border-bottom: 1px dotted rgba(150, 150, 150, 0.5);
  */
  padding: 1.5em;
  box-shadow: 0 0 10px rgba(150, 150, 150, 0.3), 0 0 10px rgba(150, 150, 150, 0.3);
  background: rgba(255, 240, 0, 0.2);
  margin-bottom: 2em;
}
@media only screen and (max-width: 768px) {
  #wrapperBox .page ol li:has(.ggbox) {
    padding-bottom: 0;
  }
}
#wrapperBox .page ol li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
#wrapperBox .page ol li dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#wrapperBox .page ol li dl.top {
  align-items: flex-start;
}
#wrapperBox .page ol li dl dt {
  width: 21.1111111111%;
}
#wrapperBox .page ol li dl dd {
  flex: 1;
  margin-left: 2em;
  text-align: left;
  /*
  border: 2px solid maincolor(1);
  border-radius: 5px;
  background: subcolor(1);
  font-weight: 400;
  padding: 1.5em;
  position: relative;
  &::before, 
  &::after {
  	content: '';
  	width: 0;
  	height: 0;
  	border: 1em solid transparent;
  	position: absolute;
  	top: 2em;
  }
  &::before {
  	border-right-color: maincolor(1);
  	left: -2em;
  }
  &::after {
  	border-right-color: subcolor(1);
  	left: calc(-2em + 2px);
  }
  */
}
#wrapperBox .page ol li dl dd .whitebox {
  padding: 1em;
  background: #FFF;
}
#wrapperBox .page ol li dl dd label {
  cursor: pointer;
}
#wrapperBox .page ol li dl dd label input {
  display: none;
}
#wrapperBox .page ol li dl dd label input:checked ~ p {
  width: 100vw;
  height: 100vh;
  padding: 2em;
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
#wrapperBox .page ol li dl dd label small::after {
  font-family: "Material Symbols Outlined";
  content: "\e413";
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.6;
  margin-left: 0.25em;
}
#wrapperBox .page ol li dl dd label:hover small {
  color: rgb(0, 60, 132);
}
#wrapperBox .page:has(.whyessential) {
  padding: 2em;
  padding-top: 0;
}
#wrapperBox .page:has(.whyessential) .whyessential {
  border: 2px solid rgb(0, 60, 132);
  padding: 1.5em;
  position: relative;
}
#wrapperBox .page:has(.whyessential) .whyessential::before {
  font-family: "Material Symbols Outlined";
  content: "\eb8b";
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  font-size: 8rem;
  justify-content: center;
  align-items: center;
  background: rgb(0, 60, 132);
  color: #FFF;
  width: 12rem;
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: absolute;
  top: -2rem;
  right: -2rem;
}
#wrapperBox .page:has(.whyessential) .whyessential h4 {
  margin: 2em 0;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex {
  display: flex;
  justify-content: space-between;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .leftbox {
  text-align: left;
  font-size: 1.6rem;
  width: 45%;
  letter-spacing: 1.8;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox {
  width: 51%;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox h5 {
  background: rgb(0, 60, 132);
  color: #FFF;
  padding: 1em 0;
  font-size: 1.6rem;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox .red {
  color: #9f000c;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox .large {
  font-size: 150%;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox .small {
  font-size: 1rem;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox table {
  width: 100%;
  font-size: 1.4rem;
  border-collapse: collapse;
  margin-top: 1em;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox table tbody {
  border-top: 1px solid #666;
  border-left: 1px solid #666;
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox table tbody tr.japanese {
  background: rgba(229, 66, 92, 0.3);
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox table tbody tr.japanese th {
  background: rgba(229, 66, 92, 0.6);
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox table tbody tr.english {
  background: rgba(94, 89, 163, 0.3);
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox table tbody tr.english th {
  background: rgba(94, 89, 163, 0.6);
}
#wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox table tbody tr td {
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
}
@media only screen and (max-width: 768px) {
  #wrapperBox .page:has(.whyessential) .whyessential::before {
    font-size: 5rem;
    width: 8rem;
  }
  #wrapperBox .page:has(.whyessential) .whyessential h4 {
    margin: 1em 0;
  }
  #wrapperBox .page:has(.whyessential) .whyessential .flex {
    flex-wrap: wrap;
  }
  #wrapperBox .page:has(.whyessential) .whyessential .flex .leftbox {
    width: 100%;
    margin-bottom: 1em;
  }
  #wrapperBox .page:has(.whyessential) .whyessential .flex .rightbox {
    width: 100%;
  }
}
#wrapperBox .page.youservoice ul {
  padding: 1em 0 3em;
  margin: 0 6em;
}
#wrapperBox .page.youservoice ul li {
  margin-left: 5rem;
  padding: 0.5em 1em;
  border: 1px solid #999;
  border-radius: 1em;
  margin-bottom: 1em;
  position: relative;
}
#wrapperBox .page.youservoice ul li::before {
  font-family: "Material Symbols Outlined";
  content: "\e87c";
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.6;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.8em;
  aspect-ratio: 1/1;
  background: #e8e8e8;
  position: absolute;
  top: 50%;
  left: -4rem;
  transform: translateY(-50%);
  border-radius: 50%;
}
#wrapperBox .page.youservoice ul li:nth-child(2) {
  margin-right: 5rem;
  margin-left: 0;
}
#wrapperBox .page.youservoice ul li:nth-child(2)::before {
  left: auto;
  right: -4rem;
  content: "\f8db";
}
#wrapperBox .page.youservoice ul li:nth-child(3)::before {
  content: "\f8de";
}
@media only screen and (max-width: 768px) {
  #wrapperBox .page.youservoice ul {
    margin: 0;
  }
  #wrapperBox .page.youservoice ul li {
    margin-right: 2em;
  }
  #wrapperBox .page.youservoice ul li:nth-child(2) {
    margin-left: 2em;
  }
}
#wrapperBox .btn {
  max-width: 900px;
  padding: 2em;
  margin: 0 auto;
  display: block;
  background: rgb(255, 255, 255);
}
#wrapperBox .btn_init {
  margin: 3em 0;
  text-align: center;
  position: relative;
}
#wrapperBox .btn_init::before, #wrapperBox .btn_init::after {
  content: "";
  width: 15%;
  aspect-ratio: 923/1288;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  transform-origin: center center;
  box-shadow: 0 0 3px rgba(100, 100, 100, 0.5);
  transition: 0.3s;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  #wrapperBox .btn_init::before, #wrapperBox .btn_init::after {
    /*width: 22%;*/
    content: none;
  }
}
#wrapperBox .btn_init::before {
  background-image: url(../img/coverimage_e.png);
  transform: translate(45%, -50%) rotate(10deg);
}
#wrapperBox .btn_init::after {
  background-image: url(../img/coverimage_j.png);
  transform: translate(-45%, -50%) rotate(-10deg);
}
@media only screen and (max-width: 768px) {
  #wrapperBox .btn_init::after {
    left: 5%;
    right: auto;
  }
}
#wrapperBox .btn_init a {
  color: #FFF;
  text-decoration: none;
  max-width: calc(100% - 4em);
  padding: 0.5em;
  margin: -5px auto 5px auto;
  display: block;
  background: rgba(159, 0, 12, 0.6);
  border-radius: 100vh;
  border-bottom: 5px solid #9f000c;
  font-size: 2.4rem;
  line-height: 1;
}
#wrapperBox .btn_init a::before {
  font-family: "Material Symbols Outlined";
  content: "\e8cc";
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.6;
  font-size: 3rem;
  margin-right: 0.25em;
}
#wrapperBox .btn_init a:hover {
  margin-top: 0;
  margin-bottom: 0;
  background: rgb(0, 60, 132);
  border-bottom: 0;
}
#wrapperBox .btn_init a:hover::after {
  transform: translateY(-50%) rotate(0);
}
#wrapperBox .btn .btnbomb {
  opacity: 0;
  transition: 0.5s ease-out;
}
#wrapperBox .btn .btnbomb.show {
  animation: btnbomb 1s forwards;
}
#wrapperBox .btn .btnbomb:nth-child(2) {
  animation-delay: 0.5s;
}
@keyframes btnbomb {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#wrapperBox .noneicon .btn_init::before, #wrapperBox .noneicon .btn_init::after {
  content: none;
}
#wrapperBox .ggbox {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media only screen and (max-width: 768px) {
  #wrapperBox .ggbox {
    width: calc(100% + 3em);
    margin-left: -1.5em;
  }
}
#wrapperBox .ggbox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fadein {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.fadein.show {
  transform: translateY(0);
  opacity: 1;
}

.fadeinleft {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
}
.fadeinleft.show {
  transform: translateX(0);
  opacity: 1;
}

.bomb {
  opacity: 0;
  transition: 0.8s ease-in-out;
}
.bomb.show {
  animation: bomb 1s forwards;
  animation-delay: 1s;
}

@keyframes bomb {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50%, 60%, 80% {
    transform: scale(1);
  }
}
.footer {
  font-size: 1.4rem;
  font-style: normal;
  text-align: center;
  background: rgb(0, 60, 132);
  color: rgb(255, 255, 255);
  padding: 0.25em 0;
}

.pcHide {
  display: none;
}

.spHide {
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .pcHide {
    display: inline-block;
  }
  .spHide {
    display: none;
  }
  #headerBox .initBox {
    padding: 0 0.5em;
  }
  #headerBox .initBox h1 img {
    height: 46px;
    vertical-align: text-bottom;
  }
  #wrapperBox h2 {
    font-size: 2rem;
  }
  #wrapperBox h2.footerH2 {
    font-size: 2.2rem;
    line-height: 1.6;
  }
  #wrapperBox .page ol li dl {
    flex-wrap: wrap;
  }
  #wrapperBox .page ol li dl dt {
    width: 100%;
    text-align: center;
  }
  #wrapperBox .page ol li dl dt img {
    max-width: 200px;
  }
  #wrapperBox .page ol li dl dd {
    flex: auto;
    width: 100%;
    margin-top: 1.5em;
    margin-left: 0;
  }
  #wrapperBox .page ol li dl dd::before, #wrapperBox .page ol li dl dd::after {
    border-right-color: transparent;
    left: calc((100% - 1em) / 2);
  }
  #wrapperBox .page ol li dl dd::before {
    border-bottom-color: rgb(0, 60, 132);
    top: -2em;
  }
  #wrapperBox .page ol li dl dd::after {
    border-bottom-color: #fff000;
    top: calc(-2em + 2px);
  }
  #wrapperBox .page ol li dl dd label {
    cursor: pointer;
  }
  #wrapperBox .page ol li dl dd label input {
    display: none;
  }
  #wrapperBox .page ol li dl dd label input:checked ~ p {
    padding: 5px;
  }
  #wrapperBox .page .flex.c2 > * {
    width: 100%;
  }
  #wrapperBox .page .flex.c2 > *:not(:last-child) {
    margin-bottom: 2em;
  }
  #wrapperBox .btn_init {
    margin: 0;
  }
  #wrapperBox .btn_init a {
    max-width: none;
    font-size: 1.8rem;
  }
}
.cautionUl li {
  text-indent: -1em;
  margin-left: 1em;
  padding: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

.redtext {
  color: #9f000c;
}/*# sourceMappingURL=style.css.map */