body {
  background-color: #0f0f0e;
  color: #f7f7f7;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
body a {
  transition: 0.24s;
}
body a img {
  transition: 0.24s;
}
body a img:hover {
  opacity: 0.6;
}
body li {
  list-style: none;
}
body .pc {
  display: block;
}
@media screen and (max-width: 600px) {
  body .pc {
    display: none;
  }
}
body .sp {
  display: none;
}
@media screen and (max-width: 600px) {
  body .sp {
    display: block;
  }
}
body .fl-sb {
  display: flex;
  justify-content: space-between;
}
body .flex {
  display: flex;
}
body .button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 65px auto 0;
  display: block;
}
body button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
}
body button.learn-more {
  width: 14.5rem;
  height: auto;
}
body button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #d6b303;
  border-radius: 1.625rem;
}
body button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
body button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
body button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
body button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.3rem 0;
  margin: 0 0 0 1.85rem;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
body button:hover .circle {
  width: 100%;
}
body button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
body button:hover .button-text {
  color: #fff;
}
body .heading {
  position: relative;
  padding-bottom: 50px;
  font-size: 25px;
  margin-bottom: 75px;
  text-align: center;
}
body .heading::before {
  content: attr(data-en);
  display: block;
  color: #f5d01f;
  font-size: 20px;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
body .heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) rotate(30deg);
  width: 1px;
  height: 40px;
  background-color: #f5d01f;
}
body .comment {
  font-size: 16px;
}
body section {
  margin: 65px auto 135px;
  width: 90%;
  max-width: 1000px;
}
body header {
  background-color: #0f0f0e;
  position: fixed;
  width: 100%;
  height: 145px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  body header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    border-bottom: 1px solid #2d2d2d;
  }
}
body header .header-logo {
  text-align: center;
  margin: 20px 0 20px 15px;
}
body header .header-logo img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  body header .header-logo img {
    width: 150px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
body header .header {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  body header .header #header-hamburger {
    background: #f5d01f;
    cursor: pointer;
    width: 50px;
    aspect-ratio: 1/1;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
  }
  body header .header #header-hamburger span {
    display: inline-block;
    background: #fff;
    width: 50%;
    height: 2px;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  body header .header #header-hamburger span:nth-of-type(1) {
    top: 30%;
  }
  body header .header #header-hamburger span:nth-of-type(2) {
    top: 50%;
  }
  body header .header #header-hamburger span:nth-of-type(3) {
    top: 70%;
  }
  body header .header #header-hamburger.active span:nth-of-type(1) {
    top: 50%;
    left: 25%;
    transform: rotate(-45deg);
    width: 50%;
  }
  body header .header #header-hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  body header .header #header-hamburger.active span:nth-of-type(3) {
    top: 50%;
    left: 25%;
    transform: rotate(45deg);
    width: 50%;
  }
}
body header .header #hamburger-window {
  width: 100%;
  border-top: solid #adadad 0.5px;
  border-bottom: solid #adadad 0.5px;
}
@media screen and (min-width: 600px) {
  body header .header #hamburger-window {
    height: 53px;
    line-height: 53px;
  }
}
@media screen and (max-width: 600px) {
  body header .header #hamburger-window {
    border-top: none;
    border-bottom: none;
    background-color: #2d2d2d;
  }
}
body header .header #hamburger-window nav {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
body header .header #hamburger-window .hamburger-window__nav-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  body header .header #hamburger-window .hamburger-window__nav-list {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  body header .header #hamburger-window .hamburger-window__nav-list li {
    flex-basis: 14.2857142857%;
    text-align: center;
  }
}
body header .header #hamburger-window .hamburger-window__nav-list li p {
  transition: 0.3s;
}
body header .header #hamburger-window .hamburger-window__nav-list li p:hover {
  background: #9d8200;
}
@media screen and (max-width: 600px) {
  body header .header #hamburger-window {
    transition: 0.3s;
    text-align: center;
    visibility: hidden;
    position: fixed;
    top: 53px;
    right: -100vw;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
body header .header .content::-webkit-scrollbar {
  display: none;
}
body header .header #hamburger-window.open {
  visibility: visible;
  right: 0;
}
@media screen and (max-width: 600px) {
  body header .header .hamburger-window__link {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  body header .header .hamburger-window__link p {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  body header .header .hamburger-window__link:first-child .acordion-btn {
    border-top: 1px solid #ccc;
  }
}
body header .header .acordion-menu-wrapper a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  body header .header .acordion-btn {
    display: flex;
    align-items: center;
    padding-left: 5%;
  }
  body header .header .acordion-btn:hover {
    background-color: #2d2d2d;
  }
  body header .header .acordion-btn::after {
    content: "+";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    position: absolute;
    right: 10%;
    width: 10px;
    aspect-ratio: 1/1;
    color: #fff;
  }
  body header .header .acordion-btn.is-open::after {
    content: "\f068";
  }
}
body header .header .hamburger-window__link > a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  body header .header .hamburger-window__link > a {
    display: block;
    text-align: left;
    padding-left: 5%;
    position: relative;
  }
  body header .header .hamburger-window__link > a::after {
    content: "\f054";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    width: 10px;
    aspect-ratio: 1/1;
    color: #fff;
  }
}
body header .header .acordion {
  display: none;
}
@media screen and (max-width: 600px) {
  body header .header .acordion {
    position: static;
    display: inline-block;
    width: 100%;
  }
  body header .header .acordion > .acordion__item {
    position: relative;
    text-align: left;
    width: 100%;
    background-color: #dfdfdf;
    border-top: 0 #ccc solid;
    line-height: 0;
    transition: border-top 0.1s ease-out;
  }
  body header .header .acordion.is-open > .acordion__item {
    background-color: #686868;
    transition: border-top 0.1s ease-out;
  }
  body header .header .acordion.is-open > .acordion__item:first-child {
    border-top: none;
  }
  body header .header .acordion.is-open > .acordion__item::after {
    content: "\f054";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10%;
    width: 10px;
    aspect-ratio: 1/1;
    color: #fff;
  }
  body header .header .acordion.is-open > .acordion__item > .acordion__link {
    display: block;
    padding-left: 7%;
    padding-top: 23px;
    padding-bottom: 23px;
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    transition: padding-top 0.3s ease-out, padding-bottom 0.3s ease-out, line-height 0.3s ease-out, opacity 0.1s linear, visibility 0.1s linear;
    color: #fff;
  }
  body header .header .acordion > .acordion__item > .acordion__link {
    color: #333;
    display: block;
    padding-left: 7%;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: padding-top 0.3s ease-out, padding-bottom 0.3s ease-out, line-height 0.3s ease-out, opacity 0.1s linear, visibility 0.1s linear;
  }
}
body header .header .hamburger-window__link:hover .acordion {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  position: absolute;
  max-width: 1000px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #454545;
  padding: 15px;
  z-index: 100;
}
body header .header .hamburger-window__link:hover .acordion li {
  min-width: 180px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  body header .header .hamburger-window__link:hover .acordion li {
    margin-bottom: 0px;
  }
}
body header .header .hamburger-window__link:hover .acordion li a:hover {
  color: #f5d01f;
}
@media screen and (max-width: 600px) {
  body header .header .hamburger-window__link:hover .acordion {
    position: static;
    width: 100%;
    transform: none;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  body header .header #hamburger-window:not(.open) .acordion {
    display: none !important;
    visibility: hidden !important;
  }
}
body footer img {
  display: block;
  margin: 65px auto 0;
  width: 200px;
  max-width: 70%;
}
body footer p {
  width: 380px;
  max-width: 90%;
  margin: 35px auto;
}
body footer p a {
  text-decoration: none;
  color: #f7f7f7;
}
body footer p a:hover {
  opacity: 0.6;
}
body footer .copy-right {
  display: block;
  text-align: center;
  font-size: 10px;
  background: #2d2d2d;
  padding: 16px 0;
}
body main {
  position: relative;
  top: 145px;
  left: 0;
  padding-bottom: 100px;
}
@media screen and (max-width: 600px) {
  body main {
    top: 54px;
    padding-bottom: 10px;
  }
}
body .bnr-corner .comment {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
body .bnr-corner .comment a img {
  max-width: 100%;
  width: 800px;
}
body .mv ul li {
  max-width: 100%;
}
body .mv ul li img {
  width: 100%;
}
body .item-list {
  flex-wrap: wrap;
}
body .item-list:after {
  display: block;
  content: "";
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 750px) {
  body .item-list {
    justify-content: space-around;
  }
}
@media screen and (max-width: 550px) {
  body .item-list {
    justify-content: space-between;
  }
}
body .item-list li {
  width: calc((100% - 30px) / 4);
  background-color: #fff;
  color: #0f0f0e;
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 950px) {
  body .item-list li {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  body .item-list li {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 550px) {
  body .item-list li {
    width: calc((100% - 15px) / 2);
    font-size: 12px;
  }
}
body .item-list li img {
  width: 100%;
}
body .item-list li .item-name {
  padding: 0.5em;
}
body .item-list li .buy,
body .item-list li .how {
  display: block;
  background-color: #ba0000;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 0.5em 0;
  text-decoration: none;
}
@media screen and (max-width: 550px) {
  body .item-list li .buy,
  body .item-list li .how {
    padding: 1.5em 0;
  }
}
body .item-list li .buy:hover,
body .item-list li .how:hover {
  background-color: #7e0000;
}
body .item-list li .how {
  background-color: #d6b303;
}
body .item-list li .how:hover {
  background-color: #9d8200;
}
@media screen and (max-width: 550px) {
  body .index-company_index-contact {
    display: block;
  }
}
body .index-company_index-contact section {
  width: 50%;
  background-size: cover;
  padding: 65px 0;
}
@media screen and (max-width: 550px) {
  body .index-company_index-contact section {
    width: 100%;
  }
}
body .index-company_index-contact section .comment {
  text-align: center;
}
body .index-company_index-contact .company {
  background-image: url(../img/bg-company.png);
}
@media screen and (max-width: 550px) {
  body .index-company_index-contact .company {
    margin: 65px auto 0px;
  }
}
body .index-company_index-contact .contact {
  background-image: url(../img/bg-contact.png);
}
@media screen and (max-width: 550px) {
  body .index-company_index-contact .contact {
    margin: 0px auto 65px;
  }
}
body .ttl {
  background-image: linear-gradient(90deg, rgb(50, 50, 50), rgb(0, 0, 0) 50%, rgb(50, 50, 50));
  padding: 2.5em;
}
body .ttl h1 {
  font-weight: 700;
  color: #fff;
  font-size: 30px;
  text-align: center;
}
body .company ul li {
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  body .company ul li {
    margin-bottom: 10px;
  }
}
body .company ul li .label {
  border-bottom: #d6b303 solid 2px;
  min-width: 20%;
  padding-bottom: 10px;
}
@media screen and (max-width: 600px) {
  body .company ul li .label {
    border-bottom: none;
  }
}
body .company ul li .data {
  border-bottom: #777777 solid 2px;
  min-width: 80%;
  padding-left: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 600px) {
  body .company ul li .data {
    border-bottom: #d6b303 solid 2px;
    padding-left: 0px;
  }
}
body .company ul li .data a {
  text-decoration: none;
  color: #fff;
}
body .company ul li .last {
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  body .company .flex {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  body .policy .heading {
    font-size: 5vw;
  }
}
body .policy p span {
  color: #d6b303;
}
body .contact .form {
  margin-top: 40px;
}
body .contact .form .btn_area {
  display: flex;
  justify-content: space-between;
  margin: 16px auto 0;
  width: 440px;
  max-width: 100%;
}
@media screen and (max-width: 550px) {
  body .contact .form .btn_area {
    text-align: center;
  }
}
body .contact .form .btn_area input {
  flex-basis: 48%;
  max-width: 48%;
}
body .contact .form input[type=submit], body .contact .form input[type=reset], body .contact .form input[type=button] {
  background: #D6B320;
  color: #fff;
  padding: 8px 40px;
  width: 220px;
  border-radius: 50px;
  font-weight: 900;
  transition: 0.24s;
}
body .contact .form input[type=submit]:hover, body .contact .form input[type=reset]:hover, body .contact .form input[type=button]:hover {
  background: #fff;
  color: #D6B320;
}
body .contact .form input[type=reset], body .contact .form input[type=button] {
  background: #686868;
}
body .contact .form dl {
  display: flex;
  justify-content: space-between;
  margin: 16px auto;
  width: 640px;
  max-width: 100%;
}
body .contact .form dl input, body .contact .form dl textarea {
  background: #fff;
  padding: 8px;
  max-width: 100%;
}
body .contact .form dl textarea {
  width: 100%;
}
@media screen and (max-width: 550px) {
  body .contact .form dl input[type=text], body .contact .form dl input[type=email] {
    width: 100%;
  }
}
body .contact .form dl dt {
  position: relative;
  flex-basis: 200px;
  white-space: nowrap;
  margin-right: 16px;
}
@media screen and (max-width: 550px) {
  body .contact .form dl dt {
    flex-basis: 100%;
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
}
body .contact .form dl dt span {
  position: absolute;
  top: 8px;
  left: 8px;
}
@media screen and (max-width: 550px) {
  body .contact .form dl dt span {
    position: unset;
  }
}
body .contact .form dl dt .required::after {
  content: "*";
  font-size: 0.8rem;
  color: red;
  margin-left: 4px;
}
body .contact .form dl dd {
  flex-basis: 100%;
}
@media screen and (max-width: 550px) {
  body .contact .form dl {
    flex-direction: column;
  }
}
body .contact .form .error {
  width: 640px;
  max-width: 100%;
  margin: auto;
}
body .contact .form .error .error_messe {
  font-size: 0.8rem;
  color: salmon;
  margin-bottom: 4px;
}
body .contact .form .error .error_messe:before {
  content: "- ";
}
body .contact .form .error input {
  display: block;
  margin: 40px auto 0;
}
body .contact table {
  width: 100%;
  max-width: 100%;
  margin: 40px auto;
  text-align: left;
  background: #222;
  padding: 24px;
}
@media screen and (max-width: 550px) {
  body .contact table {
    font-size: 0.8rem;
  }
}
body .contact table tr {
  display: flex;
  margin-bottom: 24px;
}
@media screen and (max-width: 550px) {
  body .contact table tr {
    flex-direction: column;
  }
}
body .contact table th {
  flex-basis: 20%;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 550px) {
  body .contact table th {
    flex-basis: 100%;
    font-weight: 900;
  }
}
body .contact table td {
  flex-basis: 80%;
}
@media screen and (max-width: 550px) {
  body .contact table td {
    flex-basis: 100%;
  }
}

.yellow {
  color: #d6b303;
}

#product h2 {
  font-size: 30px;
  color: #D6B320;
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 550px) {
  #product h2 {
    font-size: 24px;
  }
}
#product h2.mg-b0 {
  margin-bottom: 0;
}
#product h3 {
  display: block;
  text-align: center;
  background: #D6B320;
  padding: 16px;
  margin: 24px 0;
  font-size: 24px;
}
@media screen and (max-width: 550px) {
  #product h3 {
    font-size: 18px;
  }
}
#product img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
}
#product p {
  text-align: center;
  margin-bottom: 24px;
}
#product .img00 {
  margin: 24px auto;
}
#product .txt_box {
  display: block;
  background: #1F1F1F;
  border: 1px solid #D6B320;
  padding: 40px;
}
#product .txt_box.box1 {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 550px) {
  #product .txt_box.box1 {
    padding: 32px;
  }
}
#product .txt_box.box1 a {
  color: #d6b303;
}
#product .txt_box.box1 p {
  position: relative;
  z-index: 1;
  margin: 0;
}
#product .txt_box.box2 {
  margin-top: 24px;
}
#product .txt_box.box2 li {
  margin-bottom: 16px;
}
#product .txt_box.box2 li:nth-child(5) {
  margin-bottom: 0;
}
#product .txt_box.box2 li img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 0;
  width: 24px;
}
@media screen and (max-width: 550px) {
  #product .txt_box.box2 li img {
    width: 16px;
    margin: 0 4px 0 0;
  }
}
#product .txt_box.box2 .txt_box.box2 li:nth-child(5) {
  margin-bottom: 0;
}
#product .flex1 {
  max-width: 700px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
