@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  line-height: 160%;
}
html.noScroll, body.noScroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

.txt--gr {
  color: #66cc99;
}

.price--tax {
  margin-left: -6px;
  font-size: 0.7rem;
}

header {
  padding: 24px 16px 32px;
}
@media (width < 767px) {
  header {
    padding: 16px 8px;
  }
}
header .headerInner--pc {
  display: flex;
  justify-content: left;
  align-items: flex-end;
}
@media (width < 767px) {
  header .headerInner--pc {
    display: none;
  }
}
header .headerInner--pc .logo {
  width: 180px;
  margin-right: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
header .headerInner--pc .logo__txt {
  font-size: 0.6rem;
  letter-spacing: 0.1rem;
  margin-bottom: 4px;
}
header .headerInner--pc .logo__img {
  width: 160px;
}
header .headerInner--pc .logo__img img {
  width: 100%;
}
header .headerInner--pc .gNav .navList {
  display: flex;
  justify-content: left;
  margin-right: 20px;
}
header .headerInner--pc .gNav .navList__item {
  font-size: 0.8rem;
  margin-right: 6px;
}
header .headerInner--pc .gNav .navList__item a:hover {
  text-decoration: underline;
}
header .headerInner--pc .gNav .navList__item:not(:last-child)::after {
  content: " /";
}
header .headerInner--pc .search {
  display: flex;
  margin-left: auto;
  margin-right: 20px;
}
header .headerInner--pc .search__txt {
  height: 32px;
  padding: 0px 8px;
  border: solid 1px #333;
  font-size: 0.8rem;
}
header .headerInner--pc .search__btn {
  width: 48px;
  height: 32px;
  padding: 5px 0;
  background: #333;
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
}
header .headerInner--pc .search span {
  vertical-align: top;
}
header .headerInner--pc .subNav .navList {
  display: flex;
  justify-content: space-between;
}
header .headerInner--pc .subNav .navList__item {
  margin-right: 16px;
  text-align: center;
  position: relative;
  top: 6px;
}
header .headerInner--pc .subNav .navList__item:last-child {
  margin-right: 0;
}
header .headerInner--pc .subNav .navList__item__ico {
  display: block;
  color: #333;
  font-size: 32px;
  height: 32px;
  margin-bottom: 2px;
}
header .headerInner--pc .subNav .navList__item__txt {
  line-height: 120%;
  display: block;
  font-size: 0.6em;
}
header .headerInner--sp {
  display: none;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
@media (width < 767px) {
  header .headerInner--sp {
    display: flex;
  }
}
header .headerInner--sp .logo {
  width: 40%;
}
header .headerInner--sp .logo__txt {
  font-size: 0.75rem;
  margin-bottom: 6px;
  line-height: 120%;
}
header .headerInner--sp .logo__img {
  width: 100%;
}
header .headerInner--sp .logo__img img {
  width: 100%;
}
header .headerInner--sp .spNav {
  width: 60%;
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
header .headerInner--sp .spNav .navList {
  display: flex;
  justify-content: space-between;
}
header .headerInner--sp .spNav .navList__item {
  margin-right: 20px;
  text-align: center;
  position: relative;
  top: 6px;
}
header .headerInner--sp .spNav .navList__item:last-child {
  margin-right: 0;
}
header .headerInner--sp .spNav .navList__item__ico {
  display: block;
  color: #333;
  font-size: 40px;
  height: 40px;
  margin-bottom: 2px;
}
header .headerInner--sp .spNav .navList__item__txt {
  line-height: 120%;
  display: block;
  font-size: 0.6em;
}
header .headerInner--sp .search {
  width: 100%;
  margin-top: 24px;
  display: flex;
}
header .headerInner--sp .search__txt {
  width: 100%;
  height: 48px;
  border: solid 1px #333;
  padding: 16px;
}
header .headerInner--sp .search__btn {
  width: 64px;
  height: 48px;
  background: #333;
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
}
header .headerInner--sp .search span {
  vertical-align: top;
}

.spMenu, .spMenu.open {
  position: fixed;
  top: 0;
  right: -110%;
  box-shadow: 0 0 4px #999;
  width: 100%;
  height: 1000vh;
  background: #fff;
  z-index: 9999;
  transition: 0.3s linear;
}
.spMenu.open {
  right: 0;
}
.spMenu__header {
  display: flex;
  flex-direction: row-reverse;
}
.spMenu__header__btn__ico {
  display: block;
  font-size: 54px;
}
.spMenu__header__btn__txt {
  display: block;
  font-size: 0.8rem;
  margin-top: -12px;
  text-align: center;
}
.spMenu__nav h2 {
  font-size: 0.8rem;
  background: #333;
  width: 100%;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
}
.spMenu__nav .navList__item {
  width: 100%;
  height: 64px;
  border-bottom: solid 1px #999;
  line-height: 64px;
  text-align: center;
}

main {
  margin-bottom: 60px;
}
main .breadcrumb {
  display: flex;
  padding: 0 32px;
  justify-content: left;
  margin-bottom: 20px;
}
@media (width < 767px) {
  main .breadcrumb {
    padding: 0 8px 12px;
    margin-bottom: 12px;
    overflow-x: auto;
    word-break: keep-all;
  }
}
main .breadcrumb__item {
  margin-right: 5;
  font-size: 0.8rem;
  text-wrap: nowrap;
}
main .breadcrumb__item a:hover {
  text-decoration: underline;
}
main .breadcrumb__item:not(:last-child)::after {
  content: " >";
}
main .fv {
  max-width: 100%;
  height: 450px;
  padding: 0 32px;
  margin-bottom: 64px;
  background: #efefef;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  text-shadow: #fff 3px 3px 20px, #fff -3px -3px 20px;
  font-weight: bold;
}
@media (width < 767px) {
  main .fv {
    padding: 0 8px;
    height: 400px;
    margin-bottom: 32px;
  }
}
main .fv__inner {
  max-width: 100%;
}
main .fv__catch {
  margin-bottom: 60px;
  font-size: 1.8rem;
  line-height: 180%;
  font-weight: bold;
}
@media (width < 767px) {
  main .fv__catch {
    margin-bottom: 64px;
    font-size: 1.4rem;
  }
}
main .fv__link {
  overflow: hidden;
}
main .fv__link .linkItem {
  width: 90px;
  margin-right: 40px;
}
main .fv__link .linkItem__img {
  width: 100px;
  height: 100px;
}
main .fv__link .linkItem__txt {
  text-align: center;
  font-size: 0.8rem;
}
main .recom {
  margin-bottom: 64px;
  padding-left: 32px;
}
@media (width < 767px) {
  main .recom {
    padding: 0 8px;
    margin-bottom: 32px;
  }
}
main .recom:last-child {
  margin-bottom: 120px;
}
@media (width < 767px) {
  main .recom:last-child {
    margin-bottom: 20px;
  }
}
main .recom__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (width < 767px) {
  main .recom__ttl {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}
main .recom__link {
  display: flex;
  overflow: hidden;
  position: relative;
}
main .recom__link .swiper-wrapper {
  padding: 8px 0;
}
main .recom__link .recomItem {
  max-width: 300px;
  aspect-ratio: 0.75;
  box-shadow: 3px 3px 3px #ccc;
  margin-right: 20px;
  background: #999;
  flex-shrink: 0;
}
@media (width < 767px) {
  main .recom__link .recomItem {
    max-width: 40%;
  }
}
main .recom__link .recomItem__img {
  width: 100%;
  background: #333;
}
main .recom__link .recomItem__price {
  display: block;
  position: relative;
  bottom: 50px;
  left: 20px;
  font-size: 2.4rem;
  color: black;
  font-weight: bold;
  text-shadow: #ccc 1px 1px 3px, #ccc -1px -1px 3px;
}
main .recom__link .recomItem__price::first-letter {
  font-size: 1.6rem;
  margin-right: 2px;
}
@media (width < 767px) {
  main .recom__link .recomItem__price {
    font-size: 1.6rem;
    bottom: 36px;
    left: 5;
  }
  main .recom__link .recomItem__price::first-letter {
    font-size: 1rem;
    margin-right: 2px;
  }
}
main .listTtl {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 32px;
  padding: 0 32px;
}
@media (width < 767px) {
  main .listTtl {
    padding: 0 8px;
    margin-bottom: 12px;
  }
}
main .listInfo {
  height: 300px;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media (width < 767px) {
  main .listInfo {
    height: auto;
    padding: 0 8px;
    margin-bottom: 12px;
    display: block;
  }
}
main .listInfo__img {
  width: 40%;
  height: 100%;
  background: #efefef;
  text-align: center;
}
main .listInfo__img img {
  width: auto;
  height: 100%;
}
@media (width < 767px) {
  main .listInfo__img {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
  }
}
main .listInfo__txt {
  width: 60%;
  padding-left: 100px;
  display: flex;
  align-items: center;
}
@media (width < 767px) {
  main .listInfo__txt {
    width: 100%;
    margin-bottom: 24px;
    padding: 0;
  }
}
main .listInfo__txt__inner {
  width: 100%;
}
main .listInfo__txt__inner h2 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
main .listInfo__txt__inner p {
  font-size: 0.8rem;
}
main .itemList {
  padding: 0 32px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}
@media (width < 767px) {
  main .itemList {
    padding: 0 8px;
    margin-bottom: 12px;
  }
}
main .itemList__item {
  width: 24.25%;
  margin-right: 1%;
  aspect-ratio: 0.75;
  margin-bottom: 20px;
  line-height: 120%;
}
@media (width < 767px) {
  main .itemList__item {
    width: 49%;
    margin-right: 2%;
    aspect-ratio: 0.6;
  }
  main .itemList__item:nth-child(4n) {
    margin-right: 2% !important;
  }
  main .itemList__item:nth-child(2n) {
    margin-right: 0 !important;
  }
}
main .itemList__item:nth-child(4n) {
  margin-right: 0;
}
main .itemList__item__img {
  width: 100%;
  aspect-ratio: 1;
  background: #333;
  margin-bottom: 16px;
}
main .itemList__item__name {
  margin-bottom: 12px;
  font-size: 0.8rem;
  text-align: center;
}
main .itemList__item__price {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
main .woocommerce-pagination .page-numbers {
  display: flex;
  justify-content: center;
}
main .woocommerce-pagination .page-numbers li {
  margin-right: 16px;
}
main .woocommerce-pagination .page-numbers li a, main .woocommerce-pagination .page-numbers li span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  vertical-align: baseline;
}
main .woocommerce-pagination .page-numbers li span {
  background: #333;
  color: #fff;
}
main .woocommerce-pagination .page-numbers li a {
  background: #efefef;
}
main .woocommerce-pagination .page-numbers li a:hover {
  background: #999;
  color: #fff;
}
main .product {
  max-width: 1200px;
  margin: 32px auto 64px;
  display: flex;
  justify-content: space-between;
}
@media (width < 767px) {
  main .product {
    display: block;
    padding: 0 8px;
  }
}
main .product__img {
  width: 50%;
}
@media (width < 767px) {
  main .product__img {
    width: 100%;
    margin-bottom: 48px;
  }
}
main .product__img img {
  width: 100%;
}
main .product__img .mainImg {
  width: 100%;
  margin-bottom: 16px;
  aspect-ratio: 1;
  background: #999;
}
main .product__img .thmb {
  position: relative;
  overflow: hidden;
}
main .product__img .thmb__item {
  width: 18%;
  margin-right: 1%;
  aspect-ratio: 1;
  background: #999;
}
main .product__img .thmb__item img {
  width: 100%;
}
main .product__info {
  width: 50%;
  padding: 0 60px;
}
@media (width < 767px) {
  main .product__info {
    width: 100%;
    padding: 0;
  }
}
main .product__info .itemCatch {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: bold;
}
@media (width < 767px) {
  main .product__info .itemCatch {
    margin-bottom: 8px;
    font-size: 1rem;
  }
}
main .product__info .itemName {
  margin-bottom: 40px;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
@media (width < 767px) {
  main .product__info .itemName {
    font-size: 1.2rem;
  }
}
main .product__info .itemExc {
  font-size: 0.8rem;
  margin-bottom: 40px;
}
main .product__info .itemShipping .pr {
  width: 90px;
  height: 36px;
  margin-left: auto;
  margin-bottom: 12px;
  border: solid 1px #c00;
  color: #c00;
  text-align: center;
  line-height: 32px;
}
main .product__info .itemShipping .rt {
  text-align: right;
  margin-bottom: 20px;
  color: #333;
}
main .product__info .itemCart .itemPtn {
  width: 100%;
}
main .product__info .itemCart .itemPtn td {
  padding: 20px 0;
  text-align: center;
  vertical-align: middle;
}
main .product__info .itemCart .itemPtn__h {
  width: 20%;
}
main .product__info .itemCart .itemPtn__h__img {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}
main .product__info .itemCart .itemPtn__h__img img {
  width: 100%;
}
main .product__info .itemCart .itemPtn__h__name {
  display: block;
  font-size: 0.5rem;
  text-align: center;
  line-height: 140%;
}
main .product__info .itemCart .itemPtn__price {
  width: 50%;
  font-size: 1.6rem;
  font-weight: bold;
}
main .product__info .itemCart .itemPtn__cart {
  width: 30%;
  text-align: right !important;
}
main .product__info .itemCart .itemPtn__cart__btn {
  padding: 8px 16px;
  background: #111;
  font-size: 0.8rem;
  color: #fff;
  transition: 0.1s linear;
}
main .product__info .itemCart .itemPtn__cart__btn:hover {
  background: #66cc99;
}
main .product__info .itemCart .itemSin {
  text-align: right;
}
main .product__info .itemCart .itemSin__price {
  margin-bottom: 54px;
  font-size: 2.4rem;
  font-weight: bold;
}
main .product__info .itemCart .itemSin__btn {
  padding: 16px 32px;
  background: #111;
  color: #fff;
  transition: 0.1s linear;
}
main .product__info .itemCart .itemSin__btn:hover {
  background: #66cc99;
}
main .desc {
  max-width: 1200px;
  margin: 0 auto 90px;
  line-height: 200%;
}
@media (width < 767px) {
  main .desc {
    line-height: 160%;
  }
}
@media (width < 767px) {
  main .desc {
    padding: 0 8px;
  }
}
main .desc__ttl {
  margin-bottom: 24px;
  font-size: 1.2rem;
}
@media (width < 767px) {
  main .desc__ttl {
    font-size: 1rem;
  }
}
main .desc__ttl::before {
  margin-right: 16px;
  font-size: 2rem;
  font-weight: bold;
  color: #66cc99;
  content: "#";
}
main .desc__txt {
  margin-bottom: 32px;
}
@media (width < 767px) {
  main .desc__txt {
    font-size: 0.8rem;
  }
}
main .spec {
  max-width: 1200px;
  margin: 0 auto;
}
@media (width < 767px) {
  main .spec {
    padding: 0 8px;
  }
}
main .spec__ttl {
  font-size: 2rem;
  font-weight: lighter;
  margin-bottom: 32px;
}
@media (width < 767px) {
  main .spec__ttl {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
main .spec table {
  width: 100%;
  margin-bottom: 80px;
  font-size: 0.8rem;
}
@media (width < 767px) {
  main .spec table {
    font-size: 0.6rem;
  }
}
main .spec table tr {
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
main .spec table tr th {
  width: 30%;
  padding: 16px 32px;
  border-right: solid 1px #ddd;
  background: #efefef;
  text-align: center;
  vertical-align: middle;
}
main .spec table tr td {
  width: 70%;
  padding: 16px 32px;
}

.blog {
  display: flex;
  max-width: 1200px;
  margin: 32px auto 80px;
  justify-content: space-between;
}
@media (width < 767px) {
  .blog {
    max-width: 100%;
    padding: 0 8px;
    display: block;
  }
}
.blog__side {
  width: 300px;
  height: 600px;
}
@media (width < 767px) {
  .blog__side {
    width: 100%;
  }
}
.blog__contents {
  max-width: 840px;
}
@media (width < 767px) {
  .blog__contents {
    width: 100%;
  }
}
.blog__contents .contentsItem {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 16px;
  box-sizing: border-box;
  border-top: solid 1px #aaa;
}
@media (width < 767px) {
  .blog__contents .contentsItem {
    display: block;
  }
}
.blog__contents .contentsItem__info {
  width: 64%;
}
@media (width < 767px) {
  .blog__contents .contentsItem__info {
    width: 100%;
    margin-bottom: 32px;
  }
}
.blog__contents .contentsItem__info__category ul li {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 8px;
  background: #66cc99;
  font-size: 0.8rem;
}
.blog__contents .contentsItem__info__category ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.blog__contents .contentsItem__info__date {
  font-size: 0.8rem;
  color: #666;
}
.blog__contents .contentsItem__info__ttl {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 4px 0 8px;
  line-height: 140%;
}
.blog__contents .contentsItem__info__ttl a {
  color: #333;
  text-decoration: none;
}
.blog__contents .contentsItem__info__desc {
  font-size: 0.8rem;
  line-height: 140%;
}
.blog__contents .contentsItem__tmb {
  width: 30%;
}
@media (width < 767px) {
  .blog__contents .contentsItem__tmb {
    width: 100%;
  }
}

.content {
  max-width: 900px;
  margin: 40px auto 90px;
  line-height: 240%;
}
@media (width < 767px) {
  .content {
    padding: 0 16px;
  }
}
.content__category ul li {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0 8px;
  background: #66cc99;
  font-size: 0.8rem;
}
.content__category ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.content__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5;
}
.content__date {
  display: flex;
  color: #999;
  margin-bottom: 30px;
}
@media (width < 767px) {
  .content__date {
    display: block;
    margin-top: 20px;
  }
}
.content__date__post {
  margin-right: 16px;
}
@media (width < 767px) {
  .content__date__post {
    margin-bottom: 8px;
    line-height: 100%;
  }
}
.content__tmb {
  margin-bottom: 40px;
}
.content__tmb img {
  width: 100%;
}
.content__block {
  margin-bottom: 40px;
}
.content__block h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.content__block h3 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5;
  color: #333;
}
.content__block p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.content__block table {
  width: 900px;
  border: solid 1px #333;
  border-radius: 8px;
  border-collapse: collapse;
  margin-bottom: 20px;
}
@media (width < 767px) {
  .content__block table {
    max-width: 100%;
  }
}
.content__block table tr th, .content__block table tr td {
  border: solid 1px #333;
}
.content__block table tr th {
  min-width: 120px;
  padding: 8px 16px;
  font-size: 0.7rem;
  background: #efefef;
  text-align: center;
}
.content__block table tr td {
  max-width: 50%;
  padding: 16px 8px;
  font-size: 0.8rem;
}
.content__block ul {
  padding: 24px 32px;
  border-radius: 16px;
  list-style-type: disc;
}
.content__block ul li {
  margin-bottom: 20px;
}

footer {
  height: 200px;
  background: #333;
  color: #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100vh;
}
footer .footerInner .fNav {
  margin-bottom: 20px;
}
footer .footerInner .fNav .navList {
  display: flex;
  justify-content: left;
  margin-right: 20px;
}
@media (width < 767px) {
  footer .footerInner .fNav .navList {
    justify-content: center;
    flex-wrap: wrap;
  }
}
footer .footerInner .fNav .navList__item {
  font-size: 0.8rem;
  margin-right: 4px;
  text-align: center;
}
@media (width < 767px) {
  footer .footerInner .fNav .navList__item {
    width: 100%;
    font-size: 0.7rem;
    margin: 0;
  }
}
footer .footerInner .fNav .navList__item a:hover {
  text-decoration: underline;
}
footer .footerInner .fNav .navList__item:not(:last-child)::after {
  content: " /";
}
@media (width < 767px) {
  footer .footerInner .fNav .navList__item:not(:last-child)::after {
    content: "";
  }
}
footer .footerInner .cr {
  font-size: 0.6rem;
  text-align: center;
}
@media (width < 767px) {
  footer .footerInner .cr {
    font-size: 0.8rem;
  }
}

.swiper-button-prev, .swiper-button-next {
  transition: 0.4s linear;
  color: #333;
}

.swiper-button-disabled {
  opacity: 0 !important;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 900px;
  margin: 0 auto 48px !important;
}
@media (width < 767px) {
  .wp-block-woocommerce-cart,
  .wp-block-woocommerce-checkout {
    padding: 16px 8px;
  }
}

@media (width < 767px) {
  .wc-block-cart-item__total {
    display: none;
  }
}

.wp-block-woocommerce-cart-order-summary-block {
  margin-bottom: 32px;
}

.wc-block-cart__submit-container {
  background: #111;
  color: #fff;
}

.wc-block-components-button__text {
  padding: 8px 32px;
  background: #111;
  color: #fff;
}

.woocommerce {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}
@media (width < 767px) {
  .woocommerce .woocommerce-MyAccount-navigation {
    margin: 0 8px;
  }
}
.woocommerce .woocommerce-MyAccount-navigation ul {
  position: relative;
  display: flex;
  border-bottom: solid 1px #111;
}
@media (width < 767px) {
  .woocommerce .woocommerce-MyAccount-navigation ul {
    flex-wrap: wrap;
    border: none;
  }
}
.woocommerce .woocommerce-MyAccount-navigation ul li {
  position: relative;
  padding: 8px 16px;
  margin-right: 20px;
  border: solid 1px #111;
  border-bottom: none;
  background: #fff;
}
.woocommerce .woocommerce-MyAccount-navigation ul li:hover {
  background: #efefef;
  cursor: pointer;
}
@media (width < 767px) {
  .woocommerce .woocommerce-MyAccount-navigation ul li {
    border: solid 1px #111;
    margin-bottom: 12px;
  }
}
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active {
  margin-bottom: -1px;
  border-bottom: solid 1px #fff;
}
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active:hover {
  background: #fff;
  cursor: auto;
}
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  pointer-events: none;
}
@media (width < 767px) {
  .woocommerce .woocommerce-MyAccount-navigation ul li.is-active {
    border: solid 1px #111;
    margin-bottom: 12px;
    background: #efefef;
  }
}
.woocommerce .woocommerce-MyAccount-content {
  padding: 24px 0;
}
@media (width < 767px) {
  .woocommerce .woocommerce-MyAccount-content {
    margin: 0 8px;
  }
}
.woocommerce .woocommerce-MyAccount-content p {
  padding: 8px 0;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 40px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  border: solid 1px #cfc8d8;
  border-radius: 5px;
  margin-bottom: 32px;
  padding: 16px 24px 40px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h2 {
  font-weight: bold;
  font-size: 0.8rem;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title .edit {
  display: inline-block;
  margin: 12px 0;
  padding: 12px 24px;
  color: #fff;
  background: #333;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses address {
  padding: 24px 32px;
  background: #efefef;
  font-size: 0.8rem;
}
.woocommerce .woocommerce-MyAccount-content form h2 {
  font-weight: bold;
  margin-bottom: 12px;
}
.woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields {
  padding: 32px 40px;
  border: solid 1px #cfc8d8;
  border-radius: 5px;
  margin: 40px 0;
}
@media (width < 767px) {
  .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields {
    padding: 8px 16px;
  }
}
.woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper {
  margin-bottom: 20px;
}
.woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper label {
  margin-bottom: 12px;
}
.woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper .input-text {
  height: 36px;
  border: solid 1px #111;
  padding: 4px 12px;
}
.woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper .select2-selection {
  border: solid 1px #111;
  border-radius: 0;
  height: auto;
  padding: 4px 12px;
}
.woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper .select2-selection .select2-selection__arrow {
  height: 32px;
}
.woocommerce .woocommerce-MyAccount-content form button {
  display: inline-block;
  margin: 12px 0;
  padding: 20px 32px;
  color: #fff;
  background: #333;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  padding: 32px 40px;
  margin: 40px 0;
  border: solid 1px #cfc8d8;
  border-radius: 5px;
}
@media (width < 767px) {
  .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    padding: 8px 16px;
  }
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm label {
  margin-bottom: 12px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Input {
  height: 36px;
  border: solid 1px #111;
  padding: 4px 12px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
  margin-bottom: 20px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button {
  display: inline-block;
  margin: 12px 0;
  padding: 20px 32px;
  color: #fff;
  background: #333;
}
.woocommerce #customer_login {
  max-width: 900px;
  margin: 0 auto;
}
.woocommerce #customer_login label {
  margin-bottom: 12px;
}
.woocommerce #customer_login .woocommerce-Input {
  height: 36px;
  border: solid 1px #111;
  padding: 4px 12px;
}
.woocommerce #customer_login .woocommerce-button {
  display: inline-block;
  margin: 12px 0;
  padding: 20px 32px;
  color: #fff;
  background: #333;
}
.woocommerce #customer_login .woocommerce-form-login__rememberme {
  padding: 20px 32px;
}
.woocommerce .woocommerce-ResetPassword {
  padding: 32px 40px;
  margin: 40px 0;
  border: solid 1px #cfc8d8;
  border-radius: 5px;
}
.woocommerce .woocommerce-ResetPassword p {
  margin-bottom: 32px;
}
.woocommerce .woocommerce-ResetPassword label {
  margin-bottom: 12px;
}
.woocommerce .woocommerce-ResetPassword .woocommerce-Input {
  height: 36px;
  border: solid 1px #111;
  padding: 4px 12px;
}
.woocommerce .woocommerce-ResetPassword .woocommerce-Button {
  display: inline-block;
  margin: 12px 0;
  padding: 20px 32px;
  color: #fff;
  background: #333;
}

.wc-block-cart__empty-cart__title {
  padding: 60px 0;
}

.wc-block-grid__products {
  padding: 40px 0 !important;
}

.transactions, .policy {
  max-width: 900px;
  margin: 60px auto 90px;
}
.transactions h1, .policy h1 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 32px;
}
.transactions h2, .policy h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.transactions p, .policy p {
  margin-bottom: 32px;
}
.transactions table, .policy table {
  margin-bottom: 32px;
}
.transactions table td, .policy table td {
  padding: 8px 16px;
}
.transactions table td:first-child, .policy table td:first-child {
  background: #efefef;
  width: 30%;
}

div.ez-toc-title-container {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

div#ez-toc-container {
  width: 70%;
  margin-bottom: 60px;
  padding: 40px;
}
@media (width < 767px) {
  div#ez-toc-container {
    width: 100%;
    padding: 32px;
  }
}

div#ez-toc-container ul li {
  line-height: 2.4;
  font-size: 1rem;
}/*# sourceMappingURL=sytle.css.map */