#product .flex1 .flex_box {
  flex-basis: 160px;
  margin-bottom: 16px;
}
#product .flex1 .flex_box img {
  width: 80px;
  margin-bottom: 24px;
}

#product .bg {
  margin: 80px 0;
  padding: 80px 0;
  background-image: url(../img/product/bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 550px) {
  #product .bg {
    margin: 40px 0;
  }
}
#product .bg .img_logo {
  max-width: 70%;
}
#product .bg .img_txt {
  max-width: 80%;
  margin: 64px auto;
}
@media screen and (max-width: 550px) {
  #product .bg .img_txt {
    max-width: 80%;
    margin: 40px auto 24px;
  }
}
#product .bg .txt_box.box3 {
  margin: 0 auto 40px;
  padding: 24px;
  max-width: 640px;
  background: #890000;
  border: 0;
  box-shadow: 3px 3px 20px #000000;
}
#product .bg .txt_l {
  font-size: 24px;
}
@media screen and (max-width: 550px) {
  #product .bg .txt_l {
    font-size: 18px;
  }
}

#product .flex2 {
  justify-content: space-between;
  margin: 24px auto;
  width: 100%;
}
#product .flex2 .flex_box {
  flex-basis: 32%;
  padding: 24px;
  background: #fff;
}
#product .flex2 .flex_box img {
  width: 160px;
}
#product .flex2 .flex_box p {
  color: #4f4f4f;
  font-size: 18px;
  font-weight: 600;
}
#product .flex2 .flex_box p span {
  padding: 0 4px;
  font-size: 24px;
}

@media screen and (max-width: 550px) {
  #product .flex2 .flex_box p {
    font-size: 12px;
  }
  #product .flex2 .flex_box p span {
    font-size: 16px;
  }
}
#product .review {
  margin: 80px 0;
  padding: 80px 0;
  background: #fff;
}
@media screen and (max-width: 550px) {
  #product .review {
    margin: 40px 0;
  }
}
#product .review h2 {
  color: #890000;
  font-size: 80px;
  margin: 0 0 24px;
}
#product .review h3 {
  margin: 0 0 24px;
  background: none;
  color: #4f4f4f;
}
#product .review p {
  color: #4f4f4f;
  width: 90%;
  margin: 24px auto 40px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 32px;
  text-align: left;
}
#product .review p .mark {
  background: #F8C8BB;
  padding: 0 4px;
  margin: 0 4px 0 0;
}

@media screen and (max-width: 550px) {
  #product .review {
    margin: 80px 0;
    padding: 40px 0;
    background: #fff;
  }
  #product .review h2 {
    font-size: 40px;
    margin: 0;
  }
  #product .review h3 {
    margin: 0 0 16px;
    font-size: 18px;
  }
  #product .review p {
    font-size: 12px;
    line-height: 22px;
  }
}
#product .caution h4 {
  text-align: center;
  font-size: 24px;
  margin: 40px 0;
}
#product .caution dt {
  display: flex;
  width: 100%;
  align-items: center;
  font-weight: 700;
}
#product .caution dd {
  margin: 16px 0 24px;
}
#product .caution .num {
  color: #000;
  background: #D6B320;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 64px;
  height: 64px;
  font-size: 32px;
  margin-right: 16px;
  font-family: "impact";
}/*# sourceMappingURL=style.css.map */